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

Source Code for Package ZenWidgets

 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  """__init__ 
15   
16  Initializer for ZenTableManager 
17   
18  $Id: __init__.py,v 1.3 2004/04/04 23:56:49 edahl Exp $""" 
19   
20  __version__ = 0.5 
21  __revision__ = "$Revision: 1.3 $"[11:-2] 
22   
23   
24  from ZenTableManager import ZenTableManager 
25  from ZenTableManager import manage_addZenTableManager 
26   
27  try: 
28      from Products.CMFCore.DirectoryView import registerDirectory 
29      registerDirectory('skins', globals()) 
30  except ImportError: pass 
31   
32 -def initialize(registrar):
33 registrar.registerClass( 34 ZenTableManager, 35 permission="Add ZenTableManager", 36 constructors = (manage_addZenTableManager,), 37 icon = "ZenTableManager_icon.gif" 38 )
39 40 # Enable gzip compression of static files 41 import FileGzipper 42