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