Trees | Indices | Help |
|
---|
|
1 ########################################################################### 2 # 3 # This program is part of Zenoss Core, an open source monitoring platform. 4 # Copyright (C) 2007, Zenoss Inc. 5 # 6 # This program is free software; you can redistribute it and/or modify it 7 # under the terms of the GNU General Public License version 2 as published by 8 # the Free Software Foundation. 9 # 10 # For complete information please visit: http://www.zenoss.com/oss/ 11 # 12 ########################################################################### 13 14 __doc__='''GraphReportClass 15 16 GraphReportClass contain GraphReports. 17 ''' 18 19 from AccessControl import ClassSecurityInfo 20 from Globals import DTMLFile 21 from ReportClass import ReportClass 22 from ZenossSecurity import ZEN_MANAGE_DMD 23 from Globals import InitializeClass 24 2527 ''' Construct a new GraphReportclass 28 ''' 29 rc = GraphReportClass(id, title) 30 context._setObject(rc.id, rc) 31 if REQUEST is not None: 32 REQUEST['message'] = "Report organizer created" 33 REQUEST['RESPONSE'].redirect(context.absolute_url() + '/manage_main')34 35 addGraphReportClass = DTMLFile('dtml/addGraphReportClass',globals()) 3638 39 portal_type = meta_type = "GraphReportClass" 40 41 security = ClassSecurityInfo() 42 47 48 49 security.declareProtected('Manage DMD', 'manage_addGraphReport')61 62 63 InitializeClass(GraphReportClass) 6451 """Add an MultiGraph report to this object. 52 """ 53 from Products.ZenModel.GraphReport import GraphReport 54 fr = GraphReport(id) 55 self._setObject(id, fr) 56 fr = self._getOb(id) 57 if REQUEST: 58 url = '%s/%s/editGraphReport' % (self.getPrimaryUrlPath(),id) 59 return REQUEST['RESPONSE'].redirect(url) 60 return fr
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0beta1 on Thu Oct 25 16:28:46 2007 | http://epydoc.sourceforge.net |