From __init__.py
:
Class | Schematron |
An ISO Schematron validator. |
Function | stylesheet_params |
Convert keyword args to a dictionary of stylesheet parameters. XSL stylesheet parameters must be XPath expressions, i.e.: |
Constant | RELAXNG_NS |
Undocumented |
Constant | SCHEMATRON_NS |
Undocumented |
Constant | SVRL_NS |
Undocumented |
Constant | XML_SCHEMA_NS |
Undocumented |
Variable | extract_rng |
Undocumented |
Variable | extract_xsd |
Undocumented |
Variable | iso_abstract_expand |
Undocumented |
Variable | iso_dsdl_include |
Undocumented |
Variable | iso_svrl_for_xslt1 |
Undocumented |
Variable | schematron_schema_valid |
Undocumented |
Variable | svrl_validation_errors |
Undocumented |
Function | _stylesheet_param_dict |
Return a copy of paramsDict, updated with kwargsDict entries, wrapped as stylesheet arguments. kwargsDict entries with a value of None are ignored. |
Variable | _resources_dir |
Undocumented |
Variable | _schematron_root |
Undocumented |
Variable | _xml_schema_root |
Undocumented |
Convert keyword args to a dictionary of stylesheet parameters. XSL stylesheet parameters must be XPath expressions, i.e.:
This function converts native Python keyword arguments to stylesheet parameters following these rules: If an arg is a string wrap it with XSLT.strparam(). If an arg is an XPath object use its path string. If arg is None raise TypeError. Else convert arg to string.