mirror of https://gitee.com/bigwinds/arangodb
frontend grunt build
This commit is contained in:
parent
45d153ca91
commit
3ae8eed4cb
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
|
@ -7697,7 +7697,7 @@ var lessons = [
|
|||
},
|
||||
{
|
||||
title: "Creating Documents",
|
||||
text: "Now we have a collection, but it is still empty. So let's create some documents!\n\n" +
|
||||
text: "Now we have a collection, but it is empty. So let's create some documents!\n\n" +
|
||||
" db.places.save({ _key : \"foo\", city : \"foo-city\" });\n" +
|
||||
" for (i = 0; i <= 10; i++) { db.places.save({ _key: \"example\" + i, zipcode: i }) };"
|
||||
},
|
||||
|
@ -21639,7 +21639,7 @@ global.aqlQuery = function () {
|
|||
for (i = 1; i < arguments.length; i++) {
|
||||
value = arguments[i];
|
||||
name = 'value' + (i - 1);
|
||||
if (value.constructor && value.constructor.name === 'ArangoCollection') {
|
||||
if (value && value.constructor && value.constructor.name === 'ArangoCollection') {
|
||||
name = '@' + name;
|
||||
value = value.name();
|
||||
}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
<script src="sharedLibs.js?version=1446219679364"></script>
|
||||
<script src="libs.js?version=1446219679364"></script>
|
||||
<script src="app.js?version=1446219679364"></script>
|
||||
<script src="sharedLibs.js?version=1446837686877"></script>
|
||||
<script src="libs.js?version=1446837686877"></script>
|
||||
<script src="app.js?version=1446837686877"></script>
|
||||
|
|
|
@ -2290,6 +2290,10 @@ if (list.length > 0) {
|
|||
</div>
|
||||
|
||||
<div id="aqlEditor" class='aql-editor'></div>
|
||||
<div id="varsEditorHeader" class='vars-editor-header'>Bind parameters:
|
||||
<i title='Example: </br> { </br>"@collection": "mycollection", </br>"key": "testkey"</br> } </br> Use bind parameters with @@collection and @key in your query' class="fa fa-info-circle"></i>
|
||||
</div>
|
||||
<div id="varsEditor" class='vars-editor'></div>
|
||||
|
||||
|
||||
<div id="wideButtonDiv" class="wide-button-div">
|
||||
|
@ -2612,4 +2616,4 @@ var cutByResolution = function (str) {
|
|||
<% }); %>
|
||||
</ul>
|
||||
</div>
|
||||
<% } %></script></head><body><nav class="navbar"><div class="resizecontainer"><div class="navlogo"><a class="logo" href="#"><img class="arangodbLogo" src="img/arangodb_logo_small.png"></a></div><div id="progressPlaceholderIcon"></div><div class="statmenu" id="statisticBar"></div><div class="usermenu" id="userBar" style="float:right"></div><div class="notificationmenu" id="notificationBar" style="float:right"></div><div class="navmenu" id="navigationBar"></div></div></nav><div class="centralRow resizecontainer"><div id="content" class="centralContent"></div></div><div id="modalPlaceholder"></div><div id="progressPlaceholder" style="display:none"></div><footer class="footer"><div class="resizecontainer" id="footerBar"></div></footer><script src="sharedLibs.js?version=1446219679364"></script><script src="libs.js?version=1446219679364"></script><script src="app.js?version=1446219679364"></script></body></html>
|
||||
<% } %></script></head><body><nav class="navbar"><div class="resizecontainer"><div class="navlogo"><a class="logo" href="#"><img class="arangodbLogo" src="img/arangodb_logo_small.png"></a></div><div id="progressPlaceholderIcon"></div><div class="statmenu" id="statisticBar"></div><div class="usermenu" id="userBar" style="float:right"></div><div class="notificationmenu" id="notificationBar" style="float:right"></div><div class="navmenu" id="navigationBar"></div></div></nav><div class="centralRow resizecontainer"><div id="content" class="centralContent"></div></div><div id="modalPlaceholder"></div><div id="progressPlaceholder" style="display:none"></div><footer class="footer"><div class="resizecontainer" id="footerBar"></div></footer><script src="sharedLibs.js?version=1446837686877"></script><script src="libs.js?version=1446837686877"></script><script src="app.js?version=1446837686877"></script></body></html>
|
Binary file not shown.
|
@ -2467,6 +2467,10 @@ if (list.length > 0) {
|
|||
</div>
|
||||
|
||||
<div id="aqlEditor" class='aql-editor'></div>
|
||||
<div id="varsEditorHeader" class='vars-editor-header'>Bind parameters:
|
||||
<i title='Example: </br> { </br>"@collection": "mycollection", </br>"key": "testkey"</br> } </br> Use bind parameters with @@collection and @key in your query' class="fa fa-info-circle"></i>
|
||||
</div>
|
||||
<div id="varsEditor" class='vars-editor'></div>
|
||||
|
||||
|
||||
<div id="wideButtonDiv" class="wide-button-div">
|
||||
|
@ -2859,9 +2863,9 @@ var cutByResolution = function (str) {
|
|||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="sharedLibs.js?version=1446219679364"></script>
|
||||
<script src="libs.js?version=1446219679364"></script>
|
||||
<script src="app.js?version=1446219679364"></script>
|
||||
<script src="sharedLibs.js?version=1446837686877"></script>
|
||||
<script src="libs.js?version=1446837686877"></script>
|
||||
<script src="app.js?version=1446837686877"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
File diff suppressed because one or more lines are too long
Binary file not shown.
|
@ -6199,7 +6199,25 @@ toolbar {
|
|||
.queryMethods button a {
|
||||
color: #fff; }
|
||||
|
||||
.aql-editor {
|
||||
.vars-editor-header {
|
||||
border-top: 1px solid rgba(140, 138, 137, 0.25);
|
||||
margin-top: -5px;
|
||||
padding-left: 5px; }
|
||||
.vars-editor-header i {
|
||||
border-radius: 2px;
|
||||
color: #666;
|
||||
height: 15px;
|
||||
margin-left: 5px;
|
||||
padding-left: 3px;
|
||||
padding-top: 1px;
|
||||
width: 15px; }
|
||||
.vars-editor-header i:hover {
|
||||
background-color: #8aa051;
|
||||
color: #fff;
|
||||
cursor: pointer; }
|
||||
|
||||
.aql-editor,
|
||||
.vars-editor {
|
||||
border-color: #a0a0a0;
|
||||
border-left: 0 !important;
|
||||
border-top: 1px solid rgba(140, 138, 137, 0.25) !important;
|
||||
|
@ -6209,7 +6227,9 @@ toolbar {
|
|||
min-width: 99.8%;
|
||||
width: auto; }
|
||||
.aql-editor .ace_error,
|
||||
.aql-editor .ace_info {
|
||||
.aql-editor .ace_info,
|
||||
.vars-editor .ace_error,
|
||||
.vars-editor .ace_info {
|
||||
background: none; }
|
||||
|
||||
.queryTH {
|
||||
|
@ -6424,7 +6444,8 @@ toolbar {
|
|||
position: relative;
|
||||
top: 0;
|
||||
width: 25px; }
|
||||
.editor-toolbar span:hover {
|
||||
.editor-toolbar span:hover,
|
||||
.editor-toolbar .vars-editor-header i {
|
||||
background-color: #8aa051;
|
||||
color: #fff; }
|
||||
.editor-toolbar i {
|
||||
|
@ -6433,11 +6454,13 @@ toolbar {
|
|||
.editor-toolbar i:hover {
|
||||
cursor: pointer; }
|
||||
.editor-toolbar .fa {
|
||||
color: #666;
|
||||
margin-left: 1px;
|
||||
margin-top: 2px; }
|
||||
.editor-toolbar .fa.fa-upload {
|
||||
margin-top: 1px; }
|
||||
.editor-toolbar .icon_arangodb {
|
||||
color: #666;
|
||||
font-size: 14pt; }
|
||||
.editor-toolbar .icon_arangodb:first-child {
|
||||
margin-right: 10px; }
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue