Commit dd1e1e76 authored by 's avatar

Made CP uncopyable ;)

parent 756a863c
__doc__="""System management components"""
__version__='$Revision: 1.16 $'[11:-2]
__version__='$Revision: 1.17 $'[11:-2]
import sys,os,time,Globals
......@@ -45,6 +45,11 @@ class ApplicationManager(ObjectManager,SimpleItem.Item,CacheManager):
manage_delProperties=None
isPrincipiaFolderish=0
def copyToClipboard(self, REQUEST):
return Globals.MessageDialog(title='Not Supported',
message='This item cannot be copied',
action ='./manage_main',)
def _init(self):
pass
......@@ -99,9 +104,3 @@ class ApplicationManager(ObjectManager,SimpleItem.Item,CacheManager):
products=Globals.Bobobase['products']
if product not in products:
Globals.Bobobase['products']=tuple(products)+(product,)
def copyToClipboard(self, REQUEST):
return Globals.MessageDialog(title='Not Supported',
message='This item cannot be copied',
action ='./manage_main',)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment