Re: [Mav-user] I want to switch to Maverick....

2004-06-15 Thread Peter
Hi Jaap, Thanks - Peter On Tuesday 15 June 2004 18:29, Jaap van Hengstum wrote: To answer your last question, maybe you can split your xml file using external entities (as explained f.e. here: http://xml.oreilly.com/news/learningxml_0101.html?CMP=ILC-0PY480989785). Though I did not use

Re: [Mav-user] I want to switch to Maverick....

2004-06-15 Thread Peter
implement the ShuntFactory interface to make my own controller that exposes the request obj ? Peter On Tuesday 15 June 2004 20:45, Eelco Hillenius wrote: 1. It sounds to me that you do not need a lot of different commands, but possibly a lot of different views... If you need to do some Java action

Re: [Mav-user] server side redirects for commands

2003-02-10 Thread Peter Brown
What a great idea. I suspect will increase speed! Peter At 23:39 10/02/2003 +0100, you wrote: Hi all, Say, I have got a view like: view name=simpleReport type=redirect path=showSimpleReport.m/ (I use .m for Maverik commands). The current version of Maverik does a normal redirect

[Mav-user] There must be a bug in the XSLT Transformer

2004-07-05 Thread Peter Lerche
NOT WORKING OUTPUT: This is a text 1 This is a text 2 This is a text 3 -- Med venlig hilsen / Yours sincerely Peter Lerche http://easyspeedy.com ___ European Dedicated Server Hosting Extremely low prices, secure, and reliable Linux and BSD distributions

Re: [Mav-user] There must be a bug in the XSLT Transformer

2004-07-05 Thread Peter Lerche
Hi Pierre, The was just a typo - should have read lt;elementgt; The problem is still there. Peter Lerche On Monday 05 July 2004 15:14, Pierre de Soyres wrote: your XSL source must be XML valid : you should write element/ (with auto-closing tag) instead element . On Mon, 5 Jul 2004 15:05

[Mav-user] I want to create a new type of jsp/jsf transformer

2004-07-30 Thread Peter Lerche
hilsen / Yours sincerely Peter http://easyspeedy.com ___ European Dedicated Server Hosting Extremely low prices, secure, and reliable Linux and BSD distributions only

[Mav-user] Modules for Maverick

2004-08-16 Thread Peter Lerche
is reinventing the same modules over and over again instead of sharing them. Thanks. -- Med venlig hilsen / Yours sincerely Peter http://easyspeedy.com ___ European Dedicated Server Hosting Extremely low prices, secure, and reliable Linux and BSD distributions

[Mav-user] Character encoding in transforms

2006-01-05 Thread Peter Chase
Hi, I have been happily using Maverick in my Velocity-based Web application for a long time. However, only now am I trying to make my Web application display non-ASCII characters, using UTF-8 encoding. It's not working. I find that pages that are generated by a simple view, with no transforms,

[Mav-user] Re: Character encoding in transforms

2006-01-05 Thread Peter Chase
Following up on my previous message, I can confirm that character encoding in ServletOutputStreamBuffer does seem to be the cause of the problem. I made a local build of Maverick from version 2.2.3 and hard-coded charset to UTF-8 in ServletOutputStreamBuffer. This fixed all my problems with

[Mav-user] Character encoding patch?

2006-01-05 Thread Peter Chase
Is anything wrong with the following patch, to make Maverick transforms automatically pick up the character encoding? public FakeHttpServletResponse(HttpServletResponse wrapMe) { super(wrapMe); if (log.isDebugEnabled())