summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/__init__.py
blob: 0564b6447cf5b93229089dc753f9cdd12d3e83fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# $Id$
"""This is the set of modules for Bcfg2.Server."""

import lxml.etree

__revision__ = '$Revision$'
__all__ = ["Admin", "Core", "FileMonitor", "Plugin", "Plugins",
           "Hostbase", "Reports", "Snapshots", "XMLParser",
           "XI", "XI_NAMESPACE"]

XMLParser = lxml.etree.XMLParser(remove_blank_text=True)

XI = 'http://www.w3.org/2001/XInclude'
XI_NAMESPACE = '{%s}' % XI