Re: Flows Continuations

2005-04-14 Thread stefan pickschneider
Hi, we have a problem using continuations... [...] function editParent() { [...] } function addChild( parent ) { [...] } We'll tried it this way - looks promising. Thanks a lot! stefan. - To unsubscribe, e-mail: [EMAIL PROTECTED]

Flows Continuation

2005-04-13 Thread stefan pickschneider
Hello everybody, we have a problem using continuations... we have two forms: editParent and editChild - both use flowscript. in the editparent form is a repeater that shows the assigned child. if the user adds an child the editChild form is opened. so far we couldn't figure out how one can return

Re: Encoding Problem: File Upload and UTF-8

2005-03-07 Thread stefan pickschneider
This problem is already fixed, though in a different way: http://svn.apache.org/viewcvs.cgi/cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/servlet/CocoonServlet.java?rev=106200r1=55730r2=106200 Hey Bruno, thanks for your reply. I am not sure if the above patch fixes the problem I

Re: Encoding Problem: File Upload and UTF-8

2005-03-07 Thread stefan pickschneider
Hey Bruno, I am not sure if the above patch fixes the problem I mentioned. The patch replaces this.defaultFormEncoding); by this.containerEncoding); In our configuration the defaultFormEncoding == containerEncoding == UTF-8 - so the patch doesn't seem to have a influence on our problem :-(

Re: Encoding Problem: File Upload and UTF-8

2005-03-07 Thread stefan pickschneider
It should work the same for both normal and multipart forms, without use of the SetCharacterEncodingAction. You do need the fix though I pointed to in a previous mail, since that one is not yet in Cocoon 2.1.6 IIRC. Got it ;-) Should've tried that first. It just works. Thanks a lot! Stefan.

Re: Encoding Problem: File Upload and UTF-8

2005-03-06 Thread stefan pickschneider
Bertrand Delacretaz wrote: Le 5 mars 05, à 15:17, stefan pickschneider a écrit : ..we have a problem with the encoding, cforms and file uploads. Did you look at http://wiki.apache.org/cocoon/RequestParameterEncoding ? It might give some answers. -Bertrand Hello, thanks for your suggestion

Encoding Problem: File Upload and UTF-8

2005-03-05 Thread Stefan Pickschneider
at the same time? Thanks a lot, stefan. -- chemmedia AG - E-Business E-Learning Multimedia Stefan Pickschneider Technical Consultant Phone +49(0)371-5347693 Mobil: +49(0)177-6899791 Fax +49(0)700-CHEMMEDIA http://www.chemmedia.de

Encoding Problem: File Upload and UTF-8

2005-03-05 Thread stefan pickschneider
Hello, we have a problem with the encoding, cforms and file uploads. We have a form that allows to upload a file and on the same form an input field to enter the corresponding title. The upload works but if you enter special characters (like german umlauts) these are sent as garbage ('?'). The