xmlwrapp
|
The xslt::init class is used to configure the XSLT engine. More...
#include <init.h>
Static Public Member Functions | |
static void | process_xincludes (bool flag) |
This function controls whether or not the XSLT engine will process XInclusions by default while parsing the stylesheet. | |
static void | indent_output (bool flag) |
This member function controls whether or not the XML parser should add text nodes for indenting when generating XML text output from a node tree. | |
static void | remove_whitespace (bool flag) |
This member function controls whether or not the XML parser should remove ignorable whitespace around XML elements. | |
static void | substitute_entities (bool flag) |
This member function controls whether or not the XML parser should substitute entities while parsing. | |
static void | load_external_subsets (bool flag) |
This member function controls whether or not the XML parser should load external (DTD) subsets while parsing. | |
static void | validate_xml (bool flag) |
This member function controls whether or not the XML parser should validate every XML document that is parses with its DTD. |
The xslt::init class is used to configure the XSLT engine.
If you want to use any of the xslt::init member functions, do so before you start any threads or use any other part of xsltwrapp. The member functions may alter global and/or static variables. In other words, this class is not thread safe.
static void xml::init::indent_output | ( | bool | flag | ) | [static, inherited] |
This member function controls whether or not the XML parser should add text nodes for indenting when generating XML text output from a node tree.
The default is true.
@param flag True to turn on indenting, false to turn it off.
static void xml::init::load_external_subsets | ( | bool | flag | ) | [static, inherited] |
This member function controls whether or not the XML parser should load external (DTD) subsets while parsing.
This will only affect the loading of the subsets, it does not cause files to be validated. The default is true.
flag | True to turn on loading, false to turn it off. |
static void xslt::init::process_xincludes | ( | bool | flag | ) | [static] |
This function controls whether or not the XSLT engine will process XInclusions by default while parsing the stylesheet.
The default is true.
flag | True to enable XInclusing processing; False otherwise. |
static void xml::init::remove_whitespace | ( | bool | flag | ) | [static, inherited] |
This member function controls whether or not the XML parser should remove ignorable whitespace around XML elements.
The default is false.
flag | True to remove whitespace, false to leave alone. |
static void xml::init::substitute_entities | ( | bool | flag | ) | [static, inherited] |
This member function controls whether or not the XML parser should substitute entities while parsing.
The default is true.
@param flag True to turn on substitution, false to turn off.
static void xml::init::validate_xml | ( | bool | flag | ) | [static, inherited] |
This member function controls whether or not the XML parser should validate every XML document that is parses with its DTD.
The default is false.