couchdb-glazier git commit: Enable installation to drives other than boot

2016-09-14 Thread wohali
Repository: couchdb-glazier
Updated Branches:
  refs/heads/release/couchdb_2.0 a37eaad43 -> 4a12b87f9


Enable installation to drives other than boot


Project: http://git-wip-us.apache.org/repos/asf/couchdb-glazier/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-glazier/commit/4a12b87f
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-glazier/tree/4a12b87f
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-glazier/diff/4a12b87f

Branch: refs/heads/release/couchdb_2.0
Commit: 4a12b87f9e0e08f6d61e6fa9870e4f95536946a7
Parents: a37eaad
Author: Joan Touzet 
Authored: Wed Sep 14 16:57:07 2016 -0400
Committer: Joan Touzet 
Committed: Wed Sep 14 16:57:30 2016 -0400

--
 installer/couchdb.wxs.in | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/couchdb-glazier/blob/4a12b87f/installer/couchdb.wxs.in
--
diff --git a/installer/couchdb.wxs.in b/installer/couchdb.wxs.in
index e5ebb94..7ea891c 100644
--- a/installer/couchdb.wxs.in
+++ b/installer/couchdb.wxs.in
@@ -27,11 +27,10 @@
EmbedCab="yes" />
 

-
+

-   
+   






couchdb-glazier git commit: Enable installation to drives other than boot

2016-09-14 Thread wohali
Repository: couchdb-glazier
Updated Branches:
  refs/heads/master 7f0e8f8d3 -> 292c64739


Enable installation to drives other than boot


Project: http://git-wip-us.apache.org/repos/asf/couchdb-glazier/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-glazier/commit/292c6473
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-glazier/tree/292c6473
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-glazier/diff/292c6473

Branch: refs/heads/master
Commit: 292c64739e56f2da9c990a7d8dd287cb5b54dc9e
Parents: 7f0e8f8
Author: Joan Touzet 
Authored: Wed Sep 14 16:57:07 2016 -0400
Committer: Joan Touzet 
Committed: Wed Sep 14 16:57:07 2016 -0400

--
 installer/couchdb.wxs.in | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/couchdb-glazier/blob/292c6473/installer/couchdb.wxs.in
--
diff --git a/installer/couchdb.wxs.in b/installer/couchdb.wxs.in
index e5ebb94..7ea891c 100644
--- a/installer/couchdb.wxs.in
+++ b/installer/couchdb.wxs.in
@@ -27,11 +27,10 @@
EmbedCab="yes" />
 

-
+

-   
+   






fauxton commit: updated refs/heads/master to 26adff3

2016-09-14 Thread robertkowalski
Repository: couchdb-fauxton
Updated Branches:
  refs/heads/master a3605ee84 -> 26adff3b0


backbone: delete dead code

PR: #773
PR-URL: https://github.com/apache/couchdb-fauxton/pull/773
Reviewed-By: garren smith 


Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/26adff3b
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/26adff3b
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/26adff3b

Branch: refs/heads/master
Commit: 26adff3b033513177121918a25747699bc694e3c
Parents: a3605ee
Author: Robert Kowalski 
Authored: Wed Sep 14 11:47:19 2016 +0200
Committer: Robert Kowalski 
Committed: Wed Sep 14 17:12:07 2016 +0200

--
 app/addons/fauxton/components.js | 49 ---
 app/constants.js |  3 +--
 2 files changed, 1 insertion(+), 51 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/26adff3b/app/addons/fauxton/components.js
--
diff --git a/app/addons/fauxton/components.js b/app/addons/fauxton/components.js
index 540f508..37845cb 100644
--- a/app/addons/fauxton/components.js
+++ b/app/addons/fauxton/components.js
@@ -228,55 +228,6 @@ Components.Tray = FauxtonAPI.View.extend({
 });
 
 
