RE: CastorTransformer

2002-07-10 Thread TREGAN Fabien
It's called a CastorTransformer because it is a cocoon transformer. So why is it a transformer ? In fact, it might have been a generator. But when you use the CastorGenerator, what you usually want to do is to INSERT the xml serialization of a Bean into the current flow of datas. Image you have

RE: Cocoon status page ??

2002-07-10 Thread TREGAN Fabien
I deploy the cocoon servlet as part of a j2ee application which uses other servlets as well. So, I don't have the / mapped to cocoon (just *.xsp and *.xml). How can I access Cocoons status page normally accessed with /cocoon/status just change the status pipe so it match something that end

RE: [HELP] How Can I do ?

2002-07-10 Thread TREGAN Fabien
Look for a thread whom subject is Help on Sitemap wich started in march 2002. note for diana : Should this Question be considered as Frequently Asked ? ? -Message d'origine- De: illo [mailto:[EMAIL PROTECTED]] Date: mardi 9 juillet 2002 16:22 À: [EMAIL PROTECTED] Objet: [HELP] How Can I

RE: Howto select EVERY Image ending with *.gif ?

2002-07-10 Thread TREGAN Fabien
have a look at the regular expression matcher at cocoon/documents/userdocs/matchers/matchers.html, you'll be able to do it with only 1 regexp matcher. fabien. -Message d'origine- De: Per Kreipke [mailto:[EMAIL PROTECTED]] Date: mardi 9 juillet 2002 19:15 À: [EMAIL PROTECTED] Objet: RE:

cocoon-users-unsubscribe@xml.apache.org

2002-07-10 Thread sanjay dubey
On Wed, 10 Jul 2002 TREGAN Fabien wrote : have a look at the regular expression matcher at cocoon/documents/userdocs/matchers/matchers.html, you'll be able to do it with only 1 regexp matcher. fabien. -Message d'origine- De: Per Kreipke [mailto:[EMAIL PROTECTED]] Date: mardi 9

RE: cocoon-users-unsubscribe@xml.apache.org

2002-07-10 Thread TREGAN Fabien
o damn ! I didn't knew my answer was such a boring one... -Message d'origine- De: sanjay dubey [mailto:[EMAIL PROTECTED]] Date: mercredi 10 juillet 2002 08:41 À: [EMAIL PROTECTED] Objet: [EMAIL PROTECTED] On Wed, 10 Jul 2002 TREGAN Fabien wrote : have a look at the regular expression

RE: Authentication Framework

2002-07-10 Thread Carsten Ziegeler
Stephan Michels wrote: On Tue, 9 Jul 2002 [EMAIL PROTECTED] wrote: Hello Carsten, thanks again for your patch for the Authentication Framework. I tried it out and now can access my error messages with the temp session context. On the other side - with the new

Re: trouble getting return values from an Action Map

2002-07-10 Thread Christian Haul
On 09.Jul.2002 -- 05:39 PM, Lai, Harry wrote: If you're planning to pass multiple parameters, though, I think someone posted something about a bug with escaping the ampersand (http://marc.theaimsgroup.com/?l=xml-cocoon-usersm=101828372801806w=2) Harry, this bug stems from the fact that a

Réf. : Language Exception

2002-07-10 Thread Othman Haddad
hi, that means that you've something wrong in your sitemap.xmap... try to use the default sitemap of cocoon2 before using your own one.. hope it helps ---Message original--- De : [EMAIL PROTECTED] Date : mercredi

HSSF-Gnumeric XML file format - Unreachable URL, did anyone download previously?

2002-07-10 Thread Lorenzo De Sio
Hi all, I found an old posting with pointers to documentation about the Gnumeric XML file format, which is the one used by the HSSF serializer. One link concerned a PDF file contained detailed notes on the XML file format used by Gnumeric, at the following URL:

xsl vs cocoon

2002-07-10 Thread Step
Hello! Just started trying to understand cocoon. From the Introduction the logic-content-style model is clear and impressive. CAn I call cocoon as a two layered XSLing? cocoon -???- xsl on xsl with the lower xsl generating the content from the logic. --st

RE: xsl vs cocoon

