remove attribute from session without XSP

2004-01-06 Thread Patrick Hess
Hi,

I'm looking for an easy way to delete an attribute from the user's 
session after doing some stuff in the sitemap. Is there a way without 
using XSP like the xsp-session:remove-attribute or 
session.removeAttribute()? Maybe a sitemap-action?

Thanks!
--
Patrick Hess


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: remove attribute from session without XSP

2004-01-06 Thread Stephan Coboos
Patrick Hess wrote:

Hi,

I'm looking for an easy way to delete an attribute from the user's 
session after doing some stuff in the sitemap. Is there a way without 
using XSP like the xsp-session:remove-attribute or 
session.removeAttribute()? Maybe a sitemap-action?

Thanks!
What do you think about a easy flowscript?

function removeAttribute() {

   cocoon.session.removeAttribute(foo);
   cocoon.sendPage(target-pipeline);
}
Regards
Stephan
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]