Re: Accessing EJBs from generator

2008-08-01 Thread Markus Brueckner
Hi, Am Sonntag 27 Juli 2008 11:42:30 schrieb Markus Brückner: Google etc. are not really helping. I found some people having the same problem, but no answer. The list archive was no help either (at least going back until january). So I running out of options here: what is this $Proxy86

Re: Rewriting EncodeURLTransformer to encode the locale parameter

2008-08-01 Thread Kjetil Kjernsmo
On Thursday 31 July 2008 20:11:10 Robin Wyles wrote: Maybe you could use the LinkRewriterTransformer [1] to achieve this   along with your own custom InputModule to add the locale parameter. Oh, OK. Actually, I looked at that but realised that I didn't quite understand what it did, I thought

Re: Cocoon 2.2 flowscipt debugger possible?

2008-08-01 Thread Grzegorz Kossakowski
Hugh Sparks pisze: I read a few posts that suggest that this is impossible, but I decided to try the flowscript debugger anyway. I'm running under Tomcat, so I copied the file cocoon-flowscipt.xconf from the cocoon 2.2 svn truck to this directory in my Tomcat installation:

pass repeater from database to the form

2008-08-01 Thread Мария Григорьева
I'm trying to pass the parameters from the database to the repeater in the form. var repeater=form.getChild(test); for (var i = 0; i comp_in_composition.size(); i++) { var row = repeater.getRow(i); var type =

Re: hi

2008-08-01 Thread student csu
Hi, I wanted to know how to increase the log level of cocoon .I am using jbuilder 2008 .Please tell me the step to go for increasing the log level of cocoon. Thanks , su On Thu, Jul 24, 2008 at 9:35 AM, Joerg Heinicke [EMAIL PROTECTED]wrote: On 24.07.2008 00:30, student csu wrote: *

Re: pass repeater from database to the form

2008-08-01 Thread Ralph Rauscher
Use var row = repeater.addRow(); instead of var row = repeater.getRow(i); Мария Григорьева wrote: I'm trying to pass the parameters from the database to the repeater in the form. var repeater=form.getChild(test); for (var i = 0; i comp_in_composition.size(); i++) {

Re: hi

2008-08-01 Thread Bhavya Sharma
have a look at following link http://cocoon.apache.org/2.2/core-modules/core/2.2/1399_1_1.html bhavya On Fri, Aug 1, 2008 at 10:37 PM, student csu [EMAIL PROTECTED] wrote: Hi, I wanted to know how to increase the log level of cocoon .I am using jbuilder 2008 .Please tell me the step to go

Re: hi

2008-08-01 Thread André Davignon
Hi ;-), Another subject than hi could be welcome. And useful for people searching for help when having a look at the mailing list archives. Regards. André - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: hi

2008-08-01 Thread student csu
thanks ! su On Fri, Aug 1, 2008 at 10:40 AM, Bhavya Sharma [EMAIL PROTECTED]wrote: have a look at following link http://cocoon.apache.org/2.2/core-modules/core/2.2/1399_1_1.html bhavya On Fri, Aug 1, 2008 at 10:37 PM, student csu [EMAIL PROTECTED]wrote: Hi, I wanted to know how to

Re: pass repeater from database to the form

2008-08-01 Thread Magsend
Thanks a lot, Ralph!!! It works now!!! Ralph Rauscher-2 wrote: Use var row = repeater.addRow(); instead of var row = repeater.getRow(i); Мария Григорьева wrote: I'm trying to pass the parameters from the database to the repeater in the form. var

Re: pass repeater from database to the form

2008-08-01 Thread Magsend
I'm using FOR to pass the params to the repeater: for (var i = 0; i comp_in_composition.size(); i++) { var row = repeater.addRow(i); . } How to create child nodes for the row element? I found addWidget() procedure in API, but it doesn't work: For example:

Re: pass repeater from database to the form

2008-08-01 Thread Magsend
Sorry, again... Stupid question... :) I've understood that --- row.getChild(type).setValue(comp_in_composition.get(i).get(type)); --- is the passing params to the form... So I don't need formMap.put()... :) Magsend wrote: But now, I have another problem... I need to

Re: Finding a new name for Corona (a Cocoon rewrite)

2008-08-01 Thread Lehtonen, Mika
Sorry about the last. Just had a pint too much. But talking about the suggestion; 1) it fits on the theme 2) Morus can be interpreted as 'More Us', refering to the community. And Morus is the genus of the tree feeding the creatues manufacturing the silk.. cheers, mika P.S. Hopefully it

about increasing the log level of cocoon

2008-08-01 Thread student csu
I am going through the link http://cocoon.apache.org/2.2/core-modules/core/2.2/1399_1_1.html but still unable to increase the log level as I have to find the xml that is combining with that xslt. I have build the project from importing .war files of project already existed .So how to increase the

Re: hi

2008-08-01 Thread student csu
Sure ! no problem! thanks On Fri, Aug 1, 2008 at 11:08 AM, André Davignon [EMAIL PROTECTED]wrote: Hi ;-), Another subject than hi could be welcome. And useful for people searching for help when having a look at the mailing list archives. Regards. André

[C2.2] Passing sitemap parameters to blocks - a mess?

2008-08-01 Thread Hugh Sparks
I have a transform implemented in a block that I call using servletService: map:generate src=myStuff/ map:transform type=servletService map:parameter name=service value=servlet:myBlock:/myTransform?p1=xxxamp;p2=yyy/ /map:transform In the actual sitemap, when the list of request