1
0
Fork 0
Commit Graph

1756 Commits

Author SHA1 Message Date
Lucas Dohmen 00ae5bf344 Merge branch 'master' into graph_algorithms 2012-07-18 16:03:13 +02:00
Lucas Dohmen 463045e17c The pathTo method now supports graph-wide caching
This is the first step to support measurements. The data for the tests
has been added.
2012-07-18 16:00:17 +02:00
Frank Celler a02faec3a3 added basic authentication 2012-07-15 17:06:59 +02:00
Frank Celler 1df2799005 added --javascript.script
renamed --unit-tests to --javascript.unit-tests
2012-07-15 00:50:05 +02:00
Frank Celler 191b1338fe issue #98: Unable to change journalSize 2012-07-11 13:42:17 +02:00
Lucas Dohmen 8861bd6410 Moved Graph tests to the correct file 2012-07-10 14:55:19 +02:00
Lucas Dohmen fb605e1247 Betweenness Measurement added to Vertices 2012-07-09 18:09:57 +02:00
Lucas Dohmen c6c9712f82 Added support for geodesics to Graph.js 2012-07-09 16:22:02 +02:00
Oreste Panaia 224614f14a Bitarray index fixes 2012-07-06 12:02:08 +08:00
Oreste Panaia 67d6b7fca0 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel 2012-07-05 13:59:46 +08:00
Oreste Panaia c72f44c949 Bitarray indexes update 2012-07-05 13:59:26 +08:00
Jan Steemann 1a43f1d54a documentation update 2012-07-04 13:53:53 +02:00
Jan Steemann be6d64ced6 fixed unittest expectations after fix for issue #121 2012-07-04 12:32:09 +02:00
Jan Steemann 3411a9b98c fixed a few query optimiser bugs, added test cases 2012-06-29 15:26:35 +02:00
Heiko Kernbach 67083c2d12 use->using 2012-06-29 12:00:57 +02:00
Jan Steemann fa3b6a74fa fixed some range optimiser bugs, added test cases 2012-06-29 11:30:44 +02:00
Jan Steemann bafc974623 added test cases for range optimisation, fixed some range optimiser bugs 2012-06-29 10:23:04 +02:00
Oreste Panaia b84c9fefa9 Some bitarray index creation tests 2012-06-29 14:49:52 +08:00
Oreste Panaia a9f9c3af55 trying to upload bitarrays 2012-06-27 14:21:21 +08:00
Lucas Dohmen 07366afcfc Added two measurements to graphs
* diameter
* radius
2012-06-26 15:25:26 +02:00
Oreste Panaia 43309908ec Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel
Conflicts:
	arangod/BitIndexes/bitarray.c
	arangod/RestServer/ArangoServer.cpp
	configure
2012-06-26 20:41:04 +08:00
Lucas Dohmen ecf09fc4dc Added distanceTo and two measurements to Vertices
The two measurements are:

* eccentricity
* closeness
2012-06-26 14:17:41 +02:00
Oreste Panaia 20bbdab435 Bitarray index first draft 2012-06-26 20:05:49 +08:00
Lucas Dohmen c6b2b2642c Added Degrees to Vertices, Size and Order to Graphs 2012-06-26 12:51:26 +02:00
Lucas Dohmen ac092872ee Refactoring on Graph.js
All methods reviewed and refactored. The refactorings use the new
ECMA Script 5 methods which are more efficient and precise.
2012-06-24 09:30:30 +02:00
Frank Celler 94c954b8fd application v8 2012-06-21 22:40:11 +02:00
Lucas Dohmen 8682f82dfa Merge branch 'devel' into graph_algorithms 2012-06-20 17:05:45 +02:00
Lucas Dohmen 2745997ad8 Re-Did the optimizations of the monkeypatches 2012-06-20 17:01:14 +02:00
Lucas Dohmen 15eddecc34 Revert "Monkeypatches have their own module now."
This reverts commit d01b16a930cfc5a47174d7e24a1742c20f874318.

Conflicts:
	js/common/modules/monkeypatches.js
2012-06-20 16:43:08 +02:00
Lucas Dohmen 455befdbf6 Monkeypatches loaded by default and refactored
The monkeypatches will now always be loaded a server startup.
I also refactored them.
2012-06-20 16:18:04 +02:00
Lucas Dohmen a31d5e8f27 Monkeypatches have their own module now. 2012-06-20 15:14:48 +02:00
Lucas Dohmen bfa2e09ee6 All "Monkey Patches" now use Object.defineProperty 2012-06-20 14:12:26 +02:00
Jan Steemann 5a74e95f35 allow reusing ids and revision when creating collections and documents 2012-06-19 15:50:52 +02:00
Lucas Dohmen a7d3d50082 Linted graph.js and shell-graph-algorithms.js 2012-06-16 18:31:50 +02:00
Lucas Dohmen c129644fff Added a listed option to commonNeighbors and commonAttributes
If the listed option is given, instead of the number of attributes /
neighbors, the list of the names of the shared attributes / the IDs
of the shared neighbors are returned.
2012-06-16 18:26:41 +02:00
Lucas Dohmen edff65d5c8 Vertex#commonPropertieWith now also has a normalized variant 2012-06-16 18:05:14 +02:00
Lucas Dohmen b3620827d3 Added commonPropertiesWith to Vertex 2012-06-16 18:00:32 +02:00
Lucas Dohmen 2c70ce9291 Reorganization of functionality and tests for Graph.js 2012-06-16 17:38:27 +02:00
Lucas Dohmen c0a94a570b Added a commonNeighborsWith method to Vertex
Returns the number of common neighbors.
2012-06-16 14:58:48 +02:00
Lucas Dohmen 15b0a44aba Edge Exclusion for pathTo function
You can now exclude certain edges in your pathTo function with the
paramater `only` that expects a function that takes an edge as an
argument and returns true if and only if the edge should be used
for the path.

Use Case:
Only include edges on the path that have a rating of x or higher.
2012-06-16 14:26:26 +02:00
Lucas Dohmen 580813f006 Added Support for Weight Functions in pathTo
Instead of just selecting an attribute to get the weight of an edge,
the user can now formulate the computation of the weight of an edge
as a function that takes an edge as an argument and returns the weight.
This allows more flexible weights in the application.
2012-06-16 14:04:37 +02:00
Frank Celler 716b720a7f added /_admin/echo 2012-06-14 20:53:48 +02:00
Lucas Dohmen 46027601ac Merge branch 'devel' into graph_algorithms 2012-06-13 16:19:54 +02:00
Lucas Dohmen e41291c44d Tiny improvement: forEach instead of for 2012-06-13 16:11:26 +02:00
Lucas Dohmen aa17edce23 Refactored Vertex#getNeighbors 2012-06-13 14:01:48 +02:00
Lucas Dohmen ad91d8cdfc The weighted pathTo now also takes a default weight
The default weight is needed, when an edge doesn't
have the specified weight attribute.
The default for this default value is `Infinity`.
2012-06-13 13:48:54 +02:00
Jan Steemann d7ca7ae1b7 added "official" explain API 2012-06-13 13:27:39 +02:00
Lucas Dohmen 7eddaa9259 Added support for weighted graphs to pathTo
The method `pathTo` now also accepts the following option:

* weight: The name of the attribute including the weight
2012-06-13 13:15:21 +02:00
Jan Steemann e3a075057f reference accesses can now use indexes 2012-06-13 12:07:29 +02:00
Lucas Dohmen f11acff837 Enhanced pathTo for directed and labelled graphs
The `pathTo` method accepts an options hash.
Currently supported:

* direction: "both", "outbound", "inbound"
* labels: undefined or Array of Strings
2012-06-13 11:55:26 +02:00
Lucas Dohmen 70ae8d84d4 Small Refactoring for pathesForTree 2012-06-12 15:38:19 +02:00
Lucas Dohmen 104b28b607 Refactored the pathesForTree method
* It's now testable
* It's now in a better OO design
2012-06-12 15:25:06 +02:00
Lucas Dohmen e3a3e5f857 Heavy refactoring of the methods for Dijkstra 2012-06-12 13:24:25 +02:00
Lucas Dohmen 33732898ce Enhanced Vertex#getNeighbors
* getNeighbors now takes the following arguments:
  * direction: 'both', 'outbound' or 'inbound'
  * pathLabels: undefined or Array of Strings
