Return-Path: Delivered-To: apmail-incubator-general-archive@www.apache.org Received: (qmail 22260 invoked from network); 14 Oct 2006 15:17:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 14 Oct 2006 15:17:17 -0000 Received: (qmail 12672 invoked by uid 500); 14 Oct 2006 15:17:15 -0000 Delivered-To: apmail-incubator-general-archive@incubator.apache.org Received: (qmail 12518 invoked by uid 500); 14 Oct 2006 15:17:14 -0000 Mailing-List: contact general-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: general@incubator.apache.org Delivered-To: mailing list general@incubator.apache.org Received: (qmail 12504 invoked by uid 99); 14 Oct 2006 15:17:14 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 14 Oct 2006 08:17:14 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [84.96.92.60] (HELO Smtp.neuf.fr) (84.96.92.60) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 14 Oct 2006 08:17:12 -0700 Received: from INSPIRON900 ([84.99.145.28]) by sp604001mt.gpm.neuf.ld (Sun Java System Messaging Server 6.2-5.05 (built Feb 16 2006)) with SMTP id <0J7400CGZT42NQ50@sp604001mt.gpm.neuf.ld> for general@incubator.apache.org; Sat, 14 Oct 2006 17:16:51 +0200 (CEST) Date: Sat, 14 Oct 2006 17:16:32 +0200 From: Jacques Le Roux Subject: Re: Release Requirements To: general@incubator.apache.org Reply-to: Jacques Le Roux Message-id: <005501c6efa3$bd6db870$0300a8c0@LesArts> Organization: Les Arts Informatiques MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 X-Mailer: Microsoft Outlook Express 6.00.2800.1807 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7BIT X-Priority: 3 X-MSMail-priority: Normal References: <45307A69.4030109@sastau.it> <000901c6ef89$fd5c9920$0300a8c0@LesArts> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Finally I tried both options using the ASL2, nothing happens (seems like a good sign). Not documented so far ... I would say ... Forget it for the moment... Jacques > Jacopo, > > I just realized that in Eclipse 3.2 you can define your "own" licence (Windows/ Preference) and I think use it with the "Fix > Copyrights" and "Advanced Fix Copyrights" options. > I tried it before but whitout having defined "my" licence (so I had bad results). Have you tried it even if I guess it's now a bit > later ? > > Jacques > > PS : the only information I found about this tool was here : http://dev.eclipse.org/mhonarc/lists/hyades-dev/msg00733.html > > From: "Jacopo Cappellato" > > Robert, > > > > the aRAT tool is indeed very helpful. > > > > As a side note: would you consider to commit the attached patch? > > I think it would make life easier to many since the String.contains(...) > > method is deprecated in recent JDK versions. > > > > Thanks, > > > > Jacopo > > > > > > robert burrell donkin wrote: > > > On 10/12/06, Noel J. Bergman wrote: > > >> Other than wait for Robert's scanning tool? :-) > > > > > > no need to wait: get the source (http://code.google.com/p/arat/) and > > > run the RAT against the source distribution (i'll improved binary will > > > come later). the output is very unfriendly but what do you expect from > > > aRAT ;-) > > > > > > some knowledge and judgement is needed to interpret the output. more > > > work is needed for stuff i have to check manual ATM but the vast > > > majority of my blockers (as opposed to stylist feedback) are found by > > > RAT. > > > > > > if anyone wants to have a hack then let me know... > > > > > > - robert > > > > > > --------------------------------------------------------------------- > > > To unsubscribe, e-mail: general-unsubscribe@incubator.apache.org > > > For additional commands, e-mail: general-help@incubator.apache.org > > > > > > > -------------------------------------------------------------------------------- > > > > Index: src/java/rat/license/standard/W3CLicense.java > > =================================================================== > > --- src/java/rat/license/standard/W3CLicense.java (revision 19) > > +++ src/java/rat/license/standard/W3CLicense.java (working copy) > > @@ -34,7 +34,7 @@ > > > > public ILicense match(String line) { > > ILicense result = null; > > - if (line != null && line.contains(COPYRIGHT_URL)) { > > + if (line != null && line.indexOf(COPYRIGHT_URL) != -1) { > > result = this; > > } > > return result; > > > > > > > -------------------------------------------------------------------------------- > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: general-unsubscribe@incubator.apache.org > > For additional commands, e-mail: general-help@incubator.apache.org > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: general-unsubscribe@incubator.apache.org > For additional commands, e-mail: general-help@incubator.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: general-unsubscribe@incubator.apache.org For additional commands, e-mail: general-help@incubator.apache.org