Re: tapestry-component-report: How to use?

2010-08-24 Thread Ulrich Stärk
The goal is called component-report. On 23.08.2010 21:07, Inge Solvoll wrote: http://tapestry.apache.org/tapestry5.1/tapestry-component-report/ Is this something that generates nice component documentation? If so, how do I invoke it from mvn command line?

Re: tapestry-component-report: How to use?

2010-08-24 Thread Inge Solvoll
Thanks! :) But still not following, I'm a maven idiot :) Tried to run mvn component-report, got the following error: C:\devmvn component-report [INFO] Scanning for projects... [INFO] [ERROR] BUILD FAILURE [INFO]

Re: tapestry-component-report: How to use?

2010-08-24 Thread Inge Solvoll
After actually reading my own error message, I tried this: mvn org.apache.tapestry:tapestry-component-report:5.2.0:component-report That seemed to work :) On Tue, Aug 24, 2010 at 10:28 AM, Inge Solvoll inge.tapes...@gmail.comwrote: Thanks! :) But still not following, I'm a maven idiot :)

Re: Using a modules message-catalog in another module

2010-08-24 Thread Massimo Lusetti
On Sat, Aug 14, 2010 at 2:59 PM, Igor Drobiazko igor.drobia...@gmail.com wrote: In 5.1 it's not possible. As of 5.2 you can contribute a Resource from context or classpath to the ComponentMessagesSource service:    public static void contributeComponentMessagesSource(        

Event Refresh when hit F5

2010-08-24 Thread Cucchietti Denis
Hi everybody !! I'm trying to detect the event Refresh on my page in order to clean all persistant variables (annoted @Persist). To clean these variables I use this code: @Inject private ComponentResources componentResources; componentResources.discardPersistentFieldChanges(); But the problem

RE: Selct object which depends on other select object

2010-08-24 Thread Jim O'Callaghan
http://tapestry.formos.com/nightly/tapestry5/tapestry-core/ref/org/apache/ta pestry5/corelib/components/Select.html might help - see SelectZoneDemo - this may be T.5.2.0 and up. Regards, Jim. -Original Message- From: tas85 [mailto:tassada...@gmail.com] Sent: 23 August 2010 17:20 To:

Re: Selct object which depends on other select object

2010-08-24 Thread Bryan Lewis
I had good results with this: http://lombok.demon.co.uk/tapestry5Demo/ On Mon, Aug 23, 2010 at 12:19 PM, tas85 tassada...@gmail.com wrote: Hi Tapestry, Is it possible to create 2 Select Box of Objects, as: List1: Car, Motor, Bicyle List2: depend on List1, if on choose car, List2 will

Re: [Announce] Tapestry Testify project - v1.0.3-SNAPSHOT with Tapestry 5.2 support is available

2010-08-24 Thread Joost Schouten (mailing lists)
Great news! Thanks for this update. I can remove a few @Ignore's I'll let you know if I run into any issues. Cheers, Joost On Sat, Aug 21, 2010 at 2:28 PM, Paul Field tapes...@cloudinthesky.co.uk wrote: I'd like to announce the latest snapshot of the Tapestry Testify project at Tapestry 360:

Re: Selct object which depends on other select object

2010-08-24 Thread Geoff Callender
Try http://jumpstart.doublenegative.com.au/jumpstart/examples/javascript/ajaxselect1 On 24/08/2010, at 2:19 AM, tas85 wrote: Hi Tapestry, Is it possible to create 2 Select Box of Objects, as: List1: Car, Motor, Bicyle List2: depend on List1, if on choose car, List2 will be Mercedes,

[OT] I wonder...

2010-08-24 Thread Massimo Lusetti
... I wonder how many better alternatives there're out there!? ... http://www.theserverside.com/feature/Spring-vs-Guice-The-Clash-of-the-IOC-Containers Cheers -- Massimo - To unsubscribe, e-mail:

Re: Using latest Hibernate with Tap 5.1.0.5

2010-08-24 Thread Mats Andersson
Thanks Thiago! I have a few references to Hibernate in the project so you are probably right about this. I will do some more tests. Mats Mats Andersson Ronsoft AB - Fridhemsvägen 8 - 372 25 Ronneby Tel. 073-368 79 82 http://www.ronsoft.se

Strange behavior with Tomcat and NIO Connector

2010-08-24 Thread Stefan Schuetz
Hi, can anyone reproduce some strange behavior when configuring the tomcat connector to use the NIO-API? Connector ... protocol=org.apache.coyote.http11.Http11NioProtocol ... / My Ajaxformloops stop working when this feature is

OT: Debugging Tapestry Apps using Eclipse

2010-08-24 Thread Jim O'Callaghan
I'm facing an issue with my Eclipse IDE (3.4.1) and thought I would check if anyone has faced the same issue / has a possible solution. I'm not sure when this started (last few weeks) but I'm seeing a difference in performance of over 10x between 'Run' and 'Debug' targets under Eclipse - getting

Re: OT: Debugging Tapestry Apps using Eclipse

2010-08-24 Thread Josh Canfield
Off the top of my head it sounds like you might have a method breakpoint set.. Have you tried clearing all of your breakpoints? -- Josh On Aug 24, 2010, at 10:19 AM, Jim O'Callaghan j...@peritussolutions.com wrote: I'm facing an issue with my Eclipse IDE (3.4.1) and thought I would check if

RE: OT: Debugging Tapestry Apps using Eclipse

2010-08-24 Thread Jim O'Callaghan
Thanks for the response Josh. No breakpoints set. Any other thoughts welcome. Regards, Jim. -Original Message- From: Josh Canfield [mailto:joshcanfi...@gmail.com] Sent: 24 August 2010 18:54 To: Tapestry users Subject: Re: OT: Debugging Tapestry Apps using Eclipse Off the top of my

Re: Event Refresh when hit F5

2010-08-24 Thread Josh Canfield
I'm trying to detect the event Refresh on my page in order to clean all persistant variables (annoted @Persist). Could you use the flash persistence strategy instead? If not, what are you trying to accomplish? Can you give the workflow? Josh On Tue, Aug 24, 2010 at 5:05 AM, Cucchietti Denis

Re: Using latest Hibernate with Tap 5.1.0.5

2010-08-24 Thread Mats Andersson
The problem was that I did not upgrade Hibernate Annotations to the same version. When adding this to my pom.xml it works. dependency groupIdorg.hibernate/groupId artifactIdhibernate-annotations/artifactId version${hibernate-core-version}/version /dependency The only thing in common with