Home | Trees | Indices | Help |
|
---|
|
1 # -*- coding: iso-8859-1 -*- 2 # vim: set ft=python ts=3 sw=3 expandtab: 3 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 4 # 5 # C E D A R 6 # S O L U T I O N S "Software done right." 7 # S O F T W A R E 8 # 9 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 10 # 11 # Author : Kenneth J. Pronovici <pronovic@ieee.org> 12 # Language : Python (>= 2.5) 13 # Project : Official Cedar Backup Extensions 14 # Revision : $Id: __init__.py 998 2010-07-07 19:56:08Z pronovic $ 15 # Purpose : Provides package initialization 16 # 17 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 18 19 ######################################################################## 20 # Module documentation 21 ######################################################################## 22 23 """ 24 Official Cedar Backup Extensions 25 26 This package provides official Cedar Backup extensions. These are Cedar Backup 27 actions that are not part of the "standard" set of Cedar Backup actions, but 28 are officially supported along with Cedar Backup. 29 30 @author: Kenneth J. Pronovici <pronovic@ieee.org> 31 """ 32 33 34 ######################################################################## 35 # Package initialization 36 ######################################################################## 37 38 # Using 'from CedarBackup2.extend import *' will just import the modules listed 39 # in the __all__ variable. 40 41 __all__ = [ 'encrypt', 'mbox', 'mysql', 'postgresql', 'split', 'subversion', 'sysinfo', ] 42
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Tue Oct 19 20:56:50 2010 | http://epydoc.sourceforge.net |