Package ZenRRD
[hide private]
[frames] | no frames]

Source Code for Package ZenRRD

 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  __doc__="""__init__ 
14   
15  Initialize the RRDTool Product 
16   
17  $Id: __init__.py,v 1.4 2003/11/13 22:52:42 edahl Exp $""" 
18   
19   
20  __version__ = "$Revision: 1.4 $"[11:-2] 
21 -def initialize(registrar):
22 # Global module assertions for Python scripts 23 from RenderServer import RenderServer,addRenderServer,manage_addRenderServer 24 25 registrar.registerClass( 26 RenderServer, 27 permission="Add DMD Objects", 28 constructors = (addRenderServer, manage_addRenderServer), 29 )
30