Fri Jun 8 19:40:44 2018 UTC ()
Updated textproc/qore-xml-module to version 1.4.1 .

Changes from release notes:
* fixed a bug where the URI path was not respected when
  resolving SOAP calls
* implemented supoprt for handling SOAP faults based on
  the exception err string (must correspond to the fault name)
* implemented supoprt for handling SOAP faults in response
  messages with SOAP bindings
* fixed a bug resolving namespaces in nested schemas with
  late resolution with overlapping namespace prefixes
* fixed a type error in message generation
* implemented the wsdl_set_global_compat_empty_string_is_nothing()
  function and the "compat_empty_string_is_nothing" option for
  the WebService class for backwards compatibility with older
  versions of the WSDL module
* implemented the wsdl_set_global_compat_allow_any_header
  function and the "compat_allow_any_header" option for the
  WebService class for backwards compatibility with older
  versions of the WSDL module
* fixed types when deserializing to eliminate performance
  penalties stripping types in large data structures
* fixed soaputil to import XSDs automatically when parsing WSDLs
* fixed a bug in make_xml() to support underscores at start of tags
* added the InputStreamSaxIterator class
* added the get_xml_value() function
* exception raised when make_xml() called with multi list
  value passed for top level element
* added support for XML comments (XPF_ADD_COMMENTS)
* added missing support for DTD validation
  (parse_xml_with_dtd(),XmlDoc::validateDtd())
* added support for stripping namespace prefixes on element
  names when parsing XML
* added a make_xml(hash, hash) variant that allows for more
  control over the XML output such as date serialization formats
* added AbstractXmlIoInputCallback to provide an abstract API
  for resolving external schema references
* extended XmlDoc::constructor with extra optional hash that
  allows for more control over the XML output such as date
  serialization formats
* XSD-ERROR exception thrown during document validation against
  schema is now more verbose about what exactly failed
* fixed a bug in Windows builds
* added the SalesforceSoapConnection class
* added support for logging messages in the SoapClient module
* added the SoapConnection class
* added API support for specifying the SOAP bindings in the WSDL
  to use
* added support for logging messages in the SoapHandler module
* fixed a bug in late resolution of complexTypes
* fixed a bug handling empty complexType declarations
* fixed a bug handling complexType extentions
* fixed bugs handling elementFormDefault="qualified"
  declarations when the value differs between schemas
* fixed a bug where xsi:type information was serialized when
  not necessary
* added a more user-friendly exception when WSDLs are encountered
  with unsupported bindings
* added WSDL::WSMessageHelper to generate sample messages
* added support for multiple SOAP bindings in the WSDL
  including HTTP GET/POST bindings
* fixed a bug in message serialization; all required elements
  must be present or an exception is thrown
* fixed a bug handling base type extensions to complexTypes
* improved argument error messages with RPC calls in the
  XmlRpcHandler module
* fixed SOAP handler to produce correct URLs in WSDL
* added documentation for the WSOperation class in the WSDL module
* fixed SalesforceSoapClient::callOperation() in the
  SalesforceSoapClient module to respect the soapaction header
* fixed a memory leak in XML-RPC parsing
* supress emitting a SOAPAction header in requests if the binding
  gives an empty string
* updated WSOperation::serializeRequest() to allow the SOAPAction
  header to be overridden in each request
* respect XML generation flags in request generation in WSDL module
* fixed parsing empty base64Binary and hexBinary elements
* added the SoapClient::callOperation() method
* updated SOAP response processing to throw an exception when the
  server responds with an error code
* content-type in exceptional cases follows Soap version
* fixed a bug in the SoapClient::constructor() where a WebService
  object was not supported
* added SalesforceSoapClient user module
* added Salesforce.com.qtest and accompanying WSDLs


(nros)
diff -r1.6 -r1.7 pkgsrc/textproc/qore-xml-module/Makefile
diff -r1.2 -r1.3 pkgsrc/textproc/qore-xml-module/PLIST
diff -r1.3 -r1.4 pkgsrc/textproc/qore-xml-module/distinfo

cvs diff -r1.6 -r1.7 pkgsrc/textproc/qore-xml-module/Makefile (expand / switch to unified diff)

--- pkgsrc/textproc/qore-xml-module/Makefile 2018/01/28 16:24:15 1.6
+++ pkgsrc/textproc/qore-xml-module/Makefile 2018/06/08 19:40:44 1.7
@@ -1,46 +1,48 @@ @@ -1,46 +1,48 @@
1# $NetBSD: Makefile,v 1.6 2018/01/28 16:24:15 wiz Exp $ 1# $NetBSD: Makefile,v 1.7 2018/06/08 19:40:44 nros Exp $
2 2
3DISTNAME= qore-xml-module-1.3 3DISTNAME= qore-xml-module-1.4.1
4PKGREVISION= 2 
5CATEGORIES= textproc 4CATEGORIES= textproc
6MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/} 5MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/}
7EXTRACT_SUFX= .tar.bz2 6EXTRACT_SUFX= .tar.bz2
8GITHUB_PROJECT= module-xml 7GITHUB_PROJECT= module-xml
9GITHUB_RELEASE= v${PKGVERSION_NOREV} 8GITHUB_RELEASE= v${PKGVERSION_NOREV}
10 9
11 10
12MAINTAINER= nros@NetBSD.org 11MAINTAINER= nros@NetBSD.org
13COMMENT= XML module for Qore 12COMMENT= XML module for Qore
14HOMEPAGE= http://www.qore.org/ 13HOMEPAGE= http://www.qore.org/
15LICENSE= gnu-lgpl-v2.1 OR mit 14LICENSE= gnu-lgpl-v2.1 OR mit
16 15
17GNU_CONFIGURE= yes 16GNU_CONFIGURE= yes
18USE_LIBTOOL= yes 17USE_LIBTOOL= yes
19USE_LANGUAGES= c c++11 18USE_LANGUAGES= c c++11
20USE_TOOLS+= gmake pax 19USE_TOOLS+= gmake pax
21PTHREAD_OPTS+= native 20PTHREAD_OPTS+= native
22 21
23CONFIGURE_ARGS+=--with-libsuffix="" 22CONFIGURE_ARGS+=--with-libsuffix=""
24 23
 24REPLACE_QORE= bin/soaputil
 25
25#This is needed in order to comply the with MIT license and binary distribution 26#This is needed in order to comply the with MIT license and binary distribution
26#Install docs 27#Install docs
27INSTALLATION_DIRS+= share/doc/${PKGBASE} 28INSTALLATION_DIRS+= share/doc/${PKGBASE}
28post-install: 29post-install:
29 ${INSTALL_DATA} ${WRKSRC}/COPYING.LGPL \ 30 ${INSTALL_DATA} ${WRKSRC}/COPYING.LGPL \
30 ${DESTDIR}${PREFIX}/share/doc/${PKGBASE} 31 ${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
31 ${INSTALL_DATA} ${WRKSRC}/COPYING.MIT \ 32 ${INSTALL_DATA} ${WRKSRC}/COPYING.MIT \
32 ${DESTDIR}${PREFIX}/share/doc/${PKGBASE} 33 ${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
33 cd ${WRKSRC}/docs && ${PAX} -wr * \ 34 cd ${WRKSRC}/docs && ${PAX} -wr * \
34 ${DESTDIR}${PREFIX}/share/doc/${PKGBASE} 35 ${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
35 ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} \ 36 ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} \
36 ${DESTDIR}${PREFIX}/share/doc/${PKGBASE} 37 ${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
37 38
38 39
 40.include "../../lang/qore/application.mk"
39.include "../../lang/qore/module.mk" 41.include "../../lang/qore/module.mk"
40.include "options.mk" 42.include "options.mk"
41 43
42.include "../../mk/pthread.buildlink3.mk" 44.include "../../mk/pthread.buildlink3.mk"
43.include "../../textproc/libxml2/buildlink3.mk" 45.include "../../textproc/libxml2/buildlink3.mk"
44.include "../../lang/qore/buildlink3.mk" 46.include "../../lang/qore/buildlink3.mk"
45 47
46.include "../../mk/bsd.pkg.mk" 48.include "../../mk/bsd.pkg.mk"

cvs diff -r1.2 -r1.3 pkgsrc/textproc/qore-xml-module/PLIST (expand / switch to unified diff)

--- pkgsrc/textproc/qore-xml-module/PLIST 2016/07/22 12:22:43 1.2
+++ pkgsrc/textproc/qore-xml-module/PLIST 2018/06/08 19:40:44 1.3
@@ -1,79 +1,313 @@ @@ -1,79 +1,313 @@
1@comment $NetBSD: PLIST,v 1.2 2016/07/22 12:22:43 nros Exp $ 1@comment $NetBSD: PLIST,v 1.3 2018/06/08 19:40:44 nros Exp $
2${QORE_USER_MODULE_DIR}/SoapClient.qm 2bin/soaputil
3${QORE_USER_MODULE_DIR}/SoapHandler.qm 
4${QORE_USER_MODULE_DIR}/WSDL.qm 
5${QORE_USER_MODULE_DIR}/XmlRpcHandler.qm 
6${QORE_MODULE_DIR}/xml-api-${QORE_LATEST_MODULE_API}.qmod 3${QORE_MODULE_DIR}/xml-api-${QORE_LATEST_MODULE_API}.qmod
7share/doc/qore-xml-module/COPYING.LGPL 4share/doc/qore-xml-module/COPYING.LGPL
8share/doc/qore-xml-module/COPYING.MIT 5share/doc/qore-xml-module/COPYING.MIT
 6share/doc/qore-xml-module/SalesforceSoapClient/html/_salesforce_soap_client_8qm_8dox_8h_source.html
 7share/doc/qore-xml-module/SalesforceSoapClient/html/annotated.html
 8share/doc/qore-xml-module/SalesforceSoapClient/html/annotated_dup.js
 9share/doc/qore-xml-module/SalesforceSoapClient/html/bc_s.png
 10share/doc/qore-xml-module/SalesforceSoapClient/html/bdwn.png
 11share/doc/qore-xml-module/SalesforceSoapClient/html/class_salesforce_soap_client_1_1_salesforce_soap_client-members.html
 12share/doc/qore-xml-module/SalesforceSoapClient/html/class_salesforce_soap_client_1_1_salesforce_soap_client.html
 13share/doc/qore-xml-module/SalesforceSoapClient/html/class_salesforce_soap_client_1_1_salesforce_soap_client.js
 14share/doc/qore-xml-module/SalesforceSoapClient/html/class_salesforce_soap_client_1_1_salesforce_soap_client__inherit__graph.map
 15share/doc/qore-xml-module/SalesforceSoapClient/html/class_salesforce_soap_client_1_1_salesforce_soap_client__inherit__graph.md5
 16share/doc/qore-xml-module/SalesforceSoapClient/html/class_salesforce_soap_client_1_1_salesforce_soap_client__inherit__graph.png
 17share/doc/qore-xml-module/SalesforceSoapClient/html/class_salesforce_soap_client_1_1_salesforce_soap_connection-members.html
 18share/doc/qore-xml-module/SalesforceSoapClient/html/class_salesforce_soap_client_1_1_salesforce_soap_connection.html
 19share/doc/qore-xml-module/SalesforceSoapClient/html/class_salesforce_soap_client_1_1_salesforce_soap_connection.js
 20share/doc/qore-xml-module/SalesforceSoapClient/html/classes.html
 21share/doc/qore-xml-module/SalesforceSoapClient/html/closed.png
 22share/doc/qore-xml-module/SalesforceSoapClient/html/dir_1935124a1d355a6bc0fee3e0733e48ca.html
 23share/doc/qore-xml-module/SalesforceSoapClient/html/doc.png
 24share/doc/qore-xml-module/SalesforceSoapClient/html/doxygen.css
 25share/doc/qore-xml-module/SalesforceSoapClient/html/doxygen.png
 26share/doc/qore-xml-module/SalesforceSoapClient/html/dynsections.js
 27share/doc/qore-xml-module/SalesforceSoapClient/html/folderclosed.png
 28share/doc/qore-xml-module/SalesforceSoapClient/html/folderopen.png
 29share/doc/qore-xml-module/SalesforceSoapClient/html/functions.html
 30share/doc/qore-xml-module/SalesforceSoapClient/html/functions_func.html
 31share/doc/qore-xml-module/SalesforceSoapClient/html/functions_vars.html
 32share/doc/qore-xml-module/SalesforceSoapClient/html/graph_legend.html
 33share/doc/qore-xml-module/SalesforceSoapClient/html/graph_legend.md5
 34share/doc/qore-xml-module/SalesforceSoapClient/html/graph_legend.png
 35share/doc/qore-xml-module/SalesforceSoapClient/html/hierarchy.html
 36share/doc/qore-xml-module/SalesforceSoapClient/html/hierarchy.js
 37share/doc/qore-xml-module/SalesforceSoapClient/html/index.html
 38share/doc/qore-xml-module/SalesforceSoapClient/html/index.qhp
 39share/doc/qore-xml-module/SalesforceSoapClient/html/inherit_graph_0.map
 40share/doc/qore-xml-module/SalesforceSoapClient/html/inherit_graph_0.md5
 41share/doc/qore-xml-module/SalesforceSoapClient/html/inherit_graph_0.png
 42share/doc/qore-xml-module/SalesforceSoapClient/html/inherit_graph_1.map
 43share/doc/qore-xml-module/SalesforceSoapClient/html/inherit_graph_1.md5
 44share/doc/qore-xml-module/SalesforceSoapClient/html/inherit_graph_1.png
 45share/doc/qore-xml-module/SalesforceSoapClient/html/inherits.html
 46share/doc/qore-xml-module/SalesforceSoapClient/html/jquery.js
 47share/doc/qore-xml-module/SalesforceSoapClient/html/menu.js
 48share/doc/qore-xml-module/SalesforceSoapClient/html/menudata.js
 49share/doc/qore-xml-module/SalesforceSoapClient/html/namespace_salesforce_soap_client.html
 50share/doc/qore-xml-module/SalesforceSoapClient/html/namespace_salesforce_soap_client.js
 51share/doc/qore-xml-module/SalesforceSoapClient/html/namespaces.html
 52share/doc/qore-xml-module/SalesforceSoapClient/html/namespaces.js
 53share/doc/qore-xml-module/SalesforceSoapClient/html/nav_f.png
 54share/doc/qore-xml-module/SalesforceSoapClient/html/nav_g.png
 55share/doc/qore-xml-module/SalesforceSoapClient/html/nav_h.png
 56share/doc/qore-xml-module/SalesforceSoapClient/html/navtree.css
 57share/doc/qore-xml-module/SalesforceSoapClient/html/navtree.js
 58share/doc/qore-xml-module/SalesforceSoapClient/html/navtreedata.js
 59share/doc/qore-xml-module/SalesforceSoapClient/html/navtreeindex0.js
 60share/doc/qore-xml-module/SalesforceSoapClient/html/open.png
 61share/doc/qore-xml-module/SalesforceSoapClient/html/pages.html
 62share/doc/qore-xml-module/SalesforceSoapClient/html/resize.js
 63share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_0.html
 64share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_0.js
 65share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_1.html
 66share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_1.js
 67share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_10.html
 68share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_10.js
 69share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_11.html
 70share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_11.js
 71share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_12.html
 72share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_12.js
 73share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_13.html
 74share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_13.js
 75share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_14.html
 76share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_14.js
 77share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_15.html
 78share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_15.js
 79share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_2.html
 80share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_2.js
 81share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_3.html
 82share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_3.js
 83share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_4.html
 84share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_4.js
 85share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_5.html
 86share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_5.js
 87share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_6.html
 88share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_6.js
 89share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_7.html
 90share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_7.js
 91share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_8.html
 92share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_8.js
 93share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_9.html
 94share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_9.js
 95share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_a.html
 96share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_a.js
 97share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_b.html
 98share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_b.js
 99share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_c.html
 100share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_c.js
 101share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_d.html
 102share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_d.js
 103share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_e.html
 104share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_e.js
 105share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_f.html
 106share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_f.js
 107share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_0.html
 108share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_0.js
 109share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_1.html
 110share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_1.js
 111share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_2.html
 112share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_2.js
 113share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_3.html
 114share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_3.js
 115share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_4.html
 116share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_4.js
 117share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_5.html
 118share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_5.js
 119share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_6.html
 120share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_6.js
 121share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_7.html
 122share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_7.js
 123share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_8.html
 124share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_8.js
 125share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_9.html
 126share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_9.js
 127share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_a.html
 128share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_a.js
 129share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_b.html
 130share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_b.js
 131share/doc/qore-xml-module/SalesforceSoapClient/html/search/close.png
 132share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_0.html
 133share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_0.js
 134share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_1.html
 135share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_1.js
 136share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_10.html
 137share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_10.js
 138share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_11.html
 139share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_11.js
 140share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_12.html
 141share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_12.js
 142share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_13.html
 143share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_13.js
 144share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_2.html
 145share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_2.js
 146share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_3.html
 147share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_3.js
 148share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_4.html
 149share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_4.js
 150share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_5.html
 151share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_5.js
 152share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_6.html
 153share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_6.js
 154share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_7.html
 155share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_7.js
 156share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_8.html
 157share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_8.js
 158share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_9.html
 159share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_9.js
 160share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_a.html
 161share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_a.js
 162share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_b.html
 163share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_b.js
 164share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_c.html
 165share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_c.js
 166share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_d.html
 167share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_d.js
 168share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_e.html
 169share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_e.js
 170share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_f.html
 171share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_f.js
 172share/doc/qore-xml-module/SalesforceSoapClient/html/search/groups_0.html
 173share/doc/qore-xml-module/SalesforceSoapClient/html/search/groups_0.js
 174share/doc/qore-xml-module/SalesforceSoapClient/html/search/mag_sel.png
 175share/doc/qore-xml-module/SalesforceSoapClient/html/search/namespaces_0.html
 176share/doc/qore-xml-module/SalesforceSoapClient/html/search/namespaces_0.js
 177share/doc/qore-xml-module/SalesforceSoapClient/html/search/namespaces_1.html
 178share/doc/qore-xml-module/SalesforceSoapClient/html/search/namespaces_1.js
 179share/doc/qore-xml-module/SalesforceSoapClient/html/search/namespaces_2.html
 180share/doc/qore-xml-module/SalesforceSoapClient/html/search/namespaces_2.js
 181share/doc/qore-xml-module/SalesforceSoapClient/html/search/namespaces_3.html
 182share/doc/qore-xml-module/SalesforceSoapClient/html/search/namespaces_3.js
 183share/doc/qore-xml-module/SalesforceSoapClient/html/search/nomatches.html
 184share/doc/qore-xml-module/SalesforceSoapClient/html/search/pages_0.html
 185share/doc/qore-xml-module/SalesforceSoapClient/html/search/pages_0.js
 186share/doc/qore-xml-module/SalesforceSoapClient/html/search/pages_1.html
 187share/doc/qore-xml-module/SalesforceSoapClient/html/search/pages_1.js
 188share/doc/qore-xml-module/SalesforceSoapClient/html/search/search.css
 189share/doc/qore-xml-module/SalesforceSoapClient/html/search/search.js
 190share/doc/qore-xml-module/SalesforceSoapClient/html/search/search_l.png
 191share/doc/qore-xml-module/SalesforceSoapClient/html/search/search_m.png
 192share/doc/qore-xml-module/SalesforceSoapClient/html/search/search_r.png
 193share/doc/qore-xml-module/SalesforceSoapClient/html/search/searchdata.js
 194share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_0.html
 195share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_0.js
 196share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_1.html
 197share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_1.js
 198share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_10.html
 199share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_10.js
 200share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_11.html
 201share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_11.js
 202share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_12.html
 203share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_12.js
 204share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_2.html
 205share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_2.js
 206share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_3.html
 207share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_3.js
 208share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_4.html
 209share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_4.js
 210share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_5.html
 211share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_5.js
 212share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_6.html
 213share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_6.js
 214share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_7.html
 215share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_7.js
 216share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_8.html
 217share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_8.js
 218share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_9.html
 219share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_9.js
 220share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_a.html
 221share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_a.js
 222share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_b.html
 223share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_b.js
 224share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_c.html
 225share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_c.js
 226share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_d.html
 227share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_d.js
 228share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_e.html
 229share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_e.js
 230share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_f.html
 231share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_f.js
 232share/doc/qore-xml-module/SalesforceSoapClient/html/splitbar.png
 233share/doc/qore-xml-module/SalesforceSoapClient/html/sync_off.png
 234share/doc/qore-xml-module/SalesforceSoapClient/html/sync_on.png
 235share/doc/qore-xml-module/SalesforceSoapClient/html/tab_a.png
 236share/doc/qore-xml-module/SalesforceSoapClient/html/tab_b.png
 237share/doc/qore-xml-module/SalesforceSoapClient/html/tab_h.png
 238share/doc/qore-xml-module/SalesforceSoapClient/html/tab_s.png
 239share/doc/qore-xml-module/SalesforceSoapClient/html/tabs.css
9share/doc/qore-xml-module/SoapClient/html/_soap_client_8qm_8dox_8h_source.html 240share/doc/qore-xml-module/SoapClient/html/_soap_client_8qm_8dox_8h_source.html
10share/doc/qore-xml-module/SoapClient/html/annotated.html 241share/doc/qore-xml-module/SoapClient/html/annotated.html
11share/doc/qore-xml-module/SoapClient/html/annotated_dup.js 242share/doc/qore-xml-module/SoapClient/html/annotated_dup.js
12share/doc/qore-xml-module/SoapClient/html/arrowdown.png 
13share/doc/qore-xml-module/SoapClient/html/arrowright.png 
14share/doc/qore-xml-module/SoapClient/html/bc_s.png 243share/doc/qore-xml-module/SoapClient/html/bc_s.png
15share/doc/qore-xml-module/SoapClient/html/bdwn.png 244share/doc/qore-xml-module/SoapClient/html/bdwn.png
16share/doc/qore-xml-module/SoapClient/html/class_soap_client_1_1_soap_client-members.html 245share/doc/qore-xml-module/SoapClient/html/class_soap_client_1_1_soap_client-members.html
17share/doc/qore-xml-module/SoapClient/html/class_soap_client_1_1_soap_client.html 246share/doc/qore-xml-module/SoapClient/html/class_soap_client_1_1_soap_client.html
18share/doc/qore-xml-module/SoapClient/html/class_soap_client_1_1_soap_client.js 247share/doc/qore-xml-module/SoapClient/html/class_soap_client_1_1_soap_client.js
 248share/doc/qore-xml-module/SoapClient/html/class_soap_client_1_1_soap_connection-members.html
 249share/doc/qore-xml-module/SoapClient/html/class_soap_client_1_1_soap_connection.html
 250share/doc/qore-xml-module/SoapClient/html/class_soap_client_1_1_soap_connection.js
19share/doc/qore-xml-module/SoapClient/html/classes.html 251share/doc/qore-xml-module/SoapClient/html/classes.html
20share/doc/qore-xml-module/SoapClient/html/closed.png 252share/doc/qore-xml-module/SoapClient/html/closed.png
21share/doc/qore-xml-module/SoapClient/html/dir_1935124a1d355a6bc0fee3e0733e48ca.html 253share/doc/qore-xml-module/SoapClient/html/dir_1935124a1d355a6bc0fee3e0733e48ca.html
22share/doc/qore-xml-module/SoapClient/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.map 
23share/doc/qore-xml-module/SoapClient/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.md5 
24share/doc/qore-xml-module/SoapClient/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.png 
25share/doc/qore-xml-module/SoapClient/html/doc.png 254share/doc/qore-xml-module/SoapClient/html/doc.png
26share/doc/qore-xml-module/SoapClient/html/doxygen.css 255share/doc/qore-xml-module/SoapClient/html/doxygen.css
27share/doc/qore-xml-module/SoapClient/html/doxygen.png 256share/doc/qore-xml-module/SoapClient/html/doxygen.png
28share/doc/qore-xml-module/SoapClient/html/dynsections.js 257share/doc/qore-xml-module/SoapClient/html/dynsections.js
29share/doc/qore-xml-module/SoapClient/html/folderclosed.png 258share/doc/qore-xml-module/SoapClient/html/folderclosed.png
30share/doc/qore-xml-module/SoapClient/html/folderopen.png 259share/doc/qore-xml-module/SoapClient/html/folderopen.png
31share/doc/qore-xml-module/SoapClient/html/functions.html 260share/doc/qore-xml-module/SoapClient/html/functions.html
32share/doc/qore-xml-module/SoapClient/html/functions_func.html 261share/doc/qore-xml-module/SoapClient/html/functions_func.html
33share/doc/qore-xml-module/SoapClient/html/functions_vars.html 262share/doc/qore-xml-module/SoapClient/html/functions_vars.html
34share/doc/qore-xml-module/SoapClient/html/graph_legend.html 263share/doc/qore-xml-module/SoapClient/html/graph_legend.html
35share/doc/qore-xml-module/SoapClient/html/graph_legend.md5 264share/doc/qore-xml-module/SoapClient/html/graph_legend.md5
36share/doc/qore-xml-module/SoapClient/html/graph_legend.png 265share/doc/qore-xml-module/SoapClient/html/graph_legend.png
37share/doc/qore-xml-module/SoapClient/html/index.html 266share/doc/qore-xml-module/SoapClient/html/index.html
38share/doc/qore-xml-module/SoapClient/html/index.qhp 267share/doc/qore-xml-module/SoapClient/html/index.qhp
39share/doc/qore-xml-module/SoapClient/html/jquery.js 268share/doc/qore-xml-module/SoapClient/html/jquery.js
 269share/doc/qore-xml-module/SoapClient/html/menu.js
 270share/doc/qore-xml-module/SoapClient/html/menudata.js
40share/doc/qore-xml-module/SoapClient/html/namespace_soap_client.html 271share/doc/qore-xml-module/SoapClient/html/namespace_soap_client.html
41share/doc/qore-xml-module/SoapClient/html/namespace_soap_client.js 272share/doc/qore-xml-module/SoapClient/html/namespace_soap_client.js
42share/doc/qore-xml-module/SoapClient/html/namespaces.html 273share/doc/qore-xml-module/SoapClient/html/namespaces.html
43share/doc/qore-xml-module/SoapClient/html/namespaces.js 274share/doc/qore-xml-module/SoapClient/html/namespaces.js
44share/doc/qore-xml-module/SoapClient/html/nav_f.png 275share/doc/qore-xml-module/SoapClient/html/nav_f.png
45share/doc/qore-xml-module/SoapClient/html/nav_g.png 276share/doc/qore-xml-module/SoapClient/html/nav_g.png
46share/doc/qore-xml-module/SoapClient/html/nav_h.png 277share/doc/qore-xml-module/SoapClient/html/nav_h.png
47share/doc/qore-xml-module/SoapClient/html/navtree.css 278share/doc/qore-xml-module/SoapClient/html/navtree.css
48share/doc/qore-xml-module/SoapClient/html/navtree.js 279share/doc/qore-xml-module/SoapClient/html/navtree.js
49share/doc/qore-xml-module/SoapClient/html/navtreedata.js 280share/doc/qore-xml-module/SoapClient/html/navtreedata.js
50share/doc/qore-xml-module/SoapClient/html/navtreeindex0.js 281share/doc/qore-xml-module/SoapClient/html/navtreeindex0.js
51share/doc/qore-xml-module/SoapClient/html/open.png 282share/doc/qore-xml-module/SoapClient/html/open.png
 283share/doc/qore-xml-module/SoapClient/html/pages.html
52share/doc/qore-xml-module/SoapClient/html/resize.js 284share/doc/qore-xml-module/SoapClient/html/resize.js
53share/doc/qore-xml-module/SoapClient/html/search/all_0.html 285share/doc/qore-xml-module/SoapClient/html/search/all_0.html
54share/doc/qore-xml-module/SoapClient/html/search/all_0.js 286share/doc/qore-xml-module/SoapClient/html/search/all_0.js
55share/doc/qore-xml-module/SoapClient/html/search/all_1.html 287share/doc/qore-xml-module/SoapClient/html/search/all_1.html
56share/doc/qore-xml-module/SoapClient/html/search/all_1.js 288share/doc/qore-xml-module/SoapClient/html/search/all_1.js
57share/doc/qore-xml-module/SoapClient/html/search/all_10.html 289share/doc/qore-xml-module/SoapClient/html/search/all_10.html
58share/doc/qore-xml-module/SoapClient/html/search/all_10.js 290share/doc/qore-xml-module/SoapClient/html/search/all_10.js
59share/doc/qore-xml-module/SoapClient/html/search/all_11.html 291share/doc/qore-xml-module/SoapClient/html/search/all_11.html
60share/doc/qore-xml-module/SoapClient/html/search/all_11.js 292share/doc/qore-xml-module/SoapClient/html/search/all_11.js
61share/doc/qore-xml-module/SoapClient/html/search/all_12.html 293share/doc/qore-xml-module/SoapClient/html/search/all_12.html
62share/doc/qore-xml-module/SoapClient/html/search/all_12.js 294share/doc/qore-xml-module/SoapClient/html/search/all_12.js
63share/doc/qore-xml-module/SoapClient/html/search/all_13.html 295share/doc/qore-xml-module/SoapClient/html/search/all_13.html
64share/doc/qore-xml-module/SoapClient/html/search/all_13.js 296share/doc/qore-xml-module/SoapClient/html/search/all_13.js
65share/doc/qore-xml-module/SoapClient/html/search/all_14.html 297share/doc/qore-xml-module/SoapClient/html/search/all_14.html
66share/doc/qore-xml-module/SoapClient/html/search/all_14.js 298share/doc/qore-xml-module/SoapClient/html/search/all_14.js
 299share/doc/qore-xml-module/SoapClient/html/search/all_15.html
 300share/doc/qore-xml-module/SoapClient/html/search/all_15.js
67share/doc/qore-xml-module/SoapClient/html/search/all_2.html 301share/doc/qore-xml-module/SoapClient/html/search/all_2.html
68share/doc/qore-xml-module/SoapClient/html/search/all_2.js 302share/doc/qore-xml-module/SoapClient/html/search/all_2.js
69share/doc/qore-xml-module/SoapClient/html/search/all_3.html 303share/doc/qore-xml-module/SoapClient/html/search/all_3.html
70share/doc/qore-xml-module/SoapClient/html/search/all_3.js 304share/doc/qore-xml-module/SoapClient/html/search/all_3.js
71share/doc/qore-xml-module/SoapClient/html/search/all_4.html 305share/doc/qore-xml-module/SoapClient/html/search/all_4.html
72share/doc/qore-xml-module/SoapClient/html/search/all_4.js 306share/doc/qore-xml-module/SoapClient/html/search/all_4.js
73share/doc/qore-xml-module/SoapClient/html/search/all_5.html 307share/doc/qore-xml-module/SoapClient/html/search/all_5.html
74share/doc/qore-xml-module/SoapClient/html/search/all_5.js 308share/doc/qore-xml-module/SoapClient/html/search/all_5.js
75share/doc/qore-xml-module/SoapClient/html/search/all_6.html 309share/doc/qore-xml-module/SoapClient/html/search/all_6.html
76share/doc/qore-xml-module/SoapClient/html/search/all_6.js 310share/doc/qore-xml-module/SoapClient/html/search/all_6.js
77share/doc/qore-xml-module/SoapClient/html/search/all_7.html 311share/doc/qore-xml-module/SoapClient/html/search/all_7.html
78share/doc/qore-xml-module/SoapClient/html/search/all_7.js 312share/doc/qore-xml-module/SoapClient/html/search/all_7.js
79share/doc/qore-xml-module/SoapClient/html/search/all_8.html 313share/doc/qore-xml-module/SoapClient/html/search/all_8.html
@@ -94,35 +328,51 @@ share/doc/qore-xml-module/SoapClient/htm @@ -94,35 +328,51 @@ share/doc/qore-xml-module/SoapClient/htm
94share/doc/qore-xml-module/SoapClient/html/search/all_f.js 328share/doc/qore-xml-module/SoapClient/html/search/all_f.js
95share/doc/qore-xml-module/SoapClient/html/search/classes_0.html 329share/doc/qore-xml-module/SoapClient/html/search/classes_0.html
96share/doc/qore-xml-module/SoapClient/html/search/classes_0.js 330share/doc/qore-xml-module/SoapClient/html/search/classes_0.js
97share/doc/qore-xml-module/SoapClient/html/search/classes_1.html 331share/doc/qore-xml-module/SoapClient/html/search/classes_1.html
98share/doc/qore-xml-module/SoapClient/html/search/classes_1.js 332share/doc/qore-xml-module/SoapClient/html/search/classes_1.js
99share/doc/qore-xml-module/SoapClient/html/search/classes_2.html 333share/doc/qore-xml-module/SoapClient/html/search/classes_2.html
100share/doc/qore-xml-module/SoapClient/html/search/classes_2.js 334share/doc/qore-xml-module/SoapClient/html/search/classes_2.js
101share/doc/qore-xml-module/SoapClient/html/search/classes_3.html 335share/doc/qore-xml-module/SoapClient/html/search/classes_3.html
102share/doc/qore-xml-module/SoapClient/html/search/classes_3.js 336share/doc/qore-xml-module/SoapClient/html/search/classes_3.js
103share/doc/qore-xml-module/SoapClient/html/search/classes_4.html 337share/doc/qore-xml-module/SoapClient/html/search/classes_4.html
104share/doc/qore-xml-module/SoapClient/html/search/classes_4.js 338share/doc/qore-xml-module/SoapClient/html/search/classes_4.js
105share/doc/qore-xml-module/SoapClient/html/search/classes_5.html 339share/doc/qore-xml-module/SoapClient/html/search/classes_5.html
106share/doc/qore-xml-module/SoapClient/html/search/classes_5.js 340share/doc/qore-xml-module/SoapClient/html/search/classes_5.js
 341share/doc/qore-xml-module/SoapClient/html/search/classes_6.html
 342share/doc/qore-xml-module/SoapClient/html/search/classes_6.js
 343share/doc/qore-xml-module/SoapClient/html/search/classes_7.html
 344share/doc/qore-xml-module/SoapClient/html/search/classes_7.js
 345share/doc/qore-xml-module/SoapClient/html/search/classes_8.html
 346share/doc/qore-xml-module/SoapClient/html/search/classes_8.js
 347share/doc/qore-xml-module/SoapClient/html/search/classes_9.html
 348share/doc/qore-xml-module/SoapClient/html/search/classes_9.js
 349share/doc/qore-xml-module/SoapClient/html/search/classes_a.html
 350share/doc/qore-xml-module/SoapClient/html/search/classes_a.js
 351share/doc/qore-xml-module/SoapClient/html/search/classes_b.html
 352share/doc/qore-xml-module/SoapClient/html/search/classes_b.js
107share/doc/qore-xml-module/SoapClient/html/search/close.png 353share/doc/qore-xml-module/SoapClient/html/search/close.png
108share/doc/qore-xml-module/SoapClient/html/search/functions_0.html 354share/doc/qore-xml-module/SoapClient/html/search/functions_0.html
109share/doc/qore-xml-module/SoapClient/html/search/functions_0.js 355share/doc/qore-xml-module/SoapClient/html/search/functions_0.js
110share/doc/qore-xml-module/SoapClient/html/search/functions_1.html 356share/doc/qore-xml-module/SoapClient/html/search/functions_1.html
111share/doc/qore-xml-module/SoapClient/html/search/functions_1.js 357share/doc/qore-xml-module/SoapClient/html/search/functions_1.js
112share/doc/qore-xml-module/SoapClient/html/search/functions_10.html 358share/doc/qore-xml-module/SoapClient/html/search/functions_10.html
113share/doc/qore-xml-module/SoapClient/html/search/functions_10.js 359share/doc/qore-xml-module/SoapClient/html/search/functions_10.js
114share/doc/qore-xml-module/SoapClient/html/search/functions_11.html 360share/doc/qore-xml-module/SoapClient/html/search/functions_11.html
115share/doc/qore-xml-module/SoapClient/html/search/functions_11.js 361share/doc/qore-xml-module/SoapClient/html/search/functions_11.js
 362share/doc/qore-xml-module/SoapClient/html/search/functions_12.html
 363share/doc/qore-xml-module/SoapClient/html/search/functions_12.js
 364share/doc/qore-xml-module/SoapClient/html/search/functions_13.html
 365share/doc/qore-xml-module/SoapClient/html/search/functions_13.js
116share/doc/qore-xml-module/SoapClient/html/search/functions_2.html 366share/doc/qore-xml-module/SoapClient/html/search/functions_2.html
117share/doc/qore-xml-module/SoapClient/html/search/functions_2.js 367share/doc/qore-xml-module/SoapClient/html/search/functions_2.js
118share/doc/qore-xml-module/SoapClient/html/search/functions_3.html 368share/doc/qore-xml-module/SoapClient/html/search/functions_3.html
119share/doc/qore-xml-module/SoapClient/html/search/functions_3.js 369share/doc/qore-xml-module/SoapClient/html/search/functions_3.js
120share/doc/qore-xml-module/SoapClient/html/search/functions_4.html 370share/doc/qore-xml-module/SoapClient/html/search/functions_4.html
121share/doc/qore-xml-module/SoapClient/html/search/functions_4.js 371share/doc/qore-xml-module/SoapClient/html/search/functions_4.js
122share/doc/qore-xml-module/SoapClient/html/search/functions_5.html 372share/doc/qore-xml-module/SoapClient/html/search/functions_5.html
123share/doc/qore-xml-module/SoapClient/html/search/functions_5.js 373share/doc/qore-xml-module/SoapClient/html/search/functions_5.js
124share/doc/qore-xml-module/SoapClient/html/search/functions_6.html 374share/doc/qore-xml-module/SoapClient/html/search/functions_6.html
125share/doc/qore-xml-module/SoapClient/html/search/functions_6.js 375share/doc/qore-xml-module/SoapClient/html/search/functions_6.js
126share/doc/qore-xml-module/SoapClient/html/search/functions_7.html 376share/doc/qore-xml-module/SoapClient/html/search/functions_7.html
127share/doc/qore-xml-module/SoapClient/html/search/functions_7.js 377share/doc/qore-xml-module/SoapClient/html/search/functions_7.js
128share/doc/qore-xml-module/SoapClient/html/search/functions_8.html 378share/doc/qore-xml-module/SoapClient/html/search/functions_8.html
@@ -140,187 +390,304 @@ share/doc/qore-xml-module/SoapClient/htm @@ -140,187 +390,304 @@ share/doc/qore-xml-module/SoapClient/htm
140share/doc/qore-xml-module/SoapClient/html/search/functions_e.html 390share/doc/qore-xml-module/SoapClient/html/search/functions_e.html
141share/doc/qore-xml-module/SoapClient/html/search/functions_e.js 391share/doc/qore-xml-module/SoapClient/html/search/functions_e.js
142share/doc/qore-xml-module/SoapClient/html/search/functions_f.html 392share/doc/qore-xml-module/SoapClient/html/search/functions_f.html
143share/doc/qore-xml-module/SoapClient/html/search/functions_f.js 393share/doc/qore-xml-module/SoapClient/html/search/functions_f.js
144share/doc/qore-xml-module/SoapClient/html/search/groups_0.html 394share/doc/qore-xml-module/SoapClient/html/search/groups_0.html
145share/doc/qore-xml-module/SoapClient/html/search/groups_0.js 395share/doc/qore-xml-module/SoapClient/html/search/groups_0.js
146share/doc/qore-xml-module/SoapClient/html/search/mag_sel.png 396share/doc/qore-xml-module/SoapClient/html/search/mag_sel.png
147share/doc/qore-xml-module/SoapClient/html/search/namespaces_0.html 397share/doc/qore-xml-module/SoapClient/html/search/namespaces_0.html
148share/doc/qore-xml-module/SoapClient/html/search/namespaces_0.js 398share/doc/qore-xml-module/SoapClient/html/search/namespaces_0.js
149share/doc/qore-xml-module/SoapClient/html/search/namespaces_1.html 399share/doc/qore-xml-module/SoapClient/html/search/namespaces_1.html
150share/doc/qore-xml-module/SoapClient/html/search/namespaces_1.js 400share/doc/qore-xml-module/SoapClient/html/search/namespaces_1.js
151share/doc/qore-xml-module/SoapClient/html/search/namespaces_2.html 401share/doc/qore-xml-module/SoapClient/html/search/namespaces_2.html
152share/doc/qore-xml-module/SoapClient/html/search/namespaces_2.js 402share/doc/qore-xml-module/SoapClient/html/search/namespaces_2.js
 403share/doc/qore-xml-module/SoapClient/html/search/namespaces_3.html
 404share/doc/qore-xml-module/SoapClient/html/search/namespaces_3.js
153share/doc/qore-xml-module/SoapClient/html/search/nomatches.html 405share/doc/qore-xml-module/SoapClient/html/search/nomatches.html
154share/doc/qore-xml-module/SoapClient/html/search/pages_0.html 406share/doc/qore-xml-module/SoapClient/html/search/pages_0.html
155share/doc/qore-xml-module/SoapClient/html/search/pages_0.js 407share/doc/qore-xml-module/SoapClient/html/search/pages_0.js
 408share/doc/qore-xml-module/SoapClient/html/search/pages_1.html
 409share/doc/qore-xml-module/SoapClient/html/search/pages_1.js
156share/doc/qore-xml-module/SoapClient/html/search/search.css 410share/doc/qore-xml-module/SoapClient/html/search/search.css
157share/doc/qore-xml-module/SoapClient/html/search/search.js 411share/doc/qore-xml-module/SoapClient/html/search/search.js
158share/doc/qore-xml-module/SoapClient/html/search/search_l.png 412share/doc/qore-xml-module/SoapClient/html/search/search_l.png
159share/doc/qore-xml-module/SoapClient/html/search/search_m.png 413share/doc/qore-xml-module/SoapClient/html/search/search_m.png
160share/doc/qore-xml-module/SoapClient/html/search/search_r.png 414share/doc/qore-xml-module/SoapClient/html/search/search_r.png
161share/doc/qore-xml-module/SoapClient/html/search/searchdata.js 415share/doc/qore-xml-module/SoapClient/html/search/searchdata.js
162share/doc/qore-xml-module/SoapClient/html/search/variables_0.html 416share/doc/qore-xml-module/SoapClient/html/search/variables_0.html
163share/doc/qore-xml-module/SoapClient/html/search/variables_0.js 417share/doc/qore-xml-module/SoapClient/html/search/variables_0.js
164share/doc/qore-xml-module/SoapClient/html/search/variables_1.html 418share/doc/qore-xml-module/SoapClient/html/search/variables_1.html
165share/doc/qore-xml-module/SoapClient/html/search/variables_1.js 419share/doc/qore-xml-module/SoapClient/html/search/variables_1.js
 420share/doc/qore-xml-module/SoapClient/html/search/variables_10.html
 421share/doc/qore-xml-module/SoapClient/html/search/variables_10.js
 422share/doc/qore-xml-module/SoapClient/html/search/variables_11.html
 423share/doc/qore-xml-module/SoapClient/html/search/variables_11.js
 424share/doc/qore-xml-module/SoapClient/html/search/variables_12.html
 425share/doc/qore-xml-module/SoapClient/html/search/variables_12.js
166share/doc/qore-xml-module/SoapClient/html/search/variables_2.html 426share/doc/qore-xml-module/SoapClient/html/search/variables_2.html
167share/doc/qore-xml-module/SoapClient/html/search/variables_2.js 427share/doc/qore-xml-module/SoapClient/html/search/variables_2.js
168share/doc/qore-xml-module/SoapClient/html/search/variables_3.html 428share/doc/qore-xml-module/SoapClient/html/search/variables_3.html
169share/doc/qore-xml-module/SoapClient/html/search/variables_3.js 429share/doc/qore-xml-module/SoapClient/html/search/variables_3.js
170share/doc/qore-xml-module/SoapClient/html/search/variables_4.html 430share/doc/qore-xml-module/SoapClient/html/search/variables_4.html
171share/doc/qore-xml-module/SoapClient/html/search/variables_4.js 431share/doc/qore-xml-module/SoapClient/html/search/variables_4.js
172share/doc/qore-xml-module/SoapClient/html/search/variables_5.html 432share/doc/qore-xml-module/SoapClient/html/search/variables_5.html
173share/doc/qore-xml-module/SoapClient/html/search/variables_5.js 433share/doc/qore-xml-module/SoapClient/html/search/variables_5.js
174share/doc/qore-xml-module/SoapClient/html/search/variables_6.html 434share/doc/qore-xml-module/SoapClient/html/search/variables_6.html
175share/doc/qore-xml-module/SoapClient/html/search/variables_6.js 435share/doc/qore-xml-module/SoapClient/html/search/variables_6.js
176share/doc/qore-xml-module/SoapClient/html/search/variables_7.html 436share/doc/qore-xml-module/SoapClient/html/search/variables_7.html
177share/doc/qore-xml-module/SoapClient/html/search/variables_7.js 437share/doc/qore-xml-module/SoapClient/html/search/variables_7.js
178share/doc/qore-xml-module/SoapClient/html/search/variables_8.html 438share/doc/qore-xml-module/SoapClient/html/search/variables_8.html
179share/doc/qore-xml-module/SoapClient/html/search/variables_8.js 439share/doc/qore-xml-module/SoapClient/html/search/variables_8.js
180share/doc/qore-xml-module/SoapClient/html/search/variables_9.html 440share/doc/qore-xml-module/SoapClient/html/search/variables_9.html
181share/doc/qore-xml-module/SoapClient/html/search/variables_9.js 441share/doc/qore-xml-module/SoapClient/html/search/variables_9.js
182share/doc/qore-xml-module/SoapClient/html/search/variables_a.html 442share/doc/qore-xml-module/SoapClient/html/search/variables_a.html
183share/doc/qore-xml-module/SoapClient/html/search/variables_a.js 443share/doc/qore-xml-module/SoapClient/html/search/variables_a.js
184share/doc/qore-xml-module/SoapClient/html/search/variables_b.html 444share/doc/qore-xml-module/SoapClient/html/search/variables_b.html
185share/doc/qore-xml-module/SoapClient/html/search/variables_b.js 445share/doc/qore-xml-module/SoapClient/html/search/variables_b.js
186share/doc/qore-xml-module/SoapClient/html/search/variables_c.html 446share/doc/qore-xml-module/SoapClient/html/search/variables_c.html
187share/doc/qore-xml-module/SoapClient/html/search/variables_c.js 447share/doc/qore-xml-module/SoapClient/html/search/variables_c.js
188share/doc/qore-xml-module/SoapClient/html/search/variables_d.html 448share/doc/qore-xml-module/SoapClient/html/search/variables_d.html
189share/doc/qore-xml-module/SoapClient/html/search/variables_d.js 449share/doc/qore-xml-module/SoapClient/html/search/variables_d.js
190share/doc/qore-xml-module/SoapClient/html/search/variables_e.html 450share/doc/qore-xml-module/SoapClient/html/search/variables_e.html
191share/doc/qore-xml-module/SoapClient/html/search/variables_e.js 451share/doc/qore-xml-module/SoapClient/html/search/variables_e.js
 452share/doc/qore-xml-module/SoapClient/html/search/variables_f.html
 453share/doc/qore-xml-module/SoapClient/html/search/variables_f.js
192share/doc/qore-xml-module/SoapClient/html/splitbar.png 454share/doc/qore-xml-module/SoapClient/html/splitbar.png
193share/doc/qore-xml-module/SoapClient/html/sync_off.png 455share/doc/qore-xml-module/SoapClient/html/sync_off.png
194share/doc/qore-xml-module/SoapClient/html/sync_on.png 456share/doc/qore-xml-module/SoapClient/html/sync_on.png
195share/doc/qore-xml-module/SoapClient/html/tab_a.png 457share/doc/qore-xml-module/SoapClient/html/tab_a.png
196share/doc/qore-xml-module/SoapClient/html/tab_b.png 458share/doc/qore-xml-module/SoapClient/html/tab_b.png
197share/doc/qore-xml-module/SoapClient/html/tab_h.png 459share/doc/qore-xml-module/SoapClient/html/tab_h.png
198share/doc/qore-xml-module/SoapClient/html/tab_s.png 460share/doc/qore-xml-module/SoapClient/html/tab_s.png
199share/doc/qore-xml-module/SoapClient/html/tabs.css 461share/doc/qore-xml-module/SoapClient/html/tabs.css
200share/doc/qore-xml-module/SoapHandler/html/_soap_handler_8qm_8dox_8h_source.html 462share/doc/qore-xml-module/SoapHandler/html/_soap_handler_8qm_8dox_8h_source.html
201share/doc/qore-xml-module/SoapHandler/html/annotated.html 463share/doc/qore-xml-module/SoapHandler/html/annotated.html
202share/doc/qore-xml-module/SoapHandler/html/annotated_dup.js 464share/doc/qore-xml-module/SoapHandler/html/annotated_dup.js
203share/doc/qore-xml-module/SoapHandler/html/arrowdown.png 
204share/doc/qore-xml-module/SoapHandler/html/arrowright.png 
205share/doc/qore-xml-module/SoapHandler/html/bc_s.png 465share/doc/qore-xml-module/SoapHandler/html/bc_s.png
206share/doc/qore-xml-module/SoapHandler/html/bdwn.png 466share/doc/qore-xml-module/SoapHandler/html/bdwn.png
207share/doc/qore-xml-module/SoapHandler/html/class_soap_handler_1_1_soap_handler-members.html 467share/doc/qore-xml-module/SoapHandler/html/class_soap_handler_1_1_soap_handler-members.html
208share/doc/qore-xml-module/SoapHandler/html/class_soap_handler_1_1_soap_handler.html 468share/doc/qore-xml-module/SoapHandler/html/class_soap_handler_1_1_soap_handler.html
209share/doc/qore-xml-module/SoapHandler/html/class_soap_handler_1_1_soap_handler.js 469share/doc/qore-xml-module/SoapHandler/html/class_soap_handler_1_1_soap_handler.js
210share/doc/qore-xml-module/SoapHandler/html/classes.html 470share/doc/qore-xml-module/SoapHandler/html/classes.html
211share/doc/qore-xml-module/SoapHandler/html/closed.png 471share/doc/qore-xml-module/SoapHandler/html/closed.png
212share/doc/qore-xml-module/SoapHandler/html/dir_1935124a1d355a6bc0fee3e0733e48ca.html 472share/doc/qore-xml-module/SoapHandler/html/dir_1935124a1d355a6bc0fee3e0733e48ca.html
213share/doc/qore-xml-module/SoapHandler/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.map 
214share/doc/qore-xml-module/SoapHandler/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.md5 
215share/doc/qore-xml-module/SoapHandler/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.png 
216share/doc/qore-xml-module/SoapHandler/html/doc.png 473share/doc/qore-xml-module/SoapHandler/html/doc.png
217share/doc/qore-xml-module/SoapHandler/html/doxygen.css 474share/doc/qore-xml-module/SoapHandler/html/doxygen.css
218share/doc/qore-xml-module/SoapHandler/html/doxygen.png 475share/doc/qore-xml-module/SoapHandler/html/doxygen.png
219share/doc/qore-xml-module/SoapHandler/html/dynsections.js 476share/doc/qore-xml-module/SoapHandler/html/dynsections.js
220share/doc/qore-xml-module/SoapHandler/html/folderclosed.png 477share/doc/qore-xml-module/SoapHandler/html/folderclosed.png
221share/doc/qore-xml-module/SoapHandler/html/folderopen.png 478share/doc/qore-xml-module/SoapHandler/html/folderopen.png
222share/doc/qore-xml-module/SoapHandler/html/functions.html 479share/doc/qore-xml-module/SoapHandler/html/functions.html
223share/doc/qore-xml-module/SoapHandler/html/functions_func.html 480share/doc/qore-xml-module/SoapHandler/html/functions_func.html
224share/doc/qore-xml-module/SoapHandler/html/functions_vars.html 481share/doc/qore-xml-module/SoapHandler/html/functions_vars.html
225share/doc/qore-xml-module/SoapHandler/html/graph_legend.html 482share/doc/qore-xml-module/SoapHandler/html/graph_legend.html
226share/doc/qore-xml-module/SoapHandler/html/graph_legend.md5 483share/doc/qore-xml-module/SoapHandler/html/graph_legend.md5
227share/doc/qore-xml-module/SoapHandler/html/graph_legend.png 484share/doc/qore-xml-module/SoapHandler/html/graph_legend.png
228share/doc/qore-xml-module/SoapHandler/html/index.html 485share/doc/qore-xml-module/SoapHandler/html/index.html
229share/doc/qore-xml-module/SoapHandler/html/index.qhp 486share/doc/qore-xml-module/SoapHandler/html/index.qhp
230share/doc/qore-xml-module/SoapHandler/html/jquery.js 487share/doc/qore-xml-module/SoapHandler/html/jquery.js
 488share/doc/qore-xml-module/SoapHandler/html/menu.js
 489share/doc/qore-xml-module/SoapHandler/html/menudata.js
231share/doc/qore-xml-module/SoapHandler/html/namespace_soap_handler.html 490share/doc/qore-xml-module/SoapHandler/html/namespace_soap_handler.html
232share/doc/qore-xml-module/SoapHandler/html/namespace_soap_handler.js 491share/doc/qore-xml-module/SoapHandler/html/namespace_soap_handler.js
233share/doc/qore-xml-module/SoapHandler/html/namespaces.html 492share/doc/qore-xml-module/SoapHandler/html/namespaces.html
234share/doc/qore-xml-module/SoapHandler/html/namespaces.js 493share/doc/qore-xml-module/SoapHandler/html/namespaces.js
235share/doc/qore-xml-module/SoapHandler/html/nav_f.png 494share/doc/qore-xml-module/SoapHandler/html/nav_f.png
236share/doc/qore-xml-module/SoapHandler/html/nav_g.png 495share/doc/qore-xml-module/SoapHandler/html/nav_g.png
237share/doc/qore-xml-module/SoapHandler/html/nav_h.png 496share/doc/qore-xml-module/SoapHandler/html/nav_h.png
238share/doc/qore-xml-module/SoapHandler/html/navtree.css 497share/doc/qore-xml-module/SoapHandler/html/navtree.css
239share/doc/qore-xml-module/SoapHandler/html/navtree.js 498share/doc/qore-xml-module/SoapHandler/html/navtree.js
240share/doc/qore-xml-module/SoapHandler/html/navtreedata.js 499share/doc/qore-xml-module/SoapHandler/html/navtreedata.js
241share/doc/qore-xml-module/SoapHandler/html/navtreeindex0.js 500share/doc/qore-xml-module/SoapHandler/html/navtreeindex0.js
242share/doc/qore-xml-module/SoapHandler/html/open.png 501share/doc/qore-xml-module/SoapHandler/html/open.png
 502share/doc/qore-xml-module/SoapHandler/html/pages.html
243share/doc/qore-xml-module/SoapHandler/html/resize.js 503share/doc/qore-xml-module/SoapHandler/html/resize.js
244share/doc/qore-xml-module/SoapHandler/html/search/all_0.html 504share/doc/qore-xml-module/SoapHandler/html/search/all_0.html
245share/doc/qore-xml-module/SoapHandler/html/search/all_0.js 505share/doc/qore-xml-module/SoapHandler/html/search/all_0.js
246share/doc/qore-xml-module/SoapHandler/html/search/all_1.html 506share/doc/qore-xml-module/SoapHandler/html/search/all_1.html
247share/doc/qore-xml-module/SoapHandler/html/search/all_1.js 507share/doc/qore-xml-module/SoapHandler/html/search/all_1.js
 508share/doc/qore-xml-module/SoapHandler/html/search/all_10.html
 509share/doc/qore-xml-module/SoapHandler/html/search/all_10.js
 510share/doc/qore-xml-module/SoapHandler/html/search/all_11.html
 511share/doc/qore-xml-module/SoapHandler/html/search/all_11.js
 512share/doc/qore-xml-module/SoapHandler/html/search/all_12.html
 513share/doc/qore-xml-module/SoapHandler/html/search/all_12.js
 514share/doc/qore-xml-module/SoapHandler/html/search/all_13.html
 515share/doc/qore-xml-module/SoapHandler/html/search/all_13.js
248share/doc/qore-xml-module/SoapHandler/html/search/all_2.html 516share/doc/qore-xml-module/SoapHandler/html/search/all_2.html
249share/doc/qore-xml-module/SoapHandler/html/search/all_2.js 517share/doc/qore-xml-module/SoapHandler/html/search/all_2.js
250share/doc/qore-xml-module/SoapHandler/html/search/all_3.html 518share/doc/qore-xml-module/SoapHandler/html/search/all_3.html
251share/doc/qore-xml-module/SoapHandler/html/search/all_3.js 519share/doc/qore-xml-module/SoapHandler/html/search/all_3.js
252share/doc/qore-xml-module/SoapHandler/html/search/all_4.html 520share/doc/qore-xml-module/SoapHandler/html/search/all_4.html
253share/doc/qore-xml-module/SoapHandler/html/search/all_4.js 521share/doc/qore-xml-module/SoapHandler/html/search/all_4.js
254share/doc/qore-xml-module/SoapHandler/html/search/all_5.html 522share/doc/qore-xml-module/SoapHandler/html/search/all_5.html
255share/doc/qore-xml-module/SoapHandler/html/search/all_5.js 523share/doc/qore-xml-module/SoapHandler/html/search/all_5.js
 524share/doc/qore-xml-module/SoapHandler/html/search/all_6.html
 525share/doc/qore-xml-module/SoapHandler/html/search/all_6.js
 526share/doc/qore-xml-module/SoapHandler/html/search/all_7.html
 527share/doc/qore-xml-module/SoapHandler/html/search/all_7.js
 528share/doc/qore-xml-module/SoapHandler/html/search/all_8.html
 529share/doc/qore-xml-module/SoapHandler/html/search/all_8.js
 530share/doc/qore-xml-module/SoapHandler/html/search/all_9.html
 531share/doc/qore-xml-module/SoapHandler/html/search/all_9.js
 532share/doc/qore-xml-module/SoapHandler/html/search/all_a.html
 533share/doc/qore-xml-module/SoapHandler/html/search/all_a.js
 534share/doc/qore-xml-module/SoapHandler/html/search/all_b.html
 535share/doc/qore-xml-module/SoapHandler/html/search/all_b.js
 536share/doc/qore-xml-module/SoapHandler/html/search/all_c.html
 537share/doc/qore-xml-module/SoapHandler/html/search/all_c.js
 538share/doc/qore-xml-module/SoapHandler/html/search/all_d.html
 539share/doc/qore-xml-module/SoapHandler/html/search/all_d.js
 540share/doc/qore-xml-module/SoapHandler/html/search/all_e.html
 541share/doc/qore-xml-module/SoapHandler/html/search/all_e.js
 542share/doc/qore-xml-module/SoapHandler/html/search/all_f.html
 543share/doc/qore-xml-module/SoapHandler/html/search/all_f.js
256share/doc/qore-xml-module/SoapHandler/html/search/classes_0.html 544share/doc/qore-xml-module/SoapHandler/html/search/classes_0.html
257share/doc/qore-xml-module/SoapHandler/html/search/classes_0.js 545share/doc/qore-xml-module/SoapHandler/html/search/classes_0.js
 546share/doc/qore-xml-module/SoapHandler/html/search/classes_1.html
 547share/doc/qore-xml-module/SoapHandler/html/search/classes_1.js
 548share/doc/qore-xml-module/SoapHandler/html/search/classes_2.html
 549share/doc/qore-xml-module/SoapHandler/html/search/classes_2.js
 550share/doc/qore-xml-module/SoapHandler/html/search/classes_3.html
 551share/doc/qore-xml-module/SoapHandler/html/search/classes_3.js
 552share/doc/qore-xml-module/SoapHandler/html/search/classes_4.html
 553share/doc/qore-xml-module/SoapHandler/html/search/classes_4.js
 554share/doc/qore-xml-module/SoapHandler/html/search/classes_5.html
 555share/doc/qore-xml-module/SoapHandler/html/search/classes_5.js
258share/doc/qore-xml-module/SoapHandler/html/search/close.png 556share/doc/qore-xml-module/SoapHandler/html/search/close.png
259share/doc/qore-xml-module/SoapHandler/html/search/functions_0.html 557share/doc/qore-xml-module/SoapHandler/html/search/functions_0.html
260share/doc/qore-xml-module/SoapHandler/html/search/functions_0.js 558share/doc/qore-xml-module/SoapHandler/html/search/functions_0.js
261share/doc/qore-xml-module/SoapHandler/html/search/functions_1.html 559share/doc/qore-xml-module/SoapHandler/html/search/functions_1.html
262share/doc/qore-xml-module/SoapHandler/html/search/functions_1.js 560share/doc/qore-xml-module/SoapHandler/html/search/functions_1.js
 561share/doc/qore-xml-module/SoapHandler/html/search/functions_10.html
 562share/doc/qore-xml-module/SoapHandler/html/search/functions_10.js
 563share/doc/qore-xml-module/SoapHandler/html/search/functions_11.html
 564share/doc/qore-xml-module/SoapHandler/html/search/functions_11.js
 565share/doc/qore-xml-module/SoapHandler/html/search/functions_12.html
 566share/doc/qore-xml-module/SoapHandler/html/search/functions_12.js
263share/doc/qore-xml-module/SoapHandler/html/search/functions_2.html 567share/doc/qore-xml-module/SoapHandler/html/search/functions_2.html
264share/doc/qore-xml-module/SoapHandler/html/search/functions_2.js 568share/doc/qore-xml-module/SoapHandler/html/search/functions_2.js
265share/doc/qore-xml-module/SoapHandler/html/search/functions_3.html 569share/doc/qore-xml-module/SoapHandler/html/search/functions_3.html
266share/doc/qore-xml-module/SoapHandler/html/search/functions_3.js 570share/doc/qore-xml-module/SoapHandler/html/search/functions_3.js
267share/doc/qore-xml-module/SoapHandler/html/search/functions_4.html 571share/doc/qore-xml-module/SoapHandler/html/search/functions_4.html
268share/doc/qore-xml-module/SoapHandler/html/search/functions_4.js 572share/doc/qore-xml-module/SoapHandler/html/search/functions_4.js
 573share/doc/qore-xml-module/SoapHandler/html/search/functions_5.html
 574share/doc/qore-xml-module/SoapHandler/html/search/functions_5.js
 575share/doc/qore-xml-module/SoapHandler/html/search/functions_6.html
 576share/doc/qore-xml-module/SoapHandler/html/search/functions_6.js
 577share/doc/qore-xml-module/SoapHandler/html/search/functions_7.html
 578share/doc/qore-xml-module/SoapHandler/html/search/functions_7.js
 579share/doc/qore-xml-module/SoapHandler/html/search/functions_8.html
 580share/doc/qore-xml-module/SoapHandler/html/search/functions_8.js
 581share/doc/qore-xml-module/SoapHandler/html/search/functions_9.html
 582share/doc/qore-xml-module/SoapHandler/html/search/functions_9.js
 583share/doc/qore-xml-module/SoapHandler/html/search/functions_a.html
 584share/doc/qore-xml-module/SoapHandler/html/search/functions_a.js
 585share/doc/qore-xml-module/SoapHandler/html/search/functions_b.html
 586share/doc/qore-xml-module/SoapHandler/html/search/functions_b.js
 587share/doc/qore-xml-module/SoapHandler/html/search/functions_c.html
 588share/doc/qore-xml-module/SoapHandler/html/search/functions_c.js
 589share/doc/qore-xml-module/SoapHandler/html/search/functions_d.html
 590share/doc/qore-xml-module/SoapHandler/html/search/functions_d.js
 591share/doc/qore-xml-module/SoapHandler/html/search/functions_e.html
 592share/doc/qore-xml-module/SoapHandler/html/search/functions_e.js
 593share/doc/qore-xml-module/SoapHandler/html/search/functions_f.html
 594share/doc/qore-xml-module/SoapHandler/html/search/functions_f.js
 595share/doc/qore-xml-module/SoapHandler/html/search/groups_0.html
 596share/doc/qore-xml-module/SoapHandler/html/search/groups_0.js
269share/doc/qore-xml-module/SoapHandler/html/search/mag_sel.png 597share/doc/qore-xml-module/SoapHandler/html/search/mag_sel.png
270share/doc/qore-xml-module/SoapHandler/html/search/namespaces_0.html 598share/doc/qore-xml-module/SoapHandler/html/search/namespaces_0.html
271share/doc/qore-xml-module/SoapHandler/html/search/namespaces_0.js 599share/doc/qore-xml-module/SoapHandler/html/search/namespaces_0.js
 600share/doc/qore-xml-module/SoapHandler/html/search/namespaces_1.html
 601share/doc/qore-xml-module/SoapHandler/html/search/namespaces_1.js
 602share/doc/qore-xml-module/SoapHandler/html/search/namespaces_2.html
 603share/doc/qore-xml-module/SoapHandler/html/search/namespaces_2.js
272share/doc/qore-xml-module/SoapHandler/html/search/nomatches.html 604share/doc/qore-xml-module/SoapHandler/html/search/nomatches.html
273share/doc/qore-xml-module/SoapHandler/html/search/pages_0.html 605share/doc/qore-xml-module/SoapHandler/html/search/pages_0.html
274share/doc/qore-xml-module/SoapHandler/html/search/pages_0.js 606share/doc/qore-xml-module/SoapHandler/html/search/pages_0.js
 607share/doc/qore-xml-module/SoapHandler/html/search/pages_1.html
 608share/doc/qore-xml-module/SoapHandler/html/search/pages_1.js
275share/doc/qore-xml-module/SoapHandler/html/search/search.css 609share/doc/qore-xml-module/SoapHandler/html/search/search.css
276share/doc/qore-xml-module/SoapHandler/html/search/search.js 610share/doc/qore-xml-module/SoapHandler/html/search/search.js
277share/doc/qore-xml-module/SoapHandler/html/search/search_l.png 611share/doc/qore-xml-module/SoapHandler/html/search/search_l.png
278share/doc/qore-xml-module/SoapHandler/html/search/search_m.png 612share/doc/qore-xml-module/SoapHandler/html/search/search_m.png
279share/doc/qore-xml-module/SoapHandler/html/search/search_r.png 613share/doc/qore-xml-module/SoapHandler/html/search/search_r.png
280share/doc/qore-xml-module/SoapHandler/html/search/searchdata.js 614share/doc/qore-xml-module/SoapHandler/html/search/searchdata.js
281share/doc/qore-xml-module/SoapHandler/html/search/variables_0.html 615share/doc/qore-xml-module/SoapHandler/html/search/variables_0.html
282share/doc/qore-xml-module/SoapHandler/html/search/variables_0.js 616share/doc/qore-xml-module/SoapHandler/html/search/variables_0.js
 617share/doc/qore-xml-module/SoapHandler/html/search/variables_1.html
 618share/doc/qore-xml-module/SoapHandler/html/search/variables_1.js
 619share/doc/qore-xml-module/SoapHandler/html/search/variables_2.html
 620share/doc/qore-xml-module/SoapHandler/html/search/variables_2.js
 621share/doc/qore-xml-module/SoapHandler/html/search/variables_3.html
 622share/doc/qore-xml-module/SoapHandler/html/search/variables_3.js
 623share/doc/qore-xml-module/SoapHandler/html/search/variables_4.html
 624share/doc/qore-xml-module/SoapHandler/html/search/variables_4.js
 625share/doc/qore-xml-module/SoapHandler/html/search/variables_5.html
 626share/doc/qore-xml-module/SoapHandler/html/search/variables_5.js
283share/doc/qore-xml-module/SoapHandler/html/splitbar.png 627share/doc/qore-xml-module/SoapHandler/html/splitbar.png
284share/doc/qore-xml-module/SoapHandler/html/sync_off.png 628share/doc/qore-xml-module/SoapHandler/html/sync_off.png
285share/doc/qore-xml-module/SoapHandler/html/sync_on.png 629share/doc/qore-xml-module/SoapHandler/html/sync_on.png
286share/doc/qore-xml-module/SoapHandler/html/tab_a.png 630share/doc/qore-xml-module/SoapHandler/html/tab_a.png
287share/doc/qore-xml-module/SoapHandler/html/tab_b.png 631share/doc/qore-xml-module/SoapHandler/html/tab_b.png
288share/doc/qore-xml-module/SoapHandler/html/tab_h.png 632share/doc/qore-xml-module/SoapHandler/html/tab_h.png
289share/doc/qore-xml-module/SoapHandler/html/tab_s.png 633share/doc/qore-xml-module/SoapHandler/html/tab_s.png
290share/doc/qore-xml-module/SoapHandler/html/tabs.css 634share/doc/qore-xml-module/SoapHandler/html/tabs.css
291share/doc/qore-xml-module/WSDL/html/_w_s_d_l_8qm_8dox_8h_source.html 635share/doc/qore-xml-module/WSDL/html/_w_s_d_l_8qm_8dox_8h_source.html
292share/doc/qore-xml-module/WSDL/html/annotated.html 636share/doc/qore-xml-module/WSDL/html/annotated.html
293share/doc/qore-xml-module/WSDL/html/annotated_dup.js 637share/doc/qore-xml-module/WSDL/html/annotated_dup.js
294share/doc/qore-xml-module/WSDL/html/arrowdown.png 
295share/doc/qore-xml-module/WSDL/html/arrowright.png 
296share/doc/qore-xml-module/WSDL/html/bc_s.png 638share/doc/qore-xml-module/WSDL/html/bc_s.png
297share/doc/qore-xml-module/WSDL/html/bdwn.png 639share/doc/qore-xml-module/WSDL/html/bdwn.png
298share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding-members.html 640share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding-members.html
299share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding.html 641share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding.html
 642share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding.js
300share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding__inherit__graph.map 643share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding__inherit__graph.map
301share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding__inherit__graph.md5 644share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding__inherit__graph.md5
302share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding__inherit__graph.png 645share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding__inherit__graph.png
 646share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_content_description-members.html
 647share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_content_description.html
 648share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_content_description.js
 649share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_message_body_description-members.html
 650share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_message_body_description.html
 651share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_message_body_description.js
 652share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_message_description-members.html
 653share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_message_description.html
 654share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_message_description.js
 655share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_message_header_description-members.html
 656share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_message_header_description.html
 657share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_message_header_description.js
 658share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_mime_xml_message_description-members.html
 659share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_mime_xml_message_description.html
 660share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_mime_xml_message_description.js
303share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_namespaces-members.html 661share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_namespaces-members.html
304share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_namespaces.html 662share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_namespaces.html
305share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_namespaces.js 663share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_namespaces.js
 664share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_operational_binding-members.html
 665share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_operational_binding.html
 666share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_operational_binding__inherit__graph.map
 667share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_operational_binding__inherit__graph.md5
 668share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_operational_binding__inherit__graph.png
306share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_d_l_lib-members.html 669share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_d_l_lib-members.html
307share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_d_l_lib.html 670share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_d_l_lib.html
308share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_d_l_lib.js 671share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_d_l_lib.js
309share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message-members.html 672share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message-members.html
310share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message.html 673share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message.html
 674share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message.js
311share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message__inherit__graph.map 675share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message__inherit__graph.map
312share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message__inherit__graph.md5 676share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message__inherit__graph.md5
313share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message__inherit__graph.png 677share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message__inherit__graph.png
 678share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message_helper-members.html
 679share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message_helper.html
 680share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message_helper.js
314share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_operation-members.html 681share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_operation-members.html
315share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_operation.html 682share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_operation.html
316share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_operation.js 683share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_operation.js
317share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_operation__inherit__graph.map 684share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_operation__inherit__graph.map
318share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_operation__inherit__graph.md5 685share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_operation__inherit__graph.md5
319share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_operation__inherit__graph.png 686share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_operation__inherit__graph.png
320share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_web_service-members.html 687share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_web_service-members.html
321share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_web_service.html 688share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_web_service.html
322share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_web_service.js 689share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_web_service.js
323share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_web_service__inherit__graph.map 690share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_web_service__inherit__graph.map
324share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_web_service__inherit__graph.md5 691share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_web_service__inherit__graph.md5
325share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_web_service__inherit__graph.png 692share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_web_service__inherit__graph.png
326share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_xsd_array_type-members.html 693share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_xsd_array_type-members.html
@@ -356,91 +723,133 @@ share/doc/qore-xml-module/WSDL/html/clas @@ -356,91 +723,133 @@ share/doc/qore-xml-module/WSDL/html/clas
356share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_xsd_named_data__inherit__graph.map 723share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_xsd_named_data__inherit__graph.map
357share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_xsd_named_data__inherit__graph.md5 724share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_xsd_named_data__inherit__graph.md5
358share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_xsd_named_data__inherit__graph.png 725share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_xsd_named_data__inherit__graph.png
359share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_xsd_simple_type-members.html 726share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_xsd_simple_type-members.html
360share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_xsd_simple_type.html 727share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_xsd_simple_type.html
361share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_xsd_typed_data-members.html 728share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_xsd_typed_data-members.html
362share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_xsd_typed_data.html 729share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_xsd_typed_data.html
363share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_xsd_typed_data__inherit__graph.map 730share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_xsd_typed_data__inherit__graph.map
364share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_xsd_typed_data__inherit__graph.md5 731share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_xsd_typed_data__inherit__graph.md5
365share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_xsd_typed_data__inherit__graph.png 732share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_xsd_typed_data__inherit__graph.png
366share/doc/qore-xml-module/WSDL/html/classes.html 733share/doc/qore-xml-module/WSDL/html/classes.html
367share/doc/qore-xml-module/WSDL/html/closed.png 734share/doc/qore-xml-module/WSDL/html/closed.png
368share/doc/qore-xml-module/WSDL/html/dir_1935124a1d355a6bc0fee3e0733e48ca.html 735share/doc/qore-xml-module/WSDL/html/dir_1935124a1d355a6bc0fee3e0733e48ca.html
369share/doc/qore-xml-module/WSDL/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.map 
370share/doc/qore-xml-module/WSDL/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.md5 
371share/doc/qore-xml-module/WSDL/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.png 
372share/doc/qore-xml-module/WSDL/html/doc.png 736share/doc/qore-xml-module/WSDL/html/doc.png
373share/doc/qore-xml-module/WSDL/html/doxygen.css 737share/doc/qore-xml-module/WSDL/html/doxygen.css
374share/doc/qore-xml-module/WSDL/html/doxygen.png 738share/doc/qore-xml-module/WSDL/html/doxygen.png
375share/doc/qore-xml-module/WSDL/html/dynsections.js 739share/doc/qore-xml-module/WSDL/html/dynsections.js
376share/doc/qore-xml-module/WSDL/html/folderclosed.png 740share/doc/qore-xml-module/WSDL/html/folderclosed.png
377share/doc/qore-xml-module/WSDL/html/folderopen.png 741share/doc/qore-xml-module/WSDL/html/folderopen.png
378share/doc/qore-xml-module/WSDL/html/functions.html 742share/doc/qore-xml-module/WSDL/html/functions.html
379share/doc/qore-xml-module/WSDL/html/functions_func.html 743share/doc/qore-xml-module/WSDL/html/functions_func.html
380share/doc/qore-xml-module/WSDL/html/functions_vars.html 744share/doc/qore-xml-module/WSDL/html/functions_vars.html
381share/doc/qore-xml-module/WSDL/html/graph_legend.html 745share/doc/qore-xml-module/WSDL/html/graph_legend.html
382share/doc/qore-xml-module/WSDL/html/graph_legend.md5 746share/doc/qore-xml-module/WSDL/html/graph_legend.md5
383share/doc/qore-xml-module/WSDL/html/graph_legend.png 747share/doc/qore-xml-module/WSDL/html/graph_legend.png
384share/doc/qore-xml-module/WSDL/html/hierarchy.html 748share/doc/qore-xml-module/WSDL/html/hierarchy.html
385share/doc/qore-xml-module/WSDL/html/hierarchy.js 749share/doc/qore-xml-module/WSDL/html/hierarchy.js
386share/doc/qore-xml-module/WSDL/html/index.html 750share/doc/qore-xml-module/WSDL/html/index.html
387share/doc/qore-xml-module/WSDL/html/index.qhp 751share/doc/qore-xml-module/WSDL/html/index.qhp
388share/doc/qore-xml-module/WSDL/html/inherit_graph_0.map 752share/doc/qore-xml-module/WSDL/html/inherit_graph_0.map
389share/doc/qore-xml-module/WSDL/html/inherit_graph_0.md5 753share/doc/qore-xml-module/WSDL/html/inherit_graph_0.md5
390share/doc/qore-xml-module/WSDL/html/inherit_graph_0.png 754share/doc/qore-xml-module/WSDL/html/inherit_graph_0.png
391share/doc/qore-xml-module/WSDL/html/inherit_graph_1.map 755share/doc/qore-xml-module/WSDL/html/inherit_graph_1.map
392share/doc/qore-xml-module/WSDL/html/inherit_graph_1.md5 756share/doc/qore-xml-module/WSDL/html/inherit_graph_1.md5
393share/doc/qore-xml-module/WSDL/html/inherit_graph_1.png 757share/doc/qore-xml-module/WSDL/html/inherit_graph_1.png
 758share/doc/qore-xml-module/WSDL/html/inherit_graph_10.map
 759share/doc/qore-xml-module/WSDL/html/inherit_graph_10.md5
 760share/doc/qore-xml-module/WSDL/html/inherit_graph_10.png
 761share/doc/qore-xml-module/WSDL/html/inherit_graph_11.map
 762share/doc/qore-xml-module/WSDL/html/inherit_graph_11.md5
 763share/doc/qore-xml-module/WSDL/html/inherit_graph_11.png
 764share/doc/qore-xml-module/WSDL/html/inherit_graph_12.map
 765share/doc/qore-xml-module/WSDL/html/inherit_graph_12.md5
 766share/doc/qore-xml-module/WSDL/html/inherit_graph_12.png
 767share/doc/qore-xml-module/WSDL/html/inherit_graph_13.map
 768share/doc/qore-xml-module/WSDL/html/inherit_graph_13.md5
 769share/doc/qore-xml-module/WSDL/html/inherit_graph_13.png
 770share/doc/qore-xml-module/WSDL/html/inherit_graph_14.map
 771share/doc/qore-xml-module/WSDL/html/inherit_graph_14.md5
 772share/doc/qore-xml-module/WSDL/html/inherit_graph_14.png
 773share/doc/qore-xml-module/WSDL/html/inherit_graph_15.map
 774share/doc/qore-xml-module/WSDL/html/inherit_graph_15.md5
 775share/doc/qore-xml-module/WSDL/html/inherit_graph_15.png
 776share/doc/qore-xml-module/WSDL/html/inherit_graph_16.map
 777share/doc/qore-xml-module/WSDL/html/inherit_graph_16.md5
 778share/doc/qore-xml-module/WSDL/html/inherit_graph_16.png
 779share/doc/qore-xml-module/WSDL/html/inherit_graph_17.map
 780share/doc/qore-xml-module/WSDL/html/inherit_graph_17.md5
 781share/doc/qore-xml-module/WSDL/html/inherit_graph_17.png
394share/doc/qore-xml-module/WSDL/html/inherit_graph_2.map 782share/doc/qore-xml-module/WSDL/html/inherit_graph_2.map
395share/doc/qore-xml-module/WSDL/html/inherit_graph_2.md5 783share/doc/qore-xml-module/WSDL/html/inherit_graph_2.md5
396share/doc/qore-xml-module/WSDL/html/inherit_graph_2.png 784share/doc/qore-xml-module/WSDL/html/inherit_graph_2.png
397share/doc/qore-xml-module/WSDL/html/inherit_graph_3.map 785share/doc/qore-xml-module/WSDL/html/inherit_graph_3.map
398share/doc/qore-xml-module/WSDL/html/inherit_graph_3.md5 786share/doc/qore-xml-module/WSDL/html/inherit_graph_3.md5
399share/doc/qore-xml-module/WSDL/html/inherit_graph_3.png 787share/doc/qore-xml-module/WSDL/html/inherit_graph_3.png
400share/doc/qore-xml-module/WSDL/html/inherit_graph_4.map 788share/doc/qore-xml-module/WSDL/html/inherit_graph_4.map
401share/doc/qore-xml-module/WSDL/html/inherit_graph_4.md5 789share/doc/qore-xml-module/WSDL/html/inherit_graph_4.md5
402share/doc/qore-xml-module/WSDL/html/inherit_graph_4.png 790share/doc/qore-xml-module/WSDL/html/inherit_graph_4.png
403share/doc/qore-xml-module/WSDL/html/inherit_graph_5.map 791share/doc/qore-xml-module/WSDL/html/inherit_graph_5.map
404share/doc/qore-xml-module/WSDL/html/inherit_graph_5.md5 792share/doc/qore-xml-module/WSDL/html/inherit_graph_5.md5
405share/doc/qore-xml-module/WSDL/html/inherit_graph_5.png 793share/doc/qore-xml-module/WSDL/html/inherit_graph_5.png
406share/doc/qore-xml-module/WSDL/html/inherit_graph_6.map 794share/doc/qore-xml-module/WSDL/html/inherit_graph_6.map
407share/doc/qore-xml-module/WSDL/html/inherit_graph_6.md5 795share/doc/qore-xml-module/WSDL/html/inherit_graph_6.md5
408share/doc/qore-xml-module/WSDL/html/inherit_graph_6.png 796share/doc/qore-xml-module/WSDL/html/inherit_graph_6.png
 797share/doc/qore-xml-module/WSDL/html/inherit_graph_7.map
 798share/doc/qore-xml-module/WSDL/html/inherit_graph_7.md5
 799share/doc/qore-xml-module/WSDL/html/inherit_graph_7.png
 800share/doc/qore-xml-module/WSDL/html/inherit_graph_8.map
 801share/doc/qore-xml-module/WSDL/html/inherit_graph_8.md5
 802share/doc/qore-xml-module/WSDL/html/inherit_graph_8.png
 803share/doc/qore-xml-module/WSDL/html/inherit_graph_9.map
 804share/doc/qore-xml-module/WSDL/html/inherit_graph_9.md5
 805share/doc/qore-xml-module/WSDL/html/inherit_graph_9.png
409share/doc/qore-xml-module/WSDL/html/inherits.html 806share/doc/qore-xml-module/WSDL/html/inherits.html
410share/doc/qore-xml-module/WSDL/html/jquery.js 807share/doc/qore-xml-module/WSDL/html/jquery.js
 808share/doc/qore-xml-module/WSDL/html/menu.js
 809share/doc/qore-xml-module/WSDL/html/menudata.js
411share/doc/qore-xml-module/WSDL/html/namespace_w_s_d_l.html 810share/doc/qore-xml-module/WSDL/html/namespace_w_s_d_l.html
412share/doc/qore-xml-module/WSDL/html/namespace_w_s_d_l.js 811share/doc/qore-xml-module/WSDL/html/namespace_w_s_d_l.js
413share/doc/qore-xml-module/WSDL/html/namespacemembers.html 812share/doc/qore-xml-module/WSDL/html/namespacemembers.html
 813share/doc/qore-xml-module/WSDL/html/namespacemembers_func.html
414share/doc/qore-xml-module/WSDL/html/namespacemembers_vars.html 814share/doc/qore-xml-module/WSDL/html/namespacemembers_vars.html
415share/doc/qore-xml-module/WSDL/html/namespaces.html 815share/doc/qore-xml-module/WSDL/html/namespaces.html
416share/doc/qore-xml-module/WSDL/html/namespaces.js 816share/doc/qore-xml-module/WSDL/html/namespaces.js
417share/doc/qore-xml-module/WSDL/html/nav_f.png 817share/doc/qore-xml-module/WSDL/html/nav_f.png
418share/doc/qore-xml-module/WSDL/html/nav_g.png 818share/doc/qore-xml-module/WSDL/html/nav_g.png
419share/doc/qore-xml-module/WSDL/html/nav_h.png 819share/doc/qore-xml-module/WSDL/html/nav_h.png
420share/doc/qore-xml-module/WSDL/html/navtree.css 820share/doc/qore-xml-module/WSDL/html/navtree.css
421share/doc/qore-xml-module/WSDL/html/navtree.js 821share/doc/qore-xml-module/WSDL/html/navtree.js
422share/doc/qore-xml-module/WSDL/html/navtreedata.js 822share/doc/qore-xml-module/WSDL/html/navtreedata.js
423share/doc/qore-xml-module/WSDL/html/navtreeindex0.js 823share/doc/qore-xml-module/WSDL/html/navtreeindex0.js
424share/doc/qore-xml-module/WSDL/html/open.png 824share/doc/qore-xml-module/WSDL/html/open.png
 825share/doc/qore-xml-module/WSDL/html/pages.html
425share/doc/qore-xml-module/WSDL/html/resize.js 826share/doc/qore-xml-module/WSDL/html/resize.js
426share/doc/qore-xml-module/WSDL/html/search/all_0.html 827share/doc/qore-xml-module/WSDL/html/search/all_0.html
427share/doc/qore-xml-module/WSDL/html/search/all_0.js 828share/doc/qore-xml-module/WSDL/html/search/all_0.js
428share/doc/qore-xml-module/WSDL/html/search/all_1.html 829share/doc/qore-xml-module/WSDL/html/search/all_1.html
429share/doc/qore-xml-module/WSDL/html/search/all_1.js 830share/doc/qore-xml-module/WSDL/html/search/all_1.js
430share/doc/qore-xml-module/WSDL/html/search/all_10.html 831share/doc/qore-xml-module/WSDL/html/search/all_10.html
431share/doc/qore-xml-module/WSDL/html/search/all_10.js 832share/doc/qore-xml-module/WSDL/html/search/all_10.js
432share/doc/qore-xml-module/WSDL/html/search/all_11.html 833share/doc/qore-xml-module/WSDL/html/search/all_11.html
433share/doc/qore-xml-module/WSDL/html/search/all_11.js 834share/doc/qore-xml-module/WSDL/html/search/all_11.js
 835share/doc/qore-xml-module/WSDL/html/search/all_12.html
 836share/doc/qore-xml-module/WSDL/html/search/all_12.js
 837share/doc/qore-xml-module/WSDL/html/search/all_13.html
 838share/doc/qore-xml-module/WSDL/html/search/all_13.js
 839share/doc/qore-xml-module/WSDL/html/search/all_14.html
 840share/doc/qore-xml-module/WSDL/html/search/all_14.js
 841share/doc/qore-xml-module/WSDL/html/search/all_15.html
 842share/doc/qore-xml-module/WSDL/html/search/all_15.js
434share/doc/qore-xml-module/WSDL/html/search/all_2.html 843share/doc/qore-xml-module/WSDL/html/search/all_2.html
435share/doc/qore-xml-module/WSDL/html/search/all_2.js 844share/doc/qore-xml-module/WSDL/html/search/all_2.js
436share/doc/qore-xml-module/WSDL/html/search/all_3.html 845share/doc/qore-xml-module/WSDL/html/search/all_3.html
437share/doc/qore-xml-module/WSDL/html/search/all_3.js 846share/doc/qore-xml-module/WSDL/html/search/all_3.js
438share/doc/qore-xml-module/WSDL/html/search/all_4.html 847share/doc/qore-xml-module/WSDL/html/search/all_4.html
439share/doc/qore-xml-module/WSDL/html/search/all_4.js 848share/doc/qore-xml-module/WSDL/html/search/all_4.js
440share/doc/qore-xml-module/WSDL/html/search/all_5.html 849share/doc/qore-xml-module/WSDL/html/search/all_5.html
441share/doc/qore-xml-module/WSDL/html/search/all_5.js 850share/doc/qore-xml-module/WSDL/html/search/all_5.js
442share/doc/qore-xml-module/WSDL/html/search/all_6.html 851share/doc/qore-xml-module/WSDL/html/search/all_6.html
443share/doc/qore-xml-module/WSDL/html/search/all_6.js 852share/doc/qore-xml-module/WSDL/html/search/all_6.js
444share/doc/qore-xml-module/WSDL/html/search/all_7.html 853share/doc/qore-xml-module/WSDL/html/search/all_7.html
445share/doc/qore-xml-module/WSDL/html/search/all_7.js 854share/doc/qore-xml-module/WSDL/html/search/all_7.js
446share/doc/qore-xml-module/WSDL/html/search/all_8.html 855share/doc/qore-xml-module/WSDL/html/search/all_8.html
@@ -457,202 +866,523 @@ share/doc/qore-xml-module/WSDL/html/sear @@ -457,202 +866,523 @@ share/doc/qore-xml-module/WSDL/html/sear
457share/doc/qore-xml-module/WSDL/html/search/all_d.js 866share/doc/qore-xml-module/WSDL/html/search/all_d.js
458share/doc/qore-xml-module/WSDL/html/search/all_e.html 867share/doc/qore-xml-module/WSDL/html/search/all_e.html
459share/doc/qore-xml-module/WSDL/html/search/all_e.js 868share/doc/qore-xml-module/WSDL/html/search/all_e.js
460share/doc/qore-xml-module/WSDL/html/search/all_f.html 869share/doc/qore-xml-module/WSDL/html/search/all_f.html
461share/doc/qore-xml-module/WSDL/html/search/all_f.js 870share/doc/qore-xml-module/WSDL/html/search/all_f.js
462share/doc/qore-xml-module/WSDL/html/search/classes_0.html 871share/doc/qore-xml-module/WSDL/html/search/classes_0.html
463share/doc/qore-xml-module/WSDL/html/search/classes_0.js 872share/doc/qore-xml-module/WSDL/html/search/classes_0.js
464share/doc/qore-xml-module/WSDL/html/search/classes_1.html 873share/doc/qore-xml-module/WSDL/html/search/classes_1.html
465share/doc/qore-xml-module/WSDL/html/search/classes_1.js 874share/doc/qore-xml-module/WSDL/html/search/classes_1.js
466share/doc/qore-xml-module/WSDL/html/search/classes_2.html 875share/doc/qore-xml-module/WSDL/html/search/classes_2.html
467share/doc/qore-xml-module/WSDL/html/search/classes_2.js 876share/doc/qore-xml-module/WSDL/html/search/classes_2.js
468share/doc/qore-xml-module/WSDL/html/search/classes_3.html 877share/doc/qore-xml-module/WSDL/html/search/classes_3.html
469share/doc/qore-xml-module/WSDL/html/search/classes_3.js 878share/doc/qore-xml-module/WSDL/html/search/classes_3.js
 879share/doc/qore-xml-module/WSDL/html/search/classes_4.html
 880share/doc/qore-xml-module/WSDL/html/search/classes_4.js
 881share/doc/qore-xml-module/WSDL/html/search/classes_5.html
 882share/doc/qore-xml-module/WSDL/html/search/classes_5.js
 883share/doc/qore-xml-module/WSDL/html/search/classes_6.html
 884share/doc/qore-xml-module/WSDL/html/search/classes_6.js
 885share/doc/qore-xml-module/WSDL/html/search/classes_7.html
 886share/doc/qore-xml-module/WSDL/html/search/classes_7.js
 887share/doc/qore-xml-module/WSDL/html/search/classes_8.html
 888share/doc/qore-xml-module/WSDL/html/search/classes_8.js
 889share/doc/qore-xml-module/WSDL/html/search/classes_9.html
 890share/doc/qore-xml-module/WSDL/html/search/classes_9.js
 891share/doc/qore-xml-module/WSDL/html/search/classes_a.html
 892share/doc/qore-xml-module/WSDL/html/search/classes_a.js
 893share/doc/qore-xml-module/WSDL/html/search/classes_b.html
 894share/doc/qore-xml-module/WSDL/html/search/classes_b.js
470share/doc/qore-xml-module/WSDL/html/search/close.png 895share/doc/qore-xml-module/WSDL/html/search/close.png
471share/doc/qore-xml-module/WSDL/html/search/functions_0.html 896share/doc/qore-xml-module/WSDL/html/search/functions_0.html
472share/doc/qore-xml-module/WSDL/html/search/functions_0.js 897share/doc/qore-xml-module/WSDL/html/search/functions_0.js
473share/doc/qore-xml-module/WSDL/html/search/functions_1.html 898share/doc/qore-xml-module/WSDL/html/search/functions_1.html
474share/doc/qore-xml-module/WSDL/html/search/functions_1.js 899share/doc/qore-xml-module/WSDL/html/search/functions_1.js
 900share/doc/qore-xml-module/WSDL/html/search/functions_10.html
 901share/doc/qore-xml-module/WSDL/html/search/functions_10.js
 902share/doc/qore-xml-module/WSDL/html/search/functions_11.html
 903share/doc/qore-xml-module/WSDL/html/search/functions_11.js
 904share/doc/qore-xml-module/WSDL/html/search/functions_12.html
 905share/doc/qore-xml-module/WSDL/html/search/functions_12.js
 906share/doc/qore-xml-module/WSDL/html/search/functions_13.html
 907share/doc/qore-xml-module/WSDL/html/search/functions_13.js
475share/doc/qore-xml-module/WSDL/html/search/functions_2.html 908share/doc/qore-xml-module/WSDL/html/search/functions_2.html
476share/doc/qore-xml-module/WSDL/html/search/functions_2.js 909share/doc/qore-xml-module/WSDL/html/search/functions_2.js
477share/doc/qore-xml-module/WSDL/html/search/functions_3.html 910share/doc/qore-xml-module/WSDL/html/search/functions_3.html
478share/doc/qore-xml-module/WSDL/html/search/functions_3.js 911share/doc/qore-xml-module/WSDL/html/search/functions_3.js
479share/doc/qore-xml-module/WSDL/html/search/functions_4.html 912share/doc/qore-xml-module/WSDL/html/search/functions_4.html
480share/doc/qore-xml-module/WSDL/html/search/functions_4.js 913share/doc/qore-xml-module/WSDL/html/search/functions_4.js
481share/doc/qore-xml-module/WSDL/html/search/functions_5.html 914share/doc/qore-xml-module/WSDL/html/search/functions_5.html
482share/doc/qore-xml-module/WSDL/html/search/functions_5.js 915share/doc/qore-xml-module/WSDL/html/search/functions_5.js
483share/doc/qore-xml-module/WSDL/html/search/functions_6.html 916share/doc/qore-xml-module/WSDL/html/search/functions_6.html
484share/doc/qore-xml-module/WSDL/html/search/functions_6.js 917share/doc/qore-xml-module/WSDL/html/search/functions_6.js
485share/doc/qore-xml-module/WSDL/html/search/functions_7.html 918share/doc/qore-xml-module/WSDL/html/search/functions_7.html
486share/doc/qore-xml-module/WSDL/html/search/functions_7.js 919share/doc/qore-xml-module/WSDL/html/search/functions_7.js
487share/doc/qore-xml-module/WSDL/html/search/functions_8.html 920share/doc/qore-xml-module/WSDL/html/search/functions_8.html
488share/doc/qore-xml-module/WSDL/html/search/functions_8.js 921share/doc/qore-xml-module/WSDL/html/search/functions_8.js
489share/doc/qore-xml-module/WSDL/html/search/functions_9.html 922share/doc/qore-xml-module/WSDL/html/search/functions_9.html
490share/doc/qore-xml-module/WSDL/html/search/functions_9.js 923share/doc/qore-xml-module/WSDL/html/search/functions_9.js
491share/doc/qore-xml-module/WSDL/html/search/functions_a.html 924share/doc/qore-xml-module/WSDL/html/search/functions_a.html
492share/doc/qore-xml-module/WSDL/html/search/functions_a.js 925share/doc/qore-xml-module/WSDL/html/search/functions_a.js
 926share/doc/qore-xml-module/WSDL/html/search/functions_b.html
 927share/doc/qore-xml-module/WSDL/html/search/functions_b.js
 928share/doc/qore-xml-module/WSDL/html/search/functions_c.html
 929share/doc/qore-xml-module/WSDL/html/search/functions_c.js
 930share/doc/qore-xml-module/WSDL/html/search/functions_d.html
 931share/doc/qore-xml-module/WSDL/html/search/functions_d.js
 932share/doc/qore-xml-module/WSDL/html/search/functions_e.html
 933share/doc/qore-xml-module/WSDL/html/search/functions_e.js
 934share/doc/qore-xml-module/WSDL/html/search/functions_f.html
 935share/doc/qore-xml-module/WSDL/html/search/functions_f.js
 936share/doc/qore-xml-module/WSDL/html/search/groups_0.html
 937share/doc/qore-xml-module/WSDL/html/search/groups_0.js
493share/doc/qore-xml-module/WSDL/html/search/mag_sel.png 938share/doc/qore-xml-module/WSDL/html/search/mag_sel.png
494share/doc/qore-xml-module/WSDL/html/search/namespaces_0.html 939share/doc/qore-xml-module/WSDL/html/search/namespaces_0.html
495share/doc/qore-xml-module/WSDL/html/search/namespaces_0.js 940share/doc/qore-xml-module/WSDL/html/search/namespaces_0.js
 941share/doc/qore-xml-module/WSDL/html/search/namespaces_1.html
 942share/doc/qore-xml-module/WSDL/html/search/namespaces_1.js
 943share/doc/qore-xml-module/WSDL/html/search/namespaces_2.html
 944share/doc/qore-xml-module/WSDL/html/search/namespaces_2.js
496share/doc/qore-xml-module/WSDL/html/search/nomatches.html 945share/doc/qore-xml-module/WSDL/html/search/nomatches.html
497share/doc/qore-xml-module/WSDL/html/search/pages_0.html 946share/doc/qore-xml-module/WSDL/html/search/pages_0.html
498share/doc/qore-xml-module/WSDL/html/search/pages_0.js 947share/doc/qore-xml-module/WSDL/html/search/pages_0.js
 948share/doc/qore-xml-module/WSDL/html/search/pages_1.html
 949share/doc/qore-xml-module/WSDL/html/search/pages_1.js
499share/doc/qore-xml-module/WSDL/html/search/search.css 950share/doc/qore-xml-module/WSDL/html/search/search.css
500share/doc/qore-xml-module/WSDL/html/search/search.js 951share/doc/qore-xml-module/WSDL/html/search/search.js
501share/doc/qore-xml-module/WSDL/html/search/search_l.png 952share/doc/qore-xml-module/WSDL/html/search/search_l.png
502share/doc/qore-xml-module/WSDL/html/search/search_m.png 953share/doc/qore-xml-module/WSDL/html/search/search_m.png
503share/doc/qore-xml-module/WSDL/html/search/search_r.png 954share/doc/qore-xml-module/WSDL/html/search/search_r.png
504share/doc/qore-xml-module/WSDL/html/search/searchdata.js 955share/doc/qore-xml-module/WSDL/html/search/searchdata.js
505share/doc/qore-xml-module/WSDL/html/search/variables_0.html 956share/doc/qore-xml-module/WSDL/html/search/variables_0.html
506share/doc/qore-xml-module/WSDL/html/search/variables_0.js 957share/doc/qore-xml-module/WSDL/html/search/variables_0.js
507share/doc/qore-xml-module/WSDL/html/search/variables_1.html 958share/doc/qore-xml-module/WSDL/html/search/variables_1.html
508share/doc/qore-xml-module/WSDL/html/search/variables_1.js 959share/doc/qore-xml-module/WSDL/html/search/variables_1.js
 960share/doc/qore-xml-module/WSDL/html/search/variables_10.html
 961share/doc/qore-xml-module/WSDL/html/search/variables_10.js
 962share/doc/qore-xml-module/WSDL/html/search/variables_11.html
 963share/doc/qore-xml-module/WSDL/html/search/variables_11.js
 964share/doc/qore-xml-module/WSDL/html/search/variables_12.html
 965share/doc/qore-xml-module/WSDL/html/search/variables_12.js
509share/doc/qore-xml-module/WSDL/html/search/variables_2.html 966share/doc/qore-xml-module/WSDL/html/search/variables_2.html
510share/doc/qore-xml-module/WSDL/html/search/variables_2.js 967share/doc/qore-xml-module/WSDL/html/search/variables_2.js
511share/doc/qore-xml-module/WSDL/html/search/variables_3.html 968share/doc/qore-xml-module/WSDL/html/search/variables_3.html
512share/doc/qore-xml-module/WSDL/html/search/variables_3.js 969share/doc/qore-xml-module/WSDL/html/search/variables_3.js
513share/doc/qore-xml-module/WSDL/html/search/variables_4.html 970share/doc/qore-xml-module/WSDL/html/search/variables_4.html
514share/doc/qore-xml-module/WSDL/html/search/variables_4.js 971share/doc/qore-xml-module/WSDL/html/search/variables_4.js
515share/doc/qore-xml-module/WSDL/html/search/variables_5.html 972share/doc/qore-xml-module/WSDL/html/search/variables_5.html
516share/doc/qore-xml-module/WSDL/html/search/variables_5.js 973share/doc/qore-xml-module/WSDL/html/search/variables_5.js
517share/doc/qore-xml-module/WSDL/html/search/variables_6.html 974share/doc/qore-xml-module/WSDL/html/search/variables_6.html
518share/doc/qore-xml-module/WSDL/html/search/variables_6.js 975share/doc/qore-xml-module/WSDL/html/search/variables_6.js
519share/doc/qore-xml-module/WSDL/html/search/variables_7.html 976share/doc/qore-xml-module/WSDL/html/search/variables_7.html
520share/doc/qore-xml-module/WSDL/html/search/variables_7.js 977share/doc/qore-xml-module/WSDL/html/search/variables_7.js
521share/doc/qore-xml-module/WSDL/html/search/variables_8.html 978share/doc/qore-xml-module/WSDL/html/search/variables_8.html
522share/doc/qore-xml-module/WSDL/html/search/variables_8.js 979share/doc/qore-xml-module/WSDL/html/search/variables_8.js
523share/doc/qore-xml-module/WSDL/html/search/variables_9.html 980share/doc/qore-xml-module/WSDL/html/search/variables_9.html
524share/doc/qore-xml-module/WSDL/html/search/variables_9.js 981share/doc/qore-xml-module/WSDL/html/search/variables_9.js
525share/doc/qore-xml-module/WSDL/html/search/variables_a.html 982share/doc/qore-xml-module/WSDL/html/search/variables_a.html
526share/doc/qore-xml-module/WSDL/html/search/variables_a.js 983share/doc/qore-xml-module/WSDL/html/search/variables_a.js
527share/doc/qore-xml-module/WSDL/html/search/variables_b.html 984share/doc/qore-xml-module/WSDL/html/search/variables_b.html
528share/doc/qore-xml-module/WSDL/html/search/variables_b.js 985share/doc/qore-xml-module/WSDL/html/search/variables_b.js
529share/doc/qore-xml-module/WSDL/html/search/variables_c.html 986share/doc/qore-xml-module/WSDL/html/search/variables_c.html
530share/doc/qore-xml-module/WSDL/html/search/variables_c.js 987share/doc/qore-xml-module/WSDL/html/search/variables_c.js
531share/doc/qore-xml-module/WSDL/html/search/variables_d.html 988share/doc/qore-xml-module/WSDL/html/search/variables_d.html
532share/doc/qore-xml-module/WSDL/html/search/variables_d.js 989share/doc/qore-xml-module/WSDL/html/search/variables_d.js
 990share/doc/qore-xml-module/WSDL/html/search/variables_e.html
 991share/doc/qore-xml-module/WSDL/html/search/variables_e.js
 992share/doc/qore-xml-module/WSDL/html/search/variables_f.html
 993share/doc/qore-xml-module/WSDL/html/search/variables_f.js
533share/doc/qore-xml-module/WSDL/html/splitbar.png 994share/doc/qore-xml-module/WSDL/html/splitbar.png
 995share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_arg_info-members.html
 996share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_arg_info.html
 997share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_arg_info.js
 998share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_choice_info-members.html
 999share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_choice_info.html
 1000share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_operation_info-members.html
 1001share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_operation_info.html
 1002share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_operation_info.js
 1003share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_port_type_info-members.html
 1004share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_port_type_info.html
 1005share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_service_info-members.html
 1006share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_service_info.html
 1007share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_service_info.js
534share/doc/qore-xml-module/WSDL/html/sync_off.png 1008share/doc/qore-xml-module/WSDL/html/sync_off.png
535share/doc/qore-xml-module/WSDL/html/sync_on.png 1009share/doc/qore-xml-module/WSDL/html/sync_on.png
536share/doc/qore-xml-module/WSDL/html/tab_a.png 1010share/doc/qore-xml-module/WSDL/html/tab_a.png
537share/doc/qore-xml-module/WSDL/html/tab_b.png 1011share/doc/qore-xml-module/WSDL/html/tab_b.png
538share/doc/qore-xml-module/WSDL/html/tab_h.png 1012share/doc/qore-xml-module/WSDL/html/tab_h.png
539share/doc/qore-xml-module/WSDL/html/tab_s.png 1013share/doc/qore-xml-module/WSDL/html/tab_s.png
540share/doc/qore-xml-module/WSDL/html/tabs.css 1014share/doc/qore-xml-module/WSDL/html/tabs.css
 1015share/doc/qore-xml-module/XmlRpcConnection/html/_xml_rpc_connection_8qm_8dox_8h_source.html
 1016share/doc/qore-xml-module/XmlRpcConnection/html/annotated.html
 1017share/doc/qore-xml-module/XmlRpcConnection/html/annotated_dup.js
 1018share/doc/qore-xml-module/XmlRpcConnection/html/bc_s.png
 1019share/doc/qore-xml-module/XmlRpcConnection/html/bdwn.png
 1020share/doc/qore-xml-module/XmlRpcConnection/html/class_xml_rpc_connection_1_1_xml_rpc_connection-members.html
 1021share/doc/qore-xml-module/XmlRpcConnection/html/class_xml_rpc_connection_1_1_xml_rpc_connection.html
 1022share/doc/qore-xml-module/XmlRpcConnection/html/class_xml_rpc_connection_1_1_xml_rpc_connection.js
 1023share/doc/qore-xml-module/XmlRpcConnection/html/classes.html
 1024share/doc/qore-xml-module/XmlRpcConnection/html/closed.png
 1025share/doc/qore-xml-module/XmlRpcConnection/html/dir_1935124a1d355a6bc0fee3e0733e48ca.html
 1026share/doc/qore-xml-module/XmlRpcConnection/html/doc.png
 1027share/doc/qore-xml-module/XmlRpcConnection/html/doxygen.css
 1028share/doc/qore-xml-module/XmlRpcConnection/html/doxygen.png
 1029share/doc/qore-xml-module/XmlRpcConnection/html/dynsections.js
 1030share/doc/qore-xml-module/XmlRpcConnection/html/folderclosed.png
 1031share/doc/qore-xml-module/XmlRpcConnection/html/folderopen.png
 1032share/doc/qore-xml-module/XmlRpcConnection/html/functions.html
 1033share/doc/qore-xml-module/XmlRpcConnection/html/functions_func.html
 1034share/doc/qore-xml-module/XmlRpcConnection/html/graph_legend.html
 1035share/doc/qore-xml-module/XmlRpcConnection/html/graph_legend.md5
 1036share/doc/qore-xml-module/XmlRpcConnection/html/graph_legend.png
 1037share/doc/qore-xml-module/XmlRpcConnection/html/index.html
 1038share/doc/qore-xml-module/XmlRpcConnection/html/index.qhp
 1039share/doc/qore-xml-module/XmlRpcConnection/html/jquery.js
 1040share/doc/qore-xml-module/XmlRpcConnection/html/menu.js
 1041share/doc/qore-xml-module/XmlRpcConnection/html/menudata.js
 1042share/doc/qore-xml-module/XmlRpcConnection/html/namespace_xml_rpc_connection.html
 1043share/doc/qore-xml-module/XmlRpcConnection/html/namespace_xml_rpc_connection.js
 1044share/doc/qore-xml-module/XmlRpcConnection/html/namespaces.html
 1045share/doc/qore-xml-module/XmlRpcConnection/html/namespaces.js
 1046share/doc/qore-xml-module/XmlRpcConnection/html/nav_f.png
 1047share/doc/qore-xml-module/XmlRpcConnection/html/nav_g.png
 1048share/doc/qore-xml-module/XmlRpcConnection/html/nav_h.png
 1049share/doc/qore-xml-module/XmlRpcConnection/html/navtree.css
 1050share/doc/qore-xml-module/XmlRpcConnection/html/navtree.js
 1051share/doc/qore-xml-module/XmlRpcConnection/html/navtreedata.js
 1052share/doc/qore-xml-module/XmlRpcConnection/html/navtreeindex0.js
 1053share/doc/qore-xml-module/XmlRpcConnection/html/open.png
 1054share/doc/qore-xml-module/XmlRpcConnection/html/pages.html
 1055share/doc/qore-xml-module/XmlRpcConnection/html/resize.js
 1056share/doc/qore-xml-module/XmlRpcConnection/html/search/all_0.html
 1057share/doc/qore-xml-module/XmlRpcConnection/html/search/all_0.js
 1058share/doc/qore-xml-module/XmlRpcConnection/html/search/all_1.html
 1059share/doc/qore-xml-module/XmlRpcConnection/html/search/all_1.js
 1060share/doc/qore-xml-module/XmlRpcConnection/html/search/all_10.html
 1061share/doc/qore-xml-module/XmlRpcConnection/html/search/all_10.js
 1062share/doc/qore-xml-module/XmlRpcConnection/html/search/all_11.html
 1063share/doc/qore-xml-module/XmlRpcConnection/html/search/all_11.js
 1064share/doc/qore-xml-module/XmlRpcConnection/html/search/all_12.html
 1065share/doc/qore-xml-module/XmlRpcConnection/html/search/all_12.js
 1066share/doc/qore-xml-module/XmlRpcConnection/html/search/all_13.html
 1067share/doc/qore-xml-module/XmlRpcConnection/html/search/all_13.js
 1068share/doc/qore-xml-module/XmlRpcConnection/html/search/all_2.html
 1069share/doc/qore-xml-module/XmlRpcConnection/html/search/all_2.js
 1070share/doc/qore-xml-module/XmlRpcConnection/html/search/all_3.html
 1071share/doc/qore-xml-module/XmlRpcConnection/html/search/all_3.js
 1072share/doc/qore-xml-module/XmlRpcConnection/html/search/all_4.html
 1073share/doc/qore-xml-module/XmlRpcConnection/html/search/all_4.js
 1074share/doc/qore-xml-module/XmlRpcConnection/html/search/all_5.html
 1075share/doc/qore-xml-module/XmlRpcConnection/html/search/all_5.js
 1076share/doc/qore-xml-module/XmlRpcConnection/html/search/all_6.html
 1077share/doc/qore-xml-module/XmlRpcConnection/html/search/all_6.js
 1078share/doc/qore-xml-module/XmlRpcConnection/html/search/all_7.html
 1079share/doc/qore-xml-module/XmlRpcConnection/html/search/all_7.js
 1080share/doc/qore-xml-module/XmlRpcConnection/html/search/all_8.html
 1081share/doc/qore-xml-module/XmlRpcConnection/html/search/all_8.js
 1082share/doc/qore-xml-module/XmlRpcConnection/html/search/all_9.html
 1083share/doc/qore-xml-module/XmlRpcConnection/html/search/all_9.js
 1084share/doc/qore-xml-module/XmlRpcConnection/html/search/all_a.html
 1085share/doc/qore-xml-module/XmlRpcConnection/html/search/all_a.js
 1086share/doc/qore-xml-module/XmlRpcConnection/html/search/all_b.html
 1087share/doc/qore-xml-module/XmlRpcConnection/html/search/all_b.js
 1088share/doc/qore-xml-module/XmlRpcConnection/html/search/all_c.html
 1089share/doc/qore-xml-module/XmlRpcConnection/html/search/all_c.js
 1090share/doc/qore-xml-module/XmlRpcConnection/html/search/all_d.html
 1091share/doc/qore-xml-module/XmlRpcConnection/html/search/all_d.js
 1092share/doc/qore-xml-module/XmlRpcConnection/html/search/all_e.html
 1093share/doc/qore-xml-module/XmlRpcConnection/html/search/all_e.js
 1094share/doc/qore-xml-module/XmlRpcConnection/html/search/all_f.html
 1095share/doc/qore-xml-module/XmlRpcConnection/html/search/all_f.js
 1096share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_0.html
 1097share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_0.js
 1098share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_1.html
 1099share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_1.js
 1100share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_2.html
 1101share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_2.js
 1102share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_3.html
 1103share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_3.js
 1104share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_4.html
 1105share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_4.js
 1106share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_5.html
 1107share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_5.js
 1108share/doc/qore-xml-module/XmlRpcConnection/html/search/close.png
 1109share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_0.html
 1110share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_0.js
 1111share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_1.html
 1112share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_1.js
 1113share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_10.html
 1114share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_10.js
 1115share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_11.html
 1116share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_11.js
 1117share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_12.html
 1118share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_12.js
 1119share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_2.html
 1120share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_2.js
 1121share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_3.html
 1122share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_3.js
 1123share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_4.html
 1124share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_4.js
 1125share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_5.html
 1126share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_5.js
 1127share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_6.html
 1128share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_6.js
 1129share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_7.html
 1130share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_7.js
 1131share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_8.html
 1132share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_8.js
 1133share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_9.html
 1134share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_9.js
 1135share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_a.html
 1136share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_a.js
 1137share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_b.html
 1138share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_b.js
 1139share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_c.html
 1140share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_c.js
 1141share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_d.html
 1142share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_d.js
 1143share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_e.html
 1144share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_e.js
 1145share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_f.html
 1146share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_f.js
 1147share/doc/qore-xml-module/XmlRpcConnection/html/search/groups_0.html
 1148share/doc/qore-xml-module/XmlRpcConnection/html/search/groups_0.js
 1149share/doc/qore-xml-module/XmlRpcConnection/html/search/mag_sel.png
 1150share/doc/qore-xml-module/XmlRpcConnection/html/search/namespaces_0.html
 1151share/doc/qore-xml-module/XmlRpcConnection/html/search/namespaces_0.js
 1152share/doc/qore-xml-module/XmlRpcConnection/html/search/namespaces_1.html
 1153share/doc/qore-xml-module/XmlRpcConnection/html/search/namespaces_1.js
 1154share/doc/qore-xml-module/XmlRpcConnection/html/search/namespaces_2.html
 1155share/doc/qore-xml-module/XmlRpcConnection/html/search/namespaces_2.js
 1156share/doc/qore-xml-module/XmlRpcConnection/html/search/nomatches.html
 1157share/doc/qore-xml-module/XmlRpcConnection/html/search/pages_0.html
 1158share/doc/qore-xml-module/XmlRpcConnection/html/search/pages_0.js
 1159share/doc/qore-xml-module/XmlRpcConnection/html/search/search.css
 1160share/doc/qore-xml-module/XmlRpcConnection/html/search/search.js
 1161share/doc/qore-xml-module/XmlRpcConnection/html/search/search_l.png
 1162share/doc/qore-xml-module/XmlRpcConnection/html/search/search_m.png
 1163share/doc/qore-xml-module/XmlRpcConnection/html/search/search_r.png
 1164share/doc/qore-xml-module/XmlRpcConnection/html/search/searchdata.js
 1165share/doc/qore-xml-module/XmlRpcConnection/html/search/variables_0.html
 1166share/doc/qore-xml-module/XmlRpcConnection/html/search/variables_0.js
 1167share/doc/qore-xml-module/XmlRpcConnection/html/search/variables_1.html
 1168share/doc/qore-xml-module/XmlRpcConnection/html/search/variables_1.js
 1169share/doc/qore-xml-module/XmlRpcConnection/html/search/variables_2.html
 1170share/doc/qore-xml-module/XmlRpcConnection/html/search/variables_2.js
 1171share/doc/qore-xml-module/XmlRpcConnection/html/search/variables_3.html
 1172share/doc/qore-xml-module/XmlRpcConnection/html/search/variables_3.js
 1173share/doc/qore-xml-module/XmlRpcConnection/html/search/variables_4.html
 1174share/doc/qore-xml-module/XmlRpcConnection/html/search/variables_4.js
 1175share/doc/qore-xml-module/XmlRpcConnection/html/splitbar.png
 1176share/doc/qore-xml-module/XmlRpcConnection/html/sync_off.png
 1177share/doc/qore-xml-module/XmlRpcConnection/html/sync_on.png
 1178share/doc/qore-xml-module/XmlRpcConnection/html/tab_a.png
 1179share/doc/qore-xml-module/XmlRpcConnection/html/tab_b.png
 1180share/doc/qore-xml-module/XmlRpcConnection/html/tab_h.png
 1181share/doc/qore-xml-module/XmlRpcConnection/html/tab_s.png
 1182share/doc/qore-xml-module/XmlRpcConnection/html/tabs.css
541share/doc/qore-xml-module/XmlRpcHandler/html/_xml_rpc_handler_8qm_8dox_8h_source.html 1183share/doc/qore-xml-module/XmlRpcHandler/html/_xml_rpc_handler_8qm_8dox_8h_source.html
542share/doc/qore-xml-module/XmlRpcHandler/html/annotated.html 1184share/doc/qore-xml-module/XmlRpcHandler/html/annotated.html
543share/doc/qore-xml-module/XmlRpcHandler/html/annotated_dup.js 1185share/doc/qore-xml-module/XmlRpcHandler/html/annotated_dup.js
544share/doc/qore-xml-module/XmlRpcHandler/html/arrowdown.png 
545share/doc/qore-xml-module/XmlRpcHandler/html/arrowright.png 
546share/doc/qore-xml-module/XmlRpcHandler/html/bc_s.png 1186share/doc/qore-xml-module/XmlRpcHandler/html/bc_s.png
547share/doc/qore-xml-module/XmlRpcHandler/html/bdwn.png 1187share/doc/qore-xml-module/XmlRpcHandler/html/bdwn.png
548share/doc/qore-xml-module/XmlRpcHandler/html/class_xml_rpc_handler_1_1_xml_rpc_handler-members.html 1188share/doc/qore-xml-module/XmlRpcHandler/html/class_xml_rpc_handler_1_1_xml_rpc_handler-members.html
549share/doc/qore-xml-module/XmlRpcHandler/html/class_xml_rpc_handler_1_1_xml_rpc_handler.html 1189share/doc/qore-xml-module/XmlRpcHandler/html/class_xml_rpc_handler_1_1_xml_rpc_handler.html
550share/doc/qore-xml-module/XmlRpcHandler/html/class_xml_rpc_handler_1_1_xml_rpc_handler.js 1190share/doc/qore-xml-module/XmlRpcHandler/html/class_xml_rpc_handler_1_1_xml_rpc_handler.js
551share/doc/qore-xml-module/XmlRpcHandler/html/classes.html 1191share/doc/qore-xml-module/XmlRpcHandler/html/classes.html
552share/doc/qore-xml-module/XmlRpcHandler/html/closed.png 1192share/doc/qore-xml-module/XmlRpcHandler/html/closed.png
553share/doc/qore-xml-module/XmlRpcHandler/html/dir_1935124a1d355a6bc0fee3e0733e48ca.html 1193share/doc/qore-xml-module/XmlRpcHandler/html/dir_1935124a1d355a6bc0fee3e0733e48ca.html
554share/doc/qore-xml-module/XmlRpcHandler/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.map 
555share/doc/qore-xml-module/XmlRpcHandler/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.md5 
556share/doc/qore-xml-module/XmlRpcHandler/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.png 
557share/doc/qore-xml-module/XmlRpcHandler/html/doc.png 1194share/doc/qore-xml-module/XmlRpcHandler/html/doc.png
558share/doc/qore-xml-module/XmlRpcHandler/html/doxygen.css 1195share/doc/qore-xml-module/XmlRpcHandler/html/doxygen.css
559share/doc/qore-xml-module/XmlRpcHandler/html/doxygen.png 1196share/doc/qore-xml-module/XmlRpcHandler/html/doxygen.png
560share/doc/qore-xml-module/XmlRpcHandler/html/dynsections.js 1197share/doc/qore-xml-module/XmlRpcHandler/html/dynsections.js
561share/doc/qore-xml-module/XmlRpcHandler/html/folderclosed.png 1198share/doc/qore-xml-module/XmlRpcHandler/html/folderclosed.png
562share/doc/qore-xml-module/XmlRpcHandler/html/folderopen.png 1199share/doc/qore-xml-module/XmlRpcHandler/html/folderopen.png
563share/doc/qore-xml-module/XmlRpcHandler/html/functions.html 1200share/doc/qore-xml-module/XmlRpcHandler/html/functions.html
564share/doc/qore-xml-module/XmlRpcHandler/html/functions_func.html 1201share/doc/qore-xml-module/XmlRpcHandler/html/functions_func.html
565share/doc/qore-xml-module/XmlRpcHandler/html/functions_vars.html 1202share/doc/qore-xml-module/XmlRpcHandler/html/functions_vars.html
566share/doc/qore-xml-module/XmlRpcHandler/html/graph_legend.html 1203share/doc/qore-xml-module/XmlRpcHandler/html/graph_legend.html
567share/doc/qore-xml-module/XmlRpcHandler/html/graph_legend.md5 1204share/doc/qore-xml-module/XmlRpcHandler/html/graph_legend.md5
568share/doc/qore-xml-module/XmlRpcHandler/html/graph_legend.png 1205share/doc/qore-xml-module/XmlRpcHandler/html/graph_legend.png
569share/doc/qore-xml-module/XmlRpcHandler/html/index.html 1206share/doc/qore-xml-module/XmlRpcHandler/html/index.html
570share/doc/qore-xml-module/XmlRpcHandler/html/index.qhp 1207share/doc/qore-xml-module/XmlRpcHandler/html/index.qhp
571share/doc/qore-xml-module/XmlRpcHandler/html/jquery.js 1208share/doc/qore-xml-module/XmlRpcHandler/html/jquery.js
 1209share/doc/qore-xml-module/XmlRpcHandler/html/menu.js
 1210share/doc/qore-xml-module/XmlRpcHandler/html/menudata.js
572share/doc/qore-xml-module/XmlRpcHandler/html/namespace_xml_rpc_handler.html 1211share/doc/qore-xml-module/XmlRpcHandler/html/namespace_xml_rpc_handler.html
573share/doc/qore-xml-module/XmlRpcHandler/html/namespace_xml_rpc_handler.js 1212share/doc/qore-xml-module/XmlRpcHandler/html/namespace_xml_rpc_handler.js
574share/doc/qore-xml-module/XmlRpcHandler/html/namespaces.html 1213share/doc/qore-xml-module/XmlRpcHandler/html/namespaces.html
575share/doc/qore-xml-module/XmlRpcHandler/html/namespaces.js 1214share/doc/qore-xml-module/XmlRpcHandler/html/namespaces.js
576share/doc/qore-xml-module/XmlRpcHandler/html/nav_f.png 1215share/doc/qore-xml-module/XmlRpcHandler/html/nav_f.png
577share/doc/qore-xml-module/XmlRpcHandler/html/nav_g.png 1216share/doc/qore-xml-module/XmlRpcHandler/html/nav_g.png
578share/doc/qore-xml-module/XmlRpcHandler/html/nav_h.png 1217share/doc/qore-xml-module/XmlRpcHandler/html/nav_h.png
579share/doc/qore-xml-module/XmlRpcHandler/html/navtree.css 1218share/doc/qore-xml-module/XmlRpcHandler/html/navtree.css
580share/doc/qore-xml-module/XmlRpcHandler/html/navtree.js 1219share/doc/qore-xml-module/XmlRpcHandler/html/navtree.js
581share/doc/qore-xml-module/XmlRpcHandler/html/navtreedata.js 1220share/doc/qore-xml-module/XmlRpcHandler/html/navtreedata.js
582share/doc/qore-xml-module/XmlRpcHandler/html/navtreeindex0.js 1221share/doc/qore-xml-module/XmlRpcHandler/html/navtreeindex0.js
583share/doc/qore-xml-module/XmlRpcHandler/html/open.png 1222share/doc/qore-xml-module/XmlRpcHandler/html/open.png
 1223share/doc/qore-xml-module/XmlRpcHandler/html/pages.html
584share/doc/qore-xml-module/XmlRpcHandler/html/resize.js 1224share/doc/qore-xml-module/XmlRpcHandler/html/resize.js
585share/doc/qore-xml-module/XmlRpcHandler/html/search/all_0.html 1225share/doc/qore-xml-module/XmlRpcHandler/html/search/all_0.html
586share/doc/qore-xml-module/XmlRpcHandler/html/search/all_0.js 1226share/doc/qore-xml-module/XmlRpcHandler/html/search/all_0.js
587share/doc/qore-xml-module/XmlRpcHandler/html/search/all_1.html 1227share/doc/qore-xml-module/XmlRpcHandler/html/search/all_1.html
588share/doc/qore-xml-module/XmlRpcHandler/html/search/all_1.js 1228share/doc/qore-xml-module/XmlRpcHandler/html/search/all_1.js
 1229share/doc/qore-xml-module/XmlRpcHandler/html/search/all_10.html
 1230share/doc/qore-xml-module/XmlRpcHandler/html/search/all_10.js
 1231share/doc/qore-xml-module/XmlRpcHandler/html/search/all_11.html
 1232share/doc/qore-xml-module/XmlRpcHandler/html/search/all_11.js
 1233share/doc/qore-xml-module/XmlRpcHandler/html/search/all_12.html
 1234share/doc/qore-xml-module/XmlRpcHandler/html/search/all_12.js
 1235share/doc/qore-xml-module/XmlRpcHandler/html/search/all_13.html
 1236share/doc/qore-xml-module/XmlRpcHandler/html/search/all_13.js
589share/doc/qore-xml-module/XmlRpcHandler/html/search/all_2.html 1237share/doc/qore-xml-module/XmlRpcHandler/html/search/all_2.html
590share/doc/qore-xml-module/XmlRpcHandler/html/search/all_2.js 1238share/doc/qore-xml-module/XmlRpcHandler/html/search/all_2.js
591share/doc/qore-xml-module/XmlRpcHandler/html/search/all_3.html 1239share/doc/qore-xml-module/XmlRpcHandler/html/search/all_3.html
592share/doc/qore-xml-module/XmlRpcHandler/html/search/all_3.js 1240share/doc/qore-xml-module/XmlRpcHandler/html/search/all_3.js
593share/doc/qore-xml-module/XmlRpcHandler/html/search/all_4.html 1241share/doc/qore-xml-module/XmlRpcHandler/html/search/all_4.html
594share/doc/qore-xml-module/XmlRpcHandler/html/search/all_4.js 1242share/doc/qore-xml-module/XmlRpcHandler/html/search/all_4.js
595share/doc/qore-xml-module/XmlRpcHandler/html/search/all_5.html 1243share/doc/qore-xml-module/XmlRpcHandler/html/search/all_5.html
596share/doc/qore-xml-module/XmlRpcHandler/html/search/all_5.js 1244share/doc/qore-xml-module/XmlRpcHandler/html/search/all_5.js
597share/doc/qore-xml-module/XmlRpcHandler/html/search/all_6.html 1245share/doc/qore-xml-module/XmlRpcHandler/html/search/all_6.html
598share/doc/qore-xml-module/XmlRpcHandler/html/search/all_6.js 1246share/doc/qore-xml-module/XmlRpcHandler/html/search/all_6.js
 1247share/doc/qore-xml-module/XmlRpcHandler/html/search/all_7.html
 1248share/doc/qore-xml-module/XmlRpcHandler/html/search/all_7.js
 1249share/doc/qore-xml-module/XmlRpcHandler/html/search/all_8.html
 1250share/doc/qore-xml-module/XmlRpcHandler/html/search/all_8.js
 1251share/doc/qore-xml-module/XmlRpcHandler/html/search/all_9.html
 1252share/doc/qore-xml-module/XmlRpcHandler/html/search/all_9.js
 1253share/doc/qore-xml-module/XmlRpcHandler/html/search/all_a.html
 1254share/doc/qore-xml-module/XmlRpcHandler/html/search/all_a.js
 1255share/doc/qore-xml-module/XmlRpcHandler/html/search/all_b.html
 1256share/doc/qore-xml-module/XmlRpcHandler/html/search/all_b.js
 1257share/doc/qore-xml-module/XmlRpcHandler/html/search/all_c.html
 1258share/doc/qore-xml-module/XmlRpcHandler/html/search/all_c.js
 1259share/doc/qore-xml-module/XmlRpcHandler/html/search/all_d.html
 1260share/doc/qore-xml-module/XmlRpcHandler/html/search/all_d.js
 1261share/doc/qore-xml-module/XmlRpcHandler/html/search/all_e.html
 1262share/doc/qore-xml-module/XmlRpcHandler/html/search/all_e.js
 1263share/doc/qore-xml-module/XmlRpcHandler/html/search/all_f.html
 1264share/doc/qore-xml-module/XmlRpcHandler/html/search/all_f.js
599share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_0.html 1265share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_0.html
600share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_0.js 1266share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_0.js
 1267share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_1.html
 1268share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_1.js
 1269share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_2.html
 1270share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_2.js
 1271share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_3.html
 1272share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_3.js
 1273share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_4.html
 1274share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_4.js
 1275share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_5.html
 1276share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_5.js
601share/doc/qore-xml-module/XmlRpcHandler/html/search/close.png 1277share/doc/qore-xml-module/XmlRpcHandler/html/search/close.png
602share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_0.html 1278share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_0.html
603share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_0.js 1279share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_0.js
604share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_1.html 1280share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_1.html
605share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_1.js 1281share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_1.js
 1282share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_10.html
 1283share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_10.js
 1284share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_11.html
 1285share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_11.js
 1286share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_12.html
 1287share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_12.js
606share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_2.html 1288share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_2.html
607share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_2.js 1289share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_2.js
608share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_3.html 1290share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_3.html
609share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_3.js 1291share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_3.js
 1292share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_4.html
 1293share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_4.js
 1294share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_5.html
 1295share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_5.js
 1296share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_6.html
 1297share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_6.js
 1298share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_7.html
 1299share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_7.js
 1300share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_8.html
 1301share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_8.js
 1302share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_9.html
 1303share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_9.js
 1304share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_a.html
 1305share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_a.js
 1306share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_b.html
 1307share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_b.js
 1308share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_c.html
 1309share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_c.js
 1310share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_d.html
 1311share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_d.js
 1312share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_e.html
 1313share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_e.js
 1314share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_f.html
 1315share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_f.js
 1316share/doc/qore-xml-module/XmlRpcHandler/html/search/groups_0.html
 1317share/doc/qore-xml-module/XmlRpcHandler/html/search/groups_0.js
610share/doc/qore-xml-module/XmlRpcHandler/html/search/mag_sel.png 1318share/doc/qore-xml-module/XmlRpcHandler/html/search/mag_sel.png
611share/doc/qore-xml-module/XmlRpcHandler/html/search/namespaces_0.html 1319share/doc/qore-xml-module/XmlRpcHandler/html/search/namespaces_0.html
612share/doc/qore-xml-module/XmlRpcHandler/html/search/namespaces_0.js 1320share/doc/qore-xml-module/XmlRpcHandler/html/search/namespaces_0.js
 1321share/doc/qore-xml-module/XmlRpcHandler/html/search/namespaces_1.html
 1322share/doc/qore-xml-module/XmlRpcHandler/html/search/namespaces_1.js
 1323share/doc/qore-xml-module/XmlRpcHandler/html/search/namespaces_2.html
 1324share/doc/qore-xml-module/XmlRpcHandler/html/search/namespaces_2.js
613share/doc/qore-xml-module/XmlRpcHandler/html/search/nomatches.html 1325share/doc/qore-xml-module/XmlRpcHandler/html/search/nomatches.html
614share/doc/qore-xml-module/XmlRpcHandler/html/search/pages_0.html 1326share/doc/qore-xml-module/XmlRpcHandler/html/search/pages_0.html
615share/doc/qore-xml-module/XmlRpcHandler/html/search/pages_0.js 1327share/doc/qore-xml-module/XmlRpcHandler/html/search/pages_0.js
616share/doc/qore-xml-module/XmlRpcHandler/html/search/search.css 1328share/doc/qore-xml-module/XmlRpcHandler/html/search/search.css
617share/doc/qore-xml-module/XmlRpcHandler/html/search/search.js 1329share/doc/qore-xml-module/XmlRpcHandler/html/search/search.js
618share/doc/qore-xml-module/XmlRpcHandler/html/search/search_l.png 1330share/doc/qore-xml-module/XmlRpcHandler/html/search/search_l.png
619share/doc/qore-xml-module/XmlRpcHandler/html/search/search_m.png 1331share/doc/qore-xml-module/XmlRpcHandler/html/search/search_m.png
620share/doc/qore-xml-module/XmlRpcHandler/html/search/search_r.png 1332share/doc/qore-xml-module/XmlRpcHandler/html/search/search_r.png
621share/doc/qore-xml-module/XmlRpcHandler/html/search/searchdata.js 1333share/doc/qore-xml-module/XmlRpcHandler/html/search/searchdata.js
622share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_0.html 1334share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_0.html
623share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_0.js 1335share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_0.js
624share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_1.html 1336share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_1.html
625share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_1.js 1337share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_1.js
626share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_2.html 1338share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_2.html
627share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_2.js 1339share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_2.js
 1340share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_3.html
 1341share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_3.js
 1342share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_4.html
 1343share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_4.js
 1344share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_5.html
 1345share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_5.js
 1346share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_6.html
 1347share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_6.js
628share/doc/qore-xml-module/XmlRpcHandler/html/splitbar.png 1348share/doc/qore-xml-module/XmlRpcHandler/html/splitbar.png
629share/doc/qore-xml-module/XmlRpcHandler/html/sync_off.png 1349share/doc/qore-xml-module/XmlRpcHandler/html/sync_off.png
630share/doc/qore-xml-module/XmlRpcHandler/html/sync_on.png 1350share/doc/qore-xml-module/XmlRpcHandler/html/sync_on.png
631share/doc/qore-xml-module/XmlRpcHandler/html/tab_a.png 1351share/doc/qore-xml-module/XmlRpcHandler/html/tab_a.png
632share/doc/qore-xml-module/XmlRpcHandler/html/tab_b.png 1352share/doc/qore-xml-module/XmlRpcHandler/html/tab_b.png
633share/doc/qore-xml-module/XmlRpcHandler/html/tab_h.png 1353share/doc/qore-xml-module/XmlRpcHandler/html/tab_h.png
634share/doc/qore-xml-module/XmlRpcHandler/html/tab_s.png 1354share/doc/qore-xml-module/XmlRpcHandler/html/tab_s.png
635share/doc/qore-xml-module/XmlRpcHandler/html/tabs.css 1355share/doc/qore-xml-module/XmlRpcHandler/html/tabs.css
636share/doc/qore-xml-module/xml/html/annotated.html 1356share/doc/qore-xml-module/xml/html/annotated.html
637share/doc/qore-xml-module/xml/html/annotated_dup.js 1357share/doc/qore-xml-module/xml/html/annotated_dup.js
638share/doc/qore-xml-module/xml/html/arrowdown.png 
639share/doc/qore-xml-module/xml/html/arrowright.png 
640share/doc/qore-xml-module/xml/html/bc_s.png 1358share/doc/qore-xml-module/xml/html/bc_s.png
641share/doc/qore-xml-module/xml/html/bdwn.png 1359share/doc/qore-xml-module/xml/html/bdwn.png
 1360share/doc/qore-xml-module/xml/html/classMakeXmlOpts-members.html
 1361share/doc/qore-xml-module/xml/html/classMakeXmlOpts.html
 1362share/doc/qore-xml-module/xml/html/classMakeXmlOpts.js
 1363share/doc/qore-xml-module/xml/html/classMakeXmlOpts_1_1InvalidHash-members.html
 1364share/doc/qore-xml-module/xml/html/classMakeXmlOpts_1_1InvalidHash.html
 1365share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1AbstractXmlIoInputCallback-members.html
 1366share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1AbstractXmlIoInputCallback.html
 1367share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1AbstractXmlIoInputCallback.js
642share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1FileSaxIterator-members.html 1368share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1FileSaxIterator-members.html
643share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1FileSaxIterator.html 1369share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1FileSaxIterator.html
644share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1FileSaxIterator.js 1370share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1FileSaxIterator.js
645share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1FileSaxIterator.png 1371share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1FileSaxIterator.png
 1372share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1InputStreamSaxIterator-members.html
 1373share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1InputStreamSaxIterator.html
 1374share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1InputStreamSaxIterator.js
 1375share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1InputStreamSaxIterator.png
646share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1SaxIterator-members.html 1376share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1SaxIterator-members.html
647share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1SaxIterator.html 1377share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1SaxIterator.html
648share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1SaxIterator.js 1378share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1SaxIterator.js
649share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1SaxIterator.png 1379share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1SaxIterator.png
650share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1XmlDoc-members.html 1380share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1XmlDoc-members.html
651share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1XmlDoc.html 1381share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1XmlDoc.html
652share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1XmlDoc.js 1382share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1XmlDoc.js
653share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1XmlNode-members.html 1383share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1XmlNode-members.html
654share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1XmlNode.html 1384share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1XmlNode.html
655share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1XmlNode.js 1385share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1XmlNode.js
656share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1XmlReader-members.html 1386share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1XmlReader-members.html
657share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1XmlReader.html 1387share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1XmlReader.html
658share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1XmlReader.js 1388share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1XmlReader.js
@@ -661,76 +1391,81 @@ share/doc/qore-xml-module/xml/html/class @@ -661,76 +1391,81 @@ share/doc/qore-xml-module/xml/html/class
661share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1XmlRpcClient.js 1391share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1XmlRpcClient.js
662share/doc/qore-xml-module/xml/html/classes.html 1392share/doc/qore-xml-module/xml/html/classes.html
663share/doc/qore-xml-module/xml/html/closed.png 1393share/doc/qore-xml-module/xml/html/closed.png
664share/doc/qore-xml-module/xml/html/deprecated.html 1394share/doc/qore-xml-module/xml/html/deprecated.html
665share/doc/qore-xml-module/xml/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html 1395share/doc/qore-xml-module/xml/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html
666share/doc/qore-xml-module/xml/html/doc.png 1396share/doc/qore-xml-module/xml/html/doc.png
667share/doc/qore-xml-module/xml/html/doxygen.css 1397share/doc/qore-xml-module/xml/html/doxygen.css
668share/doc/qore-xml-module/xml/html/doxygen.png 1398share/doc/qore-xml-module/xml/html/doxygen.png
669share/doc/qore-xml-module/xml/html/dynsections.js 1399share/doc/qore-xml-module/xml/html/dynsections.js
670share/doc/qore-xml-module/xml/html/folderclosed.png 1400share/doc/qore-xml-module/xml/html/folderclosed.png
671share/doc/qore-xml-module/xml/html/folderopen.png 1401share/doc/qore-xml-module/xml/html/folderopen.png
672share/doc/qore-xml-module/xml/html/functions.html 1402share/doc/qore-xml-module/xml/html/functions.html
673share/doc/qore-xml-module/xml/html/functions_func.html 1403share/doc/qore-xml-module/xml/html/functions_func.html
 1404share/doc/qore-xml-module/xml/html/functions_vars.html
674share/doc/qore-xml-module/xml/html/group__XMLElementTypes.html 1405share/doc/qore-xml-module/xml/html/group__XMLElementTypes.html
675share/doc/qore-xml-module/xml/html/group__XMLElementTypes.js 1406share/doc/qore-xml-module/xml/html/group__XMLElementTypes.js
676share/doc/qore-xml-module/xml/html/group__XmlNodeTypes.html 1407share/doc/qore-xml-module/xml/html/group__XmlNodeTypes.html
677share/doc/qore-xml-module/xml/html/group__XmlNodeTypes.js 1408share/doc/qore-xml-module/xml/html/group__XmlNodeTypes.js
678share/doc/qore-xml-module/xml/html/group__xml__functions.html 1409share/doc/qore-xml-module/xml/html/group__xml__functions.html
679share/doc/qore-xml-module/xml/html/group__xml__functions.js 1410share/doc/qore-xml-module/xml/html/group__xml__functions.js
680share/doc/qore-xml-module/xml/html/group__xml__generation__constants.html 1411share/doc/qore-xml-module/xml/html/group__xml__generation__constants.html
681share/doc/qore-xml-module/xml/html/group__xml__generation__constants.js 1412share/doc/qore-xml-module/xml/html/group__xml__generation__constants.js
682share/doc/qore-xml-module/xml/html/group__xml__option__constants.html 1413share/doc/qore-xml-module/xml/html/group__xml__option__constants.html
683share/doc/qore-xml-module/xml/html/group__xml__option__constants.js 1414share/doc/qore-xml-module/xml/html/group__xml__option__constants.js
684share/doc/qore-xml-module/xml/html/group__xml__parsing__constants.html 1415share/doc/qore-xml-module/xml/html/group__xml__parsing__constants.html
685share/doc/qore-xml-module/xml/html/group__xml__parsing__constants.js 1416share/doc/qore-xml-module/xml/html/group__xml__parsing__constants.js
686share/doc/qore-xml-module/xml/html/group__xmlrpc__functions.html 1417share/doc/qore-xml-module/xml/html/group__xmlrpc__functions.html
687share/doc/qore-xml-module/xml/html/group__xmlrpc__functions.js 1418share/doc/qore-xml-module/xml/html/group__xmlrpc__functions.js
688share/doc/qore-xml-module/xml/html/hierarchy.html 1419share/doc/qore-xml-module/xml/html/hierarchy.html
689share/doc/qore-xml-module/xml/html/hierarchy.js 1420share/doc/qore-xml-module/xml/html/hierarchy.js
690share/doc/qore-xml-module/xml/html/index.html 1421share/doc/qore-xml-module/xml/html/index.html
691share/doc/qore-xml-module/xml/html/index.qhp 1422share/doc/qore-xml-module/xml/html/index.qhp
692share/doc/qore-xml-module/xml/html/jquery.js 1423share/doc/qore-xml-module/xml/html/jquery.js
 1424share/doc/qore-xml-module/xml/html/menu.js
 1425share/doc/qore-xml-module/xml/html/menudata.js
693share/doc/qore-xml-module/xml/html/modules.html 1426share/doc/qore-xml-module/xml/html/modules.html
694share/doc/qore-xml-module/xml/html/modules.js 1427share/doc/qore-xml-module/xml/html/modules.js
695share/doc/qore-xml-module/xml/html/namespaceQore_1_1Xml.html 1428share/doc/qore-xml-module/xml/html/namespaceQore_1_1Xml.html
696share/doc/qore-xml-module/xml/html/namespaceQore_1_1Xml.js 1429share/doc/qore-xml-module/xml/html/namespaceQore_1_1Xml.js
697share/doc/qore-xml-module/xml/html/namespaceQore_1_1Xml_1_1Option.html 1430share/doc/qore-xml-module/xml/html/namespaceQore_1_1Xml_1_1Option.html
698share/doc/qore-xml-module/xml/html/namespacemembers.html 1431share/doc/qore-xml-module/xml/html/namespacemembers.html
699share/doc/qore-xml-module/xml/html/namespacemembers_func.html 1432share/doc/qore-xml-module/xml/html/namespacemembers_func.html
700share/doc/qore-xml-module/xml/html/namespacemembers_vars.html 1433share/doc/qore-xml-module/xml/html/namespacemembers_vars.html
701share/doc/qore-xml-module/xml/html/namespaces.html 1434share/doc/qore-xml-module/xml/html/namespaces.html
702share/doc/qore-xml-module/xml/html/namespaces.js 1435share/doc/qore-xml-module/xml/html/namespaces.js
703share/doc/qore-xml-module/xml/html/nav_f.png 1436share/doc/qore-xml-module/xml/html/nav_f.png
704share/doc/qore-xml-module/xml/html/nav_g.png 1437share/doc/qore-xml-module/xml/html/nav_g.png
705share/doc/qore-xml-module/xml/html/nav_h.png 1438share/doc/qore-xml-module/xml/html/nav_h.png
706share/doc/qore-xml-module/xml/html/navtree.css 1439share/doc/qore-xml-module/xml/html/navtree.css
707share/doc/qore-xml-module/xml/html/navtree.js 1440share/doc/qore-xml-module/xml/html/navtree.js
708share/doc/qore-xml-module/xml/html/navtreedata.js 1441share/doc/qore-xml-module/xml/html/navtreedata.js
709share/doc/qore-xml-module/xml/html/navtreeindex0.js 1442share/doc/qore-xml-module/xml/html/navtreeindex0.js
 1443share/doc/qore-xml-module/xml/html/navtreeindex1.js
710share/doc/qore-xml-module/xml/html/open.png 1444share/doc/qore-xml-module/xml/html/open.png
711share/doc/qore-xml-module/xml/html/pages.html 1445share/doc/qore-xml-module/xml/html/pages.html
712share/doc/qore-xml-module/xml/html/resize.js 1446share/doc/qore-xml-module/xml/html/resize.js
713share/doc/qore-xml-module/xml/html/search.new 
714share/doc/qore-xml-module/xml/html/search/all_0.html 1447share/doc/qore-xml-module/xml/html/search/all_0.html
715share/doc/qore-xml-module/xml/html/search/all_0.js 1448share/doc/qore-xml-module/xml/html/search/all_0.js
716share/doc/qore-xml-module/xml/html/search/all_1.html 1449share/doc/qore-xml-module/xml/html/search/all_1.html
717share/doc/qore-xml-module/xml/html/search/all_1.js 1450share/doc/qore-xml-module/xml/html/search/all_1.js
718share/doc/qore-xml-module/xml/html/search/all_10.html 1451share/doc/qore-xml-module/xml/html/search/all_10.html
719share/doc/qore-xml-module/xml/html/search/all_10.js 1452share/doc/qore-xml-module/xml/html/search/all_10.js
720share/doc/qore-xml-module/xml/html/search/all_11.html 1453share/doc/qore-xml-module/xml/html/search/all_11.html
721share/doc/qore-xml-module/xml/html/search/all_11.js 1454share/doc/qore-xml-module/xml/html/search/all_11.js
722share/doc/qore-xml-module/xml/html/search/all_12.html 1455share/doc/qore-xml-module/xml/html/search/all_12.html
723share/doc/qore-xml-module/xml/html/search/all_12.js 1456share/doc/qore-xml-module/xml/html/search/all_12.js
 1457share/doc/qore-xml-module/xml/html/search/all_13.html
 1458share/doc/qore-xml-module/xml/html/search/all_13.js
724share/doc/qore-xml-module/xml/html/search/all_2.html 1459share/doc/qore-xml-module/xml/html/search/all_2.html
725share/doc/qore-xml-module/xml/html/search/all_2.js 1460share/doc/qore-xml-module/xml/html/search/all_2.js
726share/doc/qore-xml-module/xml/html/search/all_3.html 1461share/doc/qore-xml-module/xml/html/search/all_3.html
727share/doc/qore-xml-module/xml/html/search/all_3.js 1462share/doc/qore-xml-module/xml/html/search/all_3.js
728share/doc/qore-xml-module/xml/html/search/all_4.html 1463share/doc/qore-xml-module/xml/html/search/all_4.html
729share/doc/qore-xml-module/xml/html/search/all_4.js 1464share/doc/qore-xml-module/xml/html/search/all_4.js
730share/doc/qore-xml-module/xml/html/search/all_5.html 1465share/doc/qore-xml-module/xml/html/search/all_5.html
731share/doc/qore-xml-module/xml/html/search/all_5.js 1466share/doc/qore-xml-module/xml/html/search/all_5.js
732share/doc/qore-xml-module/xml/html/search/all_6.html 1467share/doc/qore-xml-module/xml/html/search/all_6.html
733share/doc/qore-xml-module/xml/html/search/all_6.js 1468share/doc/qore-xml-module/xml/html/search/all_6.js
734share/doc/qore-xml-module/xml/html/search/all_7.html 1469share/doc/qore-xml-module/xml/html/search/all_7.html
735share/doc/qore-xml-module/xml/html/search/all_7.js 1470share/doc/qore-xml-module/xml/html/search/all_7.js
736share/doc/qore-xml-module/xml/html/search/all_8.html 1471share/doc/qore-xml-module/xml/html/search/all_8.html
@@ -745,35 +1480,43 @@ share/doc/qore-xml-module/xml/html/searc @@ -745,35 +1480,43 @@ share/doc/qore-xml-module/xml/html/searc
745share/doc/qore-xml-module/xml/html/search/all_c.js 1480share/doc/qore-xml-module/xml/html/search/all_c.js
746share/doc/qore-xml-module/xml/html/search/all_d.html 1481share/doc/qore-xml-module/xml/html/search/all_d.html
747share/doc/qore-xml-module/xml/html/search/all_d.js 1482share/doc/qore-xml-module/xml/html/search/all_d.js
748share/doc/qore-xml-module/xml/html/search/all_e.html 1483share/doc/qore-xml-module/xml/html/search/all_e.html
749share/doc/qore-xml-module/xml/html/search/all_e.js 1484share/doc/qore-xml-module/xml/html/search/all_e.js
750share/doc/qore-xml-module/xml/html/search/all_f.html 1485share/doc/qore-xml-module/xml/html/search/all_f.html
751share/doc/qore-xml-module/xml/html/search/all_f.js 1486share/doc/qore-xml-module/xml/html/search/all_f.js
752share/doc/qore-xml-module/xml/html/search/classes_0.html 1487share/doc/qore-xml-module/xml/html/search/classes_0.html
753share/doc/qore-xml-module/xml/html/search/classes_0.js 1488share/doc/qore-xml-module/xml/html/search/classes_0.js
754share/doc/qore-xml-module/xml/html/search/classes_1.html 1489share/doc/qore-xml-module/xml/html/search/classes_1.html
755share/doc/qore-xml-module/xml/html/search/classes_1.js 1490share/doc/qore-xml-module/xml/html/search/classes_1.js
756share/doc/qore-xml-module/xml/html/search/classes_2.html 1491share/doc/qore-xml-module/xml/html/search/classes_2.html
757share/doc/qore-xml-module/xml/html/search/classes_2.js 1492share/doc/qore-xml-module/xml/html/search/classes_2.js
 1493share/doc/qore-xml-module/xml/html/search/classes_3.html
 1494share/doc/qore-xml-module/xml/html/search/classes_3.js
 1495share/doc/qore-xml-module/xml/html/search/classes_4.html
 1496share/doc/qore-xml-module/xml/html/search/classes_4.js
 1497share/doc/qore-xml-module/xml/html/search/classes_5.html
 1498share/doc/qore-xml-module/xml/html/search/classes_5.js
758share/doc/qore-xml-module/xml/html/search/close.png 1499share/doc/qore-xml-module/xml/html/search/close.png
759share/doc/qore-xml-module/xml/html/search/functions_0.html 1500share/doc/qore-xml-module/xml/html/search/functions_0.html
760share/doc/qore-xml-module/xml/html/search/functions_0.js 1501share/doc/qore-xml-module/xml/html/search/functions_0.js
761share/doc/qore-xml-module/xml/html/search/functions_1.html 1502share/doc/qore-xml-module/xml/html/search/functions_1.html
762share/doc/qore-xml-module/xml/html/search/functions_1.js 1503share/doc/qore-xml-module/xml/html/search/functions_1.js
763share/doc/qore-xml-module/xml/html/search/functions_10.html 1504share/doc/qore-xml-module/xml/html/search/functions_10.html
764share/doc/qore-xml-module/xml/html/search/functions_10.js 1505share/doc/qore-xml-module/xml/html/search/functions_10.js
765share/doc/qore-xml-module/xml/html/search/functions_11.html 1506share/doc/qore-xml-module/xml/html/search/functions_11.html
766share/doc/qore-xml-module/xml/html/search/functions_11.js 1507share/doc/qore-xml-module/xml/html/search/functions_11.js
 1508share/doc/qore-xml-module/xml/html/search/functions_12.html
 1509share/doc/qore-xml-module/xml/html/search/functions_12.js
767share/doc/qore-xml-module/xml/html/search/functions_2.html 1510share/doc/qore-xml-module/xml/html/search/functions_2.html
768share/doc/qore-xml-module/xml/html/search/functions_2.js 1511share/doc/qore-xml-module/xml/html/search/functions_2.js
769share/doc/qore-xml-module/xml/html/search/functions_3.html 1512share/doc/qore-xml-module/xml/html/search/functions_3.html
770share/doc/qore-xml-module/xml/html/search/functions_3.js 1513share/doc/qore-xml-module/xml/html/search/functions_3.js
771share/doc/qore-xml-module/xml/html/search/functions_4.html 1514share/doc/qore-xml-module/xml/html/search/functions_4.html
772share/doc/qore-xml-module/xml/html/search/functions_4.js 1515share/doc/qore-xml-module/xml/html/search/functions_4.js
773share/doc/qore-xml-module/xml/html/search/functions_5.html 1516share/doc/qore-xml-module/xml/html/search/functions_5.html
774share/doc/qore-xml-module/xml/html/search/functions_5.js 1517share/doc/qore-xml-module/xml/html/search/functions_5.js
775share/doc/qore-xml-module/xml/html/search/functions_6.html 1518share/doc/qore-xml-module/xml/html/search/functions_6.html
776share/doc/qore-xml-module/xml/html/search/functions_6.js 1519share/doc/qore-xml-module/xml/html/search/functions_6.js
777share/doc/qore-xml-module/xml/html/search/functions_7.html 1520share/doc/qore-xml-module/xml/html/search/functions_7.html
778share/doc/qore-xml-module/xml/html/search/functions_7.js 1521share/doc/qore-xml-module/xml/html/search/functions_7.js
779share/doc/qore-xml-module/xml/html/search/functions_8.html 1522share/doc/qore-xml-module/xml/html/search/functions_8.html
@@ -792,35 +1535,46 @@ share/doc/qore-xml-module/xml/html/searc @@ -792,35 +1535,46 @@ share/doc/qore-xml-module/xml/html/searc
792share/doc/qore-xml-module/xml/html/search/functions_e.js 1535share/doc/qore-xml-module/xml/html/search/functions_e.js
793share/doc/qore-xml-module/xml/html/search/functions_f.html 1536share/doc/qore-xml-module/xml/html/search/functions_f.html
794share/doc/qore-xml-module/xml/html/search/functions_f.js 1537share/doc/qore-xml-module/xml/html/search/functions_f.js
795share/doc/qore-xml-module/xml/html/search/groups_0.html 1538share/doc/qore-xml-module/xml/html/search/groups_0.html
796share/doc/qore-xml-module/xml/html/search/groups_0.js 1539share/doc/qore-xml-module/xml/html/search/groups_0.js
797share/doc/qore-xml-module/xml/html/search/mag_sel.png 1540share/doc/qore-xml-module/xml/html/search/mag_sel.png
798share/doc/qore-xml-module/xml/html/search/namespaces_0.html 1541share/doc/qore-xml-module/xml/html/search/namespaces_0.html
799share/doc/qore-xml-module/xml/html/search/namespaces_0.js 1542share/doc/qore-xml-module/xml/html/search/namespaces_0.js
800share/doc/qore-xml-module/xml/html/search/nomatches.html 1543share/doc/qore-xml-module/xml/html/search/nomatches.html
801share/doc/qore-xml-module/xml/html/search/pages_0.html 1544share/doc/qore-xml-module/xml/html/search/pages_0.html
802share/doc/qore-xml-module/xml/html/search/pages_0.js 1545share/doc/qore-xml-module/xml/html/search/pages_0.js
803share/doc/qore-xml-module/xml/html/search/pages_1.html 1546share/doc/qore-xml-module/xml/html/search/pages_1.html
804share/doc/qore-xml-module/xml/html/search/pages_1.js 1547share/doc/qore-xml-module/xml/html/search/pages_1.js
 1548share/doc/qore-xml-module/xml/html/search/pages_2.html
 1549share/doc/qore-xml-module/xml/html/search/pages_2.js
805share/doc/qore-xml-module/xml/html/search/search.css 1550share/doc/qore-xml-module/xml/html/search/search.css
806share/doc/qore-xml-module/xml/html/search/search.js 1551share/doc/qore-xml-module/xml/html/search/search.js
807share/doc/qore-xml-module/xml/html/search/search_l.png 1552share/doc/qore-xml-module/xml/html/search/search_l.png
808share/doc/qore-xml-module/xml/html/search/search_m.png 1553share/doc/qore-xml-module/xml/html/search/search_m.png
809share/doc/qore-xml-module/xml/html/search/search_r.png 1554share/doc/qore-xml-module/xml/html/search/search_r.png
810share/doc/qore-xml-module/xml/html/search/searchdata.js 1555share/doc/qore-xml-module/xml/html/search/searchdata.js
811share/doc/qore-xml-module/xml/html/search/variables_0.html 1556share/doc/qore-xml-module/xml/html/search/variables_0.html
812share/doc/qore-xml-module/xml/html/search/variables_0.js 1557share/doc/qore-xml-module/xml/html/search/variables_0.js
813share/doc/qore-xml-module/xml/html/search/variables_1.html 1558share/doc/qore-xml-module/xml/html/search/variables_1.html
814share/doc/qore-xml-module/xml/html/search/variables_1.js 1559share/doc/qore-xml-module/xml/html/search/variables_1.js
815share/doc/qore-xml-module/xml/html/search/variables_2.html 1560share/doc/qore-xml-module/xml/html/search/variables_2.html
816share/doc/qore-xml-module/xml/html/search/variables_2.js 1561share/doc/qore-xml-module/xml/html/search/variables_2.js
817share/doc/qore-xml-module/xml/html/search/variables_3.html 1562share/doc/qore-xml-module/xml/html/search/variables_3.html
818share/doc/qore-xml-module/xml/html/search/variables_3.js 1563share/doc/qore-xml-module/xml/html/search/variables_3.js
 1564share/doc/qore-xml-module/xml/html/search/variables_4.html
 1565share/doc/qore-xml-module/xml/html/search/variables_4.js
819share/doc/qore-xml-module/xml/html/splitbar.png 1566share/doc/qore-xml-module/xml/html/splitbar.png
820share/doc/qore-xml-module/xml/html/sync_off.png 1567share/doc/qore-xml-module/xml/html/sync_off.png
821share/doc/qore-xml-module/xml/html/sync_on.png 1568share/doc/qore-xml-module/xml/html/sync_on.png
822share/doc/qore-xml-module/xml/html/tab_a.png 1569share/doc/qore-xml-module/xml/html/tab_a.png
823share/doc/qore-xml-module/xml/html/tab_b.png 1570share/doc/qore-xml-module/xml/html/tab_b.png
824share/doc/qore-xml-module/xml/html/tab_h.png 1571share/doc/qore-xml-module/xml/html/tab_h.png
825share/doc/qore-xml-module/xml/html/tab_s.png 1572share/doc/qore-xml-module/xml/html/tab_s.png
826share/doc/qore-xml-module/xml/html/tabs.css 1573share/doc/qore-xml-module/xml/html/tabs.css
 1574share/doc/qore-xml-module/xml/html/xml_generation_opts.html
 1575${QORE_USER_MODULE_DIR}/SalesforceSoapClient.qm
 1576${QORE_USER_MODULE_DIR}/SoapClient.qm
 1577${QORE_USER_MODULE_DIR}/SoapHandler.qm
 1578${QORE_USER_MODULE_DIR}/WSDL.qm
 1579${QORE_USER_MODULE_DIR}/XmlRpcConnection.qm
 1580${QORE_USER_MODULE_DIR}/XmlRpcHandler.qm

cvs diff -r1.3 -r1.4 pkgsrc/textproc/qore-xml-module/distinfo (expand / switch to unified diff)

--- pkgsrc/textproc/qore-xml-module/distinfo 2016/07/22 12:22:43 1.3
+++ pkgsrc/textproc/qore-xml-module/distinfo 2018/06/08 19:40:44 1.4
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.3 2016/07/22 12:22:43 nros Exp $ 1$NetBSD: distinfo,v 1.4 2018/06/08 19:40:44 nros Exp $
2 2
3SHA1 (qore-xml-module-1.3.tar.bz2) = 0a85604cbf77c486bce08ff70939ae17f2455a93 3SHA1 (qore-xml-module-1.4.1.tar.bz2) = 160101396cfff273c59f7f7ab2fa78d15fe66be3
4RMD160 (qore-xml-module-1.3.tar.bz2) = f9dca0b0faeeed6144242c592fcfd1944bb90533 4RMD160 (qore-xml-module-1.4.1.tar.bz2) = c49650c07fca4a445d58348a467234db82af7e88
5SHA512 (qore-xml-module-1.3.tar.bz2) = 60a716aaf3a3fc6c6074a747efca5f0e518981a76faacee8e629d6743dc268937ed09d8242e34cc4668c3ead18fcae9ca2b7eda73f04d647726cc43ae196ef8a 5SHA512 (qore-xml-module-1.4.1.tar.bz2) = 272110a048506538a59a0365eb3f89e2570aae99c4edae90d4f66be9801c543bc5bc15ec8565ca60baabf0f2289da1a189e90dd1bcf4fae6935419252987ded8
6Size (qore-xml-module-1.3.tar.bz2) = 1106271 bytes 6Size (qore-xml-module-1.4.1.tar.bz2) = 1639164 bytes