Return-Path: Delivered-To: apmail-cocoon-dev-archive@www.apache.org Received: (qmail 14760 invoked from network); 25 Nov 2005 15:57:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 25 Nov 2005 15:57:57 -0000 Received: (qmail 25475 invoked by uid 500); 25 Nov 2005 15:57:54 -0000 Delivered-To: apmail-cocoon-dev-archive@cocoon.apache.org Received: (qmail 25405 invoked by uid 500); 25 Nov 2005 15:57:54 -0000 Mailing-List: contact dev-help@cocoon.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@cocoon.apache.org List-Id: Delivered-To: mailing list dev@cocoon.apache.org Received: (qmail 25394 invoked by uid 99); 25 Nov 2005 15:57:53 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Nov 2005 07:57:53 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of antonio.fiol@gmail.com designates 64.233.184.200 as permitted sender) Received: from [64.233.184.200] (HELO wproxy.gmail.com) (64.233.184.200) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Nov 2005 07:59:24 -0800 Received: by wproxy.gmail.com with SMTP id i5so1764109wra for ; Fri, 25 Nov 2005 07:57:32 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=uRKdRWbVvSuRVbiFw+tB0s4hOAsMYtGJs+zOj5Txa02hbCFK5DVJbY61umBPlKqjs0OSdQvlm9+yojbmGApDNMYek6ypF/Z9rrQeGS961dRqfDvTexC/VbxOns1dJ8Li66g06g0ZlcWhoBccFrVODtt2IIJPt/fU98NZjvXhp90= Received: by 10.54.138.13 with SMTP id l13mr5278251wrd; Fri, 25 Nov 2005 07:57:32 -0800 (PST) Received: by 10.54.94.13 with HTTP; Fri, 25 Nov 2005 07:57:32 -0800 (PST) Message-ID: Date: Fri, 25 Nov 2005 16:57:32 +0100 From: =?ISO-8859-1?Q?Antonio_Fiol_Bonn=EDn?= To: dev@cocoon.apache.org Subject: Re: Planning 2.2 In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <4380C369.4090606@apache.org> <53599122b900fa3068a96b3d20398f0f@apache.org> <438470D1.6060705@apache.org> <4384E054.5010407@gmx.de> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N 2005/11/24, Pier Fumagalli : > On 23 Nov 2005, at 21:34, Joerg Heinicke wrote: > > On 23.11.2005 16:33, Antonio Fiol Bonn=EDn wrote: > > > >> This can't possibly be what we need, as anyone would have done it > >> faster than me, but anyway, here it goes. > > > > IIRC the problem was not the pure removal, but the mentioning of > > the authors in a contrib file file. > > "svn blame" So, if I understood correctly, you would like to extract the "history" of authors for every file: #!/bin/bash for i in $(find . -type f -not -name '*.svn-????' | grep -v /\\.svn/) do echo $i svn blame $i | awk '{print $2}' | sort | uniq echo done But I find it hard to do it in a platform-independent way. > And if someone submits a patch, we can track the contribution in Jira. I don't understand how this should work. -- Antonio