Re: Chaining pipelines --- write a file to server --- email it as an attachment -- delete the file

2003-06-25 Thread Christian Haul
On 24.Jun.2003 -- 03:41 PM, Yan, Charlene wrote: When I click a Send Email button on the page, the application will create a rtf file on the server, and then sendMail will send email to an email address entered by the user with attachment of the rtf file and idealy the rtf file should be

RE: Chaining pipelines --- write a file to server --- email it as an attachment -- delete the file

2003-06-25 Thread Yan, Charlene
--- email it as an attachment -- delete the file On 24.Jun.2003 -- 03:41 PM, Yan, Charlene wrote: When I click a Send Email button on the page, the application will create a rtf file on the server, and then sendMail will send email to an email address entered by the user with attachment of the rtf

RE: Chaining pipelines --- write a file to server --- email it as an attachment -- delete the file

2003-06-25 Thread Yan, Charlene
Let me try to explain my problem again. http://wiki.cocoondev.org/Wiki.jsp?page=MailBodyViaPipeline is only part of what I'm trying to do. When Send Email button is clicked, an xml String named Foo is passed to pipeline processOrder and a rtf file is generated. Then pipeline send will send

Chaining pipelines --- write a file to server --- email it as an attachment -- delete the file

2003-06-24 Thread Yan, Charlene
All, Please let me know if this is possible with Cocoon to accomplish the following: When I click a Send Email button on the page, the application will create a rtf file on the server, and then sendMail will send email to an email address entered by the user with attachment of the rtf file

I want to delete a node in XML file.

2003-06-11 Thread bosspring 2
Hi all !!! I´m trying to delete a simple node in a XML file, but... how??? Perhaps, I cant to use Source Writing Transformer and replace the node by nothing, but usuario login=bosspring password=6p0JBa2a nombreMiguel Ángel/nombre mail[EMAIL PROTECTED]/mail webmaster web xmlns:xlink

Re: I want to delete a node in XML file.

2003-06-11 Thread Joerg Heinicke
You can use XSLT and a identity transformation http://www.w3.org/TR/xslt#copying adding a special template handling web/: xsl:template match=web/ Joerg bosspring 2 wrote: Hi all !!! I´m trying to delete a simple node in a XML file, but... how??? Perhaps, I cant to use Source Writing

Re: I want to delete a node in XML file.

2003-06-11 Thread bosspring 2
Hi Joerg, thank you for your idea!! If I do this sollution, after my XML file will have multiple tags empty web/,no?? But, I must have the transformer Write Source for this application,no?? I'm sorry, my English... :( _ Dale

ldap transformer with add, delete, update

2003-02-13 Thread Ingolf Koch
Hi, does anybody know if there is an ldap transformer which is able to add, delete, and update the ldap directory? Thanks, Ingolf - Please check that your question has not already been answered in the FAQ before posting

RE: ldap transformer with add, delete, update

2003-02-13 Thread Matthew Langham
Ingolf does anybody know if there is an ldap transformer which is able to add, delete, and update the ldap directory? We have one as part of some commercial Cocoon add-on stuff we have. Contact me if you would be interested in more details. Matthew -- Open Source Group Cocoon

newbie: delete whitespace

2002-07-17 Thread Daniel Meier
hi there is there a simple solution to transform an xml-file to a new one without any whitespace? kind regards daniel - Please check that your question has not already been answered in the FAQ before posting.

RE: newbie: delete whitespace

2002-07-17 Thread Piroumian Konstantin
From: Daniel Meier [mailto:[EMAIL PROTECTED]] hi there is there a simple solution to transform an xml-file to a new one without any whitespace? If you mean any *ignorable* whitespace then use this in your stylesheet: ?xml version=1.0 encoding=UTF-8? xsl:stylesheet version=1.0

Re: newbie: delete whitespace

2002-07-17 Thread Joerg Heinicke
Really *any* whitespace? xsl:template match=@*|node() xsl:copy xsl:apply-templates select=@*|node()/ /xsl:copy /xsl:template xsl:template match=text() xsl:value-of select=translate(normalize-space(), ' ', '')/ /xsl:template There are only whitespaces left in attribute values

Re: Delete

2002-04-12 Thread Carlos Araya
Title: Re: Delete On 04/12/02 0:08, Daniel Fernandez [EMAIL PROTECTED] wrote: Si ves donde dice to unsubscribe, esa es la direccion a la que mandar mensajes. Alli es donde dejas la lista - Please check that your question has

Re: howto make use of default database add, delete, update action for mutilple table at a time

2002-02-23 Thread Christian Haul
On 22.Feb.2002 -- 11:13 PM, Pascal Davoust wrote: I read in a post a few days ago (or was it in the archive?) that there were some serious limitations with these actions, and that some work is currently done to overcome those (something is already available in the scratchpad to have a look, I

RE: howto make use of default database add, delete, update action for mutilple table at a time

2002-02-23 Thread Pascal Davoust
, 2002 3:23 PM To: [EMAIL PROTECTED] Subject: Re: howto make use of default database add, delete, update action for mutilple table at a time On 22.Feb.2002 -- 11:13 PM, Pascal Davoust wrote: I read in a post a few days ago (or was it in the archive?) that there were some serious limitations

RE: howto make use of default database add, delete, update action for mutilple table at a time

2002-02-22 Thread Pascal Davoust
add, delete, update action for mutilple table at a time On 21.Feb.2002 -- 05:15 PM, marco wrote: Thanks a lot. I was able to insert records to more than one table at a time, but according to the documentaion of the actions DatabaseUpdateAction and DatabaseDeleteAction that they can handle only

howto make use of default database add, delete, update action for mutilple table at a time

2002-02-19 Thread marco
I have a user input form and which is used to add/update/delete records in serveral tables. I found a sample that came with cocoon, but it is simple example that only one table is handled at a time. How can I make use the default DatabaseAddAction, DatabaseUpdateAction, DatabaseDeleteAction

esql logicsheet, insert, update and delete, examples

2001-08-09 Thread annemarie . hartvigsen
Hi, does anybody have any examples where you insert, update and delete records in databases, using xsp and esql logicsheet? /AM - Please check that your question has not already been answered in the FAQ before posting. http

RE: esql logicsheet, insert, update and delete, examples

2001-08-09 Thread JEULIN Olivier
I'll send you an example in a few minutes (I'm not sure the rest of the mailing list would be interested) does anybody have any examples where you insert, update and delete records in databases, using xsp and esql logicsheet

Re: esql logicsheet, insert, update and delete, examples

2001-08-09 Thread Hubert NEOtyk Iwaniuk
- Original Message - From: JEULIN Olivier [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 09, 2001 3:43 PM Subject: RE: esql logicsheet, insert, update and delete, examples I'll send you an example in a few minutes (I'm not sure the rest of the mailing list would

RE: esql logicsheet, insert, update and delete, examples

2001-08-09 Thread JEULIN Olivier
esql:query delete from basket where user = 'session:get-attribute name=user /' and idtitle = xsp:exprInteger.parseInt((String)request:get-parameter name=fragID/)/xsp:expr and reference = 'request:get-parameter name=product/' /esql:query