pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang/qore



Module Name:    pkgsrc
Committed By:   nros
Date:           Tue Jun 13 19:23:32 UTC 2017

Modified Files:
        pkgsrc/lang/qore: Makefile PLIST distinfo

Log Message:
Update qore to version 0.8.12.10.

Changelog from release notes:

New Features since Qore 0.8.12.4:
* added the SalesforceRestClient module for communicating with
  Salesforce.com using the REST APIs
* module SqlUtil
    -has support for native default values in tables
     (issue 1428)
    -has support for Oracle named types (eg. spatial types) for
     Schema.qm and SchemaReverse.qm. (issue 1465)

Bug Fixes since Qore 0.8.12.4:
* module fixes:
    -FixedLengthUtil: fixes and improvements to errors and
     exceptions (issue 1828)
    -HttpServerUtil: eliminated excess logging of all HTTP
     chunks sent and received (issue 1832)
    -PgsqlSqlUtil: fixed a bug in setting a comment for a
     table column (issue 1886)
    -SqlUtil: fixed a bug in the offset query hash argument
     in SQL operation methods (issue 1880), fixed a bug
     that prohibited only columns from the main query to be
     selected when joins are used (issue 1909)
    -TableMapper: fixed a bug in flush messages in the
     InboundTableMapper class (issue 1849)
* fixed a bug that could cause spurious parse-time exceptions
  to be thrown when matching call variants with multiple
  return types for the same callable object (issue 1928)
* fixed the process return code in the output reference in
  backquote() on Unix/Linux platforms (issue 1884)
* fixed a bug where connections were not immediately released
  back to the DatasourcePool in case of an SQLSTATEMENT-ERROR
  exception (issue 1836)
* eliminated a spurious exception in the SQLStatement class in
  case of a DatasourcePool timeout (issue 1832)
* fixed a crash when the incorrect type was passed to a
  parameter declared *reference (issue 1815)
* fixed a crash when the Qore library exits caused by an error
  in handling module dependencies with injected modules
  (issue 1805)
* fixed segfault crashes caused by calling object methods with
  null pointers (issue 1791)
* added internal API support to make it easier for DBI drivers
  to handle lost connections and to allow DBI drivers that must
  close all open handles before a connection is closed
  (such as the oracle driver); due to this change, SQLStatement
  objects based on a DatasourcePool are closed automatically
  whenever the datasource is returned to the pool (issue 1250)
* implemented new parse options to revert the effect of parse
  options that affect code safety (issue 1895):
    -%correct-list-parsing
    -%correct-logic-precedence
    -%correct-int-assignments
    -%correct-operators
    -%loose-args
* fixed parse locations of strings and regexes (issue 1905)
* fixed a memory leak where references participate in recursive
  references (issue 1774)
* fixed a build issue with clang++ (issue 1768)
* fixed a memory leak in the Queue copy constructor when the
  Queue was used in other objects (such as an event queue,
  etc; issue 1749)
* Mapper module fixes:
    -fixed bugs handling the allow_dot and allow_output_dot
     options (issue 1690)
    -fixed TableMapper bugs introduced in Qore 0.8.12.7
     (issue 1754)
* fixed a memory leak in %try-module error handling (issue 1690)
* fixed a bug in trunc_str() when the string has an invalid
  multi-byte character at the end of the string and the string
  is exactly the byte width requested (issue 1693)
* fixed a bug where ReadOnlyFile::getchar() did not respect
  character semantics as documented (issue 1574)
* OracleSqlUtil module fixes:
    -fixed a bug in character_semantics for standalone column
     (issue 1688)
* Mapper module fixes:
    -fixed a bug in handling "list mode" data such as submitted by
     InboundTableMapper::queueData() (issue 1736, bug introduced
     in Qore 0.8.12.7 with the fix for issue 1626)
* SqlUtil module fixes:
    -fixed schema alignment skipping column with name "driver"
     (issue 1684)
    -fixed sqlutil schema management: functional indexes are
     rejected without () in name (issue 1610)
* TableMapper module fixes:
    -fixed a bug in handling "list mode" data with optimized
     inserts (issue 1736, bug introduced in Qore 0.8.12.7 with
     the fix for issue 1626)
* WebSocketClient module fixes:
    -added timeout values to Socket and HTTPClient calls
     (issue 1725)
* WebSocketHandler module fixes:
    -added timeout values to Socket calls (issue 1725)
* WebSocketUtil module fixes:
    -added timeout values to Socket calls (issue 1725)
* fixed a bug where a type conversion error in an lvalue
  assignment could generate a confusing unrelated runtime
  exception (issue 1697)
* fixed a bug where invalid characters in the port
  specification in a URL were ignored (issue 1728)
* fixed a bug with SSL socket communication the remote closing
  the connection during a send operation could cause the
  current thread to go into an infinite loop consuming
  100% CPU (issue 1729)
* fixed a bug in the HashListIterator class iterating hashes
  with a mix of lists and single values such as used by bulk
  DML binds; now the single values will appear as the current
  value for all list elements as per the original design
  instead of throwing a runtime exception (issue 1738)
* fixed bug in internal string generation with size_t arguments
  that could cause invalid data to be output or crashes on
  32-bit platforms (issue 1640)
* fixed a runtime memory leak and invalid runtime behavior with
  undetected recursive lvalue references (issue 1617)
* improved prompt collection performance with large graphs of
  objects by eliminating additional unnecessary graph scans,
  resulting in further large performance improvements in the
  garbage collector (issue 1363)
* improved InboundTableMapper::queueData() performance
  (in the TableMapper module) when used with data in hash of
  lists format to use bulk DML in input and output without
  internal data conversions (issue 1626)
* OracleSqlUtil module fixes:
    -worked around ORA-22165 from op_in() caused by Oracle's
     limit on number of collection elements (issue 1660)
    -fixed a bug in the force option (i.e. cascade) for
     dropping types (issue 1683)
    -improved %try-module error reporting and documentation
     (issue 1648)
* fixed a bug in Qore::parse_url() parsing single-character
  hostnames (issue 1524)
* fixed a bug where PO_LOCKDOWN was not set when parsing init
  and del attributes in user module headers (issue 1535)
* fixed a bug parsing exception catch block parameter errors
  (in debug builds only; issue 1558)
* fixed a bug dereferencing binary values with the [] operator;
  the behavior now corresponds to the documentation (issue 1566)
* fixed a bug that would result in a crash if a method were
  declared both static and abstract (issue 1590)
* fixed performance issues with the Mapper module (and by
  extension the TableMapper module) for mappers with many
  identity (i.e. 1:1) and constant mappings (issue 1620)
* fixed a bug in the BulkInsertOperation class in the
  BulkSqlUtil module where inserts would fail or silently
  insert invalid data in the second or later blocks when
  constant hashes were used (issue 1625)
* Mime module:
    -added support for URL form-encoded messages (issue 1436)
* RestClient module:
    -added support for URL form-encoded messages (issue 1436)
    -added support for the "rawxml" message body encoding
     (issue 1437)
* fixed handling of invalid compressed data in the following
  functions (issue 1432):
    -Qore::gunzip_to_binary()
    -Qore::gunzip_to_string()
    -Qore::uncompress_to_binary()
    -Qore::uncompress_to_string()
* fixed @inf@ on Windows (issue 1442):
* fixed Qore::parse_url() with single-character usernames
  (issue 1455)
* corrected the error message with SSL reads when the server
  closes the connection prematurely (issue 1488)
* fixed the Host header in HTTP requests to not include the port
  if the port is the default port for the scheme because it
  causes some servers to reject the request (issue 1489)


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 pkgsrc/lang/qore/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/lang/qore/PLIST
cvs rdiff -u -r1.7 -r1.8 pkgsrc/lang/qore/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/qore/Makefile
diff -u pkgsrc/lang/qore/Makefile:1.11 pkgsrc/lang/qore/Makefile:1.12
--- pkgsrc/lang/qore/Makefile:1.11      Fri Dec  9 19:00:18 2016
+++ pkgsrc/lang/qore/Makefile   Tue Jun 13 19:23:31 2017
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.11 2016/12/09 19:00:18 nros Exp $
+# $NetBSD: Makefile,v 1.12 2017/06/13 19:23:31 nros Exp $
 
-DISTNAME=      qore-0.8.12.4
+DISTNAME=      qore-0.8.12.10
 CATEGORIES=    lang
 MASTER_SITES=   ${MASTER_SITE_GITHUB:=qorelanguage/}
 EXTRACT_SUFX=   .tar.bz2
@@ -21,7 +21,8 @@ PTHREAD_OPTS+=        native
 FLEX_REQD=     2.5.31
 
 PKGCONFIG_OVERRIDE+=   qore.pc.in
-REPLACE_QORE=          doxygen/qdx
+REPLACE_QORE=          bin/qget bin/rest bin/schema-reverse 
+REPLACE_QORE+=         bin/sfrest bin/sqlutil doxygen/qdx
 
 CONFIGURE_ARGS+=--with-libsuffix=""
 

Index: pkgsrc/lang/qore/PLIST
diff -u pkgsrc/lang/qore/PLIST:1.4 pkgsrc/lang/qore/PLIST:1.5
--- pkgsrc/lang/qore/PLIST:1.4  Fri Dec  9 19:00:18 2016
+++ pkgsrc/lang/qore/PLIST      Tue Jun 13 19:23:31 2017
@@ -1,7 +1,12 @@
-@comment $NetBSD: PLIST,v 1.4 2016/12/09 19:00:18 nros Exp $
+@comment $NetBSD: PLIST,v 1.5 2017/06/13 19:23:31 nros Exp $
 bin/qdx
+bin/qget
 bin/qore
 bin/qpp
+bin/rest
+bin/schema-reverse
+bin/sfrest
+bin/sqlutil
 include/qore/AbstractPrivateData.h
 include/qore/AbstractQoreNode.h
 include/qore/AbstractThreadResource.h
@@ -116,12 +121,14 @@ share/doc/qore/lang/html/_q_c___auto_rea
 share/doc/qore/lang/html/_q_c___auto_write_lock_8dox_8h_source.html
 share/doc/qore/lang/html/_q_c___binary_input_stream_8dox_8h_source.html
 share/doc/qore/lang/html/_q_c___binary_output_stream_8dox_8h_source.html
+share/doc/qore/lang/html/_q_c___breakpoint_8dox_8h_source.html
 share/doc/qore/lang/html/_q_c___buffered_stream_reader_8dox_8h_source.html
 share/doc/qore/lang/html/_q_c___condition_8dox_8h_source.html
 share/doc/qore/lang/html/_q_c___counter_8dox_8h_source.html
 share/doc/qore/lang/html/_q_c___data_line_iterator_8dox_8h_source.html
 share/doc/qore/lang/html/_q_c___datasource_8dox_8h_source.html
 share/doc/qore/lang/html/_q_c___datasource_pool_8dox_8h_source.html
+share/doc/qore/lang/html/_q_c___debug_program_8dox_8h_source.html
 share/doc/qore/lang/html/_q_c___dir_8dox_8h_source.html
 share/doc/qore/lang/html/_q_c___encoding_conversion_input_stream_8dox_8h_source.html
 share/doc/qore/lang/html/_q_c___encoding_conversion_output_stream_8dox_8h_source.html
@@ -184,13 +191,17 @@ share/doc/qore/lang/html/_q_c___transfor
 share/doc/qore/lang/html/_q_c___tree_map_8dox_8h_source.html
 share/doc/qore/lang/html/annotated.html
 share/doc/qore/lang/html/annotated_dup.js
-share/doc/qore/lang/html/arrowdown.png
-share/doc/qore/lang/html/arrowright.png
 share/doc/qore/lang/html/basic_data_types.html
 share/doc/qore/lang/html/bc_s.png
 share/doc/qore/lang/html/bdwn.png
 share/doc/qore/lang/html/bug.html
 share/doc/qore/lang/html/character_encoding.html
+share/doc/qore/lang/html/class_breakpoint_1_1_breakpoint-members.html
+share/doc/qore/lang/html/class_breakpoint_1_1_breakpoint.html
+share/doc/qore/lang/html/class_breakpoint_1_1_breakpoint.js
+share/doc/qore/lang/html/class_debug_program_1_1_debug_program-members.html
+share/doc/qore/lang/html/class_debug_program_1_1_debug_program.html
+share/doc/qore/lang/html/class_debug_program_1_1_debug_program.js
 share/doc/qore/lang/html/class_qore_1_1_abstract_bidirectional_iterator-members.html
 share/doc/qore/lang/html/class_qore_1_1_abstract_bidirectional_iterator.html
 share/doc/qore/lang/html/class_qore_1_1_abstract_bidirectional_iterator.js
@@ -698,9 +709,6 @@ share/doc/qore/lang/html/date_time_arith
 share/doc/qore/lang/html/deprecated.html
 share/doc/qore/lang/html/desc_overview.html
 share/doc/qore/lang/html/dir_97aefd0d527b934f1d99a682da8fe6a9.html
-share/doc/qore/lang/html/dir_97aefd0d527b934f1d99a682da8fe6a9_dep.map
-share/doc/qore/lang/html/dir_97aefd0d527b934f1d99a682da8fe6a9_dep.md5
-share/doc/qore/lang/html/dir_97aefd0d527b934f1d99a682da8fe6a9_dep.png
 share/doc/qore/lang/html/doc.png
 share/doc/qore/lang/html/doxygen.css
 share/doc/qore/lang/html/doxygen.png
@@ -764,12 +772,16 @@ share/doc/qore/lang/html/functions_z.htm
 share/doc/qore/lang/html/graph_legend.html
 share/doc/qore/lang/html/graph_legend.md5
 share/doc/qore/lang/html/graph_legend.png
+share/doc/qore/lang/html/group___buffered_stream_reader.html
+share/doc/qore/lang/html/group___buffered_stream_reader.js
 share/doc/qore/lang/html/group___string_concat_decoding.html
 share/doc/qore/lang/html/group___string_concat_decoding.js
 share/doc/qore/lang/html/group___string_concat_encoding.html
 share/doc/qore/lang/html/group___string_concat_encoding.js
 share/doc/qore/lang/html/group__boolean__constants.html
 share/doc/qore/lang/html/group__boolean__constants.js
+share/doc/qore/lang/html/group__breakpoint__policy__options.html
+share/doc/qore/lang/html/group__breakpoint__policy__options.js
 share/doc/qore/lang/html/group__call__type__constants.html
 share/doc/qore/lang/html/group__call__type__constants.js
 share/doc/qore/lang/html/group__compression__constants.html
@@ -780,6 +792,8 @@ share/doc/qore/lang/html/group__compress
 share/doc/qore/lang/html/group__compresssion__functions.js
 share/doc/qore/lang/html/group__context__functions.html
 share/doc/qore/lang/html/group__context__functions.js
+share/doc/qore/lang/html/group__crypto__transformations.html
+share/doc/qore/lang/html/group__crypto__transformations.js
 share/doc/qore/lang/html/group__cryptographic__constants.html
 share/doc/qore/lang/html/group__cryptographic__constants.js
 share/doc/qore/lang/html/group__cryptographic__functions.html
@@ -792,6 +806,10 @@ share/doc/qore/lang/html/group__dbi__cap
 share/doc/qore/lang/html/group__dbi__capabilities.js
 share/doc/qore/lang/html/group__dbi__functions.html
 share/doc/qore/lang/html/group__dbi__functions.js
+share/doc/qore/lang/html/group__debug__rc__options.html
+share/doc/qore/lang/html/group__debug__rc__options.js
+share/doc/qore/lang/html/group__debug__step__options.html
+share/doc/qore/lang/html/group__debug__step__options.js
 share/doc/qore/lang/html/group__digest__functions.html
 share/doc/qore/lang/html/group__digest__functions.js
 share/doc/qore/lang/html/group__env__functions.html
@@ -983,6 +1001,12 @@ share/doc/qore/lang/html/inherit_graph_3
 share/doc/qore/lang/html/inherit_graph_31.map
 share/doc/qore/lang/html/inherit_graph_31.md5
 share/doc/qore/lang/html/inherit_graph_31.png
+share/doc/qore/lang/html/inherit_graph_32.map
+share/doc/qore/lang/html/inherit_graph_32.md5
+share/doc/qore/lang/html/inherit_graph_32.png
+share/doc/qore/lang/html/inherit_graph_33.map
+share/doc/qore/lang/html/inherit_graph_33.md5
+share/doc/qore/lang/html/inherit_graph_33.png
 share/doc/qore/lang/html/inherit_graph_4.map
 share/doc/qore/lang/html/inherit_graph_4.md5
 share/doc/qore/lang/html/inherit_graph_4.png
@@ -1005,8 +1029,14 @@ share/doc/qore/lang/html/inherits.html
 share/doc/qore/lang/html/jquery.js
 share/doc/qore/lang/html/keywords.html
 share/doc/qore/lang/html/lvalue_references.html
+share/doc/qore/lang/html/menu.js
+share/doc/qore/lang/html/menudata.js
 share/doc/qore/lang/html/modules.html
 share/doc/qore/lang/html/modules.js
+share/doc/qore/lang/html/namespace_breakpoint.html
+share/doc/qore/lang/html/namespace_breakpoint.js
+share/doc/qore/lang/html/namespace_debug_program.html
+share/doc/qore/lang/html/namespace_debug_program.js
 share/doc/qore/lang/html/namespace_qore.html
 share/doc/qore/lang/html/namespace_qore.js
 share/doc/qore/lang/html/namespace_qore_1_1_err.html
@@ -1322,6 +1352,10 @@ share/doc/qore/lang/html/search/groups_f
 share/doc/qore/lang/html/search/mag_sel.png
 share/doc/qore/lang/html/search/namespaces_0.html
 share/doc/qore/lang/html/search/namespaces_0.js
+share/doc/qore/lang/html/search/namespaces_1.html
+share/doc/qore/lang/html/search/namespaces_1.js
+share/doc/qore/lang/html/search/namespaces_2.html
+share/doc/qore/lang/html/search/namespaces_2.js
 share/doc/qore/lang/html/search/nomatches.html
 share/doc/qore/lang/html/search/pages_0.html
 share/doc/qore/lang/html/search/pages_0.js
@@ -1422,6 +1456,11 @@ share/doc/qore/lang/html/threading.html
 share/doc/qore/lang/html/time_zones.html
 share/doc/qore/lang/html/variables.html
 share/doc/qore/lang/html/warnings.html
+share/doc/qore/library/html/_abstract_exception_8h.html
+share/doc/qore/library/html/_abstract_exception_8h__dep__incl.map
+share/doc/qore/library/html/_abstract_exception_8h__dep__incl.md5
+share/doc/qore/library/html/_abstract_exception_8h__dep__incl.png
+share/doc/qore/library/html/_abstract_exception_8h_source.html
 share/doc/qore/library/html/_abstract_private_data_8h_source.html
 share/doc/qore/library/html/_abstract_qore_node_8h_source.html
 share/doc/qore/library/html/_abstract_thread_resource_8h_source.html
@@ -1445,6 +1484,7 @@ share/doc/qore/library/html/_datasource_
 share/doc/qore/library/html/_date_time_8h_source.html
 share/doc/qore/library/html/_date_time_node_8h_source.html
 share/doc/qore/library/html/_exception_sink_8h_source.html
+share/doc/qore/library/html/_input_stream_8h_source.html
 share/doc/qore/library/html/_module_manager_8h.html
 share/doc/qore/library/html/_module_manager_8h__dep__incl.map
 share/doc/qore/library/html/_module_manager_8h__dep__incl.md5
@@ -1453,6 +1493,7 @@ share/doc/qore/library/html/_module_mana
 share/doc/qore/library/html/_module_manager_8h__incl.md5
 share/doc/qore/library/html/_module_manager_8h__incl.png
 share/doc/qore/library/html/_module_manager_8h_source.html
+share/doc/qore/library/html/_output_stream_8h_source.html
 share/doc/qore/library/html/_parse_option_map_8h_source.html
 share/doc/qore/library/html/_qore_8h.html
 share/doc/qore/library/html/_qore_8h__dep__incl.map
@@ -1527,6 +1568,14 @@ share/doc/qore/library/html/_qore_s_s_l_
 share/doc/qore/library/html/_qore_s_s_l_private_key_8h_source.html
 share/doc/qore/library/html/_qore_socket_8h_source.html
 share/doc/qore/library/html/_qore_socket_object_8h_source.html
+share/doc/qore/library/html/_qore_standard_exception_8h.html
+share/doc/qore/library/html/_qore_standard_exception_8h__dep__incl.map
+share/doc/qore/library/html/_qore_standard_exception_8h__dep__incl.md5
+share/doc/qore/library/html/_qore_standard_exception_8h__dep__incl.png
+share/doc/qore/library/html/_qore_standard_exception_8h__incl.map
+share/doc/qore/library/html/_qore_standard_exception_8h__incl.md5
+share/doc/qore/library/html/_qore_standard_exception_8h__incl.png
+share/doc/qore/library/html/_qore_standard_exception_8h_source.html
 share/doc/qore/library/html/_qore_string_8h_source.html
 share/doc/qore/library/html/_qore_string_node_8h_source.html
 share/doc/qore/library/html/_qore_thread_local_storage_8h_source.html
@@ -1547,9 +1596,8 @@ share/doc/qore/library/html/_restriction
 share/doc/qore/library/html/_s_q_l_statement_8h_source.html
 share/doc/qore/library/html/_scope_guard_8h_source.html
 share/doc/qore/library/html/_system_environment_8h_source.html
+share/doc/qore/library/html/_transform_8h_source.html
 share/doc/qore/library/html/annotated.html
-share/doc/qore/library/html/arrowdown.png
-share/doc/qore/library/html/arrowright.png
 share/doc/qore/library/html/bc_s.png
 share/doc/qore/library/html/bdwn.png
 share/doc/qore/library/html/builtin_functions.html
@@ -1561,6 +1609,11 @@ share/doc/qore/library/html/class_abstra
 share/doc/qore/library/html/class_abstract_call_reference_node__inherit__graph.map
 share/doc/qore/library/html/class_abstract_call_reference_node__inherit__graph.md5
 share/doc/qore/library/html/class_abstract_call_reference_node__inherit__graph.png
+share/doc/qore/library/html/class_abstract_exception-members.html
+share/doc/qore/library/html/class_abstract_exception.html
+share/doc/qore/library/html/class_abstract_exception__inherit__graph.map
+share/doc/qore/library/html/class_abstract_exception__inherit__graph.md5
+share/doc/qore/library/html/class_abstract_exception__inherit__graph.png
 share/doc/qore/library/html/class_abstract_private_data-members.html
 share/doc/qore/library/html/class_abstract_private_data.html
 share/doc/qore/library/html/class_abstract_private_data__coll__graph.map
@@ -1577,6 +1630,8 @@ share/doc/qore/library/html/class_abstra
 share/doc/qore/library/html/class_abstract_qore_class_type_info_helper__inherit__graph.map
 share/doc/qore/library/html/class_abstract_qore_class_type_info_helper__inherit__graph.md5
 share/doc/qore/library/html/class_abstract_qore_class_type_info_helper__inherit__graph.png
+share/doc/qore/library/html/class_abstract_qore_class_user_data-members.html
+share/doc/qore/library/html/class_abstract_qore_class_user_data.html
 share/doc/qore/library/html/class_abstract_qore_node-members.html
 share/doc/qore/library/html/class_abstract_qore_node.html
 share/doc/qore/library/html/class_abstract_qore_node__coll__graph.map
@@ -1585,6 +1640,8 @@ share/doc/qore/library/html/class_abstra
 share/doc/qore/library/html/class_abstract_qore_node__inherit__graph.map
 share/doc/qore/library/html/class_abstract_qore_node__inherit__graph.md5
 share/doc/qore/library/html/class_abstract_qore_node__inherit__graph.png
