1
0
Fork 0
Commit Graph

166 Commits

Author SHA1 Message Date
Jan Steemann 748107b291 changed behavior of `db._query()` in the ArangoShell:
if the command's result is printed in the shell, the first 10 results will be printed. Previously
only a basic description of the underlying query result cursor was printed. Additionally, if the
cursor result contains more than 10 results, the cursor is assigned to a global variable `more`,
which can be used to iterate over the cursor result.

Example:

    arangosh [_system]> db._query("FOR i IN 1..15 RETURN i")
    [object ArangoQueryCursor, count: 15, hasMore: true]

    [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10
    ]

    type 'more' to show more documents

    arangosh [_system]> more
    [object ArangoQueryCursor, count: 15, hasMore: false]

    [
      11,
      12,
      13,
      14,
      15
    ]
2015-04-04 19:42:55 +02:00
Jan Steemann bed9f44873 added missing files for web interface 2015-04-03 15:01:12 +02:00
Jan Steemann 37e0233d10 Revert "added missing files for JSH"
This reverts commit 99b80dd1e338ec122fea54e6af604f2310f1e080.
2015-04-03 14:57:52 +02:00
Jan Steemann 8b132ad60f added missing files for JSH 2015-04-03 14:57:12 +02:00
Alan Plum c23390360b Unbreak the build. 2015-04-02 01:49:00 +02:00
Alan Plum 8ffd5ddd1c Allow running arbitrary Foxx scripts. 2015-04-02 00:16:23 +02:00
Michael Hackstein 3c79b54330 Merge branch 'devel' of github.com:arangodb/arangodb into gos 2015-04-01 13:38:29 +02:00
Michael Hackstein e2fd4cdd65 Further improvements of graph queries. All queries should now be noticably faster. 2015-04-01 13:25:25 +02:00
Jan Steemann 33de89915c make graph viewer issue less expensive queries 2015-04-01 11:40:38 +02:00
Jan Steemann 3ddf23d093 hand-moved changes from other branch 2015-03-30 12:30:45 +02:00
Alan Plum b1822be3ad Fixed Aardvark PATCH configuration. 2015-03-25 17:38:50 +01:00
Jan Steemann 7ec3a18e04 added internal.options() 2015-03-25 17:08:29 +01:00
Jan Steemann 479a66c441 added generated file 2015-03-25 08:58:02 +01:00
Jan Steemann 7d5cc17d98 added tests 2015-03-23 22:28:26 +01:00
Jan Steemann 3b6dfc868e Merge branch 'devel' of https://github.com/arangodb/arangodb into data-modification 2015-03-20 23:23:13 +01:00
Jan Steemann d63f47e840 added possibility to kill JS traversals 2015-03-20 23:05:41 +01:00
Jan Steemann 8e48f98045 Merge branch 'devel' of https://github.com/arangodb/arangodb into data-modification
Conflicts:
	arangod/Aql/Collection.cpp
	arangod/Aql/ExecutionBlock.cpp
2015-03-20 21:54:39 +01:00
Jan Steemann 8004a7be02 added derived file 2015-03-20 12:07:48 +01:00
Jan Steemann bdae982aa0 refuse to start the server when collection files or parameter.json files are not readable
Conflicts:
	js/apps/system/aardvark/frontend/js/bootstrap/errors.js
2015-03-18 17:44:06 +01:00
Jan Steemann 8aa9ef1f9c added derived file 2015-03-17 18:29:03 +01:00
Michael Hackstein e942f6252d Merge branch 'devel' of github.com:arangodb/arangodb into devel
Conflicts:
	js/apps/system/_admin/aardvark/APP/test/specs/views/documentViewSpec.js
2015-03-16 15:04:37 +01:00
Michael Hackstein 371702ceca Proved Document view and its tests. Adapted router along-side. This shall catch the bug that it is not possible to store valid json containing colons 2015-03-16 15:01:26 +01:00
Heiko Kernbach 02923a91ee fixed spec 2015-03-16 11:28:19 +01:00
Heiko Kernbach f16aa58852 fixed docs save bug in front-end 2015-03-16 11:18:51 +01:00
Heiko Kernbach a392fc6b0e added new query related files to karma tests 2015-03-13 10:34:38 +01:00
Michael Hackstein e314a6097c Fixed link to download API documentatioN 2015-03-13 09:44:34 +01:00
Michael Hackstein dec8a59073 Removed unused code 2015-03-13 09:44:02 +01:00
Heiko Kernbach 8a1e30b9d0 included 44fb5a554f1bbbf985724dbea92ed382f61a06be 2015-03-12 17:32:31 +01:00
Heiko Kernbach 449e3f1a18 added query management view, kill running queries and show slow queries 2015-03-12 16:42:20 +01:00
Michael Hackstein 5be310fc21 It is now possible to install Apps that are invalid if they are not configured correctly. If they get broken by configuration they are still routed and will display an errorpage. They also display an errorpage until configured. 2015-03-11 17:49:42 +01:00
Michael Hackstein 0a8e15749a Fixed scss-lint 2015-03-11 13:47:02 +01:00
Heiko Kernbach 96ec4f3d7d larger modals for graph viewer 2015-03-10 11:43:55 +01:00
Michael Hackstein 21815a299d Added sharedlib 2015-03-10 11:39:23 +01:00
Michael Hackstein 2713df2aef Fixed frontend test 2015-03-10 10:40:03 +01:00
Michael Hackstein 82d58ddb19 Changed default document of Aardvark app 2015-03-10 10:38:27 +01:00
Michael Hackstein f70b8c66af Fixed the Web interface reachability test 2015-03-10 10:32:34 +01:00
Michael Hackstein d4848d3a42 Made foxx ready for clustering 2015-03-09 19:17:50 +01:00
Heiko Kernbach 2cb2f0b707 json editor now accepts keys without quotation marks 2015-03-09 15:40:26 +01:00
Michael Hackstein 5e363b3213 Fixed redirect for web interface 2015-03-09 11:42:43 +01:00
Michael Hackstein 9286c6211d Fixed Foxx Download test 2015-03-09 09:55:43 +01:00
Michael Hackstein 0513b043fd Fixed wrong download path for faxx apps #1259 2015-03-09 09:42:25 +01:00
Heiko Kernbach 6d418865b3 fixed frontend bug 2015-03-06 15:42:36 +01:00
Michael Hackstein 25d0df4049 Fixed frontend coverage tests and potentially fixed a ghost that from time to time kills Web Interface tests. 2015-03-05 15:18:16 +01:00
Michael Hackstein 6c7abc7310 Fixed Frontend tests 2015-03-04 15:55:40 +01:00
Michael Hackstein 4e20eeab33 Fixed dashboard behaviour in dashboard. #1259 2015-03-04 15:39:37 +01:00
Michael Hackstein 063f498e7f Fixed jslint warning 2015-03-04 15:31:26 +01:00
Michael Hackstein 7f509e2381 Added forgotten file for last commit. 2015-03-04 14:49:28 +01:00
Michael Hackstein 85aee07023 Fixed switching DBs dropdown. Still to do: Dashboard if authenticated and no _system user. #1259. 2015-03-04 14:21:11 +01:00
Alan Plum f5a5bac855 Fixed dashboard for disableAuthentication. 2015-03-03 18:02:26 +01:00
Alan Plum f0359b8b86 Added grunt script to aardvark package.json. 2015-03-03 18:01:31 +01:00