2012-06-12 12:23:09 +02:00
Jan Steemann d84193bce7 explain & optimizer 2012-06-11 17:55:09 +02:00
Frank Celler cc1853688c Merge branch 'devel' of github.com:triAGENS/ArangoDB
Conflicts:
	RestServer/ArangoServer.cpp
	V8Client/arangosh.cpp
2012-06-07 18:00:57 +02:00
Frank Celler 6675e8da2b Merge pull request #102 from jsteemann/master
potential solution for issue #95 (execute jslint)
2012-06-07 08:49:59 -07:00
Lucas Dohmen ea13cfac51 Renamed all occurrences of node to vertex... 2012-06-06 19:14:21 +02:00
Lucas Dohmen 933bc293b6 Added documentation for all pathTo helper functions 2012-06-06 19:11:53 +02:00
Lucas Dohmen 0433236c8b Graph.js: Lint-Free 2012-06-06 18:49:43 +02:00
Frank Celler 203a7006c0 Merge branch 'devel' of github.com:triAGENS/ArangoDB 2012-06-06 18:32:45 +02:00
Lucas Dohmen 020aa12c35 Dijkstra: Finds all shortest pathes now
* Previously only found one shortest path
* Returns the same results as Neo4j
2012-06-06 18:09:57 +02:00
Jan Steemann 7d84873f4f added test cases for ref access 2012-06-06 16:20:23 +02:00
Jan Steemann c21659fbac added more test cases for index access 2012-06-06 15:57:38 +02:00
Lucas Dohmen a41ff384ab Dijkstra finds pathes of correct length. 2012-06-06 14:57:57 +02:00
Frank Celler 6063327d04 fixed --quite for shell, fixed command line for unit-tests 2012-06-06 14:19:47 +02:00
Jan Steemann cfccab47eb issue #100: "count" attribute exists in cursor response with "count: false" 2012-06-06 09:54:39 +02:00
Jan Steemann 60429b39eb issue #100: "count" attribute exists in cursor response with "count: false" 2012-06-06 08:59:55 +02:00
Jan Steemann 0da201adb5 potential fix for issue #100 2012-06-05 09:59:15 +02:00
Frank Celler 0726789ab0 Merge branch 'devel' of github.com:triAGENS/ArangoDB
Conflicts:
	.gitignore
	Ahuacatl/ahuacatl-codegen.h
2012-06-02 11:20:47 +02:00
Frank Celler fe2337b7d4 Merge branch '1.0' of github.com:triAGENS/ArangoDB
Conflicts:
	configure
2012-06-02 11:15:29 +02:00
Frank Celler 7c7d378fb1 preparation for mruby console 2012-06-02 11:13:57 +02:00
Jan Steemann 15a504d023 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel 2012-06-01 13:21:20 +02:00
Heiko Kernbach 6a8c0c2400 test suite 2012-06-01 10:33:18 +02:00
Jan Steemann 11612dbe15 fixed a segfault with some broken queries 2012-06-01 09:12:14 +02:00
Jan Steemann bde11ec3b0 added dedicated test cases for arangosh-only functions 2012-05-31 17:49:49 +02:00
Jan Steemann 57fb43fe1e fixed broken functions and help texts in arangosh 2012-05-31 17:32:35 +02:00
Jan Steemann d506033c26 fixed help in arangosh and web admin, fixed several broken functions 2012-05-31 17:30:42 +02:00
Jan Steemann 3ca1e598e2 fixed help in arangosh 2012-05-31 16:46:28 +02:00
Jan Steemann 164b63f7a6 handling special case for empty strings in contains() 2012-05-31 16:25:27 +02:00
Heiko Kernbach 030ba0f2e2 ahuacatl-contains 2012-05-31 14:15:46 +02:00
Jan Steemann 2b841bacf7 contains() 2012-05-31 13:15:00 +02:00
Jan Steemann 0ef03fc006 mini cleanup 2012-05-28 22:10:03 +02:00
Jan Steemann 6f7e11e46c potential solution for issue #95 2012-05-28 22:01:32 +02:00
Jan Steemann 68db2dc0b5 test case for issue #97 2012-05-28 20:52:00 +02:00
Frank Celler 86fcb881e9 fixed === and !== and == and != 2012-05-25 15:33:35 +02:00
Lucas Dohmen a1cf1017c5 Passes the Neo4j 500 Length Test now. 2012-05-25 15:25:13 +02:00
Frank Celler b2d521ee35 cleanup action queues 2012-05-25 14:28:27 +02:00
Frank Celler a0cd51d2fc moved /document => /_api/document 2012-05-25 12:21:02 +02:00
Frank Celler 1e3ab217f3 Merge branch 'devel' of github.com:triAGENS/ArangoDB 2012-05-25 00:26:50 +02:00
Frank Celler a0d19953e2 removed globals 2012-05-25 00:26:36 +02:00
Frank Celler 2184db3303 removed globals 2012-05-25 00:16:40 +02:00
Frank Celler 67e5ea65b3 console is now a module 2012-05-24 23:59:53 +02:00
Frank Celler 988d8090c1 jslint 2012-05-24 23:25:19 +02:00
Frank Celler ef3c8d0de6 cleanup JSLInt 2012-05-24 15:40:48 +02:00
Jan Steemann 693338a0fb renamed some functions 2012-05-24 15:27:29 +02:00
Jan Steemann cf8c339e7c added AQL example queries 2012-05-24 14:34:29 +02:00
Jan Steemann 9d5e80b5b0 double the throughput for simple AQL queries by returning the result set as V8 list instead of a cursor 2012-05-24 12:24:23 +02:00
Frank Celler e5d4c3f9f7 Merge branch 'devel' of github.com:triAGENS/ArangoDB 2012-05-24 12:18:37 +02:00
Frank Celler 682f7c027d added silence flag 2012-05-24 12:17:55 +02:00
Jan Steemann e67d7da686 documentation for AQL functions 2012-05-24 11:25:49 +02:00
Jan Steemann 26ee519b32 fix for issue #89 2012-05-24 00:07:07 +02:00
Jan Steemann 3f539e7bd6 possible fix for issue #82 2012-05-23 21:44:52 +02:00
Jan Steemann 7c0e146246 issue #80: support LENGTH(collection) 2012-05-23 17:50:58 +02:00
Jan Steemann 74f9a39fd3 commit derived file 2012-05-23 16:44:58 +02:00
Jan Steemann 88361fb444 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel 2012-05-23 16:40:10 +02:00
Jan Steemann 99fe2199a6 changed implementation of paths function 2012-05-23 16:39:48 +02:00
Lucas Dohmen 4dd0306d0a Added the Random 500 Test and fixed a bug 2012-05-23 16:21:34 +02:00
Frank Celler 2554ce698e fixed printing 2012-05-23 15:58:43 +02:00
Frank Celler 5d30fec5d2 Merge branch 'devel' of github.com:triAGENS/ArangoDB
Conflicts:
	html/admin/js/avocsh1.js
	html/admin/js/master.js
2012-05-23 15:03:08 +02:00
Frank Celler bb96f1c7fa renamed /document => /_api/document 2012-05-23 15:01:44 +02:00
Jan Steemann 1829075aa0 made direction parameter optional for paths function 2012-05-23 13:42:04 +02:00
Frank Celler 724421fef1 cleanup 2012-05-23 12:47:21 +02:00
Frank Celler 0236954f04 Merge branch 'devel' of github.com:triAGENS/ArangoDB
Conflicts:
	html/admin/js/client.js
	html/admin/js/master.js
