Skip to content

Commit 8ca0e33

Browse files
author
Documenter.jl
committed
delete history
0 parents  commit 8ca0e33

2,805 files changed

Lines changed: 1705903 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
*.jl.cov
2+
*.jl.*.cov
3+
*.jl.mem
4+
.DS_Store
5+
*.key
6+
*.crt
7+
*.swp
8+
docs/build/
9+
docs/site/

.travis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Documentation: http://docs.travis-ci.com/user/languages/julia/
2+
language: julia
3+
os:
4+
- linux
5+
# - osx
6+
julia:
7+
- 0.6
8+
- 0.7
9+
notifications:
10+
email: false
11+
after_success:
12+
# push coverage results to Codecov
13+
- julia -e 'cd(Pkg.dir("HTTP")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
14+
- julia -e 'Pkg.add("Documenter")'
15+
- julia -e 'cd(Pkg.dir("HTTP")); include(joinpath("docs", "make.jl"))'

LICENSE.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
The HTTP.jl package is licensed under the MIT "Expat" License:
2+
3+
> src/parser.jl based on src/http/ngx_http_parse.c from NGINX copyright Igor Sysoev
4+
> src/cookies.jl based on src/net/http/cookie.go Copyright 2009 The Go Authors
5+
6+
> Copyright (c) 2016: quinnj.
7+
>
8+
> Permission is hereby granted, free of charge, to any person obtaining a copy
9+
> of this software and associated documentation files (the "Software"), to deal
10+
> in the Software without restriction, including without limitation the rights
11+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12+
> copies of the Software, and to permit persons to whom the Software is
13+
> furnished to do so, subject to the following conditions:
14+
>
15+
> The above copyright notice and this permission notice shall be included in all
16+
> copies or substantial portions of the Software.
17+
>
18+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24+
> SOFTWARE.
25+
>

