1
0
Fork 0
Commit Graph

4925 Commits

Author SHA1 Message Date
Jan 91577d93f5
remove unused frontend tests (#6114) 2018-08-17 15:20:12 +02:00
Alan Plum 1f69cb6d9d Fix Foxx CRUD errors (#5876)
* Fix off-by-2 error for SyntaxError line nums

* Actually log Foxx HTTP API errors

* Fix line wrap when logging error stacks
2018-08-17 10:09:12 +02:00
Simran c9ec32af0f Disable showPrintMargin for saved query preview too (#5995) 2018-08-17 09:21:26 +02:00
Heiko cd32dded74 Bug fix/issue 5831 (#6091) 2018-08-17 09:03:21 +02:00
ArangoDB Release Bot 6e270fba91 nightly frontend build 2018-08-16 23:58:11 +00:00
Heiko 542634ff5e fixed events not properly bound to view (#6143) 2018-08-16 08:48:08 +02:00
Heiko 01cbb4cac4 webui, fixed misalignment of a table (#6134) 2018-08-16 08:47:33 +02:00
ArangoDB Release Bot 55b46e28cb nightly frontend build 2018-08-15 23:58:18 +00:00
ArangoDB Release Bot cf6a9ee352 nightly frontend build 2018-08-14 23:58:08 +00:00
ArangoDB Release Bot 8b60d9692c nightly frontend build 2018-08-09 23:58:12 +00:00
Heiko 9e37486c32 fixed api views within the ui (#6022)
* fixed api views within the ui

* added view keyword
2018-08-09 11:29:42 +02:00
Tobias Gödderz de4f5587ae Gharial rewrite in C++ (#5631)
* Built a C++ skeleton REST handler for gharial, with fallback to the JS handler

* Moved aql::Graph to graph::Graph

* Added complete edge definitions to Graph

Also:
- some cleanup
- used forward-declarations in headers
- use Graph in graph rest handler

* Handle graph lookup failures according to the test suite

* Added GET vertex

* Bugfixes in ResultT

- Added missing #include
- Fixed move semantics

* Move central code of readVertex to GraphOperations

* ResultT fixes and complements

* Implemented a graph cache

* Added and used graph cache to the rest handler

* Added GET edge

* Added DELETE edge

* Extracted some code

* Added PATCH and PUT for both edge and vertex

* Moved update/replace transaction code to GraphOperations

* Added stub routes for POST and a TODO note

* Added a test checking that deleting a vertex removes all incident edges as well

* Added a test checking that deleting a vertex does not remove edges in non-graph collections

* fixed compiler warnings and errors

* Began work on DELETE vertex

For this, added a V8Context to allow for AQL queries to use subtransactions

* Continued work on DELETE vertex (still WIP)

* prep for graph post routes

* fixed removeVertex operation (aql)

* added post vertex and post edge gharial routes

* wasSynchronoues flag changed

* gharial post c++ handler, naming conventions

* added gharial tests

* temporary disabled cache (because not completed), added graph property read functions

* added c++ gharial list vertex collections

* added c++ gharial graph config

* added c++ gharial list graphs

* added graph manager class

* first implementation of create graph in c++, WIP

* changed error messages

* added etag to create graph api, still multiple edge definition check missing

* finished POST /_api/gharial/<graph>

* WIP - DELETE /_api/gharial/<graphName>

* added DELETE /_api/gharial/<graphName> validation, still missing correct response

* gharial delete

* fixed delete gharial lock

* finished DELETE /_api/gharial/<graphName>

* added routes for graph based vertices and edge definitions

* improved delete route

* added add new edge definition to existing graph

* patch edge definition in a graph, still <WIP>

* finished edit edge definition route

* code changes due to devel code changes

* added remove edge definition route

* added vertex delete function

* added todo note regarding one drop collection issue

* add oprhan collection to graph route implemented

* Added a test

* Updated a comment

* Several minor changes

* Minor changes during review

* Changes during review

* Changes during review

* Bugfix: orphans may be null or omitted

* Bugfix: resolve externals

* minor code changes

* seperated graph class to independent component classes

* seperated graph class to independent component classes

* removed log output

* fixed create collection behaviour in a cluster environment

* fixed enterprise graphs behaviour in c++ gharial api

* removed log output

* formatting

* improved error handling, fixed a linux compile bug

* more result refactoring

* more result type cleanup

* fixed wrongly defined test

* result handling

* error handling

* more refactoring

* Bugfix: avoid race condition in cluster when creating collections

* updated graph documentation

* added graph related static strings

* static strings, new method to create options for gharial created collections

* Some minor cleanup

* more use of static strings

* minor code changes, review

* added missing parseint

* removed gharial foxx, added js common module, added v8 general graph module

* correct use of virtual method

* more v8, js general graph, broken state

* more v8 graph functions

* fixed editEdgeDefinition, added drop function

* fixed drop behaviour

* added _list, _exists

* added c++ rename graph collections, added v8 + graph module function

* Added a regression test

* added graph._deleteEdgeDefinition, v8, server

* more v8g

* added _removeVertexCollection

* added _extendEditDefinitions

* todo, need to add a helper sort method for a local defined relation

* fixed test

* fixed lots of tests, added more client functions, _addVertexCollection on client module is still broken

* added more client graph functions, all tests green

* more client functions

* add del edge def route

* Fix use after move

* Minor changes in client general-graph.js module

* Make a copy before sorting (don't touch the argument)

* Minor changes and some additional asserts in graph tests

* Consistently set parameter defaults

* Renamed static strings

* Remove superfluous function

* Made comment more verbose

* Minor changes in general-graph-common.js

* Added missing template arguments

* Fixed community build

* Cleanup in editEdgeDefinition

* Regression test & bugfix: comparison of edge definitions didn' order from and to

* Fixed errors introduced by merge

* Minor changes in v8-general-graph.cpp

* Fixed test failure due to wrong error code in CE

* added missing id field

* Added permission checks for graph._create

* Removed assertion that is no longer valid

* Moved removeGraph from GraphOperations to GraphManager

* Allow C++ implementation of graph._drop to handle smart graphs

* Flush js client db cache after creating/dropping collections via the general graph module

* Added _deleteEdgeDefinition to the general graph client module

* WIP: Added permission checks for drop graph

* Fixed permission checks for drop graph

* Added permission checks for other graph operations

* Bugfix: assert edge definitions are returned in order

* Some cleanup

* Removed unused method

* Minor improvements in GraphManager

* Fixed a type in general-graph common module

* Most useful fix of all times ever: Do not auto cast from bool to int and alternate error/noerror by this

* Added the initial keyword to StaticStrings

* Added a new error code, used whenever a user tries to inject a documentcollection as a relation into the graph, which is invalid

* Some GraphManager/Ops/Graph cleanup. Less Slice parsing, more usage of GraphObjects

* Test edgeDefinitions in graphs with a defined ordering

* GraphClass Layout cleanup

* Do not test error messages, use codes instead

* Recreated backwards compatibility of Graph Creation Permission errors

* Changed error-code if edgedefinition is used twice

* Added a StaticString for the GraphName

* Renamed graphToVpack => graphForClient

* Partly fixed graph-api test to work with better error messages. Still red: The edgeDefinitions are now sorted, the test is supposed to sort his own list, but appearently does not do so. Under investigation

* Added a new error code that rejects injection of differently sharded smart collection into smartgraph. Should be more helpful to our users

* graph createCollectionOptions now require an open object to be cross-called from enterprise. Made enterprise switch for creation of graph more elegant.

* Updated graphs.cpp

* Massive refactoring. Made Factories for graphs to make SmartGraph much more transparent. Also reduced amount of multiple implementations of the same stuff. Killed vocbase/graphs use GraphManager instead. Removed usage of GraphCache, was not completely implemented anyway and only partially used, which is bad at the moment. Option for later improvement never the less

* Adapted JS code to now really use c++ variants. ALso included 3 Classes: Graph, SmartGraph and GraphModule.

* Fixed undefined behaviour in Remove Vertex. Fixed smartgraph sharding if one collection already exists.

* Removed DEBUG output

* Removed DEBUG logs

* Removed dead code

* Fixed Graph EdgeDefinition test, they now have a different ordering.

* Added a test when adding a vertexCollection that it is actually valid in the graph

* Client Graph API now correctly sends `orphanCollections` and not `orphans`

* Let GraphOperations modify the graph in-place. It should now properly handle edgeDefinitions.

* Added initial cid StaticString

* Included the vocbase in fromPersistence creation of Graphs. Only required to enhance 3.3 SmartGraphs on the fly.

* Fixed internal error message

* Fixed compiler isses originiated from merging

* Removed unused imports

* Regenerated generated file
2018-08-09 09:30:04 +02:00
ArangoDB Release Bot 4aa174399c nightly frontend build 2018-08-08 23:58:18 +00:00
Simon 6a97e441a6 Doc - New section for query profiler + fresh examples (#6070) 2018-08-08 10:51:09 +02:00
ArangoDB Release Bot e5ee7f4457 nightly frontend build 2018-08-07 23:58:09 +00:00
Heiko 6e64c8ec9a Bug fix/issue 5943 (#6096) 2018-08-07 15:13:35 +02:00
Heiko b6c87a2342 Bug fix/issue 5354 (#6083) 2018-08-07 15:11:23 +02:00
Heiko 59d97c4649 fixed ui bug when saving invalid document type (#6079) 2018-08-07 15:10:00 +02:00
ArangoDB Release Bot 7324240a31 nightly frontend build 2018-08-06 23:57:56 +00:00
ArangoDB Release Bot 27d12bfd25 nightly frontend build 2018-08-03 23:58:00 +00:00
Heiko 434cfce699 Feature/query profiling ui (#6027) 2018-08-03 10:58:22 +02:00
ArangoDB Release Bot 57c0f76b23 nightly frontend build 2018-08-02 23:57:56 +00:00
ArangoDB Release Bot ae83313de6 nightly frontend build 2018-07-30 23:57:54 +00:00
Heiko 48be2caba9 AQL Editor Geo Extension (#5382)
* first working example of geo aql ui detection

* license

* geo aql editor improvements

* Update CHANGELOG

* updated attributiong

* used different map, fixed wrong positioning when scrolling

* checking geo types

* added internet connection check for rendering the map in case of geosjon query result
2018-07-30 13:08:11 +02:00
ArangoDB Release Bot 185a172ba9 nightly frontend build 2018-07-27 23:58:12 +00:00
ArangoDB Release Bot 7d3fa1545a nightly frontend build 2018-07-26 23:58:08 +00:00
Heiko 7da70474c2 fixed usage of server short name due api change (#5997) 2018-07-26 15:01:59 +02:00
ArangoDB Release Bot 939c4bc820 nightly frontend build 2018-07-25 23:58:15 +00:00
KVS85 304fc511f2 Fix response processing for view Views (#5987) 2018-07-25 18:05:22 +02:00
ArangoDB Release Bot e85af45201 nightly frontend build 2018-07-24 23:57:57 +00:00
ArangoDB Release Bot fe655caa50 nightly frontend build 2018-07-23 23:58:10 +00:00
maxkernbach 53cd8da157 Doc - fix build (#5961)
*  fix RESTSTRUCT
* commit new swagger
2018-07-23 18:10:00 +02:00
jsteemann 643237ed6c added new AQL functions to syntax highlighting 2018-07-20 23:27:58 +02:00
ArangoDB Release Bot 6e3fcfc23d nightly frontend build 2018-07-19 23:58:06 +00:00
Wilfried Goesgens bf32c4e7e1 Doc - add duplicate check in the build script (#5897) 2018-07-18 19:01:07 +02:00
ArangoDB Release Bot ffad59db86 nightly frontend build 2018-07-16 23:57:59 +00:00
sleto-it e0f934e705
Doc - fix build (#5887) 2018-07-16 11:26:27 +02:00
ArangoDB Release Bot 1f5d2f38e7 nightly frontend build 2018-07-13 23:58:05 +00:00
Wilfried Goesgens 35d87bdbd5 add APIs to the changelog (#5870) 2018-07-13 17:24:22 +02:00
Simran 34ec56d421 Feature/misc spelling corrections (#5164) 2018-07-13 13:06:20 +02:00
Wilfried Goesgens fca40ca87c Doc - improve error handling in case of empty json file (#5832)
* improve error handling in case of empty json file
* fresh examples
* Update generateMdFiles.py
2018-07-11 19:32:09 +02:00
Vasiliy 64666d0edd issue 400.2.4: register IResearchView sync tasks with IResearchFeature, remove unused configuration parameter (#5813)
* issue 400.2.4: register IResearchView sync tasks with IResearchFeature, remove unused configuration parameter

* set flag before notify, fix failures in new tests from 'devel'

* revert set flag before notify, fix more failures in new tests from 'devel'

* fix even more failures in new tests from 'devel', backport: do not reset notification flag if pending tasks were seen

* fix still more failures in new tests from 'devel'

* try to work around buggy test failures
2018-07-10 18:15:01 +03:00
ArangoDB Release Bot dbe0363602 nightly frontend build 2018-07-09 23:58:07 +00:00
ArangoDB Release Bot 40e8b67ebe nightly frontend build 2018-07-06 23:57:53 +00:00
Wilfried Goesgens bd8976956c Doc - Add example anchors (#5752) 2018-07-06 16:19:36 +02:00
ArangoDB Release Bot d73827e8f8 nightly frontend build 2018-07-05 23:57:52 +00:00
ArangoDB Release Bot ed4f64f82c nightly frontend build 2018-07-03 23:57:50 +00:00
Wilfried Goesgens 4f9acd3cc2 Doc - fresh swagger 2018-07-03 (#5758) 2018-07-03 18:51:11 +02:00
Simon 28c3de87e7 Prevent guessing of Database names (#5748) 2018-07-03 16:24:50 +02:00
jsteemann b1002075b3 Merge branch 'feature/add-distinct-aggregator' of https://github.com/arangodb/arangodb into devel 2018-06-28 19:03:16 +02:00
ArangoDB Release Bot e1b2f210ac nightly frontend build 2018-06-27 23:57:53 +00:00
Vasiliy bf1f2eab29 issue 401.2: split IResearchViewMeta into the user configurable part and internal state (#5683)
* issue 401.2: split IResearchViewMeta into the user configurable part and internal state

* backport: update documentation and integration tests to reflect the IResearchViewMeta changes

* backport: addresss typo

* backport: address another typo
2018-06-27 16:40:51 +03:00
maxkernbach 6586504441 Update demo graphs (UI + documentation) (#5535) 2018-06-27 14:16:44 +02:00
jsteemann cc9c5db7bb added generated files 2018-06-26 23:06:30 +02:00
ArangoDB Release Bot 8dbab2dc97 nightly frontend build 2018-06-25 23:58:00 +00:00
maxkernbach 83bbd403b2 fix table validation (#5663)
include result with length = 1 to enable table view and csv download for a query with only 1 result
2018-06-25 13:59:57 +02:00
ArangoDB Release Bot 8ae8fc689b nightly frontend build 2018-06-20 23:57:54 +00:00
ArangoDB Release Bot e4ae0860e9 nightly frontend build 2018-06-10 23:57:44 +00:00
Heiko 2a415a666e added views nagivation entry for arangosearch into the web ui (#5388) 2018-06-10 12:30:47 +02:00
ArangoDB Release Bot 5682213db7 nightly frontend build 2018-06-08 23:57:55 +00:00
Heiko 743d4430bf added replication ui (#5555) 2018-06-08 11:19:05 +02:00
Heiko fdf7e412f0 ui: fixed misplaced tooltip icons in indices view (#5509) 2018-06-07 12:57:59 +02:00
Heiko d8d5ae14f8 ui, document id not showing up when deleting a document (#5513) 2018-06-07 12:55:45 +02:00
Heiko 28b54bd9f7 ui: install new service - field limitations (#5514) 2018-06-07 12:55:00 +02:00
ArangoDB Release Bot 09b0cc62e2 nightly frontend build 2018-06-01 23:57:50 +00:00
ArangoDB Release Bot 4caa4d1406 nightly frontend build 2018-05-28 23:57:46 +00:00
Wilfried Goesgens 59390ef374 Doc - Improves fetch-script. Fresh Swagger. Sync external repos (#5463) 2018-05-28 16:29:30 +02:00
ArangoDB Release Bot 2a048cf2d7 nightly frontend build 2018-05-25 23:57:49 +00:00
Jan Christoph Uhde 551844ff15 add missing examples for overwrite (#5460) 2018-05-25 12:00:54 +02:00
ArangoDB Release Bot c29edcbd08 nightly frontend build 2018-05-23 23:58:00 +00:00
Simran 555f7be1d5 Update queryView.js (#5366)
Use AQL mode for Ace editor if it's explainer output
2018-05-23 17:14:29 +02:00
ArangoDB Release Bot 8eead9bcbc nightly frontend build 2018-05-22 23:58:02 +00:00
Heiko c2283f265a fixed a vulnerability issue within the web ui's index view (#5394) 2018-05-22 16:54:08 +02:00
Mark 435523167f Bug-fix Foxx empty json request body (#5304) 2018-05-16 16:54:38 +02:00
ArangoDB Release Bot 95cebd1826 nightly frontend build 2018-05-14 23:57:57 +00:00
Simon 17b1a2aafb Rest middleware refactoring (#5332) 2018-05-14 17:43:10 +02:00
jsteemann 3586be974c fix jslint warnings 2018-05-09 23:08:46 +02:00
Heiko 65d1434b4d performance optimization gharial post (#5291)
* performance optimization

* fixed badly behavior in api gharial while replaced the document with exists function
2018-05-09 12:50:28 +02:00
ArangoDB Release Bot 48010bd195 nightly frontend build 2018-05-07 09:55:47 +00:00
ArangoDB Release Bot a388c48c9a nightly frontend build 2018-05-03 23:57:52 +00:00
Heiko 47f747be83 potential high resolution patch for the single node dashboard (#5216) 2018-05-03 14:19:54 +02:00
Wilfried Goesgens 7646d02702 Documentation/re add link (#5241) 2018-05-02 11:09:12 +02:00
ArangoDB Release Bot 7c723fe09f nightly frontend build 2018-04-27 23:57:48 +00:00
Heiko 8c1f55087d Bug fix/modal event problems (#5202)
* fixed unreasonable event behaviour within the modal view

* changelog

* added esc event to properly hide and cleanup a modal
2018-04-27 17:07:27 +02:00
Heiko 0ba82969f4 fix ruby tests and api gharial err behaviour (#5208) 2018-04-27 17:06:38 +02:00
Wilfried Goesgens c4b0ccb56f Doc - fix restheader (#5209) 2018-04-27 13:15:42 +02:00
Heiko bcd33b8ea1 Bug fix/issue 3811 (#4984)
* now checking existence of _from and _to vertices during edge creation
2018-04-25 14:24:24 +02:00
ArangoDB Release Bot 5755f070e5 nightly frontend build 2018-04-24 23:57:52 +00:00
Michael Hackstein 0d2d61ca9c
Bug fix 3.3/anonymize in debug dump (#5190) (#5191)
* Fixed the amount of Xs generated by debug dump

* Fixed typo in debugDump information
2018-04-24 13:26:21 +02:00
Michael Hackstein a8e737f16f
Feature/debugdump ui (#5187)
* Adeded a route to aardvark to export a debug dump, it can optinally contain anonymized example data

* Added the Download Debug Button to UI

* fixed zip file download of query dump file

* removed not needed vars

* Added JWT token authentication and error display on debug dump button

* Fixed Error reporting on download debug dump.

* Anonymization does not anonymize system attributes any more.

* Anonymize in explainer debugDump will now anonymize bindVars and will not anonymize system document attributes.
2018-04-24 09:43:04 +02:00
ArangoDB Release Bot 7d70ee2ca0 nightly frontend build 2018-04-13 23:57:51 +00:00
Heiko 830169b676 Bug fix/internal issue 2147 (#4954) 2018-04-13 11:17:40 +02:00
Heiko 4cb97a8da7 Bug fix/internal issue 2149 (#4963) 2018-04-13 11:15:26 +02:00
Heiko 3cc21803c8 Bug fix/internal issue 2148 (#4969) 2018-04-13 11:13:57 +02:00
Heiko c09c8c5d57 Bug fix/internal issue 2150 (#4971) 2018-04-13 11:12:54 +02:00
Heiko f49f8ae397 same behavior as java driver while parsing a queries bind parameters (#4985) 2018-04-13 11:09:53 +02:00
Alan Plum 4888eae718 Don't log stacktrace when fishbowl update fails (#5086) 2018-04-13 11:04:31 +02:00
Manuel B 028eabc297 Doc - more AQL examples (#5016) 2018-04-09 11:48:36 +02:00
Dan Larkin-York 690bb61c8e Doc - Documentation for cluster health API (#4834) 2018-03-23 11:10:42 +01:00
Andrey Abramov 294c36f778 use ERROR_ARANGO_DATA_SOURCE_NOT_FOUND instead of ERROR_ARANGO_COLLECTION_NOT_FOUND/ERROR_ARANGO_VIEW_NOT_FOUND in js part too 2018-03-19 13:55:25 +03:00
ArangoDB Release Bot aeec9d3879 nightly frontend build 2018-03-08 00:57:38 +00:00
Heiko 43c11b448b fixed wrong detection of file types (#4772) 2018-03-07 11:03:30 +01:00
ArangoDB Release Bot fb4d18dfa6 nightly frontend build 2018-03-07 00:57:49 +00:00
Heiko a9ce6f8d9a fixed wrong behaviour when updatating foxx repository was not successful (#4763) 2018-03-06 12:07:45 +01:00
Wilfried Goesgens 8297fd38b8 Doc - Fix doc build attempt 2 (#4744) 2018-03-02 15:02:42 +01:00
ArangoDB Release Bot 0d184a07fa nightly frontend build 2018-03-02 00:57:43 +00:00
Jan 00d331bb62
fix UI in non-authenticated mode (#4731) 2018-03-01 18:07:10 +01:00
Heiko 7bcfbee0c5 Bug fix/issue 4698 (#4700)
* databases inside the login view and uer permissions view are now sorted

* changelog
2018-03-01 16:51:14 +01:00
Heiko 663d98c99f Bug fix/issue 4657 (#4706)
* fixed incomplete content type header

* changelog
2018-03-01 16:47:54 +01:00
ArangoDB Release Bot 6a1bb6ab2c nightly frontend build 2018-03-01 00:57:46 +00:00
Heiko 64e81064b1 added missing global var (#4712) 2018-02-28 16:25:54 +01:00
Heiko b6df96fcc1 Feature/foxx store (#4600)
Vastly improved the Foxx Store UI
2018-02-28 14:39:36 +01:00
Simon 345fc3c0b7 Refactor Authentication Layer (devel) (#4592)
* Cherry Picking LDAP changes

* Adding missing merges

* Fixing remaining mentions of FeatureCacheFeature

* Fix jslint

* Fixing some failed tests

* Fixing cluster authentication issue, red tests

* Fixing ldap testsuite, adding trace logging

* Fixint ldap tesuite setup and LDAP recognition

(cherry picked from commit 686d28a779)

* Fixing wrong assert

* Adding changelog entry, making requested changes from code review

* Fixing dump_authentication, fix typos

* improvements found during code review

* oops

* more use of sessionstorage

* fix tests

* Fixing broken handling, disallowing adding of local users when disabled

* Fixing testInvalidGrants

* Removing undefined auth level externally

* Fixing previous commit

* added tests for ldap search mode

* intentionally removed `after` methods from tests

because they are executed before the tests start
no cleanup is performed right now after the authentication tests
however, a cleanup is done at start of every test

* ldap tests all modes

* forward port changes from 3.3

* added generated files

* forward port missing changes for web UI

* added generated files

* added generated files
2018-02-28 13:24:28 +01:00
sleto-it 0ba532b16a
Doc - Replication Refactor - Part 1 (#4555)
Next steps after DC2DC and Cluster doc improvements:

- We refactor replication sections and make more intuitive separation between Master/Slave and the new Active Failover in 3.3
- We create corresponding sections for Master/Slave and Active Failover in the Administration and Deployment chapters, as well as in the Scalability chapter, where these "modes" are introduced
- We touch and improve the "Architecture" chapter as well, where some architecture info have to be placed
- We reorg the TOC having in more "logical" order:
-- Deployment
-- Administration
-- Security
-- Monitoring
-- Troubleshooting
- We adds parts in the TOC
- We add toc per pages, using page-toc plugin
- We also put close together "Scalability" and "Architecture" chapters, preliminary steps of further improvements / aggregation
- We improve swagger

Internal Ref:
- https://github.com/arangodb/planning/issues/1692
- https://github.com/arangodb/planning/issues/1655
- https://github.com/arangodb/planning/issues/1858
- https://github.com/arangodb/planning/issues/973 (partial fix)
- https://github.com/arangodb/planning/issues/1498 (partial fix)
2018-02-28 12:23:19 +01:00
Vasiliy 423ce33ed1 Changes since last PR: remove 'dataPath' IResearchView configuration property and use a hardcoded path similar to a LogicalCollection (#4683) 2018-02-27 18:10:32 +01:00
ArangoDB Release Bot 5c28a00b24 nightly frontend build 2018-02-21 00:57:40 +00:00
Heiko a5bd135ddf ui dashboard http correct label (#4613) 2018-02-20 11:30:47 +01:00
Mark cd97787adf Fix Foxx API (#4614) 2018-02-20 10:22:27 +01:00
Wilfried Goesgens 1c80774091 Fresh swagger (#4623) 2018-02-19 18:56:27 +01:00
Andrey Abramov d130e0f7c6 Bug fix/internal issue #350 (#4601) 2018-02-15 18:57:08 +01:00
Wilfried Goesgens 139aca6967 Doc - fix examples (#4579) 2018-02-13 20:32:01 +01:00
Wilfried Goesgens 619155a62d Feature/aqlfunction to cpp (#4573) 2018-02-13 11:50:49 +01:00
ArangoDB Release Bot 66401c5463 nightly frontend build 2018-02-13 00:57:52 +00:00
Heiko c36bb206ad removed not needed menu entry for cluster logs (#4544) 2018-02-12 10:05:52 +01:00
Jan 42dd337152
allow using `returnOld` and `returnNew` attributes in HTTP REST APIs … (#4479) 2018-02-09 14:50:56 +01:00
Alan Plum 232abd4bd0 Fix legacy Foxx HTTP API compat layer (#4265) (#4449) 2018-02-05 12:35:51 +01:00
Mark 599da158b5 Bugfix Foxx API tests (#4446) 2018-02-05 11:31:27 +01:00
Alan Plum 05d0c81d7d More consistent config/deps output in Foxx API (devel) (#3792)
* Correctly expose parsed/raw config

This makes accessing the configuration more consistent by distinguishing between the raw (assigned) and parsed (validated/default) values.
Previously there was no way to recognise default values for unset config options and the "current" value did not actually reflect what the service sees.

* Add minimal option to config/deps routes

The default values are backwards compatible with the existing behaviour but can be overridden to consistently get more/less output.

* Actually merge warnings into non-mininal response
2018-01-30 16:50:36 +01:00
Wilfried Goesgens 054989cd41 Documentation/rename iresearch files (#4456) 2018-01-29 17:23:18 +01:00
ArangoDB Release Bot 8be7833973 nightly frontend build 2018-01-24 00:58:15 +00:00
Heiko fdc0c62dbc Bug fix/quotation marks query editor (#4380) 2018-01-23 12:38:13 +01:00
ArangoDB Release Bot 172494db51 nightly frontend build 2018-01-20 00:57:42 +00:00
Andrey Abramov a1cfb3d72b Feature iresearch (#4105) 2018-01-19 14:23:58 +01:00
ArangoDB Release Bot 5651ceed79 nightly frontend build 2018-01-17 00:57:36 +00:00
Heiko 97f7851ebe Bug fix/issue 1683 (#4264) 2018-01-16 21:41:24 +01:00
Heiko 9d2e11f789 fixed a query caching and parsing issue in the ui (#4266) 2018-01-16 21:39:40 +01:00
Heiko 77ac74bcf0 UI: optimized login view for very small screen sizes (#3761) 2018-01-16 09:55:49 +01:00
Heiko 43edad2537 Bug fix/ui query parameter issue 4217 (#4244) 2018-01-16 09:12:54 +01:00
ArangoDB Release Bot 62aee41411 nightly frontend build 2018-01-16 00:57:47 +00:00
Heiko 947771b757 updated swagger to current version: 3.9.0 (#4285) 2018-01-16 00:25:15 +01:00
ArangoDB Release Bot 2c5fa19d4e nightly frontend build 2018-01-12 01:02:18 +00:00
ArangoDB Release Bot 6b3f1c1697 nightly frontend build 2018-01-04 00:57:41 +00:00
Heiko e48acb5523 ui - updated support view (#4203) 2018-01-03 17:04:44 +01:00
ArangoDB Release Bot 212b5056a5 nightly frontend build 2018-01-03 00:57:34 +00:00
Heiko 61de1b6099 Bug fix/optimize shard distribution api and ui (#3921)
* UI: document/edge editor now remembering their modes (e.g. code or tree)

* changed shardDistribution api behaviour, added PUT route to only fetch collection based shard distribution

* ui: optimized shards view, added missing cleanup function in nodes view

* broken test

* shard distribution tests not fit the new api behaviour

* variables as reference

* CHANGELOG
2018-01-02 12:42:12 +01:00
Heiko 1a1f908c2b Bug fix/issue 4152 ui wfs rocksdb (#4153) 2018-01-02 12:30:03 +01:00
Heiko ba563f7f36 Feature/dygraph lib update (#4183) 2018-01-02 12:27:25 +01:00
Wilfried Goesgens 7a9bf83561 fresh examples (#4101) 2017-12-19 13:48:27 +01:00
ArangoDB Release Bot 1e87c55e86 nightly frontend build 2017-12-19 00:57:45 +00:00
Jan 2a96df5ca5
Feature iresearch (#4071) 2017-12-18 15:04:59 +01:00
ArangoDB Release Bot 61841c3293 nightly frontend build 2017-12-17 00:57:31 +00:00
Heiko 2cda6b8153 changelog (#4051) 2017-12-16 17:23:12 +01:00
Heiko 5878d8184e Bug fix/ui fix foxx configuration keys 3818 (#3993)
* ui: fixed broken foxx configuration keys. Some valid values could not be handled by the ui.

* changelog
2017-12-16 15:16:00 +01:00
ArangoDB Release Bot 92ed9a84ec nightly frontend build 2017-12-15 00:57:40 +00:00
Heiko 7563ba25ea Feature/ui modals usability 891 (#3989) 2017-12-14 12:59:33 +01:00
Heiko 62d0476bd7 Feature/ui 1447 nodes sorting (#3986) 2017-12-14 12:58:02 +01:00
ArangoDB Release Bot cf0d5edc3b nightly frontend build 2017-12-09 00:57:42 +00:00
Heiko 5561ab4482 Bug fix/ui navigation label issue 1406 (#3879)
* nav label wrongly removed

* UI: fixed disappearing of the navigation label in some case special case
2017-12-08 15:57:10 +01:00
Heiko b409fd06c8 fixed issue #3822 - disabled input field for system collections (#3959) 2017-12-08 15:39:37 +01:00
ArangoDB Release Bot 1746232ded nightly frontend build 2017-12-07 00:57:45 +00:00
Heiko 228cee6410 UI: using default user database api during database creation now (#3746) 2017-12-06 14:26:13 +01:00
Wilfried Goesgens a0fd2b7c40 any() is very slow in rocksdb with large collections. (#3901) 2017-12-06 14:18:04 +01:00
Heiko d06417e665 Bug fix/ui issue 2668 document not found (#3874) 2017-12-06 10:56:54 +01:00
Heiko 0d0f8eadbb edge collections were wrongly added to from and to vertices select box during graph creation - devel (#3881) 2017-12-06 10:54:44 +01:00
ArangoDB Release Bot 935ae9f16f nightly frontend build 2017-12-01 00:57:39 +00:00
Heiko e3277a493c the graph viewer now displays updated label values correctly (#3763) 2017-11-30 11:49:49 +01:00
ArangoDB Release Bot de79bea932 nightly frontend build 2017-11-28 10:28:23 +00:00
ArangoDB Release Bot 4fd9c33e8a nightly frontend build 2017-11-27 17:55:56 +00:00
ArangoDB Release Bot a7bda575ee nightly frontend build 2017-11-27 17:42:11 +00:00
ArangoDB Release Bot 61a0439b89 nightly frontend build 2017-11-27 17:31:55 +00:00
ArangoDB Release Bot d5b35baac8 Merge branch 'devel' of https://github.com/arangodb/arangodb into devel 2017-11-27 17:31:00 +00:00
ArangoDB Release Bot 69efa185a7 nightly frontend build 2017-11-27 17:28:59 +00:00
Heiko 259a051a8e UI: document/edge editor now remembering their modes (e.g. code or tree) (#3815) 2017-11-27 18:24:12 +01:00
Heiko cb3b71d697 Bug fix/gv catch graph error and fix renderer cleaanup dev (#3791) 2017-11-27 12:21:31 +01:00
ArangoDB Release Bot 18bd7a9677 nightly frontend build 2017-11-27 00:57:57 +00:00
ArangoDB Release Bot 0ebd964dd2 nightly frontend build 2017-11-26 00:57:57 +00:00
ArangoDB Release Bot 204e983d22 nightly frontend build 2017-11-25 00:58:01 +00:00
Heiko dbab414321 UI: added a delay within the graph viewer while changing the colors of the graph (#3758) 2017-11-24 12:30:17 +01:00
ArangoDB Release Bot 42a694d0d7 nightly frontend build 2017-11-24 00:57:57 +00:00
ArangoDB Release Bot 7f9bd1baa2 nightly frontend build 2017-11-23 00:58:01 +00:00
Frank Celler 20c8565b25
Feature/encrypted dump (#3777) 2017-11-22 17:25:25 +01:00
ArangoDB Release Bot 56a2329592 nightly frontend build 2017-11-22 12:06:30 +00:00
ArangoDB Release Bot 2fa1948de8 nightly frontend build 2017-11-21 11:06:27 +00:00
jsteemann 1c84b7bac1 do not pass string "undefined" as cluster id 2017-11-15 12:18:58 +01:00
Jan 7613bc4314 Bug fix/fixes 0211 (#3568)
* remove some non-unused V8 persistents

* do not throw that many bogus assertions

* do not rely on server role being defined

* slightly better debug output for V8 context debugging

* fix collection ids in inventory response

* simplify bootstrap a bit

* slightly better error handling

* make elapsed time a queryable value

* use less memory for stub collections

* added assertions that will always make sense

* added assertions

* do not garbage-collect while waiting

* less copying of parameters

* do not show "load indexes into memory" buttons for mmfiles engine

  as all indexes are in memory anyway

* when a collection is truncated via the web interface, flush the WAL and rotate all active journals

this will make close all open journals on leader and followers and make them subject to compaction opportunities

* fix invalid server id values being passed from web interface to backend

* introduce afterTruncate method for indexes

* added test case for issue #3447

* updated CHANGELOG

* don't warn about replicationFactor for system collections

* check that the queries actually use the geo index and not some other index

* properly report error in web interface

* fix some internals checks that made truncate fail for bigger collections in maintainer mode

* also run a compact() operation after a serious truncate

in order to make iteration over the truncated range much faster
when the collection is next accessed

* increase default maximum number of V8 contexts to at least 16
2017-11-09 12:48:15 +01:00
Jan 14bc59317b fixed issue 3403: How to kill long running AQL queries with the browser console's AQL (#3565) 2017-11-02 14:31:30 +01:00
Heiko 30811bf622 Bug fix/ui collection settings error notifications devel (#3547) 2017-10-30 17:35:45 +01:00
Heiko c4be69fa26 fixed event cleanup in cluster shards view - Bug fix/issue 1123 - devel (#3531)
* ui shard view event not removed properly

* changelog
2017-10-26 18:23:15 +02:00
Heiko 124327aade replicationFactor of a collection is now changeable in a cluster environment (#3501) 2017-10-26 09:59:39 +02:00
Heiko 800907fc68 Bug fix/ui event behaviour devel (#3499)
* changed coordshort api behaviour in ui

* reduced cluster dashboard api calls
2017-10-25 18:07:01 +02:00
Heiko 8016e902cd Feature/cmake frontend build (#3450)
* added frontend build process to cmake

* package json grunt
2017-10-18 12:32:57 +02:00
Wilfried Goesgens 88fd685296 Bug fix/fix shard state restore display (#3385)
* don't add  items into the array if we have an empty list member.

* we mustn't display 100% here, since its a rounding error. If, the checkmark would be set.

* rather use string cutting to round so we don't get into the 100% trap.
2017-10-17 14:08:07 +02:00
Heiko 6c7e5879cb fixed unresponsive events in cluster shards view (#3358) 2017-10-13 13:58:19 +02:00
Heiko b3bceea33a UI - added word wrapping to query editor (#3378) 2017-10-13 13:57:11 +02:00
Wilfried Goesgens 056195ff64 new autogenerated examples (#3414) 2017-10-13 12:55:54 +02:00
Heiko 41b9f1e146 Bug fix/issue 3228 devel - fixed wrong validation of name user property (#3391)
* UI - added user roles

* some code changes, added missing picture

* fixed issue #3228
2017-10-13 12:22:35 +02:00
Heiko c2fab4f495 UI - added user roles (#3377)
* UI - added user roles

* some code changes, added missing picture
2017-10-06 11:23:06 +02:00
Heiko fd0d9b97d9 no default index selected during index creation (#3368) 2017-10-04 14:11:16 +02:00
Heiko 3390462cba ui: added replicationFactor option during SmartGraph creation. (#3267) 2017-09-17 22:07:47 +02:00
Kaveh Vahedipour 627f344266 fixed a bug, where when servers failed, when also agency leadership c… (#3189)
* fixed a bug, where when servers failed, when also agency leadership changes

* redid entire design of checkDBServers/checkCoordinators.

* comparison in supervision must be between oldPersisted and newHealth

* UI stuff

* UI stuff

* FailedServer test needed adjustment

* Hopefully final round

* fixed supervision failure detection

* FailedServer tests back to origin devel

* oldNot documented among preconditions in Agency HTTP API docs

* changed only look for status updated

* non action line in api-cluster
2017-09-07 16:10:23 +02:00