You cannot post messages because only members can post, and you are not currently a member.
Description:
CouchApp is a set of helpers and a jQuery plugin that conspire to get you up and running on CouchDB quickly and correctly. It is designed to bring clarity and order to the freedom of CouchDB’s document-based approach.
|
|
|
Deploy to Android and iOS?
|
| |
Hi,
I'm a bit confused by the current state of things, everything seems to
be in beta, be someone's github project, or in the "coming soon"
category.
What is the current, best approach for deploying a CouchApp to Android
AND iOS?
is it:
1. Mobile SyncPoint: Download latest versions of Mobile SyncPoint from... more »
|
|
how to upload an attachment in a couchapp
|
| |
Hi, all! I forked from here ...index.html
/<form id="recipe-upload" name="recipe-upload"><input id="_attachments" type="file" name="_attachments"/><input type="submit"/></form>
</body>
<script src="vendor/couchapp/loader.js "></script>
<script type="text/javascript" charset="utf-8">
$("#recipe-upload").submit(fun ction(e) {... more »
|
|
jquery.couch.js
|
| |
Hi, all ! i code below , it doesn't work out of couchdb , why?
<script type="text/javascript">
doc = { name: "John", location: "Boston" }
document.write(doc.name);
db = $.couch.db("[link]");
db.saveDoc(doc,{
success: function() {... more »
|
|
Basic evently help: selectors syntax
|
| |
How can I get the codeAddress function below to run? I think the
problem is I'm not using the right syntax for the selectors. All of
the code below is in my "evently" toplevel directory/object. Thanks
in advance!
Tim
{
"search": {
"codeAddress": "function(e) {\n\t// TODO: For some reason this... more »
|
|
Couchapp not working in Android Browser
|
| |
Hello, i implemented a CouchApp with evently, it works fine in Firefox and Chrome. But when i open it with the Android browser only the static content is shown. So all the div's bound with evently (like: $("#account").evently("account ", app);) stay empty. It works on my Android 2.3 tablet when i use Opera in desktop mode.... more »
|
|
a uploading coucapp
|
| |
Hi, all!
I am looking for an open source couchapp demo like [link] ,
please tell me where i can fork , THX very much!
|
|
Authentication Question
|
| |
Hello,
I am working on an idea for an app that would consist of at least two
couch apps and multiple databases.
I wonder if it is possible to use '/host1/db1/_design/app1' to handle
authentication for '/host1/db2/_design/app2', and if so what is the
best implementation.
Thank you.
Regards,... more »
|
|
bulkRemove
|
| |
Hi, I'm testing the bulkRemove method in jquery.couch.js and running
into problems. Everything seems to be ok, except the docs are not
updated in the database. Here's my code:
$.couch.db("kreftlextest2").al lDocs({success: function(data) {
var docs = data.rows;
$.couch.db("kreftlextest2").bu lkRemove({"docs": oldDocs}, {... more »
|
|
No vendor content in v1.0 (Windows) anymore?
|
| |
Hi, I fiddled with the 0.8 version and realized that template.js doesn't exist anymore and therefore the examples in the CouchDB book are dead. Also, the general path was vendor/couchapp/lib, not vendor/couchapp. Then I downloaded v1.0. To my big surprise, the whole vendor/couchapp javascript lib content is now completely missing.... more »
|
|
|