Commit f885878e authored by 's avatar

Made CntrlPanel uncopyable ;)

parent 66181974
__doc__="""System management components""" __doc__="""System management components"""
__version__='$Revision: 1.15 $'[11:-2] __version__='$Revision: 1.16 $'[11:-2]
import sys,os,time,Globals import sys,os,time,Globals
...@@ -100,3 +100,8 @@ class ApplicationManager(ObjectManager,SimpleItem.Item,CacheManager): ...@@ -100,3 +100,8 @@ class ApplicationManager(ObjectManager,SimpleItem.Item,CacheManager):
if product not in products: if product not in products:
Globals.Bobobase['products']=tuple(products)+(product,) 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',)
...@@ -19,7 +19,7 @@ function update(target) ...@@ -19,7 +19,7 @@ function update(target)
<FRAME SRC="manage_menu" NAME="manage_menu" <FRAME SRC="manage_menu" NAME="manage_menu"
MARGINWIDTH="2" MARGINHEIGHT="2" SCROLLING="auto"> MARGINWIDTH="2" MARGINHEIGHT="2" SCROLLING="auto">
<FRAME SRC="manage_main" NAME="manage_main" <FRAME SRC="manage_main" NAME="manage_main"
MARGINWIDTH="0" MARGINHEIGHT="0" SCROLLING="auto"> MARGINWIDTH="2" MARGINHEIGHT="2" SCROLLING="auto">
</FRAMESET> </FRAMESET>
<NOFRAMES> <NOFRAMES>
Management interfaces require the use of a <B>frames-capable</B> web browser. Management interfaces require the use of a <B>frames-capable</B> web browser.
......
...@@ -25,6 +25,14 @@ ...@@ -25,6 +25,14 @@
<!--#var title_or_id--> <!--#var title_or_id-->
</A> </A>
<!--#/tree--> <!--#/tree-->
<TABLE CELLSPACING="0">
<TR>
<TD WIDTH="16"></TD>
<TD VALIGN="TOP" NOWRAP>
<STRONG><A HREF="manage_menu">Refresh</A></STRONG>
</TD>
</TR>
</TABLE>
</BODY> </BODY>
</HTML> </HTML>
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