Generate HTML from 2 XMLs

2008-10-15 Thread arj123
Hi All, 1. Is it possible to generate a HTML from more than one XML files with there own Xsl. for example there are two xmls say X1.xml and X2.xml. And two xsl files X1Xsl.xsl(for X1.xml) and X2Xsl.xsl(for X2.xml). Now I want to generate one html out of these two xmls. Is it possible. The

RE: Generate HTML from 2 XMLs

2008-10-15 Thread Jasha Joachimsthal
-Original Message- From: arj123 [mailto:[EMAIL PROTECTED] Sent: woensdag 15 oktober 2008 8:28 To: users@cocoon.apache.org Subject: Generate HTML from 2 XMLs Hi All, 1. Is it possible to generate a HTML from more than one XML files with there own Xsl. for example there

AW: Generate HTML from 2 XMLs

2008-10-15 Thread Matthias Müller
Hi, 1. you need to aggregate the output of these two xml transformation map:match pattern=firstXSLT map:generate type=file src=firstXML/ map:transform type=xslt src=firstXSL.xsl / map:serialize type=xml/ /map:match map:match pattern=secondXSLT

Re: [C2.2] Problem after Hosting Block

2008-10-15 Thread Reinhard Pötz
Matthias Müller wrote: Hi, I finally converted my C2.1 App to C2.2. I used the block archetype for that, so my project is packaged as jar. To deploy it as a war (for tomcat5.x) i created a small webapp-archetype project that hosts my block project (added as dependency). If i call my deployed

Re: AJAX in CForms... not that simple?!

2008-10-15 Thread DAVIGNON Andre - CETE NP/DIODé/PANDOC
Hi Derek, I have been working with Cocoon + CForms for a while now, but now have to deal with some more complex processing requirements. I had thought this would be a simple matter, but alas not... Issue 1. I have heavily customized stylesheets that I use for form display. Going back to

AW: [C2.2] Problem after Hosting Block

2008-10-15 Thread Matthias Müller
i use the latest xercesImpl 2.8.1 what i found out so far: the error i receive: -- Could not parse form definition. at [FormManager] - file:///pathToMyWebapp/target/work/blocks/myBlock/forms/myForm_definition.xml at Form -

AW: AJAX in CForms... not that simple?!

2008-10-15 Thread Christofer Dutz
Hi Derek Well I can help you with the resources ;-) They are located in jar-files. Depending on the resources you are using Cocoon-forms-block.jar: org.apache.cocoon.forms.resources.* Dojo-rsrc-xxx.jar: org.apache.cocoon.dojo.rerources.* I usually make them available using the following

AW: AW: [C2.2] Problem after Hosting Block

2008-10-15 Thread Matthias Müller
i also used jetty for this, with the same effect. so, i don't think that's a tomcat problem. the question is, why do i have problems only when loading my block with a hosting webapp. i need a way to make a war that includes my block and as far as i understood the only way to do this is to

[HELP]Cannot convert null to an object.

2008-10-15 Thread Kociaba, Danielle M MSgt USAF PACAF 703 AMXS/MXAEA
Description:org.apache.cocoon.ProcessingException: Error calling continuation at [EcmaError] - file:/var/www/vhosts/pacaf.ecatts.com/ecatts/webapps/ROOT/flow/utilities .js:73:0 at file:/var/www/vhosts/pacaf.ecatts.com/ecatts/webapps/ROOT/flow/utilities .js:87:-1 at

Re: How to do ajax in Cforms

2008-10-15 Thread imran
asif_zzz wrote: Hi, Im new to cocoon. Im using cocoon 2.1.10 CForms. In my page ,i've a textarea,button and a list. I've already enabled ajax in my CForm. When i press that button, i need add the information(Java class object) to list using ajax. Im processing the list using repeaters to

Re: AJAX in CForms... not that simple?!

2008-10-15 Thread Derek Hohls
Andre Bu that is what I attempted to do - if you look at my original post, you will see the files I extracted and where I put them. Are there some that are missing... or how can I tell if they are? Derek On 2008/10/15 at 03:34, in message [EMAIL PROTECTED], DAVIGNON Andre - CETE

Re: AW: AW: AJAX in CForms... not that simple?!

2008-10-15 Thread Derek Hohls
Thanks Chris I have tried this, and it seems the main error that I am getting is: cocoon is not defined script script=text/javascriptcocoon.forms.ajax = true;/script I suppose that if there no AJAX set, then nothing else will work. But how does this help me find out what is missing? Thanks

Re: AJAX in CForms... not that simple?!

2008-10-15 Thread DAVIGNON Andre - CETE NP/DIODé/PANDOC
Thanks, but this does not seem to make any difference. Any chance you have a simple/test application, where the resources are explicitly broken out in the way I have done? Alternately, are there any hints you can give me on how to make an AJAX form that does not make of use the default form

Re: AW: AW: AJAX in CForms... not that simple?!