+share/doc/qore/library/html/class_abstract_qore_program_external_data-members.html
+share/doc/qore/library/html/class_abstract_qore_program_external_data.html
 share/doc/qore/library/html/class_abstract_thread_resource-members.html
 share/doc/qore/library/html/class_abstract_thread_resource.html
 share/doc/qore/library/html/class_abstract_thread_resource__coll__graph.map
@@ -1638,6 +1695,8 @@ share/doc/qore/library/html/class_const_
 share/doc/qore/library/html/class_const_value_list_iterator__coll__graph.map
 share/doc/qore/library/html/class_const_value_list_iterator__coll__graph.md5
 share/doc/qore/library/html/class_const_value_list_iterator__coll__graph.png
+share/doc/qore/library/html/class_current_program_runtime_external_parse_context_helper-members.html
+share/doc/qore/library/html/class_current_program_runtime_external_parse_context_helper.html
 share/doc/qore/library/html/class_d_b_i_driver-members.html
 share/doc/qore/library/html/class_d_b_i_driver.html
 share/doc/qore/library/html/class_d_b_i_driver_list-members.html
@@ -1676,6 +1735,14 @@ share/doc/qore/library/html/class_hash_i
 share/doc/qore/library/html/class_hash_iterator__inherit__graph.md5
 share/doc/qore/library/html/class_hash_iterator__inherit__graph.png
 share/doc/qore/library/html/class_implementation.html
+share/doc/qore/library/html/class_input_stream-members.html
+share/doc/qore/library/html/class_input_stream.html
+share/doc/qore/library/html/class_input_stream__coll__graph.map
+share/doc/qore/library/html/class_input_stream__coll__graph.md5
+share/doc/qore/library/html/class_input_stream__coll__graph.png
+share/doc/qore/library/html/class_input_stream__inherit__graph.map
+share/doc/qore/library/html/class_input_stream__inherit__graph.md5
+share/doc/qore/library/html/class_input_stream__inherit__graph.png
 share/doc/qore/library/html/class_list_iterator-members.html
 share/doc/qore/library/html/class_list_iterator.html
 share/doc/qore/library/html/class_list_iterator__coll__graph.map
@@ -1712,6 +1779,14 @@ share/doc/qore/library/html/class_opt_lo
 share/doc/qore/library/html/class_opt_locker__coll__graph.map
 share/doc/qore/library/html/class_opt_locker__coll__graph.md5
 share/doc/qore/library/html/class_opt_locker__coll__graph.png
+share/doc/qore/library/html/class_output_stream-members.html
+share/doc/qore/library/html/class_output_stream.html
+share/doc/qore/library/html/class_output_stream__coll__graph.map
+share/doc/qore/library/html/class_output_stream__coll__graph.md5
+share/doc/qore/library/html/class_output_stream__coll__graph.png
+share/doc/qore/library/html/class_output_stream__inherit__graph.map
+share/doc/qore/library/html/class_output_stream__inherit__graph.md5
+share/doc/qore/library/html/class_output_stream__inherit__graph.png
 share/doc/qore/library/html/class_parse_option_map-members.html
 share/doc/qore/library/html/class_parse_option_map.html
 share/doc/qore/library/html/class_private_data_ref_holder-members.html
@@ -1766,8 +1841,21 @@ share/doc/qore/library/html/class_qore_b
 share/doc/qore/library/html/class_qore_bool_true_node__inherit__graph.map
 share/doc/qore/library/html/class_qore_bool_true_node__inherit__graph.md5
 share/doc/qore/library/html/class_qore_bool_true_node__inherit__graph.png
+share/doc/qore/library/html/class_qore_builtin_class-members.html
+share/doc/qore/library/html/class_qore_builtin_class.html
+share/doc/qore/library/html/class_qore_builtin_class__coll__graph.map
+share/doc/qore/library/html/class_qore_builtin_class__coll__graph.md5
+share/doc/qore/library/html/class_qore_builtin_class__coll__graph.png
+share/doc/qore/library/html/class_qore_builtin_class__inherit__graph.map
+share/doc/qore/library/html/class_qore_builtin_class__inherit__graph.md5
+share/doc/qore/library/html/class_qore_builtin_class__inherit__graph.png
 share/doc/qore/library/html/class_qore_class-members.html
 share/doc/qore/library/html/class_qore_class.html
+share/doc/qore/library/html/class_qore_class__inherit__graph.map
+share/doc/qore/library/html/class_qore_class__inherit__graph.md5
+share/doc/qore/library/html/class_qore_class__inherit__graph.png
+share/doc/qore/library/html/class_qore_class_holder-members.html
+share/doc/qore/library/html/class_qore_class_holder.html
 share/doc/qore/library/html/class_qore_condition-members.html
 share/doc/qore/library/html/class_qore_condition.html
 share/doc/qore/library/html/class_qore_counter-members.html
@@ -1838,6 +1926,10 @@ share/doc/qore/library/html/class_qore_n
 share/doc/qore/library/html/class_qore_namespace__inherit__graph.map
 share/doc/qore/library/html/class_qore_namespace__inherit__graph.md5
 share/doc/qore/library/html/class_qore_namespace__inherit__graph.png
+share/doc/qore/library/html/class_qore_namespace_const_iterator-members.html
+share/doc/qore/library/html/class_qore_namespace_const_iterator.html
+share/doc/qore/library/html/class_qore_namespace_iterator-members.html
+share/doc/qore/library/html/class_qore_namespace_iterator.html
 share/doc/qore/library/html/class_qore_node_as_string_helper-members.html
 share/doc/qore/library/html/class_qore_node_as_string_helper.html
 share/doc/qore/library/html/class_qore_node_eval_optional_ref_holder-members.html
@@ -1866,6 +1958,8 @@ share/doc/qore/library/html/class_qore_n
 share/doc/qore/library/html/class_qore_number_node__inherit__graph.map
 share/doc/qore/library/html/class_qore_number_node__inherit__graph.md5
 share/doc/qore/library/html/class_qore_number_node__inherit__graph.png
+share/doc/qore/library/html/class_qore_number_node_helper-members.html
+share/doc/qore/library/html/class_qore_number_node_helper.html
 share/doc/qore/library/html/class_qore_object-members.html
 share/doc/qore/library/html/class_qore_object.html
 share/doc/qore/library/html/class_qore_object__coll__graph.map
@@ -1882,6 +1976,8 @@ share/doc/qore/library/html/class_qore_p
 share/doc/qore/library/html/class_qore_program__inherit__graph.map
 share/doc/qore/library/html/class_qore_program__inherit__graph.md5
 share/doc/qore/library/html/class_qore_program__inherit__graph.png
+share/doc/qore/library/html/class_qore_program_context_helper-members.html
+share/doc/qore/library/html/class_qore_program_context_helper.html
 share/doc/qore/library/html/class_qore_program_helper-members.html
 share/doc/qore/library/html/class_qore_program_helper.html
 share/doc/qore/library/html/class_qore_r_w_lock-members.html
@@ -1927,6 +2023,14 @@ share/doc/qore/library/html/class_qore_s
 share/doc/qore/library/html/class_qore_safe_r_w_write_locker__coll__graph.png
 share/doc/qore/library/html/class_qore_socket-members.html
 share/doc/qore/library/html/class_qore_socket.html
+share/doc/qore/library/html/class_qore_standard_exception-members.html
+share/doc/qore/library/html/class_qore_standard_exception.html
+share/doc/qore/library/html/class_qore_standard_exception__coll__graph.map
+share/doc/qore/library/html/class_qore_standard_exception__coll__graph.md5
+share/doc/qore/library/html/class_qore_standard_exception__coll__graph.png
+share/doc/qore/library/html/class_qore_standard_exception__inherit__graph.map
+share/doc/qore/library/html/class_qore_standard_exception__inherit__graph.md5
+share/doc/qore/library/html/class_qore_standard_exception__inherit__graph.png
 share/doc/qore/library/html/class_qore_static_method_iterator-members.html
 share/doc/qore/library/html/class_qore_static_method_iterator.html
 share/doc/qore/library/html/class_qore_string-members.html
@@ -2091,6 +2195,22 @@ share/doc/qore/library/html/class_temp_s
 share/doc/qore/library/html/class_temp_string.html
 share/doc/qore/library/html/class_thread_cleanup_list-members.html
 share/doc/qore/library/html/class_thread_cleanup_list.html
+share/doc/qore/library/html/class_transform-members.html
+share/doc/qore/library/html/class_transform.html
+share/doc/qore/library/html/class_transform__coll__graph.map
+share/doc/qore/library/html/class_transform__coll__graph.md5
+share/doc/qore/library/html/class_transform__coll__graph.png
+share/doc/qore/library/html/class_transform__inherit__graph.map
+share/doc/qore/library/html/class_transform__inherit__graph.md5
+share/doc/qore/library/html/class_transform__inherit__graph.png
+share/doc/qore/library/html/class_try_private_data_ref_holder-members.html
+share/doc/qore/library/html/class_try_private_data_ref_holder.html
+share/doc/qore/library/html/class_try_private_data_ref_holder__coll__graph.map
+share/doc/qore/library/html/class_try_private_data_ref_holder__coll__graph.md5
+share/doc/qore/library/html/class_try_private_data_ref_holder__coll__graph.png
+share/doc/qore/library/html/class_try_private_data_ref_holder__inherit__graph.map
+share/doc/qore/library/html/class_try_private_data_ref_holder__inherit__graph.md5
+share/doc/qore/library/html/class_try_private_data_ref_holder__inherit__graph.png
 share/doc/qore/library/html/class_unique_value_qore_node-members.html
 share/doc/qore/library/html/class_unique_value_qore_node.html
 share/doc/qore/library/html/class_unique_value_qore_node__coll__graph.map
@@ -2099,11 +2219,43 @@ share/doc/qore/library/html/class_unique
 share/doc/qore/library/html/class_unique_value_qore_node__inherit__graph.map
 share/doc/qore/library/html/class_unique_value_qore_node__inherit__graph.md5
 share/doc/qore/library/html/class_unique_value_qore_node__inherit__graph.png
+share/doc/qore/library/html/class_value_eval_ref_holder-members.html
+share/doc/qore/library/html/class_value_eval_ref_holder.html
+share/doc/qore/library/html/class_value_eval_ref_holder__coll__graph.map
+share/doc/qore/library/html/class_value_eval_ref_holder__coll__graph.md5
+share/doc/qore/library/html/class_value_eval_ref_holder__coll__graph.png
+share/doc/qore/library/html/class_value_eval_ref_holder__inherit__graph.map
+share/doc/qore/library/html/class_value_eval_ref_holder__inherit__graph.md5
+share/doc/qore/library/html/class_value_eval_ref_holder__inherit__graph.png
+share/doc/qore/library/html/class_value_holder-members.html
+share/doc/qore/library/html/class_value_holder.html
+share/doc/qore/library/html/class_value_holder__coll__graph.map
+share/doc/qore/library/html/class_value_holder__coll__graph.md5
+share/doc/qore/library/html/class_value_holder__coll__graph.png
+share/doc/qore/library/html/class_value_holder__inherit__graph.map
+share/doc/qore/library/html/class_value_holder__inherit__graph.md5
+share/doc/qore/library/html/class_value_holder__inherit__graph.png
+share/doc/qore/library/html/class_value_holder_base-members.html
+share/doc/qore/library/html/class_value_holder_base.html
+share/doc/qore/library/html/class_value_holder_base__coll__graph.map
+share/doc/qore/library/html/class_value_holder_base__coll__graph.md5
+share/doc/qore/library/html/class_value_holder_base__coll__graph.png
+share/doc/qore/library/html/class_value_holder_base__inherit__graph.map
+share/doc/qore/library/html/class_value_holder_base__inherit__graph.md5
+share/doc/qore/library/html/class_value_holder_base__inherit__graph.png
 share/doc/qore/library/html/class_value_list_iterator-members.html
 share/doc/qore/library/html/class_value_list_iterator.html
 share/doc/qore/library/html/class_value_list_iterator__coll__graph.map
 share/doc/qore/library/html/class_value_list_iterator__coll__graph.md5
 share/doc/qore/library/html/class_value_list_iterator__coll__graph.png
+share/doc/qore/library/html/class_value_optional_ref_holder-members.html
+share/doc/qore/library/html/class_value_optional_ref_holder.html
+share/doc/qore/library/html/class_value_optional_ref_holder__coll__graph.map
+share/doc/qore/library/html/class_value_optional_ref_holder__coll__graph.md5
+share/doc/qore/library/html/class_value_optional_ref_holder__coll__graph.png
+share/doc/qore/library/html/class_value_optional_ref_holder__inherit__graph.map
+share/doc/qore/library/html/class_value_optional_ref_holder__inherit__graph.md5
+share/doc/qore/library/html/class_value_optional_ref_holder__inherit__graph.png
 share/doc/qore/library/html/classcstr__vector__t-members.html
 share/doc/qore/library/html/classcstr__vector__t.html
 share/doc/qore/library/html/classes.html
@@ -2129,21 +2281,9 @@ share/doc/qore/library/html/common_8h_so
 share/doc/qore/library/html/dbi_drivers.html
 share/doc/qore/library/html/deprecated.html
 share/doc/qore/library/html/dir_190ec3a3032c7cbd271ed7adfbeb62e8.html
-share/doc/qore/library/html/dir_190ec3a3032c7cbd271ed7adfbeb62e8_dep.map
-share/doc/qore/library/html/dir_190ec3a3032c7cbd271ed7adfbeb62e8_dep.md5
-share/doc/qore/library/html/dir_190ec3a3032c7cbd271ed7adfbeb62e8_dep.png
 share/doc/qore/library/html/dir_1b4d0bbac86efc901044fcf05321a308.html
-share/doc/qore/library/html/dir_1b4d0bbac86efc901044fcf05321a308_dep.map
-share/doc/qore/library/html/dir_1b4d0bbac86efc901044fcf05321a308_dep.md5
-share/doc/qore/library/html/dir_1b4d0bbac86efc901044fcf05321a308_dep.png
 share/doc/qore/library/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/library/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/library/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/library/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/library/html/dir_d44c64559bbebec7f509842c48db8b23.html
-share/doc/qore/library/html/dir_d44c64559bbebec7f509842c48db8b23_dep.map
-share/doc/qore/library/html/dir_d44c64559bbebec7f509842c48db8b23_dep.md5
-share/doc/qore/library/html/dir_d44c64559bbebec7f509842c48db8b23_dep.png
 share/doc/qore/library/html/doc.png
 share/doc/qore/library/html/doxygen.css
 share/doc/qore/library/html/doxygen.png
@@ -2153,12 +2293,14 @@ share/doc/qore/library/html/files.html
 share/doc/qore/library/html/folderclosed.png
 share/doc/qore/library/html/folderopen.png
 share/doc/qore/library/html/functions.html
+share/doc/qore/library/html/functions_0x7e.html
 share/doc/qore/library/html/functions_b.html
 share/doc/qore/library/html/functions_c.html
 share/doc/qore/library/html/functions_d.html
 share/doc/qore/library/html/functions_e.html
 share/doc/qore/library/html/functions_f.html
 share/doc/qore/library/html/functions_func.html
+share/doc/qore/library/html/functions_func_0x7e.html
 share/doc/qore/library/html/functions_func_b.html
 share/doc/qore/library/html/functions_func_c.html
 share/doc/qore/library/html/functions_func_d.html
@@ -2180,7 +2322,6 @@ share/doc/qore/library/html/functions_fu
 share/doc/qore/library/html/functions_func_v.html
 share/doc/qore/library/html/functions_func_w.html
 share/doc/qore/library/html/functions_func_z.html
-share/doc/qore/library/html/functions_func_~.html
 share/doc/qore/library/html/functions_g.html
 share/doc/qore/library/html/functions_h.html
 share/doc/qore/library/html/functions_i.html
@@ -2198,8 +2339,8 @@ share/doc/qore/library/html/functions_u.
 share/doc/qore/library/html/functions_v.html
 share/doc/qore/library/html/functions_vars.html
 share/doc/qore/library/html/functions_w.html
+share/doc/qore/library/html/functions_x.html
 share/doc/qore/library/html/functions_z.html
-share/doc/qore/library/html/functions_~.html
 share/doc/qore/library/html/globals.html
 share/doc/qore/library/html/globals_a.html
 share/doc/qore/library/html/globals_b.html
@@ -2231,6 +2372,7 @@ share/doc/qore/library/html/globals_vars
 share/doc/qore/library/html/graph_legend.html
 share/doc/qore/library/html/graph_legend.md5
 share/doc/qore/library/html/graph_legend.png
+share/doc/qore/library/html/group___qore_value.html
 share/doc/qore/library/html/group___string_concat_decoding.html
 share/doc/qore/library/html/group___string_concat_encoding.html
 share/doc/qore/library/html/group__number__format__flags.html
@@ -2491,9 +2633,48 @@ share/doc/qore/library/html/inherit_grap
 share/doc/qore/library/html/inherit_graph_84.map
 share/doc/qore/library/html/inherit_graph_84.md5
 share/doc/qore/library/html/inherit_graph_84.png
+share/doc/qore/library/html/inherit_graph_85.map
+share/doc/qore/library/html/inherit_graph_85.md5
+share/doc/qore/library/html/inherit_graph_85.png
+share/doc/qore/library/html/inherit_graph_86.map
+share/doc/qore/library/html/inherit_graph_86.md5
+share/doc/qore/library/html/inherit_graph_86.png
+share/doc/qore/library/html/inherit_graph_87.map
+share/doc/qore/library/html/inherit_graph_87.md5
+share/doc/qore/library/html/inherit_graph_87.png
+share/doc/qore/library/html/inherit_graph_88.map
+share/doc/qore/library/html/inherit_graph_88.md5
+share/doc/qore/library/html/inherit_graph_88.png
+share/doc/qore/library/html/inherit_graph_89.map
+share/doc/qore/library/html/inherit_graph_89.md5
+share/doc/qore/library/html/inherit_graph_89.png
 share/doc/qore/library/html/inherit_graph_9.map
 share/doc/qore/library/html/inherit_graph_9.md5
 share/doc/qore/library/html/inherit_graph_9.png
+share/doc/qore/library/html/inherit_graph_90.map
+share/doc/qore/library/html/inherit_graph_90.md5
+share/doc/qore/library/html/inherit_graph_90.png
+share/doc/qore/library/html/inherit_graph_91.map
+share/doc/qore/library/html/inherit_graph_91.md5
+share/doc/qore/library/html/inherit_graph_91.png
+share/doc/qore/library/html/inherit_graph_92.map
+share/doc/qore/library/html/inherit_graph_92.md5
+share/doc/qore/library/html/inherit_graph_92.png
+share/doc/qore/library/html/inherit_graph_93.map
+share/doc/qore/library/html/inherit_graph_93.md5
+share/doc/qore/library/html/inherit_graph_93.png
+share/doc/qore/library/html/inherit_graph_94.map
+share/doc/qore/library/html/inherit_graph_94.md5
+share/doc/qore/library/html/inherit_graph_94.png
+share/doc/qore/library/html/inherit_graph_95.map
+share/doc/qore/library/html/inherit_graph_95.md5
+share/doc/qore/library/html/inherit_graph_95.png
+share/doc/qore/library/html/inherit_graph_96.map
+share/doc/qore/library/html/inherit_graph_96.md5
+share/doc/qore/library/html/inherit_graph_96.png
+share/doc/qore/library/html/inherit_graph_97.map
+share/doc/qore/library/html/inherit_graph_97.md5
+share/doc/qore/library/html/inherit_graph_97.png
 share/doc/qore/library/html/inherits.html
 share/doc/qore/library/html/jquery.js
 share/doc/qore/library/html/macros-i386_8h_source.html
@@ -2504,7 +2685,11 @@ share/doc/qore/library/html/macros-power
 share/doc/qore/library/html/macros-sparc_8h_source.html
 share/doc/qore/library/html/macros-x86__64_8h_source.html
 share/doc/qore/library/html/macros_8h_source.html
+share/doc/qore/library/html/menu.js
+share/doc/qore/library/html/menudata.js
 share/doc/qore/library/html/modules.html
+share/doc/qore/library/html/namespacedetail.html
+share/doc/qore/library/html/namespaces.html
 share/doc/qore/library/html/nav_f.png
 share/doc/qore/library/html/nav_g.png
 share/doc/qore/library/html/nav_h.png
@@ -2558,6 +2743,8 @@ share/doc/qore/library/html/search/all_1
 share/doc/qore/library/html/search/all_17.js
 share/doc/qore/library/html/search/all_18.html
 share/doc/qore/library/html/search/all_18.js
+share/doc/qore/library/html/search/all_19.html
+share/doc/qore/library/html/search/all_19.js
 share/doc/qore/library/html/search/all_2.html
 share/doc/qore/library/html/search/all_2.js
 share/doc/qore/library/html/search/all_3.html
@@ -2592,6 +2779,8 @@ share/doc/qore/library/html/search/class
 share/doc/qore/library/html/search/classes_1.js
 share/doc/qore/library/html/search/classes_10.html
 share/doc/qore/library/html/search/classes_10.js
+share/doc/qore/library/html/search/classes_11.html
+share/doc/qore/library/html/search/classes_11.js
 share/doc/qore/library/html/search/classes_2.html
 share/doc/qore/library/html/search/classes_2.js
 share/doc/qore/library/html/search/classes_3.html
@@ -2655,6 +2844,8 @@ share/doc/qore/library/html/search/files
 share/doc/qore/library/html/search/files_6.js
 share/doc/qore/library/html/search/files_7.html
 share/doc/qore/library/html/search/files_7.js
+share/doc/qore/library/html/search/files_8.html
+share/doc/qore/library/html/search/files_8.js
 share/doc/qore/library/html/search/functions_0.html
 share/doc/qore/library/html/search/functions_0.js
 share/doc/qore/library/html/search/functions_1.html
@@ -2707,7 +2898,11 @@ share/doc/qore/library/html/search/group
 share/doc/qore/library/html/search/groups_1.js
 share/doc/qore/library/html/search/groups_2.html
 share/doc/qore/library/html/search/groups_2.js
+share/doc/qore/library/html/search/groups_3.html
+share/doc/qore/library/html/search/groups_3.js
 share/doc/qore/library/html/search/mag_sel.png
+share/doc/qore/library/html/search/namespaces_0.html
+share/doc/qore/library/html/search/namespaces_0.js
 share/doc/qore/library/html/search/nomatches.html
 share/doc/qore/library/html/search/pages_0.html
 share/doc/qore/library/html/search/pages_0.js
@@ -2743,6 +2938,10 @@ share/doc/qore/library/html/search/varia
 share/doc/qore/library/html/search/variables_0.js
 share/doc/qore/library/html/search/variables_1.html
 share/doc/qore/library/html/search/variables_1.js
+share/doc/qore/library/html/search/variables_10.html
+share/doc/qore/library/html/search/variables_10.js
+share/doc/qore/library/html/search/variables_11.html
+share/doc/qore/library/html/search/variables_11.js
 share/doc/qore/library/html/search/variables_2.html
 share/doc/qore/library/html/search/variables_2.js
 share/doc/qore/library/html/search/variables_3.html
@@ -2767,8 +2966,32 @@ share/doc/qore/library/html/search/varia
 share/doc/qore/library/html/search/variables_c.js
 share/doc/qore/library/html/search/variables_d.html
 share/doc/qore/library/html/search/variables_d.js
+share/doc/qore/library/html/search/variables_e.html
+share/doc/qore/library/html/search/variables_e.js
+share/doc/qore/library/html/search/variables_f.html
+share/doc/qore/library/html/search/variables_f.js
 share/doc/qore/library/html/slist__include_8h_source.html
 share/doc/qore/library/html/splitbar.png
+share/doc/qore/library/html/struct_qore_call_stack-members.html
+share/doc/qore/library/html/struct_qore_call_stack.html
+share/doc/qore/library/html/struct_qore_call_stack_element-members.html
+share/doc/qore/library/html/struct_qore_call_stack_element.html
+share/doc/qore/library/html/struct_qore_call_stack_element__coll__graph.map
+share/doc/qore/library/html/struct_qore_call_stack_element__coll__graph.md5
+share/doc/qore/library/html/struct_qore_call_stack_element__coll__graph.png
+share/doc/qore/library/html/struct_qore_call_stack_element__inherit__graph.map
+share/doc/qore/library/html/struct_qore_call_stack_element__inherit__graph.md5
+share/doc/qore/library/html/struct_qore_call_stack_element__inherit__graph.png
+share/doc/qore/library/html/struct_qore_source_location-members.html
+share/doc/qore/library/html/struct_qore_source_location.html
+share/doc/qore/library/html/struct_qore_source_location__inherit__graph.map
+share/doc/qore/library/html/struct_qore_source_location__inherit__graph.md5
+share/doc/qore/library/html/struct_qore_source_location__inherit__graph.png
+share/doc/qore/library/html/struct_qore_value-members.html
+share/doc/qore/library/html/struct_qore_value.html
+share/doc/qore/library/html/struct_qore_value__coll__graph.map
+share/doc/qore/library/html/struct_qore_value__coll__graph.md5
+share/doc/qore/library/html/struct_qore_value__coll__graph.png
 share/doc/qore/library/html/structdetail_1_1_qore_value_cast_helper-members.html
 share/doc/qore/library/html/structdetail_1_1_qore_value_cast_helper.html
 share/doc/qore/library/html/structdetail_1_1_qore_value_cast_helper_3_01bool_01_4-members.html
@@ -2803,6 +3026,11 @@ share/doc/qore/library/html/unionqore__i
 share/doc/qore/library/html/unionqore__i4__u.html
 share/doc/qore/library/html/unionqore__i8__u-members.html
 share/doc/qore/library/html/unionqore__i8__u.html
+share/doc/qore/library/html/unionqore__value__u-members.html
+share/doc/qore/library/html/unionqore__value__u.html
+share/doc/qore/library/html/unionqore__value__u__coll__graph.map
+share/doc/qore/library/html/unionqore__value__u__coll__graph.md5
+share/doc/qore/library/html/unionqore__value__u__coll__graph.png
 share/doc/qore/license/COPYING.GPL
 share/doc/qore/license/COPYING.LGPL
 share/doc/qore/license/COPYING.MIT
@@ -2810,8 +3038,6 @@ share/doc/qore/license/README-LICENSE
 share/doc/qore/modules/BulkSqlUtil/html/_bulk_sql_util_8qm_8dox_8h_source.html
 share/doc/qore/modules/BulkSqlUtil/html/annotated.html
 share/doc/qore/modules/BulkSqlUtil/html/annotated_dup.js
-share/doc/qore/modules/BulkSqlUtil/html/arrowdown.png
-share/doc/qore/modules/BulkSqlUtil/html/arrowright.png
 share/doc/qore/modules/BulkSqlUtil/html/bc_s.png
 share/doc/qore/modules/BulkSqlUtil/html/bdwn.png
 share/doc/qore/modules/BulkSqlUtil/html/class_bulk_sql_util_1_1_abstract_bulk_operation-members.html
@@ -2835,13 +3061,7 @@ share/doc/qore/modules/BulkSqlUtil/html/
 share/doc/qore/modules/BulkSqlUtil/html/classes.html
 share/doc/qore/modules/BulkSqlUtil/html/closed.png
 share/doc/qore/modules/BulkSqlUtil/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/BulkSqlUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/BulkSqlUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/BulkSqlUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/BulkSqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/BulkSqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/BulkSqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/BulkSqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/BulkSqlUtil/html/doc.png
 share/doc/qore/modules/BulkSqlUtil/html/doxygen.css
 share/doc/qore/modules/BulkSqlUtil/html/doxygen.png
@@ -2863,6 +3083,8 @@ share/doc/qore/modules/BulkSqlUtil/html/
 share/doc/qore/modules/BulkSqlUtil/html/inherit_graph_0.png
 share/doc/qore/modules/BulkSqlUtil/html/inherits.html
 share/doc/qore/modules/BulkSqlUtil/html/jquery.js
+share/doc/qore/modules/BulkSqlUtil/html/menu.js
+share/doc/qore/modules/BulkSqlUtil/html/menudata.js
 share/doc/qore/modules/BulkSqlUtil/html/namespace_bulk_sql_util.html
 share/doc/qore/modules/BulkSqlUtil/html/namespace_bulk_sql_util.js
 share/doc/qore/modules/BulkSqlUtil/html/namespaces.html
@@ -3073,6 +3295,12 @@ share/doc/qore/modules/BulkSqlUtil/html/
 share/doc/qore/modules/BulkSqlUtil/html/search/namespaces_5.js
 share/doc/qore/modules/BulkSqlUtil/html/search/namespaces_6.html
 share/doc/qore/modules/BulkSqlUtil/html/search/namespaces_6.js
+share/doc/qore/modules/BulkSqlUtil/html/search/namespaces_7.html
+share/doc/qore/modules/BulkSqlUtil/html/search/namespaces_7.js
+share/doc/qore/modules/BulkSqlUtil/html/search/namespaces_8.html
+share/doc/qore/modules/BulkSqlUtil/html/search/namespaces_8.js
+share/doc/qore/modules/BulkSqlUtil/html/search/namespaces_9.html
+share/doc/qore/modules/BulkSqlUtil/html/search/namespaces_9.js
 share/doc/qore/modules/BulkSqlUtil/html/search/nomatches.html
 share/doc/qore/modules/BulkSqlUtil/html/search/pages_0.html
 share/doc/qore/modules/BulkSqlUtil/html/search/pages_0.js
@@ -3175,8 +3403,6 @@ share/doc/qore/modules/BulkSqlUtil/html/
 share/doc/qore/modules/CsvUtil/html/_csv_util_8qm_8dox_8h_source.html
 share/doc/qore/modules/CsvUtil/html/annotated.html
 share/doc/qore/modules/CsvUtil/html/annotated_dup.js
-share/doc/qore/modules/CsvUtil/html/arrowdown.png
-share/doc/qore/modules/CsvUtil/html/arrowright.png
 share/doc/qore/modules/CsvUtil/html/bc_s.png
 share/doc/qore/modules/CsvUtil/html/bdwn.png
 share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_abstract_csv_iterator-members.html
@@ -3209,22 +3435,28 @@ share/doc/qore/modules/CsvUtil/html/clas
 share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_file_writer__inherit__graph.map
 share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_file_writer__inherit__graph.md5
 share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_file_writer__inherit__graph.png
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_iterator-members.html
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_iterator.html
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_iterator.js
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_iterator__inherit__graph.map
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_iterator__inherit__graph.md5
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_iterator__inherit__graph.png
 share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_string_writer-members.html
 share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_string_writer.html
 share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_string_writer.js
 share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_string_writer__inherit__graph.map
 share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_string_writer__inherit__graph.md5
 share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_string_writer__inherit__graph.png
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_writer-members.html
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_writer.html
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_writer.js
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_writer__inherit__graph.map
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_writer__inherit__graph.md5
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_writer__inherit__graph.png
 share/doc/qore/modules/CsvUtil/html/classes.html
 share/doc/qore/modules/CsvUtil/html/closed.png
 share/doc/qore/modules/CsvUtil/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/CsvUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/CsvUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/CsvUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/CsvUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/CsvUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/CsvUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/CsvUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/CsvUtil/html/doc.png
 share/doc/qore/modules/CsvUtil/html/doxygen.css
 share/doc/qore/modules/CsvUtil/html/doxygen.png
@@ -3249,6 +3481,8 @@ share/doc/qore/modules/CsvUtil/html/inhe
 share/doc/qore/modules/CsvUtil/html/inherit_graph_1.png
 share/doc/qore/modules/CsvUtil/html/inherits.html
 share/doc/qore/modules/CsvUtil/html/jquery.js
+share/doc/qore/modules/CsvUtil/html/menu.js
+share/doc/qore/modules/CsvUtil/html/menudata.js
 share/doc/qore/modules/CsvUtil/html/namespace_csv_util.html
 share/doc/qore/modules/CsvUtil/html/namespace_csv_util.js
 share/doc/qore/modules/CsvUtil/html/namespacemembers.html
@@ -3459,6 +3693,12 @@ share/doc/qore/modules/CsvUtil/html/sear
 share/doc/qore/modules/CsvUtil/html/search/namespaces_5.js
 share/doc/qore/modules/CsvUtil/html/search/namespaces_6.html
 share/doc/qore/modules/CsvUtil/html/search/namespaces_6.js
+share/doc/qore/modules/CsvUtil/html/search/namespaces_7.html
+share/doc/qore/modules/CsvUtil/html/search/namespaces_7.js
+share/doc/qore/modules/CsvUtil/html/search/namespaces_8.html
+share/doc/qore/modules/CsvUtil/html/search/namespaces_8.js
+share/doc/qore/modules/CsvUtil/html/search/namespaces_9.html
+share/doc/qore/modules/CsvUtil/html/search/namespaces_9.js
 share/doc/qore/modules/CsvUtil/html/search/nomatches.html
 share/doc/qore/modules/CsvUtil/html/search/pages_0.html
 share/doc/qore/modules/CsvUtil/html/search/pages_0.js
@@ -3559,19 +3799,11 @@ share/doc/qore/modules/CsvUtil/html/tab_
 share/doc/qore/modules/CsvUtil/html/tab_s.png
 share/doc/qore/modules/CsvUtil/html/tabs.css
 share/doc/qore/modules/Diff/html/_diff_8qm_8dox_8h_source.html
-share/doc/qore/modules/Diff/html/arrowdown.png
-share/doc/qore/modules/Diff/html/arrowright.png
 share/doc/qore/modules/Diff/html/bc_s.png
 share/doc/qore/modules/Diff/html/bdwn.png
 share/doc/qore/modules/Diff/html/closed.png
 share/doc/qore/modules/Diff/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/Diff/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/Diff/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/Diff/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/Diff/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/Diff/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/Diff/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/Diff/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/Diff/html/doc.png
 share/doc/qore/modules/Diff/html/doxygen.css
 share/doc/qore/modules/Diff/html/doxygen.png
@@ -3584,6 +3816,8 @@ share/doc/qore/modules/Diff/html/graph_l
 share/doc/qore/modules/Diff/html/index.html
 share/doc/qore/modules/Diff/html/index.qhp
 share/doc/qore/modules/Diff/html/jquery.js
+share/doc/qore/modules/Diff/html/menu.js
+share/doc/qore/modules/Diff/html/menudata.js
 share/doc/qore/modules/Diff/html/namespace_diff.html
 share/doc/qore/modules/Diff/html/namespacemembers.html
 share/doc/qore/modules/Diff/html/namespacemembers_func.html
@@ -3793,6 +4027,10 @@ share/doc/qore/modules/Diff/html/search/
 share/doc/qore/modules/Diff/html/search/namespaces_5.js
 share/doc/qore/modules/Diff/html/search/namespaces_6.html
 share/doc/qore/modules/Diff/html/search/namespaces_6.js
+share/doc/qore/modules/Diff/html/search/namespaces_7.html
+share/doc/qore/modules/Diff/html/search/namespaces_7.js
+share/doc/qore/modules/Diff/html/search/namespaces_8.html
+share/doc/qore/modules/Diff/html/search/namespaces_8.js
 share/doc/qore/modules/Diff/html/search/nomatches.html
 share/doc/qore/modules/Diff/html/search/pages_0.html
 share/doc/qore/modules/Diff/html/search/pages_0.js
@@ -3895,8 +4133,6 @@ share/doc/qore/modules/Diff/html/tabs.cs
 share/doc/qore/modules/FilePoller/html/_file_poller_8qm_8dox_8h_source.html
 share/doc/qore/modules/FilePoller/html/annotated.html
 share/doc/qore/modules/FilePoller/html/annotated_dup.js
-share/doc/qore/modules/FilePoller/html/arrowdown.png
-share/doc/qore/modules/FilePoller/html/arrowright.png
 share/doc/qore/modules/FilePoller/html/bc_s.png
 share/doc/qore/modules/FilePoller/html/bdwn.png
 share/doc/qore/modules/FilePoller/html/class_file_poller_1_1_file_poller-members.html
@@ -3905,13 +4141,7 @@ share/doc/qore/modules/FilePoller/html/c
 share/doc/qore/modules/FilePoller/html/classes.html
 share/doc/qore/modules/FilePoller/html/closed.png
 share/doc/qore/modules/FilePoller/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/FilePoller/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/FilePoller/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/FilePoller/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/FilePoller/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/FilePoller/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/FilePoller/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/FilePoller/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/FilePoller/html/doc.png
 share/doc/qore/modules/FilePoller/html/doxygen.css
 share/doc/qore/modules/FilePoller/html/doxygen.png
@@ -3927,6 +4157,8 @@ share/doc/qore/modules/FilePoller/html/g
 share/doc/qore/modules/FilePoller/html/index.html
 share/doc/qore/modules/FilePoller/html/index.qhp
 share/doc/qore/modules/FilePoller/html/jquery.js
+share/doc/qore/modules/FilePoller/html/menu.js
+share/doc/qore/modules/FilePoller/html/menudata.js
 share/doc/qore/modules/FilePoller/html/namespace_file_poller.html
 share/doc/qore/modules/FilePoller/html/namespace_file_poller.js
 share/doc/qore/modules/FilePoller/html/namespaces.html
@@ -4135,6 +4367,12 @@ share/doc/qore/modules/FilePoller/html/s
 share/doc/qore/modules/FilePoller/html/search/namespaces_5.js
 share/doc/qore/modules/FilePoller/html/search/namespaces_6.html
 share/doc/qore/modules/FilePoller/html/search/namespaces_6.js
+share/doc/qore/modules/FilePoller/html/search/namespaces_7.html
+share/doc/qore/modules/FilePoller/html/search/namespaces_7.js
+share/doc/qore/modules/FilePoller/html/search/namespaces_8.html
+share/doc/qore/modules/FilePoller/html/search/namespaces_8.js
+share/doc/qore/modules/FilePoller/html/search/namespaces_9.html
+share/doc/qore/modules/FilePoller/html/search/namespaces_9.js
 share/doc/qore/modules/FilePoller/html/search/nomatches.html
 share/doc/qore/modules/FilePoller/html/search/pages_0.html
 share/doc/qore/modules/FilePoller/html/search/pages_0.js
@@ -4237,8 +4475,6 @@ share/doc/qore/modules/FilePoller/html/t
 share/doc/qore/modules/FixedLengthUtil/html/_fixed_length_util_8qm_8dox_8h_source.html
 share/doc/qore/modules/FixedLengthUtil/html/annotated.html
 share/doc/qore/modules/FixedLengthUtil/html/annotated_dup.js
-share/doc/qore/modules/FixedLengthUtil/html/arrowdown.png
-share/doc/qore/modules/FixedLengthUtil/html/arrowright.png
 share/doc/qore/modules/FixedLengthUtil/html/bc_s.png
 share/doc/qore/modules/FixedLengthUtil/html/bdwn.png
 share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_abstract_iterator-members.html
@@ -4277,16 +4513,22 @@ share/doc/qore/modules/FixedLengthUtil/h
 share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_file_writer__inherit__graph.map
 share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_file_writer__inherit__graph.md5
 share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_file_writer__inherit__graph.png
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_iterator-members.html
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_iterator.html
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_iterator.js
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_iterator__inherit__graph.map
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_iterator__inherit__graph.md5
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_iterator__inherit__graph.png
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_writer-members.html
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_writer.html
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_writer.js
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_writer__inherit__graph.map
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_writer__inherit__graph.md5
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_writer__inherit__graph.png
 share/doc/qore/modules/FixedLengthUtil/html/classes.html
 share/doc/qore/modules/FixedLengthUtil/html/closed.png
 share/doc/qore/modules/FixedLengthUtil/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/FixedLengthUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/FixedLengthUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/FixedLengthUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/FixedLengthUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/FixedLengthUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/FixedLengthUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/FixedLengthUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/FixedLengthUtil/html/doc.png
 share/doc/qore/modules/FixedLengthUtil/html/doxygen.css
 share/doc/qore/modules/FixedLengthUtil/html/doxygen.png
@@ -4311,6 +4553,8 @@ share/doc/qore/modules/FixedLengthUtil/h
 share/doc/qore/modules/FixedLengthUtil/html/inherit_graph_1.png
 share/doc/qore/modules/FixedLengthUtil/html/inherits.html
 share/doc/qore/modules/FixedLengthUtil/html/jquery.js
+share/doc/qore/modules/FixedLengthUtil/html/menu.js
+share/doc/qore/modules/FixedLengthUtil/html/menudata.js
 share/doc/qore/modules/FixedLengthUtil/html/namespace_fixed_length_util.html
 share/doc/qore/modules/FixedLengthUtil/html/namespace_fixed_length_util.js
 share/doc/qore/modules/FixedLengthUtil/html/namespacemembers.html
@@ -4521,6 +4765,12 @@ share/doc/qore/modules/FixedLengthUtil/h
 share/doc/qore/modules/FixedLengthUtil/html/search/namespaces_5.js
 share/doc/qore/modules/FixedLengthUtil/html/search/namespaces_6.html
 share/doc/qore/modules/FixedLengthUtil/html/search/namespaces_6.js
+share/doc/qore/modules/FixedLengthUtil/html/search/namespaces_7.html
+share/doc/qore/modules/FixedLengthUtil/html/search/namespaces_7.js
+share/doc/qore/modules/FixedLengthUtil/html/search/namespaces_8.html
+share/doc/qore/modules/FixedLengthUtil/html/search/namespaces_8.js
+share/doc/qore/modules/FixedLengthUtil/html/search/namespaces_9.html
+share/doc/qore/modules/FixedLengthUtil/html/search/namespaces_9.js
 share/doc/qore/modules/FixedLengthUtil/html/search/nomatches.html
 share/doc/qore/modules/FixedLengthUtil/html/search/pages_0.html
 share/doc/qore/modules/FixedLengthUtil/html/search/pages_0.js
@@ -4623,8 +4873,6 @@ share/doc/qore/modules/FixedLengthUtil/h
 share/doc/qore/modules/FreetdsSqlUtil/html/_freetds_sql_util_8qm_8dox_8h_source.html
 share/doc/qore/modules/FreetdsSqlUtil/html/annotated.html
 share/doc/qore/modules/FreetdsSqlUtil/html/annotated_dup.js
-share/doc/qore/modules/FreetdsSqlUtil/html/arrowdown.png
-share/doc/qore/modules/FreetdsSqlUtil/html/arrowright.png
 share/doc/qore/modules/FreetdsSqlUtil/html/bc_s.png
 share/doc/qore/modules/FreetdsSqlUtil/html/bdwn.png
 share/doc/qore/modules/FreetdsSqlUtil/html/class_freetds_sql_util_1_1_freetds_check_constraint-members.html
@@ -4714,13 +4962,7 @@ share/doc/qore/modules/FreetdsSqlUtil/ht
 share/doc/qore/modules/FreetdsSqlUtil/html/classes.html
 share/doc/qore/modules/FreetdsSqlUtil/html/closed.png
 share/doc/qore/modules/FreetdsSqlUtil/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/FreetdsSqlUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/FreetdsSqlUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/FreetdsSqlUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/FreetdsSqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/FreetdsSqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/FreetdsSqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/FreetdsSqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/FreetdsSqlUtil/html/doc.png
 share/doc/qore/modules/FreetdsSqlUtil/html/doxygen.css
 share/doc/qore/modules/FreetdsSqlUtil/html/doxygen.png
@@ -4760,6 +5002,8 @@ share/doc/qore/modules/FreetdsSqlUtil/ht
 share/doc/qore/modules/FreetdsSqlUtil/html/inherit_graph_6.png
 share/doc/qore/modules/FreetdsSqlUtil/html/inherits.html
 share/doc/qore/modules/FreetdsSqlUtil/html/jquery.js
+share/doc/qore/modules/FreetdsSqlUtil/html/menu.js
+share/doc/qore/modules/FreetdsSqlUtil/html/menudata.js
 share/doc/qore/modules/FreetdsSqlUtil/html/namespace_freetds_sql_util.html
 share/doc/qore/modules/FreetdsSqlUtil/html/namespace_freetds_sql_util.js
 share/doc/qore/modules/FreetdsSqlUtil/html/namespacemembers.html
@@ -4970,6 +5214,12 @@ share/doc/qore/modules/FreetdsSqlUtil/ht
 share/doc/qore/modules/FreetdsSqlUtil/html/search/namespaces_5.js
 share/doc/qore/modules/FreetdsSqlUtil/html/search/namespaces_6.html
 share/doc/qore/modules/FreetdsSqlUtil/html/search/namespaces_6.js
+share/doc/qore/modules/FreetdsSqlUtil/html/search/namespaces_7.html
+share/doc/qore/modules/FreetdsSqlUtil/html/search/namespaces_7.js
+share/doc/qore/modules/FreetdsSqlUtil/html/search/namespaces_8.html
+share/doc/qore/modules/FreetdsSqlUtil/html/search/namespaces_8.js
+share/doc/qore/modules/FreetdsSqlUtil/html/search/namespaces_9.html
+share/doc/qore/modules/FreetdsSqlUtil/html/search/namespaces_9.js
 share/doc/qore/modules/FreetdsSqlUtil/html/search/nomatches.html
 share/doc/qore/modules/FreetdsSqlUtil/html/search/pages_0.html
 share/doc/qore/modules/FreetdsSqlUtil/html/search/pages_0.js
@@ -5072,8 +5322,6 @@ share/doc/qore/modules/FreetdsSqlUtil/ht
 share/doc/qore/modules/HttpServer/html/_http_server_8qm_8dox_8h_source.html
 share/doc/qore/modules/HttpServer/html/annotated.html
 share/doc/qore/modules/HttpServer/html/annotated_dup.js
-share/doc/qore/modules/HttpServer/html/arrowdown.png
-share/doc/qore/modules/HttpServer/html/arrowright.png
 share/doc/qore/modules/HttpServer/html/bc_s.png
 share/doc/qore/modules/HttpServer/html/bdwn.png
 share/doc/qore/modules/HttpServer/html/class_http_server_1_1_http_listener-members.html
@@ -5090,13 +5338,7 @@ share/doc/qore/modules/HttpServer/html/c
 share/doc/qore/modules/HttpServer/html/classes.html
 share/doc/qore/modules/HttpServer/html/closed.png
 share/doc/qore/modules/HttpServer/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/HttpServer/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/HttpServer/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/HttpServer/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/HttpServer/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/HttpServer/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/HttpServer/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/HttpServer/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/HttpServer/html/doc.png
 share/doc/qore/modules/HttpServer/html/doxygen.css
 share/doc/qore/modules/HttpServer/html/doxygen.png
@@ -5109,6 +5351,7 @@ share/doc/qore/modules/HttpServer/html/f
 share/doc/qore/modules/HttpServer/html/graph_legend.html
 share/doc/qore/modules/HttpServer/html/graph_legend.md5
 share/doc/qore/modules/HttpServer/html/graph_legend.png
+share/doc/qore/modules/HttpServer/html/group___buffered_stream_reader.js
 share/doc/qore/modules/HttpServer/html/group___http_server_logging_options.js
 share/doc/qore/modules/HttpServer/html/group___listener_log_options.html
 share/doc/qore/modules/HttpServer/html/group___listener_log_options.js
@@ -5121,16 +5364,21 @@ share/doc/qore/modules/HttpServer/html/g
 share/doc/qore/modules/HttpServer/html/group___string_concat_decoding.js
 share/doc/qore/modules/HttpServer/html/group___string_concat_encoding.js
 share/doc/qore/modules/HttpServer/html/group__boolean__constants.js
+share/doc/qore/modules/HttpServer/html/group__breakpoint__policy__options.js
 share/doc/qore/modules/HttpServer/html/group__call__type__constants.js
 share/doc/qore/modules/HttpServer/html/group__compression__constants.js
+share/doc/qore/modules/HttpServer/html/group__compression__transformations.js
 share/doc/qore/modules/HttpServer/html/group__compresssion__functions.js
 share/doc/qore/modules/HttpServer/html/group__context__functions.js
+share/doc/qore/modules/HttpServer/html/group__crypto__transformations.js
 share/doc/qore/modules/HttpServer/html/group__cryptographic__constants.js
 share/doc/qore/modules/HttpServer/html/group__cryptographic__functions.js
 share/doc/qore/modules/HttpServer/html/group__database__driver__constants.js
 share/doc/qore/modules/HttpServer/html/group__date__and__time__functions.js
 share/doc/qore/modules/HttpServer/html/group__dbi__capabilities.js
 share/doc/qore/modules/HttpServer/html/group__dbi__functions.js
+share/doc/qore/modules/HttpServer/html/group__debug__rc__options.js
+share/doc/qore/modules/HttpServer/html/group__debug__step__options.js
 share/doc/qore/modules/HttpServer/html/group__digest__functions.js
 share/doc/qore/modules/HttpServer/html/group__env__functions.js
 share/doc/qore/modules/HttpServer/html/group__error__constants.js
@@ -5191,18 +5439,16 @@ share/doc/qore/modules/HttpServer/html/i
 share/doc/qore/modules/HttpServer/html/inherit_graph_0.map
 share/doc/qore/modules/HttpServer/html/inherit_graph_0.md5
 share/doc/qore/modules/HttpServer/html/inherit_graph_0.png
-share/doc/qore/modules/HttpServer/html/inherit_graph_1.map
-share/doc/qore/modules/HttpServer/html/inherit_graph_1.md5
-share/doc/qore/modules/HttpServer/html/inherit_graph_1.png
 share/doc/qore/modules/HttpServer/html/inherits.html
 share/doc/qore/modules/HttpServer/html/jquery.js
+share/doc/qore/modules/HttpServer/html/menu.js
+share/doc/qore/modules/HttpServer/html/menudata.js
 share/doc/qore/modules/HttpServer/html/modules.html
 share/doc/qore/modules/HttpServer/html/modules.js
 share/doc/qore/modules/HttpServer/html/namespace_http_server.html
 share/doc/qore/modules/HttpServer/html/namespace_http_server.js
 share/doc/qore/modules/HttpServer/html/namespacemembers.html
 share/doc/qore/modules/HttpServer/html/namespacemembers_func.html
-share/doc/qore/modules/HttpServer/html/namespacemembers_vars.html
 share/doc/qore/modules/HttpServer/html/namespaces.html
 share/doc/qore/modules/HttpServer/html/namespaces.js
 share/doc/qore/modules/HttpServer/html/nav_f.png
@@ -5217,6 +5463,7 @@ share/doc/qore/modules/HttpServer/html/n
 share/doc/qore/modules/HttpServer/html/navtreeindex3.js
 share/doc/qore/modules/HttpServer/html/navtreeindex4.js
 share/doc/qore/modules/HttpServer/html/navtreeindex5.js
+share/doc/qore/modules/HttpServer/html/navtreeindex6.js
 share/doc/qore/modules/HttpServer/html/open.png
 share/doc/qore/modules/HttpServer/html/pages.html
 share/doc/qore/modules/HttpServer/html/resize.js
@@ -5406,6 +5653,10 @@ share/doc/qore/modules/HttpServer/html/s
 share/doc/qore/modules/HttpServer/html/search/namespaces_2.js
 share/doc/qore/modules/HttpServer/html/search/namespaces_3.html
 share/doc/qore/modules/HttpServer/html/search/namespaces_3.js
+share/doc/qore/modules/HttpServer/html/search/namespaces_4.html
+share/doc/qore/modules/HttpServer/html/search/namespaces_4.js
+share/doc/qore/modules/HttpServer/html/search/namespaces_5.html
+share/doc/qore/modules/HttpServer/html/search/namespaces_5.js
 share/doc/qore/modules/HttpServer/html/search/nomatches.html
 share/doc/qore/modules/HttpServer/html/search/pages_0.html
 share/doc/qore/modules/HttpServer/html/search/pages_0.js
@@ -5506,8 +5757,6 @@ share/doc/qore/modules/HttpServer/html/t
 share/doc/qore/modules/HttpServerUtil/html/_http_server_util_8qm_8dox_8h_source.html
 share/doc/qore/modules/HttpServerUtil/html/annotated.html
 share/doc/qore/modules/HttpServerUtil/html/annotated_dup.js
-share/doc/qore/modules/HttpServerUtil/html/arrowdown.png
-share/doc/qore/modules/HttpServerUtil/html/arrowright.png
 share/doc/qore/modules/HttpServerUtil/html/bc_s.png
 share/doc/qore/modules/HttpServerUtil/html/bdwn.png
 share/doc/qore/modules/HttpServerUtil/html/class_http_server_1_1_abstract_authenticator-members.html
@@ -5558,13 +5807,7 @@ share/doc/qore/modules/HttpServerUtil/ht
 share/doc/qore/modules/HttpServerUtil/html/classes.html
 share/doc/qore/modules/HttpServerUtil/html/closed.png
 share/doc/qore/modules/HttpServerUtil/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/HttpServerUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/HttpServerUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/HttpServerUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/HttpServerUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/HttpServerUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/HttpServerUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/HttpServerUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/HttpServerUtil/html/doc.png
 share/doc/qore/modules/HttpServerUtil/html/doxygen.css
 share/doc/qore/modules/HttpServerUtil/html/doxygen.png
@@ -5577,6 +5820,7 @@ share/doc/qore/modules/HttpServerUtil/ht
 share/doc/qore/modules/HttpServerUtil/html/graph_legend.html
 share/doc/qore/modules/HttpServerUtil/html/graph_legend.md5
 share/doc/qore/modules/HttpServerUtil/html/graph_legend.png
+share/doc/qore/modules/HttpServerUtil/html/group___buffered_stream_reader.js
 share/doc/qore/modules/HttpServerUtil/html/group___http_server_logging_options.html
 share/doc/qore/modules/HttpServerUtil/html/group___http_server_logging_options.js
 share/doc/qore/modules/HttpServerUtil/html/group___mime_content_transfer_encoding_constants.js
@@ -5588,16 +5832,21 @@ share/doc/qore/modules/HttpServerUtil/ht
 share/doc/qore/modules/HttpServerUtil/html/group___string_concat_decoding.js
 share/doc/qore/modules/HttpServerUtil/html/group___string_concat_encoding.js
 share/doc/qore/modules/HttpServerUtil/html/group__boolean__constants.js
+share/doc/qore/modules/HttpServerUtil/html/group__breakpoint__policy__options.js
 share/doc/qore/modules/HttpServerUtil/html/group__call__type__constants.js
 share/doc/qore/modules/HttpServerUtil/html/group__compression__constants.js
+share/doc/qore/modules/HttpServerUtil/html/group__compression__transformations.js
 share/doc/qore/modules/HttpServerUtil/html/group__compresssion__functions.js
 share/doc/qore/modules/HttpServerUtil/html/group__context__functions.js
+share/doc/qore/modules/HttpServerUtil/html/group__crypto__transformations.js
 share/doc/qore/modules/HttpServerUtil/html/group__cryptographic__constants.js
 share/doc/qore/modules/HttpServerUtil/html/group__cryptographic__functions.js
 share/doc/qore/modules/HttpServerUtil/html/group__database__driver__constants.js
 share/doc/qore/modules/HttpServerUtil/html/group__date__and__time__functions.js
 share/doc/qore/modules/HttpServerUtil/html/group__dbi__capabilities.js
 share/doc/qore/modules/HttpServerUtil/html/group__dbi__functions.js
+share/doc/qore/modules/HttpServerUtil/html/group__debug__rc__options.js
+share/doc/qore/modules/HttpServerUtil/html/group__debug__step__options.js
 share/doc/qore/modules/HttpServerUtil/html/group__digest__functions.js
 share/doc/qore/modules/HttpServerUtil/html/group__env__functions.js
 share/doc/qore/modules/HttpServerUtil/html/group__error__constants.js
@@ -5669,6 +5918,8 @@ share/doc/qore/modules/HttpServerUtil/ht
 share/doc/qore/modules/HttpServerUtil/html/inherit_graph_3.png
 share/doc/qore/modules/HttpServerUtil/html/inherits.html
 share/doc/qore/modules/HttpServerUtil/html/jquery.js
+share/doc/qore/modules/HttpServerUtil/html/menu.js
+share/doc/qore/modules/HttpServerUtil/html/menudata.js
 share/doc/qore/modules/HttpServerUtil/html/modules.html
 share/doc/qore/modules/HttpServerUtil/html/modules.js
 share/doc/qore/modules/HttpServerUtil/html/namespace_http_server.html
@@ -5690,6 +5941,7 @@ share/doc/qore/modules/HttpServerUtil/ht
 share/doc/qore/modules/HttpServerUtil/html/navtreeindex3.js
 share/doc/qore/modules/HttpServerUtil/html/navtreeindex4.js
 share/doc/qore/modules/HttpServerUtil/html/navtreeindex5.js
+share/doc/qore/modules/HttpServerUtil/html/navtreeindex6.js
 share/doc/qore/modules/HttpServerUtil/html/open.png
 share/doc/qore/modules/HttpServerUtil/html/pages.html
 share/doc/qore/modules/HttpServerUtil/html/resize.js
@@ -5879,6 +6131,10 @@ share/doc/qore/modules/HttpServerUtil/ht
 share/doc/qore/modules/HttpServerUtil/html/search/namespaces_2.js
 share/doc/qore/modules/HttpServerUtil/html/search/namespaces_3.html
 share/doc/qore/modules/HttpServerUtil/html/search/namespaces_3.js
+share/doc/qore/modules/HttpServerUtil/html/search/namespaces_4.html
+share/doc/qore/modules/HttpServerUtil/html/search/namespaces_4.js
+share/doc/qore/modules/HttpServerUtil/html/search/namespaces_5.html
+share/doc/qore/modules/HttpServerUtil/html/search/namespaces_5.js
 share/doc/qore/modules/HttpServerUtil/html/search/nomatches.html
 share/doc/qore/modules/HttpServerUtil/html/search/pages_0.html
 share/doc/qore/modules/HttpServerUtil/html/search/pages_0.js
@@ -5979,8 +6235,6 @@ share/doc/qore/modules/HttpServerUtil/ht
 share/doc/qore/modules/MailMessage/html/_mail_message_8qm_8dox_8h_source.html
 share/doc/qore/modules/MailMessage/html/annotated.html
 share/doc/qore/modules/MailMessage/html/annotated_dup.js
-share/doc/qore/modules/MailMessage/html/arrowdown.png
-share/doc/qore/modules/MailMessage/html/arrowright.png
 share/doc/qore/modules/MailMessage/html/bc_s.png
 share/doc/qore/modules/MailMessage/html/bdwn.png
 share/doc/qore/modules/MailMessage/html/class_mail_message_1_1_attachment-members.html
@@ -6001,13 +6255,7 @@ share/doc/qore/modules/MailMessage/html/
 share/doc/qore/modules/MailMessage/html/classes.html
 share/doc/qore/modules/MailMessage/html/closed.png
 share/doc/qore/modules/MailMessage/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/MailMessage/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/MailMessage/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/MailMessage/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/MailMessage/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/MailMessage/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/MailMessage/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/MailMessage/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/MailMessage/html/doc.png
 share/doc/qore/modules/MailMessage/html/doxygen.css
 share/doc/qore/modules/MailMessage/html/doxygen.png
@@ -6020,6 +6268,7 @@ share/doc/qore/modules/MailMessage/html/
 share/doc/qore/modules/MailMessage/html/graph_legend.html
 share/doc/qore/modules/MailMessage/html/graph_legend.md5
 share/doc/qore/modules/MailMessage/html/graph_legend.png
+share/doc/qore/modules/MailMessage/html/group___buffered_stream_reader.js
 share/doc/qore/modules/MailMessage/html/group___message_encodings.html
 share/doc/qore/modules/MailMessage/html/group___message_encodings.js
 share/doc/qore/modules/MailMessage/html/group___mime_content_transfer_encoding_constants.js
@@ -6031,16 +6280,21 @@ share/doc/qore/modules/MailMessage/html/
 share/doc/qore/modules/MailMessage/html/group___string_concat_decoding.js
 share/doc/qore/modules/MailMessage/html/group___string_concat_encoding.js
 share/doc/qore/modules/MailMessage/html/group__boolean__constants.js
+share/doc/qore/modules/MailMessage/html/group__breakpoint__policy__options.js
 share/doc/qore/modules/MailMessage/html/group__call__type__constants.js
 share/doc/qore/modules/MailMessage/html/group__compression__constants.js
+share/doc/qore/modules/MailMessage/html/group__compression__transformations.js
 share/doc/qore/modules/MailMessage/html/group__compresssion__functions.js
 share/doc/qore/modules/MailMessage/html/group__context__functions.js
+share/doc/qore/modules/MailMessage/html/group__crypto__transformations.js
 share/doc/qore/modules/MailMessage/html/group__cryptographic__constants.js
 share/doc/qore/modules/MailMessage/html/group__cryptographic__functions.js
 share/doc/qore/modules/MailMessage/html/group__database__driver__constants.js
 share/doc/qore/modules/MailMessage/html/group__date__and__time__functions.js
 share/doc/qore/modules/MailMessage/html/group__dbi__capabilities.js
 share/doc/qore/modules/MailMessage/html/group__dbi__functions.js
+share/doc/qore/modules/MailMessage/html/group__debug__rc__options.js
+share/doc/qore/modules/MailMessage/html/group__debug__step__options.js
 share/doc/qore/modules/MailMessage/html/group__digest__functions.js
 share/doc/qore/modules/MailMessage/html/group__env__functions.js
 share/doc/qore/modules/MailMessage/html/group__error__constants.js
@@ -6106,6 +6360,8 @@ share/doc/qore/modules/MailMessage/html/
 share/doc/qore/modules/MailMessage/html/inherit_graph_1.png
 share/doc/qore/modules/MailMessage/html/inherits.html
 share/doc/qore/modules/MailMessage/html/jquery.js
+share/doc/qore/modules/MailMessage/html/menu.js
+share/doc/qore/modules/MailMessage/html/menudata.js
 share/doc/qore/modules/MailMessage/html/modules.html
 share/doc/qore/modules/MailMessage/html/modules.js
 share/doc/qore/modules/MailMessage/html/namespace_mail_message.html
@@ -6126,6 +6382,7 @@ share/doc/qore/modules/MailMessage/html/
 share/doc/qore/modules/MailMessage/html/navtreeindex3.js
 share/doc/qore/modules/MailMessage/html/navtreeindex4.js
 share/doc/qore/modules/MailMessage/html/navtreeindex5.js
+share/doc/qore/modules/MailMessage/html/navtreeindex6.js
 share/doc/qore/modules/MailMessage/html/open.png
 share/doc/qore/modules/MailMessage/html/pages.html
 share/doc/qore/modules/MailMessage/html/resize.js
@@ -6311,6 +6568,10 @@ share/doc/qore/modules/MailMessage/html/
 share/doc/qore/modules/MailMessage/html/search/namespaces_0.js
 share/doc/qore/modules/MailMessage/html/search/namespaces_1.html
 share/doc/qore/modules/MailMessage/html/search/namespaces_1.js
+share/doc/qore/modules/MailMessage/html/search/namespaces_2.html
+share/doc/qore/modules/MailMessage/html/search/namespaces_2.js
+share/doc/qore/modules/MailMessage/html/search/namespaces_3.html
+share/doc/qore/modules/MailMessage/html/search/namespaces_3.js
 share/doc/qore/modules/MailMessage/html/search/nomatches.html
 share/doc/qore/modules/MailMessage/html/search/pages_0.html
 share/doc/qore/modules/MailMessage/html/search/pages_0.js
@@ -6368,6 +6629,8 @@ share/doc/qore/modules/MailMessage/html/
 share/doc/qore/modules/MailMessage/html/search/variables_13.js
 share/doc/qore/modules/MailMessage/html/search/variables_14.html
 share/doc/qore/modules/MailMessage/html/search/variables_14.js
+share/doc/qore/modules/MailMessage/html/search/variables_15.html
+share/doc/qore/modules/MailMessage/html/search/variables_15.js
 share/doc/qore/modules/MailMessage/html/search/variables_2.html
 share/doc/qore/modules/MailMessage/html/search/variables_2.js
 share/doc/qore/modules/MailMessage/html/search/variables_3.html
@@ -6406,6 +6669,7 @@ share/doc/qore/modules/MailMessage/html/
 share/doc/qore/modules/MailMessage/html/tabs.css
 share/doc/qore/modules/Mapper/html/_mapper_8qm_8dox_8h_source.html
 share/doc/qore/modules/Mapper/html/annotated.html
+share/doc/qore/modules/Mapper/html/annotated.js
 share/doc/qore/modules/Mapper/html/annotated_dup.js
 share/doc/qore/modules/Mapper/html/arrowdown.png
 share/doc/qore/modules/Mapper/html/arrowright.png
@@ -6428,6 +6692,7 @@ share/doc/qore/modules/Mapper/html/class
 share/doc/qore/modules/Mapper/html/class_mapper_1_1_mapper_iterator__inherit__graph.png
 share/doc/qore/modules/Mapper/html/classes.html
 share/doc/qore/modules/Mapper/html/closed.png
+share/doc/qore/modules/Mapper/html/deprecated.html
 share/doc/qore/modules/Mapper/html/dir_13add0083e006ac756009d5942a24d28.html
 share/doc/qore/modules/Mapper/html/dir_13add0083e006ac756009d5942a24d28_dep.map
 share/doc/qore/modules/Mapper/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
@@ -6460,8 +6725,13 @@ share/doc/qore/modules/Mapper/html/inher
 share/doc/qore/modules/Mapper/html/inherit_graph_1.png
 share/doc/qore/modules/Mapper/html/inherits.html
 share/doc/qore/modules/Mapper/html/jquery.js
+share/doc/qore/modules/Mapper/html/menu.js
+share/doc/qore/modules/Mapper/html/menudata.js
 share/doc/qore/modules/Mapper/html/namespace_mapper.html
 share/doc/qore/modules/Mapper/html/namespace_mapper.js
+share/doc/qore/modules/Mapper/html/namespacemembers.html
+share/doc/qore/modules/Mapper/html/namespacemembers_func.html
+share/doc/qore/modules/Mapper/html/namespacemembers_vars.html
 share/doc/qore/modules/Mapper/html/namespaces.html
 share/doc/qore/modules/Mapper/html/namespaces.js
 share/doc/qore/modules/Mapper/html/nav_f.png
@@ -6656,6 +6926,10 @@ share/doc/qore/modules/Mapper/html/searc
 share/doc/qore/modules/Mapper/html/search/namespaces_0.js
 share/doc/qore/modules/Mapper/html/search/namespaces_1.html
 share/doc/qore/modules/Mapper/html/search/namespaces_1.js
+share/doc/qore/modules/Mapper/html/search/namespaces_2.html
+share/doc/qore/modules/Mapper/html/search/namespaces_2.js
+share/doc/qore/modules/Mapper/html/search/namespaces_3.html
+share/doc/qore/modules/Mapper/html/search/namespaces_3.js
 share/doc/qore/modules/Mapper/html/search/nomatches.html
 share/doc/qore/modules/Mapper/html/search/pages_0.html
 share/doc/qore/modules/Mapper/html/search/pages_0.js
@@ -6752,8 +7026,6 @@ share/doc/qore/modules/Mapper/html/tabs.
 share/doc/qore/modules/Mime/html/_mime_8qm_8dox_8h_source.html
 share/doc/qore/modules/Mime/html/annotated.html
 share/doc/qore/modules/Mime/html/annotated_dup.js
-share/doc/qore/modules/Mime/html/arrowdown.png
-share/doc/qore/modules/Mime/html/arrowright.png
 share/doc/qore/modules/Mime/html/bc_s.png
 share/doc/qore/modules/Mime/html/bdwn.png
 share/doc/qore/modules/Mime/html/class_mime_1_1_multi_part_message-members.html
@@ -6777,13 +7049,7 @@ share/doc/qore/modules/Mime/html/class_m
 share/doc/qore/modules/Mime/html/classes.html
 share/doc/qore/modules/Mime/html/closed.png
 share/doc/qore/modules/Mime/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/Mime/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/Mime/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/Mime/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/Mime/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/Mime/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/Mime/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/Mime/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/Mime/html/doc.png
 share/doc/qore/modules/Mime/html/doxygen.css
 share/doc/qore/modules/Mime/html/doxygen.png
@@ -6795,6 +7061,7 @@ share/doc/qore/modules/Mime/html/functio
 share/doc/qore/modules/Mime/html/graph_legend.html
 share/doc/qore/modules/Mime/html/graph_legend.md5
 share/doc/qore/modules/Mime/html/graph_legend.png
+share/doc/qore/modules/Mime/html/group___buffered_stream_reader.js
 share/doc/qore/modules/Mime/html/group___mime_content_transfer_encoding_constants.html
 share/doc/qore/modules/Mime/html/group___mime_content_transfer_encoding_constants.js
 share/doc/qore/modules/Mime/html/group___mime_decoding_functions.html
@@ -6810,16 +7077,21 @@ share/doc/qore/modules/Mime/html/group__
 share/doc/qore/modules/Mime/html/group___string_concat_decoding.js
 share/doc/qore/modules/Mime/html/group___string_concat_encoding.js
 share/doc/qore/modules/Mime/html/group__boolean__constants.js
+share/doc/qore/modules/Mime/html/group__breakpoint__policy__options.js
 share/doc/qore/modules/Mime/html/group__call__type__constants.js
 share/doc/qore/modules/Mime/html/group__compression__constants.js
+share/doc/qore/modules/Mime/html/group__compression__transformations.js
 share/doc/qore/modules/Mime/html/group__compresssion__functions.js
 share/doc/qore/modules/Mime/html/group__context__functions.js
+share/doc/qore/modules/Mime/html/group__crypto__transformations.js
 share/doc/qore/modules/Mime/html/group__cryptographic__constants.js
 share/doc/qore/modules/Mime/html/group__cryptographic__functions.js
 share/doc/qore/modules/Mime/html/group__database__driver__constants.js
 share/doc/qore/modules/Mime/html/group__date__and__time__functions.js
 share/doc/qore/modules/Mime/html/group__dbi__capabilities.js
 share/doc/qore/modules/Mime/html/group__dbi__functions.js
+share/doc/qore/modules/Mime/html/group__debug__rc__options.js
+share/doc/qore/modules/Mime/html/group__debug__step__options.js
 share/doc/qore/modules/Mime/html/group__digest__functions.js
 share/doc/qore/modules/Mime/html/group__env__functions.js
 share/doc/qore/modules/Mime/html/group__error__constants.js
