Jan Steemann
64417d4423
Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into sharding
...
Conflicts:
arangod/V8Server/v8-vocbase.cpp
2014-01-21 09:29:45 +01:00
Jan Steemann
4f5052f469
issue #730 : initial implementation of A*
2014-01-18 01:46:24 +01:00
Michael Hackstein
9f3479f5b6
Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into sharding
...
Conflicts:
utils/Makefile.files
2014-01-10 17:41:52 +01:00
Jan Steemann
03b55488b6
fixed client-side implementation of function registration
2014-01-03 13:58:35 +01:00
Jan Steemann
91c52a3a2e
fixed potential deadlock in global context execution
2014-01-03 13:47:11 +01:00
Michael Hackstein
920f5e6d4b
Updated JSUnity, now equalitycheck for objects does not care for ordering anymore
2014-01-02 18:05:21 +01:00
Frank Celler
84507cfc44
merged changes from 1.4 back to devel
2013-12-27 14:59:23 +01:00
Jan Steemann
2c8ef0125f
ported web interface changes from devel to 1.4
2013-12-18 16:22:16 +01:00
Jan Steemann
44b3237882
moved server-only tests to js/server/tests
...
this hopefully removes some future confusion about the tests
also moved some graph stuff into js/common as client-side graphs did not fully work
make logfile path accessible
2013-12-04 22:05:00 +01:00
Jan Steemann
28110b01e3
issue #671 : make more graph-methods work client-side, too
2013-11-25 10:23:46 +01:00
Jan Steemann
6cf0fa2b4a
issue #671 : make other graph methods work client-side, too
2013-11-25 10:22:36 +01:00
Jan Steemann
319f5f8dbd
removed unused variables
2013-11-18 11:41:57 +01:00
Jan Steemann
5d9cd13c4f
issue #671 : Method graph.measurement does not exist
2013-11-18 10:39:39 +01:00
Jan Steemann
018bbaa01d
issue #671 : Method graph.measurement does not exist
2013-11-18 10:28:09 +01:00
Lucas Dohmen
6049ef11fb
Graph: Replace a given edge by ID
2013-10-31 15:16:58 +01:00
Lucas Dohmen
04c7cfce33
Graph: Replace a given vertex by ID
2013-10-31 15:16:58 +01:00
Lucas Dohmen
b1f36e41f8
Graph Module: Alternatively provide ID instead of Vertex in addEdge
2013-10-31 13:14:51 +01:00
Lucas Dohmen
c7b5549b08
Graph Refactoring: Determination of ID pushed to Common
2013-10-31 12:30:14 +01:00
Lucas Dohmen
37b7630efb
Code Style
2013-10-31 12:27:50 +01:00
Jan Steemann
08855d5990
added collection status "loading"
2013-10-29 22:35:07 +01:00
Jan Steemann
4c8e0db434
fixed typo in method name
2013-10-08 13:56:20 +02:00
Jan Steemann
3e85159700
jslintified
2013-09-16 18:55:47 +02:00
Lucas Dohmen
70c6b403b2
Pushed the constructor mocking to the module
2013-09-16 15:08:57 +02:00
Jan Steemann
ca6244ccc5
jslintified
2013-09-16 13:54:33 +02:00
Lucas Dohmen
27f522aa03
expect docs
2013-09-16 13:28:52 +02:00
Lucas Dohmen
25b87ed3dc
Mock: Take arguments instead of array
2013-09-16 13:28:52 +02:00
Lucas Dohmen
ae8d0e2be2
expect with fluent interface
2013-09-16 13:28:51 +02:00
Lucas Dohmen
2301cdc930
Converted allow to fluent interface
2013-09-16 13:28:51 +02:00
Lucas Dohmen
c1bf1b1d11
Moved stub_and_mock to its own module
2013-09-16 13:28:51 +02:00
Jan Steemann
b4efb78f7c
Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel
2013-09-04 15:58:49 +02:00
Lucas Dohmen
69286b5742
Foxx: Foxx Transformer is now Foxx Preprocessor
2013-09-04 15:08:15 +02:00
Jan Steemann
897412b4de
initial dropping of databases
2013-09-04 13:04:13 +02:00
Jan Steemann
bae9f097fc
added _dropDatabase()
2013-09-02 18:04:19 +02:00
Jan Steemann
32ff2f7d39
improve assertion counter
2013-08-27 15:07:41 +02:00
Jan Steemann
b598d3443e
dirtified jsunity
2013-08-27 12:19:58 +02:00
Jan Steemann
5056512a37
mimetypes for fonts
2013-08-20 10:03:38 +02:00
Jan Steemann
ec1a18aac5
fixed jslint warnings
2013-08-19 18:59:22 +02:00
Jan Steemann
9eb1752a7e
use AQL LIMIT but still return the unlimited count value
...
Still needs documentation and tests
2013-08-19 18:41:00 +02:00
Frank Celler
8ed7a0115b
added transformation
2013-08-07 11:41:49 +02:00
Frank Celler
f5016a2ce9
cleanup
2013-07-26 22:46:53 +02:00
Jan Steemann
94051a74c3
return error code from foxx-manager
2013-07-26 14:58:03 +02:00
Jan Steemann
aa9209b888
fixed thumbnails
2013-07-26 14:46:33 +02:00
Jan Steemann
4dfdb13d4d
improved tabular output
2013-07-26 13:03:59 +02:00
Jan Steemann
e359dc29dd
INCOMPATIBLE CHANGE: changed AQL user function namespace resolution operator from `:` to `::`
...
AQL user-defined functions were introduced in ArangoDB 1.3, and the namespace resolution
operator for them was the single colon (`:`). A function call looked like this:
RETURN mygroup:myfunc()
The single colon caused an ambiguity in the AQL grammar, making it indistinguishable from
named attributes or the ternary operator in some cases, e.g.
{ mygroup:myfunc ? mygroup:myfunc }
The change of the namespace resolution operator from `:` to `::` fixes this ambiguity.
Existing user functions in the database will be automatically fixed when starting ArangoDB
1.4 with the `--upgrade` option. However, queries using user-defined functions need to be
adjusted on the client side to use the new operator.
2013-07-18 12:02:28 +02:00
Jan Steemann
9d2a016c5b
make jslint happy
2013-07-01 15:50:51 +02:00
Lucas Dohmen
7e7a90753a
Fixing the build (this time: Really)
...
Sorry, seems like I shouldn't code today 😊
2013-06-28 19:38:30 +02:00
Lucas Dohmen
ccf56dd702
Fix the build
2013-06-28 18:34:26 +02:00
Lucas Dohmen
79a6772667
Code Review: Common Graph Module
2013-06-28 18:14:23 +02:00
Jan Steemann
93f7122099
added missing count() method for server-side cursor
2013-06-24 13:50:03 +02:00
Lucas Dohmen
f64c227b16
Graph Module: Even more in Graph Common
2013-06-19 17:09:19 +02:00