mirror of https://gitee.com/bigwinds/arangodb
Merge branch 'devel' of https://github.com/arangodb/arangodb into aql-jmmh-conditions
This commit is contained in:
commit
1f8b5e54af
|
@ -103,6 +103,12 @@ v2.7.0-rc2 (2015-09-22)
|
|||
v2.7.0-rc1 (2015-09-17)
|
||||
-----------------------
|
||||
|
||||
* removed undocumented server-side-only collection functions:
|
||||
* collection.OFFSET()
|
||||
* collection.NTH()
|
||||
* collection.NTH2()
|
||||
* collection.NTH3()
|
||||
|
||||
* upgraded Swagger to version 2.0 for the Documentation
|
||||
|
||||
This gives the user better prepared test request structures.
|
||||
|
|
|
@ -106,7 +106,9 @@ function GharialAdapter(nodes, edges, viewer, config) {
|
|||
direction = "outbound";
|
||||
}
|
||||
} else {
|
||||
direction = "outbound";
|
||||
// currently there is a bug with outbound-direction graphs.
|
||||
// any should be default at the moment
|
||||
direction = "any";
|
||||
}
|
||||
|
||||
api.base = arangodb + "_api/";
|
||||
|
|
|
@ -54,11 +54,12 @@ function GharialAdapterControls(list, adapter) {
|
|||
text: "Start with random vertex",
|
||||
id: "random",
|
||||
selected: true
|
||||
},{
|
||||
},//currently disabled outbound only view
|
||||
/*{
|
||||
type: "checkbox",
|
||||
id: "undirected",
|
||||
selected: (adapter.getDirection() === "any")
|
||||
}], function () {
|
||||
}*/], function () {
|
||||
var graph = $("#" + idprefix + "graph")
|
||||
.children("option")
|
||||
.filter(":selected")
|
||||
|
|
|
@ -494,8 +494,10 @@ function GraphViewerUI(container, adapterConfig, optWidth, optHeight, viewerConf
|
|||
//create select option box
|
||||
var optionBox = '<li class="enabled" style="float:right">'+
|
||||
'<select id="graphSize" class="documents-size">'+
|
||||
'<optgroup label="Starting points:">'+
|
||||
'<option value="5" selected="">5 vertices</option>'+
|
||||
'<option value="10">10 vertices</option>'+
|
||||
'<option value="20" selected="">20 vertices</option>'+
|
||||
'<option value="20">20 vertices</option>'+
|
||||
'<option value="50">50 vertices</option>'+
|
||||
'<option value="100">100 vertices</option>'+
|
||||
'<option value="500">500 vertices</option>'+
|
||||
|
@ -504,6 +506,7 @@ function GraphViewerUI(container, adapterConfig, optWidth, optHeight, viewerConf
|
|||
'<option value="5000">5000 vertices</option>'+
|
||||
'<option value="all">All vertices</option>'+
|
||||
'</select>'+
|
||||
'</optgroup>'+
|
||||
'</li>';
|
||||
$('.headerBar .headerButtonList').prepend(optionBox);
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue