summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Branca <chewbranca@gmail.com>2013-02-08 13:29:02 -0800
committerRussell Branca <chewbranca@gmail.com>2013-02-08 13:29:02 -0800
commit04018d243540ae71b703191e5125818506cf2dd0 (patch)
treed47f475c4ac6623141b4dc05df70c04ce6710a82
parent7f88a2afedb27555b7e92aae1be2d4163bca0393 (diff)
downloadcouchdb-04018d243540ae71b703191e5125818506cf2dd0.tar.gz
Adding PouchDB file blurbs
-rw-r--r--src/fauxton/app/modules/pouchdb/base.js8
-rw-r--r--src/fauxton/app/modules/pouchdb/pouch.collate.js9
-rw-r--r--src/fauxton/app/modules/pouchdb/pouchdb.mapreduce.js9
3 files changed, 26 insertions, 0 deletions
diff --git a/src/fauxton/app/modules/pouchdb/base.js b/src/fauxton/app/modules/pouchdb/base.js
index abc37937c..2b7cfc927 100644
--- a/src/fauxton/app/modules/pouchdb/base.js
+++ b/src/fauxton/app/modules/pouchdb/base.js
@@ -10,6 +10,14 @@
// License for the specific language governing permissions and limitations under
// the License.
+
+/*
+ * NOTE:
+ * This temporarily uses the PouchDB map reduce implementation
+ * These files are modified locally until we make a more general version and
+ * push it back upstream.
+ */
+
define([
"app",
diff --git a/src/fauxton/app/modules/pouchdb/pouch.collate.js b/src/fauxton/app/modules/pouchdb/pouch.collate.js
index f930b2780..7cc5f9cfe 100644
--- a/src/fauxton/app/modules/pouchdb/pouch.collate.js
+++ b/src/fauxton/app/modules/pouchdb/pouch.collate.js
@@ -1,4 +1,13 @@
/*
+ * NOTE:
+ * This temporarily uses the PouchDB map reduce implementation
+ * These files are modified locally until we make a more general version and
+ * push it back upstream.
+ * Original file:
+ * https://github.com/daleharvey/pouchdb/blob/master/src/pouch.collate.js
+ */
+
+/*
(function() {
// a few hacks to get things in the right place for node.js
if (typeof module !== 'undefined' && module.exports) {
diff --git a/src/fauxton/app/modules/pouchdb/pouchdb.mapreduce.js b/src/fauxton/app/modules/pouchdb/pouchdb.mapreduce.js
index a1a47b4d7..b97eb7fc3 100644
--- a/src/fauxton/app/modules/pouchdb/pouchdb.mapreduce.js
+++ b/src/fauxton/app/modules/pouchdb/pouchdb.mapreduce.js
@@ -1,3 +1,12 @@
+/*
+ * NOTE:
+ * This temporarily uses the PouchDB map reduce implementation
+ * These files are modified locally until we make a more general version and
+ * push it back upstream.
+ * Original file:
+ * https://github.com/daleharvey/pouchdb/blob/master/src/plugins/pouchdb.mapreduce.js
+ */
+
/*global Pouch: true */
//"use strict";