@@ -6882,6 +7154,8 @@ share/doc/qore/modules/Mime/html/inherit
 share/doc/qore/modules/Mime/html/inherit_graph_0.png
 share/doc/qore/modules/Mime/html/inherits.html
 share/doc/qore/modules/Mime/html/jquery.js
+share/doc/qore/modules/Mime/html/menu.js
+share/doc/qore/modules/Mime/html/menudata.js
 share/doc/qore/modules/Mime/html/modules.html
 share/doc/qore/modules/Mime/html/modules.js
 share/doc/qore/modules/Mime/html/namespace_mime.html
@@ -7088,6 +7362,10 @@ share/doc/qore/modules/Mime/html/search/
 share/doc/qore/modules/Mime/html/search/namespaces_0.js
 share/doc/qore/modules/Mime/html/search/namespaces_1.html
 share/doc/qore/modules/Mime/html/search/namespaces_1.js
+share/doc/qore/modules/Mime/html/search/namespaces_2.html
+share/doc/qore/modules/Mime/html/search/namespaces_2.js
+share/doc/qore/modules/Mime/html/search/namespaces_3.html
+share/doc/qore/modules/Mime/html/search/namespaces_3.js
 share/doc/qore/modules/Mime/html/search/nomatches.html
 share/doc/qore/modules/Mime/html/search/pages_0.html
 share/doc/qore/modules/Mime/html/search/pages_0.js
@@ -7145,6 +7423,8 @@ share/doc/qore/modules/Mime/html/search/
 share/doc/qore/modules/Mime/html/search/variables_13.js
 share/doc/qore/modules/Mime/html/search/variables_14.html
 share/doc/qore/modules/Mime/html/search/variables_14.js
+share/doc/qore/modules/Mime/html/search/variables_15.html
+share/doc/qore/modules/Mime/html/search/variables_15.js
 share/doc/qore/modules/Mime/html/search/variables_2.html
 share/doc/qore/modules/Mime/html/search/variables_2.js
 share/doc/qore/modules/Mime/html/search/variables_3.html
@@ -7184,8 +7464,6 @@ share/doc/qore/modules/Mime/html/tabs.cs
 share/doc/qore/modules/MysqlSqlUtil/html/_mysql_sql_util_8qm_8dox_8h_source.html
 share/doc/qore/modules/MysqlSqlUtil/html/annotated.html
 share/doc/qore/modules/MysqlSqlUtil/html/annotated_dup.js
-share/doc/qore/modules/MysqlSqlUtil/html/arrowdown.png
-share/doc/qore/modules/MysqlSqlUtil/html/arrowright.png
 share/doc/qore/modules/MysqlSqlUtil/html/bc_s.png
 share/doc/qore/modules/MysqlSqlUtil/html/bdwn.png
 share/doc/qore/modules/MysqlSqlUtil/html/class_mysql_sql_util_1_1_mysql_column-members.html
@@ -7257,13 +7535,7 @@ share/doc/qore/modules/MysqlSqlUtil/html
 share/doc/qore/modules/MysqlSqlUtil/html/classes.html
 share/doc/qore/modules/MysqlSqlUtil/html/closed.png
 share/doc/qore/modules/MysqlSqlUtil/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/MysqlSqlUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/MysqlSqlUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/MysqlSqlUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/MysqlSqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/MysqlSqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/MysqlSqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/MysqlSqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/MysqlSqlUtil/html/doc.png
 share/doc/qore/modules/MysqlSqlUtil/html/doxygen.css
 share/doc/qore/modules/MysqlSqlUtil/html/doxygen.png
@@ -7303,6 +7575,8 @@ share/doc/qore/modules/MysqlSqlUtil/html
 share/doc/qore/modules/MysqlSqlUtil/html/inherit_graph_6.png
 share/doc/qore/modules/MysqlSqlUtil/html/inherits.html
 share/doc/qore/modules/MysqlSqlUtil/html/jquery.js
+share/doc/qore/modules/MysqlSqlUtil/html/menu.js
+share/doc/qore/modules/MysqlSqlUtil/html/menudata.js
 share/doc/qore/modules/MysqlSqlUtil/html/namespace_mysql_sql_util.html
 share/doc/qore/modules/MysqlSqlUtil/html/namespace_mysql_sql_util.js
 share/doc/qore/modules/MysqlSqlUtil/html/namespacemembers.html
@@ -7511,6 +7785,12 @@ share/doc/qore/modules/MysqlSqlUtil/html
 share/doc/qore/modules/MysqlSqlUtil/html/search/namespaces_4.js
 share/doc/qore/modules/MysqlSqlUtil/html/search/namespaces_5.html
 share/doc/qore/modules/MysqlSqlUtil/html/search/namespaces_5.js
+share/doc/qore/modules/MysqlSqlUtil/html/search/namespaces_6.html
+share/doc/qore/modules/MysqlSqlUtil/html/search/namespaces_6.js
+share/doc/qore/modules/MysqlSqlUtil/html/search/namespaces_7.html
+share/doc/qore/modules/MysqlSqlUtil/html/search/namespaces_7.js
+share/doc/qore/modules/MysqlSqlUtil/html/search/namespaces_8.html
+share/doc/qore/modules/MysqlSqlUtil/html/search/namespaces_8.js
 share/doc/qore/modules/MysqlSqlUtil/html/search/nomatches.html
 share/doc/qore/modules/MysqlSqlUtil/html/search/pages_0.html
 share/doc/qore/modules/MysqlSqlUtil/html/search/pages_0.js
@@ -7613,8 +7893,6 @@ share/doc/qore/modules/MysqlSqlUtil/html
 share/doc/qore/modules/OracleSqlUtil/html/_oracle_sql_util_8qm_8dox_8h_source.html
 share/doc/qore/modules/OracleSqlUtil/html/annotated.html
 share/doc/qore/modules/OracleSqlUtil/html/annotated_dup.js
-share/doc/qore/modules/OracleSqlUtil/html/arrowdown.png
-share/doc/qore/modules/OracleSqlUtil/html/arrowright.png
 share/doc/qore/modules/OracleSqlUtil/html/bc_s.png
 share/doc/qore/modules/OracleSqlUtil/html/bdwn.png
 share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_check_constraint-members.html
@@ -7733,13 +8011,7 @@ share/doc/qore/modules/OracleSqlUtil/htm
 share/doc/qore/modules/OracleSqlUtil/html/classes.html
 share/doc/qore/modules/OracleSqlUtil/html/closed.png
 share/doc/qore/modules/OracleSqlUtil/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/OracleSqlUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/OracleSqlUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/OracleSqlUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/OracleSqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/OracleSqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/OracleSqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/OracleSqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/OracleSqlUtil/html/doc.png
 share/doc/qore/modules/OracleSqlUtil/html/doxygen.css
 share/doc/qore/modules/OracleSqlUtil/html/doxygen.png
@@ -7779,6 +8051,8 @@ share/doc/qore/modules/OracleSqlUtil/htm
 share/doc/qore/modules/OracleSqlUtil/html/inherit_graph_6.png
 share/doc/qore/modules/OracleSqlUtil/html/inherits.html
 share/doc/qore/modules/OracleSqlUtil/html/jquery.js
+share/doc/qore/modules/OracleSqlUtil/html/menu.js
+share/doc/qore/modules/OracleSqlUtil/html/menudata.js
 share/doc/qore/modules/OracleSqlUtil/html/namespace_oracle_sql_util.html
 share/doc/qore/modules/OracleSqlUtil/html/namespace_oracle_sql_util.js
 share/doc/qore/modules/OracleSqlUtil/html/namespacemembers.html
@@ -7989,6 +8263,12 @@ share/doc/qore/modules/OracleSqlUtil/htm
 share/doc/qore/modules/OracleSqlUtil/html/search/namespaces_5.js
 share/doc/qore/modules/OracleSqlUtil/html/search/namespaces_6.html
 share/doc/qore/modules/OracleSqlUtil/html/search/namespaces_6.js
+share/doc/qore/modules/OracleSqlUtil/html/search/namespaces_7.html
+share/doc/qore/modules/OracleSqlUtil/html/search/namespaces_7.js
+share/doc/qore/modules/OracleSqlUtil/html/search/namespaces_8.html
+share/doc/qore/modules/OracleSqlUtil/html/search/namespaces_8.js
+share/doc/qore/modules/OracleSqlUtil/html/search/namespaces_9.html
+share/doc/qore/modules/OracleSqlUtil/html/search/namespaces_9.js
 share/doc/qore/modules/OracleSqlUtil/html/search/nomatches.html
 share/doc/qore/modules/OracleSqlUtil/html/search/pages_0.html
 share/doc/qore/modules/OracleSqlUtil/html/search/pages_0.js
@@ -8091,8 +8371,6 @@ share/doc/qore/modules/OracleSqlUtil/htm
 share/doc/qore/modules/PgsqlSqlUtil/html/_pgsql_sql_util_8qm_8dox_8h_source.html
 share/doc/qore/modules/PgsqlSqlUtil/html/annotated.html
 share/doc/qore/modules/PgsqlSqlUtil/html/annotated_dup.js
-share/doc/qore/modules/PgsqlSqlUtil/html/arrowdown.png
-share/doc/qore/modules/PgsqlSqlUtil/html/arrowright.png
 share/doc/qore/modules/PgsqlSqlUtil/html/bc_s.png
 share/doc/qore/modules/PgsqlSqlUtil/html/bdwn.png
 share/doc/qore/modules/PgsqlSqlUtil/html/class_pgsql_sql_util_1_1_pgsql_check_constraint-members.html
@@ -8191,13 +8469,7 @@ share/doc/qore/modules/PgsqlSqlUtil/html
 share/doc/qore/modules/PgsqlSqlUtil/html/classes.html
 share/doc/qore/modules/PgsqlSqlUtil/html/closed.png
 share/doc/qore/modules/PgsqlSqlUtil/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/PgsqlSqlUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/PgsqlSqlUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/PgsqlSqlUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/PgsqlSqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/PgsqlSqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/PgsqlSqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/PgsqlSqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/PgsqlSqlUtil/html/doc.png
 share/doc/qore/modules/PgsqlSqlUtil/html/doxygen.css
 share/doc/qore/modules/PgsqlSqlUtil/html/doxygen.png
@@ -8240,6 +8512,8 @@ share/doc/qore/modules/PgsqlSqlUtil/html
 share/doc/qore/modules/PgsqlSqlUtil/html/inherit_graph_7.png
 share/doc/qore/modules/PgsqlSqlUtil/html/inherits.html
 share/doc/qore/modules/PgsqlSqlUtil/html/jquery.js
+share/doc/qore/modules/PgsqlSqlUtil/html/menu.js
+share/doc/qore/modules/PgsqlSqlUtil/html/menudata.js
 share/doc/qore/modules/PgsqlSqlUtil/html/namespace_pgsql_sql_util.html
 share/doc/qore/modules/PgsqlSqlUtil/html/namespace_pgsql_sql_util.js
 share/doc/qore/modules/PgsqlSqlUtil/html/namespacemembers.html
@@ -8450,6 +8724,12 @@ share/doc/qore/modules/PgsqlSqlUtil/html
 share/doc/qore/modules/PgsqlSqlUtil/html/search/namespaces_5.js
 share/doc/qore/modules/PgsqlSqlUtil/html/search/namespaces_6.html
 share/doc/qore/modules/PgsqlSqlUtil/html/search/namespaces_6.js
+share/doc/qore/modules/PgsqlSqlUtil/html/search/namespaces_7.html
+share/doc/qore/modules/PgsqlSqlUtil/html/search/namespaces_7.js
+share/doc/qore/modules/PgsqlSqlUtil/html/search/namespaces_8.html
+share/doc/qore/modules/PgsqlSqlUtil/html/search/namespaces_8.js
+share/doc/qore/modules/PgsqlSqlUtil/html/search/namespaces_9.html
+share/doc/qore/modules/PgsqlSqlUtil/html/search/namespaces_9.js
 share/doc/qore/modules/PgsqlSqlUtil/html/search/nomatches.html
 share/doc/qore/modules/PgsqlSqlUtil/html/search/pages_0.html
 share/doc/qore/modules/PgsqlSqlUtil/html/search/pages_0.js
@@ -8552,23 +8832,21 @@ share/doc/qore/modules/PgsqlSqlUtil/html
 share/doc/qore/modules/Pop3Client/html/_pop3_client_8qm_8dox_8h_source.html
 share/doc/qore/modules/Pop3Client/html/annotated.html
 share/doc/qore/modules/Pop3Client/html/annotated_dup.js
-share/doc/qore/modules/Pop3Client/html/arrowdown.png
-share/doc/qore/modules/Pop3Client/html/arrowright.png
 share/doc/qore/modules/Pop3Client/html/bc_s.png
 share/doc/qore/modules/Pop3Client/html/bdwn.png
 share/doc/qore/modules/Pop3Client/html/class_pop3_client_1_1_pop3_client-members.html
 share/doc/qore/modules/Pop3Client/html/class_pop3_client_1_1_pop3_client.html
 share/doc/qore/modules/Pop3Client/html/class_pop3_client_1_1_pop3_client.js
+share/doc/qore/modules/Pop3Client/html/class_pop3_client_1_1_pop3_connection-members.html
+share/doc/qore/modules/Pop3Client/html/class_pop3_client_1_1_pop3_connection.html
+share/doc/qore/modules/Pop3Client/html/class_pop3_client_1_1_pop3_connection.js
+share/doc/qore/modules/Pop3Client/html/class_pop3_client_1_1_pop3_connection__inherit__graph.map
+share/doc/qore/modules/Pop3Client/html/class_pop3_client_1_1_pop3_connection__inherit__graph.md5
+share/doc/qore/modules/Pop3Client/html/class_pop3_client_1_1_pop3_connection__inherit__graph.png
 share/doc/qore/modules/Pop3Client/html/classes.html
 share/doc/qore/modules/Pop3Client/html/closed.png
 share/doc/qore/modules/Pop3Client/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/Pop3Client/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/Pop3Client/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/Pop3Client/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/Pop3Client/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/Pop3Client/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/Pop3Client/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/Pop3Client/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/Pop3Client/html/doc.png
 share/doc/qore/modules/Pop3Client/html/doxygen.css
 share/doc/qore/modules/Pop3Client/html/doxygen.png
@@ -8581,9 +8859,20 @@ share/doc/qore/modules/Pop3Client/html/f
 share/doc/qore/modules/Pop3Client/html/graph_legend.html
 share/doc/qore/modules/Pop3Client/html/graph_legend.md5
 share/doc/qore/modules/Pop3Client/html/graph_legend.png
+share/doc/qore/modules/Pop3Client/html/hierarchy.html
+share/doc/qore/modules/Pop3Client/html/hierarchy.js
 share/doc/qore/modules/Pop3Client/html/index.html
 share/doc/qore/modules/Pop3Client/html/index.qhp
+share/doc/qore/modules/Pop3Client/html/inherit_graph_0.map
+share/doc/qore/modules/Pop3Client/html/inherit_graph_0.md5
+share/doc/qore/modules/Pop3Client/html/inherit_graph_0.png
+share/doc/qore/modules/Pop3Client/html/inherit_graph_1.map
+share/doc/qore/modules/Pop3Client/html/inherit_graph_1.md5
+share/doc/qore/modules/Pop3Client/html/inherit_graph_1.png
+share/doc/qore/modules/Pop3Client/html/inherits.html
 share/doc/qore/modules/Pop3Client/html/jquery.js
+share/doc/qore/modules/Pop3Client/html/menu.js
+share/doc/qore/modules/Pop3Client/html/menudata.js
 share/doc/qore/modules/Pop3Client/html/namespace_pop3_client.html
 share/doc/qore/modules/Pop3Client/html/namespace_pop3_client.js
 share/doc/qore/modules/Pop3Client/html/namespacemembers.html
@@ -8794,6 +9083,12 @@ share/doc/qore/modules/Pop3Client/html/s
 share/doc/qore/modules/Pop3Client/html/search/namespaces_5.js
 share/doc/qore/modules/Pop3Client/html/search/namespaces_6.html
 share/doc/qore/modules/Pop3Client/html/search/namespaces_6.js
+share/doc/qore/modules/Pop3Client/html/search/namespaces_7.html
+share/doc/qore/modules/Pop3Client/html/search/namespaces_7.js
+share/doc/qore/modules/Pop3Client/html/search/namespaces_8.html
+share/doc/qore/modules/Pop3Client/html/search/namespaces_8.js
+share/doc/qore/modules/Pop3Client/html/search/namespaces_9.html
+share/doc/qore/modules/Pop3Client/html/search/namespaces_9.js
 share/doc/qore/modules/Pop3Client/html/search/nomatches.html
 share/doc/qore/modules/Pop3Client/html/search/pages_0.html
 share/doc/qore/modules/Pop3Client/html/search/pages_0.js
@@ -8896,8 +9191,6 @@ share/doc/qore/modules/Pop3Client/html/t
 share/doc/qore/modules/QUnit/html/_q_unit_8qm_8dox_8h_source.html
 share/doc/qore/modules/QUnit/html/annotated.html
 share/doc/qore/modules/QUnit/html/annotated_dup.js
-share/doc/qore/modules/QUnit/html/arrowdown.png
-share/doc/qore/modules/QUnit/html/arrowright.png
 share/doc/qore/modules/QUnit/html/bc_s.png
 share/doc/qore/modules/QUnit/html/bdwn.png
 share/doc/qore/modules/QUnit/html/class_q_unit_1_1_abstract_test_result-members.html
@@ -8976,13 +9269,7 @@ share/doc/qore/modules/QUnit/html/class_
 share/doc/qore/modules/QUnit/html/classes.html
 share/doc/qore/modules/QUnit/html/closed.png
 share/doc/qore/modules/QUnit/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/QUnit/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/QUnit/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/QUnit/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/QUnit/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/QUnit/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/QUnit/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/QUnit/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/QUnit/html/doc.png
 share/doc/qore/modules/QUnit/html/doxygen.css
 share/doc/qore/modules/QUnit/html/doxygen.png
@@ -9010,6 +9297,8 @@ share/doc/qore/modules/QUnit/html/inheri
 share/doc/qore/modules/QUnit/html/inherit_graph_2.png
 share/doc/qore/modules/QUnit/html/inherits.html
 share/doc/qore/modules/QUnit/html/jquery.js
+share/doc/qore/modules/QUnit/html/menu.js
+share/doc/qore/modules/QUnit/html/menudata.js
 share/doc/qore/modules/QUnit/html/namespace_q_unit.html
 share/doc/qore/modules/QUnit/html/namespace_q_unit.js
 share/doc/qore/modules/QUnit/html/namespaces.html
@@ -9216,6 +9505,12 @@ share/doc/qore/modules/QUnit/html/search
 share/doc/qore/modules/QUnit/html/search/namespaces_4.js
 share/doc/qore/modules/QUnit/html/search/namespaces_5.html
 share/doc/qore/modules/QUnit/html/search/namespaces_5.js
+share/doc/qore/modules/QUnit/html/search/namespaces_6.html
+share/doc/qore/modules/QUnit/html/search/namespaces_6.js
+share/doc/qore/modules/QUnit/html/search/namespaces_7.html
+share/doc/qore/modules/QUnit/html/search/namespaces_7.js
+share/doc/qore/modules/QUnit/html/search/namespaces_8.html
+share/doc/qore/modules/QUnit/html/search/namespaces_8.js
 share/doc/qore/modules/QUnit/html/search/nomatches.html
 share/doc/qore/modules/QUnit/html/search/pages_0.html
 share/doc/qore/modules/QUnit/html/search/pages_0.js
@@ -9316,19 +9611,11 @@ share/doc/qore/modules/QUnit/html/tab_h.
 share/doc/qore/modules/QUnit/html/tab_s.png
 share/doc/qore/modules/QUnit/html/tabs.css
 share/doc/qore/modules/Qorize/html/_qorize_8qm_8dox_8h_source.html
-share/doc/qore/modules/Qorize/html/arrowdown.png
-share/doc/qore/modules/Qorize/html/arrowright.png
 share/doc/qore/modules/Qorize/html/bc_s.png
 share/doc/qore/modules/Qorize/html/bdwn.png
 share/doc/qore/modules/Qorize/html/closed.png
 share/doc/qore/modules/Qorize/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/Qorize/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/Qorize/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/Qorize/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/Qorize/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/Qorize/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/Qorize/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/Qorize/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/Qorize/html/doc.png
 share/doc/qore/modules/Qorize/html/doxygen.css
 share/doc/qore/modules/Qorize/html/doxygen.png
@@ -9338,6 +9625,7 @@ share/doc/qore/modules/Qorize/html/folde
 share/doc/qore/modules/Qorize/html/graph_legend.html
 share/doc/qore/modules/Qorize/html/graph_legend.md5
 share/doc/qore/modules/Qorize/html/graph_legend.png
+share/doc/qore/modules/Qorize/html/group___buffered_stream_reader.js
 share/doc/qore/modules/Qorize/html/group___column_size_options.js
 share/doc/qore/modules/Qorize/html/group___http_server_logging_options.js
 share/doc/qore/modules/Qorize/html/group___listener_log_options.js
@@ -9353,17 +9641,22 @@ share/doc/qore/modules/Qorize/html/group
 share/doc/qore/modules/Qorize/html/group___string_concat_decoding.js
 share/doc/qore/modules/Qorize/html/group___string_concat_encoding.js
 share/doc/qore/modules/Qorize/html/group__boolean__constants.js
+share/doc/qore/modules/Qorize/html/group__breakpoint__policy__options.js
 share/doc/qore/modules/Qorize/html/group__call__type__constants.js
 share/doc/qore/modules/Qorize/html/group__closecodes.js
 share/doc/qore/modules/Qorize/html/group__compression__constants.js
+share/doc/qore/modules/Qorize/html/group__compression__transformations.js
 share/doc/qore/modules/Qorize/html/group__compresssion__functions.js
 share/doc/qore/modules/Qorize/html/group__context__functions.js
+share/doc/qore/modules/Qorize/html/group__crypto__transformations.js
 share/doc/qore/modules/Qorize/html/group__cryptographic__constants.js
 share/doc/qore/modules/Qorize/html/group__cryptographic__functions.js
 share/doc/qore/modules/Qorize/html/group__database__driver__constants.js
 share/doc/qore/modules/Qorize/html/group__date__and__time__functions.js
 share/doc/qore/modules/Qorize/html/group__dbi__capabilities.js
 share/doc/qore/modules/Qorize/html/group__dbi__functions.js
+share/doc/qore/modules/Qorize/html/group__debug__rc__options.js
+share/doc/qore/modules/Qorize/html/group__debug__step__options.js
 share/doc/qore/modules/Qorize/html/group__digest__functions.js
 share/doc/qore/modules/Qorize/html/group__env__functions.js
 share/doc/qore/modules/Qorize/html/group__error__constants.js
@@ -9434,6 +9727,8 @@ share/doc/qore/modules/Qorize/html/group
 share/doc/qore/modules/Qorize/html/index.html
 share/doc/qore/modules/Qorize/html/index.qhp
 share/doc/qore/modules/Qorize/html/jquery.js
+share/doc/qore/modules/Qorize/html/menu.js
+share/doc/qore/modules/Qorize/html/menudata.js
 share/doc/qore/modules/Qorize/html/modules.html
 share/doc/qore/modules/Qorize/html/modules.js
 share/doc/qore/modules/Qorize/html/namespace_qorize.html
