Package saga :: Package advert
[frames] | no frames]

Source Code for Package saga.advert

 1  #  Copyright (c) 2005-2009 Hartmut Kaiser 
 2  #  Copyright (c) 2010 Ole Weidner 
 3  #  
 4  #  Distributed under the Boost Software License, Version 1.0. (See accompanying 
 5  #  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 
 6   
 7  # This file must be located inside a directory named SAGA/advert which in turn  
 8  # should be located in a directory listed in your PYTHON_PATH 
 9   
10  """ 
11  The SAGA Advert Service API package.  
12   
13  The SAGA advert service defines a hierarchical structure - similar to a filesystem - 
14  that can be used to store key-value-based informations. It is often used  
15  to store (distributed) application data in a SAGA-based application.  
16   
17  More on the concepts of the SAGA Advert Service can be found here: 
18  U{http://www.ogf.org/OGF27/materials/1767/saga_adverts.pdf} 
19  """ 
20   
21  from _advert import *         # import advert package 
22   
23 -class directory(_advert.directory):
24 pass
25
26 -class entry(_advert.entry):
27 pass
28
29 -class flags(_advert.flags):
30 pass
31