2012-05-23 11:44:40 +02:00
Jan Steemann 0bf4a241c7 added test cases 2012-05-23 00:13:33 +02:00
Jan Steemann a4b1027690 added functions unique(), reverse(), first(), last() and has() 2012-05-22 22:43:58 +02:00
Jan Steemann 34bfac9774 some more tests 2012-05-22 22:18:30 +02:00
Jan Steemann f1837d67e5 added paths() function 2012-05-22 18:47:19 +02:00
Frank Celler 3daeecc700 renamed /document to /_api/document, /edge to /_api/edge 2012-05-22 16:04:20 +02:00
Jan Steemann 6a75b8affd added collections() function 2012-05-22 13:09:36 +02:00
Frank Celler d3f3cb1f88 Merge branch '0.5' of github.com:triAGENS/ArangoDB into devel 2012-05-22 12:34:18 +02:00
Jan Steemann c928642277 fixed memleaks 2012-05-22 12:22:03 +02:00
Frank Celler 6dc4cbd43d fixed error message 2012-05-22 09:38:36 +02:00
Frank Celler f5c7265911 fixed error message 2012-05-22 09:36:43 +02:00
Jan Steemann 21e5f2353e test 2012-05-22 08:52:48 +02:00
Jan Steemann 5b05cc0d45 issue #69: added test cases with wrong parameters for inEdges(), outEdges() and edges() 2012-05-21 20:13:56 +02:00
Frank Celler 7705fc2ac4 Merge branch 'devel' of github.com:triAGENS/ArangoDB 2012-05-21 18:28:15 +02:00
Frank Celler dd92df134c sk doc 2012-05-21 18:28:00 +02:00
Frank Celler b682357901 added skip list queries 2012-05-21 17:19:17 +02:00
Jan Steemann 46ea63a11c more test cases 2012-05-21 14:57:49 +02:00
Jan Steemann 24d829bb5c added tests for skiplist queries 2012-05-21 14:46:59 +02:00
Frank Celler b64a51844f added lookup skiplist index 2012-05-21 13:51:03 +02:00
Jan Steemann 8e834971fd internally changed the query execution, adjusted query tests 2012-05-21 10:31:05 +02:00
Jan Steemann 4d8e005241 more test cases 2012-05-19 01:41:11 +02:00
Jan Steemann 57efcc2668 added complex tests 2012-05-19 01:17:17 +02:00
Jan Steemann e5cc97633f added tests 2012-05-18 18:56:41 +02:00
Jan Steemann ba7eb326c7 added test cases 2012-05-18 17:18:50 +02:00
Jan Steemann 12df9e7d02 added test cases 2012-05-18 16:51:24 +02:00
Jan Steemann 7fea45cb97 added error code checks for bind parameter tests 2012-05-18 16:11:45 +02:00
Jan Steemann 92392b6c79 fixed tests 2012-05-18 16:05:28 +02:00
Jan Steemann 49990c5288 unified javascript runtime error messages in AQL 2012-05-18 15:52:11 +02:00
Jan Steemann 4188057ecc tried to make geo tests deterministic 2012-05-18 14:47:59 +02:00
Jan Steemann 70385d0f68 added test cases for geo queries 2012-05-18 14:20:23 +02:00
Jan Steemann c019da58b9 improved function argument validation 2012-05-18 13:33:59 +02:00
Jan Steemann 5dc9bf65e0 added NEAR() and WITHIN() functions 2012-05-18 10:11:27 +02:00
Jan Steemann 0077a4dee2 added tests 2012-05-16 20:24:14 +02:00
Jan Steemann fc72722a59 added tests for logical operations 2012-05-16 19:40:06 +02:00
Jan Steemann ab41fc94ae added comments 2012-05-16 19:33:08 +02:00
Jan Steemann 247bba8ecd fixed test cases 2012-05-16 17:06:03 +02:00
Jan Steemann 07207daa19 fixed examples in arangosh, added tests for AHUACATL_PARSE 2012-05-16 16:46:36 +02:00
Lucas Dohmen dd5307de29 Dijkstra, Version 1 2012-05-16 16:25:07 +02:00
Jan Steemann ac4621b315 added test case for bind parameters 2012-05-16 15:45:05 +02:00
Jan Steemann 77a2d45282 fixed ternary operator in AQL, added test cases 2012-05-16 15:15:51 +02:00
Jan Steemann bccb3e48b6 test was not deterministic 2012-05-16 14:39:35 +02:00
Jan Steemann 197517e408 added tests for bind parameters 2012-05-16 14:36:05 +02:00
Jan Steemann b22b8ff269 added bind parameters to inject collection names into the query. The syntax is @@name. 2012-05-16 13:34:14 +02:00
Jan Steemann 9260d8b44a AQL now uses skiplists for single and multi-range queries 2012-05-16 12:14:35 +02:00
Jan Steemann 0050f21b2c added multi-value access for skiplists, hash indexes and primary indexes 2012-05-16 10:14:15 +02:00
Jan Steemann 6aab456034 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel 2012-05-15 15:27:55 +02:00
Jan Steemann d4da126bcb skiplists 2012-05-15 15:27:43 +02:00
Jan Steemann 85f24a72f0 more optimisations 2012-05-15 15:22:56 +02:00
Jan Steemann a35f492b7f added hash index access for for loops 2012-05-15 13:42:15 +02:00
Frank Celler acd6fc8d02 fixed isSystem 2012-05-15 09:37:16 +02:00
Jan Steemann c7d2a8f5fc validate number of arguments for function calls in AQL 2012-05-14 23:49:40 +02:00
Jan Steemann 54c60a32b5 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel 2012-05-14 23:30:30 +02:00
Jan Steemann 693165e47d added some string functions plus test cases 2012-05-14 23:29:54 +02:00
Frank Celler 56c53e5741 doc user-manual 2012-05-14 21:44:29 +02:00
Frank Celler 6a8218e703 Merge branch 'devel' of github.com:triAGENS/ArangoDB 2012-05-14 14:52:17 +02:00
Frank Celler c909ec20f3 more doc 2012-05-14 14:51:55 +02:00
Jan Steemann 29897365e2 fixed some tests 2012-05-14 14:47:23 +02:00
Lucas Dohmen ff0ecc0b76 ... and its implementation 2012-05-13 21:00:53 +02:00
Lucas Dohmen 0b58cf8875 First version of Dijkstra 2012-05-13 20:59:00 +02:00
Frank Celler d514e197c2 user manual 2012-05-13 15:40:23 +02:00
Frank Celler 1f7d7ea334 fixed Web-Front-End access via / 2012-05-13 15:18:21 +02:00
Frank Celler b130804329 no mruby by default 2012-05-12 22:29:07 +02:00
Frank Celler bce89098d8 added hash index 2012-05-12 22:18:25 +02:00
Frank Celler 615661c0a6 added hash index test 2012-05-12 22:17:28 +02:00
Frank Celler 675c5d0476 unique constraint 2012-05-12 22:09:00 +02:00
Frank Celler 5ba64bafe1 added test 2012-05-12 21:35:56 +02:00
Frank Celler d7379b2508 renamed Avocado to Arango 2012-05-12 14:51:33 +02:00
Frank Celler 763e7aba98 renamed to Arango 2012-05-12 14:40:34 +02:00
Frank Celler 38501ac22f Merge branch 'devel' of github.com:triAGENS/AvocadoDB
Conflicts:
	Ahuacatl/ahuacatl-grammar.c
	Ahuacatl/ahuacatl-grammar.h
