Return-Path: X-Original-To: apmail-commons-dev-archive@www.apache.org Delivered-To: apmail-commons-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 073CE6532 for ; Wed, 1 Jun 2011 05:46:34 +0000 (UTC) Received: (qmail 39304 invoked by uid 500); 1 Jun 2011 05:46:32 -0000 Delivered-To: apmail-commons-dev-archive@commons.apache.org Received: (qmail 39023 invoked by uid 500); 1 Jun 2011 05:46:30 -0000 Mailing-List: contact dev-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Commons Developers List" Delivered-To: mailing list dev@commons.apache.org Received: (qmail 39008 invoked by uid 99); 1 Jun 2011 05:46:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Jun 2011 05:46:29 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,RFC_ABUSE_POST,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of simone.tripodi@gmail.com designates 74.125.83.43 as permitted sender) Received: from [74.125.83.43] (HELO mail-gw0-f43.google.com) (74.125.83.43) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Jun 2011 05:46:23 +0000 Received: by gwj21 with SMTP id 21so2272574gwj.30 for ; Tue, 31 May 2011 22:46:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; bh=bLcw/J1H36jIlFAO8FIMCg/R50pEBvaaCfdo4RIMEpM=; b=aB3wyoYqmZEAaaRchxYUPJFuEMCW9oR96zKHmrdEv+KAeFF+x1BzfobhHzy2U9swIM ZdBJSRloD+PKfdYi8amWG95INkKmE+t9IFIF9ZpNRSOv8PMORft2lYAE2ACQfLNzvW7I rT+8vZbYJnWttgTuFtIjqfIfwJ0DW4GzP3hzE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; b=mgk9qlW7/2jr9dcDpWNe0mISRDm2GHF+OdxKa55328m7oVlKarNHz1L3xwom3wWG0G fcXlEfOt97UKM2puYEBUQcVPsNre69J9iEKuqiXE92SbuwlDkYNI5BgpdKoDgF4I7SaE WC1Jli2AnKC+BXTekfuptHwcaTZgjY7Om8peM= MIME-Version: 1.0 Received: by 10.151.132.19 with SMTP id j19mr6099214ybn.272.1306907162626; Tue, 31 May 2011 22:46:02 -0700 (PDT) Sender: simone.tripodi@gmail.com Received: by 10.150.97.8 with HTTP; Tue, 31 May 2011 22:46:02 -0700 (PDT) In-Reply-To: References: Date: Wed, 1 Jun 2011 07:46:02 +0200 X-Google-Sender-Auth: tTnxxorEKtPqjRm7G-YNHzzw9GM Message-ID: Subject: Re: [DIGESTER][SANDBOX] back proposing the Digester3 merge to trunk From: Simone Tripodi To: Commons Developers List Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Hi Rahul :) thanks for following up! I can confirm they're NOT binary compatible even without running clirr, because of the following reasons: - deprecated APIs don't exist anymore; - internals of annotations/xml modules have been rewritten as EDSL extensi= ons; - some Digester methods changed signature, like Digester.pushParams( Object object ) versus the new Digester.pushParams( Object... object ) - due to all these changes, I took advantage to repackage classes to org.apache.commons.digester3 Anyway I didn't break the pure Digester use as I did in the previous attempt, users are still able to bin rules using the usual pattern Digester d =3D new Digester(); d.addObjectCreate("foo", "mypackage.Foo"); ... I would really appreciate if you have spare time to have a look at the code, I immagine you are quiet busy but there's no rush ;) Have a nice day, all the best!!! Simo http://people.apache.org/~simonetripodi/ http://www.99soft.org/ On Wed, Jun 1, 2011 at 12:08 AM, Rahul Akolkar wr= ote: > On Tue, May 31, 2011 at 5:46 PM, Simone Tripodi > wrote: >> New site is online, does someone have some spare time to check[1] and >> provide feedbacks about the merge proposal? > > > Don't have much time, but if its now compatible with 2.x thats a good > thing :-) You may want to confirm using a clirr or equivalent report. > > -Rahul > > >> Thanks in advance, have a nice day!!! >> Simo >> >> [1] http://commons.apache.org/sandbox/digester3/ >> >> http://people.apache.org/~simonetripodi/ >> http://www.99soft.org/ >> >> >> >> On Tue, May 31, 2011 at 6:41 PM, Simone Tripodi >> wrote: >>> Hi all guys, >>> after some day of work on Sandbox, I'm back to propose once again the >>> merge of my work in proper /trunk. >>> Failing my first attempt was good, because I had the opportunity to >>> learn a lot and this time the proposal is much better :P >>> >>> What I did: >>> >>> =C2=A0- moved the current sandbox in a separate branch; >>> =C2=A0- copied the current trunk in sandbox; >>> =C2=A0- polished APIs (few trivial checkstyle violations yet), removed >>> @Deprecated methods, added more power with generics; >>> =C2=A0- re-introduced - simplifying! - the Digester EDSL; >>> =C2=A0- removed old custom DigesterLoader for annotations/xml package. >>> >>> So, at the end of the day, this time users are still able to create >>> Digester instances using the old-fashioned APIs - even if they're >>> encouraged to use the more expressive fluent APIs - except when using >>> annotations/XML extensions. >>> >>> I still have to publish the site - it's the site on /trunk + EDSL >>> documentation - I'll do it as soon as I'll get home (I'm leaving the >>> office now) so you can see how APIs/Doc look >>> >>> Anyway interested people can start having a look at the component code = on SVN[1] >>> >>> Please send huge feedbacks!!! >>> Have a nice day! >>> Simo >>> >>> [1] https://svn.apache.org/repos/asf/commons/sandbox/digester3/trunk >>> >>> http://people.apache.org/~simonetripodi/ >>> http://www.99soft.org/ >>> > > --------------------------------------------------------------------- > To unsubscribe, e-mail: dev-unsubscribe@commons.apache.org > For additional commands, e-mail: dev-help@commons.apache.org > > --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@commons.apache.org For additional commands, e-mail: dev-help@commons.apache.org