Re: best way of incorporating static pages?

2013-06-15 Thread Bård Magnus Kvalheim
Maybe it's just me and I didn't see the problem, but can't you just link to the cms content? The cms content has a link so why should tapestry service it? Is it on the same base domain? Then use request services to generate an absolute url. -magnus HTC one Den 12. juni 2013 13:07 skrev "John" f

Re: Adding tapestry project to Cpanel

2013-06-15 Thread Dmitry Gusev
I'd recommend you to try some PaaS solution. They usually provide everything you need to host and scale your applications without deep knowledge of infrastructure. Trade offs are some restrictions that concrete PaaS solution may impose. On Sat, Jun 15, 2013 at 8:56 PM, Nomen Nomanum wrote: > H

RE: Adding tapestry project to Cpanel

2013-06-15 Thread Nomen Nomanum
Hi, Michael and thanks for reply. I was thinking, what about nginx, is that also good reliable option to go? > From: michael.r.presc...@gmail.com > Date: Sat, 15 Jun 2013 11:06:44 -0400 > Subject: Re: Adding tapestry project to Cpanel > To: users@tapestry.apache.org > > A search of this list wil

Re: Adding tapestry project to Cpanel

2013-06-15 Thread Michael Prescott
A search of this list will turn up some options, people were talking about this within the last couple of months. I have an app running within Jetty as a custom app on Webfaction. On 15 June 2013 11:00, Nomen Nomanum wrote: > Hi. > I have finished my first app, I am s happy and now I am in

Adding tapestry project to Cpanel

2013-06-15 Thread Nomen Nomanum
Hi. I have finished my first app, I am s happy and now I am in dilemma how and where to deploy it on the web. I have bought some server, and I thought to implement it in Cpanel, although it can get nasty while setup, not to mention Cpanel might not work around mydomain.com/8080:myApp problem

Re: Disabling filling form with old values on validation failure

2013-06-15 Thread Ivan Khalopik
You can reset field recorded value by calling recordInput method with null parameter value: tracker.recordInput(myField, null); The same way to reset recorded error for field: tracker.recordError(myField, null); On Fri, Jun 14, 2013 at 2:11 AM, Ryan How wrote: > It's really simple to make