You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ch...@apache.org on 2014/03/27 21:52:42 UTC

couch-mrview commit: updated refs/heads/1993-bigcouch-couch-mrview to 83d362f

Repository: couchdb-couch-mrview
Updated Branches:
  refs/heads/1993-bigcouch-couch-mrview 70573f20f -> 83d362f5a


Move lacc record in couch_mrview.hrl for use in chttpd_show


Project: http://git-wip-us.apache.org/repos/asf/couchdb-couch-mrview/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-couch-mrview/commit/83d362f5
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch-mrview/tree/83d362f5
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch-mrview/diff/83d362f5

Branch: refs/heads/1993-bigcouch-couch-mrview
Commit: 83d362f5a23e6da7eab38f7f5f068bd348fe684b
Parents: 70573f2
Author: Russell Branca <ch...@gmail.com>
Authored: Thu Mar 27 12:02:10 2014 -0700
Committer: Russell Branca <ch...@gmail.com>
Committed: Thu Mar 27 12:02:10 2014 -0700

----------------------------------------------------------------------
 include/couch_mrview.hrl  | 11 +++++++++++
 src/couch_mrview_show.erl | 11 -----------
 2 files changed, 11 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-couch-mrview/blob/83d362f5/include/couch_mrview.hrl
----------------------------------------------------------------------
diff --git a/include/couch_mrview.hrl b/include/couch_mrview.hrl
index b279d8c..40bb257 100644
--- a/include/couch_mrview.hrl
+++ b/include/couch_mrview.hrl
@@ -89,3 +89,14 @@
     etag,
     should_close = false
 }).
+
+-record(lacc, {
+    db,
+    req,
+    resp,
+    qserver,
+    lname,
+    etag,
+    code,
+    headers
+}).

http://git-wip-us.apache.org/repos/asf/couchdb-couch-mrview/blob/83d362f5/src/couch_mrview_show.erl
----------------------------------------------------------------------
diff --git a/src/couch_mrview_show.erl b/src/couch_mrview_show.erl
index 6937467..4591c5d 100644
--- a/src/couch_mrview_show.erl
+++ b/src/couch_mrview_show.erl
@@ -22,17 +22,6 @@
 -include_lib("couch/include/couch_db.hrl").
 -include_lib("couch_mrview/include/couch_mrview.hrl").
 
--record(lacc, {
-    db,
-    req,
-    resp,
-    qserver,
-    lname,
-    etag,
-    code,
-    headers
-}).
-
 % /db/_design/foo/_show/bar/docid
 % show converts a json doc to a response of any content-type.
 % it looks up the doc an then passes it to the query server.