Blame SOURCES/CatalogManager.properties

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