mirror of https://gitee.com/bigwinds/arangodb
issue #303
This commit is contained in:
parent
634f20ed4e
commit
68a15060b1
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue