update components
This commit is contained in:
parent
2a4b879c21
commit
63664e6c1c
1155 changed files with 62261 additions and 84 deletions
24
dashboard-ui/bower_components/prism/tests/languages/http/header-name_feature.test
vendored
Normal file
24
dashboard-ui/bower_components/prism/tests/languages/http/header-name_feature.test
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
Accept-Language: fr,fr-fr;q=0.8,en-us;q=0.5,en;q=0.3
|
||||
Accept-Encoding: gzip, deflate
|
||||
Server: GitHub.com
|
||||
Date: Mon, 22 Dec 2014 18:25:30 GMT
|
||||
Content-Type: text/html; charset=utf-8
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["header-name", "Accept-Language:"],
|
||||
" fr,fr-fr;q=0.8,en-us;q=0.5,en;q=0.3\r\n",
|
||||
["header-name", "Accept-Encoding:"],
|
||||
" gzip, deflate\r\n",
|
||||
["header-name", "Server:"],
|
||||
" GitHub.com\r\n",
|
||||
["header-name", "Date:"],
|
||||
" Mon, 22 Dec 2014 18:25:30 GMT\r\n",
|
||||
["header-name", "Content-Type:"],
|
||||
" text/html; charset=utf-8"
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for header names.
|
51
dashboard-ui/bower_components/prism/tests/languages/http/request-line_feature.test
vendored
Normal file
51
dashboard-ui/bower_components/prism/tests/languages/http/request-line_feature.test
vendored
Normal file
|
@ -0,0 +1,51 @@
|
|||
POST http://example.com HTTP/1.0
|
||||
GET http://localhost:9999/foo.html HTTP/1.1
|
||||
PUT http://www.example.com HTTP/2.0
|
||||
DELETE https://example.com HTTP/1.1
|
||||
OPTIONS https://www.example.com HTTP/1.1
|
||||
PATCH http://example.com HTTP/1.0
|
||||
TRACE http://example.com HTTP/1.0
|
||||
CONNECT http://example.com HTTP/1.0
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["request-line", [
|
||||
["property", "POST"],
|
||||
" http://example.com HTTP/1.0"
|
||||
]],
|
||||
["request-line", [
|
||||
["property", "GET"],
|
||||
" http://localhost",
|
||||
["attr-name", ":9999"],
|
||||
"/foo.html HTTP/1.1"
|
||||
]],
|
||||
["request-line", [
|
||||
["property", "PUT"],
|
||||
" http://www.example.com HTTP/2.0"
|
||||
]],
|
||||
["request-line", [
|
||||
["property", "DELETE"],
|
||||
" https://example.com HTTP/1.1"
|
||||
]],
|
||||
["request-line", [
|
||||
["property", "OPTIONS"],
|
||||
" https://www.example.com HTTP/1.1"
|
||||
]],
|
||||
["request-line", [
|
||||
["property", "PATCH"],
|
||||
" http://example.com HTTP/1.0"
|
||||
]],
|
||||
["request-line", [
|
||||
["property", "TRACE"],
|
||||
" http://example.com HTTP/1.0"
|
||||
]],
|
||||
["request-line", [
|
||||
["property", "CONNECT"],
|
||||
" http://example.com HTTP/1.0"
|
||||
]]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for request lines.
|
29
dashboard-ui/bower_components/prism/tests/languages/http/response-status_feature.test
vendored
Normal file
29
dashboard-ui/bower_components/prism/tests/languages/http/response-status_feature.test
vendored
Normal file
|
@ -0,0 +1,29 @@
|
|||
HTTP/1.0 200 OK
|
||||
HTTP/1.1 403 Forbidden
|
||||
HTTP/1.1 404 Not Found
|
||||
HTTP/1.0 418 I'm a teapot
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["response-status", [
|
||||
"HTTP/1.0 ",
|
||||
["property", "200 OK"]
|
||||
]],
|
||||
["response-status", [
|
||||
"HTTP/1.1 ",
|
||||
["property", "403 Forbidden"]
|
||||
]],
|
||||
["response-status", [
|
||||
"HTTP/1.1 ",
|
||||
["property", "404 Not Found"]
|
||||
]],
|
||||
["response-status", [
|
||||
"HTTP/1.0 ",
|
||||
["property", "418 I'm a teapot"]
|
||||
]]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for response statuses.
|
Loading…
Add table
Add a link
Reference in a new issue