mirror of https://gitee.com/bigwinds/arangodb
updated documentation
This commit is contained in:
parent
6a19fbb18f
commit
e0aea2c04d
|
@ -1,6 +1,10 @@
|
|||
v1.4.5-rc1 (XXXX-XX-XX)
|
||||
-------------------
|
||||
|
||||
* added missing documentation for several methods in HTTP API `/_api/edge/...`
|
||||
|
||||
* fixed typos in HTTP API `_api/document`
|
||||
|
||||
* defer evaluation of AQL subqueries and logical operators (lazy evaluation)
|
||||
|
||||
* Updated font in WebFrontend, it now contains a version that renders properly on windows
|
||||
|
|
|
@ -687,13 +687,7 @@ bool RestDocumentHandler::readAllDocuments () {
|
|||
string result("{ \"documents\" : [\n");
|
||||
|
||||
bool first = true;
|
||||
string prefix;
|
||||
if (getCollectionType() == TRI_COL_TYPE_DOCUMENT) {
|
||||
prefix = '"' + DOCUMENT_PATH + '/' + _resolver.getCollectionName(cid) + '/';
|
||||
}
|
||||
else {
|
||||
prefix = '"' + EDGE_PATH + '/' + _resolver.getCollectionName(cid) + '/';
|
||||
}
|
||||
string prefix = '"' + DOCUMENT_PATH + '/' + _resolver.getCollectionName(cid) + '/';
|
||||
|
||||
for (vector<string>::const_iterator i = ids.begin(); i != ids.end(); ++i) {
|
||||
// collection names do not need to be JSON-escaped
|
||||
|
|
Loading…
Reference in New Issue