Re: T5: need to update pom when uprading to 5.0.18?

2009-01-13 Thread Olle Hallin
Standard remedy in cases like this: clean the local Maven repository (or rename it). Olle 2009/1/13 Angelo Chen angelochen...@yahoo.com.hk Hi, lately I'm getting following errors, any idea why? thanks. Angelo [INFO]task-segment: [clean] [INFO]

Re: T5: need to update pom when uprading to 5.0.18?

2009-01-13 Thread Angelo Chen
I commented out this, and it works: !-- As above, this can be commented out when access to the snapshot version of a Tapestry Maven plugin is not required. -- !-- pluginRepository idtapestry-snapshots/id

Is Maven Repository Down?

2009-01-13 Thread Jamie Counihan
Hi, Is the tapestry maven repository located at : http://tapestry.formos.com/maven-snapshot-repository down at the moment? I would like to obtain the latest snapshot version (5.1.0.0) for my current build. Regards, Jamie

Re: Is Maven Repository Down?

2009-01-13 Thread Massimo Lusetti
On Tue, Jan 13, 2009 at 11:11 AM, Jamie Counihan jcouni...@annadaletech.com wrote: Hi, Is the tapestry maven repository located at : http://tapestry.formos.com/maven-snapshot-repository down at the moment? I think during the week end it has been rebuilt so, if it's not reachable, i guess

Re: dynamic components in page

2009-01-13 Thread Ulrich Stärk
Please look at the Delegate http://tapestry.apache.org/tapestry5/tapestry-core/ref/org/apache/tapestry5/corelib/components/Delegate.html component as Daniel suggested. In combination with blocks, this fits your problem (see the example, it does exactly what you want). Also remember Tapestry's

Re: dynamic components in page

2009-01-13 Thread Radek Terber
Thanks for responses. Using ajax (via component zone) is one of possibly solutions. But, ideally, i would like to solve this without Java Script - ideally all should be done on server side. I try refine my question. My idea was something like this: The component's Index.tml div

T5: Pages can't have getErrorMessage() method

2009-01-13 Thread Jonathan O'Connor
Hi, I have a page class that had a String getErrorMessage() method. Sadly, this is not allowed by Tap5, and I get a lovely exception page telling exactly what is going on. Is this documented anywhere? I did a google for Tap5 and getErrorMessage, but didn't see anything relevant. My work

Re: zone enhancements?

2009-01-13 Thread Lutz Hühnken
Fernando, I agree with you, especially your suggestion (1) would be very helpful and a welcome addition. The form/zone combination could maybe include more callback hooks. I think I have a case of Rails envy, look at the callbacks you can use for the remote_form_tag: The callbacks that may be

[T5] improve documentation

2009-01-13 Thread Ulrich Stärk
Hi all, Tapestry's current documentation is very complete, covering almost everything a developer needs to know to be productive with Tapestry. Unfortunately this documentation is clustered across several locations thus making it hard to find information and very hard for beginners to get

Re: t5: when running tomcat behind Apache

2009-01-13 Thread Angelo Chen
might be nice to have something like this in RequestGlobals: public String getRealRemoteAddr() { String ip = requestGlobals.getHTTPServletRequest().getHeader(X-Forwarded-For); if (ip != null) return ip; else return

RE: Tapestry Upgrade problem

2009-01-13 Thread Mike Wasserman
We are going with the solution that I wrote about in my last post. After further investigation we believe that the PageSpecificationResolverImpl class is being initialized twice. We are not 100% certain of this, but unfortunately we don't have the time and resources to futher investigate this

http to https in my tapestry aplicattion T5

2009-01-13 Thread peibel
Hi, my first page is http, but if you click a link the next page is https. How do I make this work??? Sorry for my English thanks -- View this message in context: http://www.nabble.com/http-to-https-in-my-tapestry-aplicattion-T5-tp21439476p21439476.html Sent from the Tapestry - User mailing

Re: http to https in my tapestry aplicattion T5

2009-01-13 Thread Francois Armand
peibel wrote: Hi, my first page is http, but if you click a link the next page is https. You will have all what you need here: http://tapestry.apache.org/tapestry5/guide/secure.html -- Francois Armand Etudes Développements J2EE Groupe Linagora - http://www.linagora.com Tél.: +33 (0)1

Re: http to https in my tapestry aplicattion T5

2009-01-13 Thread Christian Edward Gruber
If you mark the pages you need to be accessed via https with the @Secure annotation, T5 will take care of that for you (as long as your webserver is set up to handle https). Christian. On 13-Jan-09, at 11:40 , peibel wrote: Hi, my first page is http, but if you click a link the next

Re: [T5] improve documentation

2009-01-13 Thread Howard Lewis Ship
I've been coming to the same conclusion. I'm clearing time with my boss to pursue this, along with several online articles. I have an idea for an application that can demonstrate every bit of Tapestry and be useful to boot. So the guide is the reference, what I have planned is the tour. It

EJB Problem

2009-01-13 Thread Sid Ferreira
Guys, tried to use EJB 3 in my project and really it was a pain in the ass. After extending the FacadeLocal and the Facade to T5 services, it finally stopped the exceptions, but now I got a boolean thing: If I use bind, it returns no results. If I use lookup (EJB in the xml and an

Re: zone enhancements?

2009-01-13 Thread Fernando Padilla
If you want to learn about how zones are implemented, this is the code you'll have to review: in tapestry.js: Tapestry.ZoneManager Tapestry.Initializer.zone Tapestry.Initializer.linkZone in java: ClientBehaviorSupport.addZone ClientBehaviorSupport.linkZone RenderSupport.addInit Essentially,

Re: EJB Problem

2009-01-13 Thread Sid Ferreira
Well, as Uli @ freenode said, that wasn't exactly a smart question.Anyway, I would like some help cause it's strange that the bind works but no data is retrieved. The lookup function is included, if it helps. Ps: Yes, Im a freaking newbie in java, but looking for better techs to my company.

Re: [T5] improve documentation

2009-01-13 Thread Ulrich Stärk
I'd be happy to help and contribute. Uli Howard Lewis Ship schrieb: I've been coming to the same conclusion. I'm clearing time with my boss to pursue this, along with several online articles. I have an idea for an application that can demonstrate every bit of Tapestry and be useful to boot.

NoSuchElementException in volatile loop

2009-01-13 Thread Joachim Van der Auwera
I have a form which causes the following exception on submit. This seems to be a problem with the advance_volatile commands in the form. I am using tapestry 5.0.18. Any ideas how to fix this? Stack trace below, Thanks for the help. Joachim -- Joachim Van der Auwera PROGS bvba, progs.be

NoSuchElementException in volatile loop

2009-01-13 Thread Joachim Van der Auwera
Sorry, this time with stacktrace... I have a form which causes the following exception on submit. This seems to be a problem with the advance_volatile commands in the form. I am using tapestry 5.0.18. Any ideas how to fix this? Stack trace below, Thanks for the help. Joachim 2009-01-13

Re: [T5] improve documentation

2009-01-13 Thread superoverdrive
An good old pet-shop application...with lots of Ajax would be nice...or something similiar. It could coves common questions on the Tapestry mailing list from the past by providing an example implementation. Would be good if it also contained one or the other things of the following list: -

Re: [T5] improve documentation

2009-01-13 Thread Andy Pahne
I'd prefer if it were more like jumpstart than petstore. Any chance jumpstart becoming part of the framework? Andy superoverdr...@gmx.de schrieb: An good old pet-shop application...with lots of Ajax would be nice...or something similiar. It could coves common questions on the Tapestry

Re: [T5] improve documentation

2009-01-13 Thread Kevin Monceaux
On Tue, 13 Jan 2009, Howard Lewis Ship wrote: I have an idea for an application that can demonstrate every bit of Tapestry and be useful to boot. This is great news!!! As a struggling newbie this is exactly what I've been looking for. I will be eagerly awaiting it's development. Here

Re: zone enhancements?

2009-01-13 Thread Thiago H. de Paula Figueiredo
Em Tue, 13 Jan 2009 10:28:48 -0300, Lutz Hühnken lh.tapestry.l...@googlemail.com escreveu: Fernando, I agree with you, especially your suggestion (1) would be very helpful and a welcome addition. The form/zone combination could maybe include more callback hooks. I think I have a case of

Re: is T4 dead ?

2009-01-13 Thread Alex Kotchnev
I would have thought that T4 could have been a very good opportunity for Formos to offer commercial support for (if they already don't do it). After all, it's in maintenance mode now (especially after the T5 release), it's hard to support legacy for free... Cheers, Alex K On Mon, Jan 12, 2009

T5: Jump to Specific Page with Grid

2009-01-13 Thread bobheck
I am trying to do something that seems simple, but I am stumped. The grid pager renders links that look like this to jump to a specific page pagepath/pagename.grid.pager/NN where NN is the page number the link jumps directly to I have a large list, and I want users to be able to type a number

Re: Persistance

2009-01-13 Thread Kalle Korhonen
I don't know if there's a better thread for discussing page scope and conversation (if you know other threads, please link them in) but I'm just doing research on this topic for supporting conversations in Trails. Shortly, I'm hoping that it'd be possible to have a generic implementation for