@@ -9653,6 +9948,12 @@ share/doc/qore/modules/Qorize/html/searc
 share/doc/qore/modules/Qorize/html/search/namespaces_4.js
 share/doc/qore/modules/Qorize/html/search/namespaces_5.html
 share/doc/qore/modules/Qorize/html/search/namespaces_5.js
+share/doc/qore/modules/Qorize/html/search/namespaces_6.html
+share/doc/qore/modules/Qorize/html/search/namespaces_6.js
+share/doc/qore/modules/Qorize/html/search/namespaces_7.html
+share/doc/qore/modules/Qorize/html/search/namespaces_7.js
+share/doc/qore/modules/Qorize/html/search/namespaces_8.html
+share/doc/qore/modules/Qorize/html/search/namespaces_8.js
 share/doc/qore/modules/Qorize/html/search/nomatches.html
 share/doc/qore/modules/Qorize/html/search/pages_0.html
 share/doc/qore/modules/Qorize/html/search/pages_0.js
@@ -9755,8 +10056,6 @@ share/doc/qore/modules/Qorize/html/tabs.
 share/doc/qore/modules/RestClient/html/_rest_client_8qm_8dox_8h_source.html
 share/doc/qore/modules/RestClient/html/annotated.html
 share/doc/qore/modules/RestClient/html/annotated_dup.js
-share/doc/qore/modules/RestClient/html/arrowdown.png
-share/doc/qore/modules/RestClient/html/arrowright.png
 share/doc/qore/modules/RestClient/html/bc_s.png
 share/doc/qore/modules/RestClient/html/bdwn.png
 share/doc/qore/modules/RestClient/html/class_rest_client_1_1_rest_client-members.html
@@ -9765,16 +10064,16 @@ share/doc/qore/modules/RestClient/html/c
 share/doc/qore/modules/RestClient/html/class_rest_client_1_1_rest_client__inherit__graph.map
 share/doc/qore/modules/RestClient/html/class_rest_client_1_1_rest_client__inherit__graph.md5
 share/doc/qore/modules/RestClient/html/class_rest_client_1_1_rest_client__inherit__graph.png
+share/doc/qore/modules/RestClient/html/class_rest_client_1_1_rest_connection-members.html
+share/doc/qore/modules/RestClient/html/class_rest_client_1_1_rest_connection.html
+share/doc/qore/modules/RestClient/html/class_rest_client_1_1_rest_connection.js
+share/doc/qore/modules/RestClient/html/class_rest_client_1_1_rest_connection__inherit__graph.map
+share/doc/qore/modules/RestClient/html/class_rest_client_1_1_rest_connection__inherit__graph.md5
+share/doc/qore/modules/RestClient/html/class_rest_client_1_1_rest_connection__inherit__graph.png
 share/doc/qore/modules/RestClient/html/classes.html
 share/doc/qore/modules/RestClient/html/closed.png
 share/doc/qore/modules/RestClient/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/RestClient/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/RestClient/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/RestClient/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/RestClient/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/RestClient/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/RestClient/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/RestClient/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/RestClient/html/doc.png
 share/doc/qore/modules/RestClient/html/doxygen.css
 share/doc/qore/modules/RestClient/html/doxygen.png
@@ -9794,8 +10093,13 @@ share/doc/qore/modules/RestClient/html/i
 share/doc/qore/modules/RestClient/html/inherit_graph_0.map
 share/doc/qore/modules/RestClient/html/inherit_graph_0.md5
 share/doc/qore/modules/RestClient/html/inherit_graph_0.png
+share/doc/qore/modules/RestClient/html/inherit_graph_1.map
+share/doc/qore/modules/RestClient/html/inherit_graph_1.md5
+share/doc/qore/modules/RestClient/html/inherit_graph_1.png
 share/doc/qore/modules/RestClient/html/inherits.html
 share/doc/qore/modules/RestClient/html/jquery.js
+share/doc/qore/modules/RestClient/html/menu.js
+share/doc/qore/modules/RestClient/html/menudata.js
 share/doc/qore/modules/RestClient/html/namespace_rest_client.html
 share/doc/qore/modules/RestClient/html/namespace_rest_client.js
 share/doc/qore/modules/RestClient/html/namespaces.html
@@ -9872,8 +10176,6 @@ share/doc/qore/modules/RestClient/html/s
 share/doc/qore/modules/RestClient/html/search/classes_10.js
 share/doc/qore/modules/RestClient/html/search/classes_11.html
 share/doc/qore/modules/RestClient/html/search/classes_11.js
-share/doc/qore/modules/RestClient/html/search/classes_12.html
-share/doc/qore/modules/RestClient/html/search/classes_12.js
 share/doc/qore/modules/RestClient/html/search/classes_2.html
 share/doc/qore/modules/RestClient/html/search/classes_2.js
 share/doc/qore/modules/RestClient/html/search/classes_3.html
@@ -10000,10 +10302,6 @@ share/doc/qore/modules/RestClient/html/s
 share/doc/qore/modules/RestClient/html/search/namespaces_3.js
 share/doc/qore/modules/RestClient/html/search/namespaces_4.html
 share/doc/qore/modules/RestClient/html/search/namespaces_4.js
-share/doc/qore/modules/RestClient/html/search/namespaces_5.html
-share/doc/qore/modules/RestClient/html/search/namespaces_5.js
-share/doc/qore/modules/RestClient/html/search/namespaces_6.html
-share/doc/qore/modules/RestClient/html/search/namespaces_6.js
 share/doc/qore/modules/RestClient/html/search/nomatches.html
 share/doc/qore/modules/RestClient/html/search/pages_0.html
 share/doc/qore/modules/RestClient/html/search/pages_0.js
@@ -10063,10 +10361,6 @@ share/doc/qore/modules/RestClient/html/s
 share/doc/qore/modules/RestClient/html/search/variables_14.js
 share/doc/qore/modules/RestClient/html/search/variables_15.html
 share/doc/qore/modules/RestClient/html/search/variables_15.js
-share/doc/qore/modules/RestClient/html/search/variables_16.html
-share/doc/qore/modules/RestClient/html/search/variables_16.js
-share/doc/qore/modules/RestClient/html/search/variables_17.html
-share/doc/qore/modules/RestClient/html/search/variables_17.js
 share/doc/qore/modules/RestClient/html/search/variables_2.html
 share/doc/qore/modules/RestClient/html/search/variables_2.js
 share/doc/qore/modules/RestClient/html/search/variables_3.html
@@ -10106,8 +10400,6 @@ share/doc/qore/modules/RestClient/html/t
 share/doc/qore/modules/RestHandler/html/_rest_handler_8qm_8dox_8h_source.html
 share/doc/qore/modules/RestHandler/html/annotated.html
 share/doc/qore/modules/RestHandler/html/annotated_dup.js
-share/doc/qore/modules/RestHandler/html/arrowdown.png
-share/doc/qore/modules/RestHandler/html/arrowright.png
 share/doc/qore/modules/RestHandler/html/bc_s.png
 share/doc/qore/modules/RestHandler/html/bdwn.png
 share/doc/qore/modules/RestHandler/html/class_rest_handler_1_1_abstract_rest_class-members.html
@@ -10134,13 +10426,7 @@ share/doc/qore/modules/RestHandler/html/
 share/doc/qore/modules/RestHandler/html/classes.html
 share/doc/qore/modules/RestHandler/html/closed.png
 share/doc/qore/modules/RestHandler/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/RestHandler/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/RestHandler/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/RestHandler/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/RestHandler/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/RestHandler/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/RestHandler/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/RestHandler/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/RestHandler/html/doc.png
 share/doc/qore/modules/RestHandler/html/doxygen.css
 share/doc/qore/modules/RestHandler/html/doxygen.png
@@ -10168,6 +10454,8 @@ share/doc/qore/modules/RestHandler/html/
 share/doc/qore/modules/RestHandler/html/inherit_graph_2.png
 share/doc/qore/modules/RestHandler/html/inherits.html
 share/doc/qore/modules/RestHandler/html/jquery.js
+share/doc/qore/modules/RestHandler/html/menu.js
+share/doc/qore/modules/RestHandler/html/menudata.js
 share/doc/qore/modules/RestHandler/html/namespace_rest_handler.html
 share/doc/qore/modules/RestHandler/html/namespace_rest_handler.js
 share/doc/qore/modules/RestHandler/html/namespaces.html
@@ -10376,6 +10664,10 @@ share/doc/qore/modules/RestHandler/html/
 share/doc/qore/modules/RestHandler/html/search/namespaces_5.js
 share/doc/qore/modules/RestHandler/html/search/namespaces_6.html
 share/doc/qore/modules/RestHandler/html/search/namespaces_6.js
+share/doc/qore/modules/RestHandler/html/search/namespaces_7.html
+share/doc/qore/modules/RestHandler/html/search/namespaces_7.js
+share/doc/qore/modules/RestHandler/html/search/namespaces_8.html
+share/doc/qore/modules/RestHandler/html/search/namespaces_8.js
 share/doc/qore/modules/RestHandler/html/search/nomatches.html
 share/doc/qore/modules/RestHandler/html/search/pages_0.html
 share/doc/qore/modules/RestHandler/html/search/pages_0.js
@@ -10475,11 +10767,478 @@ share/doc/qore/modules/RestHandler/html/
 share/doc/qore/modules/RestHandler/html/tab_h.png
 share/doc/qore/modules/RestHandler/html/tab_s.png
 share/doc/qore/modules/RestHandler/html/tabs.css
+share/doc/qore/modules/SalesforceRestClient/html/_salesforce_rest_client_8qm_8dox_8h_source.html
+share/doc/qore/modules/SalesforceRestClient/html/annotated.html
+share/doc/qore/modules/SalesforceRestClient/html/annotated_dup.js
+share/doc/qore/modules/SalesforceRestClient/html/bc_s.png
+share/doc/qore/modules/SalesforceRestClient/html/bdwn.png
+share/doc/qore/modules/SalesforceRestClient/html/class_salesforce_rest_client_1_1_salesforce_rest_client-members.html
+share/doc/qore/modules/SalesforceRestClient/html/class_salesforce_rest_client_1_1_salesforce_rest_client.html
+share/doc/qore/modules/SalesforceRestClient/html/class_salesforce_rest_client_1_1_salesforce_rest_client.js
+share/doc/qore/modules/SalesforceRestClient/html/class_salesforce_rest_client_1_1_salesforce_rest_client__inherit__graph.map
+share/doc/qore/modules/SalesforceRestClient/html/class_salesforce_rest_client_1_1_salesforce_rest_client__inherit__graph.md5
+share/doc/qore/modules/SalesforceRestClient/html/class_salesforce_rest_client_1_1_salesforce_rest_client__inherit__graph.png
+share/doc/qore/modules/SalesforceRestClient/html/class_salesforce_rest_client_1_1_salesforce_rest_connection-members.html
+share/doc/qore/modules/SalesforceRestClient/html/class_salesforce_rest_client_1_1_salesforce_rest_connection.html
+share/doc/qore/modules/SalesforceRestClient/html/class_salesforce_rest_client_1_1_salesforce_rest_connection.js
+share/doc/qore/modules/SalesforceRestClient/html/class_salesforce_rest_client_1_1_salesforce_rest_connection__inherit__graph.map
+share/doc/qore/modules/SalesforceRestClient/html/class_salesforce_rest_client_1_1_salesforce_rest_connection__inherit__graph.md5
+share/doc/qore/modules/SalesforceRestClient/html/class_salesforce_rest_client_1_1_salesforce_rest_connection__inherit__graph.png
+share/doc/qore/modules/SalesforceRestClient/html/classes.html
+share/doc/qore/modules/SalesforceRestClient/html/closed.png
+share/doc/qore/modules/SalesforceRestClient/html/dir_13add0083e006ac756009d5942a24d28.html
+share/doc/qore/modules/SalesforceRestClient/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
+share/doc/qore/modules/SalesforceRestClient/html/doc.png
+share/doc/qore/modules/SalesforceRestClient/html/doxygen.css
+share/doc/qore/modules/SalesforceRestClient/html/doxygen.png
+share/doc/qore/modules/SalesforceRestClient/html/dynsections.js
+share/doc/qore/modules/SalesforceRestClient/html/folderclosed.png
+share/doc/qore/modules/SalesforceRestClient/html/folderopen.png
+share/doc/qore/modules/SalesforceRestClient/html/functions.html
+share/doc/qore/modules/SalesforceRestClient/html/functions_func.html
+share/doc/qore/modules/SalesforceRestClient/html/functions_vars.html
+share/doc/qore/modules/SalesforceRestClient/html/graph_legend.html
+share/doc/qore/modules/SalesforceRestClient/html/graph_legend.md5
+share/doc/qore/modules/SalesforceRestClient/html/graph_legend.png
+share/doc/qore/modules/SalesforceRestClient/html/group___buffered_stream_reader.js
+share/doc/qore/modules/SalesforceRestClient/html/group___column_size_options.js
+share/doc/qore/modules/SalesforceRestClient/html/group___http_server_logging_options.js
+share/doc/qore/modules/SalesforceRestClient/html/group___listener_log_options.js
+share/doc/qore/modules/SalesforceRestClient/html/group___message_encodings.js
+share/doc/qore/modules/SalesforceRestClient/html/group___mime_content_transfer_encoding_constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group___mime_decoding_functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group___mime_encoding_functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group___mime_misc_functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group___mime_type_definitions.js
+share/doc/qore/modules/SalesforceRestClient/html/group___multi_part_constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group___string_concat_decoding.js
+share/doc/qore/modules/SalesforceRestClient/html/group___string_concat_encoding.js
+share/doc/qore/modules/SalesforceRestClient/html/group__boolean__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__breakpoint__policy__options.js
+share/doc/qore/modules/SalesforceRestClient/html/group__bulkjob__contenttypes.html
+share/doc/qore/modules/SalesforceRestClient/html/group__bulkjob__contenttypes.js
+share/doc/qore/modules/SalesforceRestClient/html/group__bulkjob__operations.html
+share/doc/qore/modules/SalesforceRestClient/html/group__bulkjob__operations.js
+share/doc/qore/modules/SalesforceRestClient/html/group__call__type__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__closecodes.js
+share/doc/qore/modules/SalesforceRestClient/html/group__compression__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__compression__transformations.js
+share/doc/qore/modules/SalesforceRestClient/html/group__compresssion__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__context__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__crypto__transformations.js
+share/doc/qore/modules/SalesforceRestClient/html/group__cryptographic__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__cryptographic__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__database__driver__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__date__and__time__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__dbi__capabilities.js
+share/doc/qore/modules/SalesforceRestClient/html/group__dbi__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__debug__rc__options.js
+share/doc/qore/modules/SalesforceRestClient/html/group__debug__step__options.js
+share/doc/qore/modules/SalesforceRestClient/html/group__digest__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__env__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__error__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__event__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__event__map__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__event__source__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__exception__type__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__file__locking__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__file__open__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__file__seek__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__file__stat__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__filesystem__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__hmac__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__info__actions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__io__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__library__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__list__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__math__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__math__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__misc__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__network__address__family__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__network__address__information__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__null__and__nothing__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__number__formatting__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__number__string__formatting__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__object__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__old__dbi__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__opcodes.js
+share/doc/qore/modules/SalesforceRestClient/html/group__option__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__parse__options.js
+share/doc/qore/modules/SalesforceRestClient/html/group__protocol__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__pwd__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__range__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__regex__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__signal__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__signal__handling__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__socket__type__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__sql__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__sql__cop__funcs.js
+share/doc/qore/modules/SalesforceRestClient/html/group__sql__cops.js
+share/doc/qore/modules/SalesforceRestClient/html/group__sql__iop__funcs.js
+share/doc/qore/modules/SalesforceRestClient/html/group__sql__iops.js
+share/doc/qore/modules/SalesforceRestClient/html/group__sql__jop__funcs.js
+share/doc/qore/modules/SalesforceRestClient/html/group__sql__jops.js
+share/doc/qore/modules/SalesforceRestClient/html/group__sql__op__funcs.js
+share/doc/qore/modules/SalesforceRestClient/html/group__sql__ops.js
+share/doc/qore/modules/SalesforceRestClient/html/group__sql__uop__funcs.js
+share/doc/qore/modules/SalesforceRestClient/html/group__sql__uops.js
+share/doc/qore/modules/SalesforceRestClient/html/group__string__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__string__type__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__system__and__build__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__t.js
+share/doc/qore/modules/SalesforceRestClient/html/group__tattr__control__character__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__tattr__control__mode__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__tattr__input__mode__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__tattr__local__mode__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__tattr__output__mode__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__tattr__term__setting__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__threading__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__type__code__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__type__code__map__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__type__conversion__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__upsert__options.js
+share/doc/qore/modules/SalesforceRestClient/html/group__upsert__results.js
+share/doc/qore/modules/SalesforceRestClient/html/group__user__and__group__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__warning__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__x509__verification__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/hierarchy.html
+share/doc/qore/modules/SalesforceRestClient/html/hierarchy.js
+share/doc/qore/modules/SalesforceRestClient/html/index.html
+share/doc/qore/modules/SalesforceRestClient/html/index.qhp
+share/doc/qore/modules/SalesforceRestClient/html/inherit_graph_0.map
+share/doc/qore/modules/SalesforceRestClient/html/inherit_graph_0.md5
+share/doc/qore/modules/SalesforceRestClient/html/inherit_graph_0.png
+share/doc/qore/modules/SalesforceRestClient/html/inherit_graph_1.map
+share/doc/qore/modules/SalesforceRestClient/html/inherit_graph_1.md5
+share/doc/qore/modules/SalesforceRestClient/html/inherit_graph_1.png
+share/doc/qore/modules/SalesforceRestClient/html/inherits.html
+share/doc/qore/modules/SalesforceRestClient/html/jquery.js
+share/doc/qore/modules/SalesforceRestClient/html/menu.js
+share/doc/qore/modules/SalesforceRestClient/html/menudata.js
+share/doc/qore/modules/SalesforceRestClient/html/modules.html
+share/doc/qore/modules/SalesforceRestClient/html/modules.js
+share/doc/qore/modules/SalesforceRestClient/html/namespace_salesforce_rest_client.html
+share/doc/qore/modules/SalesforceRestClient/html/namespace_salesforce_rest_client.js
+share/doc/qore/modules/SalesforceRestClient/html/namespacemembers.html
+share/doc/qore/modules/SalesforceRestClient/html/namespacemembers_vars.html
+share/doc/qore/modules/SalesforceRestClient/html/namespaces.html
+share/doc/qore/modules/SalesforceRestClient/html/namespaces.js
+share/doc/qore/modules/SalesforceRestClient/html/nav_f.png
+share/doc/qore/modules/SalesforceRestClient/html/nav_g.png
+share/doc/qore/modules/SalesforceRestClient/html/nav_h.png
+share/doc/qore/modules/SalesforceRestClient/html/navtree.css
+share/doc/qore/modules/SalesforceRestClient/html/navtree.js
+share/doc/qore/modules/SalesforceRestClient/html/navtreedata.js
+share/doc/qore/modules/SalesforceRestClient/html/navtreeindex0.js
+share/doc/qore/modules/SalesforceRestClient/html/navtreeindex1.js
+share/doc/qore/modules/SalesforceRestClient/html/navtreeindex2.js
+share/doc/qore/modules/SalesforceRestClient/html/navtreeindex3.js
+share/doc/qore/modules/SalesforceRestClient/html/navtreeindex4.js
+share/doc/qore/modules/SalesforceRestClient/html/navtreeindex5.js
+share/doc/qore/modules/SalesforceRestClient/html/navtreeindex6.js
+share/doc/qore/modules/SalesforceRestClient/html/open.png
+share/doc/qore/modules/SalesforceRestClient/html/pages.html
+share/doc/qore/modules/SalesforceRestClient/html/resize.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_0.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_0.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_1.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_1.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_10.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_10.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_11.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_11.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_12.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_12.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_13.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_13.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_14.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_14.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_15.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_15.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_16.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_16.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_17.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_17.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_18.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_18.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_19.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_19.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_1a.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_1a.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_2.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_2.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_3.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_3.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_4.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_4.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_5.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_5.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_6.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_6.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_7.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_7.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_8.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_8.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_9.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_9.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_a.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_a.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_b.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_b.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_c.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_c.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_d.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_d.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_e.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_e.js
+share/doc/qore/modules/SalesforceRestClient/html/search/all_f.html
+share/doc/qore/modules/SalesforceRestClient/html/search/all_f.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_0.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_0.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_1.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_1.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_10.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_10.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_11.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_11.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_12.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_12.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_2.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_2.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_3.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_3.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_4.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_4.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_5.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_5.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_6.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_6.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_7.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_7.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_8.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_8.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_9.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_9.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_a.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_a.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_b.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_b.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_c.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_c.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_d.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_d.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_e.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_e.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_f.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_f.js
+share/doc/qore/modules/SalesforceRestClient/html/search/close.png
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_0.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_0.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_1.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_1.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_10.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_10.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_11.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_11.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_12.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_12.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_13.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_13.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_14.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_14.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_15.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_15.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_16.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_16.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_17.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_17.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_18.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_18.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_2.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_2.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_3.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_3.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_4.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_4.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_5.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_5.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_6.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_6.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_7.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_7.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_8.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_8.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_9.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_9.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_a.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_a.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_b.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_b.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_c.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_c.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_d.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_d.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_e.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_e.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_f.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_f.js
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_0.html
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_0.js
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_1.html
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_1.js
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_10.html
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_10.js
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_11.html
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_11.js
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_2.html
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_2.js
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_3.html
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_3.js
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_4.html
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_4.js
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_5.html
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_5.js
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_6.html
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_6.js
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_7.html
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_7.js
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_8.html
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_8.js
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_9.html
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_9.js
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_a.html
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_a.js
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_b.html
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_b.js
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_c.html
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_c.js
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_d.html
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_d.js
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_e.html
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_e.js
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_f.html
+share/doc/qore/modules/SalesforceRestClient/html/search/groups_f.js
+share/doc/qore/modules/SalesforceRestClient/html/search/mag_sel.png
+share/doc/qore/modules/SalesforceRestClient/html/search/namespaces_0.html
+share/doc/qore/modules/SalesforceRestClient/html/search/namespaces_0.js
+share/doc/qore/modules/SalesforceRestClient/html/search/namespaces_1.html
+share/doc/qore/modules/SalesforceRestClient/html/search/namespaces_1.js
+share/doc/qore/modules/SalesforceRestClient/html/search/namespaces_2.html
+share/doc/qore/modules/SalesforceRestClient/html/search/namespaces_2.js
+share/doc/qore/modules/SalesforceRestClient/html/search/namespaces_3.html
+share/doc/qore/modules/SalesforceRestClient/html/search/namespaces_3.js
+share/doc/qore/modules/SalesforceRestClient/html/search/namespaces_4.html
+share/doc/qore/modules/SalesforceRestClient/html/search/namespaces_4.js
+share/doc/qore/modules/SalesforceRestClient/html/search/namespaces_5.html
+share/doc/qore/modules/SalesforceRestClient/html/search/namespaces_5.js
+share/doc/qore/modules/SalesforceRestClient/html/search/namespaces_6.html
+share/doc/qore/modules/SalesforceRestClient/html/search/namespaces_6.js
+share/doc/qore/modules/SalesforceRestClient/html/search/namespaces_7.html
+share/doc/qore/modules/SalesforceRestClient/html/search/namespaces_7.js
+share/doc/qore/modules/SalesforceRestClient/html/search/namespaces_8.html
+share/doc/qore/modules/SalesforceRestClient/html/search/namespaces_8.js
+share/doc/qore/modules/SalesforceRestClient/html/search/nomatches.html
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_0.html
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_0.js
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_1.html
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_1.js
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_10.html
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_10.js
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_11.html
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_11.js
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_2.html
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_2.js
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_3.html
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_3.js
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_4.html
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_4.js
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_5.html
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_5.js
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_6.html
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_6.js
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_7.html
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_7.js
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_8.html
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_8.js
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_9.html
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_9.js
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_a.html
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_a.js
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_b.html
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_b.js
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_c.html
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_c.js
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_d.html
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_d.js
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_e.html
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_e.js
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_f.html
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_f.js
+share/doc/qore/modules/SalesforceRestClient/html/search/search.css
+share/doc/qore/modules/SalesforceRestClient/html/search/search.js
+share/doc/qore/modules/SalesforceRestClient/html/search/search_l.png
+share/doc/qore/modules/SalesforceRestClient/html/search/search_m.png
+share/doc/qore/modules/SalesforceRestClient/html/search/search_r.png
+share/doc/qore/modules/SalesforceRestClient/html/search/searchdata.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_0.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_0.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_1.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_1.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_10.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_10.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_11.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_11.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_12.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_12.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_13.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_13.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_14.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_14.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_15.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_15.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_16.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_16.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_17.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_17.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_2.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_2.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_3.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_3.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_4.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_4.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_5.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_5.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_6.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_6.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_7.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_7.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_8.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_8.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_9.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_9.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_a.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_a.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_b.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_b.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_c.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_c.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_d.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_d.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_e.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_e.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_f.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_f.js
+share/doc/qore/modules/SalesforceRestClient/html/splitbar.png
+share/doc/qore/modules/SalesforceRestClient/html/sync_off.png
+share/doc/qore/modules/SalesforceRestClient/html/sync_on.png
+share/doc/qore/modules/SalesforceRestClient/html/tab_a.png
+share/doc/qore/modules/SalesforceRestClient/html/tab_b.png
+share/doc/qore/modules/SalesforceRestClient/html/tab_h.png
+share/doc/qore/modules/SalesforceRestClient/html/tab_s.png
+share/doc/qore/modules/SalesforceRestClient/html/tabs.css
 share/doc/qore/modules/Schema/html/_schema_8qm_8dox_8h_source.html
 share/doc/qore/modules/Schema/html/annotated.html
 share/doc/qore/modules/Schema/html/annotated_dup.js