2012-05-12 12:11:55 +02:00
Frank Celler 194a471c05 fixed documentation for latex 2012-05-12 11:51:10 +02:00
Jan Steemann 3ca2b5ff4a fixed error codes 2012-05-11 17:46:28 +02:00
Jan Steemann ba15a6677c some fixes after removal of some error codes 2012-05-11 17:32:32 +02:00
Jan Steemann 61db7ee3e8 more tests 2012-05-11 17:05:33 +02:00
Jan Steemann bc25a251f7 added more test cases, fixed some query edge cases 2012-05-11 16:47:02 +02:00
Jan Steemann bd417248fb fixed some memory errors, removed unused error messages 2012-05-11 14:55:52 +02:00
Jan Steemann 0613a82a1d added test cases 2012-05-11 00:40:04 +02:00
Jan Steemann efce58a2f2 added query test cases 2012-05-11 00:18:49 +02:00
Frank Celler 70d636a2be fixed firstExample 2012-05-10 20:30:40 +02:00
Frank Celler e1cd69d515 fixed hash 2012-05-10 20:14:49 +02:00
Frank Celler 45f348db2c fixed first-example 2012-05-10 18:51:25 +02:00
Frank Celler e169f12c71 Merge branch 'devel' of github.com:triAGENS/AvocadoDB 2012-05-10 17:10:27 +02:00
Frank Celler 89ce610379 fixed for by-example 2012-05-10 17:10:07 +02:00
Jan Steemann 7c9660008d fixed accessing non-existing attributes 2012-05-10 17:02:15 +02:00
Frank Celler db46badb0f cleanup 2012-05-10 16:37:42 +02:00
Jan Steemann aadf9fb3b5 fixed numeric index access 2012-05-10 14:07:12 +02:00
Jan Steemann b1a4cec863 some bugfixes for subqueries 2012-05-09 15:02:07 +02:00
Frank Celler 38e2cf01cc added configuration 2012-05-09 11:15:01 +02:00
Frank Celler 5a93599712 fixed handling of null 2012-05-08 15:46:54 +02:00
Frank Celler 30e9e66830 generated 2012-05-08 09:26:30 +02:00
Frank Celler 875746d0d4 fixed doc 2012-05-07 17:35:41 +02:00
Frank Celler 5c5f0827b3 fixed byExample and firstExample 2012-05-07 16:08:23 +02:00
Frank Celler 883760f865 Merge branch 'devel' of github.com:triAGENS/AvocadoDB 2012-05-07 13:35:37 +02:00
Jan Steemann 07db7dd731 more descriptive error messages 2012-05-07 13:28:16 +02:00
Jan Steemann f781b87387 fixed test 2012-05-07 10:42:40 +02:00
Jan Steemann 1c03ce7f72 fixed sort in sub-queries 2012-05-07 10:34:52 +02:00
Frank Celler f47788fea6 simple query 2012-05-06 20:05:59 +02:00
Frank Celler 6834d1e3f8 added cap doc 2012-05-05 23:42:27 +02:00
Frank Celler 6e6b68b1fc added ensureCapCollection to client 2012-05-05 23:26:51 +02:00
Frank Celler 032602d300 added documentation and fixes for cap 2012-05-05 23:14:30 +02:00
Frank Celler 982e812679 Merge branch 'devel' of github.com:triAGENS/AvocadoDB 2012-05-05 09:14:27 +02:00
Frank Celler d5b3523d82 added cap constraint 2012-05-04 22:23:56 +02:00
Jan Steemann 9f360652b9 fixed some issues with v8 and unfreed memory 2012-05-04 15:47:01 +02:00
Jan Steemann d7df8ee729 cleaned up code generation 2012-05-04 13:00:02 +02:00
Frank Celler 46afa40ca4 fixed error handling 2012-05-04 12:48:18 +02:00
Frank Celler c0ef4bd89e fixing near and within simple client queries 2012-05-03 16:20:39 +02:00
Frank Celler 4c6172bc64 fixed return code 2012-05-03 15:44:23 +02:00
Frank Celler 7176c4d30f added within 2012-05-03 14:42:43 +02:00
Frank Celler 3812c8ffa5 geo indexes 2012-05-03 14:14:28 +02:00
Frank Celler 6862d15ca2 Merge branch 'devel' of github.com:triAGENS/AvocadoDB 2012-05-03 13:37:52 +02:00
Frank Celler e878af3cf1 fixed eol 2012-05-03 13:17:18 +02:00
Frank Celler 5aae1ea615 merged Oreste's newest changes 2012-05-03 09:22:22 +02:00
Frank Celler 23a7adcefc doc and simple queries 2012-05-02 18:05:45 +02:00
Jan Steemann 80d028a615 some more cases covered 2012-05-02 17:47:54 +02:00
Frank Celler cadca4a27b unittests 2012-05-02 17:05:38 +02:00
Jan Steemann 760379fb27 Merge branch 'devel' of https://github.com/triAGENS/AvocadoDB into devel 2012-05-02 14:34:52 +02:00
Jan Steemann a72bbaea08 fixed value detection, added tests 2012-05-02 14:34:24 +02:00
Frank Celler 691bb68f31 fixed limit and skip 2012-05-02 14:28:29 +02:00
Frank Celler f9291ee25b Merge branch 'devel' of github.com:triAGENS/AvocadoDB
Conflicts:
	V8/v8-c-utils.h
	V8/v8-utils.cpp
	V8/v8-vocbase.cpp
2012-05-02 13:59:14 +02:00
Frank Celler 1fe03b0642 doc and minor fixes 2012-05-02 13:53:30 +02:00
Jan Steemann 475a1d61ee added more tests for escaping 2012-05-02 12:58:35 +02:00
Jan Steemann ec84eac58d fixed escaping, added tests for escaping 2012-05-02 12:53:35 +02:00
Frank Celler b07ea9445e doc 2012-05-02 10:34:04 +02:00
Frank Celler c7478b4c88 Merge branch 'devel' of github.com:triAGENS/AvocadoDB 2012-05-02 09:53:11 +02:00
Frank Celler 8c872f00b9 more on simple queries 2012-05-01 23:50:40 +02:00
Frank Celler f96641fdef cursor 2012-05-01 21:51:33 +02:00
Frank Celler 6211bd88bb added internal 2012-04-30 23:25:39 +02:00
Jan Steemann a7b28c23fb Merge branch 'devel' of https://github.com/triAGENS/AvocadoDB into devel 2012-04-30 19:14:37 +02:00
Jan Steemann f86dd8d0a1 aaah 2012-04-30 19:14:24 +02:00
Frank Celler 1a254e0c8e doc 2012-04-30 17:52:31 +02:00
Frank Celler 1ff5f2940a more tests 2012-04-30 12:32:58 +02:00
Frank Celler 5bc4a3de27 added drop and index 2012-04-30 12:13:10 +02:00
Frank Celler 63841e50f4 renamed 2012-04-30 11:25:12 +02:00
Frank Celler 054877194c added ignore-null 2012-04-30 11:07:41 +02:00
Frank Celler 9ccbb5b324 unit tests 2012-04-29 14:48:38 +02:00
Frank Celler eea4c94b1a added constraint flag 2012-04-29 14:14:52 +02:00
Frank Celler da508e5b45 tests and minor fixes 2012-04-29 11:47:33 +02:00
Frank Celler 8fab9ca64c doc 2012-04-28 22:27:07 +02:00
Frank Celler 3770c30684 doc 2012-04-28 21:25:07 +02:00
Frank Celler 3f413a39b1 doc 2012-04-28 21:20:15 +02:00
Frank Celler 478b952d27 Merge branch 'devel' of github.com:triAGENS/AvocadoDB
Conflicts:
	Makefile.in
	Makefile.unittests
	V8/v8-vocbase.cpp
