[
https://issues.apache.org/jira/browse/COUCHDB-430?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Dave Cottlehuber updated COUCHDB-430:
-------------------------------------
Attachment: 20121106_github_pr_18.diff
Here's the diff from Caleb off https://github.com/apache/couchdb/pull/18 he's
put the work in to bring this up to spec for 1.3.
Pretty view: https://github.com/apache/couchdb/pull/18/files
+1 from me, can I get another OK before pushing this?
I assume this needs a branch 430-fix_getrow_response or similar.
> 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: Dave Cottlehuber
> Priority: Minor
> Fix For: 1.3
>
> Attachments: 20121106_github_pr_18.diff
>
>
> 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
For more information on JIRA, see: http://www.atlassian.com/software/jira