From derby-dev-return-59435-apmail-db-derby-dev-archive=db.apache.org@db.apache.org Mon Apr 28 21:36:46 2008 Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 7770 invoked from network); 28 Apr 2008 21:36:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 28 Apr 2008 21:36:46 -0000 Received: (qmail 86453 invoked by uid 500); 28 Apr 2008 21:36:47 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 86429 invoked by uid 500); 28 Apr 2008 21:36:47 -0000 Mailing-List: contact derby-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: Delivered-To: mailing list derby-dev@db.apache.org Received: (qmail 86418 invoked by uid 99); 28 Apr 2008 21:36:47 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Apr 2008 14:36:47 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of mcintyre.a@gmail.com designates 209.85.200.171 as permitted sender) Received: from [209.85.200.171] (HELO wf-out-1314.google.com) (209.85.200.171) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Apr 2008 21:35:54 +0000 Received: by wf-out-1314.google.com with SMTP id 23so4884114wfg.13 for ; Mon, 28 Apr 2008 14:36:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=U6gddVIjRPy1GprF4uPUOy8QlUgqNBCEB+TsHvLtdm4=; b=OpTBm5Gg9xiXQ8bMs8CR9dvDDiVqeH7jnDISLRaynNEbWaNI5COld3RvkC7tqb526i9eCrBOIKfPxgDWFNAe+o62/jNFuDjyc/pmmyzXZSzFphS8+ULA7uDNVyR1S4UQnGqUICWEU0d5ZynLsL+LqxhNwzumLs4zf2ylhS3JocA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=VJNMCVWYtXYeS/xFjEAIIxfZseP0SqYGs/FXCDl5thsXBuMMjbeoJqZ8QAT1cXEX7AJBP1+gzaXIVCFHCxBJSIPHrOlz3JXq6lvqCMxXwg90ODqn5g4gHs6HFR/ZhOoWSwhFUKvhGe4V7T17iSu3K+kRvXXSLPa3TaRiJFrjm/I= Received: by 10.142.241.10 with SMTP id o10mr714328wfh.217.1209418574380; Mon, 28 Apr 2008 14:36:14 -0700 (PDT) Received: by 10.143.196.3 with HTTP; Mon, 28 Apr 2008 14:36:14 -0700 (PDT) Message-ID: <54ac72d70804281436y749acf79y3ee51f1fe48858ba@mail.gmail.com> Date: Mon, 28 Apr 2008 14:36:14 -0700 From: "Andrew McIntyre" To: derby-dev@db.apache.org Subject: Re: 10.4 docs on the web page In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <48144C26.8050401@Sun.COM> X-Virus-Checked: Checked by ClamAV on apache.org On Mon, Apr 28, 2008 at 7:27 AM, wrote: > > So is there a script or program to transfrom a *-bin.zip into a 10.x > directory suitable for the website? I could do it manually, but it seems > easier just to let the links on the doc page reflect the directory > structure found the zip file? Yes, I put one together for 10.3: #! /bin/bash mkdir ~/10.3 cd ~/10.3 unzip $1 mv db*bin/docs . mv db*bin/javadoc ./publishedapi rm -r db*bin for i in adminguide devguide getstart ref tools tuning do mv docs/pdf/$i/*.pdf docs/html/$i rmdir docs/pdf/$i done mv docs/html/* . rmdir docs/html rmdir docs/pdf/pt_BR rmdir docs/pdf rmdir docs Pass in the location of the -bin.zip. Move the 10.4 directory that gets created in your home dir over to /www/db.apache.org/derby/docs I know I mentioned this on the list around the time of the 10.3 release, it looks like I didn't get around to adding this step or the script to the release page. Sorry about that. andrew