Update: this has been applied in CouchDB as of applied in r939443.
Here is the bit you add to jquery.couch.js in the couchdb/www/script directory. I added it right between the query function and the view function. Here is the entire modified jquery.couch.js if you just want to download it and use it without having to edit it yourself.
list: function(list, view, options)
{
var list = list.split(‘/’);
var options = options || {};
var type = ‘GET’;
var data = null;
if (options['keys'])
{
type = ‘POST’;
var keys = options['keys'];
delete options['keys'];
data = toJSON({‘keys’: keys });
}
ajax({
type: type,
data: data,
url: this.uri + ‘_design/’ + list[0] + ‘/_list/’ + list[1] + ‘/’ + view + encodeOptions(options)
}, options, ‘An error occured accessing the list’);
},
{
var list = list.split(‘/’);
var options = options || {};
var type = ‘GET’;
var data = null;
if (options['keys'])
{
type = ‘POST’;
var keys = options['keys'];
delete options['keys'];
data = toJSON({‘keys’: keys });
}
ajax({
type: type,
data: data,
url: this.uri + ‘_design/’ + list[0] + ‘/_list/’ + list[1] + ‘/’ + view + encodeOptions(options)
}, options, ‘An error occured accessing the list’);
},
UPDATE: this has also been added in couchapp/couchapp on GitHub.
then inside vendor/couchapp/_attachments/jquery.couch.app.js make the Design object look like this
function Design(db, name)
{
this.doc_id = "_design/" + name;
this.view = function(view, opts)
{
db.view(name + ‘/’ + view, opts);
};
this.list = function(list, view, opts)
{
db.list(name + ‘/’ + list, view, opts);
}
}
{
this.doc_id = "_design/" + name;
this.view = function(view, opts)
{
db.view(name + ‘/’ + view, opts);
};
this.list = function(list, view, opts)
{
db.list(name + ‘/’ + list, view, opts);
}
}
and then make the appExports entry in jquery.couch.app.js look like this
var appExports = $.extend({
db : db,
design : design,
view : design.view,
list : design.list,
docForm : docForm,
req : mockReq
}, $.couch.app.app);
db : db,
design : design,
view : design.view,
list : design.list,
docForm : docForm,
req : mockReq
}, $.couch.app.app);