-share/doc/qore/modules/Schema/html/arrowdown.png
-share/doc/qore/modules/Schema/html/arrowright.png
 share/doc/qore/modules/Schema/html/bc_s.png
 share/doc/qore/modules/Schema/html/bdwn.png
 share/doc/qore/modules/Schema/html/class_schema_1_1_abstract_schema-members.html
@@ -10500,13 +11259,7 @@ share/doc/qore/modules/Schema/html/class
 share/doc/qore/modules/Schema/html/classes.html
 share/doc/qore/modules/Schema/html/closed.png
 share/doc/qore/modules/Schema/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/Schema/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/Schema/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/Schema/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/Schema/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/Schema/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/Schema/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/Schema/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/Schema/html/doc.png
 share/doc/qore/modules/Schema/html/doxygen.css
 share/doc/qore/modules/Schema/html/doxygen.png
@@ -10531,6 +11284,8 @@ share/doc/qore/modules/Schema/html/inher
 share/doc/qore/modules/Schema/html/inherit_graph_1.png
 share/doc/qore/modules/Schema/html/inherits.html
 share/doc/qore/modules/Schema/html/jquery.js
+share/doc/qore/modules/Schema/html/menu.js
+share/doc/qore/modules/Schema/html/menudata.js
 share/doc/qore/modules/Schema/html/namespace_schema.html
 share/doc/qore/modules/Schema/html/namespace_schema.js
 share/doc/qore/modules/Schema/html/namespacemembers.html
@@ -10740,6 +11495,12 @@ share/doc/qore/modules/Schema/html/searc
 share/doc/qore/modules/Schema/html/search/namespaces_4.js
 share/doc/qore/modules/Schema/html/search/namespaces_5.html
 share/doc/qore/modules/Schema/html/search/namespaces_5.js
+share/doc/qore/modules/Schema/html/search/namespaces_6.html
+share/doc/qore/modules/Schema/html/search/namespaces_6.js
+share/doc/qore/modules/Schema/html/search/namespaces_7.html
+share/doc/qore/modules/Schema/html/search/namespaces_7.js
+share/doc/qore/modules/Schema/html/search/namespaces_8.html
+share/doc/qore/modules/Schema/html/search/namespaces_8.js
 share/doc/qore/modules/Schema/html/search/nomatches.html
 share/doc/qore/modules/Schema/html/search/pages_0.html
 share/doc/qore/modules/Schema/html/search/pages_0.js
@@ -10842,8 +11603,6 @@ share/doc/qore/modules/Schema/html/tabs.
 share/doc/qore/modules/SmtpClient/html/_smtp_client_8qm_8dox_8h_source.html
 share/doc/qore/modules/SmtpClient/html/annotated.html
 share/doc/qore/modules/SmtpClient/html/annotated_dup.js
-share/doc/qore/modules/SmtpClient/html/arrowdown.png
-share/doc/qore/modules/SmtpClient/html/arrowright.png
 share/doc/qore/modules/SmtpClient/html/bc_s.png
 share/doc/qore/modules/SmtpClient/html/bdwn.png
 share/doc/qore/modules/SmtpClient/html/class_smtp_client_1_1_attachment-members.html
@@ -10860,16 +11619,16 @@ share/doc/qore/modules/SmtpClient/html/c
 share/doc/qore/modules/SmtpClient/html/class_smtp_client_1_1_smtp_client-members.html
 share/doc/qore/modules/SmtpClient/html/class_smtp_client_1_1_smtp_client.html
 share/doc/qore/modules/SmtpClient/html/class_smtp_client_1_1_smtp_client.js
+share/doc/qore/modules/SmtpClient/html/class_smtp_client_1_1_smtp_connection-members.html
+share/doc/qore/modules/SmtpClient/html/class_smtp_client_1_1_smtp_connection.html
+share/doc/qore/modules/SmtpClient/html/class_smtp_client_1_1_smtp_connection.js
+share/doc/qore/modules/SmtpClient/html/class_smtp_client_1_1_smtp_connection__inherit__graph.map
+share/doc/qore/modules/SmtpClient/html/class_smtp_client_1_1_smtp_connection__inherit__graph.md5
+share/doc/qore/modules/SmtpClient/html/class_smtp_client_1_1_smtp_connection__inherit__graph.png
 share/doc/qore/modules/SmtpClient/html/classes.html
 share/doc/qore/modules/SmtpClient/html/closed.png
 share/doc/qore/modules/SmtpClient/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/SmtpClient/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/SmtpClient/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/SmtpClient/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/SmtpClient/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/SmtpClient/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/SmtpClient/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/SmtpClient/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/SmtpClient/html/doc.png
 share/doc/qore/modules/SmtpClient/html/doxygen.css
 share/doc/qore/modules/SmtpClient/html/doxygen.png
@@ -10895,8 +11654,13 @@ share/doc/qore/modules/SmtpClient/html/i
 share/doc/qore/modules/SmtpClient/html/inherit_graph_2.map
 share/doc/qore/modules/SmtpClient/html/inherit_graph_2.md5
 share/doc/qore/modules/SmtpClient/html/inherit_graph_2.png
+share/doc/qore/modules/SmtpClient/html/inherit_graph_3.map
+share/doc/qore/modules/SmtpClient/html/inherit_graph_3.md5
+share/doc/qore/modules/SmtpClient/html/inherit_graph_3.png
 share/doc/qore/modules/SmtpClient/html/inherits.html
 share/doc/qore/modules/SmtpClient/html/jquery.js
+share/doc/qore/modules/SmtpClient/html/menu.js
+share/doc/qore/modules/SmtpClient/html/menudata.js
 share/doc/qore/modules/SmtpClient/html/namespace_smtp_client.html
 share/doc/qore/modules/SmtpClient/html/namespace_smtp_client.js
 share/doc/qore/modules/SmtpClient/html/namespacemembers.html
@@ -11105,6 +11869,12 @@ share/doc/qore/modules/SmtpClient/html/s
 share/doc/qore/modules/SmtpClient/html/search/namespaces_4.js
 share/doc/qore/modules/SmtpClient/html/search/namespaces_5.html
 share/doc/qore/modules/SmtpClient/html/search/namespaces_5.js
+share/doc/qore/modules/SmtpClient/html/search/namespaces_6.html
+share/doc/qore/modules/SmtpClient/html/search/namespaces_6.js
+share/doc/qore/modules/SmtpClient/html/search/namespaces_7.html
+share/doc/qore/modules/SmtpClient/html/search/namespaces_7.js
+share/doc/qore/modules/SmtpClient/html/search/namespaces_8.html
+share/doc/qore/modules/SmtpClient/html/search/namespaces_8.js
 share/doc/qore/modules/SmtpClient/html/search/nomatches.html
 share/doc/qore/modules/SmtpClient/html/search/pages_0.html
 share/doc/qore/modules/SmtpClient/html/search/pages_0.js
@@ -11207,8 +11977,6 @@ share/doc/qore/modules/SmtpClient/html/t
 share/doc/qore/modules/SqlUtil/html/_sql_util_8qm_8dox_8h_source.html
 share/doc/qore/modules/SqlUtil/html/annotated.html
 share/doc/qore/modules/SqlUtil/html/annotated_dup.js
-share/doc/qore/modules/SqlUtil/html/arrowdown.png
-share/doc/qore/modules/SqlUtil/html/arrowright.png
 share/doc/qore/modules/SqlUtil/html/bc_s.png
 share/doc/qore/modules/SqlUtil/html/bdwn.png
 share/doc/qore/modules/SqlUtil/html/class_sql_util_1_1_abstract_check_constraint-members.html
@@ -11361,13 +12129,7 @@ share/doc/qore/modules/SqlUtil/html/clas
 share/doc/qore/modules/SqlUtil/html/closed.png
 share/doc/qore/modules/SqlUtil/html/dba_management.html
 share/doc/qore/modules/SqlUtil/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/SqlUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/SqlUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/SqlUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/SqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/SqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/SqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/SqlUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/SqlUtil/html/doc.png
 share/doc/qore/modules/SqlUtil/html/doxygen.css
 share/doc/qore/modules/SqlUtil/html/doxygen.png
@@ -11419,21 +12181,27 @@ share/doc/qore/modules/SqlUtil/html/func
 share/doc/qore/modules/SqlUtil/html/graph_legend.html
 share/doc/qore/modules/SqlUtil/html/graph_legend.md5
 share/doc/qore/modules/SqlUtil/html/graph_legend.png
+share/doc/qore/modules/SqlUtil/html/group___buffered_stream_reader.js
 share/doc/qore/modules/SqlUtil/html/group___column_size_options.html
 share/doc/qore/modules/SqlUtil/html/group___column_size_options.js
 share/doc/qore/modules/SqlUtil/html/group___string_concat_decoding.js
 share/doc/qore/modules/SqlUtil/html/group___string_concat_encoding.js
 share/doc/qore/modules/SqlUtil/html/group__boolean__constants.js
+share/doc/qore/modules/SqlUtil/html/group__breakpoint__policy__options.js
 share/doc/qore/modules/SqlUtil/html/group__call__type__constants.js
 share/doc/qore/modules/SqlUtil/html/group__compression__constants.js
+share/doc/qore/modules/SqlUtil/html/group__compression__transformations.js
 share/doc/qore/modules/SqlUtil/html/group__compresssion__functions.js
 share/doc/qore/modules/SqlUtil/html/group__context__functions.js
+share/doc/qore/modules/SqlUtil/html/group__crypto__transformations.js
 share/doc/qore/modules/SqlUtil/html/group__cryptographic__constants.js
 share/doc/qore/modules/SqlUtil/html/group__cryptographic__functions.js
 share/doc/qore/modules/SqlUtil/html/group__database__driver__constants.js
 share/doc/qore/modules/SqlUtil/html/group__date__and__time__functions.js
 share/doc/qore/modules/SqlUtil/html/group__dbi__capabilities.js
 share/doc/qore/modules/SqlUtil/html/group__dbi__functions.js
+share/doc/qore/modules/SqlUtil/html/group__debug__rc__options.js
+share/doc/qore/modules/SqlUtil/html/group__debug__step__options.js
 share/doc/qore/modules/SqlUtil/html/group__digest__functions.js
 share/doc/qore/modules/SqlUtil/html/group__env__functions.js
 share/doc/qore/modules/SqlUtil/html/group__error__constants.js
@@ -11556,6 +12324,8 @@ share/doc/qore/modules/SqlUtil/html/inhe
 share/doc/qore/modules/SqlUtil/html/inherit_graph_9.png
 share/doc/qore/modules/SqlUtil/html/inherits.html
 share/doc/qore/modules/SqlUtil/html/jquery.js
+share/doc/qore/modules/SqlUtil/html/menu.js
+share/doc/qore/modules/SqlUtil/html/menudata.js
 share/doc/qore/modules/SqlUtil/html/modules.html
 share/doc/qore/modules/SqlUtil/html/modules.js
 share/doc/qore/modules/SqlUtil/html/namespace_sql_util.html
@@ -11580,6 +12350,7 @@ share/doc/qore/modules/SqlUtil/html/navt
 share/doc/qore/modules/SqlUtil/html/navtreeindex6.js
 share/doc/qore/modules/SqlUtil/html/navtreeindex7.js
 share/doc/qore/modules/SqlUtil/html/navtreeindex8.js
+share/doc/qore/modules/SqlUtil/html/navtreeindex9.js
 share/doc/qore/modules/SqlUtil/html/open.png
 share/doc/qore/modules/SqlUtil/html/pages.html
 share/doc/qore/modules/SqlUtil/html/resize.js
@@ -11770,6 +12541,10 @@ share/doc/qore/modules/SqlUtil/html/sear
 share/doc/qore/modules/SqlUtil/html/search/namespaces_1.js
 share/doc/qore/modules/SqlUtil/html/search/namespaces_2.html
 share/doc/qore/modules/SqlUtil/html/search/namespaces_2.js
+share/doc/qore/modules/SqlUtil/html/search/namespaces_3.html
+share/doc/qore/modules/SqlUtil/html/search/namespaces_3.js
+share/doc/qore/modules/SqlUtil/html/search/namespaces_4.html
+share/doc/qore/modules/SqlUtil/html/search/namespaces_4.js
 share/doc/qore/modules/SqlUtil/html/search/nomatches.html
 share/doc/qore/modules/SqlUtil/html/search/pages_0.html
 share/doc/qore/modules/SqlUtil/html/search/pages_0.js
@@ -11873,8 +12648,6 @@ share/doc/qore/modules/SqlUtil/html/tabs
 share/doc/qore/modules/TableMapper/html/_table_mapper_8qm_8dox_8h_source.html
 share/doc/qore/modules/TableMapper/html/annotated.html
 share/doc/qore/modules/TableMapper/html/annotated_dup.js
-share/doc/qore/modules/TableMapper/html/arrowdown.png
-share/doc/qore/modules/TableMapper/html/arrowright.png
 share/doc/qore/modules/TableMapper/html/bc_s.png
 share/doc/qore/modules/TableMapper/html/bdwn.png
 share/doc/qore/modules/TableMapper/html/class_table_mapper_1_1_abstract_sql_statement_outbound_mapper-members.html
@@ -11921,14 +12694,9 @@ share/doc/qore/modules/TableMapper/html/
 share/doc/qore/modules/TableMapper/html/class_table_mapper_1_1_sql_statement_outbound_mapper__inherit__graph.png
 share/doc/qore/modules/TableMapper/html/classes.html
 share/doc/qore/modules/TableMapper/html/closed.png
+share/doc/qore/modules/TableMapper/html/deprecated.html
 share/doc/qore/modules/TableMapper/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/TableMapper/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/TableMapper/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/TableMapper/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/TableMapper/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/TableMapper/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/TableMapper/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/TableMapper/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/TableMapper/html/doc.png
 share/doc/qore/modules/TableMapper/html/doxygen.css
 share/doc/qore/modules/TableMapper/html/doxygen.png
@@ -11951,8 +12719,16 @@ share/doc/qore/modules/TableMapper/html/
 share/doc/qore/modules/TableMapper/html/inherit_graph_1.map
 share/doc/qore/modules/TableMapper/html/inherit_graph_1.md5
 share/doc/qore/modules/TableMapper/html/inherit_graph_1.png
+share/doc/qore/modules/TableMapper/html/inherit_graph_2.map
+share/doc/qore/modules/TableMapper/html/inherit_graph_2.md5
+share/doc/qore/modules/TableMapper/html/inherit_graph_2.png
+share/doc/qore/modules/TableMapper/html/inherit_graph_3.map
+share/doc/qore/modules/TableMapper/html/inherit_graph_3.md5
+share/doc/qore/modules/TableMapper/html/inherit_graph_3.png
 share/doc/qore/modules/TableMapper/html/inherits.html
 share/doc/qore/modules/TableMapper/html/jquery.js
+share/doc/qore/modules/TableMapper/html/menu.js
+share/doc/qore/modules/TableMapper/html/menudata.js
 share/doc/qore/modules/TableMapper/html/namespace_table_mapper.html
 share/doc/qore/modules/TableMapper/html/namespace_table_mapper.js
 share/doc/qore/modules/TableMapper/html/namespaces.html
@@ -12163,6 +12939,12 @@ share/doc/qore/modules/TableMapper/html/
 share/doc/qore/modules/TableMapper/html/search/namespaces_5.js
 share/doc/qore/modules/TableMapper/html/search/namespaces_6.html
 share/doc/qore/modules/TableMapper/html/search/namespaces_6.js
+share/doc/qore/modules/TableMapper/html/search/namespaces_7.html
+share/doc/qore/modules/TableMapper/html/search/namespaces_7.js
+share/doc/qore/modules/TableMapper/html/search/namespaces_8.html
+share/doc/qore/modules/TableMapper/html/search/namespaces_8.js
+share/doc/qore/modules/TableMapper/html/search/namespaces_9.html
+share/doc/qore/modules/TableMapper/html/search/namespaces_9.js
 share/doc/qore/modules/TableMapper/html/search/nomatches.html
 share/doc/qore/modules/TableMapper/html/search/pages_0.html
 share/doc/qore/modules/TableMapper/html/search/pages_0.js
@@ -12265,23 +13047,21 @@ share/doc/qore/modules/TableMapper/html/
 share/doc/qore/modules/TelnetClient/html/_telnet_client_8qm_8dox_8h_source.html
 share/doc/qore/modules/TelnetClient/html/annotated.html
 share/doc/qore/modules/TelnetClient/html/annotated_dup.js
-share/doc/qore/modules/TelnetClient/html/arrowdown.png
-share/doc/qore/modules/TelnetClient/html/arrowright.png
 share/doc/qore/modules/TelnetClient/html/bc_s.png
 share/doc/qore/modules/TelnetClient/html/bdwn.png
 share/doc/qore/modules/TelnetClient/html/class_telnet_client_1_1_telnet_client-members.html
 share/doc/qore/modules/TelnetClient/html/class_telnet_client_1_1_telnet_client.html
 share/doc/qore/modules/TelnetClient/html/class_telnet_client_1_1_telnet_client.js
+share/doc/qore/modules/TelnetClient/html/class_telnet_client_1_1_telnet_connection-members.html
+share/doc/qore/modules/TelnetClient/html/class_telnet_client_1_1_telnet_connection.html
+share/doc/qore/modules/TelnetClient/html/class_telnet_client_1_1_telnet_connection.js
+share/doc/qore/modules/TelnetClient/html/class_telnet_client_1_1_telnet_connection__inherit__graph.map
+share/doc/qore/modules/TelnetClient/html/class_telnet_client_1_1_telnet_connection__inherit__graph.md5
+share/doc/qore/modules/TelnetClient/html/class_telnet_client_1_1_telnet_connection__inherit__graph.png
 share/doc/qore/modules/TelnetClient/html/classes.html
 share/doc/qore/modules/TelnetClient/html/closed.png
 share/doc/qore/modules/TelnetClient/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/TelnetClient/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/TelnetClient/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/TelnetClient/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/TelnetClient/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/TelnetClient/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/TelnetClient/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/TelnetClient/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/TelnetClient/html/doc.png
 share/doc/qore/modules/TelnetClient/html/doxygen.css
 share/doc/qore/modules/TelnetClient/html/doxygen.png
@@ -12293,6 +13073,7 @@ share/doc/qore/modules/TelnetClient/html
 share/doc/qore/modules/TelnetClient/html/graph_legend.html
 share/doc/qore/modules/TelnetClient/html/graph_legend.md5
 share/doc/qore/modules/TelnetClient/html/graph_legend.png
+share/doc/qore/modules/TelnetClient/html/group___buffered_stream_reader.js
 share/doc/qore/modules/TelnetClient/html/group___column_size_options.js
 share/doc/qore/modules/TelnetClient/html/group___http_server_logging_options.js
 share/doc/qore/modules/TelnetClient/html/group___listener_log_options.js
@@ -12311,17 +13092,22 @@ share/doc/qore/modules/TelnetClient/html
 share/doc/qore/modules/TelnetClient/html/group___telnet_option_codes.html
 share/doc/qore/modules/TelnetClient/html/group___telnet_option_codes.js
 share/doc/qore/modules/TelnetClient/html/group__boolean__constants.js
+share/doc/qore/modules/TelnetClient/html/group__breakpoint__policy__options.js
 share/doc/qore/modules/TelnetClient/html/group__call__type__constants.js
 share/doc/qore/modules/TelnetClient/html/group__closecodes.js
 share/doc/qore/modules/TelnetClient/html/group__compression__constants.js
+share/doc/qore/modules/TelnetClient/html/group__compression__transformations.js
 share/doc/qore/modules/TelnetClient/html/group__compresssion__functions.js
 share/doc/qore/modules/TelnetClient/html/group__context__functions.js
+share/doc/qore/modules/TelnetClient/html/group__crypto__transformations.js
 share/doc/qore/modules/TelnetClient/html/group__cryptographic__constants.js
 share/doc/qore/modules/TelnetClient/html/group__cryptographic__functions.js
 share/doc/qore/modules/TelnetClient/html/group__database__driver__constants.js
 share/doc/qore/modules/TelnetClient/html/group__date__and__time__functions.js
 share/doc/qore/modules/TelnetClient/html/group__dbi__capabilities.js
 share/doc/qore/modules/TelnetClient/html/group__dbi__functions.js
+share/doc/qore/modules/TelnetClient/html/group__debug__rc__options.js
+share/doc/qore/modules/TelnetClient/html/group__debug__step__options.js
 share/doc/qore/modules/TelnetClient/html/group__digest__functions.js
 share/doc/qore/modules/TelnetClient/html/group__env__functions.js
 share/doc/qore/modules/TelnetClient/html/group__error__constants.js
@@ -12389,9 +13175,20 @@ share/doc/qore/modules/TelnetClient/html
 share/doc/qore/modules/TelnetClient/html/group__user__and__group__functions.js
 share/doc/qore/modules/TelnetClient/html/group__warning__constants.js
 share/doc/qore/modules/TelnetClient/html/group__x509__verification__constants.js
+share/doc/qore/modules/TelnetClient/html/hierarchy.html
+share/doc/qore/modules/TelnetClient/html/hierarchy.js
 share/doc/qore/modules/TelnetClient/html/index.html
 share/doc/qore/modules/TelnetClient/html/index.qhp