2012-04-26 23:27:18 +02:00
Jan Steemann 6ab4e2b570 some more cleanup 2012-04-26 18:54:59 +02:00
Jan Steemann d4ef4c2280 renamed functions, moved from old query language to new one 2012-04-26 17:44:57 +02:00
Frank Celler 90cc71357a more memory zones 2012-04-26 17:43:37 +02:00
Frank Celler 616a833244 Merge branch 'devel' of github.com:triAGENS/AvocadoDB 2012-04-26 17:27:35 +02:00
Jan Steemann f851caee66 additional errors 2012-04-26 16:09:40 +02:00
a-brandt 5834890665 bugfixes 2012-04-26 15:00:44 +02:00
a-brandt acb991a3f6 added some error codes 2012-04-26 15:00:11 +02:00
Frank Celler 6f4c5b9319 Merge branch 'devel' of github.com:triAGENS/AvocadoDB 2012-04-26 14:31:57 +02:00
a-brandt 6b72899b15 some changes 2012-04-26 13:21:26 +02:00
Jan Steemann 30ef61371f added read locks for collections 2012-04-26 11:54:30 +02:00
Frank Celler a3050937a0 Merge branch 'devel' of github.com:triAGENS/AvocadoDB 2012-04-25 23:39:29 +02:00
a-brandt d7e245f363 added some error codes 2012-04-25 16:50:58 +02:00
a-brandt 1d6fa6196c fix getVertex 2012-04-25 16:50:16 +02:00
a-brandt cc9b61060d renamed file 2012-04-25 16:49:49 +02:00
a-brandt 402e49f8cc Merge branch 'devel' of github.com:triAGENS/AvocadoDB into devel
Conflicts:
	js/common/modules/graph.js
2012-04-25 16:30:18 +02:00
a-brandt 7c02ab3e6f added getVertex() by internal id 2012-04-25 16:27:49 +02:00
Frank Celler 786dedc85e fixed formatting mistakes 2012-04-25 16:24:17 +02:00
Frank Celler 67a920d6ec Merge branch 'devel' of github.com:triAGENS/AvocadoDB into devel 2012-04-25 16:19:09 +02:00
Frank Celler 68c24938db fixed typo 2012-04-25 16:19:02 +02:00
a-brandt da756cd8da Merge branch 'devel' of github.com:triAGENS/AvocadoDB into devel
Conflicts:
	js/common/modules/graph.js
2012-04-25 15:48:44 +02:00
Frank Celler 85db82258b Merge branch 'devel' of github.com:triAGENS/AvocadoDB
Conflicts:
	Makefile.in
2012-04-25 15:39:43 +02:00
a-brandt 40fb4ba528 renamed file 2012-04-25 15:39:39 +02:00
a-brandt c7f008a2e1 get graph by internal id 2012-04-25 15:38:38 +02:00
Frank Celler f25cf5bb0a Merge branch 'devel' of github.com:triAGENS/AvocadoDB into mruby 2012-04-25 14:39:04 +02:00
Frank Celler 759d75bf1b added '--server none' option 2012-04-25 13:58:53 +02:00
Frank Celler 797950b8b7 merged 2012-04-25 09:13:13 +02:00
Frank Celler cdc8290534 Merge branch 'devel' of github.com:triAGENS/AvocadoDB 2012-04-24 18:26:29 +02:00
Frank Celler 7c02b581e4 added memory zone 2012-04-24 18:26:19 +02:00
Jan Steemann 994a5d8151 re-added bind parameters 2012-04-24 16:58:54 +02:00
Lucas Dohmen e0fc2466e2 Test Suite for GraphModule complete. 2012-04-24 16:44:36 +02:00
Lucas Dohmen 64ff1fa0b0 Completed the Vertex Edges Getters 2012-04-24 16:23:07 +02:00
Lucas Dohmen e2930ae85d Tested Vertex Properties. All Vertex Methods tested. 2012-04-24 16:20:05 +02:00
Frank Celler cb3960833a merged 2012-04-24 16:18:03 +02:00
Lucas Dohmen 6e16fd6554 Get Eddges with Labels from Vertices 2012-04-24 16:12:32 +02:00
Lucas Dohmen 897c5b4446 Added Tests to get Edges for Vertices 2012-04-24 15:59:59 +02:00
Frank Celler 0d35aabad6 more errors 2012-04-24 15:38:21 +02:00
Jan Steemann f5d2b16255 added proper error message for invalid variable naming 2012-04-24 15:34:02 +02:00
Jan Steemann 9e26458577 added tests, added variable name validation 2012-04-24 15:29:33 +02:00
Lucas Dohmen 094108bffa Added Tests for adding edges to Vertices 2012-04-24 15:24:09 +02:00
Jan Steemann 663afb0fa1 added tests 2012-04-24 14:56:46 +02:00
Jan Steemann 19d7a70d65 added test cases 2012-04-24 14:49:59 +02:00
Frank Celler 4e37782ab0 Merge branch 'devel' of github.com:triAGENS/AvocadoDB 2012-04-24 14:38:11 +02:00
Lucas Dohmen ffd8963064 Tested Graph Creation 2012-04-24 14:32:04 +02:00
Lucas Dohmen dd5b2ecced Testes Edge and Vertex Removal 2012-04-24 14:02:59 +02:00
Jan Steemann 84215f1228 added tests for Ahuacatl 2012-04-24 13:45:08 +02:00
Lucas Dohmen b956ed34d7 AddEdge and GetEdges tested
* Arguments for AddEdge have changed
2012-04-24 13:34:18 +02:00
Frank Celler a325bf9f45 Merge branch 'devel' of github.com:triAGENS/AvocadoDB 2012-04-24 12:56:01 +02:00
Frank Celler 95a42b9245 added comments 2012-04-24 12:15:35 +02:00
Jan Steemann a6303223d6 fixes for Ahuacatl 2012-04-24 11:14:12 +02:00
Jan Steemann baa5582926 added tests 2012-04-24 08:56:55 +02:00
Jan Steemann e083e5e00d added query functions 2012-04-23 18:05:28 +02:00
Jan Steemann 5f95f76841 added nicer error messages for some cases 2012-04-23 17:13:25 +02:00
Jan Steemann 22e529b93d added Ahuacatl tests 2012-04-23 16:40:03 +02:00
Jan Steemann f3e96f05ca more testing for query language 2012-04-23 15:36:11 +02:00
Jan Steemann 80bea9f1e7 added test cases 2012-04-23 14:41:32 +02:00
Jan Steemann 791afba97c Merge branch 'master' of https://github.com/triAGENS/AvocadoDB 2012-04-23 10:50:40 +02:00
Jan Steemann 3988664146 added query language 2012-04-23 10:50:26 +02:00
Frank Celler aa85295697 edges 2012-04-23 10:38:57 +02:00
Jan Steemann 70cf49f642 fixed query by example 2012-04-23 09:42:37 +02:00
Frank Celler 87dedac607 Merge remote branch 'origin/mruby'
Conflicts:
	.gitignore
2012-04-22 09:21:39 +02:00
Frank Celler ae18204d1c fixed unit tests 2012-04-21 18:39:36 +02:00
Frank Celler 4625a6791d repaired constructor 2012-04-21 16:30:17 +02:00
Lucas Dohmen 9ac9612f61 Merge branch 'master' of github.com:triAGENS/AvocadoDB 2012-04-20 22:04:33 +02:00
Lucas Dohmen 30b016596f Linted the graph module. Two problems left, reported as bug #52
Conflicts:

	js/common/modules/graph.js
