CouchApps are JavaScript and HTML5 applications served directly from CouchDB.
0
votes
1answer
11 views
How to get a couchapp to serve a file with no extension (implied .html)
I have couchapp that is working fine.
This works: http://domain.com/file.html
This does not: http://domain.com/file
I want it to understand that if there is no extension, it should try the ...
0
votes
0answers
23 views
Error while saving a lot of data to CouchDB
I am using couchapp with CouchDB to store information about connections between nodes. I am trying to save an array of json data. If the number of items in the array is less than 2000, everything ...
1
vote
2answers
54 views
CouchDB-Lucene index function doesn't work with external code
I'm using CouchDB-Lucene for retrieving data from some of my tables in my database. The thing is that I have to parse that data to know which ones I want to put in my lucene index.
So, I thought that ...
0
votes
1answer
22 views
Formatting couchdb-lucene results with a couchdb list
Situation...
I have a simple couchapp that lists out emails that are stored in the couch database, these emails are queried with a simple view and then piped through a list to give me a pretty table ...
0
votes
1answer
24 views
Why can't my couchapp generate new application?
I installed couchapp using
$ env ARCHFLAGS="-arch i386 -arch x86_64" sudo pip install couchapp
and there were no errors. But then if I want to create an application,
$ couchapp generate ...
-1
votes
1answer
41 views
nodejs couchapp does not link css file
I have made a couchdb design document which works perfectly on the following url
http://localhost:5984/db/_design/app/index.html
Now the problem is i am trying to fetch the page contents and display ...
1
vote
0answers
20 views
couchcocoa callbacks
I am trying to listen for changes of certain data sets in couchdb which need's to get callbacked if any _changes have been made to those documents. Is there anyway in couchcocoa as of today that does ...
0
votes
1answer
26 views
couchdb session and IE8
I am writing a couchapp, which uses the couch.jquery.js library.
When I login to the site with ie8, i get a successful login (it returns ok, and a login id), but when I query the session, I get a ...
0
votes
0answers
23 views
couchDB: download results of list query as attachment
I have a list that produces a csv file. Querying that is simple, and if it is queryied from a link, it downloads the response as an attachment (provided the correct headers are sent).
However, I need ...
0
votes
1answer
19 views
Duplicate several json documents between _attachments and _design doc
I have a bunch of json-schema documents in my _design doc which are used for validation in validate_doc_update.
For my api, I also want to make these documents available to clients as attachments to ...
0
votes
1answer
24 views
Where to put custom validation function inside CouchApp folder structure?
Where in CouchApp folder structure should I put validation function that it will be properly pushed with couchapp push command?
1
vote
3answers
115 views
what are the possibilities for CouchApp frameworks today?
I'm using CouchDB as event log and I want to build simple UI on top of it so I could query the event more easily.
I can either use raw HTTP calls and build the views manually or I can use CouchApp ...
1
vote
0answers
59 views
get init issue after extending couchdb with geocouch on ubuntu
The env is ubuntu 12.10. the src version are apache-couchdb-1.2.1 and
geocouch-couchdb1.2.x,
first try i just put both to the Download folder, but when i execute make in
geocouch folder then got ...
0
votes
0answers
42 views
Couchdb posting mutipart form to _update
I am trying to upload an attachment with the _update handler and am getting error 500 when I post a multipart form.
/db/_design/edit/_show/page/attach/index 500
[error] [<0.24306.0>] httpd 500 ...
0
votes
1answer
159 views
Upload attachments to CouchDB with Nginx as a reverse proxy [closed]
I'm trying to upload attachments to CouchDB using the following markup:
<form method="post" action="/api/my-document-id" enctype="multipart/form-data">
<input name="_rev" ...
0
votes
1answer
84 views
couchDB designDoc development workflow and version control
For development, I want to keep the various components (views, lists, shows) that make up a couchDB design document as separate files alongside my other development code in a dir called couchDB for ...
0
votes
0answers
50 views
Couchapp Read/Write permissions for anonymous users
I am trying to build a conference registration system as a pure Couchapp (pure meaning no additional tier like Node.js or Rails). You don't have to login for registration and you can simply post a ...
0
votes
0answers
41 views
multiple data of same entity within each document
I am creating a document for a client, where it requires for each particular customer to have multiple timestamp of entry whenever they visit. For example, everytime the customer visits the store, it ...
1
vote
0answers
108 views
Couch DB replication on android device via nodeJs fails
I have set up a couchdb master server , couch db clinet on android tablet and nodeJs for the routing. The tablet is able to get data from master initially without any issue. However when I change the ...
0
votes
1answer
28 views
How to check if the field is unique in CouchDB?
I have a database of documents like that:
{
"_id" : "37686aeb8d65e77665af55e69801a62c",
"ip" : "192.168.1.1",
"mac" : "01:23:45:67:89:ab"
}
And I have a design doc with update handler. ...
0
votes
1answer
35 views
CouchDB: master/detail _view or _list
Is there a way in CouchDB to make a master/detail _view or _list?
From the other hand it looks like _view is only able to render a master and _list is only able to render a list of detail. So the ...
0
votes
1answer
146 views
vhosts configuration not working on couchDb
I am facing a curious problem.I have a couchApp hosted on Iris couch.I purchased a domain name from godaddy and set my CNAME (WWW) to my database address on iris couch.When I type my domain name in ...
0
votes
1answer
169 views
Backbone-couchdb connector error: url property or function must be specified
I just started working with backbone.js and couchdb using a simple 'counter' application to learn the ropes. A version that uses localstorage can be found here: demo fiddle. It is a simple application ...
0
votes
1answer
64 views
SaaS, central database, database per user, or combination?
Problem at hand is as follows:
SaaS to keep maintenance records
95% of data would be specific to each user i.e. no need to be accessed by other users
5% of data shared (and contributed by all ...
1
vote
1answer
35 views
CouchDB: custom error page
Is there a way to customize error pages in CouchDB, particularly in couchapp?
When I try to load URL with undefined/misspelled view
http://localhost:5984/database/_design/app/_view/sample
CouchDB ...
2
votes
1answer
71 views
Intended way to push default data to CouchDB with node.couchapp.js
I have a couchapp that I'm writing, and am using node.couchapp.js ( https://github.com/mikeal/node.couchapp.js ) to push files (attachments, views, etc.) from the filesystem to CouchDB. I would like ...
1
vote
1answer
85 views
How to group entries by year and month using CouchDB?
The view function below is used to emit some entries:
function(doc) {emit(null,{"date":doc.date,"title":doc.title,"txt":doc.txt});}
{"total_rows":7,"offset":0,"rows":[
...
3
votes
1answer
96 views
Couchdb: relational database capabilities
Lets assume that I have a list of 239800 documents like the following:
{
name: somename,
data:{age:someage, income:somevalue, height:someheight, dumplings_consumed:somenumber}
}
I know that I can ...
4
votes
1answer
61 views
List all CouchApps in a CouchDB?
Is there a way to list all CouchApps in one CouchDB?
I would like to do something like:
couchapp list http://domain.tld:5984/content
And get back a list of all couchapp names.
0
votes
1answer
135 views
How To Set A Standalone Attachment Content Type
I've been able to create a standalone attachment, but the content_type ends up as multipart/form-data. What I am I doing wrong? The code is followed by the response from the post and then the request; ...
1
vote
1answer
71 views
Where can i find a list of couchdb apps?
I already know http://www.couchapp.org/page/list-of-couchapps.
I can't find a list of kanso made apps or even reupholster apps and i bet there are more.
Shouldn't there be a site with all the apps ...
4
votes
2answers
135 views
How to use Futon and push a couchapp to a CouchDB which uses a vhost?
I have a CouchDB server which hosts a small website. For this reason, I set up a vhost section in the CouchDB configuration, so that a request to:
domain.com
will be "re-written" to
...
0
votes
1answer
88 views
How to pull an CouchApp from CouchDB
I've created and saved a view document in an CouchApp from within CouchDB.
Is there a way to pull that data in the same way as pushing apps?
Push
couchapp push http://domain.tld:5984/databasename
...
1
vote
0answers
115 views
couchdb Replication of Large Documents via Ajax
I'm working on a couchapp that may have large documents added to it. For example, I'm testing with a 446MB video. User A can request to replicate with user B who may have large files like this. The ...
0
votes
1answer
36 views
_changes for a view
I have a couchapp.
Client-side, I'm displaying the 10 first results of a hot view:
GET /_design/superapp/_view/hot?skip=0&limit=10
--
How to listen for the _changes of the first 10 results of ...
2
votes
1answer
162 views
Sammy mustache - not working (variables in double braces not replaced with values)
I'm trying to write my first webapp using sammy and mustache templating. The template doesn't seem to render correctly (variables in double braces are not replaced with values). Here's the relevent ...
2
votes
2answers
83 views
CouchApp design document and shared libraries
var ddoc = {
_id: '_design/app',
language: 'javascript',
views: {},
lists: {},
shows: {},
lib: {/* see below */}
};
I can't find good documentation about what to put into ddoc.lib, eg:
...
0
votes
1answer
98 views
CouchApp failing to push
When I try to push the test database from CouchApp Getting Started which is made with the command couchapp generate testdb I get following error:
[CRITICAL] {'msg': '', 'status_int': 400, 'response': ...
0
votes
1answer
78 views
How to fetch bodies of multiple revisions of same document Apache CouchDB?
A similar question was asked here Getting full list of revisions on document level using CouchDB-Python?, but what I want to do is also to retrieve the bodies of each revision of the same document in ...
0
votes
0answers
62 views
Error while saving a nested JSON object
I am developing a discussion board like web app, where a person starts a discussion followed by user comments. I am using using CouchDB and the jquery.couch.js plugin. My document looks like this:
...
0
votes
2answers
135 views
Updating doc in CouchDB
I know how to update a document in CouchDB, but when I update a doc, the fields that I didn't specify for the update gets deleted. How do I restrict the same. For instance, my CouchDB doc consists of ...
2
votes
3answers
128 views
using underscorejs in a couchapp list
I'm using couchdb 1.2.x, and I'm trying to use underscorejs in a list, without success.
here is how I proceed:
function(head, req) {
var _ = require('vendor/underscore/underscore');
log(_);
}
...
0
votes
1answer
69 views
CouchDB reduce function gives unexpected results
I am developing a couchapp. I have documents that contains a field called tags, and I am trying to retrieve the unique tags among all the docs. My map/reduce function is as follows:
map.js
...
0
votes
1answer
191 views
Adding id and author fields via a update handler in Couchdb
How are people adding extra fields via the update handler in Couchdb ? I'd like to add the author ( I have a validation function to check the user is logged in) and the id added when a new documenter ...
2
votes
1answer
218 views
CouchApp: List function with include_docs=true
I'm writing a simple CMS CouchApp as a pet project. I'm running CouchDB 1.2.0 on OS X 10.7.4 and using the Python CouchApp development tool.
Basically I wanna have pages as documents and a page would ...
0
votes
1answer
37 views
Restrict anonymous deletion of document in couchdb
I am having a CouchDB and any anonymous user without even being signed in can delete the document. How do I tackle this such that only the document created by a particular user can delete it. I am ...
1
vote
2answers
134 views
Restrict user access to some docs in CouchDB
I am very new to the CouchDB world! I have a database that can be read by all users, and also can edit the docs except for the design docs. Is there a way I can make a specific user edit only the doc ...
2
votes
2answers
206 views
Replication to iriscouch fails
I am trying to build a sample application using couchapp, couchdb. I am also using the jquery.couch.js plugin to communicate with my local couchdb. However when I try to replicate it to my remote ...
-1
votes
1answer
131 views
CouchApp Mustache.js how to [closed]
I was trying on CouchDB, and really loved it. In many of the examples i saw people using mustache.js for templating. However I tried to accomplish it, but I failed. I want to how to implement this. A ...
0
votes
1answer
103 views
CouchDB list view error when no key requested
Having trouble with a list function I wrote using CouchApp to take items from a view that are name, followed by a hash list of id and a value to create a CSV file for the user.
function(head, req) {
...


