GetServerInfo: Return archive format names as lower case
Clients can make use of the the archive format names returned by the
GetServerInfo REST endpoint to retrieve the archive in a specific
format by using the GetArchive REST endpoint. The GetArchive REST
endpoint requires the archive format in lower case. Hence the
GetServerInfo REST endpoint should return the archive format names in
lower case, so that clients don't need convert the archive format
names to lower case on their own.
Change-Id: Idce4473f0ce7bdec744b9f60116f1bbd01f76bcd
Signed-off-by: Edwin Kempin <edwin.kempin@sap.com>
diff --git a/Documentation/rest-api-config.txt b/Documentation/rest-api-config.txt
index 4a33732..a8bbbfa 100644
--- a/Documentation/rest-api-config.txt
+++ b/Documentation/rest-api-config.txt
@@ -94,10 +94,10 @@
}
],
"archives": [
- "TGZ",
- "TAR",
- "TBZ2",
- "TXZ"
+ "tgz",
+ "tar",
+ "tbz2",
+ "txz"
]
},
"gerrit": {
@@ -1001,8 +1001,8 @@
The supported download schemes as a map which maps the scheme name to a
of link:#download-scheme-info[DownloadSchemeInfo] entity.
|`archives` |
-List of supported archive formats. Possible values are `TGZ`, `TAR`,
-`TBZ2` and `TXZ`.
+List of supported archive formats. Possible values are `tgz`, `tar`,
+`tbz2` and `txz`.
|=======================
[[download-scheme-info]]