2012-04-20 22:03:39 +02:00
Frank Celler 7978283a9a first tests 2012-04-20 17:22:56 +02:00
Frank Celler e1ae19794f Merge branch 'master' of github.com:triAGENS/AvocadoDB 2012-04-20 15:03:21 +02:00
Frank Celler 22bfcb4003 fixed global name 2012-04-20 11:19:33 +02:00
Frank Celler 65a6fe3be6 added drop index 2012-04-20 09:54:26 +02:00
Jan Steemann 4ee30b6061 added error messages 2012-04-20 09:40:46 +02:00
Jan Steemann e0ff4a0109 new error files, fixed mini memleak 2012-04-20 08:39:53 +02:00
Frank Celler 9e65ac71f5 cleanup index code 2012-04-19 16:45:52 +02:00
Frank Celler a3a2485472 Merge branch 'master' of github.com:triAGENS/AvocadoDB 2012-04-18 17:09:15 +02:00
Frank Celler dfa392ec79 renamed .delete to .remove or .DELETE to avoid JS lint errors 2012-04-18 17:09:04 +02:00
Lucas Dohmen 18287faef0 Added Tests for the Graph Module. 2012-04-18 16:44:57 +02:00
Frank Celler 8b9f9fe3e5 merged 2012-04-18 16:40:03 +02:00
Frank Celler 700fb4e5c5 fixed graph properties 2012-04-18 16:37:42 +02:00
Lucas Dohmen 16647d844d Linted the graph module. Two problems left, reported as bug #52 2012-04-18 16:03:26 +02:00
Lucas Dohmen ae35af2ab8 Code Review with JSLint 2012-04-18 15:17:44 +02:00
Lucas Dohmen 6b69721672 Merge branch 'master' of github.com:triAGENS/AvocadoDB 2012-04-18 13:19:41 +02:00
Lucas Dohmen 4117c80a5f Passes JSLint 2012-04-18 13:19:15 +02:00
Frank Celler 7a80c3c5ee fix lost id 2012-04-18 10:53:03 +02:00
Frank Celler d7c4bb0cc8 skeleton for unit test 2012-04-18 10:29:25 +02:00
Frank Celler 2d80ca4adc added select-by-example 2012-04-15 21:48:21 +02:00
Frank Celler 3c5ce283b2 added cache 2012-04-15 13:23:00 +02:00
Frank Celler cf924b3461 added WeakDictionary 2012-04-15 12:11:58 +02:00
Frank Celler d8bb698030 added isSystem, cleanup of graph module 2012-04-15 00:02:08 +02:00
Frank Celler 870e21157c using save 2012-04-14 21:54:09 +02:00
Frank Celler 6156057f2a cleanup of documentation 2012-04-13 18:18:58 +02:00
Frank Celler 9eab784b39 fixed edges 2012-04-13 14:41:47 +02:00
Frank Celler 8184bce146 fixed edges 2012-04-13 14:37:12 +02:00
Frank Celler 58a6a0db2f added valgrind option 2012-04-12 17:38:48 +02:00
Frank Celler c50c758c0e fixed edges 2012-04-12 17:11:56 +02:00
Frank Celler 443b9b1cff added rename 2012-04-12 13:05:23 +02:00
Frank Celler 103b9b168d fixed makefile to start/stop server, fixed figures 2012-04-12 12:42:41 +02:00
Frank Celler 1e52b7bf46 tests for document and collection 2012-04-12 12:03:33 +02:00
Frank Celler 6034970909 fixed names 2012-04-11 23:37:02 +02:00
Frank Celler 535cbdf8c2 moved to common 2012-04-11 23:35:14 +02:00
Frank Celler 6ea41e0c20 fixed doc 2012-04-11 23:24:08 +02:00
Frank Celler 7876271d06 fixed figures 2012-04-11 23:19:39 +02:00
Frank Celler d1d6715799 shell-document.js now passes 2012-04-11 22:27:56 +02:00
Frank Celler f61f7aafd0 Merge branch 'master' of github.com:triAGENS/AvocadoDB 2012-04-11 21:50:56 +02:00
Frank Celler 9d5eea8824 starting to fixing avocsh to pass tests 2012-04-11 19:30:30 +02:00
Jan Steemann 4069829624 added more tests 2012-04-11 18:57:58 +02:00
Jan Steemann fa52c3d7a5 fixed primary index lookups, added tests 2012-04-11 18:05:34 +02:00
Jan Steemann 0cd4a392e4 Merge branch 'master' of http://github.com/triAGENS/AvocadoDB 2012-04-11 17:20:33 +02:00
Jan Steemann b0c1df5471 added tests 2012-04-11 17:20:16 +02:00
Frank Celler 1b7ac3b14f more doc for shell interface 2012-04-11 16:51:36 +02:00
Frank Celler d87e698d61 more doc for shell interface 2012-04-11 16:47:42 +02:00
Frank Celler cb016351e8 documentation and minor fixes 2012-04-11 15:41:00 +02:00
Jan Steemann 7358be9cb3 added more tests 2012-04-11 12:23:49 +02:00
Jan Steemann f86b71de0f added more tests 2012-04-11 12:11:19 +02:00
Jan Steemann db6cb13e21 added more tests 2012-04-11 12:05:00 +02:00
Jan Steemann 18c243734f added more javascript tests 2012-04-11 11:55:46 +02:00
Frank Celler 9e87d18161 added shared client / admin port 2012-04-10 23:48:48 +02:00
Frank Celler af2902009a more errors 2012-04-10 23:37:34 +02:00
Frank Celler 639c25cfca added /_system/status 2012-04-10 21:57:19 +02:00
Frank Celler 3db8f9f825 added /_system/status 2012-04-10 21:57:06 +02:00
Frank Celler 82b4efb34e Merge branch 'master' of github.com:triAGENS/AvocadoDB 2012-04-10 17:11:00 +02:00
Frank Celler 0771904c83 fixed create 2012-04-10 17:06:52 +02:00
Frank Celler fbad5735b1 added flag for default journal size 2012-04-10 15:58:04 +02:00
Jan Steemann 41d029e660 fixed call to unknown method 2012-04-10 14:50:24 +02:00
Frank Celler 4bd861effb fixed documentation 2012-04-10 14:03:02 +02:00
Jan Steemann 2dcc40e0ff merge with SVN, fixed issue #43 2012-04-10 12:33:29 +02:00
Frank Celler 012e2cc403 added delete test 2012-04-09 19:46:31 +02:00
Frank Celler b529261822 added enclude-included-boost flag 2012-04-08 12:57:29 +02:00
Frank Celler 3bd38edb67 fixed old call 2012-04-08 12:49:42 +02:00
Frank Celler d2c6467a65 cleanup of printing and toString 2012-04-08 00:08:43 +02:00
Frank Celler dd0b08c618 added unittests 2012-04-07 23:33:10 +02:00
Frank Celler df485614d3 removed old stuff 2012-04-07 14:30:53 +02:00
Frank Celler 07a8d05ef6 fixed context 2012-04-07 12:35:18 +02:00
Frank Celler b0c552fe4a updated tests 2012-04-07 10:28:40 +02:00
Frank Celler 1c9b5b770d check that GEP does not load 2012-04-07 10:06:15 +02:00
Jan Steemann 0d6130c981 Merge branch 'master' of http://github.com/triAGENS/AvocadoDB 2012-04-06 21:48:37 +02:00
Jan Steemann 31540db588 re-fixed issue #38: added API method GET /_api/collection/parameter 2012-04-06 21:48:05 +02:00
Frank Celler 8e412db8dc Merge branch 'master' of github.com:triAGENS/AvocadoDB 2012-04-06 21:03:00 +02:00
Frank Celler 04f4e312c6 fixed replace and delete to accept document 2012-04-06 21:02:48 +02:00
Jan Steemann 2c5c39a722 fixed issue #38 (waitForSync not returned by GET /_api/collection/<collection-id>) 2012-04-06 20:44:57 +02:00
Frank Celler 0e202c625d cleanup 2012-04-04 18:11:45 +02:00
Frank Celler 9b93dc1a52 db.document 2012-04-04 13:45:37 +02:00
Frank Celler 489a326f40 merged 2012-04-04 11:15:49 +02:00
Frank Celler 2b40f8d7fb merged 2012-04-04 11:15:41 +02:00
Jan Steemann 1356641435 Merge branch 'master' of http://github.com/triAGENS/AvocadoDB 2012-04-03 00:26:00 +02:00
Jan Steemann be8ec0d3e6 fixed issues in key/value API and in simple-query API 2012-04-03 00:25:25 +02:00
Frank Celler 17d9f65ecf doc 2012-04-03 00:13:46 +02:00
Frank Celler 6ace3d598b documentation for indexes 2012-03-31 17:24:19 +02:00
Frank Celler f6d3eac0c8 more index examples and tests, fixed .document method 2012-03-31 16:02:17 +02:00
Frank Celler a665ad7a1e fix geo index 2012-03-31 00:17:57 +02:00
Frank Celler 24569fa7d2 fixed JSON representation of indexes 2012-03-30 23:42:35 +02:00
Frank Celler ec95c4e5c9 more errors 2012-03-30 21:30:46 +02:00
Frank Celler 700ab897e9 started HTTP for indexes 2012-03-30 18:15:50 +02:00
Frank Celler a0103f33e3 started HTTP for indexes 2012-03-30 18:15:36 +02:00
Frank Celler b4f917d5d6 fixed README 2012-03-30 16:13:45 +02:00
Frank Celler 6d8fe07be9 Merge branch 'master' of github.com:triAGENS/AvocadoDB 2012-03-30 14:40:08 +02:00
Frank Celler 59e5926005 finished api-collections and tests and docs 2012-03-30 14:40:02 +02:00
Frank Celler b9ade46b36 finished api-collections and tests 2012-03-30 14:38:06 +02:00
Jan Steemann 4ae2ea3ae7 merge with SVN 2012-03-30 14:30:41 +02:00
Frank Celler 65da9f9e6c merged with JAN 2012-03-30 09:40:01 +02:00
Jan Steemann 102c32b14b merge with svn 2012-03-29 09:37:40 +02:00
Frank Celler d7d2d341a7 tests are still failed 2012-03-28 18:28:40 +02:00
Frank Celler 304aadbb4b fixed examples, removed parameter info 2012-03-28 18:19:54 +02:00
Frank Celler 2b7393eb6e Merge branch 'master' of github.com:triAGENS/AvocadoDB
Conflicts:
	js/actions/system/api-database.js
	js/actions/system/front-end.js
