@@ -26,14 +26,14 @@ like JSON, because prefixed name is more manageable and readable than expanded f
2626Available converters
2727====================
2828
29- The library includes some converters. The default converter :class: `XMLSchemaConverter `
29+ The library includes some converters. The default converter :class: `xmlschema. XMLSchemaConverter `
3030is the base class of other converter types. Each derived converter type implements a
3131well know convention, related to the conversion from XML to JSON data format:
3232
33- * :class: `ParkerConverter `: `Parker convention <https://developer.mozilla.org/en-US/docs/Archive/JXON#The_Parker_Convention >`_
34- * :class: `BadgerFishConverter `: `BadgerFish convention <http://www.sklar.com/badgerfish/ >`_
35- * :class: `AbderaConverter `: `Apache Abdera project convention <https://cwiki.apache.org/confluence/display/ABDERA/JSON+Serialization >`_
36- * :class: `JsonMLConverter `: `JsonML (JSON Mark-up Language) convention <http://www.jsonml.org/ >`_
33+ * :class: `xmlschema. ParkerConverter `: `Parker convention <https://developer.mozilla.org/en-US/docs/Archive/JXON#The_Parker_Convention >`_
34+ * :class: `xmlschema. BadgerFishConverter `: `BadgerFish convention <http://www.sklar.com/badgerfish/ >`_
35+ * :class: `xmlschema. AbderaConverter `: `Apache Abdera project convention <https://cwiki.apache.org/confluence/display/ABDERA/JSON+Serialization >`_
36+ * :class: `xmlschema. JsonMLConverter `: `JsonML (JSON Mark-up Language) convention <http://www.jsonml.org/ >`_
3737
3838A summary of these and other conventions can be found on the wiki page
3939`JSON and XML Conversion <http://wiki.open311.org/JSON_and_XML_Conversion/ >`_.
@@ -46,18 +46,18 @@ base class options and attributes.
4646
4747Moreover there are also other two converters useful for specific cases:
4848
49- * :class: `UnorderedConverter `: like default converter but with unordered decoding and encoding.
50- * :class: `ColumnarConverter `: a converter that remaps attributes as child elements in a
49+ * :class: `xmlschema. UnorderedConverter `: like default converter but with unordered decoding and encoding.
50+ * :class: `xmlschema. ColumnarConverter `: a converter that remaps attributes as child elements in a
5151 columnar shape (available since release v1.2.0).
52- * :class: `DataElementConverter `: a converter that converts XML to a tree of
53- :class: `DataElement ` intances , Element-like objects with decoded values and
52+ * :class: `xmlschema. DataElementConverter `: a converter that converts XML to a tree of
53+ :class: `xmlschema. DataElement ` instances , Element-like objects with decoded values and
5454 schema bindings (available since release v1.5.0).
5555
5656
5757Create a custom converter
5858=========================
5959
60- To create a new customized converter you have to subclass the :class: `XMLSchemaConverter `
60+ To create a new customized converter you have to subclass the :class: `xmlschema. XMLSchemaConverter `
6161and redefine the two methods *element_decode * and *element_encode *. These methods are based
6262on the namedtuple `ElementData `, an Element-like data structure that stores the decoded
6363Element parts. This namedtuple is used by decoding and encoding methods as an intermediate
0 commit comments