2008-10-15 Thread DAVIGNON Andre - CETE NP/DIODé/PANDOC
I have tried this, and it seems the main error that I am getting is: cocoon is not defined script script=text/javascriptcocoon.forms.ajax = true;/script I suppose that if there no AJAX set, then nothing else will work. But how does this help me find out what is missing? It seems Dojo is not

Caching XMLResourceBundle in a disk persistent store not possible

2008-10-15 Thread Laurent Medioni
Hi, Our process of assembling a XMLResourceBundle being quite costly, I tried to use the core store, configured to be disk persistent. That is when I realised that XMLResourceBundle is not Serialisable (well, one of the log files told me first...). Do you see any reason why XMLResourceBundle

Re: AW: AJAX in CForms... not that simple?!

2008-10-15 Thread Derek Hohls
Chris Thanks, but this does not seem to make any difference. Derek On 2008/10/15 at 10:08, in message [EMAIL PROTECTED]@c-ware.de, Christofer Dutz [EMAIL PROTECTED] wrote: Hi Derek Well I can help you with the resources ;-) They are located in jar-files. Depending on the resources you are

validation of fields defined as double or integer?

2008-10-15 Thread Fuat Akal
Hello all, I receive a strange(?) behaviour when I enter non-digit characters into numeric fields. Assume that you define a field of double type as: fd:field id=myField fd:datatype base=double/ /fd:field When I enter a value like 123abc, the value of myField becomes 123. I would

AW: AW: AW: AJAX in CForms... not that simple?!

2008-10-15 Thread Christofer Dutz
Hi Derek, make sure you have a head-Tag somewhere in your template. Otherwise the forms-xslt's won't know where to put the head stuff. I usually add some head/ directly below my templates root-element. You can then safely copy them somewhere else. Chris -Ursprüngliche Nachricht- Von:

How to do ajax in Cforms

2008-10-15 Thread asif_zzz
Hi, Im new to cocoon. Im using cocoon 2.1.10 CForms. In my page ,i've a textarea,button and a list. I've already enabled ajax in my CForm. When i press that button, i need add the information(Java class object) to list using ajax. Im processing the list using repeaters to show the information.

Re: Encrypting PDF Files [resend]

2008-10-15 Thread Daniel Bruessler
Hello Gary, if nobody knows a solution you can do this: put cocoon and fop as extra projects in eclipse. Then you compile it and put them as external depedendcies in your project, so you see what part of your configuration is the problem. Cheers! Daniel Hello I posted this question a

Re: AW: [C2.2] Problem after Hosting Block

2008-10-15 Thread Reinhard Pötz
Matthias Müller wrote: i use the latest xercesImpl 2.8.1 what i found out so far: the error i receive: -- Could not parse form definition. at [FormManager] - file:///pathToMyWebapp/target/work/blocks/myBlock/forms/myForm_definition.xml at Form -

AW: [C2.2] Problem after Hosting Block

2008-10-15 Thread Matthias Müller
no special protocol (so i think it's file). maybe it helps when you know that i use a flow.js -- cocoon.load(servlet:forms:/resource/internal/flow/javascript/Form.js); function myFunc() { var form = new Form(cocoon.parameters[definitionURI]); form.showForm(myFunc-display-pipeline); }

Re: AJAX in CForms... not that simple?!

2008-10-15 Thread Derek Hohls
André Thanks, but this does not seem to make any difference. Any chance you have a simple/test application, where the resources are explicitly broken out in the way I have done? Alternately, are there any hints you can give me on how to make an AJAX form that does not make of use the default

kids nude, pthc, little lolitas, preteen bbs, pre teen

2008-10-15 Thread Aurora Oaks
--- UNDEGROUND PORN VIDS! http://adultsexkey.com/secret.video.p1/ http://adultsexkey.com/secret.video.p2/ http://adultsexkey.com/secret.video.p3/ http://adultsexkey.com/secret.video.p4/ http://adultsexkey.com/secret.video.p5/

Re: [C2.2] Problem after Hosting Block

2008-10-15 Thread Reinhard Pötz
Matthias Müller wrote: i also used jetty for this, with the same effect. so, i don't think that's a tomcat problem. the question is, why do i have problems only when loading my block with a hosting webapp. What protocol do you use to get access to your form definitions? servlet, cocoon or

AW: AW: AJAX in CForms... not that simple?!

2008-10-15 Thread Christofer Dutz
Hi Derek, to sort out my resource problems I user Mozilla together with Firebug. This way I could see, which resources were requested and what the result was. For all failling resources having a look at cocoons response was quite helpfull. Chris -Ursprüngliche Nachricht- Von: Derek

child pornography, preteens, preteen naked, naked children, preteen sex

2008-10-15 Thread Aurora Oaks
--- UNDEGROUND PORN VIDS! http://adultsexkey.com/secret.video.p1/ http://adultsexkey.com/secret.video.p2/ http://adultsexkey.com/secret.video.p3/ http://adultsexkey.com/secret.video.p4/ http://adultsexkey.com/secret.video.p5/