2012-03-28 18:15:31 +02:00
Frank Celler 27d7ba9fb8 more http api 2012-03-28 18:14:35 +02:00
Jan Steemann f1bf5d06f5 merge with SVN 2012-03-28 16:00:47 +02:00
Jan Steemann 6f35cfaecc merge with SVN 2012-03-28 14:01:41 +02:00
Frank Celler 46243e8288 cleanup 2012-03-28 11:50:18 +02:00
Frank Celler 356d95a279 more tests for api-collection 2012-03-28 11:37:22 +02:00
Frank Celler 204522d465 merged with JAN 2012-03-28 11:18:43 +02:00
Frank Celler 84697d5f8c merged with JAN 2012-03-28 10:19:45 +02:00
Frank Celler 2a789cb0e3 create collection 2012-03-27 23:24:57 +02:00
Frank Celler 738799b70a more tests and delete 2012-03-27 22:24:44 +02:00
Frank Celler bd17cfab54 more _api/collection 2012-03-27 18:07:55 +02:00
Frank Celler 7ef0fe6119 fix wrong tests 2012-03-26 23:15:16 +02:00
Frank Celler be33a5c44f merged 2012-03-26 16:50:21 +02:00
Frank Celler f295e32b8c merged 2012-03-26 16:38:44 +02:00
Frank Celler e0155307c5 added unload 2012-03-26 16:11:31 +02:00
Frank Celler 4aa24404b9 added rename 2012-03-26 16:11:31 +02:00
Frank Celler 4d03a86651 added unload 2012-03-26 16:11:31 +02:00
Frank Celler 0e1e5eb816 added rename 2012-03-26 16:11:31 +02:00
Jan Steemann 0a8a30054c recreated dependent files 2012-03-26 09:25:41 +02:00
Jan Steemann b4cd0cc2a9 merge with SVN 2012-03-26 09:14:11 +02:00
Frank Celler 10710e56e2 rename corrupted indexes 2012-03-23 09:23:39 +01:00
Frank Celler 5933c3721c added aql-operators 2012-03-23 08:50:50 +01:00
Frank Celler d7f21d662e errors 2012-03-22 17:42:26 +01:00
Jan Steemann c084ee32f7 updated error files 2012-03-22 09:37:44 +01:00
Frank Celler 0f43a193c4 added create 2012-03-22 09:26:47 +01:00
Frank Celler 18c630fa07 Merge branch 'master' of github.com:triAGENS/AvocadoDB 2012-03-21 17:51:33 +01:00
Frank Celler cd086b880d added create 2012-03-21 17:51:23 +01:00
Jan Steemann 61a53c5267 added constant result optimization for selects 2012-03-21 16:46:01 +01:00
Jan Steemann eb4fee8038 fixed documentation issues, fixed issue when printing objects 2012-03-21 11:07:56 +01:00
Jan Steemann fbb0d2eabd fixed conflict 2012-03-21 10:07:02 +01:00
Frank Celler 33f2513577 merged 2012-03-21 09:47:32 +01:00
Jan Steemann 7d5fd97207 changed version number to 0.3.5 2012-03-21 09:17:56 +01:00
Jan Steemann 62346bc32b merge with SVN 2012-03-21 09:06:11 +01:00
Frank Celler 55749cc96e merged and added doc 2012-03-20 16:20:05 +01:00
Frank Celler 57a4be3dd9 merged and added doc 2012-03-20 16:20:03 +01:00
Jan Steemann 2631c3cea3 merge with SVN 2012-03-20 13:18:48 +01:00
Frank Celler 2bb58c386a merged 2012-03-20 09:35:10 +01:00
Frank Celler 69bfa5757e cleanup documentation 2012-03-18 23:54:04 +01:00
Frank Celler b061b55cab cleanup documentation 2012-03-18 23:53:14 +01:00
Frank Celler d4303479a8 rest tests 2012-03-18 21:28:57 +01:00
Frank Celler c64f76b701 started rewrite of rest interface 2012-03-16 17:58:30 +01:00
Frank Celler b7e6c26ce3 merged Jan's and Achim's changes 2012-03-15 16:47:50 +01:00
Frank Celler 212e02836e fixed typo in url 2012-03-14 20:15:45 +01:00
Frank Celler 2c5698c6db doc 2012-03-14 18:03:02 +01:00
Frank Celler d4cd6585fa merged with jan 2012-03-14 17:54:59 +01:00
Frank Celler 3763193b1e documentation and actions 2012-03-14 11:54:19 +01:00
Frank Celler f9667f5d5f currently empty 2012-03-13 16:21:39 +01:00
Frank Celler 07f10fb351 separator can be : or ; 2012-03-13 14:57:54 +01:00
Frank Celler 5b28d68072 fixed layout and memory bug 2012-03-13 01:26:32 +01:00
Frank Celler fd2c9d4c32 fix (not yet) 2012-03-13 01:26:32 +01:00
Frank Celler 583215b9a7 cleanup by jan 2012-03-13 01:26:32 +01:00
Frank Celler ebd808669f doc 2012-03-13 01:26:32 +01:00
Frank Celler a8ad01e21a generated files 2012-03-09 14:12:20 +01:00
Frank Celler 6e12e7e6aa rebased 2012-03-09 14:10:03 +01:00
Frank Celler ffb61fe3c2 more doc, error handling when loading corrupted index 2012-03-09 14:06:04 +01:00
Frank Celler 1a7b0083eb added md2html 2012-03-09 14:06:03 +01:00
Frank Celler 426a3e334c better error handling 2012-03-09 14:05:31 +01:00
Frank Celler 64e490fdde doc module actions 2012-03-09 14:05:14 +01:00
Frank Celler 69544596f3 renamed userContext to actionContext 2012-03-09 14:05:08 +01:00
Frank Celler ffdc497643 change action to _action 2012-03-09 14:04:56 +01:00
Frank Celler 56c96a5784 added module doc 2012-03-09 14:04:56 +01:00
Frank Celler 73130e4226 added action prefix 2012-03-09 14:04:20 +01:00
Frank Celler 470f495690 better hallo-world examples 2012-03-09 14:04:13 +01:00
Frank Celler dfd5099eee action cleanup 2012-03-09 14:04:04 +01:00
Frank Celler e76fc8a81d actions are now working again 2012-03-09 14:03:55 +01:00
Frank Celler 685a36eb61 unfinished actions cleanup 2012-03-09 14:03:33 +01:00
Frank Celler 9798a987fa unfinished actions cleanup 2012-03-09 14:01:34 +01:00
Frank Celler 4d9d4abbb4 better error handling 2012-03-09 14:01:20 +01:00
Frank Celler 9705bd97b0 JS loader for avocsh 2012-03-09 14:00:59 +01:00
Frank Celler c71f6dab04 changed printing for client 2012-03-08 14:59:13 +01:00
Frank Celler 0f7f8e2e75 added test (JAN) 2012-03-08 14:59:12 +01:00
Frank Celler 161993203f merge new queries 2012-03-08 14:59:12 +01:00
Frank Celler 239ec4d3bc datafeeder (JAN) 2012-03-08 14:59:11 +01:00
Frank Celler 0a973d4465 wrong name 2012-03-08 14:59:10 +01:00
Frank Celler 7ccc55eecb more actions cleanup 2012-03-08 14:59:10 +01:00
Frank Celler b5ad93cf27 /admin/status action 2012-03-08 14:59:09 +01:00
Frank Celler 73a71fe68e more actions cleanup 2012-03-08 14:59:09 +01:00
Frank Celler 3611799e06 better error handling 2012-03-08 14:59:08 +01:00
Frank Celler 05b7fb35b7 doc module actions 2012-03-08 14:59:08 +01:00
Frank Celler 87ce346f39 renamed userContext to actionContext 2012-03-08 14:59:08 +01:00
Frank Celler 6314e671b2 change action to _action 2012-03-08 14:59:07 +01:00
Frank Celler a8e8fbea55 added module doc 2012-03-08 14:59:07 +01:00
Frank Celler a811763586 added action prefix 2012-03-08 14:59:06 +01:00
Frank Celler 152d444ccb better hallo-world examples 2012-03-08 14:59:06 +01:00
Frank Celler 809344f526 action cleanup 2012-03-08 14:59:06 +01:00
Frank Celler a8d4b74e4f actions are now working again 2012-03-08 14:59:05 +01:00
Frank Celler 6f9da0b573 unfinished actions cleanup 2012-03-08 14:59:05 +01:00
Frank Celler 47ff6f172f unfinished actions cleanup 2012-03-08 14:59:04 +01:00
Frank Celler 3c06872bd1 better error handling 2012-03-08 14:59:04 +01:00
Frank Celler 7ea32cce98 JS loader for avocsh 2012-03-08 14:59:03 +01:00
a2800276 275f741559 Typos 2012-03-01 20:51:36 +01:00
Frank Celler adbbf63d9c added avocado shell (Achim) 2012-03-01 17:01:24 +01:00
Frank Celler 73ce88d0fc more for QL (Jan) 2012-03-01 13:51:47 +01:00
Frank Celler d0a5dbe14d added module link 2012-02-29 17:41:12 +01:00
Frank Celler f2da1ad37b added new query language stuff (Jan) 2012-02-29 17:08:28 +01:00
Frank Celler 7d2b390607 removed old fluent interface 2012-02-29 16:59:31 +01:00
Frank Celler 120170e8d4 added doc, removed old funcs 2012-02-29 15:48:19 +01:00
Frank Celler 54dc883aba added SkipList (O), added QL (Jan), added new SimpleQueries (FC) 2012-02-29 14:18:39 +01:00
Frank Celler 755f8ec085 more simple-query stuff 2012-02-27 10:18:18 +01:00
Frank Celler 258952bc9f more QL 2012-02-24 18:43:09 +01:00
Frank Celler a613d6d283 ORESTE/JAN: hash indexes 2012-02-22 16:18:15 +01:00
Frank Celler 3a9f36f58f JAN: added tests 2012-02-20 17:33:50 +01:00
Frank Celler c4be4b3b8f Merge branch 'devel'
Conflicts:
	js/system/system.js
