summaryrefslogtreecommitdiff
path: root/src/couchdb/couch_query_servers.erl
diff options
context:
space:
mode:
authorJohn Christopher Anderson <jchris@apache.org>2009-01-12 01:48:36 +0000
committerJohn Christopher Anderson <jchris@apache.org>2009-01-12 01:48:36 +0000
commitf5e38acc625d4bb73934e121a9d6abb75e507460 (patch)
tree41e03518ee8bfa43c1226629d265ae66299ab444 /src/couchdb/couch_query_servers.erl
parent2417e37a68178c3212c9374d73bea5a2522ab418 (diff)
rename _form to _show and move the funcs in the design doc to design.show.docs
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@733576 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/couchdb/couch_query_servers.erl')
-rw-r--r--src/couchdb/couch_query_servers.erl7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/couchdb/couch_query_servers.erl b/src/couchdb/couch_query_servers.erl
index c4ed5c8b..8d473381 100644
--- a/src/couchdb/couch_query_servers.erl
+++ b/src/couchdb/couch_query_servers.erl
@@ -17,7 +17,7 @@
-export([init/1, terminate/2, handle_call/3, handle_cast/2, handle_info/2,code_change/3,stop/0]).
-export([start_doc_map/2, map_docs/2, stop_doc_map/1]).
--export([reduce/3, rereduce/3,validate_doc_update/5,render_doc_form/5]).
+-export([reduce/3, rereduce/3,validate_doc_update/5,render_doc_show/5]).
% -export([test/0]).
-include("couch_db.hrl").
@@ -122,11 +122,12 @@ validate_doc_update(Lang, FunSrc, EditDoc, DiskDoc, Ctx) ->
ok = ret_os_process(Lang, Pid)
end.
-render_doc_form(Lang, FormSrc, Doc, Req, Db) ->
+render_doc_show(Lang, ShowSrc, Doc, Req, Db) ->
Pid = get_os_process(Lang),
JsonDoc = couch_doc:to_json_obj(Doc, [revs]),
JsonReq = couch_httpd_external:json_req_obj(Req, Db),
- try couch_os_process:prompt(Pid, [<<"form">>, FormSrc, JsonDoc, JsonReq]) of
+ try couch_os_process:prompt(Pid,
+ [<<"show_doc">>, ShowSrc, JsonDoc, JsonReq]) of
FormResp ->
FormResp
after