[
https://issues.apache.org/jira/browse/COUCHDB-430?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13258153#comment-13258153
]
Caleb Case commented on COUCHDB-430:
------------------------------------
https://github.com/apache/couchdb/pull/18#issuecomment-5167025
> respondWith() called after getRow() does not set "Content-Type" response
> ------------------------------------------------------------------------
>
> Key: COUCHDB-430
> URL: https://issues.apache.org/jira/browse/COUCHDB-430
> Project: CouchDB
> Issue Type: Bug
> Components: JavaScript View Server
> Affects Versions: 0.10
> Environment: {"couchdb":"Welcome","version":"0.10.0a796218"}
> Linux
> Reporter: Rune S. Larsen
> Assignee: Chris Anderson
> Priority: Minor
>
> After calling getRow() once, the response header are locked and cannot be
> changed by respondWith.
> getRow() should be side-effect free and Sending shouldn't start before
> calling send();
> Example, where respondWith() cannot set "Content-Type" response header
> according to "Accept" request header:
> function(head, req){
> var row = getRow();
> respondWith(req,
> {
> json : function() {
> send("{'json'}");
> },
> xml : function() {
> send('<?xml version="1.0" encoding="UTF-8"?>');
> }
> });
> }
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira