Provided Views Libraries

Non-regression testing library
This library enables non-regression testing (see chapter "Tools for debugging configuration").
    
see library
SOAP library
This library enables support for SOAP protocol over HTTP connector.
    
see library
SQL schema library
This library generates a graph of the relationships between the tables of a relational database.
    <view name="database_schema">
        <connector type="XMLConnector">
            <parameter name="content" eval="view('SQL_schema', view('SQL_config')/*/*)"/>
        </connector>
    </view>
see library
SQL skeleton library
This library generates a skeleton of a XML rendering of the database.
    <view name="database_skeleton">
        <argument name="root" path-format="value"/>
        <connector type="XMLConnector">
            <parameter name="content" eval="view('SQL_skeleton', view('SQL_config')/*/* | arguments())"/>
        </connector>
    </view>
see template
XPath to SQL library
This library enables support for XPath language on top of SQL connector.
    <view name="database">
        <connector type="XMLConnector">
            <parameter name="content" eval="view('SQL_schema', view('SQL_config')/*/*)"/>
        </connector>
    </view>
see library