Skip to content

Commit af8a750

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

2,352 files changed

Lines changed: 1662426 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\")"

0 commit comments

Comments
 (0)