[Zope] zope's clipboard

2008-10-27 Thread Garry Saddington
Is there a way to programmatically remove items from the clipboard.
Regards
Garry
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] zope's clipboard

2008-10-27 Thread Andreas Jung

On 27.10.2008 18:05 Uhr, Garry Saddington wrote:

Is there a way to programmatically remove items from the clipboard.


There nothing like a clipboard. The information you consider as 
clipboard is stored as __cp cookie on the client side.


-aj
begin:vcard
fn:Andreas Jung
n:Jung;Andreas
org:ZOPYX Ltd.  Co. KG
adr;quoted-printable:;;Charlottenstr. 37/1;T=C3=BCbingen;;72070;Germany
email;internet:[EMAIL PROTECTED]
title:CEO
tel;work:+49-7071-793376
tel;fax:+49-7071-7936840
tel;home:+49-7071-793257
x-mozilla-html:FALSE
url:www.zopyx.com
version:2.1
end:vcard

___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] zope's clipboard

2008-10-27 Thread Garry Saddington
On Monday 27 October 2008 17:37, Andreas Jung wrote:
 On 27.10.2008 18:05 Uhr, Garry Saddington wrote:
  Is there a way to programmatically remove items from the clipboard.

 There nothing like a clipboard. The information you consider as
 clipboard is stored as __cp cookie on the client side.
OK, so how do I expire it?
expireCookie('__cp') is not working for me
Regards
Garry
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] zope's clipboard(solved)

2008-10-27 Thread Garry Saddington
On Monday 27 October 2008 18:35, Garry Saddington wrote:
 On Monday 27 October 2008 17:37, Andreas Jung wrote:
  On 27.10.2008 18:05 Uhr, Garry Saddington wrote:
   Is there a way to programmatically remove items from the clipboard.
 
  There nothing like a clipboard. The information you consider as
  clipboard is stored as __cp cookie on the client side.

 OK, so how do I expire it?
 expireCookie('__cp') is not working for me
 Regards
 Garry
Found it : expireCookie('__cp',path='/')
Garry
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )