Package zeroinstall :: Package injector :: Module namespaces
[frames] | no frames]

Source Code for Module zeroinstall.injector.namespaces

 1  """Useful constants. 
 2   
 3  @var XMLNS_IFACE: The XML namespace used for the core elements in an interface file 
 4   
 5  @var config_site: Where our configuration settings are stored 
 6  @var config_prog: Where our configuration settings are stored 
 7  """ 
 8   
 9  # Copyright (C) 2009, Thomas Leonard 
10  # See the README file for details, or visit http://0install.net. 
11   
12  XMLNS_IFACE = 'http://zero-install.sourceforge.net/2004/injector/interface' 
13  XMLNS_TRUST = 'http://zero-install.sourceforge.net/2007/injector/trust' 
14   
15  config_site = '0install.net' 
16  config_prog = 'injector' 
17