source: EcnlProtoTool/trunk/prototool/webserver/http-strings@ 270

Last change on this file since 270 was 270, checked in by coas-nagasima, 7 years ago

mruby版ECNLプロトタイピング・ツールを追加

File size: 2.8 KB
RevLine 
[270]1http_http "http://"
2http_200 "200 "
3http_301 "301 "
4http_302 "302 "
5http_get "GET "
6http_10 "HTTP/1.0"
7http_11 "HTTP/1.1"
8http_content_type "content-type: "
9http_content_length "content-length: "
10http_texthtml "text/html"
11http_location "Location: "
12http_host "host: "
13http_crnl "\r\n"
14http_www "/www"
15http_upload "/upload/"
16http_index_html "/index.html"
17http_403_html "/403.html"
18http_404_html "/404.html"
19http_websocket "WebSocket"
20http_referer "Referer: "
21http_upgrade "Upgrade: "
22http_connection "Connection: "
23http_connection_close "Connection: close\r\n"
24http_connection_keep_alive "Connection: Keep-Alive\r\n"
25http_sec_websocket_accept "Sec-WebSocket-Accept: "
26http_sec_websocket_protocol "Sec-WebSocket-Protocol: "
27http_header_101 "HTTP/1.1 101 Switching Protocols\r\n"
28http_header_200 "HTTP/1.1 200 OK\r\nServer: TINET/1.5.4 http://www.toppers.jp/\r\n"
29http_header_301 "HTTP/1.1 301 Moved Permanently\r\nServer: TINET/1.5.4 http://www.toppers.jp/\r\nConnection: close\r\n"
30http_header_403 "HTTP/1.1 404 Forbidden\r\nServer: TINET/1.5.4 http://www.toppers.jp/\r\nConnection: close\r\n"
31http_header_404 "HTTP/1.1 404 Not found\r\nServer: TINET/1.5.4 http://www.toppers.jp/\r\nConnection: close\r\n"
32http_content_200 "<html><body bgcolor=\"white\"><center><h1>200 - OK</h1></center></body></html>"
33http_content_403 "<html><body bgcolor=\"white\"><center><h1>403 - forbidden</h1><h3>Go <a href=\"/\">here</a> instead.</h3></center></body></html>"
34http_content_404 "<html><body bgcolor=\"white\"><center><h1>404 - file not found</h1><h3>Go <a href=\"/\">here</a> instead.</h3></center></body></html>"
35http_content_encoding_gzip "Content-Encoding: gzip\r\n"
36http_websocket_guid "258EAFA5-E914-47DA-95CA-C5AB0DC85B11"
37http_content_type_plain "Content-type: text/plain\r\n"
38http_content_type_html "Content-type: text/html\r\n"
39http_content_type_css "Content-type: text/css\r\n"
40http_content_type_js "Content-type: text/javascript\r\n"
41http_content_type_json "Content-type: application/json\r\n"
42http_content_type_text "Content-type: text/text\r\n"
43http_content_type_png "Content-type: image/png\r\n"
44http_content_type_gif "Content-type: image/gif\r\n"
45http_content_type_jpg "Content-type: image/jpeg\r\n"
46http_content_type_svg "Content-type: image/svg+xml\r\n"
47http_content_type_eot "Content-type: application/vnd.ms-fontobject\r\n"
48http_content_type_ttf "Content-type: font/ttf\r\n"
49http_content_type_woff "Content-type: application/x-font-woff\r\n"
50http_content_type_woff2 "Content-type: font/woff2\r\n"
51http_content_type_ico "Content-type: image/x-icon\r\n"
52http_content_type_binary "Content-type: application/octet-stream\r\n"
53http_html ".html"
54http_shtml ".shtml"
55http_htm ".htm"
56http_css ".css"
57http_js ".js"
58http_json ".json"
59http_png ".png"
60http_gif ".gif"
61http_jpg ".jpg"
62http_svg ".svg"
63http_text ".txt"
64http_eot ".eot"
65http_ttf ".ttf"
66http_woff ".woff"
67http_woff2 ".woff2"
68http_ico ".ico"
Note: See TracBrowser for help on using the repository browser.