VelocityGenerator: error when sending string containing ampersand

2005-10-21 Thread Andreas Deininger
Hi, I wrote the following, very simple flowscript: function velotest() { cocoon.sendPage(abstract.vm, { test : vmvm } ); } With abstract.vm being an velocity template processed by the Velocity Generator: ?xml version ? data$test/data I receive the following error, due to the occurence

Re: VelocityGenerator: error when sending string containing ampersand

2005-10-24 Thread Andreas Deininger
2005/10/23, Joerg Heinicke [EMAIL PROTECTED]: This seems to be a bug with the Velocity Generator as the sent value is not escaped, i.e. remains and does not get converted to amp; in the resulting XML. You might file a bug report for it. I would like to, however I encounter the following

Re: Cocoon and Log4J

2005-10-26 Thread Andreas Deininger
Omar, do you have logkit-1.2.2.jar inside the WEB-INF/lib directory of your cocoon directory? $jar -tf logkit-1.2.2.jar | grep /Logger.class org/apache/log/Logger.class I'm running the same configuration, these are the logging-related jar-files in my installation:

CForms error: Invalid submit id (no such widget)

2005-11-25 Thread Andreas Deininger
Hi, I coded a form using CForms. Inside this form is a repeater which allows to add/delete rows. I invoke this form via the following line inside an apple: appleResponse.sendPage(Form-submission_form-Pipe, viewData); Everything is working fine, I can insert and delete arbitrary rows of my

Re: CForms error: Invalid submit id (no such widget)

2005-11-27 Thread Andreas Deininger
Sylvain, thanks for the info! Since I'm considering an upgrade to 2.1.8 I would like to ask whether the bug you mentioned is fixed in 2.1.8 already? Or in SVN only? TIA Andreas 2005/11/27, Sylvain Wallez [EMAIL PROTECTED]: Andreas Deininger wrote: Hi, I coded a form using CForms. Inside

rendering input field as htmlarea

2005-12-02 Thread Andreas Deininger
Hi *, the cocoon user guide states: I'm using cforms and inside my template I have something like: ft:widget id=... fi:styling type=textarea/ /ft:widget The field is rendered as textarea, everything is fine. Now the cocoon user documentation states: To render the input field as a

getting values of widgets inside fd:union

2005-12-20 Thread Andreas Deininger
Hi, I encountering a problem with CForms: inside a multi-step wizard, I defined a selection-list of persons. The last item of that list is Enter your own person data below. If you select that item, an imput mask for the person data appears. I got that working with the code below. The form