Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/content/compliance/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Each test sends a request that violates a specific **MUST** or **MUST NOT** requ
'RFC9112-3-MULTI-SP-REQUEST-LINE','RFC9112-3-MISSING-TARGET',
'RFC9112-3.2-FRAGMENT-IN-TARGET','RFC9112-2.3-INVALID-VERSION',
'RFC9112-2.3-HTTP09-REQUEST','COMP-ASTERISK-WITH-GET','COMP-OPTIONS-STAR',
'COMP-CONNECT-EMPTY-PORT','COMP-CONNECT-ORIGIN-FORM','COMP-ABSOLUTE-FORM',
'COMP-ABSOLUTE-FORM',
'COMP-METHOD-CASE','COMP-REQUEST-LINE-TAB',
'COMP-VERSION-MISSING-MINOR','COMP-VERSION-LEADING-ZEROS',
'COMP-VERSION-WHITESPACE','COMP-HTTP12-VERSION',
Expand All @@ -48,7 +48,7 @@ Each test sends a request that violates a specific **MUST** or **MUST NOT** requ
'COMP-CHUNKED-TRAILER-VALID','COMP-CHUNKED-HEX-UPPERCASE'
]},
{ key: 'methods-upgrade', label: 'Methods & Upgrade', testIds: [
'COMP-METHOD-CONNECT','COMP-METHOD-CONNECT-NO-PORT',
'COMP-METHOD-CONNECT',
'COMP-UNKNOWN-TE-501','COMP-EXPECT-UNKNOWN','COMP-METHOD-TRACE',
'COMP-TRACE-WITH-BODY',
'COMP-UPGRADE-POST','COMP-UPGRADE-MISSING-CONN',
Expand Down
2 changes: 0 additions & 2 deletions docs/content/docs/request-line/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ Note this is a SHOULD, not a MUST. The RFC recommends 400 but does not mandate i
{{< card link="asterisk-with-get" title="ASTERISK-WITH-GET" subtitle="Asterisk-form (*) with non-OPTIONS method." >}}
{{< card link="options-star" title="OPTIONS-STAR" subtitle="OPTIONS * — valid asterisk-form request." >}}
{{< card link="unknown-te-501" title="UNKNOWN-TE-501" subtitle="Unknown Transfer-Encoding without CL." >}}
{{< card link="connect-empty-port" title="CONNECT-EMPTY-PORT" subtitle="CONNECT with empty port in authority-form." >}}
{{< card link="method-connect" title="METHOD-CONNECT" subtitle="CONNECT to an origin server must be rejected." >}}
{{< card link="method-connect-no-port" title="METHOD-CONNECT-NO-PORT" subtitle="CONNECT without port in authority-form." >}}
{{< /cards >}}

### Unscored
Expand Down
87 changes: 0 additions & 87 deletions docs/content/docs/request-line/connect-empty-port.md

This file was deleted.

87 changes: 0 additions & 87 deletions docs/content/docs/request-line/connect-origin-form.md

This file was deleted.

90 changes: 0 additions & 90 deletions docs/content/docs/request-line/method-connect-no-port.md

This file was deleted.

3 changes: 0 additions & 3 deletions docs/static/probe/render.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ window.ProbeRender = (function () {
'COMP-CHUNKED-EXTENSION': '/Http11Probe/docs/body/chunked-extension/',
'COMP-CHUNKED-MULTI': '/Http11Probe/docs/body/chunked-multi/',
'COMP-CHUNKED-NO-FINAL': '/Http11Probe/docs/body/chunked-no-final/',
'COMP-CONNECT-EMPTY-PORT': '/Http11Probe/docs/request-line/connect-empty-port/',
'COMP-DUPLICATE-HOST-SAME': '/Http11Probe/docs/host-header/duplicate-host-same/',
'COMP-EXPECT-UNKNOWN': '/Http11Probe/docs/headers/expect-unknown/',
'COMP-GET-WITH-CL-BODY': '/Http11Probe/docs/body/get-with-cl-body/',
Expand All @@ -69,7 +68,6 @@ window.ProbeRender = (function () {
'COMP-LEADING-CRLF': '/Http11Probe/docs/line-endings/leading-crlf/',
'COMP-METHOD-CASE': '/Http11Probe/docs/request-line/method-case/',
'COMP-METHOD-CONNECT': '/Http11Probe/docs/request-line/method-connect/',
'COMP-METHOD-CONNECT-NO-PORT': '/Http11Probe/docs/request-line/method-connect-no-port/',
'COMP-METHOD-TRACE': '/Http11Probe/docs/request-line/method-trace/',
'COMP-OPTIONS-STAR': '/Http11Probe/docs/request-line/options-star/',
'COMP-POST-CL-BODY': '/Http11Probe/docs/body/post-cl-body/',
Expand Down Expand Up @@ -166,7 +164,6 @@ window.ProbeRender = (function () {
'COMP-CHUNKED-HEX-UPPERCASE': '/Http11Probe/docs/body/chunked-hex-uppercase/',
'COMP-CHUNKED-TRAILER-VALID': '/Http11Probe/docs/body/chunked-trailer-valid/',
'COMP-CONNECTION-CLOSE': '/Http11Probe/docs/headers/connection-close/',
'COMP-CONNECT-ORIGIN-FORM': '/Http11Probe/docs/request-line/connect-origin-form/',
'COMP-HOST-EMPTY-VALUE': '/Http11Probe/docs/host-header/host-empty-value/',
'COMP-HTTP10-DEFAULT-CLOSE': '/Http11Probe/docs/headers/http10-default-close/',
'COMP-HTTP10-NO-HOST': '/Http11Probe/docs/host-header/http10-no-host/',
Expand Down
3 changes: 0 additions & 3 deletions src/Http11Probe.Cli/Reporting/DocsUrlMap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,12 @@ internal static class DocsUrlMap
// request-line
["COMP-ABSOLUTE-FORM"] = "request-line/absolute-form",
["COMP-ASTERISK-WITH-GET"] = "request-line/asterisk-with-get",
["COMP-CONNECT-EMPTY-PORT"] = "request-line/connect-empty-port",
["COMP-CONNECT-ORIGIN-FORM"] = "request-line/connect-origin-form",
["RFC9112-3.2-FRAGMENT-IN-TARGET"] = "request-line/fragment-in-target",
["RFC9112-2.3-HTTP09-REQUEST"] = "request-line/http09-request",
["COMP-HTTP12-VERSION"] = "request-line/http12-version",
["RFC9112-2.3-INVALID-VERSION"] = "request-line/invalid-version",
["COMP-METHOD-CASE"] = "request-line/method-case",
["COMP-METHOD-CONNECT"] = "request-line/method-connect",
["COMP-METHOD-CONNECT-NO-PORT"] = "request-line/method-connect-no-port",
["COMP-METHOD-TRACE"] = "request-line/method-trace",
["RFC9112-3-MISSING-TARGET"] = "request-line/missing-target",
["RFC9112-3-MULTI-SP-REQUEST-LINE"] = "request-line/multi-sp-request-line",
Expand Down
Loading
Loading