mirror of https://gitee.com/bigwinds/arangodb
some cleanup
This commit is contained in:
parent
d3ff754352
commit
52e897f3e2
|
@ -235,6 +235,10 @@ v2.3.0-beta (2014-11-01)
|
||||||
v2.2.7 (XXXX-XX-XX)
|
v2.2.7 (XXXX-XX-XX)
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
|
* fixed issue #998: Incorrect application URL for non-system Foxx apps
|
||||||
|
|
||||||
|
* fixed issue #1079: AQL editor: keyword WITH in UPDATE query is not highlighted
|
||||||
|
|
||||||
* fix memory leak in cluster nodes
|
* fix memory leak in cluster nodes
|
||||||
|
|
||||||
* fixed registration of AQL user-defined functions in Web UI (JS shell)
|
* fixed registration of AQL user-defined functions in Web UI (JS shell)
|
||||||
|
|
|
@ -171,7 +171,7 @@
|
||||||
$.ajax({
|
$.ajax({
|
||||||
type: "GET",
|
type: "GET",
|
||||||
cache: false,
|
cache: false,
|
||||||
url: "/_db/"+encodeURIComponent(currentDB)+"/_api/database/",
|
url: "/_db/"+ encodeURIComponent(currentDB) + "/_api/database/",
|
||||||
contentType: "application/json",
|
contentType: "application/json",
|
||||||
processData: false,
|
processData: false,
|
||||||
async: false,
|
async: false,
|
||||||
|
|
|
@ -69,7 +69,7 @@ window.ApplicationsView = Backbone.View.extend({
|
||||||
'github-version',
|
'github-version',
|
||||||
'Version (optional)',
|
'Version (optional)',
|
||||||
'',
|
'',
|
||||||
'Example: v1.1.2 for Version 1.1.2 - if no version is commited, master is used',
|
'Example: v1.1.2 for version 1.1.2 - if no version is commited, master is used',
|
||||||
'master',
|
'master',
|
||||||
false,
|
false,
|
||||||
/[<>&'"]/
|
/[<>&'"]/
|
||||||
|
|
Loading…
Reference in New Issue