Return-Path: Delivered-To: apmail-incubator-couchdb-user-archive@locus.apache.org Received: (qmail 94642 invoked from network); 28 Mar 2008 15:11:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 28 Mar 2008 15:11:01 -0000 Received: (qmail 18213 invoked by uid 500); 28 Mar 2008 15:11:00 -0000 Delivered-To: apmail-incubator-couchdb-user-archive@incubator.apache.org Received: (qmail 18193 invoked by uid 500); 28 Mar 2008 15:11:00 -0000 Mailing-List: contact couchdb-user-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: couchdb-user@incubator.apache.org Delivered-To: mailing list couchdb-user@incubator.apache.org Received: (qmail 18171 invoked by uid 99); 28 Mar 2008 15:11:00 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 28 Mar 2008 08:11:00 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of matt.goodall@gmail.com designates 64.233.184.224 as permitted sender) Received: from [64.233.184.224] (HELO wr-out-0506.google.com) (64.233.184.224) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 28 Mar 2008 15:10:18 +0000 Received: by wr-out-0506.google.com with SMTP id c46so291034wra.18 for ; Fri, 28 Mar 2008 08:10:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=/M3qnhgjPn3ptVXXSIMybhAv38afEvKvaQ7lKEs4onU=; b=U0p6y/wZJPEjMV/o3o6D4aEA5xB+/+gG8W904a4fiVEbslAeCOUmOT14SG68SwvW3noeQCFDQ9BRmqqfso+ZQDK4wabX0x2Oym9OTJLmH5OBCz+80D1sq1EHhZzqVlZFfGrEVrMeEcaBg3TZxDdKmoVKGYu5lXqtoT50ho9RN2s= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=C+3k0zgiE6yDmyDIQEhDRUwBcxuGd0WHzxJxa69GgqUnzHXLK52c828khYPVVcMej4apSwdIJl/OTxgc9BVz8JqwYguwx9hZKeX7utQ3Sq+LsYjwh4QqkjE5cQJNNGvh3woLIrfpUO+j1yVap4yKaz1EwMy25CgTdm1GXAdSl4c= Received: by 10.141.137.16 with SMTP id p16mr1452459rvn.192.1206717025618; Fri, 28 Mar 2008 08:10:25 -0700 (PDT) Received: by 10.67.98.19 with HTTP; Fri, 28 Mar 2008 08:10:25 -0700 (PDT) Message-ID: <214c385b0803280810qd2903dx38ec9f09b1a65bec@mail.gmail.com> Date: Fri, 28 Mar 2008 15:10:25 +0000 From: "Matt Goodall" To: couchdb-user Subject: svn trunk "make install" errors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org Hi, Just a heads up, but svn trunk currently breaks "make install". It's not installing many of the new Futon resources. The patch below seems to fix things but there may be a few other missing resources I haven't encountered yet. Hope this helps. - Matt p.s. As pretty as the new JS dialogs are, definitely an improvement over the standard browser dialogs, they really do slow things down a lot :(. Index: share/Makefile.am =================================================================== --- share/Makefile.am (revision 813) +++ share/Makefile.am (working copy) @@ -17,6 +17,11 @@ www/browse/database.html \ www/browse/document.html \ www/browse/index.html \ + www/browse/_create_database.html \ + www/browse/_delete_database.html \ + www/browse/_create_document.html \ + www/browse/_delete_document.html \ + www/browse/_save_view_as.html \ www/couch_tests.html \ www/favicon.ico \ www/image/add.gif \ @@ -35,6 +40,7 @@ www/image/run.gif \ www/image/running.gif \ www/image/save.gif \ + www/image/spinner.gif \ www/image/test_failure.gif \ www/image/test_success.gif \ www/image/thead.gif \ @@ -49,6 +55,9 @@ www/script/couch_tests.js \ www/script/jquery.js \ www/script/jquery.cookies.js \ + www/script/jquery.dialog.js \ + www/script/jquery.resizer.js \ + www/script/jquery.suggest.js \ www/script/json2.js \ www/script/pprint.js \ www/script/shell.js \