[Mav-user] Question on xsl translation of static xml

2003-09-30 Thread Marco Pas
Hi, i want to do a xml translation on a specific file and am using the following in my maverick.xml: command name=testfile view path=data.xml transform path=xslfile.xsl/ /view /command The problem is that i receive my xsl file and not the transformation.. Any

Re: [Mav-user] PROPOSAL: Add Ted Husted as committer

2003-09-30 Thread Ted Husted
Almost. I needed a patch applied to the FormProc CVS first. I'm now told it's been applied, and I'll be able to check that one out and test it this afternoon. Then I can post ours! yeah/ -Ted. Kevin O'Neill wrote: On Wed, 2003-09-24 at 05:58, Ted Husted wrote: Mike Moulton wrote: Your

RE: [Mav-user] ${model} question

2003-09-30 Thread Aapo Laakkonen
In the most examples the controller is a model. Controller may have inherited several properties from parent class, e.g. getDest(). -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ed Thompson Sent: Tuesday, September 30, 2003 3:43 PM To: [EMAIL PROTECTED]

Re: [Mav-user] ${model} question

2003-09-30 Thread Travis Reeder
model is the Controller that you specify in maverick.xml. This controller is stuffed in the the request attributes under the name model. To get the model outside of jstl might make more sense: MyController model = (MyController)request.getAttribute(model); So ${model.dest} would be actually

Re: [Mav-user] PROPOSAL: Add Ted Husted as committer

2003-09-30 Thread Ted Husted
Jaap van Hengstum wrote: Can I ask why you are using FormProc and not Commons Validator? Since I've never used it yet, I was wondering FormProc has advantages over Validator. The focus of the Validator is on validating JavaBeans. an interesting problem space, but it's not really what we need to

Re: [Mav-user] Filter commands vs. Business commands

2003-09-30 Thread Ted Husted
I'd say they were distinct. You could do things like combine them into a single chain, but that seems to place too much dependence on the catalog. There's also the situation where you call the business layer command, but it fails, so you branch to another page. Given this sort of thing, it can

RE: [Mav-user] Getting to an object from JSP

2003-09-30 Thread Thompson, Kris
I believe so, Jeff or others? As I understand it, model represents your Controller class therefore anything in your jsp that is ${model.something} where something is a getter in your controller. The quick answer is Yes. So basically everything the jsp needs should ge accessible with a

RE: [Mav-user] PROPOSAL: Add Ted Husted as committer

2003-09-30 Thread Jaap van Hengstum
From: Ted Husted [mailto:[EMAIL PROTECTED] Sent: Tue 9/30/2003 9:27 PM To:[EMAIL PROTECTED] Cc: Subject: Re: [Mav-user] PROPOSAL: Add Ted Husted as committer It was also easy to modify FormProc to solve the nasty problem of redisplaying input. It already kept a list of the