Re: XSP Logicsheet Questions...

2002-11-22 Thread jakob . dalsgaard
Not that I have that much experience on this issue, but there is a nice example of various ways to get in contact with a logicsheet in the file: src/webapp/docs/samples/xsp/logicsheet.xsp at least in my Cocoon 2.0.3 ... Jakob Dalsgaard Udvikler e-mail: [EMAIL PROTECTED] Vesterbrogade 149

Re: XSP Logicsheet Questions...

2002-11-11 Thread Geoff Howard
I've been hoping someone would answer your questions with authority - I've just started using logicsheets as well. My best answers follow: --- Andy Lewis [EMAIL PROTECTED] wrote: First, it appears that a logicsheet must declared to be used and that the only place to declare a logic sheet is

Re: XSP Logicsheet Questions...

2002-11-11 Thread Geoff Howard
An update - In looking into the issue regarding changes to logicsheets, I found the following reference: http://marc.theaimsgroup.com/?l=xml-cocoon-usersm=102374809216737w=2 So, logicsheets declared with resource: in cocoon.xconf are not checked for updates, but other protocols are (including

Re: XSP Logicsheet Questions...

2002-11-11 Thread Christopher Painter-Wakefield
FWIW, we are using relative file paths for our logicsheets, and this is supposed to cause pages to be recompiled if we modify the logicsheet. Be warned, though, that it seems to be somewhat flaky; it often works as expected, but sometimes not. In those cases, you have to touch the main XSP

Re: XSP logicsheet for the ServletContext object

2002-08-16 Thread Vadim Gritsenko
Werner Guttmann wrote: Hi, just looking at the available XSP logicsheets, it seems that there is not a logicsheet for the ServletContext that would offer the kind of functionality the request logicsheet offers for interacting with the HttpServletRequest. They (context parameters) are not

RE: XSP logicsheet for the ServletContext object

2002-08-16 Thread Per Kreipke
I just noticed that class XSPUtil (the implementing class for util taglib) has the following function, which also shows how to get context info in Java: public static Object getContextAttribute(Map objectModel, String name) { Context context = ObjectModelHelper.getContext(objectModel);

Re: xsp logicsheet

2002-05-06 Thread KOZLOV Roman
Hi, Did you try to use apostrophs inside quotes? Something like this: String temp = xsl:value-of select='name'/; Best regards. Roman Bert Van Kets wrote: At 10:38 30/04/2002 -0300, you wrote: I guess it's String temp = xsl:value-of select=name/; or String temp

Re: xsp logicsheet

2002-04-30 Thread Konstantin Piroumian
From: Bert Van Kets [EMAIL PROTECTED] I want to use an XSP logicsheet to process the values submitted by a form. In this page I have the following code (simplified): xsl:template match=list xsl:for-each select=element xsl:sort select=name/ xsp:logic String

RE: xsp logicsheet

2002-04-30 Thread Alejandro Raiczyk
Title: RE: xsp logicsheet I guess it's String temp = xsl:value-of select=name/; or String temp = new String(xsl:value-of select=name/); Alejandro -Mensaje original- De: Bert Van Kets [mailto:[EMAIL PROTECTED]] Enviado el: Martes 30 de Abril de 2002 10:37 AM Para: [EMAIL

RE: xsp logicsheet

2002-04-30 Thread Bert Van Kets
Oh my God!! I can't believe how stupid this mistake is. Guess that's what happens when you work 12 to 14 hours a day, six days a week. I was already getting out my XML books and checking out how to make sure a node returned text. Thanks, I guess I'll be off to bed early tonight. Bert At 10:38

RE: xsp logicsheet

2002-04-30 Thread Bert Van Kets
At 10:38 30/04/2002 -0300, you wrote: I guess it's String temp = xsl:value-of select=name/; or String temp = new String(xsl:value-of select=name/); Alejandro Tried it, doesn't work. I guess it must be a bug. If I use String temp = xsl:value-of select=name/ I get

Re: xsp logicsheet

2002-04-30 Thread Christian Haul
On 30.Apr.2002 -- 09:50 PM, Bert Van Kets wrote: At 10:38 30/04/2002 -0300, you wrote: I guess it's String temp = xsl:value-of select=name/; or String temp = new String(xsl:value-of select=name/); Alejandro Tried it, doesn't work. I guess it must be a bug. If