README.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
2+
# HTTP
3+
4+
*Performant, robust HTTP client and server functionality for Julia*
5+
6+
| **Documentation** | **PackageEvaluator** | **Build Status** |
7+
|:-------------------------------------------------------------------------------:|:---------------------------------------------------------------:|:-----------------------------------------------------------------------------------------------:|
8+
| [![][docs-stable-img]][docs-stable-url] [![][docs-latest-img]][docs-latest-url] | [![][pkg-0.5-img]][pkg-0.5-url] [![][pkg-0.6-img]][pkg-0.6-url] | [![][travis-img]][travis-url] [![][appveyor-img]][appveyor-url] [![][codecov-img]][codecov-url] |
9+
10+
11+
## Installation
12+
13+
The package is registered in `METADATA.jl` and so can be installed with `Pkg.add`.
14+
```julia
15+
julia> Pkg.add("HTTP")
16+
```
17+
18+
<!-- ## Documentation
19+
20+
- [**STABLE**][docs-stable-url] &mdash; **most recently tagged version of the documentation.**
21+
- [**LATEST**][docs-latest-url] &mdash; *in-development version of the documentation.* -->
22+
23+
## Project Status
24+
25+
The package is tested against Julia 0.6 & current master on Linux, OS X, and Windows.
26+
27+
## Contributing and Questions
28+
29+
Contributions are very welcome, as are feature requests and suggestions. Please open an
30+
[issue][issues-url] if you encounter any problems or would just like to ask a question.
31+
32+
33+
34+
[docs-latest-img]: https://img.shields.io/badge/docs-latest-blue.svg
35+
[docs-latest-url]: https://JuliaWeb.github.io/HTTP.jl/latest
36+
37+
[docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg
38+
[docs-stable-url]: https://JuliaWeb.github.io/HTTP.jl/stable
39+
40+
[travis-img]: https://travis-ci.org/JuliaWeb/HTTP.jl.svg?branch=master
41+
[travis-url]: https://travis-ci.org/JuliaWeb/HTTP.jl
42+
43+
[appveyor-img]: https://ci.appveyor.com/api/projects/status/qdy0vfps9gne3sd7?svg=true
44+
[appveyor-url]: https://ci.appveyor.com/project/quinnj/http-jl
45+
46+
[codecov-img]: https://codecov.io/gh/JuliaWeb/HTTP.jl/branch/master/graph/badge.svg
47+
[codecov-url]: https://codecov.io/gh/JuliaWeb/HTTP.jl
48+
49+
[issues-url]: https://github.com/JuliaWeb/HTTP.jl/issues
50+
51+
[pkg-0.5-img]: http://pkg.julialang.org/badges/HTTP_0.5.svg
52+
[pkg-0.5-url]: http://pkg.julialang.org/?pkg=HTTP
53+
54+
[pkg-0.6-img]: http://pkg.julialang.org/badges/HTTP_0.6.svg
55+
[pkg-0.6-url]: http://pkg.julialang.org/?pkg=HTTP

REQUIRE

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
julia 0.6
2+
MbedTLS 0.5.2
3+
IniFile

appveyor.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
environment:
2+
matrix:
3+
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x86/0.6/julia-0.6-latest-win32.exe"
4+
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.6/julia-0.6-latest-win64.exe"
5+
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
6+
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
7+
8+
branches:
9+
only:
10+
- master
11+
- /release-.*/
12+
13+
notifications:
14+
- provider: Email
15+
on_build_success: false
16+
on_build_failure: false
17+
on_build_status_changed: false
18+
19+
install:
20+
- ps: "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12"
21+
# if there's a newer build queued for the same PR, cancel this one
22+
- ps: if ($env:APPVEYOR_PULL_REQUEST_NUMBER -and $env:APPVEYOR_BUILD_NUMBER -ne ((Invoke-RestMethod `
23+
https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG/history?recordsNumber=50).builds | `
24+
Where-Object pullRequestId -eq $env:APPVEYOR_PULL_REQUEST_NUMBER)[0].buildNumber) { `
25+
throw "There are newer queued builds for this pull request, failing early." }
26+
# Download most recent Julia Windows binary
27+
- ps: (new-object net.webclient).DownloadFile(
28+
$env:JULIA_URL,
29+
"C:\projects\julia-binary.exe")
30+
# Run installer silently, output to C:\projects\julia
31+
- C:\projects\julia-binary.exe /S /D=C:\projects\julia
32+
33+
build_script:
34+
# Need to convert from shallow to complete for Pkg.clone to work
35+
- IF EXIST .git\shallow (git fetch --unshallow)
36+
- C:\projects\julia\bin\julia -e "versioninfo();
37+
Pkg.clone(pwd(), \"HTTP\"); Pkg.build(\"HTTP\")"
38+
39+
test_script:
40+
- C:\projects\julia\bin\julia -e "Pkg.test(\"HTTP\")"

dev/.documenter-siteinfo.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"documenter":{"documenter_version":"1.17.0","generation_timestamp":"2026-08-07T21:55:54","julia_version":"1.12.6"}}

dev/api/client/index.html

Lines changed: 91 additions & 0 deletions
Large diffs are not rendered by default.

dev/api/core/index.html

Lines changed: 57 additions & 0 deletions
Large diffs are not rendered by default.

dev/api/reference/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<!DOCTYPE html>
2+
<html lang="en"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><title>Overview · HTTP.jl v2.0.0</title><meta name="title" content="Overview · HTTP.jl v2.0.0"/><meta property="og:title" content="Overview · HTTP.jl v2.0.0"/><meta property="twitter:title" content="Overview · HTTP.jl v2.0.0"/><meta name="description" content="Documentation for HTTP.jl v2.0.0."/><meta property="og:description" content="Documentation for HTTP.jl v2.0.0."/><meta property="twitter:description" content="Documentation for HTTP.jl v2.0.0."/><meta property="og:url" content="https://juliaweb.github.io/HTTP.jl/stable/api/reference/"/><meta property="twitter:url" content="https://juliaweb.github.io/HTTP.jl/stable/api/reference/"/><link rel="canonical" href="https://juliaweb.github.io/HTTP.jl/stable/api/reference/"/><script data-outdated-warner src="../../assets/warner.js"></script><link href="https://cdnjs.cloudflare.com/ajax/libs/lato-font/3.0.0/css/lato-font.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/juliamono/0.050/juliamono.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/fontawesome.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/solid.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/brands.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.8/katex.min.css" rel="stylesheet" type="text/css"/><script>documenterBaseURL="../.."</script><script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js" data-main="../../assets/documenter.js"></script><script src="../../search_index.js"></script><script src="../../siteinfo.js"></script><script src="../../../versions.js"></script><link class="docs-theme-link" rel="stylesheet" type="text/css" href="../../assets/themes/catppuccin-mocha.css" data-theme-name="catppuccin-mocha"/><link class="docs-theme-link" rel="stylesheet" type="text/css" href="../../assets/themes/catppuccin-macchiato.css" data-theme-name="catppuccin-macchiato"/><link class="docs-theme-link" rel="stylesheet" type="text/css" href="../../assets/themes/catppuccin-frappe.css" data-theme-name="catppuccin-frappe"/><link class="docs-theme-link" rel="stylesheet" type="text/css" href="../../assets/themes/catppuccin-latte.css" data-theme-name="catppuccin-latte"/><link class="docs-theme-link" rel="stylesheet" type="text/css" href="../../assets/themes/documenter-dark.css" data-theme-name="documenter-dark" data-theme-primary-dark/><link class="docs-theme-link" rel="stylesheet" type="text/css" href="../../assets/themes/documenter-light.css" data-theme-name="documenter-light" data-theme-primary/><script src="../../assets/themeswap.js"></script></head><body><div id="documenter"><nav class="docs-sidebar"><div class="docs-package-name"><span class="docs-autofit"><a href="../../">HTTP.jl v2.0.0</a></span></div><button class="docs-search-query input is-rounded is-small is-clickable my-2 mx-auto py-1 px-2" id="documenter-search-query">Search docs (Ctrl + /)</button><ul class="docs-menu"><li><a class="tocitem" href="../../">Home</a></li><li><span class="tocitem">Guides</span><ul><li><a class="tocitem" href="../../guides/client/">Client</a></li><li><a class="tocitem" href="../../guides/server/">Server</a></li><li><a class="tocitem" href="../../guides/protocols/">Protocols</a></li><li><a class="tocitem" href="../../guides/migration-1x/">Migration from 1.x</a></li></ul></li><li><span class="tocitem">API Reference</span><ul><li class="is-active"><a class="tocitem" href>Overview</a><ul class="internal"><li><a class="tocitem" href="#Module"><span>Module</span></a></li><li><a class="tocitem" href="#Reference-Map"><span>Reference Map</span></a></li></ul></li><li><a class="tocitem" href="../core/">Core</a></li><li><a class="tocitem" href="../client/">Client</a></li><li><a class="tocitem" href="../server/">Server</a></li><li><a class="tocitem" href="../websockets/">WebSockets</a></li></ul></li></ul><div class="docs-version-selector field has-addons"><div class="control"><span class="docs-label button is-static is-size-7">Version</span></div><div class="docs-selector control is-expanded"><div class="select is-fullwidth is-size-7"><select id="documenter-version-selector"></select></div></div></div></nav><div class="docs-main"><header class="docs-navbar"><a class="docs-sidebar-button docs-navbar-link fa-solid fa-bars is-hidden-desktop" id="documenter-sidebar-button" href="#"></a><nav class="breadcrumb"><ul class="is-hidden-mobile"><li><a class="is-disabled">API Reference</a></li><li class="is-active"><a href>Overview</a></li></ul><ul class="is-hidden-tablet"><li class="is-active"><a href>Overview</a></li></ul></nav><div class="docs-right"><a class="docs-navbar-link" href="https://github.com/JuliaWeb/HTTP.jl" title="View the repository on GitHub"><span class="docs-icon fa-brands"></span><span class="docs-label is-hidden-touch">GitHub</span></a><a class="docs-navbar-link" href="https://github.com/JuliaWeb/HTTP.jl/blob/master/docs/src/api/reference.md" title="Edit source on GitHub"><span class="docs-icon fa-solid"></span></a><a class="docs-settings-button docs-navbar-link fa-solid fa-gear" id="documenter-settings-button" href="#" title="Settings"></a><a class="docs-article-toggle-button fa-solid fa-chevron-up" id="documenter-article-toggle-button" href="javascript:;" title="Collapse all docstrings"></a></div></header><article class="content" id="documenter-page"><h1 id="API-Reference"><a class="docs-heading-anchor" href="#API-Reference">API Reference</a><a id="API-Reference-1"></a><a class="docs-heading-anchor-permalink" href="#API-Reference" title="Permalink"></a></h1><p>This section is the canonical placement for exported <code>HTTP.jl</code> docstrings and the documented submodule APIs that make up the supported 2.0 surface. The guides explain how the pieces fit together; these pages are where the concrete names live.</p><h2 id="Module"><a class="docs-heading-anchor" href="#Module">Module</a><a id="Module-1"></a><a class="docs-heading-anchor-permalink" href="#Module" title="Permalink"></a></h2><article><details class="docstring" open="true"><summary id="HTTP.HTTP"><a class="docstring-binding" href="#HTTP.HTTP"><code>HTTP.HTTP</code></a> — <span class="docstring-category">Module</span></summary><section><div><pre><code class="language-julia hljs">HTTP</code></pre><p>Client, server, streaming, WebSocket, and Server-Sent Events APIs for HTTP.jl.</p><p>The 2.0 API is built around explicit <code>Request</code>, <code>Response</code>, <code>Headers</code>, <code>RequestContext</code>, body, <code>Client</code>, <code>Transport</code>, <code>Server</code>, and <code>Stream</code> values. HTTP.jl owns HTTP message semantics and high-level client/server behavior, while <code>Reseau</code> provides the transport, resolver, and TLS substrate.</p><p>Common entrypoints:</p><ul><li><code>request</code>, <code>get</code>, <code>post</code>, <code>put</code>, <code>patch</code>, <code>delete</code>, <code>head</code>, <code>options</code>, and <code>query</code> for high-level client requests.</li><li><code>open</code> for client-side request/response streaming.</li><li><code>serve!</code> / <code>serve</code> for <code>Request -&gt; Response</code> servers.</li><li><code>listen!</code> / <code>listen</code> and <code>streamhandler</code> for stream-oriented servers.</li><li><code>WebSockets</code> for WebSocket client and server helpers.</li><li><code>SSEEvent</code> and <code>sse_stream</code> for Server-Sent Events.</li></ul><p>See the migration guide for the most important 1.x to 2.0 API changes.</p></div><a class="docs-sourcelink" target="_blank" href="https://github.com/JuliaWeb/HTTP.jl/blob/d18d3b4e9fd3a3bfd7b9b5ee8a1ea468ea912d87/src/HTTP.jl#L1-L22">source</a></section></details></article><h2 id="Reference-Map"><a class="docs-heading-anchor" href="#Reference-Map">Reference Map</a><a id="Reference-Map-1"></a><a class="docs-heading-anchor-permalink" href="#Reference-Map" title="Permalink"></a></h2><ul><li><a href="../core/">Core API</a>: request/response types, headers, bodies, cookies, forms, and proxy configuration.</li><li><a href="../client/">Client API</a>: <code>Client</code>, <code>Transport</code>, top-level requests, streaming, and connection reuse helpers.</li><li><a href="../server/">Server API</a>: <code>Server</code>, <code>Stream</code>, routing, middleware, static files, and SSE.</li><li><a href="../websockets/">WebSockets API</a>: WebSocket client/server types, messaging helpers, and server lifecycle operations.</li></ul></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../../guides/migration-1x/">« Migration from 1.x</a><a class="docs-footer-nextpage" href="../core/">Core »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="auto">Automatic (OS)</option><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="catppuccin-latte">catppuccin-latte</option><option value="catppuccin-frappe">catppuccin-frappe</option><option value="catppuccin-macchiato">catppuccin-macchiato</option><option value="catppuccin-mocha">catppuccin-mocha</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.17.0 on <span class="colophon-date" title="Friday 7 August 2026 21:55">Friday 7 August 2026</span>. Using Julia version 1.12.6.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>

0 commit comments

Comments
 (0)