RE: Different stylesheets called on runtime?

2003-01-27 Thread Johannes . Becker
: | | Subject: RE: Different stylesheets called on runtime

Re: Different stylesheets called on runtime?

2003-01-23 Thread Christian Haul
On 23.Jan.2003 -- 02:36 PM, [EMAIL PROTECTED] wrote: Hi, I have for example an XSP and various XSLs for the output (of the data from that XSP). In the xsp:logic-part it should/is deceided on runtime, which one of the XSLs to use for the output. Where do I have to manage that? I mean,

Re: Different stylesheets called on runtime?

2003-01-23 Thread Konstantin Piroumian
From: Christian Haul [EMAIL PROTECTED] On 23.Jan.2003 -- 02:36 PM, [EMAIL PROTECTED] wrote: Hi, I have for example an XSP and various XSLs for the output (of the data from that XSP). In the xsp:logic-part it should/is deceided on runtime, which one of the XSLs to use for the output.

Re: Different stylesheets called on runtime?

2003-01-23 Thread Christian Haul
On 23.Jan.2003 -- 05:57 PM, Konstantin Piroumian wrote: From: Christian Haul [EMAIL PROTECTED] On 23.Jan.2003 -- 02:36 PM, [EMAIL PROTECTED] wrote: input module. Chris, how could you forget about it? ;) Dear me! But it looks like I successfully missionated so far ;-) Cheers.

RE: Different stylesheets called on runtime?

2003-01-23 Thread Geoff Howard
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 9:47 AM To: [EMAIL PROTECTED] Subject: Re: Different stylesheets called on runtime? Thanks for the quick and helpfull response. Thats the answer I kind of expected and feared

RE: Different stylesheets called on runtime?

2003-01-23 Thread Johannes . Becker
PROTECTED] | | cc: | | Subject: RE: Different stylesheets called on runtime

Re: Different stylesheets called on runtime?

2003-01-23 Thread Christian Haul
On 23.Jan.2003 -- 05:42 PM, [EMAIL PROTECTED] wrote: int whichXSL; String report_id = request.getParameter(report_id); String service_id = request.getParameter(service_id); String nbt_pattern_id = request.getParameter(nbt_pattern_id); String search_txt =

Re: Different stylesheets called on runtime?

2003-01-23 Thread Johannes . Becker
PROTECTED] | | cc: | | Subject: Re: Different stylesheets called

Re: Different stylesheets called on runtime?

2003-01-23 Thread Christian Haul
On 23.Jan.2003 -- 06:35 PM, [EMAIL PROTECTED] wrote: Unfortunately, you've skipped the crucial part i.e. how the xsl is chosen :-| I think I don't understand you right., but this should be just an dummy example. So if(whichXSL == 1) then the number1.xsl should be choosen for output,

Re: Different stylesheets called on runtime?

2003-01-23 Thread Johannes . Becker
: | | Subject: Re: Different stylesheets called on runtime

RE: Different stylesheets called on runtime?

2003-01-23 Thread Geoff Howard
:59 PM To: [EMAIL PROTECTED] Subject: Re: Different stylesheets called on runtime? OK, now I have to think of an other way, how to choose my XSLs. or The different XSLs are choosen from request parameters and an resulting database query. Is there a way to do that in an action or somewhere

RE: Different stylesheets called on runtime?

2003-01-23 Thread Geoff Howard
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 11:42 AM To: [EMAIL PROTECTED] Subject: RE: Different stylesheets called on runtime? Hi Geff, thanks for your help. Ok. Sure. Ok, Example

Re: Different stylesheets called on runtime?

2003-01-23 Thread J.Pietschmann
[EMAIL PROTECTED] wrote: My XSP, that should choose which XSL to use.: Another possibility is to use *one* style sheet containing all the templates and match on the document element to choose the processing path. For example, you want to use 2 style sheets: 1.xsl xsl:stylesheet ...