Created
September 23, 2024 00:51
-
-
Save alexcheng1982/a46f782b1d2201c962862fb038aa458a to your computer and use it in GitHub Desktop.
HTTP status code SVG generation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import math | |
from xml.etree.ElementTree import Element, SubElement, tostring | |
from xml.dom import minidom | |
def create_svg_element(tag, attrib={}, **extra): | |
element = Element(tag, attrib) | |
for name, value in extra.items(): | |
if name in ["font_size", "font_family", "font_weight", "text_anchor", "stroke_width"]: | |
element.set(name.replace("_", "-"), str(value)) | |
else: | |
element.set(name, str(value)) | |
return element | |
def create_text_element(x, y, text, font_size, font_family, font_weight="normal", text_anchor="middle"): | |
text_elem = create_svg_element("text", x=x, y=y, fill="black", | |
font_size=font_size, font_family=font_family, | |
font_weight=font_weight, text_anchor=text_anchor) | |
text_elem.text = text | |
return text_elem | |
def wrap_text(text, max_width, font_size): | |
words = text.split() | |
lines = [] | |
current_line = [] | |
current_width = 0 | |
for word in words: | |
word_width = len(word) * font_size * 0.6 # Approximate width | |
if current_width + word_width > max_width: | |
lines.append(" ".join(current_line)) | |
current_line = [word] | |
current_width = word_width | |
else: | |
current_line.append(word) | |
current_width += word_width | |
lines.append(" ".join(current_line)) | |
return lines | |
def create_card(x, y, width, height, code, name, description, color): | |
group = create_svg_element("g") | |
rect = create_svg_element("rect", x=x, y=y, width=width, height=height, fill=color, rx=10, ry=10) | |
group.append(rect) | |
# Code | |
group.append(create_text_element(x + width / 2, y + 35, str(code), 24, "Courier New", "bold")) | |
# Divider 1 | |
group.append( | |
create_svg_element("line", x1=x + 10, y1=y + 50, x2=x + width - 10, y2=y + 50, stroke="black", stroke_width=1)) | |
# Name | |
name_lines = wrap_text(name, width - 20, 18) | |
for i, line in enumerate(name_lines): | |
group.append(create_text_element(x + width / 2, y + 80 + i * 22, line, 18, "Roboto", "bold")) | |
# Divider 2 | |
group.append( | |
create_svg_element("line", x1=x + 10, y1=y + 110, x2=x + width - 10, y2=y + 110, stroke="black", stroke_width=1)) | |
# Description | |
description_lines = wrap_text(description, width - 20, 16) | |
for i, line in enumerate(description_lines[:5]): # Limit to 5 lines | |
group.append(create_text_element(x + width / 2, y + 135 + i * 20, line, 16, "Arial")) | |
return group | |
def generate_svg(data): | |
card_width = 320 | |
card_height = 240 | |
cards_per_row = 4 | |
group_padding = 50 | |
svg_width = card_width * cards_per_row + 100 | |
header_height = 60 | |
colors = { | |
"1xx": "#E6F3FF", | |
"2xx": "#E6FFE6", | |
"3xx": "#FFFFE6", | |
"4xx": "#FFE6E6", | |
"5xx": "#F3E6FF" | |
} | |
svg = create_svg_element("svg", width=svg_width, xmlns="http://www.w3.org/2000/svg") | |
# Add font definitions | |
defs = SubElement(svg, "defs") | |
style = SubElement(defs, "style") | |
style.text = "@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');" | |
# Add header | |
header = create_text_element(svg_width / 2, header_height / 2, "HTTP Status Codes", 36, "Arial", "bold") | |
svg.append(header) | |
y_offset = header_height + 30 | |
for group, codes in data.items(): | |
group_element = create_svg_element("g") | |
group_title = create_text_element(svg_width / 2, y_offset, group, 24, "Arial", "bold") | |
group_element.append(group_title) | |
y_offset += 40 | |
for i, code in enumerate(codes): | |
x = (i % cards_per_row) * card_width + 50 | |
y = (i // cards_per_row) * card_height + y_offset | |
card = create_card(x, y, card_width - 10, card_height - 10, | |
code["code"], code["name"], code["description"], colors[group]) | |
group_element.append(card) | |
svg.append(group_element) | |
y_offset += math.ceil(len(codes) / cards_per_row) * card_height + group_padding | |
svg.set("height", str(y_offset)) | |
return svg | |
def main(): | |
with open("http_status_codes.json", "r") as f: | |
data = json.load(f) | |
svg = generate_svg(data) | |
xml_str = minidom.parseString(tostring(svg)).toprettyxml(indent=" ") | |
with open("http_status_codes.svg", "w") as f: | |
f.write(xml_str) | |
if __name__ == "__main__": | |
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"1xx": [ | |
{ | |
"code": 100, | |
"name": "Continue", | |
"description": "The server has received the request headers and the client should proceed to send the request body." | |
}, | |
{ | |
"code": 101, | |
"name": "Switching Protocols", | |
"description": "The requester has asked the server to switch protocols and the server has agreed to do so." | |
}, | |
{ | |
"code": 102, | |
"name": "Processing", | |
"description": "The server has received and is processing the request, but no response is available yet." | |
}, | |
{ | |
"code": 103, | |
"name": "Early Hints", | |
"description": "Used to return some response headers before final HTTP message." | |
} | |
], | |
"2xx": [ | |
{ | |
"code": 200, | |
"name": "OK", | |
"description": "The request was successful and the server has returned the requested data." | |
}, | |
{ | |
"code": 201, | |
"name": "Created", | |
"description": "The request was successful and a new resource was created as a result." | |
}, | |
{ | |
"code": 202, | |
"name": "Accepted", | |
"description": "The request has been accepted for processing, but the processing has not been completed." | |
}, | |
{ | |
"code": 203, | |
"name": "Non-Authoritative Information", | |
"description": "The server successfully processed the request but is returning information that may be from another source." | |
}, | |
{ | |
"code": 204, | |
"name": "No Content", | |
"description": "The server successfully processed the request but is not returning any content." | |
}, | |
{ | |
"code": 205, | |
"name": "Reset Content", | |
"description": "The server successfully processed the request, but is not returning any content. Unlike a 204 response, this response requires that the requester reset the document view." | |
}, | |
{ | |
"code": 206, | |
"name": "Partial Content", | |
"description": "The server is delivering only part of the resource due to a range header sent by the client." | |
}, | |
{ | |
"code": 207, | |
"name": "Multi-Status", | |
"description": "The message body that follows is an XML message and can contain a number of separate response codes." | |
}, | |
{ | |
"code": 208, | |
"name": "Already Reported", | |
"description": "The members of a DAV binding have already been enumerated in a previous reply to this request, and are not being included again." | |
}, | |
{ | |
"code": 226, | |
"name": "IM Used", | |
"description": "The server has fulfilled a request for the resource, and the response is a representation of the result of one or more instance-manipulations applied to the current instance." | |
} | |
], | |
"3xx": [ | |
{ | |
"code": 300, | |
"name": "Multiple Choices", | |
"description": "The requested resource has multiple representations available." | |
}, | |
{ | |
"code": 301, | |
"name": "Moved Permanently", | |
"description": "The requested resource has been permanently moved to a new URL." | |
}, | |
{ | |
"code": 302, | |
"name": "Found", | |
"description": "The requested resource has been temporarily moved to a different URL." | |
}, | |
{ | |
"code": 303, | |
"name": "See Other", | |
"description": "The response to the request can be found under a different URI using a GET method." | |
}, | |
{ | |
"code": 304, | |
"name": "Not Modified", | |
"description": "The client's cached version of the requested resource is up to date." | |
}, | |
{ | |
"code": 305, | |
"name": "Use Proxy", | |
"description": "The requested resource must be accessed through the proxy given by the Location field." | |
}, | |
{ | |
"code": 307, | |
"name": "Temporary Redirect", | |
"description": "The requested resource resides temporarily under a different URI." | |
}, | |
{ | |
"code": 308, | |
"name": "Permanent Redirect", | |
"description": "The requested resource has been permanently moved to another URI." | |
} | |
], | |
"4xx": [ | |
{ | |
"code": 400, | |
"name": "Bad Request", | |
"description": "The server cannot process the request due to a client error." | |
}, | |
{ | |
"code": 401, | |
"name": "Unauthorized", | |
"description": "The request requires user authentication." | |
}, | |
{ | |
"code": 402, | |
"name": "Payment Required", | |
"description": "Reserved for future use. The original intention was that this code might be used as part of some form of digital cash or micropayment scheme." | |
}, | |
{ | |
"code": 403, | |
"name": "Forbidden", | |
"description": "The server understood the request but refuses to authorize it." | |
}, | |
{ | |
"code": 404, | |
"name": "Not Found", | |
"description": "The requested resource could not be found on the server." | |
}, | |
{ | |
"code": 405, | |
"name": "Method Not Allowed", | |
"description": "The request method is not supported for the requested resource." | |
}, | |
{ | |
"code": 406, | |
"name": "Not Acceptable", | |
"description": "The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request." | |
}, | |
{ | |
"code": 407, | |
"name": "Proxy Authentication Required", | |
"description": "The client must first authenticate itself with the proxy." | |
}, | |
{ | |
"code": 408, | |
"name": "Request Timeout", | |
"description": "The server timed out waiting for the request." | |
}, | |
{ | |
"code": 409, | |
"name": "Conflict", | |
"description": "The request could not be completed due to a conflict with the current state of the resource." | |
}, | |
{ | |
"code": 410, | |
"name": "Gone", | |
"description": "The requested resource is no longer available and will not be available again." | |
}, | |
{ | |
"code": 411, | |
"name": "Length Required", | |
"description": "The request did not specify the length of its content, which is required by the requested resource." | |
}, | |
{ | |
"code": 412, | |
"name": "Precondition Failed", | |
"description": "The server does not meet one of the preconditions that the requester put on the request." | |
}, | |
{ | |
"code": 413, | |
"name": "Payload Too Large", | |
"description": "The request is larger than the server is willing or able to process." | |
}, | |
{ | |
"code": 414, | |
"name": "URI Too Long", | |
"description": "The URI provided was too long for the server to process." | |
}, | |
{ | |
"code": 415, | |
"name": "Unsupported Media Type", | |
"description": "The request entity has a media type which the server or resource does not support." | |
}, | |
{ | |
"code": 416, | |
"name": "Range Not Satisfiable", | |
"description": "The client has asked for a portion of the file, but the server cannot supply that portion." | |
}, | |
{ | |
"code": 417, | |
"name": "Expectation Failed", | |
"description": "The server cannot meet the requirements of the Expect request-header field." | |
}, | |
{ | |
"code": 418, | |
"name": "I'm a teapot", | |
"description": "Any attempt to brew coffee with a teapot should result in this error." | |
}, | |
{ | |
"code": 421, | |
"name": "Misdirected Request", | |
"description": "The request was directed at a server that is not able to produce a response." | |
}, | |
{ | |
"code": 422, | |
"name": "Unprocessable Entity", | |
"description": "The request was well-formed but was unable to be followed due to semantic errors." | |
}, | |
{ | |
"code": 423, | |
"name": "Locked", | |
"description": "The resource that is being accessed is locked." | |
}, | |
{ | |
"code": 424, | |
"name": "Failed Dependency", | |
"description": "The request failed due to failure of a previous request." | |
}, | |
{ | |
"code": 425, | |
"name": "Too Early", | |
"description": "Indicates that the server is unwilling to risk processing a request that might be replayed." | |
}, | |
{ | |
"code": 426, | |
"name": "Upgrade Required", | |
"description": "The client should switch to a different protocol such as TLS/1.0." | |
}, | |
{ | |
"code": 428, | |
"name": "Precondition Required", | |
"description": "The origin server requires the request to be conditional." | |
}, | |
{ | |
"code": 429, | |
"name": "Too Many Requests", | |
"description": "The user has sent too many requests in a given amount of time." | |
}, | |
{ | |
"code": 431, | |
"name": "Request Header Fields Too Large", | |
"description": "The server is unwilling to process the request because its header fields are too large." | |
}, | |
{ | |
"code": 451, | |
"name": "Unavailable For Legal Reasons", | |
"description": "The user-agent requested a resource that cannot legally be provided." | |
} | |
], | |
"5xx": [ | |
{ | |
"code": 500, | |
"name": "Internal Server Error", | |
"description": "A generic error message when the server encounters an unexpected condition." | |
}, | |
{ | |
"code": 501, | |
"name": "Not Implemented", | |
"description": "The server does not support the functionality required to fulfill the request." | |
}, | |
{ | |
"code": 502, | |
"name": "Bad Gateway", | |
"description": "The server acting as a gateway or proxy received an invalid response from an upstream server." | |
}, | |
{ | |
"code": 503, | |
"name": "Service Unavailable", | |
"description": "The server is currently unable to handle the request due to temporary overloading or maintenance." | |
}, | |
{ | |
"code": 504, | |
"name": "Gateway Timeout", | |
"description": "The server acting as a gateway or proxy did not receive a timely response from an upstream server." | |
}, | |
{ | |
"code": 505, | |
"name": "HTTP Version Not Supported", | |
"description": "The server does not support the HTTP protocol version used in the request." | |
}, | |
{ | |
"code": 506, | |
"name": "Variant Also Negotiates", | |
"description": "Transparent content negotiation for the request results in a circular reference." | |
}, | |
{ | |
"code": 507, | |
"name": "Insufficient Storage", | |
"description": "The server is unable to store the representation needed to complete the request." | |
}, | |
{ | |
"code": 508, | |
"name": "Loop Detected", | |
"description": "The server detected an infinite loop while processing the request." | |
}, | |
{ | |
"code": 510, | |
"name": "Not Extended", | |
"description": "Further extensions to the request are required for the server to fulfill it." | |
}, | |
{ | |
"code": 511, | |
"name": "Network Authentication Required", | |
"description": "The client needs to authenticate to gain network access." | |
} | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" ?> | |
<svg xmlns="http://www.w3.org/2000/svg" width="1380" height="4620"> | |
<defs> | |
<style>@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');</style> | |
</defs> | |
<text x="690.0" y="30.0" fill="black" font-size="36" font-family="Arial" font-weight="bold" text-anchor="middle">HTTP Status Codes</text> | |
<g> | |
<text x="690.0" y="90" fill="black" font-size="24" font-family="Arial" font-weight="bold" text-anchor="middle">1xx</text> | |
<g> | |
<rect x="50" y="130" width="310" height="230" fill="#E6F3FF" rx="10" ry="10"/> | |
<text x="205.0" y="165" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">100</text> | |
<line x1="60" y1="180" x2="350" y2="180" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="210" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Continue</text> | |
<line x1="60" y1="240" x2="350" y2="240" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="265" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The server has received the request</text> | |
<text x="205.0" y="285" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">headers and the client should</text> | |
<text x="205.0" y="305" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">proceed to send the request body.</text> | |
</g> | |
<g> | |
<rect x="370" y="130" width="310" height="230" fill="#E6F3FF" rx="10" ry="10"/> | |
<text x="525.0" y="165" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">101</text> | |
<line x1="380" y1="180" x2="670" y2="180" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="210" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Switching Protocols</text> | |
<line x1="380" y1="240" x2="670" y2="240" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="265" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The requester has asked the server</text> | |
<text x="525.0" y="285" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">to switch protocols and the server</text> | |
<text x="525.0" y="305" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">has agreed to do so.</text> | |
</g> | |
<g> | |
<rect x="690" y="130" width="310" height="230" fill="#E6F3FF" rx="10" ry="10"/> | |
<text x="845.0" y="165" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">102</text> | |
<line x1="700" y1="180" x2="990" y2="180" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="210" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Processing</text> | |
<line x1="700" y1="240" x2="990" y2="240" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="265" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The server has received and is</text> | |
<text x="845.0" y="285" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">processing the request, but no</text> | |
<text x="845.0" y="305" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">response is available yet.</text> | |
</g> | |
<g> | |
<rect x="1010" y="130" width="310" height="230" fill="#E6F3FF" rx="10" ry="10"/> | |
<text x="1165.0" y="165" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">103</text> | |
<line x1="1020" y1="180" x2="1310" y2="180" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="210" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Early Hints</text> | |
<line x1="1020" y1="240" x2="1310" y2="240" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="265" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">Used to return some response</text> | |
<text x="1165.0" y="285" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">headers before final HTTP message.</text> | |
</g> | |
</g> | |
<g> | |
<text x="690.0" y="420" fill="black" font-size="24" font-family="Arial" font-weight="bold" text-anchor="middle">2xx</text> | |
<g> | |
<rect x="50" y="460" width="310" height="230" fill="#E6FFE6" rx="10" ry="10"/> | |
<text x="205.0" y="495" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">200</text> | |
<line x1="60" y1="510" x2="350" y2="510" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="540" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">OK</text> | |
<line x1="60" y1="570" x2="350" y2="570" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="595" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The request was successful and the</text> | |
<text x="205.0" y="615" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">server has returned the requested</text> | |
<text x="205.0" y="635" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">data.</text> | |
</g> | |
<g> | |
<rect x="370" y="460" width="310" height="230" fill="#E6FFE6" rx="10" ry="10"/> | |
<text x="525.0" y="495" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">201</text> | |
<line x1="380" y1="510" x2="670" y2="510" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="540" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Created</text> | |
<line x1="380" y1="570" x2="670" y2="570" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="595" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The request was successful and a new</text> | |
<text x="525.0" y="615" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">resource was created as a result.</text> | |
</g> | |
<g> | |
<rect x="690" y="460" width="310" height="230" fill="#E6FFE6" rx="10" ry="10"/> | |
<text x="845.0" y="495" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">202</text> | |
<line x1="700" y1="510" x2="990" y2="510" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="540" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Accepted</text> | |
<line x1="700" y1="570" x2="990" y2="570" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="595" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The request has been accepted for</text> | |
<text x="845.0" y="615" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">processing, but the processing has</text> | |
<text x="845.0" y="635" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">not been completed.</text> | |
</g> | |
<g> | |
<rect x="1010" y="460" width="310" height="230" fill="#E6FFE6" rx="10" ry="10"/> | |
<text x="1165.0" y="495" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">203</text> | |
<line x1="1020" y1="510" x2="1310" y2="510" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="540" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Non-Authoritative</text> | |
<text x="1165.0" y="562" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Information</text> | |
<line x1="1020" y1="570" x2="1310" y2="570" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="595" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The server successfully processed</text> | |
<text x="1165.0" y="615" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">the request but is returning</text> | |
<text x="1165.0" y="635" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">information that may be from</text> | |
<text x="1165.0" y="655" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">another source.</text> | |
</g> | |
<g> | |
<rect x="50" y="700" width="310" height="230" fill="#E6FFE6" rx="10" ry="10"/> | |
<text x="205.0" y="735" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">204</text> | |
<line x1="60" y1="750" x2="350" y2="750" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="780" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">No Content</text> | |
<line x1="60" y1="810" x2="350" y2="810" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="835" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The server successfully processed</text> | |
<text x="205.0" y="855" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">the request but is not returning any</text> | |
<text x="205.0" y="875" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">content.</text> | |
</g> | |
<g> | |
<rect x="370" y="700" width="310" height="230" fill="#E6FFE6" rx="10" ry="10"/> | |
<text x="525.0" y="735" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">205</text> | |
<line x1="380" y1="750" x2="670" y2="750" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="780" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Reset Content</text> | |
<line x1="380" y1="810" x2="670" y2="810" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="835" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The server successfully processed</text> | |
<text x="525.0" y="855" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">the request, but is not returning</text> | |
<text x="525.0" y="875" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">any content. Unlike a 204 response,</text> | |
<text x="525.0" y="895" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">this response requires that the</text> | |
<text x="525.0" y="915" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">requester reset the document view.</text> | |
</g> | |
<g> | |
<rect x="690" y="700" width="310" height="230" fill="#E6FFE6" rx="10" ry="10"/> | |
<text x="845.0" y="735" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">206</text> | |
<line x1="700" y1="750" x2="990" y2="750" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="780" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Partial Content</text> | |
<line x1="700" y1="810" x2="990" y2="810" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="835" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The server is delivering only part</text> | |
<text x="845.0" y="855" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">of the resource due to a range header</text> | |
<text x="845.0" y="875" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">sent by the client.</text> | |
</g> | |
<g> | |
<rect x="1010" y="700" width="310" height="230" fill="#E6FFE6" rx="10" ry="10"/> | |
<text x="1165.0" y="735" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">207</text> | |
<line x1="1020" y1="750" x2="1310" y2="750" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="780" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Multi-Status</text> | |
<line x1="1020" y1="810" x2="1310" y2="810" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="835" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The message body that follows is an</text> | |
<text x="1165.0" y="855" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">XML message and can contain a number</text> | |
<text x="1165.0" y="875" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">of separate response codes.</text> | |
</g> | |
<g> | |
<rect x="50" y="940" width="310" height="230" fill="#E6FFE6" rx="10" ry="10"/> | |
<text x="205.0" y="975" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">208</text> | |
<line x1="60" y1="990" x2="350" y2="990" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="1020" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Already Reported</text> | |
<line x1="60" y1="1050" x2="350" y2="1050" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="1075" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The members of a DAV binding have</text> | |
<text x="205.0" y="1095" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">already been enumerated in a</text> | |
<text x="205.0" y="1115" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">previous reply to this request, and</text> | |
<text x="205.0" y="1135" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">are not being included again.</text> | |
</g> | |
<g> | |
<rect x="370" y="940" width="310" height="230" fill="#E6FFE6" rx="10" ry="10"/> | |
<text x="525.0" y="975" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">226</text> | |
<line x1="380" y1="990" x2="670" y2="990" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="1020" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">IM Used</text> | |
<line x1="380" y1="1050" x2="670" y2="1050" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="1075" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The server has fulfilled a request</text> | |
<text x="525.0" y="1095" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">for the resource, and the response</text> | |
<text x="525.0" y="1115" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">is a representation of the result of</text> | |
<text x="525.0" y="1135" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">one or more</text> | |
<text x="525.0" y="1155" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">instance-manipulations applied</text> | |
</g> | |
</g> | |
<g> | |
<text x="690.0" y="1230" fill="black" font-size="24" font-family="Arial" font-weight="bold" text-anchor="middle">3xx</text> | |
<g> | |
<rect x="50" y="1270" width="310" height="230" fill="#FFFFE6" rx="10" ry="10"/> | |
<text x="205.0" y="1305" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">300</text> | |
<line x1="60" y1="1320" x2="350" y2="1320" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="1350" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Multiple Choices</text> | |
<line x1="60" y1="1380" x2="350" y2="1380" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="1405" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The requested resource has</text> | |
<text x="205.0" y="1425" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">multiple representations</text> | |
<text x="205.0" y="1445" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">available.</text> | |
</g> | |
<g> | |
<rect x="370" y="1270" width="310" height="230" fill="#FFFFE6" rx="10" ry="10"/> | |
<text x="525.0" y="1305" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">301</text> | |
<line x1="380" y1="1320" x2="670" y2="1320" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="1350" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Moved Permanently</text> | |
<line x1="380" y1="1380" x2="670" y2="1380" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="1405" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The requested resource has been</text> | |
<text x="525.0" y="1425" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">permanently moved to a new URL.</text> | |
</g> | |
<g> | |
<rect x="690" y="1270" width="310" height="230" fill="#FFFFE6" rx="10" ry="10"/> | |
<text x="845.0" y="1305" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">302</text> | |
<line x1="700" y1="1320" x2="990" y2="1320" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="1350" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Found</text> | |
<line x1="700" y1="1380" x2="990" y2="1380" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="1405" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The requested resource has been</text> | |
<text x="845.0" y="1425" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">temporarily moved to a different</text> | |
<text x="845.0" y="1445" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">URL.</text> | |
</g> | |
<g> | |
<rect x="1010" y="1270" width="310" height="230" fill="#FFFFE6" rx="10" ry="10"/> | |
<text x="1165.0" y="1305" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">303</text> | |
<line x1="1020" y1="1320" x2="1310" y2="1320" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="1350" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">See Other</text> | |
<line x1="1020" y1="1380" x2="1310" y2="1380" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="1405" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The response to the request can be</text> | |
<text x="1165.0" y="1425" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">found under a different URI using a</text> | |
<text x="1165.0" y="1445" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">GET method.</text> | |
</g> | |
<g> | |
<rect x="50" y="1510" width="310" height="230" fill="#FFFFE6" rx="10" ry="10"/> | |
<text x="205.0" y="1545" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">304</text> | |
<line x1="60" y1="1560" x2="350" y2="1560" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="1590" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Not Modified</text> | |
<line x1="60" y1="1620" x2="350" y2="1620" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="1645" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The client's cached version of the</text> | |
<text x="205.0" y="1665" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">requested resource is up to date.</text> | |
</g> | |
<g> | |
<rect x="370" y="1510" width="310" height="230" fill="#FFFFE6" rx="10" ry="10"/> | |
<text x="525.0" y="1545" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">305</text> | |
<line x1="380" y1="1560" x2="670" y2="1560" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="1590" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Use Proxy</text> | |
<line x1="380" y1="1620" x2="670" y2="1620" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="1645" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The requested resource must be</text> | |
<text x="525.0" y="1665" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">accessed through the proxy given by</text> | |
<text x="525.0" y="1685" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">the Location field.</text> | |
</g> | |
<g> | |
<rect x="690" y="1510" width="310" height="230" fill="#FFFFE6" rx="10" ry="10"/> | |
<text x="845.0" y="1545" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">307</text> | |
<line x1="700" y1="1560" x2="990" y2="1560" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="1590" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Temporary Redirect</text> | |
<line x1="700" y1="1620" x2="990" y2="1620" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="1645" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The requested resource resides</text> | |
<text x="845.0" y="1665" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">temporarily under a different URI.</text> | |
</g> | |
<g> | |
<rect x="1010" y="1510" width="310" height="230" fill="#FFFFE6" rx="10" ry="10"/> | |
<text x="1165.0" y="1545" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">308</text> | |
<line x1="1020" y1="1560" x2="1310" y2="1560" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="1590" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Permanent Redirect</text> | |
<line x1="1020" y1="1620" x2="1310" y2="1620" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="1645" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The requested resource has been</text> | |
<text x="1165.0" y="1665" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">permanently moved to another URI.</text> | |
</g> | |
</g> | |
<g> | |
<text x="690.0" y="1800" fill="black" font-size="24" font-family="Arial" font-weight="bold" text-anchor="middle">4xx</text> | |
<g> | |
<rect x="50" y="1840" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="205.0" y="1875" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">400</text> | |
<line x1="60" y1="1890" x2="350" y2="1890" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="1920" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Bad Request</text> | |
<line x1="60" y1="1950" x2="350" y2="1950" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="1975" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The server cannot process the</text> | |
<text x="205.0" y="1995" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">request due to a client error.</text> | |
</g> | |
<g> | |
<rect x="370" y="1840" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="525.0" y="1875" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">401</text> | |
<line x1="380" y1="1890" x2="670" y2="1890" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="1920" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Unauthorized</text> | |
<line x1="380" y1="1950" x2="670" y2="1950" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="1975" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The request requires user</text> | |
<text x="525.0" y="1995" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">authentication.</text> | |
</g> | |
<g> | |
<rect x="690" y="1840" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="845.0" y="1875" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">402</text> | |
<line x1="700" y1="1890" x2="990" y2="1890" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="1920" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Payment Required</text> | |
<line x1="700" y1="1950" x2="990" y2="1950" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="1975" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">Reserved for future use. The</text> | |
<text x="845.0" y="1995" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">original intention was that this</text> | |
<text x="845.0" y="2015" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">code might be used as part of some</text> | |
<text x="845.0" y="2035" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">form of digital cash or</text> | |
<text x="845.0" y="2055" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">micropayment scheme.</text> | |
</g> | |
<g> | |
<rect x="1010" y="1840" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="1165.0" y="1875" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">403</text> | |
<line x1="1020" y1="1890" x2="1310" y2="1890" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="1920" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Forbidden</text> | |
<line x1="1020" y1="1950" x2="1310" y2="1950" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="1975" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The server understood the request</text> | |
<text x="1165.0" y="1995" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">but refuses to authorize it.</text> | |
</g> | |
<g> | |
<rect x="50" y="2080" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="205.0" y="2115" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">404</text> | |
<line x1="60" y1="2130" x2="350" y2="2130" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="2160" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Not Found</text> | |
<line x1="60" y1="2190" x2="350" y2="2190" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="2215" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The requested resource could not be</text> | |
<text x="205.0" y="2235" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">found on the server.</text> | |
</g> | |
<g> | |
<rect x="370" y="2080" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="525.0" y="2115" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">405</text> | |
<line x1="380" y1="2130" x2="670" y2="2130" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="2160" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Method Not Allowed</text> | |
<line x1="380" y1="2190" x2="670" y2="2190" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="2215" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The request method is not supported</text> | |
<text x="525.0" y="2235" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">for the requested resource.</text> | |
</g> | |
<g> | |
<rect x="690" y="2080" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="845.0" y="2115" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">406</text> | |
<line x1="700" y1="2130" x2="990" y2="2130" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="2160" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Not Acceptable</text> | |
<line x1="700" y1="2190" x2="990" y2="2190" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="2215" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The requested resource is capable</text> | |
<text x="845.0" y="2235" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">of generating only content not</text> | |
<text x="845.0" y="2255" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">acceptable according to the Accept</text> | |
<text x="845.0" y="2275" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">headers sent in the request.</text> | |
</g> | |
<g> | |
<rect x="1010" y="2080" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="1165.0" y="2115" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">407</text> | |
<line x1="1020" y1="2130" x2="1310" y2="2130" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="2160" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Proxy Authentication</text> | |
<text x="1165.0" y="2182" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Required</text> | |
<line x1="1020" y1="2190" x2="1310" y2="2190" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="2215" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The client must first authenticate</text> | |
<text x="1165.0" y="2235" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">itself with the proxy.</text> | |
</g> | |
<g> | |
<rect x="50" y="2320" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="205.0" y="2355" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">408</text> | |
<line x1="60" y1="2370" x2="350" y2="2370" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="2400" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Request Timeout</text> | |
<line x1="60" y1="2430" x2="350" y2="2430" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="2455" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The server timed out waiting for the</text> | |
<text x="205.0" y="2475" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">request.</text> | |
</g> | |
<g> | |
<rect x="370" y="2320" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="525.0" y="2355" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">409</text> | |
<line x1="380" y1="2370" x2="670" y2="2370" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="2400" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Conflict</text> | |
<line x1="380" y1="2430" x2="670" y2="2430" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="2455" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The request could not be completed</text> | |
<text x="525.0" y="2475" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">due to a conflict with the current</text> | |
<text x="525.0" y="2495" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">state of the resource.</text> | |
</g> | |
<g> | |
<rect x="690" y="2320" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="845.0" y="2355" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">410</text> | |
<line x1="700" y1="2370" x2="990" y2="2370" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="2400" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Gone</text> | |
<line x1="700" y1="2430" x2="990" y2="2430" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="2455" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The requested resource is no longer</text> | |
<text x="845.0" y="2475" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">available and will not be available</text> | |
<text x="845.0" y="2495" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">again.</text> | |
</g> | |
<g> | |
<rect x="1010" y="2320" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="1165.0" y="2355" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">411</text> | |
<line x1="1020" y1="2370" x2="1310" y2="2370" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="2400" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Length Required</text> | |
<line x1="1020" y1="2430" x2="1310" y2="2430" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="2455" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The request did not specify the</text> | |
<text x="1165.0" y="2475" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">length of its content, which is</text> | |
<text x="1165.0" y="2495" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">required by the requested</text> | |
<text x="1165.0" y="2515" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">resource.</text> | |
</g> | |
<g> | |
<rect x="50" y="2560" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="205.0" y="2595" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">412</text> | |
<line x1="60" y1="2610" x2="350" y2="2610" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="2640" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Precondition Failed</text> | |
<line x1="60" y1="2670" x2="350" y2="2670" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="2695" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The server does not meet one of the</text> | |
<text x="205.0" y="2715" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">preconditions that the requester</text> | |
<text x="205.0" y="2735" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">put on the request.</text> | |
</g> | |
<g> | |
<rect x="370" y="2560" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="525.0" y="2595" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">413</text> | |
<line x1="380" y1="2610" x2="670" y2="2610" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="2640" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Payload Too Large</text> | |
<line x1="380" y1="2670" x2="670" y2="2670" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="2695" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The request is larger than the</text> | |
<text x="525.0" y="2715" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">server is willing or able to</text> | |
<text x="525.0" y="2735" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">process.</text> | |
</g> | |
<g> | |
<rect x="690" y="2560" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="845.0" y="2595" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">414</text> | |
<line x1="700" y1="2610" x2="990" y2="2610" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="2640" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">URI Too Long</text> | |
<line x1="700" y1="2670" x2="990" y2="2670" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="2695" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The URI provided was too long for the</text> | |
<text x="845.0" y="2715" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">server to process.</text> | |
</g> | |
<g> | |
<rect x="1010" y="2560" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="1165.0" y="2595" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">415</text> | |
<line x1="1020" y1="2610" x2="1310" y2="2610" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="2640" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Unsupported Media Type</text> | |
<line x1="1020" y1="2670" x2="1310" y2="2670" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="2695" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The request entity has a media type</text> | |
<text x="1165.0" y="2715" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">which the server or resource does</text> | |
<text x="1165.0" y="2735" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">not support.</text> | |
</g> | |
<g> | |
<rect x="50" y="2800" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="205.0" y="2835" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">416</text> | |
<line x1="60" y1="2850" x2="350" y2="2850" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="2880" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Range Not Satisfiable</text> | |
<line x1="60" y1="2910" x2="350" y2="2910" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="2935" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The client has asked for a portion of</text> | |
<text x="205.0" y="2955" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">the file, but the server cannot</text> | |
<text x="205.0" y="2975" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">supply that portion.</text> | |
</g> | |
<g> | |
<rect x="370" y="2800" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="525.0" y="2835" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">417</text> | |
<line x1="380" y1="2850" x2="670" y2="2850" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="2880" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Expectation Failed</text> | |
<line x1="380" y1="2910" x2="670" y2="2910" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="2935" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The server cannot meet the</text> | |
<text x="525.0" y="2955" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">requirements of the Expect</text> | |
<text x="525.0" y="2975" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">request-header field.</text> | |
</g> | |
<g> | |
<rect x="690" y="2800" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="845.0" y="2835" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">418</text> | |
<line x1="700" y1="2850" x2="990" y2="2850" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="2880" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">I'm a teapot</text> | |
<line x1="700" y1="2910" x2="990" y2="2910" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="2935" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">Any attempt to brew coffee with a</text> | |
<text x="845.0" y="2955" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">teapot should result in this error.</text> | |
</g> | |
<g> | |
<rect x="1010" y="2800" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="1165.0" y="2835" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">421</text> | |
<line x1="1020" y1="2850" x2="1310" y2="2850" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="2880" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Misdirected Request</text> | |
<line x1="1020" y1="2910" x2="1310" y2="2910" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="2935" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The request was directed at a server</text> | |
<text x="1165.0" y="2955" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">that is not able to produce a</text> | |
<text x="1165.0" y="2975" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">response.</text> | |
</g> | |
<g> | |
<rect x="50" y="3040" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="205.0" y="3075" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">422</text> | |
<line x1="60" y1="3090" x2="350" y2="3090" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="3120" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Unprocessable Entity</text> | |
<line x1="60" y1="3150" x2="350" y2="3150" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="3175" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The request was well-formed but was</text> | |
<text x="205.0" y="3195" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">unable to be followed due to</text> | |
<text x="205.0" y="3215" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">semantic errors.</text> | |
</g> | |
<g> | |
<rect x="370" y="3040" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="525.0" y="3075" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">423</text> | |
<line x1="380" y1="3090" x2="670" y2="3090" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="3120" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Locked</text> | |
<line x1="380" y1="3150" x2="670" y2="3150" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="3175" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The resource that is being accessed</text> | |
<text x="525.0" y="3195" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">is locked.</text> | |
</g> | |
<g> | |
<rect x="690" y="3040" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="845.0" y="3075" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">424</text> | |
<line x1="700" y1="3090" x2="990" y2="3090" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="3120" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Failed Dependency</text> | |
<line x1="700" y1="3150" x2="990" y2="3150" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="3175" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The request failed due to failure of</text> | |
<text x="845.0" y="3195" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">a previous request.</text> | |
</g> | |
<g> | |
<rect x="1010" y="3040" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="1165.0" y="3075" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">425</text> | |
<line x1="1020" y1="3090" x2="1310" y2="3090" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="3120" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Too Early</text> | |
<line x1="1020" y1="3150" x2="1310" y2="3150" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="3175" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">Indicates that the server is</text> | |
<text x="1165.0" y="3195" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">unwilling to risk processing a</text> | |
<text x="1165.0" y="3215" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">request that might be replayed.</text> | |
</g> | |
<g> | |
<rect x="50" y="3280" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="205.0" y="3315" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">426</text> | |
<line x1="60" y1="3330" x2="350" y2="3330" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="3360" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Upgrade Required</text> | |
<line x1="60" y1="3390" x2="350" y2="3390" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="3415" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The client should switch to a</text> | |
<text x="205.0" y="3435" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">different protocol such as</text> | |
<text x="205.0" y="3455" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">TLS/1.0.</text> | |
</g> | |
<g> | |
<rect x="370" y="3280" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="525.0" y="3315" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">428</text> | |
<line x1="380" y1="3330" x2="670" y2="3330" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="3360" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Precondition Required</text> | |
<line x1="380" y1="3390" x2="670" y2="3390" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="3415" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The origin server requires the</text> | |
<text x="525.0" y="3435" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">request to be conditional.</text> | |
</g> | |
<g> | |
<rect x="690" y="3280" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="845.0" y="3315" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">429</text> | |
<line x1="700" y1="3330" x2="990" y2="3330" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="3360" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Too Many Requests</text> | |
<line x1="700" y1="3390" x2="990" y2="3390" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="3415" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The user has sent too many requests</text> | |
<text x="845.0" y="3435" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">in a given amount of time.</text> | |
</g> | |
<g> | |
<rect x="1010" y="3280" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="1165.0" y="3315" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">431</text> | |
<line x1="1020" y1="3330" x2="1310" y2="3330" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="3360" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Request Header Fields Too</text> | |
<text x="1165.0" y="3382" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Large</text> | |
<line x1="1020" y1="3390" x2="1310" y2="3390" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="3415" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The server is unwilling to process</text> | |
<text x="1165.0" y="3435" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">the request because its header</text> | |
<text x="1165.0" y="3455" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">fields are too large.</text> | |
</g> | |
<g> | |
<rect x="50" y="3520" width="310" height="230" fill="#FFE6E6" rx="10" ry="10"/> | |
<text x="205.0" y="3555" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">451</text> | |
<line x1="60" y1="3570" x2="350" y2="3570" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="3600" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Unavailable For Legal Reasons</text> | |
<line x1="60" y1="3630" x2="350" y2="3630" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="3655" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The user-agent requested a</text> | |
<text x="205.0" y="3675" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">resource that cannot legally be</text> | |
<text x="205.0" y="3695" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">provided.</text> | |
</g> | |
</g> | |
<g> | |
<text x="690.0" y="3810" fill="black" font-size="24" font-family="Arial" font-weight="bold" text-anchor="middle">5xx</text> | |
<g> | |
<rect x="50" y="3850" width="310" height="230" fill="#F3E6FF" rx="10" ry="10"/> | |
<text x="205.0" y="3885" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">500</text> | |
<line x1="60" y1="3900" x2="350" y2="3900" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="3930" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Internal Server Error</text> | |
<line x1="60" y1="3960" x2="350" y2="3960" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="3985" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">A generic error message when the</text> | |
<text x="205.0" y="4005" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">server encounters an unexpected</text> | |
<text x="205.0" y="4025" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">condition.</text> | |
</g> | |
<g> | |
<rect x="370" y="3850" width="310" height="230" fill="#F3E6FF" rx="10" ry="10"/> | |
<text x="525.0" y="3885" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">501</text> | |
<line x1="380" y1="3900" x2="670" y2="3900" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="3930" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Not Implemented</text> | |
<line x1="380" y1="3960" x2="670" y2="3960" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="3985" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The server does not support the</text> | |
<text x="525.0" y="4005" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">functionality required to fulfill</text> | |
<text x="525.0" y="4025" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">the request.</text> | |
</g> | |
<g> | |
<rect x="690" y="3850" width="310" height="230" fill="#F3E6FF" rx="10" ry="10"/> | |
<text x="845.0" y="3885" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">502</text> | |
<line x1="700" y1="3900" x2="990" y2="3900" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="3930" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Bad Gateway</text> | |
<line x1="700" y1="3960" x2="990" y2="3960" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="3985" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The server acting as a gateway or</text> | |
<text x="845.0" y="4005" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">proxy received an invalid response</text> | |
<text x="845.0" y="4025" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">from an upstream server.</text> | |
</g> | |
<g> | |
<rect x="1010" y="3850" width="310" height="230" fill="#F3E6FF" rx="10" ry="10"/> | |
<text x="1165.0" y="3885" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">503</text> | |
<line x1="1020" y1="3900" x2="1310" y2="3900" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="3930" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Service Unavailable</text> | |
<line x1="1020" y1="3960" x2="1310" y2="3960" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="3985" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The server is currently unable to</text> | |
<text x="1165.0" y="4005" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">handle the request due to temporary</text> | |
<text x="1165.0" y="4025" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">overloading or maintenance.</text> | |
</g> | |
<g> | |
<rect x="50" y="4090" width="310" height="230" fill="#F3E6FF" rx="10" ry="10"/> | |
<text x="205.0" y="4125" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">504</text> | |
<line x1="60" y1="4140" x2="350" y2="4140" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="4170" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Gateway Timeout</text> | |
<line x1="60" y1="4200" x2="350" y2="4200" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="4225" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The server acting as a gateway or</text> | |
<text x="205.0" y="4245" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">proxy did not receive a timely</text> | |
<text x="205.0" y="4265" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">response from an upstream server.</text> | |
</g> | |
<g> | |
<rect x="370" y="4090" width="310" height="230" fill="#F3E6FF" rx="10" ry="10"/> | |
<text x="525.0" y="4125" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">505</text> | |
<line x1="380" y1="4140" x2="670" y2="4140" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="4170" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">HTTP Version Not Supported</text> | |
<line x1="380" y1="4200" x2="670" y2="4200" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="4225" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The server does not support the HTTP</text> | |
<text x="525.0" y="4245" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">protocol version used in the</text> | |
<text x="525.0" y="4265" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">request.</text> | |
</g> | |
<g> | |
<rect x="690" y="4090" width="310" height="230" fill="#F3E6FF" rx="10" ry="10"/> | |
<text x="845.0" y="4125" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">506</text> | |
<line x1="700" y1="4140" x2="990" y2="4140" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="4170" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Variant Also Negotiates</text> | |
<line x1="700" y1="4200" x2="990" y2="4200" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="4225" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">Transparent content negotiation</text> | |
<text x="845.0" y="4245" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">for the request results in a</text> | |
<text x="845.0" y="4265" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">circular reference.</text> | |
</g> | |
<g> | |
<rect x="1010" y="4090" width="310" height="230" fill="#F3E6FF" rx="10" ry="10"/> | |
<text x="1165.0" y="4125" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">507</text> | |
<line x1="1020" y1="4140" x2="1310" y2="4140" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="4170" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Insufficient Storage</text> | |
<line x1="1020" y1="4200" x2="1310" y2="4200" stroke="black" stroke-width="1"/> | |
<text x="1165.0" y="4225" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The server is unable to store the</text> | |
<text x="1165.0" y="4245" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">representation needed to complete</text> | |
<text x="1165.0" y="4265" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">the request.</text> | |
</g> | |
<g> | |
<rect x="50" y="4330" width="310" height="230" fill="#F3E6FF" rx="10" ry="10"/> | |
<text x="205.0" y="4365" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">508</text> | |
<line x1="60" y1="4380" x2="350" y2="4380" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="4410" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Loop Detected</text> | |
<line x1="60" y1="4440" x2="350" y2="4440" stroke="black" stroke-width="1"/> | |
<text x="205.0" y="4465" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The server detected an infinite</text> | |
<text x="205.0" y="4485" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">loop while processing the request.</text> | |
</g> | |
<g> | |
<rect x="370" y="4330" width="310" height="230" fill="#F3E6FF" rx="10" ry="10"/> | |
<text x="525.0" y="4365" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">510</text> | |
<line x1="380" y1="4380" x2="670" y2="4380" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="4410" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Not Extended</text> | |
<line x1="380" y1="4440" x2="670" y2="4440" stroke="black" stroke-width="1"/> | |
<text x="525.0" y="4465" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">Further extensions to the request</text> | |
<text x="525.0" y="4485" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">are required for the server to</text> | |
<text x="525.0" y="4505" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">fulfill it.</text> | |
</g> | |
<g> | |
<rect x="690" y="4330" width="310" height="230" fill="#F3E6FF" rx="10" ry="10"/> | |
<text x="845.0" y="4365" fill="black" font-size="24" font-family="Courier New" font-weight="bold" text-anchor="middle">511</text> | |
<line x1="700" y1="4380" x2="990" y2="4380" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="4410" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Network Authentication</text> | |
<text x="845.0" y="4432" fill="black" font-size="18" font-family="Roboto" font-weight="bold" text-anchor="middle">Required</text> | |
<line x1="700" y1="4440" x2="990" y2="4440" stroke="black" stroke-width="1"/> | |
<text x="845.0" y="4465" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">The client needs to authenticate to</text> | |
<text x="845.0" y="4485" fill="black" font-size="16" font-family="Arial" font-weight="normal" text-anchor="middle">gain network access.</text> | |
</g> | |
</g> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment