Trees | Indices | Help |
|
---|
|
1 ############################################################################## 2 # 3 # Copyright (C) Zenoss, Inc. 2007, all rights reserved. 4 # 5 # This content is made available according to terms specified in 6 # License.zenoss under the directory where your Zenoss product is installed. 7 # 8 ############################################################################## 9 10 11 __doc__="""CommentGraphPoint 12 13 Handles GraphPoints that define an rrd COMMENT 14 """ 15 16 from GraphPoint import GraphPoint 17 from Globals import InitializeClass 1820 ''' This is here so than zope will let us copy/paste/rename 21 graphpoints. 22 ''' 23 gp = CommentGraphPoint(id) 24 context._setObject(gp.id, gp) 25 if REQUEST: 26 return context.callZenScreen(REQUEST)27 2830 31 meta_type = 'CommentGraphPoint' 32 33 text = '' 34 35 _properties = GraphPoint._properties + ( 36 {'id':'text', 'type':'string', 'mode':'w'}, 37 ) 3854 55 56 InitializeClass(CommentGraphPoint) 5740 return self.text41 42 45 46
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1.1812 on Mon Jul 30 17:11:39 2012 | http://epydoc.sourceforge.net |