2012-02-20 10:47:39 +01:00
Frank Celler 52137f55a4 all in one for 32bit 2012-02-19 21:26:06 +01:00
Frank Celler 10170c3245 query optimizer, HEAD HttpMethod 2012-02-19 13:15:06 +01:00
Frank Celler 1d16d09a5a query optimizer, HEAD HttpMethod 2012-02-19 13:14:49 +01:00
Frank Celler 4cec91861a renamed to defineHttpSystemAction 2012-02-16 13:07:12 +01:00
Frank Celler 9b1485ed50 system stats 2012-02-16 10:14:40 +01:00
Frank Celler 7de7cc82c2 added generated files 2012-02-09 10:06:42 +01:00
Frank Celler 5cccbe44ba doc 2012-02-08 10:43:42 +01:00
Frank Celler 88e4de6846 doc 2012-02-08 10:25:39 +01:00
Frank Celler 323c266273 more documentation, separate modules.js for server 2012-02-07 18:08:45 +01:00
Frank Celler 558845eb1b more documentation, separate modules.js for server 2012-02-07 18:08:07 +01:00
Frank Celler 4bde2ae5f8 splitted JS files 2012-02-04 15:50:18 +01:00
Frank Celler 2c4a01989c wrap shaped, more documentation 2012-02-03 17:01:33 +01:00
Frank Celler d6c70b80a4 merge 2012-02-03 11:40:44 +01:00
Frank Celler 05e336b6aa added completions, more tests, more AQL 2012-02-02 16:08:18 +01:00
Frank Celler 0e0d47ebdf more AQL, added test files 2012-02-01 11:55:44 +01:00
Frank Celler 3a11b0c3cd added more for geo 2012-01-29 21:33:26 +01:00
Frank Celler 833176827b added jsunity 2012-01-28 20:55:57 +01:00
Frank Celler 5effbdb0f3 added jsunity 2012-01-28 20:55:53 +01:00
Frank Celler bc62480fcf towards 0.1.0 2012-01-26 17:25:01 +01:00
Heiko Kernbach 740834d79f intermediate 2012-01-24 13:45:14 +01:00
Frank Celler e046bdad51 select-by-example full scan version 2012-01-09 16:42:52 +01:00
Frank Celler 22722babf9 more documention, added remove 2012-01-06 11:39:03 +01:00
Frank Celler f130b4aa32 documentation 2012-01-05 17:31:58 +01:00
Frank Celler 65aeabc9fc cleanup 2012-01-04 09:29:41 +01:00
Frank Celler 76eb3a099c updated disclaimer 2011-12-23 09:37:46 +01:00
Frank Celler 9aa453f628 split Basics into BasicsC and Basics 2011-12-20 11:14:22 +01:00
Frank Celler 1f86f0a665 fixed bugs in logging, fixed problems in ProgramOptions, more Graph functions 2011-12-15 17:06:16 +01:00
Frank Celler 172d4e33ca added system actions, boost-less program options 2011-12-14 11:08:26 +01:00
Frank Celler de8e56cf91 added system actions 2011-12-14 11:06:37 +01:00
Frank Celler d5b27f1f29 added CommonJS/modules 2011-12-08 13:04:09 +01:00
Frank Celler 558e5d89c1 fixed print and toJSON 2011-12-07 17:14:11 +01:00
Frank Celler d40d228939 toJSON, JSON.stringify, JSON.parser 2011-12-06 11:08:41 +01:00
Frank Celler 7c7222ee93 more documentation, moved toString to shell.js 2011-12-02 09:57:29 +01:00
Frank Celler 49c33e85a0 more documentation, moved toString to shell.js 2011-12-02 09:55:45 +01:00
Frank Celler 1334654cd0 added graph functions 2011-11-30 23:40:55 +01:00
Frank Celler 8a49433f06 added graph functions 2011-11-30 23:40:48 +01:00
Frank Celler 3ecf51c305 added loader 2011-11-25 17:35:06 +01:00
Frank Celler ea6f35b09f added rest interface 2011-11-20 22:38:30 +01:00
Frank Celler a3cdcc1686 added within query, fixed date in header 2011-11-03 14:26:19 +01:00
Frank Celler 2fb09321f4 initial release 2011-10-26 21:32:36 +02:00