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/09/16 18:51:32 UTC

[2/2] chttpd commit: updated refs/heads/master to 61f432b

Add CORS headers to chttpd_external:send_external_response

COUCHDB-2328


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

Branch: refs/heads/master
Commit: 61f432bb4b52a9055ac86c8a18644711b2d742a9
Parents: c3100e4
Author: Russell Branca <ch...@apache.org>
Authored: Wed Sep 10 15:20:40 2014 -0700
Committer: Russell Branca <ch...@apache.org>
Committed: Tue Sep 16 09:51:20 2014 -0700

----------------------------------------------------------------------
 src/chttpd_external.erl | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/blob/61f432bb/src/chttpd_external.erl
----------------------------------------------------------------------
diff --git a/src/chttpd_external.erl b/src/chttpd_external.erl
index d77690d..38932d1 100644
--- a/src/chttpd_external.erl
+++ b/src/chttpd_external.erl
@@ -124,11 +124,12 @@ send_external_response(Req, Response) ->
         json = Json
     } = parse_external_response(Response),
     Headers1 = default_or_content_type(CType, Headers),
+    Headers2 = chttpd_cors:headers(Req, Headers1),
     case Json of
     nil ->
-        chttpd:send_response(Req, Code, Headers1, Data);
+        chttpd:send_response(Req, Code, Headers2, Data);
     Json ->
-        chttpd:send_json(Req, Code, Headers1, Json)
+        chttpd:send_json(Req, Code, Headers2, Json)
     end.
 
 parse_external_response({Response}) ->