├── .github ├── FUNDING.yml ├── actionlint.yaml ├── linters │ └── .markdown-lint.yml └── workflows │ ├── add-discuss-during-sync.yml │ ├── announce-a-release.yml │ ├── breakage-against-linux-ponyc-latest.yml │ ├── breakage-against-windows-ponyc-latest.yml │ ├── changelog-bot.yml │ ├── generate-documentation.yml │ ├── lint-action-workflows.yml │ ├── pr.yml │ ├── prepare-for-a-release.yml │ ├── release-notes-reminder.yml │ ├── release-notes.yml │ ├── release.yml │ └── remove-discuss-during-sync.yml ├── .markdownlintignore ├── .release-notes ├── 0.2.7.md ├── 0.2.8.md ├── 0.3.0.md ├── 0.3.1.md ├── 0.4.0.md ├── 0.4.1.md ├── 0.4.2.md ├── 0.4.3.md ├── 0.4.4.md ├── 0.4.5.md ├── 0.5.0.md ├── 0.5.1.md ├── 0.5.2.md ├── 0.5.3.md ├── 0.5.4.md ├── 0.5.5.md ├── 0.6.0.md ├── 0.6.1.md ├── 0.6.2.md ├── 0.6.3.md ├── 0.6.4.md └── next-release.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── RELEASE_PROCESS.md ├── STYLE_GUIDE.md ├── VERSION ├── bench └── bench.pony ├── corral.json ├── examples └── httpget │ ├── cacert.pem │ └── httpget.pony ├── http ├── _client_conn_handler.pony ├── _client_connection.pony ├── _host_service.pony ├── _test.pony ├── _test_client.pony ├── _test_client_error_handling.pony ├── http.pony ├── http_client.pony ├── http_handler.pony ├── http_parser.pony ├── http_session.pony ├── mimetypes.pony ├── payload.pony ├── status.pony ├── test │ ├── cacert.pem │ ├── cert.pem │ └── key.pem ├── url.pony └── url_encode.pony └── make.ps1 /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: ponyc 2 | -------------------------------------------------------------------------------- /.github/actionlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.github/actionlint.yaml -------------------------------------------------------------------------------- /.github/linters/.markdown-lint.yml: -------------------------------------------------------------------------------- 1 | { 2 | "MD013": false 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/add-discuss-during-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.github/workflows/add-discuss-during-sync.yml -------------------------------------------------------------------------------- /.github/workflows/announce-a-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.github/workflows/announce-a-release.yml -------------------------------------------------------------------------------- /.github/workflows/breakage-against-linux-ponyc-latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.github/workflows/breakage-against-linux-ponyc-latest.yml -------------------------------------------------------------------------------- /.github/workflows/breakage-against-windows-ponyc-latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.github/workflows/breakage-against-windows-ponyc-latest.yml -------------------------------------------------------------------------------- /.github/workflows/changelog-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.github/workflows/changelog-bot.yml -------------------------------------------------------------------------------- /.github/workflows/generate-documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.github/workflows/generate-documentation.yml -------------------------------------------------------------------------------- /.github/workflows/lint-action-workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.github/workflows/lint-action-workflows.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/prepare-for-a-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.github/workflows/prepare-for-a-release.yml -------------------------------------------------------------------------------- /.github/workflows/release-notes-reminder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.github/workflows/release-notes-reminder.yml -------------------------------------------------------------------------------- /.github/workflows/release-notes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.github/workflows/release-notes.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/remove-discuss-during-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.github/workflows/remove-discuss-during-sync.yml -------------------------------------------------------------------------------- /.markdownlintignore: -------------------------------------------------------------------------------- 1 | CHANGELOG.md 2 | CODE_OF_CONDUCT.md 3 | .release-notes/ 4 | -------------------------------------------------------------------------------- /.release-notes/0.2.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.release-notes/0.2.7.md -------------------------------------------------------------------------------- /.release-notes/0.2.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.release-notes/0.2.8.md -------------------------------------------------------------------------------- /.release-notes/0.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.release-notes/0.3.0.md -------------------------------------------------------------------------------- /.release-notes/0.3.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.release-notes/0.3.1.md -------------------------------------------------------------------------------- /.release-notes/0.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.release-notes/0.4.0.md -------------------------------------------------------------------------------- /.release-notes/0.4.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.release-notes/0.4.1.md -------------------------------------------------------------------------------- /.release-notes/0.4.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.release-notes/0.4.2.md -------------------------------------------------------------------------------- /.release-notes/0.4.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.release-notes/0.4.3.md -------------------------------------------------------------------------------- /.release-notes/0.4.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.release-notes/0.4.4.md -------------------------------------------------------------------------------- /.release-notes/0.4.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.release-notes/0.4.5.md -------------------------------------------------------------------------------- /.release-notes/0.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.release-notes/0.5.0.md -------------------------------------------------------------------------------- /.release-notes/0.5.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.release-notes/0.5.1.md -------------------------------------------------------------------------------- /.release-notes/0.5.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.release-notes/0.5.2.md -------------------------------------------------------------------------------- /.release-notes/0.5.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.release-notes/0.5.3.md -------------------------------------------------------------------------------- /.release-notes/0.5.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.release-notes/0.5.4.md -------------------------------------------------------------------------------- /.release-notes/0.5.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.release-notes/0.5.5.md -------------------------------------------------------------------------------- /.release-notes/0.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.release-notes/0.6.0.md -------------------------------------------------------------------------------- /.release-notes/0.6.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.release-notes/0.6.1.md -------------------------------------------------------------------------------- /.release-notes/0.6.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.release-notes/0.6.2.md -------------------------------------------------------------------------------- /.release-notes/0.6.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.release-notes/0.6.3.md -------------------------------------------------------------------------------- /.release-notes/0.6.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.release-notes/0.6.4.md -------------------------------------------------------------------------------- /.release-notes/next-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/.release-notes/next-release.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_PROCESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/RELEASE_PROCESS.md -------------------------------------------------------------------------------- /STYLE_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/STYLE_GUIDE.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.6.4 2 | -------------------------------------------------------------------------------- /bench/bench.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/bench/bench.pony -------------------------------------------------------------------------------- /corral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/corral.json -------------------------------------------------------------------------------- /examples/httpget/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/examples/httpget/cacert.pem -------------------------------------------------------------------------------- /examples/httpget/httpget.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/examples/httpget/httpget.pony -------------------------------------------------------------------------------- /http/_client_conn_handler.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/http/_client_conn_handler.pony -------------------------------------------------------------------------------- /http/_client_connection.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/http/_client_connection.pony -------------------------------------------------------------------------------- /http/_host_service.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/http/_host_service.pony -------------------------------------------------------------------------------- /http/_test.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/http/_test.pony -------------------------------------------------------------------------------- /http/_test_client.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/http/_test_client.pony -------------------------------------------------------------------------------- /http/_test_client_error_handling.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/http/_test_client_error_handling.pony -------------------------------------------------------------------------------- /http/http.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/http/http.pony -------------------------------------------------------------------------------- /http/http_client.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/http/http_client.pony -------------------------------------------------------------------------------- /http/http_handler.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/http/http_handler.pony -------------------------------------------------------------------------------- /http/http_parser.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/http/http_parser.pony -------------------------------------------------------------------------------- /http/http_session.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/http/http_session.pony -------------------------------------------------------------------------------- /http/mimetypes.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/http/mimetypes.pony -------------------------------------------------------------------------------- /http/payload.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/http/payload.pony -------------------------------------------------------------------------------- /http/status.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/http/status.pony -------------------------------------------------------------------------------- /http/test/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/http/test/cacert.pem -------------------------------------------------------------------------------- /http/test/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/http/test/cert.pem -------------------------------------------------------------------------------- /http/test/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/http/test/key.pem -------------------------------------------------------------------------------- /http/url.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/http/url.pony -------------------------------------------------------------------------------- /http/url_encode.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/http/url_encode.pony -------------------------------------------------------------------------------- /make.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/http/HEAD/make.ps1 --------------------------------------------------------------------------------