-Components.ModalView = FauxtonAPI.View.extend({
-  disableLoader: true,
-
-  initialize: function (options) {
-_.bindAll(this);
-  },
-
-  afterRender: function () {
-var that = this;
-this.$('.modal').on('shown', function () {
-  that.$('input:text:visible:first').focus();
-});
-  },
-
-  showModal: function () {
-if (this._showModal) { this._showModal();}
-this.clear_error_msg();
-this.$('.modal').modal();
-
-// hack to get modal visible
-$('.modal-backdrop').css('z-index', 
FauxtonAPI.constants.MISC.MODAL_BACKDROP_Z_INDEX);
-  },
-
-  hideModal: function () {
-this.$('.modal').modal('hide');
-  },
-
-  set_error_msg: function (msg) {
-var text;
-if (typeof(msg) == 'string') {
-  text = msg;
-} else {
-  text = JSON.parse(msg.responseText).reason;
-}
-this.$('#modal-error').text(text).removeClass('hide');
-  },
-
-  clear_error_msg: function () {
-this.$('#modal-error').text(' ').addClass('hide');
-  },
-
-  serialize: function () {
-if (this.model) {
-  return this.model.toJSON();
-}
-return {};
-  }
-});
-
 Components.Typeahead = FauxtonAPI.View.extend({
 
   initialize: function (options) {

http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/26adff3b/app/constants.js
--
diff --git a/app/constants.js b/app/constants.js
index cbda246..a967db4 100644
--- a/app/constants.js
+++ b/app/constants.js
@@ -14,8 +14,7 @@ export default {
 
   MISC: {
 TRAY_TOGGLE_SPEED: 250,
-DEFAULT_PAGE_SIZE: 20,
-MODAL_BACKDROP_Z_INDEX: 1025
+DEFAULT_PAGE_SIZE: 20
   },
 
   DATABASES: {



fauxton commit: updated refs/heads/master to a3605ee

2016-09-14 Thread garren
Repository: couchdb-fauxton
Updated Branches:
  refs/heads/master ed9aa3ced -> a3605ee84


remove sourcemaps in webpack


Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/a3605ee8
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/a3605ee8
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/a3605ee8

Branch: refs/heads/master
Commit: a3605ee84c51ef74df83239ba944fd16ef2a3786
Parents: ed9aa3c
Author: Garren Smith 
Authored: Wed Sep 14 14:47:06 2016 +0200
Committer: Garren Smith 
Committed: Wed Sep 14 14:47:06 2016 +0200

--
 webpack.config.release.js | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/a3605ee8/webpack.config.release.js
--
diff --git a/webpack.config.release.js b/webpack.config.release.js
index 492e053..9956894 100644
--- a/webpack.config.release.js
+++ b/webpack.config.release.js
@@ -93,6 +93,5 @@ module.exports = {
   "underscore": "lodash",
   "bootstrap": "../assets/js/libs/bootstrap",
 }
-  },
-  devtool: 'source-map',
+  }
 };



[1/2] fauxton commit: updated refs/heads/dead-backbone to ec1139d

2016-09-14 Thread robertkowalski
Repository: couchdb-fauxton
Updated Branches:
  refs/heads/dead-backbone [created] ec1139d36


remove spinner

all views except replication are react based now


Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/b9b89827
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/b9b89827
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/b9b89827

Branch: refs/heads/dead-backbone
Commit: b9b8982780e2011779f0e36f1e3f887f2157a8b4
Parents: ed9aa3c
Author: Robert Kowalski 
Authored: Wed Sep 14 11:34:59 2016 +0200
Committer: Robert Kowalski 
Committed: Wed Sep 14 11:34:59 2016 +0200

--
 app/addons/activetasks/routes.js|  1 -
 app/addons/auth/routes.js   |  1 -
 app/addons/databases/routes.js  |  1 -
 app/addons/documentation/routes.js  |  1 -
 app/addons/documents/routes-doc-editor.js   |  2 -
 app/addons/documents/routes-mango.js|  2 -
 .../documents/tests/nightwatch/viewEdit.js  |  7 --
 app/addons/fauxton/components.js| 83 
 app/core/base.js|  1 -
 app/core/routeObject.js |  1 -
 assets/less/fauxton.less|  6 --
 11 files changed, 106 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/b9b89827/app/addons/activetasks/routes.js
--
diff --git a/app/addons/activetasks/routes.js b/app/addons/activetasks/routes.js
index cee53e3..e81dab2 100644
--- a/app/addons/activetasks/routes.js
+++ b/app/addons/activetasks/routes.js
@@ -19,7 +19,6 @@ import Actions from "./actions";
 var ActiveTasksRouteObject = FauxtonAPI.RouteObject.extend({
   selectedHeader: 'Active Tasks',
   layout: 'one_pane',
-  disableLoader: true,
   routes: {
 'activetasks/:id': 'showActiveTasks',
 'activetasks': 'showActiveTasks'

http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/b9b89827/app/addons/auth/routes.js
--
diff --git a/app/addons/auth/routes.js b/app/addons/auth/routes.js
index 2e42f4b..b0e41d5 100644
--- a/app/addons/auth/routes.js
+++ b/app/addons/auth/routes.js
@@ -27,7 +27,6 @@ var AuthRouteObject = FauxtonAPI.RouteObject.extend({
 'createAdmin': 'checkNodes',
 'createAdmin/:node': 'createAdminForNode'
   },
-  disableLoader: true,
   hideNotificationCenter: true,
 
   checkNodes: function () {

http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/b9b89827/app/addons/databases/routes.js
--
diff --git a/app/addons/databases/routes.js b/app/addons/databases/routes.js
index 00e8b28..6fa5722 100644
--- a/app/addons/databases/routes.js
+++ b/app/addons/databases/routes.js
@@ -32,7 +32,6 @@ var AllDbsRouteObject = FauxtonAPI.RouteObject.extend({
   roles: ['fx_loggedIn'],
 
   selectedHeader: "Databases",
-  disableLoader: true,
 
   initialize: function () {
 this.databases = new Databases.List();

http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/b9b89827/app/addons/documentation/routes.js
--
diff --git a/app/addons/documentation/routes.js 
b/app/addons/documentation/routes.js
index c253645..5205164 100644
--- a/app/addons/documentation/routes.js
+++ b/app/addons/documentation/routes.js
@@ -17,7 +17,6 @@ import DocumentationComponents from "./components.react";
 var DocumentationRouteObject = FauxtonAPI.RouteObject.extend({
   selectedHeader: 'Documentation',
   layout: 'one_pane',
-  disableLoader: false,
   routes: {
 'documentation': 'documentation'
   },

http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/b9b89827/app/addons/documents/routes-doc-editor.js
--
diff --git a/app/addons/documents/routes-doc-editor.js 
b/app/addons/documents/routes-doc-editor.js
index 828ec63..718fd9a 100644
--- a/app/addons/documents/routes-doc-editor.js
+++ b/app/addons/documents/routes-doc-editor.js
@@ -23,7 +23,6 @@ import RevBrowserComponents from 
"./rev-browser/rev-browser.components.react";
 
 const RevBrowserRouteObject = FauxtonAPI.RouteObject.extend({
   layout: 'doc_editor',
-  disableLoader: true,
   selectedHeader: 'Databases',
   roles: ['fx_loggedIn'],
 
@@ -63,7 +62,6 @@ const RevBrowserRouteObject = FauxtonAPI.RouteObject.extend({
 
 const DocEditorRouteObject = FauxtonAPI.RouteObject.extend({
   layout: 'doc_editor',
-  disableLoader: true,
   selectedHeader: 'Databases',
 
   roles: ['fx_loggedIn'],


[2/2] fauxton commit: updated refs/heads/dead-backbone to ec1139d

2016-09-14 Thread robertkowalski
remove spin.js lib


Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/ec1139d3
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/ec1139d3
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/ec1139d3

Branch: refs/heads/dead-backbone
Commit: ec1139d36efa80c525012748e6407873d2de7904
Parents: b9b8982
Author: Robert Kowalski 
Authored: Wed Sep 14 11:35:12 2016 +0200
Committer: Robert Kowalski 
Committed: Wed Sep 14 11:35:12 2016 +0200

--
 assets/js/libs/spin.min.js | 1 -
 1 file changed, 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/ec1139d3/assets/js/libs/spin.min.js
--
diff --git a/assets/js/libs/spin.min.js b/assets/js/libs/spin.min.js
deleted file mode 100644
index 9e61502..000
--- a/assets/js/libs/spin.min.js
+++ /dev/null
@@ -1 +0,0 @@
-(function(a,b,c){function 
O(a){H(arguments,function(b,d){a[b]===c&&(a[b]=d)});return a}function 
N(a){H(arguments,function(b,c){a[m][M(a,b)||b]=c});return a}function M(a,b){var 
d=a[m],f,g;if(d[b]!==c){return 
b}b=b.charAt(0).toUpperCase()+b.slice(1);for(g=0;g