a6b7cb
######################################################################## 
a6b7cb
# CatalogManager provides an interface to the catalog properties.
a6b7cb
# Properties can come from two places: from system properties or
a6b7cb
# from a CatalogManager.properties file. This class provides a
a6b7cb
# transparent interface to both, with system properties preferred 
a6b7cb
# over property file values.
a6b7cb
a6b7cb
#######################################################################
a6b7cb
# Catalog Files:
a6b7cb
# The semicolon-delimited list of catalog files.
a6b7cb
# Example: catalogs=./xcatalog;/share/doctypes/catalog
a6b7cb
a6b7cb
catalogs=/etc/xml/catalog;/etc/sgml/catalog
a6b7cb
a6b7cb
#######################################################################
a6b7cb
# Relative Catalogs:
a6b7cb
# If false, relative catalog URIs are made absolute with respect to the
a6b7cb
# base URI of the CatalogManager.properties file. This setting only 
a6b7cb
# applies to catalog URIs obtained from the catalogs property in the
a6b7cb
# CatalogManager.properties file
a6b7cb
# Example: relative-catalogs = [yes|no]
a6b7cb
a6b7cb
relative-catalogs=yes
a6b7cb
a6b7cb
#######################################################################
a6b7cb
# Verbosity:
a6b7cb
# If non-zero, the Catalog classes will print informative and debugging
a6b7cb
# messages. The higher the number, the more messages.
a6b7cb
# Example: verbosity = [0..99]
a6b7cb
a6b7cb
verbosity=0
a6b7cb
a6b7cb
#######################################################################
a6b7cb
# Prefer:
a6b7cb
# Which identifier is preferred, "public" or "system"?
a6b7cb
# Example: xml.catalog.prefer = [public|system]
a6b7cb
a6b7cb
prefer=system
a6b7cb
a6b7cb
#######################################################################
a6b7cb
# Static-catalog:
a6b7cb
# Should a single catalog be constructed for all parsing, or should a
a6b7cb
# different catalog be created for each parser?
a6b7cb
# Example: static-catalog = [yes|no]
a6b7cb
a6b7cb
static-catalog=yes
a6b7cb
a6b7cb
#######################################################################
a6b7cb
# Allow-oasis-xml-catalog-pi
a6b7cb
# If the source document contains "oasis-xml-catalog" processing 
a6b7cb
# instructions, should they be used?
a6b7cb
# Example: allow-oasis-xml-catalog-pi = [yes|no]
a6b7cb
a6b7cb
allow-oasis-xml-catalog-pi=yes
a6b7cb
a6b7cb
#######################################################################
a6b7cb
# catalog-class-name
a6b7cb
# If you're using the convenience classes 
a6b7cb
# org.apache.xml.resolver.tools.*, this setting allows you to specify
a6b7cb
# an alternate class name to use for the underlying catalog.
a6b7cb
# Example: catalog-class-name=org.apache.xml.resolver.Resolver