2002-07-10 Thread ROSSEL Olivier
Sure. The sitemap.xmap file makes a mapping between URLs received from client side to a Cocoon pipeline. A pipeline is a chain of java components that create or modify a XML flux. For a given URL, Cocoon parses the sitemap.xmap, gets the corresponding pipeline description, creates the

SUMMARY: dynamic src for map:generate

2002-07-10 Thread Thomas Balthazar
-- -- the question -- -- what can i do if i want to have a source that is dynamicly generated for the map:generate src=xxx/ tag in the sitemap.xmap file? i want the src attribute to be defined depending on the link the user click on. (e.g. :

Re: SUMMARY: dynamic src for map:generate

2002-07-10 Thread Christian Haul
Thomas, thank you for your great summary! Chris. -- C h r i s t i a n H a u l [EMAIL PROTECTED] fingerprint: 99B0 1D9D 7919 644A 4837 7D73 FEF9 6856 335A 9E08 - Please check that your question has not

Réf. : RE: xsl vs cocoon

2002-07-10 Thread Othman Haddad
hi, i agree with olivier,.. , you can also make a component conditionnal depending on (for example) a request parameter value inthe HTTP request it's partially true, because right now (which is a pitty) there's no sitemap element that can get a

Re: Réf. : RE: xsl vs cocoon

2002-07-10 Thread Step
Okay, what is a sitemap? --st. - Please check that your question has not already been answered in the FAQ before posting. http://xml.apache.org/cocoon/faq/index.html To unsubscribe, e-mail: [EMAIL PROTECTED] For

RE: Réf. : RE: xsl vs cocoon

2002-07-10 Thread ROSSEL Olivier
it's partially true, because right now (which is a pitty) there's no sitemap element that can get a parameter value (which is sometimes very important)... Can't you use an action to set a value for a sitemap variable, then use that variable inside you component description? hi, i agree with

RE: Réf. : RE: xsl vs cocoon

2002-07-10 Thread ROSSEL Olivier
What's a sitemap? Well, as I said before, it is the file (called sitemap.xmap) which maps URLs to cocoon behaviour. Each time a URL request is sent to Cocoon, the sitemap resolver parses the whole file sitemap.xmap (==the sitemap), tries to find which map:match elements match the current URL.

Réf. : RE: Réf. : RE: xsl vs cocoon

2002-07-10 Thread Othman Haddad
With 2.1-dev the RequestParameterInputModule can be used to to get the value of a field in an xsp and select apipeline in function of it ,but not before!!! do you have any other key to do that? ---Message original--- De :

RE: Réf. : RE: Réf. : RE: xsl vs cocoon

2002-07-10 Thread ROSSEL Olivier
I am not sure to understand what you want to do exactly. -Message d'origine- De: Othman Haddad [mailto:[EMAIL PROTECTED]] Date: mercredi 10 juillet 2002 11:15 À: [EMAIL PROTECTED] Objet: Réf. : RE: Réf. : RE: xsl vs cocoon With 2.1-dev the RequestParameterInputModule can be used to to

Re: Cocoon deli is not work.

2002-07-10 Thread ???
Following Codes are part of stylesheet file. === xsl:param name=deli-capabilities/ xsl:param name=accept/ === variable $deli-capabilities is many uses in xsl file. So you mean that this variable is not setting correctly? But, i think

Réf. : RE: Réf. : RE: Réf. : RE: xsl vs cocoon

2002-07-10 Thread Othman Haddad
let say: i've an xsp which contains a file input: "x", the value of "x" represent xslt file which i want to apply on a "z.xml" file. any idea in cocoon2.02 to do that? ---Message original--- De : [EMAIL PROTECTED]

Re: Cocoon deli is not work.

2002-07-10 Thread Joerg Heinicke
It seems that one of the parameter is passed as string and anywhere in the XSLT there is a xsl:for-each select=$param-name/ or a xsl:apply-templates select=$param-name/. If the param is not set correctly or if the stylesheet has a bug - I don't know. Try to change xsl:param

cocoon 2.1

2002-07-10 Thread Othman Haddad
hi everybody, please where and how can i get the snapshot version cocoon2.1 ? thanks IncrediMail - La messagerie électronique a enfin évolué - Cliquer ici

Re: macromedia flash actionscript integration of xml.sendAndLoad() with cocoon2

2002-07-10 Thread Daniel Meier
arjé, sorry to desturb again. but do you have a sample for the cocoon part (sitemap, ...)? thx. daniel - Original Message - From: Arjé Cahn [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, July 08, 2002 10:20 AM Subject: RE: macromedia flash actionscript integration of

Re: macromedia flash actionscript integration of xml.sendAndLoad() with cocoon2

2002-07-10 Thread Daniel Meier
arjé, sorry to desturb again. but do you have a sample for the cocoon part (sitemap, ...)? thx. daniel - Original Message - From: Arjé Cahn [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, July 08, 2002 10:20 AM Subject: RE: macromedia flash actionscript integration of

Re: mod_webapp or mod_jk?

2002-07-10 Thread leo leonid
On Tuesday, July 9, 2002, at 08:21 Uhr, Skip Carter wrote: I've found a nasty problem with mod_webapp (Apache 1.3.24, Tomcat 4.0.4b3): sometimes (say, 5% of requests) the communications between the two servers (the web-server was on a Solaris box, the application-server on another

SDX on Live Sites powered by CocoonHello,

2002-07-10 Thread Michel Bottin
Hi! Here are some sites powered by Cocoon 1 using SDX (XML Documentary System) which is a layer unifying Cocoon features with the power of Lucene. We will be glad to be listed publicy on the page Live Sites powered by Cocoon. Thanks in advance. 1. A portal of cultural resources (in

R: HSSF-Gnumeric XML file format - Unreachable URL, did anyone download previously?

2002-07-10 Thread Lorenzo De Sio
Thanks to Denis Thierry and Jens Lorenz for sending me the file! L. -Messaggio originale- Da: Denis [mailto:[EMAIL PROTECTED]] Inviato: mercoledì 10 luglio 2002 11.50 A: [EMAIL PROTECTED] Oggetto: Fw: HSSF-Gnumeric XML file format - Unreachable URL, did anyone download previously?

Re: [HELP] How Can I do ?

2002-07-10 Thread Diana Shannon
On Wednesday, July 10, 2002, at 02:34 AM, TREGAN Fabien wrote: Look for a thread whom subject is Help on Sitemap wich started in march 2002. note for diana : Should this Question be considered as Frequently Asked ? ? I'll make sure it's added, Fabien. Thanks for flagging it. It would

RE: [HELP] How Can I do ?

2002-07-10 Thread TREGAN Fabien
I'll make sure it's added, Fabien. Thanks for flagging it. It would be wonderful to have a library of sitemap/pipeline snippets, to give users ideas how to accomplish almost anything. But we can only build such a library one snippet at a time. And it takes contributions from all kinds of

Please help, Broken Link on object-refinery WAS [Fwd: HSSF-GnumericXML file format - Unreachable URL, did anyone downl oad previously?]

2002-07-10 Thread Andrew C. Oliver
Dear Mr. Gilbert, I'm a developer whom works on apache cocoon and apache POI. We referenced a piece of documentation hosted on www.jrefinery.com ftp://www.jrefinery.com/pub/jworkbook/gnumeric-xml.pdf. It is also still linked from this page:

Re: R: HSSF-Gnumeric XML file format - Unreachable URL, did anyonedo wnload previously?

2002-07-10 Thread Andrew C. Oliver
cool. Can I get a copy? I'll read through it and mirror it on my server. Lorenzo De Sio wrote: Thanks to Denis Thierry and Jens Lorenz for sending me the file! L. -Messaggio originale- Da: Denis [mailto:[EMAIL PROTECTED]] Inviato: mercoledì 10 luglio 2002 11.50 A: [EMAIL PROTECTED]

[Summary] Profiling with Cocoon 2.1

2002-07-10 Thread Reinhard Poetz
Hi Michael, I use Cocoon2.1dev (I checked it out last week). As it works successfully for me I wrote a summary using my notes I was taking during activating profiling - please try it. If you have problems please respond to [EMAIL PROTECTED] too) - o - Summary: Profiling

(now found at: http://www.superlinksoftware.com/gnumeric-xml.pdf)Re: Fw: HSSF-Gnumeric XML file format - Unreachable URL, did anyone downloadpreviously?

2002-07-10 Thread Andrew C. Oliver
Hi All, Thanks to denis, we've recovered the document in question. I've emailed David Gilbert, the author, and hopefully he'll fix the link. Until such time, you can find it at: http://www.superlinksoftware.com/gnumeric-xml.pdf. The doc is GPL so I suppose its safe for me to host on my

Re: [HELP] How Can I do ?

2002-07-10 Thread Harry J. Foxwell
I'll make sure it's added, Fabien. Thanks for flagging it. It would be wonderful to have a library of sitemap/pipeline snippets, to give users ideas how to accomplish almost anything. some kind of flow chart that allows you to select what kind of task you're trying to accomplish and then

Re: [Summary] Profiling with Cocoon 2.1

2002-07-10 Thread Nicola Ken Barozzi
Reinhard Poetz wrote: Hi Michael, I use Cocoon2.1dev (I checked it out last week). As it works successfully for me I wrote a summary using my notes I was taking during activating profiling - please try it. Coool :-D Thank you very much, these submissions are very appreciated indeed :-) I

Re: Search hits in new page

2002-07-10 Thread M Al-yahya
Hello, Thanks Jeremy for your reply. Well I changed the action of the form to map the pipeline that does the search and the results were displayed in a separate page. Jeremy Quinn wrote: On Wednesday, July 3, 2002, at 01:54 PM, M Al-yahya wrote: Hello, I'm doing XML Search using the

How to write XSL for PDF?

2002-07-10 Thread Cenk Uysal
Hi, I plan to use Cocoon's PDF Serializer. But I don't know how to write XSLs for styling PDF documents. Is there any resource which tells how to do this? __ Do You Yahoo!? Sign up for SBC Yahoo! Dial - First Month Free http://sbc.yahoo.com

Re: How to write XSL for PDF?

2002-07-10 Thread Eric Dalquist
Search for XSL-FO The W3 has the spec for it at http://www.w3.org/TR/xsl/ all the formatting tags fop uses are in the fo namespace defined at that URL. -Eric Dalquist - Original Message - From: Cenk Uysal [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 10, 2002 10:18 AM

Re: How to write XSL for PDF?

2002-07-10 Thread Christoph Gaffga
try http://www.google.com/search?q=XSL-FO+Tutorial From: Cenk Uysal [EMAIL PROTECTED] I plan to use Cocoon's PDF Serializer. But I don't know how to write XSLs for styling PDF documents. Is there any resource which tells how to do this?

Could not access the Component for role: org.apache.avalon.excalibur.xml.Parser

2002-07-10 Thread sheshadri
Hi,I'm trying to get the latest CVS (HEAD) webapp to work but there seems to bea problem withthe JaxpParser.I'm using tomcat 3.2.3 on Win2k JDK 1.3. The exception is as follows: Unknown-thread/ExcaliburComponentManager: Could not access the Component for role:

Serializer that writes to file

2002-07-10 Thread Gerardo_Flores
I want to write a serializer that will write some content to a file, but the filename will have to be passed in as a parameter. I am having trouble getting started. I know that you cannot pass in a parameter to a serializer, but I don't know of another way to do it. I have looked through some

RE: How to write XSL for PDF?

2002-07-10 Thread Peter Sparkes
Try http://www.dpawson.co.uk/xsl/sect3/bk/index.html Its the best I have found Peter -Original Message- From: Cenk Uysal [mailto:[EMAIL PROTECTED]] Sent: 10 July 2002 15:19 To: [EMAIL PROTECTED] Subject: How to write XSL for PDF? Hi, I plan to use Cocoon's PDF Serializer. But I

Text serializer doesn't work

2002-07-10 Thread Cenk Uysal
Hi, I think Text serializer doesn't work because everything is ok in my sitemap and XSL is also ok. But output comes as XML document (maybe MIME type can not be set correctly). It is amazing that it was working before. What can be the problem? __

Re: Debian, httpd and cocoon2 problems

2002-07-10 Thread Stephen Peters
MJ Ray [EMAIL PROTECTED] writes: Albert Cervera Areny wrote: As said in the subject I use Debian with testing packages... Are you trying to use the debian-distributed package of cocoon2? That needs quite a lot of work and is up for adoption at http://bugs.debian.org/146462 That work is

SourceWritingTransformer sample (disregard previous post Serializer thatwrites to file)

2002-07-10 Thread Gerardo_Flores
Sorry, seems that I must have posted my previous question before (have had way too many things on my mind lately). The best solution would seem to be to use the SourceWritingTransformer to simply write my content to a file. To specify the file to write to, would I just have to write an xsl

RE: SourceWritingTransformer sample (disregard previous post Serializer that writes to file)

2002-07-10 Thread Hunsberger, Peter
Also, what if I don't want the final output sent over the wire.how would I stop output from going to the requesting browser? Writing a null (do nothing) serializer would be pretty easy... :-) - Please check that your

SVG problems with use

2002-07-10 Thread Robert Bourdeau
I'm experimenting with SVG using Cocoon. Things work fine, until I attempt to utilize the use element, at which point I get an inexplicable error. Here's the set up: Sitemap fragment: - map:pipelines map:pipeline map:match pattern=svg1.xml map:generate

RE: Extrange problem with Cocoon 2.0.2

2002-07-10 Thread Vadim Gritsenko
1. SEND PLAIN TEXT EMAIL ONLY 2. Search archive: http://marc.theaimsgroup.com/?l=xml-cocoon-usersw=2r=1s=NoSuchFieldEr ror+managerq=b 3. Read also: http://marc.theaimsgroup.com/?l=xml-cocoon-usersm=101183982808469w=2 Read answer number 6. Answers 3 and 4 are obsolete now. Vadim

RE: No-caching for SVG's

2002-07-10 Thread Geoff Howard
Sorry, was out of town for a while and unable to keep up with the list. Did you get this to work? Geoff Howard - Please check that your question has not already been answered in the FAQ before posting.

RE: How to write XSL for PDF?

2002-07-10 Thread Argyn Kuketayev
If you are ready to go with commercial product, then it makes a sense to look at non-XSL-FO products too. E.g. www.faceless.org has Faceless report generator. Its advantage is that its input format is very similar to HTML, you have to make it valid xml document (br/ instead of br) though. So, if

RE: Cache broken in Cocoon 2.1-dev?

2002-07-10 Thread Geoff Howard
I am using caching no problem (though I am not on the very latest HEAD branch, but a few months old). Given that you are upgrading from an older cocoon version, have you checked out the documentation to ensure that you have caching configured correctly? If you have the samples running

RE: NullPointerException starting Cocoon

2002-07-10 Thread Vadim Gritsenko
From: news [mailto:[EMAIL PROTECTED]] On Behalf Of Sven Kuenzler Sent: Monday, July 08, 2002 5:50 AM To: [EMAIL PROTECTED] Subject: NullPointerException starting Cocoon Trying to install latest 2.0.3 cvs on Tomcat 4.0.4 (JDK 1.3_03), I get: Cocoon 2.0.3 CVS, Tomcat 4.0.4, JDK 1.3 - this

[SUMMARY] JspReader/JspGenerator in 2.0.2

2002-07-10 Thread Lajos Moczar
Hi all - I've seen several rather frustrated posts from users trying to figure out how to make JspReader and/or JspGenerator work in Cocoon 2.0.2. This email describes how. JspReader Edit src/java/org/apache/cocoon/reading/JSPReader.java and replace the following lines (119-132):

Re: Réf. : RE: xsl vs cocoon

2002-07-10 Thread J.Pietschmann
Othman Haddad wrote: it's partially true, because right now (which is a pitty) there's no sitemap element that can get a parameter value (which is sometimes very important)... There is a RequestParamAction and a RequestParameterExistsAction, and various components can take a

Re: Serializer that writes to file

2002-07-10 Thread Andrew C. Oliver
Someone correct me if I' m wrong but... At the moment, I think you'll have to write an Action for this. AFAIK Serializers are currently tied to the response output stream. Personally, I think that cocoon should ultimately seperate the location concern and allow multiple serializers in a

nested elements in esql logicsheets

2002-07-10 Thread Stephen Ng
After bashing my head a little trying to figure out how to use dynamic tag parameters in esql, I finally figured it out and have a few (constructive, I hope) suggestions. Documentation: 1. http://xml.apache.org/cocoon/userdocs/xsp/logicsheet-concepts.html contains a lot of information which is

[ANNOUNCEMENT] Second Open Content Management Conference

2002-07-10 Thread Michael Wechner
Dear Group OSCOM is organizing the Second Open Source Content Management Conference in Berkeley, California, USA, from 25 - 27 September 2002. Registration for this second conference is now open. For more details see http://www.oscom.org/conferences/sanfrancisco2002/index.html Cocoon will be

RE: SVG problems with use

2002-07-10 Thread Robert Bourdeau
Ok, from what I can determine with my limited knowledge, Batik currently fully supports static use of use, but dynamic use of use is not supported but will be supported in Batik 1.5 beta 4. I have Cocoon 2.0.2-dev I'm not entirely sure which version of Batik this would include. Is there some

Sitemap parameters and configuration of pages

2002-07-10 Thread Andrew C. Oliver
Hi all, I've got a number of pages that render links and my application base is subject to change. I realize that one can set a link base in the outputted html, but I'd rather configure it on some kind of site basis. Is there some way to set a global parameter in the sitemap to pass to all

Re: Réf. : Language Exception

2002-07-10 Thread Dan Jones
Thanks Othman but I am actually using the default cocoon sitemap. I haven't changed anything at all in the configuration or setup as yet. Merely trying to get the initial Cocoon welcome page up. I guess maybe Cocoon is still a little buggy when it comes to JDK1.4, as 1.3 seems to work fine.

RE: Cocoon and CLASSPATH

2002-07-10 Thread Vadim Gritsenko
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Hello, How to check my classpath in my Cocoon project? Not sure what do you mean, but Cocoon does not (must not) uses $CLASSPATH environment variable. It behaves like any other servlet when deployed in servlet engine, and see

RE: Problem: extra-classpath in cocoon/WEB-INF/web.xml has no effect on CLASSPATH

2002-07-10 Thread Vadim Gritsenko
From: Andrei Svirida [mailto:[EMAIL PROTECTED]] Hi cocooners, i have moved some of the jars needed for my cocoon application out from Tomcat-Webapps/cocoon/WEB-INF/lib directory to /opt/lib E.g., file Tomcat-Webapps/cocoon/WEB-INF/lib/test.jar is at /opt/lib/test.jar now. After

RE: Redirects (again)...

2002-07-10 Thread Vadim Gritsenko
From: Per Kreipke [mailto:[EMAIL PROTECTED]] Another thought: - if I throw an exception in some step of the pipeline, could I configure an error handler to do a redirect? No. Why don't you do your processing in the action. Vadim Per -Original Message- From: Per

RE: Language Exception

2002-07-10 Thread Vadim Gritsenko
From: Dan Jones [mailto:[EMAIL PROTECTED]] Hi I'm a total newbie with cocoon and am getting this error when I try to access http://localhost/cocoon (I've set up Tomcat so I don't need to use the :8080), using cocoon 2 and Tomcat 4.03 with JDK1.4, under Windows 2000 professional. I've

RE: SVG problems with use

2002-07-10 Thread Vadim Gritsenko
From: Robert Bourdeau [mailto:[EMAIL PROTECTED]] Ok, from what I can determine with my limited knowledge, Batik currently fully supports static use of use, but dynamic use of use is not supported but will be supported in Batik 1.5 beta 4. I have Cocoon 2.0.2-dev I'm not entirely sure

RE: Sitemap parameters and configuration of pages

2002-07-10 Thread Vadim Gritsenko
From: Andrew C. Oliver [mailto:[EMAIL PROTECTED]] Hi all, I've got a number of pages that render links and my application base is subject to change. I realize that one can set a link base in the outputted html, but I'd rather configure it on some kind of site basis. Is there some way

Re: Problem: extra-classpath in cocoon/WEB-INF/web.xml has no effect on CLASSPATH

2002-07-10 Thread sheshadri
Hi, in the web.xml of cocoon, if u set the init-classloader parameters param value to true, (which is false by default) then i think the problem of class not found will be solved. init-param param-nameinit-classloader/param-name param-valuetrue/param-value /init-param