Return-Path: Delivered-To: apmail-tapestry-commits-archive@locus.apache.org Received: (qmail 86224 invoked from network); 22 Sep 2008 23:06:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 22 Sep 2008 23:06:03 -0000 Received: (qmail 9456 invoked by uid 500); 22 Sep 2008 23:06:00 -0000 Delivered-To: apmail-tapestry-commits-archive@tapestry.apache.org Received: (qmail 9236 invoked by uid 500); 22 Sep 2008 23:05:59 -0000 Mailing-List: contact commits-help@tapestry.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tapestry.apache.org Delivered-To: mailing list commits@tapestry.apache.org Received: (qmail 9227 invoked by uid 99); 22 Sep 2008 23:05:59 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Sep 2008 16:05:59 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Sep 2008 23:05:08 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 68553238899F; Mon, 22 Sep 2008 16:05:11 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r698030 - /tapestry/tapestry5/trunk/tapestry-ioc/src/site/apt/decorator.apt Date: Mon, 22 Sep 2008 23:05:11 -0000 To: commits@tapestry.apache.org From: kmenard@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080922230511.68553238899F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kmenard Date: Mon Sep 22 16:05:10 2008 New Revision: 698030 URL: http://svn.apache.org/viewvc?rev=698030&view=rev Log: A couple doc fixes. Modified: tapestry/tapestry5/trunk/tapestry-ioc/src/site/apt/decorator.apt Modified: tapestry/tapestry5/trunk/tapestry-ioc/src/site/apt/decorator.apt URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-ioc/src/site/apt/decorator.apt?rev=698030&r1=698029&r2=698030&view=diff ============================================================================== --- tapestry/tapestry5/trunk/tapestry-ioc/src/site/apt/decorator.apt (original) +++ tapestry/tapestry5/trunk/tapestry-ioc/src/site/apt/decorator.apt Mon Sep 22 16:05:10 2008 @@ -169,7 +169,7 @@ logging for your data access and business logic services, you might end up with <<<@Match("Data*", "*Logic")>>> (based, of course, on how you name your services). - As the precending example showed, a simple "glob" matching is supported, where a asterisk ('*') + As the preceding example showed, a simple "glob" matching is supported, where a asterisk ('*') may be used at the start or end of the match string to match any number of characters. As elsewhere, matching is case insensitive. @@ -242,7 +242,7 @@ call invokes the corresponding method on the original object, the delegate. If the method call throws a runtime exception, that exception is not caught. Your method advice can - put a try ... catch block around the call to proceed() if interested in catching runtime exception. + put a try ... catch block around the call to proceed() if interested in catching runtime exceptions. Checked exceptions are not thrown (since they are not part of the proceed() method's signature). Instead the invocation's <<>> method will return true. You can then retrieve the exception or override it.