| 1 |
########################################################################
|
| 2 |
# CatalogManager provides an interface to the catalog properties.
|
| 3 |
# Properties can come from two places: from system properties or
|
| 4 |
# from a CatalogManager.properties file. This class provides a
|
| 5 |
# transparent interface to both, with system properties preferred
|
| 6 |
# over property file values.
|
| 7 |
|
| 8 |
#######################################################################
|
| 9 |
# Catalog Files:
|
| 10 |
# The semicolon-delimited list of catalog files.
|
| 11 |
# Example: catalogs=./xcatalog;/share/doctypes/catalog
|
| 12 |
|
| 13 |
catalogs=/etc/xml/catalog
|
| 14 |
|
| 15 |
#######################################################################
|
| 16 |
# Relative Catalogs:
|
| 17 |
# If false, relative catalog URIs are made absolute with respect to the
|
| 18 |
# base URI of the CatalogManager.properties file. This setting only
|
| 19 |
# applies to catalog URIs obtained from the catalogs property in the
|
| 20 |
# CatalogManager.properties file
|
| 21 |
# Example: relative-catalogs = [yes|no]
|
| 22 |
|
| 23 |
relative-catalogs=yes
|
| 24 |
|
| 25 |
#######################################################################
|
| 26 |
# Verbosity:
|
| 27 |
# If non-zero, the Catalog classes will print informative and debugging
|
| 28 |
# messages. The higher the number, the more messages.
|
| 29 |
# Example: verbosity = [0..99]
|
| 30 |
|
| 31 |
verbosity=0
|
| 32 |
|
| 33 |
#######################################################################
|
| 34 |
# Prefer:
|
| 35 |
# Which identifier is preferred, "public" or "system"?
|
| 36 |
# Example: xml.catalog.prefer = [public|system]
|
| 37 |
|
| 38 |
prefer=system
|
| 39 |
|
| 40 |
#######################################################################
|
| 41 |
# Static-catalog:
|
| 42 |
# Should a single catalog be constructed for all parsing, or should a
|
| 43 |
# different catalog be created for each parser?
|
| 44 |
# Example: static-catalog = [yes|no]
|
| 45 |
|
| 46 |
static-catalog=yes
|
| 47 |
|
| 48 |
#######################################################################
|
| 49 |
# Allow-oasis-xml-catalog-pi
|
| 50 |
# If the source document contains "oasis-xml-catalog" processing
|
| 51 |
# instructions, should they be used?
|
| 52 |
# Example: allow-oasis-xml-catalog-pi = [yes|no]
|
| 53 |
|
| 54 |
allow-oasis-xml-catalog-pi=yes
|
| 55 |
|
| 56 |
#######################################################################
|
| 57 |
# catalog-class-name
|
| 58 |
# If you're using the convenience classes
|
| 59 |
# org.apache.xml.resolver.tools.*, this setting allows you to specify
|
| 60 |
# an alternate class name to use for the underlying catalog.
|
| 61 |
# Example: catalog-class-name=org.apache.xml.resolver.Resolver
|