Return-Path: Delivered-To: apmail-couchdb-user-archive@www.apache.org Received: (qmail 50934 invoked from network); 10 Jul 2009 16:22:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 10 Jul 2009 16:22:40 -0000 Received: (qmail 57858 invoked by uid 500); 10 Jul 2009 16:22:49 -0000 Delivered-To: apmail-couchdb-user-archive@couchdb.apache.org Received: (qmail 57800 invoked by uid 500); 10 Jul 2009 16:22:49 -0000 Mailing-List: contact user-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@couchdb.apache.org Delivered-To: mailing list user@couchdb.apache.org Received: (qmail 57789 invoked by uid 99); 10 Jul 2009 16:22:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Jul 2009 16:22:49 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of tom@thomas-harding.name designates 88.170.168.121 as permitted sender) Received: from [88.170.168.121] (HELO smtp.thomas-harding.name) (88.170.168.121) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Jul 2009 16:22:41 +0000 Received: from localhost (localhost [127.0.0.1]) by smtp.thomas-harding.name (Postfix) with ESMTP id 5615C3E401 for ; Fri, 10 Jul 2009 18:22:19 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at smtp.thomas-harding.name Received: from smtp.thomas-harding.name ([127.0.0.1]) by localhost (thomas-harding.name [127.0.0.1]) (amavisd-new, port 10024) with LMTP id uOYWZyL0tjuO for ; Fri, 10 Jul 2009 18:22:18 +0200 (CEST) Received: from [IPv6:2a01:e35:8aaa:8790:222:15ff:fe64:e855] (unknown [IPv6:2a01:e35:8aaa:8790:222:15ff:fe64:e855]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "Thomas Harding, smtp", Issuer "Thomas Harding" (verified OK)) (Authenticated sender: tom@smtp) by smtp.thomas-harding.name (Postfix) with ESMTPSA id 79ED9213EC for ; Fri, 10 Jul 2009 18:22:18 +0200 (CEST) Message-ID: <4A576AC0.8020005@thomas-harding.name> Date: Fri, 10 Jul 2009 18:22:24 +0200 From: Thomas Harding User-Agent: Mozilla-Thunderbird 2.0.0.19 (X11/20090103) MIME-Version: 1.0 To: user@couchdb.apache.org Subject: Re: Defining my document model when the source is entity-relationship References: <4A5632F8.5040406@disobey.com> <634e096f0907100831k7ba94613k53fd2247265adecd@mail.gmail.com> <4A5767A5.9050509@disobey.com> In-Reply-To: <4A5767A5.9050509@disobey.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Morbus Iff wrote: > This is a good point - the replication part of a CouchApp (which I > have only just started to learn about) is very appealing to me. The > fact that I can only use HTML/JS also adds another layer of "Sounds > like a Fun Challenge". I just didn't anticipate how much of an > "interesting problem" an FRBR attempt has created ;) You can use any language for your queries, provided it is provided a wrapper. At least javascript, python (must evaluate as function), java and erlang are allowed for now. However, you /can/ use only javascript/html to create your application if you really want that :) T.H.