[Rife-users] rife forms

2006-04-12 Thread Emmanuel Okyere
hello all, I have finally found some free time, as the last app I worked on is getting ready to get out of the shop, and so I have started stabbing at getting rife to talk petshop. i'm however having problems with rife printing a simple form; it does retrieve the template and prints it out,

Re: [Rife-users] how to store raw data as a file in native file system instead of in database within rife cmf ?

2006-04-12 Thread Geert Bevin
Hi Wangwei, it is possible, though it is not implemented. A ContentQueryManager interfaces with a ContentManager, by default is uses DatabaseContent. You can however provide your own one in the constructor: http://rifers.org/docs/api/com/uwyn/rife/cmf/dam/

Re: [Rife-users] Loading a domain object onto a bean

2006-04-12 Thread Geert Bevin
Hi Mark, this is something that RIFE doesn't do automatically yet, but it's scheduled in the issue tracker. The main issue is the design of how it would work without dragging performance down. Ideally this should be lazy-loading, but that's only possible through byte-code modification I

Re: [Rife-users] i18n patch

2006-04-12 Thread Geert Bevin
Hi Pierre, Not always. For exemple it can be: - through plugins like rife-crud: the crud bundles will be put at the top of the list (see below the patch I use for CrudElement.decorateTemplate) - and/or through site configuration: then the final element, for exemple the Add one, can

答复: [Rife-users] how to store raw data as a file in native filesystem instead of in database within rife cmf ?

2006-04-12 Thread wang wei
Thanks Geert. I will look at it. Once it is implemented, I will be very glad if it can be integrated into rife :) Cheers wangwei -邮件原件- 发件人: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 代 表 Geert Bevin 发送时间: Wednesday, April 12, 2006 2:48 PM 收件人: RIFE users list : questions,bug reports

Re: [Rife-users] Classloader error

2006-04-12 Thread Geert Bevin
Hi Eddy, can you please confirm that for these last tests you put the jpox libraries outside the web application WEB-INF/lib dir? You told me yesterday that you got an exception using regular JSP too, is that not the case anymore? Best regards, Geert On 12 Apr 2006, at 11:13, Eddy

Re: [Rife-users] Classloader error

2006-04-12 Thread Eddy Young
Geert Bevin wrote: Do you have a relatively encapsulated testcase for me to trace this with? I do, but we will have to take this in private. We can still post the findings once we've sorted this out. I'll get in touch on IM. Eddy -- http://coding.mu http://priscimon.com/blog

Re: [Rife-users] Classloader error

2006-04-12 Thread Geert Bevin
sure On 12 Apr 2006, at 11:46, Eddy Young wrote: Geert Bevin wrote: Do you have a relatively encapsulated testcase for me to trace this with? I do, but we will have to take this in private. We can still post the findings once we've sorted this out. I'll get in touch on IM. Eddy --

Re: [Rife-users] i18n patch

2006-04-12 Thread Geert Bevin
Ah I see, I read over it. Makes sense now. Another question, why is TranslatorInCreation needed? On 12 Apr 2006, at 09:57, Raoul Pierre wrote: Geert, Not always. For exemple it can be: - through plugins like rife-crud: the crud bundles will be put at the top of the list (see below the

Re: [Rife-users] Classloader error

2006-04-12 Thread Eddy Young
Eddy Young wrote: Hi all, Is there a known classloader-related error between RIFE and Log4J? Indeed, there was a classloader-related problem between RIFE and Log4j, as Geert managed to track down. But, it is debatable whether the fault can be attributed to RIFE at all. If you want to know

Re: [Rife-users] i18n patch

2006-04-12 Thread Raoul Pierre
Geert, Another question, why is TranslatorInCreation needed? It's just I didn't want to put setSupport method in Translator as this method is never needed by Translator users. But the other methods of Translator are used during the construction of Translator instances. Pierre

[Rife-users] add a parameter to flowlink

2006-04-12 Thread Henk
Hi, enyoing Rife more and more (productivity encreased a lot compared to Spring MVC), I do have this stupid problem. I'm developing a calendar in which I have two links : one for going to the previous month and one for the next month. Both should redisplay the current page, but the parameter

Re: [Rife-users] add a parameter to flowlink

2006-04-12 Thread Tyler Pitchford
Henk, Using the new flowlink specific syntax in RIFE 1.4 this is easy and clean: flowlink srcexit=calnext destid=Calendar datalink srcoutput=prevmonth destinput=month/ /flowlink flowlink srcexit=calprev destid=Calendar datalink srcoutput=nextmonth destinput=month/