mirror of https://gitee.com/bigwinds/arangodb
Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into aql2
This commit is contained in:
commit
2642888b6d
|
@ -1,7 +1,7 @@
|
|||
<script id="foxxActiveView.ejs" type="text/template">
|
||||
<% var appInfos = attributes.app.split(":"); %>
|
||||
<div class="iconSet">
|
||||
<span class="icon_arangodb_settings2" alt="Edit collection properties" title="Edit collection properties"></span>
|
||||
<span class="icon_arangodb_settings2" alt="Edit application properties" title="Edit application properties"></span>
|
||||
<span class="icon_arangodb_info" title="Show API documentation"></span>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -556,7 +556,7 @@ exports.run = function (args) {
|
|||
printf("Application %s installed successfully at mount point %s\n",
|
||||
res.appId,
|
||||
res.mount);
|
||||
printf("options used: %s", JSON.stringify(options));
|
||||
printf("options used: %s\n", JSON.stringify(options));
|
||||
}
|
||||
else if (type === 'replace') {
|
||||
if (3 < args.length) {
|
||||
|
|
|
@ -325,19 +325,19 @@ BaseMiddleware = function () {
|
|||
}
|
||||
console.log("%s, outgoing response with status %s of type %s, body length: %d",
|
||||
options.mount,
|
||||
response.responseCode,
|
||||
response.responseCode || 200,
|
||||
response.contentType,
|
||||
bodyLength);
|
||||
} else if (response.hasOwnProperty("bodyFromFile")) {
|
||||
console.log("%s, outgoing response with status %s of type %s, body file: %s",
|
||||
options.mount,
|
||||
response.responseCode,
|
||||
response.responseCode || 200,
|
||||
response.contentType,
|
||||
response.bodyFromFile);
|
||||
} else {
|
||||
console.log("%s, outgoing response with status %s of type %s, no body",
|
||||
options.mount,
|
||||
response.responseCode,
|
||||
response.responseCode || 200,
|
||||
response.contentType);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue