dsatchwel | b475f7c | 2008-08-14 10:43:52 +0000 | [diff] [blame] | 1 | ############################################################################### |
| 2 | # Copyright (c) 2007 Chase Technology Ltd - http://www.chasetechnology.co.uk |
| 3 | # All rights reserved. This program and the accompanying materials |
| 4 | # are made available under the terms of the Eclipse Public License v1.0 |
| 5 | # which accompanies this distribution, and is available at |
| 6 | # http://www.eclipse.org/legal/epl-v10.html |
| 7 | # |
| 8 | # Contributors: |
| 9 | # Doug Satchwell (Chase Technology Ltd) - initial API and implementation |
| 10 | ############################################################################### |
| 11 | |
| 12 | method=method |
| 13 | method.DESC="xml" | "html" | "text" | qname-but-not-ncname |
| 14 | |
| 15 | version=version |
| 16 | version.DESC=specifies the version of the output method |
| 17 | |
| 18 | indent=indent |
| 19 | indent.DESC=specifies whether the XSLT processor may add additional whitespace when outputting the result tree; the value must be yes or no |
| 20 | |
| 21 | encoding=encoding |
| 22 | encoding.DESC=specifies the preferred character encoding that the XSLT processor should use to encode sequences of characters as sequences of bytes; the value of the attribute should be treated case-insensitively; the value must contain only characters in the range #x21 to #x7E (i.e. printable ASCII characters); the value should either be a charset registered with the Internet Assigned Numbers Authority [IANA], [RFC2278] or start with X- |
| 23 | |
| 24 | media-type=media-type |
| 25 | media-type.DESC=specifies the media type (MIME content type) of the data that results from outputting the result tree; the charset parameter should not be specified explicitly; instead, when the top-level media type is text, a charset parameter should be added according to the character encoding actually used by the output method |
| 26 | |
| 27 | doctype-system=doctype-system |
| 28 | doctype-system.DESC=specifies the system identifier to be used in the document type declaration |
| 29 | |
| 30 | doctype-public=doctype-public |
| 31 | doctype-public.DESC=specifies the public identifier to be used in the document type declaration |
| 32 | |
| 33 | omit-xml-declaration=omit-xml-declaration |
| 34 | omit-xml-declaration.DESC=specifies whether the XSLT processor should output an XML declaration; the value must be yes or no |
| 35 | |
| 36 | standalone=standalone |
| 37 | standalone.DESC=specifies whether the XSLT processor should output a standalone document declaration; the value must be yes or no |
| 38 | |
| 39 | cdata-section-elements=cdata-section-elements |
| 40 | cdata-section-elements.DESC=specifies a list of the names of elements whose text node children should be output using CDATA sections |