Package Products :: Package ZenUtils :: Package extdirect :: Package zope :: Module interfaces
[hide private]
[frames] | no frames]

Source Code for Module Products.ZenUtils.extdirect.zope.interfaces

 1  ########################################################################### 
 2  # 
 3  # This program is part of Zenoss Core, an open source monitoring platform. 
 4  # Copyright (C) 2009, 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 or (at your 
 8  # option) any later version as published by the Free Software Foundation. 
 9  # 
10  # For complete information please visit: http://www.zenoss.com/oss/ 
11  # 
12  ########################################################################### 
13  from zope.interface import Interface 
14  from zope.viewlet.interfaces import IViewletManager 
15   
16 -class IExtDirectJavaScriptManager(IViewletManager):
17 """ 18 A viewlet manager to register API providers. 19 """
20
21 -class IExtDirectJavaScriptAndSourceManager(IExtDirectJavaScriptManager):
22 """ 23 A viewlet manager to publish Ext javascript resources and register API 24 providers. 25 """
26
27 -class IDirectProviderDefinition(Interface):
28 - def render():
29 """ 30 Generate client-side stub defining a provider. 31 """
32