1
0
Fork 0

Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into aql2

This commit is contained in:
Jan Steemann 2014-09-09 23:33:31 +02:00
commit 2642888b6d
3 changed files with 5 additions and 5 deletions

View File

@ -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>

View File

@ -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) {

View File

@ -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);
}
}