Re: dynamically switching layouts

2009-12-17 Thread Ben Acker
I've used a printer friendly CSS styleheet in the past. You could have a link that switches to one of those and the templat html can remain the same. On Dec 17, 2009, at 11:13 AM, Ilya Obshadko ilya.obsha...@gmail.com wrote: In case I need to switch layouts dynamically (for example to

Re: Tapestry5 - Helloworld

2009-10-15 Thread Ben Acker
Howdy! After reading this I thought of another easy way to do this. If you have the Maven plugin installed into Eclipse you can create a new project and create it directly from the Tapestry Quickstart Archetype. In Eclipse select File - New - Other - Maven - Maven Project It will ask

T5.1 Exception constructing service 'HibernateSessionSource'

2009-08-03 Thread Ben Acker
Hello all! Any help with this is greatly appreciated: I recently upgraded to T5.1.0.5 from an earlier version of 5.1. On local environment (jetty) everything is happy. On a testing server that housed the previous app, not so happy. The target is Tomcat 5.5.27, and it tells me this:

Re: Web framework evaluation - What is beautiful in Tapestry?

2009-04-24 Thread Ben Acker
I know it's simple, but I ${heart} expansions. Seriously, I don't know how I lived without them. On Apr 24, 2009, at 10:35 AM, Igor Drobiazko wrote: One of the most important things for me is that using Tapestry I can override or replace every piece of the framework. This fact makes

Re: tapestry.formos.com is down temporarily

2009-01-09 Thread Ben Acker
You can try the -npu option - it suppresses up-to-date checks. On Jan 9, 2009, at 3:24 PM, Steven Woolley wrote: On that note (probably because of this rebuild) a simple mvn build just took almost an hour! So, any tips on how I can build using only the locally cached version of all my jars

Re: T5 (5.0.11) - ready for production deployment

2008-03-26 Thread Ben Acker
I have a 5.0.10 application running as a simple CRUD app @ my employment and it's running fine. -Ben On Mar 26, 2008, at 1:14 PM, Jan Vissers wrote: Hi, I have an opportunity to use T5 (5.0.11) in an assignment. My question is; is it safe for me to do so? The application is quite simple

Re: Feedback wanted on IoC documentation

2007-11-09 Thread Ben Acker
Looks good, but having it split into linkable sections would be useful if folks can't read the whole thing at once (same or multi-page). On Nov 9, 2007 10:09 AM, Howard Lewis Ship [EMAIL PROTECTED] wrote: I've been working on new documentation about Tapestry IoC (similar stuff will be coming

Re: T5: testing software?

2007-11-09 Thread Ben Acker
Selenium from OpenQA works great: http://www.openqa.org/ . -Ben On Nov 9, 2007 3:02 PM, Angelo Chen [EMAIL PROTECTED] wrote: Hi, I'm looking for a software to automate web page testing, any good one for T5? Thanks. A.C. -- View this message in context:

Re: [OT?] OGNL source code and license

2007-09-24 Thread Ben Acker
OGNL is indeed open source. You can check out the source under the Downloads section from here http://www.ognl.org/ - I didn't see any links to the repository though. On 9/24/07, Martino Piccinato [EMAIL PROTECTED] wrote: Hi, is OGNL open source? If it is where can I access source code?

Re: New to Tapestry

2007-07-09 Thread Ben Acker
I think the main thing that Matt wants is to: a.) know how to get a link to a home-brewed service and b.) know how to access that from a javascript call. I don't know how to get the link to access the T5 service, but here's a good link for a simple javascript call.

Re: T5 Services

2007-07-07 Thread Ben Acker
of the rest and you need to restart. On 7/6/07, Ben Acker [EMAIL PROTECTED] wrote: Howdy! Being somewhat of a T5 noob, I have had troubles getting explicit directions on how to create a service in T5. I'm positive that it is simple, I just can't find anything that says anything explicitly

Re: T5 Services

2007-07-07 Thread Ben Acker
Thank you very much Howard for the explicit instructions. The most recent quickstart appmodule.java has it in there - I apologize for not having the grey matter to not check that - one can learn a lot from grabbing the source... -Ben On 7/7/07, Ben Acker [EMAIL PROTECTED] wrote: Thanks

T5 Services

2007-07-06 Thread Ben Acker
Howdy! Being somewhat of a T5 noob, I have had troubles getting explicit directions on how to create a service in T5. I'm positive that it is simple, I just can't find anything that says anything explicitly in the mailing lists, documentation, etc. If anyone has the time, please let me know

Re: T5: Component Cheatsheet

2007-06-28 Thread Ben Acker
This is great! Thanks! Ben On 6/28/07, David Peterson [EMAIL PROTECTED] wrote: I put together a simple cheatsheet for the Tapestry 5 component parameters and the rendering cycle. I've been finding it useful, so I thought I might as well stick it on the web in case you find it useful too...

Re: expert needed

2007-05-23 Thread Ben Acker
while on a form page should submit/process the form, then redirect to the tab's page. That's the long and short of it. Ben Acker wrote: Could you tell me more about the what the pages are and what the links would do on each of the pages? That may help with finding a solution to your problem

Re: expert needed

2007-05-23 Thread Ben Acker
Paul, I apologize for recommending a 'dirty' way of solving your problem! You could just create a new component based on the AbstractSubmit class or the Submit component. That way you could utilize the form submission from AbstractSubmit. In addition, the html in your tab could display this new

Re: expert needed

2007-05-22 Thread Ben Acker
to submit a form if a form is present? ie, I can implement the listener for each page, but in a couple of cases, this would mean the listener would be called without the required form data on the request. I'll see what I can do but I'm sceptical about the form portion. Ben Acker wrote: I am using

Re: expert needed

2007-05-15 Thread Ben Acker
I am using a similar approach to Phillip, but using the same method name for each page. We have the method implemented in a base page that is extended by the pages implementing the component. Anytime we need the method to do something different, we just overwrite it in that page. On 5/14/07,

Re: I want to use httpSession,but don't use hivemind?

2007-05-04 Thread Ben Acker
Howdy! Is there a reason that you're leaving out Hivemind? If not, I can show a fairly simple way of injecting an Application State Object (ASO) that can contain your userinfo. Just let me know! -Ben On 5/4/07, li li [EMAIL PROTECTED] wrote: Hi friends: I use Tapestry4.0.2. I find that