1
0
Fork 0
This commit is contained in:
Jan Steemann 2012-12-01 01:47:38 +01:00
parent 634f20ed4e
commit 68a15060b1
2 changed files with 8 additions and 1 deletions

View File

@ -10,6 +10,8 @@ v1.1.0 (XXXX-XX-XX)
* fixed issue #304: do not clear AQL query text input when switching tabs in
web interface
* fixed issue #303: added documentation about usage of var keyword in web interface
* fixed issue #301: PATCH does not work in web interface
# fixed issue #269: fix make distclean & clean

View File

@ -2579,7 +2579,12 @@ function ArangoDatabase (connection) {
' > help show help pages ' + "\n" +
' > exit ' + "\n" +
'Note: collection names may be cached in arangosh. To refresh them, issue: ' + "\n" +
' > db._collections(); ';
' > db._collections(); ' + "\n" +
(internal.printBrowser ?
' ' + "\n" +
'Please note that all variables defined with the var keyword will disappear' + "\n" +
'when the command is finished. To introduce variables that are persisted ' + "\n" +
'until the next command, you should omit the var keyword. ' + "\n" : '');
////////////////////////////////////////////////////////////////////////////////
/// @brief query help