+share/doc/qore/modules/TelnetClient/html/inherit_graph_0.map
+share/doc/qore/modules/TelnetClient/html/inherit_graph_0.md5
+share/doc/qore/modules/TelnetClient/html/inherit_graph_0.png
+share/doc/qore/modules/TelnetClient/html/inherit_graph_1.map
+share/doc/qore/modules/TelnetClient/html/inherit_graph_1.md5
+share/doc/qore/modules/TelnetClient/html/inherit_graph_1.png
+share/doc/qore/modules/TelnetClient/html/inherits.html
 share/doc/qore/modules/TelnetClient/html/jquery.js
+share/doc/qore/modules/TelnetClient/html/menu.js
+share/doc/qore/modules/TelnetClient/html/menudata.js
 share/doc/qore/modules/TelnetClient/html/modules.html
 share/doc/qore/modules/TelnetClient/html/modules.js
 share/doc/qore/modules/TelnetClient/html/namespace_telnet_client.html
@@ -12413,6 +13210,7 @@ share/doc/qore/modules/TelnetClient/html
 share/doc/qore/modules/TelnetClient/html/navtreeindex4.js
 share/doc/qore/modules/TelnetClient/html/navtreeindex5.js
 share/doc/qore/modules/TelnetClient/html/navtreeindex6.js
+share/doc/qore/modules/TelnetClient/html/navtreeindex7.js
 share/doc/qore/modules/TelnetClient/html/open.png
 share/doc/qore/modules/TelnetClient/html/pages.html
 share/doc/qore/modules/TelnetClient/html/resize.js
@@ -12610,6 +13408,12 @@ share/doc/qore/modules/TelnetClient/html
 share/doc/qore/modules/TelnetClient/html/search/namespaces_5.js
 share/doc/qore/modules/TelnetClient/html/search/namespaces_6.html
 share/doc/qore/modules/TelnetClient/html/search/namespaces_6.js
+share/doc/qore/modules/TelnetClient/html/search/namespaces_7.html
+share/doc/qore/modules/TelnetClient/html/search/namespaces_7.js
+share/doc/qore/modules/TelnetClient/html/search/namespaces_8.html
+share/doc/qore/modules/TelnetClient/html/search/namespaces_8.js
+share/doc/qore/modules/TelnetClient/html/search/namespaces_9.html
+share/doc/qore/modules/TelnetClient/html/search/namespaces_9.js
 share/doc/qore/modules/TelnetClient/html/search/nomatches.html
 share/doc/qore/modules/TelnetClient/html/search/pages_0.html
 share/doc/qore/modules/TelnetClient/html/search/pages_0.js
@@ -12712,19 +13516,11 @@ share/doc/qore/modules/TelnetClient/html
 share/doc/qore/modules/TelnetClient/html/tab_s.png
 share/doc/qore/modules/TelnetClient/html/tabs.css
 share/doc/qore/modules/Util/html/_util_8qm_8dox_8h_source.html
-share/doc/qore/modules/Util/html/arrowdown.png
-share/doc/qore/modules/Util/html/arrowright.png
 share/doc/qore/modules/Util/html/bc_s.png
 share/doc/qore/modules/Util/html/bdwn.png
 share/doc/qore/modules/Util/html/closed.png
 share/doc/qore/modules/Util/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/Util/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/Util/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/Util/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/Util/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/Util/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/Util/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/Util/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/Util/html/doc.png
 share/doc/qore/modules/Util/html/doxygen.css
 share/doc/qore/modules/Util/html/doxygen.png
@@ -12737,6 +13533,8 @@ share/doc/qore/modules/Util/html/graph_l
 share/doc/qore/modules/Util/html/index.html
 share/doc/qore/modules/Util/html/index.qhp
 share/doc/qore/modules/Util/html/jquery.js
+share/doc/qore/modules/Util/html/menu.js
+share/doc/qore/modules/Util/html/menudata.js
 share/doc/qore/modules/Util/html/namespace_util.html
 share/doc/qore/modules/Util/html/namespacemembers.html
 share/doc/qore/modules/Util/html/namespacemembers_func.html
@@ -12935,6 +13733,10 @@ share/doc/qore/modules/Util/html/search/
 share/doc/qore/modules/Util/html/search/namespaces_0.js
 share/doc/qore/modules/Util/html/search/namespaces_1.html
 share/doc/qore/modules/Util/html/search/namespaces_1.js
+share/doc/qore/modules/Util/html/search/namespaces_2.html
+share/doc/qore/modules/Util/html/search/namespaces_2.js
+share/doc/qore/modules/Util/html/search/namespaces_3.html
+share/doc/qore/modules/Util/html/search/namespaces_3.js
 share/doc/qore/modules/Util/html/search/nomatches.html
 share/doc/qore/modules/Util/html/search/pages_0.html
 share/doc/qore/modules/Util/html/search/pages_0.js
@@ -13033,23 +13835,21 @@ share/doc/qore/modules/Util/html/tabs.cs
 share/doc/qore/modules/WebSocketClient/html/_web_socket_client_8qm_8dox_8h_source.html
 share/doc/qore/modules/WebSocketClient/html/annotated.html
 share/doc/qore/modules/WebSocketClient/html/annotated_dup.js
-share/doc/qore/modules/WebSocketClient/html/arrowdown.png
-share/doc/qore/modules/WebSocketClient/html/arrowright.png
 share/doc/qore/modules/WebSocketClient/html/bc_s.png
 share/doc/qore/modules/WebSocketClient/html/bdwn.png
 share/doc/qore/modules/WebSocketClient/html/class_web_socket_client_1_1_web_socket_client-members.html
 share/doc/qore/modules/WebSocketClient/html/class_web_socket_client_1_1_web_socket_client.html
 share/doc/qore/modules/WebSocketClient/html/class_web_socket_client_1_1_web_socket_client.js
+share/doc/qore/modules/WebSocketClient/html/class_web_socket_client_1_1_web_socket_connection_object-members.html
+share/doc/qore/modules/WebSocketClient/html/class_web_socket_client_1_1_web_socket_connection_object.html
+share/doc/qore/modules/WebSocketClient/html/class_web_socket_client_1_1_web_socket_connection_object.js
+share/doc/qore/modules/WebSocketClient/html/class_web_socket_client_1_1_web_socket_connection_object__inherit__graph.map
+share/doc/qore/modules/WebSocketClient/html/class_web_socket_client_1_1_web_socket_connection_object__inherit__graph.md5
+share/doc/qore/modules/WebSocketClient/html/class_web_socket_client_1_1_web_socket_connection_object__inherit__graph.png
 share/doc/qore/modules/WebSocketClient/html/classes.html
 share/doc/qore/modules/WebSocketClient/html/closed.png
 share/doc/qore/modules/WebSocketClient/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/WebSocketClient/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/WebSocketClient/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/WebSocketClient/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/WebSocketClient/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/WebSocketClient/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/WebSocketClient/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/WebSocketClient/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/WebSocketClient/html/doc.png
 share/doc/qore/modules/WebSocketClient/html/doxygen.css
 share/doc/qore/modules/WebSocketClient/html/doxygen.png
@@ -13058,12 +13858,24 @@ share/doc/qore/modules/WebSocketClient/h
 share/doc/qore/modules/WebSocketClient/html/folderopen.png
 share/doc/qore/modules/WebSocketClient/html/functions.html
 share/doc/qore/modules/WebSocketClient/html/functions_func.html
+share/doc/qore/modules/WebSocketClient/html/functions_vars.html
 share/doc/qore/modules/WebSocketClient/html/graph_legend.html
 share/doc/qore/modules/WebSocketClient/html/graph_legend.md5
 share/doc/qore/modules/WebSocketClient/html/graph_legend.png
+share/doc/qore/modules/WebSocketClient/html/hierarchy.html
+share/doc/qore/modules/WebSocketClient/html/hierarchy.js
 share/doc/qore/modules/WebSocketClient/html/index.html
 share/doc/qore/modules/WebSocketClient/html/index.qhp
+share/doc/qore/modules/WebSocketClient/html/inherit_graph_0.map
+share/doc/qore/modules/WebSocketClient/html/inherit_graph_0.md5
+share/doc/qore/modules/WebSocketClient/html/inherit_graph_0.png
+share/doc/qore/modules/WebSocketClient/html/inherit_graph_1.map
+share/doc/qore/modules/WebSocketClient/html/inherit_graph_1.md5
+share/doc/qore/modules/WebSocketClient/html/inherit_graph_1.png
+share/doc/qore/modules/WebSocketClient/html/inherits.html
 share/doc/qore/modules/WebSocketClient/html/jquery.js
+share/doc/qore/modules/WebSocketClient/html/menu.js
+share/doc/qore/modules/WebSocketClient/html/menudata.js
 share/doc/qore/modules/WebSocketClient/html/namespace_web_socket_client.html
 share/doc/qore/modules/WebSocketClient/html/namespace_web_socket_client.js
 share/doc/qore/modules/WebSocketClient/html/namespacemembers.html
@@ -13274,6 +14086,12 @@ share/doc/qore/modules/WebSocketClient/h
 share/doc/qore/modules/WebSocketClient/html/search/namespaces_4.js
 share/doc/qore/modules/WebSocketClient/html/search/namespaces_5.html
 share/doc/qore/modules/WebSocketClient/html/search/namespaces_5.js
+share/doc/qore/modules/WebSocketClient/html/search/namespaces_6.html
+share/doc/qore/modules/WebSocketClient/html/search/namespaces_6.js
+share/doc/qore/modules/WebSocketClient/html/search/namespaces_7.html
+share/doc/qore/modules/WebSocketClient/html/search/namespaces_7.js
+share/doc/qore/modules/WebSocketClient/html/search/namespaces_8.html
+share/doc/qore/modules/WebSocketClient/html/search/namespaces_8.js
 share/doc/qore/modules/WebSocketClient/html/search/nomatches.html
 share/doc/qore/modules/WebSocketClient/html/search/pages_0.html
 share/doc/qore/modules/WebSocketClient/html/search/pages_0.js
@@ -13376,8 +14194,6 @@ share/doc/qore/modules/WebSocketClient/h
 share/doc/qore/modules/WebSocketHandler/html/_web_socket_handler_8qm_8dox_8h_source.html
 share/doc/qore/modules/WebSocketHandler/html/annotated.html
 share/doc/qore/modules/WebSocketHandler/html/annotated_dup.js
-share/doc/qore/modules/WebSocketHandler/html/arrowdown.png
-share/doc/qore/modules/WebSocketHandler/html/arrowright.png
 share/doc/qore/modules/WebSocketHandler/html/bc_s.png
 share/doc/qore/modules/WebSocketHandler/html/bdwn.png
 share/doc/qore/modules/WebSocketHandler/html/class_web_socket_handler_1_1_web_socket_connection-members.html
@@ -13392,13 +14208,7 @@ share/doc/qore/modules/WebSocketHandler/
 share/doc/qore/modules/WebSocketHandler/html/classes.html
 share/doc/qore/modules/WebSocketHandler/html/closed.png
 share/doc/qore/modules/WebSocketHandler/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/WebSocketHandler/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/WebSocketHandler/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/WebSocketHandler/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/WebSocketHandler/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/WebSocketHandler/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/WebSocketHandler/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/WebSocketHandler/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/WebSocketHandler/html/doc.png
 share/doc/qore/modules/WebSocketHandler/html/doxygen.css
 share/doc/qore/modules/WebSocketHandler/html/doxygen.png
@@ -13423,6 +14233,8 @@ share/doc/qore/modules/WebSocketHandler/
 share/doc/qore/modules/WebSocketHandler/html/inherit_graph_1.png
 share/doc/qore/modules/WebSocketHandler/html/inherits.html
 share/doc/qore/modules/WebSocketHandler/html/jquery.js
+share/doc/qore/modules/WebSocketHandler/html/menu.js
+share/doc/qore/modules/WebSocketHandler/html/menudata.js
 share/doc/qore/modules/WebSocketHandler/html/namespace_web_socket_handler.html
 share/doc/qore/modules/WebSocketHandler/html/namespace_web_socket_handler.js
 share/doc/qore/modules/WebSocketHandler/html/namespaces.html
@@ -13633,6 +14445,12 @@ share/doc/qore/modules/WebSocketHandler/
 share/doc/qore/modules/WebSocketHandler/html/search/namespaces_4.js
 share/doc/qore/modules/WebSocketHandler/html/search/namespaces_5.html
 share/doc/qore/modules/WebSocketHandler/html/search/namespaces_5.js
+share/doc/qore/modules/WebSocketHandler/html/search/namespaces_6.html
+share/doc/qore/modules/WebSocketHandler/html/search/namespaces_6.js
+share/doc/qore/modules/WebSocketHandler/html/search/namespaces_7.html
+share/doc/qore/modules/WebSocketHandler/html/search/namespaces_7.js
+share/doc/qore/modules/WebSocketHandler/html/search/namespaces_8.html
+share/doc/qore/modules/WebSocketHandler/html/search/namespaces_8.js
 share/doc/qore/modules/WebSocketHandler/html/search/nomatches.html
 share/doc/qore/modules/WebSocketHandler/html/search/pages_0.html
 share/doc/qore/modules/WebSocketHandler/html/search/pages_0.js
@@ -13733,19 +14551,11 @@ share/doc/qore/modules/WebSocketHandler/
 share/doc/qore/modules/WebSocketHandler/html/tab_s.png
 share/doc/qore/modules/WebSocketHandler/html/tabs.css
 share/doc/qore/modules/WebSocketUtil/html/_web_socket_util_8qm_8dox_8h_source.html
-share/doc/qore/modules/WebSocketUtil/html/arrowdown.png
-share/doc/qore/modules/WebSocketUtil/html/arrowright.png
 share/doc/qore/modules/WebSocketUtil/html/bc_s.png
 share/doc/qore/modules/WebSocketUtil/html/bdwn.png
 share/doc/qore/modules/WebSocketUtil/html/closed.png
 share/doc/qore/modules/WebSocketUtil/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/WebSocketUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/WebSocketUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/WebSocketUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/WebSocketUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/WebSocketUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/WebSocketUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/WebSocketUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/WebSocketUtil/html/doc.png
 share/doc/qore/modules/WebSocketUtil/html/doxygen.css
 share/doc/qore/modules/WebSocketUtil/html/doxygen.png
@@ -13755,21 +14565,27 @@ share/doc/qore/modules/WebSocketUtil/htm
 share/doc/qore/modules/WebSocketUtil/html/graph_legend.html
 share/doc/qore/modules/WebSocketUtil/html/graph_legend.md5
 share/doc/qore/modules/WebSocketUtil/html/graph_legend.png
+share/doc/qore/modules/WebSocketUtil/html/group___buffered_stream_reader.js
 share/doc/qore/modules/WebSocketUtil/html/group___string_concat_decoding.js
 share/doc/qore/modules/WebSocketUtil/html/group___string_concat_encoding.js
 share/doc/qore/modules/WebSocketUtil/html/group__boolean__constants.js
+share/doc/qore/modules/WebSocketUtil/html/group__breakpoint__policy__options.js
 share/doc/qore/modules/WebSocketUtil/html/group__call__type__constants.js
 share/doc/qore/modules/WebSocketUtil/html/group__closecodes.html
 share/doc/qore/modules/WebSocketUtil/html/group__closecodes.js
 share/doc/qore/modules/WebSocketUtil/html/group__compression__constants.js
+share/doc/qore/modules/WebSocketUtil/html/group__compression__transformations.js
 share/doc/qore/modules/WebSocketUtil/html/group__compresssion__functions.js
 share/doc/qore/modules/WebSocketUtil/html/group__context__functions.js
+share/doc/qore/modules/WebSocketUtil/html/group__crypto__transformations.js
 share/doc/qore/modules/WebSocketUtil/html/group__cryptographic__constants.js
 share/doc/qore/modules/WebSocketUtil/html/group__cryptographic__functions.js
 share/doc/qore/modules/WebSocketUtil/html/group__database__driver__constants.js
 share/doc/qore/modules/WebSocketUtil/html/group__date__and__time__functions.js
 share/doc/qore/modules/WebSocketUtil/html/group__dbi__capabilities.js
 share/doc/qore/modules/WebSocketUtil/html/group__dbi__functions.js
+share/doc/qore/modules/WebSocketUtil/html/group__debug__rc__options.js
+share/doc/qore/modules/WebSocketUtil/html/group__debug__step__options.js
 share/doc/qore/modules/WebSocketUtil/html/group__digest__functions.js
 share/doc/qore/modules/WebSocketUtil/html/group__env__functions.js
 share/doc/qore/modules/WebSocketUtil/html/group__error__constants.js
@@ -13828,6 +14644,8 @@ share/doc/qore/modules/WebSocketUtil/htm
 share/doc/qore/modules/WebSocketUtil/html/index.html
 share/doc/qore/modules/WebSocketUtil/html/index.qhp
 share/doc/qore/modules/WebSocketUtil/html/jquery.js
+share/doc/qore/modules/WebSocketUtil/html/menu.js
+share/doc/qore/modules/WebSocketUtil/html/menudata.js
 share/doc/qore/modules/WebSocketUtil/html/modules.html
 share/doc/qore/modules/WebSocketUtil/html/modules.js
 share/doc/qore/modules/WebSocketUtil/html/namespace_web_socket_util.html
@@ -14033,6 +14851,10 @@ share/doc/qore/modules/WebSocketUtil/htm
 share/doc/qore/modules/WebSocketUtil/html/search/namespaces_0.js
 share/doc/qore/modules/WebSocketUtil/html/search/namespaces_1.html
 share/doc/qore/modules/WebSocketUtil/html/search/namespaces_1.js
+share/doc/qore/modules/WebSocketUtil/html/search/namespaces_2.html
+share/doc/qore/modules/WebSocketUtil/html/search/namespaces_2.js
+share/doc/qore/modules/WebSocketUtil/html/search/namespaces_3.html
+share/doc/qore/modules/WebSocketUtil/html/search/namespaces_3.js
 share/doc/qore/modules/WebSocketUtil/html/search/nomatches.html
 share/doc/qore/modules/WebSocketUtil/html/search/pages_0.html
 share/doc/qore/modules/WebSocketUtil/html/search/pages_0.js
@@ -14129,8 +14951,6 @@ share/doc/qore/modules/WebSocketUtil/htm
 share/doc/qore/modules/WebUtil/html/_web_util_8qm_8dox_8h_source.html
 share/doc/qore/modules/WebUtil/html/annotated.html
 share/doc/qore/modules/WebUtil/html/annotated_dup.js
-share/doc/qore/modules/WebUtil/html/arrowdown.png
-share/doc/qore/modules/WebUtil/html/arrowright.png
 share/doc/qore/modules/WebUtil/html/bc_s.png
 share/doc/qore/modules/WebUtil/html/bdwn.png
 share/doc/qore/modules/WebUtil/html/class_web_util_1_1_file_handler-members.html
@@ -14172,13 +14992,7 @@ share/doc/qore/modules/WebUtil/html/clas
 share/doc/qore/modules/WebUtil/html/classes.html
 share/doc/qore/modules/WebUtil/html/closed.png
 share/doc/qore/modules/WebUtil/html/dir_13add0083e006ac756009d5942a24d28.html
-share/doc/qore/modules/WebUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.map
-share/doc/qore/modules/WebUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.md5
-share/doc/qore/modules/WebUtil/html/dir_13add0083e006ac756009d5942a24d28_dep.png
 share/doc/qore/modules/WebUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
-share/doc/qore/modules/WebUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.map
-share/doc/qore/modules/WebUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.md5
-share/doc/qore/modules/WebUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a_dep.png
 share/doc/qore/modules/WebUtil/html/doc.png
 share/doc/qore/modules/WebUtil/html/doxygen.css
 share/doc/qore/modules/WebUtil/html/doxygen.png
@@ -14206,6 +15020,8 @@ share/doc/qore/modules/WebUtil/html/inhe
 share/doc/qore/modules/WebUtil/html/inherit_graph_2.png
 share/doc/qore/modules/WebUtil/html/inherits.html
 share/doc/qore/modules/WebUtil/html/jquery.js
+share/doc/qore/modules/WebUtil/html/menu.js
+share/doc/qore/modules/WebUtil/html/menudata.js
 share/doc/qore/modules/WebUtil/html/namespace_web_util.html
 share/doc/qore/modules/WebUtil/html/namespace_web_util.js
 share/doc/qore/modules/WebUtil/html/namespaces.html
@@ -14412,6 +15228,12 @@ share/doc/qore/modules/WebUtil/html/sear
 share/doc/qore/modules/WebUtil/html/search/namespaces_4.js
 share/doc/qore/modules/WebUtil/html/search/namespaces_5.html
 share/doc/qore/modules/WebUtil/html/search/namespaces_5.js
+share/doc/qore/modules/WebUtil/html/search/namespaces_6.html
+share/doc/qore/modules/WebUtil/html/search/namespaces_6.js
+share/doc/qore/modules/WebUtil/html/search/namespaces_7.html
+share/doc/qore/modules/WebUtil/html/search/namespaces_7.js
+share/doc/qore/modules/WebUtil/html/search/namespaces_8.html
+share/doc/qore/modules/WebUtil/html/search/namespaces_8.js
 share/doc/qore/modules/WebUtil/html/search/nomatches.html
 share/doc/qore/modules/WebUtil/html/search/pages_0.html
 share/doc/qore/modules/WebUtil/html/search/pages_0.js
@@ -14530,6 +15352,7 @@ share/qore-modules/0.8.12/QUnit.qm
 share/qore-modules/0.8.12/Qorize.qm
 share/qore-modules/0.8.12/RestClient.qm
 share/qore-modules/0.8.12/RestHandler.qm
+share/qore-modules/0.8.12/SalesforceRestClient.qm
 share/qore-modules/0.8.12/Schema.qm
 share/qore-modules/0.8.12/SmtpClient.qm
 share/qore-modules/0.8.12/SqlUtil.qm

Index: pkgsrc/lang/qore/distinfo
diff -u pkgsrc/lang/qore/distinfo:1.7 pkgsrc/lang/qore/distinfo:1.8
--- pkgsrc/lang/qore/distinfo:1.7       Sat Dec 17 23:30:12 2016
+++ pkgsrc/lang/qore/distinfo   Tue Jun 13 19:23:31 2017
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.7 2016/12/17 23:30:12 joerg Exp $
+$NetBSD: distinfo,v 1.8 2017/06/13 19:23:31 nros Exp $
 
-SHA1 (qore-0.8.12.4.tar.bz2) = 6c39c36a146c0c53a28024681d5b535d40788d1c
-RMD160 (qore-0.8.12.4.tar.bz2) = 05b9590e2cac53e24acd44417c4fc16bc27e7254
-SHA512 (qore-0.8.12.4.tar.bz2) = cfd730ce710e70e874813fbc7fe16a763a6b78f58de384ac00bca81022549e09f16d562dfbe221a03f800e0cc86035efd9dc900f6bdf385132feceaada726529
-Size (qore-0.8.12.4.tar.bz2) = 22136459 bytes
+SHA1 (qore-0.8.12.10.tar.bz2) = 8f1943a694fcee2c2ef4d95b14f7c7653c2d0991
+RMD160 (qore-0.8.12.10.tar.bz2) = a9f3534dbf3ee88124f8e2944d507ba5f8ae24ee
+SHA512 (qore-0.8.12.10.tar.bz2) = 9447dee116566a6feabfa0042e152da1de8309d0ead5c91831e0518b97a3e059af9537598883a9ba76db15fd8a2b43c982be1c411c0a450b3bb3f1d01862032d
+Size (qore-0.8.12.10.tar.bz2) = 23124311 bytes
 SHA1 (patch-include_qore_ReferenceNode.h) = df2dbac13ed9bc5dff4949bc654817e4c5335dd2



Home | Main Index | Thread Index | Old Index