Re: Content Updating

2003-12-08 Thread Geoff Howard
Brent L Johnson wrote: I understood him to mean that he was sending a string with xml data to be parsed - in which case the only option is server side, and it's as easy as: util:include-exprutil:exprxsp-request:get-parameter name=test //util:expr/util:include-expr in an xsp page where the

RE: Content Updating

2003-12-08 Thread Brent L Johnson
You said you were using XSP, so that snippet is an XSP snippet. Won't work this way in XSL. Ack sorry - I was using XSP but recently switch to XML since I wanted to pull the logic out of the basic content documents. Basically, I'm using an XML file as a generator. Then Im doing a

RE: Content Updating

2003-12-07 Thread Edison Too
Hi, Our solution is as below, maybe it will give you some idea. But we don't use XSP. In the form a simple javascript is used to pass the context as cdata section. wrapped inside an element named staticDesign. xsl:template match=staticDesign form name=dummyForm textarea

Re: Content Updating

2003-12-07 Thread Geoff Howard
frequently means there probably should be better documentation and/or a sample - any volunteers? Geoff -Original Message- From: Geoff Howard [mailto:[EMAIL PROTECTED] Sent: Friday, December 05, 2003 3:48 PM To: [EMAIL PROTECTED] Subject: Re: Content Updating Look through the archives - unless I

RE: Content Updating

2003-12-07 Thread Brent L Johnson
I understood him to mean that he was sending a string with xml data to be parsed - in which case the only option is server side, and it's as easy as: util:include-exprutil:exprxsp-request:get-parameter name=test //util:expr/util:include-expr in an xsp page where the namespace for

RE: Content Updating

2003-12-05 Thread Chris Morgan
I've run into this as well. We looked at a couple of different options: 1. server side decoders that basically replace your lt; or other unicode with their appropriate symbols before committing to storage. This is a good solution for very simple markup with little variation. 2. Change client

RE: Content Updating

2003-12-05 Thread Brent L Johnson
Yeah this is quite annoying because as soon as I do an xsl:value-of value=$myrequestparam/ That produces an encoded string value that gets passed all the way to the actual writing of the file.. so it gets overwritten with lt; and gt; - Brent I've run into this as well. We looked at a couple

Re: Content Updating

2003-12-05 Thread Geoff Howard
Look through the archives - unless I misunderstand you this has been discussed ad nauseum. In your case, there is an xsp tag to cause the value of your parameter to be parsed as xml and passed down the line of SAX events. Keep in mind, a cocoon pipeline is not a text stream of xml, but a sax

RE: Content Updating

2003-12-05 Thread Chris Morgan
) that'd work too. Chris -Original Message- From: Geoff Howard [mailto:[EMAIL PROTECTED] Sent: Friday, December 05, 2003 3:48 PM To: [EMAIL PROTECTED] Subject: Re: Content Updating Look through the archives - unless I misunderstand you this has been discussed ad nauseum. In your case

RE: Content Updating

2003-12-05 Thread Brent L Johnson
Look through the archives - unless I misunderstand you this has been discussed ad nauseum. In your case, there is an xsp tag to cause the value of your parameter to be parsed as xml and passed down the line of SAX events. I did a quick pass over the mailing list archives but didnt see

RE: Content Updating

2003-11-21 Thread Schultz, Gary - COMM
, 2003 4:26 PM To: [EMAIL PROTECTED] Subject: RE: Content Updating From: Chris Morgan [mailto:[EMAIL PROTECTED] Sent: Thursday, November 20, 2003 4:46 PM To: [EMAIL PROTECTED] Subject: RE: Content Updating I work for a textbook publisher and we have similar requirements. Basically, you need

RE: Content Updating

2003-11-20 Thread Conal Tuohy
You can use the SourceWritingTransformer to update your documents using Cocoon pipelines. -Original Message- From: Brent L Johnson [mailto:[EMAIL PROTECTED] Sent: Friday, 21 November 2003 10:28 a.m. To: [EMAIL PROTECTED] Subject: Content Updating I want my customers (other

RE: Content Updating

2003-11-20 Thread Alex Romayev
Brent, Technically you are looking for a content management system. You may want to look at Lenya (Cocoon sub project), which is a Cocoon-based CMS. I don't know much about it, but I would assume it should do what you need. -Alex --- Conal Tuohy [EMAIL PROTECTED] wrote: You can use the

RE: Content Updating

2003-11-20 Thread Chris Morgan
: Thursday, November 20, 2003 4:32 PM To: [EMAIL PROTECTED] Subject: RE: Content Updating You can use the SourceWritingTransformer to update your documents using Cocoon pipelines. -Original Message- From: Brent L Johnson [mailto:[EMAIL PROTECTED] Sent: Friday, 21 November 2003 10:28 a.m

Re: Content Updating

2003-11-20 Thread Joerg Heinicke
On 20.11.2003 22:41, Alex Romayev wrote: Brent, Technically you are looking for a content management system. You may want to look at Lenya (Cocoon sub project), which is a Cocoon-based CMS. I don't know much about it, but I would assume it should do what you need. For a really simple CMS you

RE: Content Updating

2003-11-20 Thread Brent L Johnson
From: Chris Morgan [mailto:[EMAIL PROTECTED] Sent: Thursday, November 20, 2003 4:46 PM To: [EMAIL PROTECTED] Subject: RE: Content Updating I work for a textbook publisher and we have similar requirements. Basically, you need a client that will generate some form of valid XML or XHTML