RE: Wierd signs at lineshifts

2003-03-28 Thread Delis, Christopher E.
probably not exactly what you are looking for, but you could do this: a href=# xsp:attribute name=onclickxsp:expraddToUrl('header=+ dragid + ')/xsp:expr /xsp:attribute xsp:attribute name=onmouseoverxsp:exprieShow(+varcounter+)/xsp:expr/xsp:attrib ute Add to column

RE: Getting content from a URL or servlet

2003-03-28 Thread Delis, Christopher E.
have you tried something like already?: map:generate type=html src=http://localhost:8080/doSomethingServlet; / (even though type=html is a misnomer?) -Original Message- From: Colin W. Kingsbury [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2003 3:45 PM To: [EMAIL PROTECTED]

RE: Getting content from a URL or servlet

2003-03-28 Thread Delis, Christopher E.
or if that doesn't work, try type=file ?? it worked for me, but i'm using a new version of cocoon2. what version you working with? -Original Message- From: Delis, Christopher E. [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2003 3:55 PM To: '[EMAIL PROTECTED]' Subject: RE

RE: XMLForm Schematron question

2003-03-27 Thread Delis, Christopher E.
an attribute of ref='' instead of ref='/password'. cheers, chris -Original Message- From: Ugo Cei To: [EMAIL PROTECTED] Sent: 3/27/03 1:51 AM Subject: Re: XMLForm Schematron question Delis, Christopher E. wrote: i take it back! it still doesn't work =-( i keep getting Passwords do

RE: XMLForm Schematron question

2003-03-27 Thread Delis, Christopher E.
after password, you can remove preceding-sibling::password2. It's only a further suggestion from the XML point of view ;-) Joerg Delis, Christopher E. wrote: thanks, ugo. i finally ended up doing the same exact thing as you. i was just hoping it would be possible to refer to other

RE: XMLForm Schematron question

2003-03-27 Thread Delis, Christopher E.
i jumped the gun again. assert test=string(.)=string(password2) doesn't work either. it is always invalid because password2 is not a child. i'm happy with simply validating from context=/ and be done with it! ;-) again, thanks... -Original Message- From: Delis, Christopher E

RE: XMLForm Schematron question

2003-03-26 Thread Delis, Christopher E.
on a slightly different note, how does one reference another rule context. i.e.: let's say i have two elts, /password and /password2: pattern name=Password Validation Pattern id=password rule context=/password assert test=string-length(.) gt; 5Name

RE: XMLForm Schematron question

2003-03-26 Thread Delis, Christopher E.
looks logical to me ;-) Everything is pure XSLT. But what you tried (../password2), should work also (if context is password). I guess there must something else wrong. E.g. /password AND /password2? How can an XML have two root nodes? Regards, Joerg Delis, Christopher E

RE: XMLForm Schematron question

2003-03-26 Thread Delis, Christopher E.
i take it back! it still doesn't work =-( i keep getting Passwords do not match! errors... -Original Message- From: Delis, Christopher E. [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 11:20 AM To: '[EMAIL PROTECTED]' Subject: RE: XMLForm Schematron question sheesh

RE: XMLForm Schematron question

2003-03-26 Thread Delis, Christopher E.
/password to password (the same for password2). Regards, Joerg Delis, Christopher E. wrote: i take it back! it still doesn't work =-( i keep getting Passwords do not match! errors... -Original Message- From: Delis, Christopher E. [mailto:[EMAIL PROTECTED] Sent

RE: Where is wikiland.

2003-03-24 Thread Delis, Christopher E.
do you have a demo-site, too? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, March 24, 2003 11:29 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Where is wikiland. wikiLand is available here: http://lOlive.net

RE: XSL and script code - please help

2003-03-21 Thread Delis, Christopher E.
for loops and the use of variables (like in imperative languages like C/Java) are implemented differently in xslt. recursion is often used. i recommend doing a search on functional programming and xslt in google. there are probably many examples of how to write functions similar to yours in

RE: sql transformer question; *not* esql... (was RE: ???ESQL upda te table???)

2003-03-18 Thread Delis, Christopher E.
/' where library_id = xsl:value-of select=/library/id/ /sql:query /sql:execute-query -Original Message- From: Delis, Christopher E. [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 18, 2003 4:08 AM To: 'Luca Morandini '; '[EMAIL PROTECTED] ' Subject: RE: sql transformer

RE: sql transformer question; *not* esql... (was RE: ???ESQL upda te table???)

2003-03-18 Thread Delis, Christopher E.
Message- From: Delis, Christopher E. [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 18, 2003 5:18 PM To: '[EMAIL PROTECTED]'; 'Luca Morandini ' Subject: RE: sql transformer question; *not* esql... (was RE: ???ESQL upda te table???) sitemap). has anyone else run into a similar

RE: ???ESQL update table???

2003-03-17 Thread Delis, Christopher E.
on a slightly different note, is there place-holder functionality in esql stylesheet language? e.g., insert into atable (field1, field2) values (?, ?) select * from atable where field1 = ? limit ? ... TIA, chris -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

sql transformer question; *not* esql... (was RE: ???ESQL update table???)

2003-03-17 Thread Delis, Christopher E.
i replied to the wrong topic. sorry... what i meant to ask was: is there a place-holder mechanism available using the sql transformer? --chris -Original Message- From: Delis, Christopher E. To: '[EMAIL PROTECTED]' Sent: 3/17/03 9:48 AM Subject: RE: ???ESQL update table

RE: login validator

2003-03-14 Thread Delis, Christopher E.
have you looked at: http://xml.apache.org/cocoon/developing/webapps/authentication.html ??? -it works for me! -Original Message- From: Alexander Docter To: [EMAIL PROTECTED] Sent: 3/14/03 4:09 AM Subject: login validator Hi, in our webapplication users need to login first. For every

dynamically load an action in a resource?

2003-03-13 Thread Delis, Christopher E.
i'm a newbie cocoon2 developer who is trying to create a map:resource for commonly-used pipelines for use with my XMLForms. apparently (here, my newbie status begins to show prominently ;-), you can send map:parameters to map:resources quite easily via map:call (i've done this quite a bit

RE: dynamically load an action in a resource?

2003-03-13 Thread Delis, Christopher E.
:[EMAIL PROTECTED] Sent: Thursday, March 13, 2003 11:50 AM To: [EMAIL PROTECTED] Subject: Re: dynamically load an action in a resource? Delis, Christopher E. wrote: i'm a newbie cocoon2 developer who is trying to create a map:resource for commonly-used pipelines for use with my

dynamically load an action in a resource?

2003-03-12 Thread Delis, Christopher E.
i'm a newbie cocoon2 developer who is trying to create a map:resource for commonly-used pipelines for use with my XMLForms. apparently (here, my newbie status begins to show prominently ;-), you can send map:parameters to map:resources quite easily via map:call (i've done this quite a bit