Fri Dec 9 19:00:18 2016 UTC ()
Updated qore to version 0.8.12.4.

Changelog from release notes:

Bug Fixes in Qore:

* fixed a reference bug in the Queue class introduced in the last release
  (issue 1309)
* fixed a bug where database types could not be correctly aligned if they had
  dependencies (issue 1314); entailed updates in the following modules:
    SqlUtil
    FreetdsSqlUtil
    MysqlSqlUtil
    OracleSqlUtil
    PgsqlSqlUtil
    Schema
* fixed a bug in trunc_str() where an infinite loop could be triggered with
  certain arguments and multi-byte character encodings (issue 1327)
* improved prompt collection performance with larger graphs of objects by
  eliminating unnecessary graph scans made during object method calls
  (issue 1363)
* fixed bugs in date(string) and date(string, string) where invalid input data
  was ignored and invalid dates were returned (issue 1369)
* CsvUtil.qm module:
    fixed a bug in AbstractCsvIterator::identifyTypeImpl() generating an
    error message (issue 1355)
* MailMessage.qm module:
    fixed a bug using the default encoding in Message::attach()
    (issue issue 1352)
* SqlUtil.qm module:
  * fixed the ignored character_semantics column option in schema alignmed
    (issue 1379)
  * implemented the cop_length() column function (issue 1395)
* OracleSqlUtil.qm module:
    OraclePackage attribute body_src is now public to access package bodies
* Qorize.qm module:
    Qorize module: new qorize_val() set of functions; qorize_named()
    introduced; qorize tests
* TableMapper.qm module:
  * fixed runtime option propagation to
    TableMapper::SqlStatementMapperIterator from
    TableMapper::AbstractSqlStatementOutboundMapper::iterator()
    (issue 1418)
  * fixed SqlStatementMapperIterator::getCount() (issue 1417)
  * added the following methods:
        TableMapper::AbstractSqlStatementOutboundMapper::getRowIterator()
        TableMapper::InboundTableMapper::iterator()
        TableMapper::InboundTableMapperIterator::getRuntime()
        TableMapper::InboundTableMapperIterator::replaceRuntime()
        TableMapper::InboundTableMapperIterator::setRuntime()
        TableMapper::SqlStatementMapperIterator::getRuntime()
        TableMapper::SqlStatementMapperIterator::replaceRuntime()
        TableMapper::SqlStatementMapperIterator::setRuntime()
* QUnit.qm module:
    fixed showing the assertion location when there are test modules on
    top of QUnit.qm (issue 1046)
* fixed inconsistency between list splice operator and splice function
  (issue 1380)
* fixed the documentation (and DB modules) where
  SQLStatement::fetchColumns() was inconsistent; now it will return a
  empty hash when no more rows are available to fetch (issue 1241)
* added I/O timeout support to the FtpClient class (issue 1252)
* fixed bugs in Socket::recv() and Socket::recvBinary() with size = 0
  where NOTHING could be returned which is invalid according to the
  methods' declared return types (issue 1260)
* fixed a bug where FtpClient:get() would fail with an exception when
  retrieving an empty file (issue 1255)
* fixed a bug where executing a call reference to a deleted object
  method would cause a crash (issue 1268)
* fixed a bug where Qore would allow methods to be called on already
  deleted objects under certain conditions (issue 1270)
* fixed a bug where calling exit() in a multithreaded program could
  result in a segmentation fault (issue 1215)
* fixed a bug where HttpServer::addListener() could not accept a bind on
  port 0 to mean any random port (issue 1284)
* fixed a race condition in prompt collection that could lead to a crash
  (issue 1084)
* fixed a bug clearing Socket event queues when the Socket goes out of
  scope that could lead to a crash (issue 1292)
* fixed a bug with FtpClient::setWarningQueue() that could cause a crash
  (issue 1293)
* fixed a bug where Qore::FtpClient::pwd() returned invalid directory
  names (issue 1295)
* fixed bugs in handling websocket close status codes in the
  WebSocketUtil, WebSocketClient, and WebSocketHandler modules
  (issue 1216)

* TableMapper module fixes:
  * fixed a bug with the SqlStatementOutboundMapper::iterator() method;
    corrected the iterator object return value which was causing
    AbstractMapperIterator::mapBulk() to fail (issue 979)
  * fixed a bug with SqlStatementOutboundMapper; it would throw an error
    if the required "table" or "sh" options were used and only worked
    with subclasses that declared these options (issue 981)
  * fixed a bug where AbstractSqlStatementOutboundMapper::iterator()
    failed to use options when creating the new Mapper object
    (issue 1088)
* fixed a bug where optional arguments were not handled correctly in
  some rare cases (issue 974)
* fixed a bug causing a crash when parse_base64_string_to_string() was
  called with an empty string (issue 996)
* fixed a bug resolving base class method calls during parse
  initialization (issue 1075)
* fixed thread memory handling bug with some operator expressions and
  the background operator (issue 1096)
* fixed a race condition in the prompt collection of closure-bound local
  variables in the garbage collector (issue 1103)
* fixed a bug where HTTPClient class method variants such as
  HTTPClient::get() without a callback would fail to return the message
  body when the server sent a reply with chunked transfer encoding
  (issue 1117)
* fixed a bug in CsvUtil where backward compatibility was broken for
  single-row-type format (issue 1124)
* fixed bugs where declared public functions were missing from the
  library ABI (issue 1126)
* fixed bugs where Qore::format_number() and <float>::format() gave
  incorrect results when rounding to the significant decimals given in
  the format string (issue 1149)
* fixed a bug referencing self in base class constructor arguments
  (issue 1169)
* fixed a bug where the incorrect class destructor was called in the
  openldap module (issue 1174)
* fixed a bug where declaring a copy() method as synchronized would
  result in a crash when the method was called (issue 1188)
* fixed bugs in <string>::getEncoded() and <string>::getDecoded()
  regarding CE_XML and CE_NONASCII (issue 1193)
* fixed bugs where Qore::call_object_method() and
  Qore::call_object_method_args() allowed private methods to be called
  from outside the class (issue 1194)
* fixed a bug where "Deprecated" Functions methods were being internally
  registered as RUNTIME_NOOP (issue 1197)
* fixed bugs where the Datasource class would open a connection to the
  server in the constructor before options were set and where a server
  connection was required to call Datasource::getOption() or
  Datasource::setOption() (issue 1201)
* fixed memory errors in the Queue class where spurious exceptions could
  be raised (issue 1202)
* fixed a memory leak with static class member initializers (issue 1206)


(nros)
diff -r1.10 -r1.11 pkgsrc/lang/qore/Makefile
diff -r1.3 -r1.4 pkgsrc/lang/qore/PLIST
diff -r1.5 -r1.6 pkgsrc/lang/qore/distinfo

cvs diff -r1.10 -r1.11 pkgsrc/lang/qore/Makefile (expand / switch to unified diff)

--- pkgsrc/lang/qore/Makefile 2016/08/07 10:12:58 1.10
+++ pkgsrc/lang/qore/Makefile 2016/12/09 19:00:18 1.11
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.10 2016/08/07 10:12:58 nros Exp $ 1# $NetBSD: Makefile,v 1.11 2016/12/09 19:00:18 nros Exp $
2 2
3DISTNAME= qore-0.8.12 3DISTNAME= qore-0.8.12.4
4CATEGORIES= lang 4CATEGORIES= lang
5MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/} 5MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/}
6EXTRACT_SUFX= .tar.bz2 6EXTRACT_SUFX= .tar.bz2
7 7
8GITHUB_RELEASE= release-${PKGVERSION_NOREV} 8GITHUB_RELEASE= release-${PKGVERSION_NOREV}
9GITHUB_TYPE= release 9GITHUB_TYPE= release
10 10
11MAINTAINER= nros@NetBSD.org 11MAINTAINER= nros@NetBSD.org
12COMMENT= Qore programming language 12COMMENT= Qore programming language
13HOMEPAGE= http://www.qore.org/ 13HOMEPAGE= http://www.qore.org/
14LICENSE= gnu-gpl-v2 OR gnu-lgpl-v2.1 OR mit 14LICENSE= gnu-gpl-v2 OR gnu-lgpl-v2.1 OR mit
15 15
16GNU_CONFIGURE= yes 16GNU_CONFIGURE= yes

cvs diff -r1.3 -r1.4 pkgsrc/lang/qore/PLIST (expand / switch to unified diff)

--- pkgsrc/lang/qore/PLIST 2016/07/25 10:27:52 1.3
+++ pkgsrc/lang/qore/PLIST 2016/12/09 19:00:18 1.4
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.3 2016/07/25 10:27:52 jperkin Exp $ 1@comment $NetBSD: PLIST,v 1.4 2016/12/09 19:00:18 nros Exp $
2bin/qdx 2bin/qdx
3bin/qore 3bin/qore
4bin/qpp 4bin/qpp
5include/qore/AbstractPrivateData.h 5include/qore/AbstractPrivateData.h
6include/qore/AbstractQoreNode.h 6include/qore/AbstractQoreNode.h
7include/qore/AbstractThreadResource.h 7include/qore/AbstractThreadResource.h
8include/qore/AutoVLock.h 8include/qore/AutoVLock.h
9include/qore/BinaryNode.h 9include/qore/BinaryNode.h
10include/qore/BuiltinFunctionList.h 10include/qore/BuiltinFunctionList.h
11include/qore/CallReferenceNode.h 11include/qore/CallReferenceNode.h
12include/qore/DBI.h 12include/qore/DBI.h
13include/qore/Datasource.h 13include/qore/Datasource.h
14include/qore/DateTime.h 14include/qore/DateTime.h
@@ -95,146 +95,180 @@ share/doc/qore/lang/html/_pseudo___q_c__ @@ -95,146 +95,180 @@ share/doc/qore/lang/html/_pseudo___q_c__
95share/doc/qore/lang/html/_pseudo___q_c___closure_8dox_8h_source.html 95share/doc/qore/lang/html/_pseudo___q_c___closure_8dox_8h_source.html
96share/doc/qore/lang/html/_pseudo___q_c___date_8dox_8h_source.html 96share/doc/qore/lang/html/_pseudo___q_c___date_8dox_8h_source.html
97share/doc/qore/lang/html/_pseudo___q_c___float_8dox_8h_source.html 97share/doc/qore/lang/html/_pseudo___q_c___float_8dox_8h_source.html
98share/doc/qore/lang/html/_pseudo___q_c___hash_8dox_8h_source.html 98share/doc/qore/lang/html/_pseudo___q_c___hash_8dox_8h_source.html
99share/doc/qore/lang/html/_pseudo___q_c___int_8dox_8h_source.html 99share/doc/qore/lang/html/_pseudo___q_c___int_8dox_8h_source.html
100share/doc/qore/lang/html/_pseudo___q_c___list_8dox_8h_source.html 100share/doc/qore/lang/html/_pseudo___q_c___list_8dox_8h_source.html
101share/doc/qore/lang/html/_pseudo___q_c___nothing_8dox_8h_source.html 101share/doc/qore/lang/html/_pseudo___q_c___nothing_8dox_8h_source.html
102share/doc/qore/lang/html/_pseudo___q_c___number_8dox_8h_source.html 102share/doc/qore/lang/html/_pseudo___q_c___number_8dox_8h_source.html
103share/doc/qore/lang/html/_pseudo___q_c___object_8dox_8h_source.html 103share/doc/qore/lang/html/_pseudo___q_c___object_8dox_8h_source.html
104share/doc/qore/lang/html/_pseudo___q_c___string_8dox_8h_source.html 104share/doc/qore/lang/html/_pseudo___q_c___string_8dox_8h_source.html
105share/doc/qore/lang/html/_q_c___abstract_bidirectional_iterator_8dox_8h_source.html 105share/doc/qore/lang/html/_q_c___abstract_bidirectional_iterator_8dox_8h_source.html
106share/doc/qore/lang/html/_q_c___abstract_datasource_8dox_8h_source.html 106share/doc/qore/lang/html/_q_c___abstract_datasource_8dox_8h_source.html
107share/doc/qore/lang/html/_q_c___abstract_iterator_8dox_8h_source.html 107share/doc/qore/lang/html/_q_c___abstract_iterator_8dox_8h_source.html
 108share/doc/qore/lang/html/_q_c___abstract_line_iterator_8dox_8h_source.html
108share/doc/qore/lang/html/_q_c___abstract_quantified_bidirectional_iterator_8dox_8h_source.html 109share/doc/qore/lang/html/_q_c___abstract_quantified_bidirectional_iterator_8dox_8h_source.html
109share/doc/qore/lang/html/_q_c___abstract_quantified_iterator_8dox_8h_source.html 110share/doc/qore/lang/html/_q_c___abstract_quantified_iterator_8dox_8h_source.html
110share/doc/qore/lang/html/_q_c___abstract_smart_lock_8dox_8h_source.html 111share/doc/qore/lang/html/_q_c___abstract_smart_lock_8dox_8h_source.html
111share/doc/qore/lang/html/_q_c___abstract_thread_resource_8dox_8h_source.html 112share/doc/qore/lang/html/_q_c___abstract_thread_resource_8dox_8h_source.html
112share/doc/qore/lang/html/_q_c___auto_gate_8dox_8h_source.html 113share/doc/qore/lang/html/_q_c___auto_gate_8dox_8h_source.html
113share/doc/qore/lang/html/_q_c___auto_lock_8dox_8h_source.html 114share/doc/qore/lang/html/_q_c___auto_lock_8dox_8h_source.html
114share/doc/qore/lang/html/_q_c___auto_read_lock_8dox_8h_source.html 115share/doc/qore/lang/html/_q_c___auto_read_lock_8dox_8h_source.html
115share/doc/qore/lang/html/_q_c___auto_write_lock_8dox_8h_source.html 116share/doc/qore/lang/html/_q_c___auto_write_lock_8dox_8h_source.html
116share/doc/qore/lang/html/_q_c___binary_input_stream_8dox_8h_source.html 117share/doc/qore/lang/html/_q_c___binary_input_stream_8dox_8h_source.html
117share/doc/qore/lang/html/_q_c___binary_output_stream_8dox_8h_source.html 118share/doc/qore/lang/html/_q_c___binary_output_stream_8dox_8h_source.html
 119share/doc/qore/lang/html/_q_c___buffered_stream_reader_8dox_8h_source.html
118share/doc/qore/lang/html/_q_c___condition_8dox_8h_source.html 120share/doc/qore/lang/html/_q_c___condition_8dox_8h_source.html
119share/doc/qore/lang/html/_q_c___counter_8dox_8h_source.html 121share/doc/qore/lang/html/_q_c___counter_8dox_8h_source.html
120share/doc/qore/lang/html/_q_c___data_line_iterator_8dox_8h_source.html 122share/doc/qore/lang/html/_q_c___data_line_iterator_8dox_8h_source.html
121share/doc/qore/lang/html/_q_c___datasource_8dox_8h_source.html 123share/doc/qore/lang/html/_q_c___datasource_8dox_8h_source.html
122share/doc/qore/lang/html/_q_c___datasource_pool_8dox_8h_source.html 124share/doc/qore/lang/html/_q_c___datasource_pool_8dox_8h_source.html
123share/doc/qore/lang/html/_q_c___dir_8dox_8h_source.html 125share/doc/qore/lang/html/_q_c___dir_8dox_8h_source.html
124share/doc/qore/lang/html/_q_c___encoding_conversion_input_stream_8dox_8h_source.html 126share/doc/qore/lang/html/_q_c___encoding_conversion_input_stream_8dox_8h_source.html
 127share/doc/qore/lang/html/_q_c___encoding_conversion_output_stream_8dox_8h_source.html
125share/doc/qore/lang/html/_q_c___file_8dox_8h_source.html 128share/doc/qore/lang/html/_q_c___file_8dox_8h_source.html
126share/doc/qore/lang/html/_q_c___file_input_stream_8dox_8h_source.html 129share/doc/qore/lang/html/_q_c___file_input_stream_8dox_8h_source.html
127share/doc/qore/lang/html/_q_c___file_line_iterator_8dox_8h_source.html 130share/doc/qore/lang/html/_q_c___file_line_iterator_8dox_8h_source.html
128share/doc/qore/lang/html/_q_c___file_output_stream_8dox_8h_source.html 131share/doc/qore/lang/html/_q_c___file_output_stream_8dox_8h_source.html
129share/doc/qore/lang/html/_q_c___ftp_client_8dox_8h_source.html 132share/doc/qore/lang/html/_q_c___ftp_client_8dox_8h_source.html
130share/doc/qore/lang/html/_q_c___gate_8dox_8h_source.html 133share/doc/qore/lang/html/_q_c___gate_8dox_8h_source.html
131share/doc/qore/lang/html/_q_c___get_opt_8dox_8h_source.html 134share/doc/qore/lang/html/_q_c___get_opt_8dox_8h_source.html
132share/doc/qore/lang/html/_q_c___h_t_t_p_client_8dox_8h_source.html 135share/doc/qore/lang/html/_q_c___h_t_t_p_client_8dox_8h_source.html
133share/doc/qore/lang/html/_q_c___hash_iterator_8dox_8h_source.html 136share/doc/qore/lang/html/_q_c___hash_iterator_8dox_8h_source.html
134share/doc/qore/lang/html/_q_c___hash_key_iterator_8dox_8h_source.html 137share/doc/qore/lang/html/_q_c___hash_key_iterator_8dox_8h_source.html
135share/doc/qore/lang/html/_q_c___hash_key_reverse_iterator_8dox_8h_source.html 138share/doc/qore/lang/html/_q_c___hash_key_reverse_iterator_8dox_8h_source.html
136share/doc/qore/lang/html/_q_c___hash_list_iterator_8dox_8h_source.html 139share/doc/qore/lang/html/_q_c___hash_list_iterator_8dox_8h_source.html
137share/doc/qore/lang/html/_q_c___hash_list_reverse_iterator_8dox_8h_source.html 140share/doc/qore/lang/html/_q_c___hash_list_reverse_iterator_8dox_8h_source.html
138share/doc/qore/lang/html/_q_c___hash_pair_iterator_8dox_8h_source.html 141share/doc/qore/lang/html/_q_c___hash_pair_iterator_8dox_8h_source.html
139share/doc/qore/lang/html/_q_c___hash_pair_reverse_iterator_8dox_8h_source.html 142share/doc/qore/lang/html/_q_c___hash_pair_reverse_iterator_8dox_8h_source.html
140share/doc/qore/lang/html/_q_c___hash_reverse_iterator_8dox_8h_source.html 143share/doc/qore/lang/html/_q_c___hash_reverse_iterator_8dox_8h_source.html
141share/doc/qore/lang/html/_q_c___input_stream_8dox_8h_source.html 144share/doc/qore/lang/html/_q_c___input_stream_8dox_8h_source.html
 145share/doc/qore/lang/html/_q_c___input_stream_line_iterator_8dox_8h_source.html
142share/doc/qore/lang/html/_q_c___list_hash_iterator_8dox_8h_source.html 146share/doc/qore/lang/html/_q_c___list_hash_iterator_8dox_8h_source.html
143share/doc/qore/lang/html/_q_c___list_hash_reverse_iterator_8dox_8h_source.html 147share/doc/qore/lang/html/_q_c___list_hash_reverse_iterator_8dox_8h_source.html
144share/doc/qore/lang/html/_q_c___list_iterator_8dox_8h_source.html 148share/doc/qore/lang/html/_q_c___list_iterator_8dox_8h_source.html
145share/doc/qore/lang/html/_q_c___list_reverse_iterator_8dox_8h_source.html 149share/doc/qore/lang/html/_q_c___list_reverse_iterator_8dox_8h_source.html
146share/doc/qore/lang/html/_q_c___mutex_8dox_8h_source.html 150share/doc/qore/lang/html/_q_c___mutex_8dox_8h_source.html
147share/doc/qore/lang/html/_q_c___object_iterator_8dox_8h_source.html 151share/doc/qore/lang/html/_q_c___object_iterator_8dox_8h_source.html
148share/doc/qore/lang/html/_q_c___object_key_iterator_8dox_8h_source.html 152share/doc/qore/lang/html/_q_c___object_key_iterator_8dox_8h_source.html
149share/doc/qore/lang/html/_q_c___object_key_reverse_iterator_8dox_8h_source.html 153share/doc/qore/lang/html/_q_c___object_key_reverse_iterator_8dox_8h_source.html
150share/doc/qore/lang/html/_q_c___object_pair_iterator_8dox_8h_source.html 154share/doc/qore/lang/html/_q_c___object_pair_iterator_8dox_8h_source.html
151share/doc/qore/lang/html/_q_c___object_pair_reverse_iterator_8dox_8h_source.html 155share/doc/qore/lang/html/_q_c___object_pair_reverse_iterator_8dox_8h_source.html
152share/doc/qore/lang/html/_q_c___object_reverse_iterator_8dox_8h_source.html 156share/doc/qore/lang/html/_q_c___object_reverse_iterator_8dox_8h_source.html
153share/doc/qore/lang/html/_q_c___output_stream_8dox_8h_source.html 157share/doc/qore/lang/html/_q_c___output_stream_8dox_8h_source.html
 158share/doc/qore/lang/html/_q_c___pipe_input_stream_8dox_8h_source.html
 159share/doc/qore/lang/html/_q_c___pipe_output_stream_8dox_8h_source.html
154share/doc/qore/lang/html/_q_c___program_8dox_8h_source.html 160share/doc/qore/lang/html/_q_c___program_8dox_8h_source.html
155share/doc/qore/lang/html/_q_c___queue_8dox_8h_source.html 161share/doc/qore/lang/html/_q_c___queue_8dox_8h_source.html
156share/doc/qore/lang/html/_q_c___r_w_lock_8dox_8h_source.html 162share/doc/qore/lang/html/_q_c___r_w_lock_8dox_8h_source.html
157share/doc/qore/lang/html/_q_c___range_iterator_8dox_8h_source.html 163share/doc/qore/lang/html/_q_c___range_iterator_8dox_8h_source.html
158share/doc/qore/lang/html/_q_c___read_only_file_8dox_8h_source.html 164share/doc/qore/lang/html/_q_c___read_only_file_8dox_8h_source.html
159share/doc/qore/lang/html/_q_c___s_q_l_statement_8dox_8h_source.html 165share/doc/qore/lang/html/_q_c___s_q_l_statement_8dox_8h_source.html
160share/doc/qore/lang/html/_q_c___s_s_l_certificate_8dox_8h_source.html 166share/doc/qore/lang/html/_q_c___s_s_l_certificate_8dox_8h_source.html
161share/doc/qore/lang/html/_q_c___s_s_l_private_key_8dox_8h_source.html 167share/doc/qore/lang/html/_q_c___s_s_l_private_key_8dox_8h_source.html
162share/doc/qore/lang/html/_q_c___sequence_8dox_8h_source.html 168share/doc/qore/lang/html/_q_c___sequence_8dox_8h_source.html
163share/doc/qore/lang/html/_q_c___single_value_iterator_8dox_8h_source.html 169share/doc/qore/lang/html/_q_c___single_value_iterator_8dox_8h_source.html
164share/doc/qore/lang/html/_q_c___socket_8dox_8h_source.html 170share/doc/qore/lang/html/_q_c___socket_8dox_8h_source.html
 171share/doc/qore/lang/html/_q_c___stderr_output_stream_8dox_8h_source.html
 172share/doc/qore/lang/html/_q_c___stdout_output_stream_8dox_8h_source.html
 173share/doc/qore/lang/html/_q_c___stream_pipe_8dox_8h_source.html
 174share/doc/qore/lang/html/_q_c___stream_reader_8dox_8h_source.html
 175share/doc/qore/lang/html/_q_c___stream_writer_8dox_8h_source.html
 176share/doc/qore/lang/html/_q_c___string_input_stream_8dox_8h_source.html
 177share/doc/qore/lang/html/_q_c___string_output_stream_8dox_8h_source.html
165share/doc/qore/lang/html/_q_c___term_i_o_s_8dox_8h_source.html 178share/doc/qore/lang/html/_q_c___term_i_o_s_8dox_8h_source.html
166share/doc/qore/lang/html/_q_c___thread_pool_8dox_8h_source.html 179share/doc/qore/lang/html/_q_c___thread_pool_8dox_8h_source.html
167share/doc/qore/lang/html/_q_c___time_zone_8dox_8h_source.html 180share/doc/qore/lang/html/_q_c___time_zone_8dox_8h_source.html
 181share/doc/qore/lang/html/_q_c___transform_8dox_8h_source.html
 182share/doc/qore/lang/html/_q_c___transform_input_stream_8dox_8h_source.html
 183share/doc/qore/lang/html/_q_c___transform_output_stream_8dox_8h_source.html
168share/doc/qore/lang/html/_q_c___tree_map_8dox_8h_source.html 184share/doc/qore/lang/html/_q_c___tree_map_8dox_8h_source.html
169share/doc/qore/lang/html/annotated.html 185share/doc/qore/lang/html/annotated.html
170share/doc/qore/lang/html/annotated_dup.js 186share/doc/qore/lang/html/annotated_dup.js
171share/doc/qore/lang/html/arrowdown.png 187share/doc/qore/lang/html/arrowdown.png
172share/doc/qore/lang/html/arrowright.png 188share/doc/qore/lang/html/arrowright.png
173share/doc/qore/lang/html/basic_data_types.html 189share/doc/qore/lang/html/basic_data_types.html
174share/doc/qore/lang/html/bc_s.png 190share/doc/qore/lang/html/bc_s.png
175share/doc/qore/lang/html/bdwn.png 191share/doc/qore/lang/html/bdwn.png
176share/doc/qore/lang/html/bug.html 192share/doc/qore/lang/html/bug.html
177share/doc/qore/lang/html/character_encoding.html 193share/doc/qore/lang/html/character_encoding.html
178share/doc/qore/lang/html/class_qore_1_1_abstract_bidirectional_iterator-members.html 194share/doc/qore/lang/html/class_qore_1_1_abstract_bidirectional_iterator-members.html
179share/doc/qore/lang/html/class_qore_1_1_abstract_bidirectional_iterator.html 195share/doc/qore/lang/html/class_qore_1_1_abstract_bidirectional_iterator.html
180share/doc/qore/lang/html/class_qore_1_1_abstract_bidirectional_iterator.js 196share/doc/qore/lang/html/class_qore_1_1_abstract_bidirectional_iterator.js
181share/doc/qore/lang/html/class_qore_1_1_abstract_bidirectional_iterator__inherit__graph.map 197share/doc/qore/lang/html/class_qore_1_1_abstract_bidirectional_iterator__inherit__graph.map
182share/doc/qore/lang/html/class_qore_1_1_abstract_bidirectional_iterator__inherit__graph.md5 198share/doc/qore/lang/html/class_qore_1_1_abstract_bidirectional_iterator__inherit__graph.md5
183share/doc/qore/lang/html/class_qore_1_1_abstract_bidirectional_iterator__inherit__graph.png 199share/doc/qore/lang/html/class_qore_1_1_abstract_bidirectional_iterator__inherit__graph.png
184share/doc/qore/lang/html/class_qore_1_1_abstract_iterator-members.html 200share/doc/qore/lang/html/class_qore_1_1_abstract_iterator-members.html
185share/doc/qore/lang/html/class_qore_1_1_abstract_iterator.html 201share/doc/qore/lang/html/class_qore_1_1_abstract_iterator.html
186share/doc/qore/lang/html/class_qore_1_1_abstract_iterator.js 202share/doc/qore/lang/html/class_qore_1_1_abstract_iterator.js
187share/doc/qore/lang/html/class_qore_1_1_abstract_iterator__inherit__graph.map 203share/doc/qore/lang/html/class_qore_1_1_abstract_iterator__inherit__graph.map
188share/doc/qore/lang/html/class_qore_1_1_abstract_iterator__inherit__graph.md5 204share/doc/qore/lang/html/class_qore_1_1_abstract_iterator__inherit__graph.md5
189share/doc/qore/lang/html/class_qore_1_1_abstract_iterator__inherit__graph.png 205share/doc/qore/lang/html/class_qore_1_1_abstract_iterator__inherit__graph.png
 206share/doc/qore/lang/html/class_qore_1_1_abstract_line_iterator-members.html
 207share/doc/qore/lang/html/class_qore_1_1_abstract_line_iterator.html
 208share/doc/qore/lang/html/class_qore_1_1_abstract_line_iterator.js
 209share/doc/qore/lang/html/class_qore_1_1_abstract_line_iterator__inherit__graph.map
 210share/doc/qore/lang/html/class_qore_1_1_abstract_line_iterator__inherit__graph.md5
 211share/doc/qore/lang/html/class_qore_1_1_abstract_line_iterator__inherit__graph.png
190share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_bidirectional_iterator-members.html 212share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_bidirectional_iterator-members.html
191share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_bidirectional_iterator.html 213share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_bidirectional_iterator.html
192share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_bidirectional_iterator__inherit__graph.map 214share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_bidirectional_iterator__inherit__graph.map
193share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_bidirectional_iterator__inherit__graph.md5 215share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_bidirectional_iterator__inherit__graph.md5
194share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_bidirectional_iterator__inherit__graph.png 216share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_bidirectional_iterator__inherit__graph.png
195share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_iterator-members.html 217share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_iterator-members.html
196share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_iterator.html 218share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_iterator.html
197share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_iterator.js 219share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_iterator.js
198share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_iterator__inherit__graph.map 220share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_iterator__inherit__graph.map
199share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_iterator__inherit__graph.md5 221share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_iterator__inherit__graph.md5
200share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_iterator__inherit__graph.png 222share/doc/qore/lang/html/class_qore_1_1_abstract_quantified_iterator__inherit__graph.png
201share/doc/qore/lang/html/class_qore_1_1_binary_input_stream-members.html 223share/doc/qore/lang/html/class_qore_1_1_binary_input_stream-members.html
202share/doc/qore/lang/html/class_qore_1_1_binary_input_stream.html 224share/doc/qore/lang/html/class_qore_1_1_binary_input_stream.html
203share/doc/qore/lang/html/class_qore_1_1_binary_input_stream.js 225share/doc/qore/lang/html/class_qore_1_1_binary_input_stream.js
204share/doc/qore/lang/html/class_qore_1_1_binary_input_stream__inherit__graph.map 226share/doc/qore/lang/html/class_qore_1_1_binary_input_stream__inherit__graph.map
205share/doc/qore/lang/html/class_qore_1_1_binary_input_stream__inherit__graph.md5 227share/doc/qore/lang/html/class_qore_1_1_binary_input_stream__inherit__graph.md5
206share/doc/qore/lang/html/class_qore_1_1_binary_input_stream__inherit__graph.png 228share/doc/qore/lang/html/class_qore_1_1_binary_input_stream__inherit__graph.png
207share/doc/qore/lang/html/class_qore_1_1_binary_output_stream-members.html 229share/doc/qore/lang/html/class_qore_1_1_binary_output_stream-members.html
208share/doc/qore/lang/html/class_qore_1_1_binary_output_stream.html 230share/doc/qore/lang/html/class_qore_1_1_binary_output_stream.html
209share/doc/qore/lang/html/class_qore_1_1_binary_output_stream.js 231share/doc/qore/lang/html/class_qore_1_1_binary_output_stream.js
210share/doc/qore/lang/html/class_qore_1_1_binary_output_stream__inherit__graph.map 232share/doc/qore/lang/html/class_qore_1_1_binary_output_stream__inherit__graph.map
211share/doc/qore/lang/html/class_qore_1_1_binary_output_stream__inherit__graph.md5 233share/doc/qore/lang/html/class_qore_1_1_binary_output_stream__inherit__graph.md5
212share/doc/qore/lang/html/class_qore_1_1_binary_output_stream__inherit__graph.png 234share/doc/qore/lang/html/class_qore_1_1_binary_output_stream__inherit__graph.png
 235share/doc/qore/lang/html/class_qore_1_1_buffered_stream_reader-members.html
 236share/doc/qore/lang/html/class_qore_1_1_buffered_stream_reader.html
 237share/doc/qore/lang/html/class_qore_1_1_buffered_stream_reader.js
 238share/doc/qore/lang/html/class_qore_1_1_buffered_stream_reader__inherit__graph.map
 239share/doc/qore/lang/html/class_qore_1_1_buffered_stream_reader__inherit__graph.md5
 240share/doc/qore/lang/html/class_qore_1_1_buffered_stream_reader__inherit__graph.png
213share/doc/qore/lang/html/class_qore_1_1_data_line_iterator-members.html 241share/doc/qore/lang/html/class_qore_1_1_data_line_iterator-members.html
214share/doc/qore/lang/html/class_qore_1_1_data_line_iterator.html 242share/doc/qore/lang/html/class_qore_1_1_data_line_iterator.html
215share/doc/qore/lang/html/class_qore_1_1_data_line_iterator.js 243share/doc/qore/lang/html/class_qore_1_1_data_line_iterator.js
216share/doc/qore/lang/html/class_qore_1_1_data_line_iterator__inherit__graph.map 244share/doc/qore/lang/html/class_qore_1_1_data_line_iterator__inherit__graph.map
217share/doc/qore/lang/html/class_qore_1_1_data_line_iterator__inherit__graph.md5 245share/doc/qore/lang/html/class_qore_1_1_data_line_iterator__inherit__graph.md5
218share/doc/qore/lang/html/class_qore_1_1_data_line_iterator__inherit__graph.png 246share/doc/qore/lang/html/class_qore_1_1_data_line_iterator__inherit__graph.png
219share/doc/qore/lang/html/class_qore_1_1_dir-members.html 247share/doc/qore/lang/html/class_qore_1_1_dir-members.html
220share/doc/qore/lang/html/class_qore_1_1_dir.html 248share/doc/qore/lang/html/class_qore_1_1_dir.html
221share/doc/qore/lang/html/class_qore_1_1_dir.js 249share/doc/qore/lang/html/class_qore_1_1_dir.js
222share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_input_stream-members.html 250share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_input_stream-members.html
223share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_input_stream.html 251share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_input_stream.html
224share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_input_stream.js 252share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_input_stream.js
225share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_input_stream__inherit__graph.map 253share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_input_stream__inherit__graph.map
226share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_input_stream__inherit__graph.md5 254share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_input_stream__inherit__graph.md5
227share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_input_stream__inherit__graph.png 255share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_input_stream__inherit__graph.png
 256share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_output_stream-members.html
 257share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_output_stream.html
 258share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_output_stream.js
 259share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_output_stream__inherit__graph.map
 260share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_output_stream__inherit__graph.md5
 261share/doc/qore/lang/html/class_qore_1_1_encoding_conversion_output_stream__inherit__graph.png
228share/doc/qore/lang/html/class_qore_1_1_file-members.html 262share/doc/qore/lang/html/class_qore_1_1_file-members.html
229share/doc/qore/lang/html/class_qore_1_1_file.html 263share/doc/qore/lang/html/class_qore_1_1_file.html
230share/doc/qore/lang/html/class_qore_1_1_file.js 264share/doc/qore/lang/html/class_qore_1_1_file.js
231share/doc/qore/lang/html/class_qore_1_1_file__inherit__graph.map 265share/doc/qore/lang/html/class_qore_1_1_file__inherit__graph.map
232share/doc/qore/lang/html/class_qore_1_1_file__inherit__graph.md5 266share/doc/qore/lang/html/class_qore_1_1_file__inherit__graph.md5
233share/doc/qore/lang/html/class_qore_1_1_file__inherit__graph.png 267share/doc/qore/lang/html/class_qore_1_1_file__inherit__graph.png
234share/doc/qore/lang/html/class_qore_1_1_file_input_stream-members.html 268share/doc/qore/lang/html/class_qore_1_1_file_input_stream-members.html
235share/doc/qore/lang/html/class_qore_1_1_file_input_stream.html 269share/doc/qore/lang/html/class_qore_1_1_file_input_stream.html
236share/doc/qore/lang/html/class_qore_1_1_file_input_stream.js 270share/doc/qore/lang/html/class_qore_1_1_file_input_stream.js
237share/doc/qore/lang/html/class_qore_1_1_file_input_stream__inherit__graph.map 271share/doc/qore/lang/html/class_qore_1_1_file_input_stream__inherit__graph.map
238share/doc/qore/lang/html/class_qore_1_1_file_input_stream__inherit__graph.md5 272share/doc/qore/lang/html/class_qore_1_1_file_input_stream__inherit__graph.md5
239share/doc/qore/lang/html/class_qore_1_1_file_input_stream__inherit__graph.png 273share/doc/qore/lang/html/class_qore_1_1_file_input_stream__inherit__graph.png
240share/doc/qore/lang/html/class_qore_1_1_file_line_iterator-members.html 274share/doc/qore/lang/html/class_qore_1_1_file_line_iterator-members.html
@@ -305,26 +339,32 @@ share/doc/qore/lang/html/class_qore_1_1_ @@ -305,26 +339,32 @@ share/doc/qore/lang/html/class_qore_1_1_
305share/doc/qore/lang/html/class_qore_1_1_hash_pair_reverse_iterator__inherit__graph.png 339share/doc/qore/lang/html/class_qore_1_1_hash_pair_reverse_iterator__inherit__graph.png
306share/doc/qore/lang/html/class_qore_1_1_hash_reverse_iterator-members.html 340share/doc/qore/lang/html/class_qore_1_1_hash_reverse_iterator-members.html
307share/doc/qore/lang/html/class_qore_1_1_hash_reverse_iterator.html 341share/doc/qore/lang/html/class_qore_1_1_hash_reverse_iterator.html
308share/doc/qore/lang/html/class_qore_1_1_hash_reverse_iterator.js 342share/doc/qore/lang/html/class_qore_1_1_hash_reverse_iterator.js
309share/doc/qore/lang/html/class_qore_1_1_hash_reverse_iterator__inherit__graph.map 343share/doc/qore/lang/html/class_qore_1_1_hash_reverse_iterator__inherit__graph.map
310share/doc/qore/lang/html/class_qore_1_1_hash_reverse_iterator__inherit__graph.md5 344share/doc/qore/lang/html/class_qore_1_1_hash_reverse_iterator__inherit__graph.md5
311share/doc/qore/lang/html/class_qore_1_1_hash_reverse_iterator__inherit__graph.png 345share/doc/qore/lang/html/class_qore_1_1_hash_reverse_iterator__inherit__graph.png
312share/doc/qore/lang/html/class_qore_1_1_input_stream-members.html 346share/doc/qore/lang/html/class_qore_1_1_input_stream-members.html
313share/doc/qore/lang/html/class_qore_1_1_input_stream.html 347share/doc/qore/lang/html/class_qore_1_1_input_stream.html
314share/doc/qore/lang/html/class_qore_1_1_input_stream.js 348share/doc/qore/lang/html/class_qore_1_1_input_stream.js
315share/doc/qore/lang/html/class_qore_1_1_input_stream__inherit__graph.map 349share/doc/qore/lang/html/class_qore_1_1_input_stream__inherit__graph.map
316share/doc/qore/lang/html/class_qore_1_1_input_stream__inherit__graph.md5 350share/doc/qore/lang/html/class_qore_1_1_input_stream__inherit__graph.md5
317share/doc/qore/lang/html/class_qore_1_1_input_stream__inherit__graph.png 351share/doc/qore/lang/html/class_qore_1_1_input_stream__inherit__graph.png
 352share/doc/qore/lang/html/class_qore_1_1_input_stream_line_iterator-members.html
 353share/doc/qore/lang/html/class_qore_1_1_input_stream_line_iterator.html
 354share/doc/qore/lang/html/class_qore_1_1_input_stream_line_iterator.js
 355share/doc/qore/lang/html/class_qore_1_1_input_stream_line_iterator__inherit__graph.map
 356share/doc/qore/lang/html/class_qore_1_1_input_stream_line_iterator__inherit__graph.md5
 357share/doc/qore/lang/html/class_qore_1_1_input_stream_line_iterator__inherit__graph.png
318share/doc/qore/lang/html/class_qore_1_1_list_hash_iterator-members.html 358share/doc/qore/lang/html/class_qore_1_1_list_hash_iterator-members.html
319share/doc/qore/lang/html/class_qore_1_1_list_hash_iterator.html 359share/doc/qore/lang/html/class_qore_1_1_list_hash_iterator.html
320share/doc/qore/lang/html/class_qore_1_1_list_hash_iterator.js 360share/doc/qore/lang/html/class_qore_1_1_list_hash_iterator.js
321share/doc/qore/lang/html/class_qore_1_1_list_hash_iterator__inherit__graph.map 361share/doc/qore/lang/html/class_qore_1_1_list_hash_iterator__inherit__graph.map
322share/doc/qore/lang/html/class_qore_1_1_list_hash_iterator__inherit__graph.md5 362share/doc/qore/lang/html/class_qore_1_1_list_hash_iterator__inherit__graph.md5
323share/doc/qore/lang/html/class_qore_1_1_list_hash_iterator__inherit__graph.png 363share/doc/qore/lang/html/class_qore_1_1_list_hash_iterator__inherit__graph.png
324share/doc/qore/lang/html/class_qore_1_1_list_hash_reverse_iterator-members.html 364share/doc/qore/lang/html/class_qore_1_1_list_hash_reverse_iterator-members.html
325share/doc/qore/lang/html/class_qore_1_1_list_hash_reverse_iterator.html 365share/doc/qore/lang/html/class_qore_1_1_list_hash_reverse_iterator.html
326share/doc/qore/lang/html/class_qore_1_1_list_hash_reverse_iterator.js 366share/doc/qore/lang/html/class_qore_1_1_list_hash_reverse_iterator.js
327share/doc/qore/lang/html/class_qore_1_1_list_hash_reverse_iterator__inherit__graph.map 367share/doc/qore/lang/html/class_qore_1_1_list_hash_reverse_iterator__inherit__graph.map
328share/doc/qore/lang/html/class_qore_1_1_list_hash_reverse_iterator__inherit__graph.md5 368share/doc/qore/lang/html/class_qore_1_1_list_hash_reverse_iterator__inherit__graph.md5
329share/doc/qore/lang/html/class_qore_1_1_list_hash_reverse_iterator__inherit__graph.png 369share/doc/qore/lang/html/class_qore_1_1_list_hash_reverse_iterator__inherit__graph.png
330share/doc/qore/lang/html/class_qore_1_1_list_iterator-members.html 370share/doc/qore/lang/html/class_qore_1_1_list_iterator-members.html
@@ -371,26 +411,38 @@ share/doc/qore/lang/html/class_qore_1_1_ @@ -371,26 +411,38 @@ share/doc/qore/lang/html/class_qore_1_1_
371share/doc/qore/lang/html/class_qore_1_1_object_pair_reverse_iterator__inherit__graph.png 411share/doc/qore/lang/html/class_qore_1_1_object_pair_reverse_iterator__inherit__graph.png
372share/doc/qore/lang/html/class_qore_1_1_object_reverse_iterator-members.html 412share/doc/qore/lang/html/class_qore_1_1_object_reverse_iterator-members.html
373share/doc/qore/lang/html/class_qore_1_1_object_reverse_iterator.html 413share/doc/qore/lang/html/class_qore_1_1_object_reverse_iterator.html
374share/doc/qore/lang/html/class_qore_1_1_object_reverse_iterator.js 414share/doc/qore/lang/html/class_qore_1_1_object_reverse_iterator.js
375share/doc/qore/lang/html/class_qore_1_1_object_reverse_iterator__inherit__graph.map 415share/doc/qore/lang/html/class_qore_1_1_object_reverse_iterator__inherit__graph.map
376share/doc/qore/lang/html/class_qore_1_1_object_reverse_iterator__inherit__graph.md5 416share/doc/qore/lang/html/class_qore_1_1_object_reverse_iterator__inherit__graph.md5
377share/doc/qore/lang/html/class_qore_1_1_object_reverse_iterator__inherit__graph.png 417share/doc/qore/lang/html/class_qore_1_1_object_reverse_iterator__inherit__graph.png
378share/doc/qore/lang/html/class_qore_1_1_output_stream-members.html 418share/doc/qore/lang/html/class_qore_1_1_output_stream-members.html
379share/doc/qore/lang/html/class_qore_1_1_output_stream.html 419share/doc/qore/lang/html/class_qore_1_1_output_stream.html
380share/doc/qore/lang/html/class_qore_1_1_output_stream.js 420share/doc/qore/lang/html/class_qore_1_1_output_stream.js
381share/doc/qore/lang/html/class_qore_1_1_output_stream__inherit__graph.map 421share/doc/qore/lang/html/class_qore_1_1_output_stream__inherit__graph.map
382share/doc/qore/lang/html/class_qore_1_1_output_stream__inherit__graph.md5 422share/doc/qore/lang/html/class_qore_1_1_output_stream__inherit__graph.md5
383share/doc/qore/lang/html/class_qore_1_1_output_stream__inherit__graph.png 423share/doc/qore/lang/html/class_qore_1_1_output_stream__inherit__graph.png
 424share/doc/qore/lang/html/class_qore_1_1_pipe_input_stream-members.html
 425share/doc/qore/lang/html/class_qore_1_1_pipe_input_stream.html
 426share/doc/qore/lang/html/class_qore_1_1_pipe_input_stream.js
 427share/doc/qore/lang/html/class_qore_1_1_pipe_input_stream__inherit__graph.map
 428share/doc/qore/lang/html/class_qore_1_1_pipe_input_stream__inherit__graph.md5
 429share/doc/qore/lang/html/class_qore_1_1_pipe_input_stream__inherit__graph.png
 430share/doc/qore/lang/html/class_qore_1_1_pipe_output_stream-members.html
 431share/doc/qore/lang/html/class_qore_1_1_pipe_output_stream.html
 432share/doc/qore/lang/html/class_qore_1_1_pipe_output_stream.js
 433share/doc/qore/lang/html/class_qore_1_1_pipe_output_stream__inherit__graph.map
 434share/doc/qore/lang/html/class_qore_1_1_pipe_output_stream__inherit__graph.md5
 435share/doc/qore/lang/html/class_qore_1_1_pipe_output_stream__inherit__graph.png
384share/doc/qore/lang/html/class_qore_1_1_program-members.html 436share/doc/qore/lang/html/class_qore_1_1_program-members.html
385share/doc/qore/lang/html/class_qore_1_1_program.html 437share/doc/qore/lang/html/class_qore_1_1_program.html
386share/doc/qore/lang/html/class_qore_1_1_program.js 438share/doc/qore/lang/html/class_qore_1_1_program.js
387share/doc/qore/lang/html/class_qore_1_1_range_iterator-members.html 439share/doc/qore/lang/html/class_qore_1_1_range_iterator-members.html
388share/doc/qore/lang/html/class_qore_1_1_range_iterator.html 440share/doc/qore/lang/html/class_qore_1_1_range_iterator.html
389share/doc/qore/lang/html/class_qore_1_1_range_iterator.js 441share/doc/qore/lang/html/class_qore_1_1_range_iterator.js
390share/doc/qore/lang/html/class_qore_1_1_range_iterator__inherit__graph.map 442share/doc/qore/lang/html/class_qore_1_1_range_iterator__inherit__graph.map
391share/doc/qore/lang/html/class_qore_1_1_range_iterator__inherit__graph.md5 443share/doc/qore/lang/html/class_qore_1_1_range_iterator__inherit__graph.md5
392share/doc/qore/lang/html/class_qore_1_1_range_iterator__inherit__graph.png 444share/doc/qore/lang/html/class_qore_1_1_range_iterator__inherit__graph.png
393share/doc/qore/lang/html/class_qore_1_1_read_only_file-members.html 445share/doc/qore/lang/html/class_qore_1_1_read_only_file-members.html
394share/doc/qore/lang/html/class_qore_1_1_read_only_file.html 446share/doc/qore/lang/html/class_qore_1_1_read_only_file.html
395share/doc/qore/lang/html/class_qore_1_1_read_only_file.js 447share/doc/qore/lang/html/class_qore_1_1_read_only_file.js
396share/doc/qore/lang/html/class_qore_1_1_read_only_file__inherit__graph.map 448share/doc/qore/lang/html/class_qore_1_1_read_only_file__inherit__graph.map
@@ -428,26 +480,62 @@ share/doc/qore/lang/html/class_qore_1_1_ @@ -428,26 +480,62 @@ share/doc/qore/lang/html/class_qore_1_1_
428share/doc/qore/lang/html/class_qore_1_1_s_s_l_private_key.js 480share/doc/qore/lang/html/class_qore_1_1_s_s_l_private_key.js
429share/doc/qore/lang/html/class_qore_1_1_single_value_iterator-members.html 481share/doc/qore/lang/html/class_qore_1_1_single_value_iterator-members.html
430share/doc/qore/lang/html/class_qore_1_1_single_value_iterator.html 482share/doc/qore/lang/html/class_qore_1_1_single_value_iterator.html
431share/doc/qore/lang/html/class_qore_1_1_single_value_iterator.js 483share/doc/qore/lang/html/class_qore_1_1_single_value_iterator.js
432share/doc/qore/lang/html/class_qore_1_1_single_value_iterator__inherit__graph.map 484share/doc/qore/lang/html/class_qore_1_1_single_value_iterator__inherit__graph.map
433share/doc/qore/lang/html/class_qore_1_1_single_value_iterator__inherit__graph.md5 485share/doc/qore/lang/html/class_qore_1_1_single_value_iterator__inherit__graph.md5
434share/doc/qore/lang/html/class_qore_1_1_single_value_iterator__inherit__graph.png 486share/doc/qore/lang/html/class_qore_1_1_single_value_iterator__inherit__graph.png
435share/doc/qore/lang/html/class_qore_1_1_socket-members.html 487share/doc/qore/lang/html/class_qore_1_1_socket-members.html
436share/doc/qore/lang/html/class_qore_1_1_socket.html 488share/doc/qore/lang/html/class_qore_1_1_socket.html
437share/doc/qore/lang/html/class_qore_1_1_socket.js 489share/doc/qore/lang/html/class_qore_1_1_socket.js
438share/doc/qore/lang/html/class_qore_1_1_socket__inherit__graph.map 490share/doc/qore/lang/html/class_qore_1_1_socket__inherit__graph.map
439share/doc/qore/lang/html/class_qore_1_1_socket__inherit__graph.md5 491share/doc/qore/lang/html/class_qore_1_1_socket__inherit__graph.md5
440share/doc/qore/lang/html/class_qore_1_1_socket__inherit__graph.png 492share/doc/qore/lang/html/class_qore_1_1_socket__inherit__graph.png
 493share/doc/qore/lang/html/class_qore_1_1_stderr_output_stream-members.html
 494share/doc/qore/lang/html/class_qore_1_1_stderr_output_stream.html
 495share/doc/qore/lang/html/class_qore_1_1_stderr_output_stream.js
 496share/doc/qore/lang/html/class_qore_1_1_stderr_output_stream__inherit__graph.map
 497share/doc/qore/lang/html/class_qore_1_1_stderr_output_stream__inherit__graph.md5
 498share/doc/qore/lang/html/class_qore_1_1_stderr_output_stream__inherit__graph.png
 499share/doc/qore/lang/html/class_qore_1_1_stdout_output_stream-members.html
 500share/doc/qore/lang/html/class_qore_1_1_stdout_output_stream.html
 501share/doc/qore/lang/html/class_qore_1_1_stdout_output_stream.js
 502share/doc/qore/lang/html/class_qore_1_1_stdout_output_stream__inherit__graph.map
 503share/doc/qore/lang/html/class_qore_1_1_stdout_output_stream__inherit__graph.md5
 504share/doc/qore/lang/html/class_qore_1_1_stdout_output_stream__inherit__graph.png
 505share/doc/qore/lang/html/class_qore_1_1_stream_pipe-members.html
 506share/doc/qore/lang/html/class_qore_1_1_stream_pipe.html
 507share/doc/qore/lang/html/class_qore_1_1_stream_pipe.js
 508share/doc/qore/lang/html/class_qore_1_1_stream_reader-members.html
 509share/doc/qore/lang/html/class_qore_1_1_stream_reader.html
 510share/doc/qore/lang/html/class_qore_1_1_stream_reader.js
 511share/doc/qore/lang/html/class_qore_1_1_stream_reader__inherit__graph.map
 512share/doc/qore/lang/html/class_qore_1_1_stream_reader__inherit__graph.md5
 513share/doc/qore/lang/html/class_qore_1_1_stream_reader__inherit__graph.png
 514share/doc/qore/lang/html/class_qore_1_1_stream_writer-members.html
 515share/doc/qore/lang/html/class_qore_1_1_stream_writer.html
 516share/doc/qore/lang/html/class_qore_1_1_stream_writer.js
 517share/doc/qore/lang/html/class_qore_1_1_string_input_stream-members.html
 518share/doc/qore/lang/html/class_qore_1_1_string_input_stream.html
 519share/doc/qore/lang/html/class_qore_1_1_string_input_stream.js
 520share/doc/qore/lang/html/class_qore_1_1_string_input_stream__inherit__graph.map
 521share/doc/qore/lang/html/class_qore_1_1_string_input_stream__inherit__graph.md5
 522share/doc/qore/lang/html/class_qore_1_1_string_input_stream__inherit__graph.png
 523share/doc/qore/lang/html/class_qore_1_1_string_output_stream-members.html
 524share/doc/qore/lang/html/class_qore_1_1_string_output_stream.html
 525share/doc/qore/lang/html/class_qore_1_1_string_output_stream.js
 526share/doc/qore/lang/html/class_qore_1_1_string_output_stream__inherit__graph.map
 527share/doc/qore/lang/html/class_qore_1_1_string_output_stream__inherit__graph.md5
 528share/doc/qore/lang/html/class_qore_1_1_string_output_stream__inherit__graph.png
441share/doc/qore/lang/html/class_qore_1_1_term_i_o_s-members.html 529share/doc/qore/lang/html/class_qore_1_1_term_i_o_s-members.html
442share/doc/qore/lang/html/class_qore_1_1_term_i_o_s.html 530share/doc/qore/lang/html/class_qore_1_1_term_i_o_s.html
443share/doc/qore/lang/html/class_qore_1_1_term_i_o_s.js 531share/doc/qore/lang/html/class_qore_1_1_term_i_o_s.js
444share/doc/qore/lang/html/class_qore_1_1_thread_1_1_abstract_smart_lock-members.html 532share/doc/qore/lang/html/class_qore_1_1_thread_1_1_abstract_smart_lock-members.html
445share/doc/qore/lang/html/class_qore_1_1_thread_1_1_abstract_smart_lock.html 533share/doc/qore/lang/html/class_qore_1_1_thread_1_1_abstract_smart_lock.html
446share/doc/qore/lang/html/class_qore_1_1_thread_1_1_abstract_smart_lock.js 534share/doc/qore/lang/html/class_qore_1_1_thread_1_1_abstract_smart_lock.js
447share/doc/qore/lang/html/class_qore_1_1_thread_1_1_abstract_smart_lock__inherit__graph.map 535share/doc/qore/lang/html/class_qore_1_1_thread_1_1_abstract_smart_lock__inherit__graph.map
448share/doc/qore/lang/html/class_qore_1_1_thread_1_1_abstract_smart_lock__inherit__graph.md5 536share/doc/qore/lang/html/class_qore_1_1_thread_1_1_abstract_smart_lock__inherit__graph.md5
449share/doc/qore/lang/html/class_qore_1_1_thread_1_1_abstract_smart_lock__inherit__graph.png 537share/doc/qore/lang/html/class_qore_1_1_thread_1_1_abstract_smart_lock__inherit__graph.png
450share/doc/qore/lang/html/class_qore_1_1_thread_1_1_abstract_thread_resource-members.html 538share/doc/qore/lang/html/class_qore_1_1_thread_1_1_abstract_thread_resource-members.html
451share/doc/qore/lang/html/class_qore_1_1_thread_1_1_abstract_thread_resource.html 539share/doc/qore/lang/html/class_qore_1_1_thread_1_1_abstract_thread_resource.html
452share/doc/qore/lang/html/class_qore_1_1_thread_1_1_abstract_thread_resource.js 540share/doc/qore/lang/html/class_qore_1_1_thread_1_1_abstract_thread_resource.js
453share/doc/qore/lang/html/class_qore_1_1_thread_1_1_auto_gate-members.html 541share/doc/qore/lang/html/class_qore_1_1_thread_1_1_auto_gate-members.html
@@ -485,26 +573,40 @@ share/doc/qore/lang/html/class_qore_1_1_ @@ -485,26 +573,40 @@ share/doc/qore/lang/html/class_qore_1_1_
485share/doc/qore/lang/html/class_qore_1_1_thread_1_1_r_w_lock.js 573share/doc/qore/lang/html/class_qore_1_1_thread_1_1_r_w_lock.js
486share/doc/qore/lang/html/class_qore_1_1_thread_1_1_r_w_lock__inherit__graph.map 574share/doc/qore/lang/html/class_qore_1_1_thread_1_1_r_w_lock__inherit__graph.map
487share/doc/qore/lang/html/class_qore_1_1_thread_1_1_r_w_lock__inherit__graph.md5 575share/doc/qore/lang/html/class_qore_1_1_thread_1_1_r_w_lock__inherit__graph.md5
488share/doc/qore/lang/html/class_qore_1_1_thread_1_1_r_w_lock__inherit__graph.png 576share/doc/qore/lang/html/class_qore_1_1_thread_1_1_r_w_lock__inherit__graph.png
489share/doc/qore/lang/html/class_qore_1_1_thread_1_1_sequence-members.html 577share/doc/qore/lang/html/class_qore_1_1_thread_1_1_sequence-members.html
490share/doc/qore/lang/html/class_qore_1_1_thread_1_1_sequence.html 578share/doc/qore/lang/html/class_qore_1_1_thread_1_1_sequence.html
491share/doc/qore/lang/html/class_qore_1_1_thread_1_1_sequence.js 579share/doc/qore/lang/html/class_qore_1_1_thread_1_1_sequence.js
492share/doc/qore/lang/html/class_qore_1_1_thread_1_1_thread_pool-members.html 580share/doc/qore/lang/html/class_qore_1_1_thread_1_1_thread_pool-members.html
493share/doc/qore/lang/html/class_qore_1_1_thread_1_1_thread_pool.html 581share/doc/qore/lang/html/class_qore_1_1_thread_1_1_thread_pool.html
494share/doc/qore/lang/html/class_qore_1_1_thread_1_1_thread_pool.js 582share/doc/qore/lang/html/class_qore_1_1_thread_1_1_thread_pool.js
495share/doc/qore/lang/html/class_qore_1_1_time_zone-members.html 583share/doc/qore/lang/html/class_qore_1_1_time_zone-members.html
496share/doc/qore/lang/html/class_qore_1_1_time_zone.html 584share/doc/qore/lang/html/class_qore_1_1_time_zone.html
497share/doc/qore/lang/html/class_qore_1_1_time_zone.js 585share/doc/qore/lang/html/class_qore_1_1_time_zone.js
 586share/doc/qore/lang/html/class_qore_1_1_transform-members.html
 587share/doc/qore/lang/html/class_qore_1_1_transform.html
 588share/doc/qore/lang/html/class_qore_1_1_transform_input_stream-members.html
 589share/doc/qore/lang/html/class_qore_1_1_transform_input_stream.html
 590share/doc/qore/lang/html/class_qore_1_1_transform_input_stream.js
 591share/doc/qore/lang/html/class_qore_1_1_transform_input_stream__inherit__graph.map
 592share/doc/qore/lang/html/class_qore_1_1_transform_input_stream__inherit__graph.md5
 593share/doc/qore/lang/html/class_qore_1_1_transform_input_stream__inherit__graph.png
 594share/doc/qore/lang/html/class_qore_1_1_transform_output_stream-members.html
 595share/doc/qore/lang/html/class_qore_1_1_transform_output_stream.html
 596share/doc/qore/lang/html/class_qore_1_1_transform_output_stream.js
 597share/doc/qore/lang/html/class_qore_1_1_transform_output_stream__inherit__graph.map
 598share/doc/qore/lang/html/class_qore_1_1_transform_output_stream__inherit__graph.md5
 599share/doc/qore/lang/html/class_qore_1_1_transform_output_stream__inherit__graph.png
498share/doc/qore/lang/html/class_qore_1_1_tree_map-members.html 600share/doc/qore/lang/html/class_qore_1_1_tree_map-members.html
499share/doc/qore/lang/html/class_qore_1_1_tree_map.html 601share/doc/qore/lang/html/class_qore_1_1_tree_map.html
500share/doc/qore/lang/html/class_qore_1_1_tree_map.js 602share/doc/qore/lang/html/class_qore_1_1_tree_map.js
501share/doc/qore/lang/html/class_qore_1_1zzz8binaryzzz9-members.html 603share/doc/qore/lang/html/class_qore_1_1zzz8binaryzzz9-members.html
502share/doc/qore/lang/html/class_qore_1_1zzz8binaryzzz9.html 604share/doc/qore/lang/html/class_qore_1_1zzz8binaryzzz9.html
503share/doc/qore/lang/html/class_qore_1_1zzz8binaryzzz9.js 605share/doc/qore/lang/html/class_qore_1_1zzz8binaryzzz9.js
504share/doc/qore/lang/html/class_qore_1_1zzz8binaryzzz9__inherit__graph.map 606share/doc/qore/lang/html/class_qore_1_1zzz8binaryzzz9__inherit__graph.map
505share/doc/qore/lang/html/class_qore_1_1zzz8binaryzzz9__inherit__graph.md5 607share/doc/qore/lang/html/class_qore_1_1zzz8binaryzzz9__inherit__graph.md5
506share/doc/qore/lang/html/class_qore_1_1zzz8binaryzzz9__inherit__graph.png 608share/doc/qore/lang/html/class_qore_1_1zzz8binaryzzz9__inherit__graph.png
507share/doc/qore/lang/html/class_qore_1_1zzz8boolzzz9-members.html 609share/doc/qore/lang/html/class_qore_1_1zzz8boolzzz9-members.html
508share/doc/qore/lang/html/class_qore_1_1zzz8boolzzz9.html 610share/doc/qore/lang/html/class_qore_1_1zzz8boolzzz9.html
509share/doc/qore/lang/html/class_qore_1_1zzz8boolzzz9.js 611share/doc/qore/lang/html/class_qore_1_1zzz8boolzzz9.js
510share/doc/qore/lang/html/class_qore_1_1zzz8boolzzz9__inherit__graph.map 612share/doc/qore/lang/html/class_qore_1_1zzz8boolzzz9__inherit__graph.map
@@ -662,26 +764,28 @@ share/doc/qore/lang/html/functions_z.htm @@ -662,26 +764,28 @@ share/doc/qore/lang/html/functions_z.htm
662share/doc/qore/lang/html/graph_legend.html 764share/doc/qore/lang/html/graph_legend.html
663share/doc/qore/lang/html/graph_legend.md5 765share/doc/qore/lang/html/graph_legend.md5
664share/doc/qore/lang/html/graph_legend.png 766share/doc/qore/lang/html/graph_legend.png
665share/doc/qore/lang/html/group___string_concat_decoding.html 767share/doc/qore/lang/html/group___string_concat_decoding.html
666share/doc/qore/lang/html/group___string_concat_decoding.js 768share/doc/qore/lang/html/group___string_concat_decoding.js
667share/doc/qore/lang/html/group___string_concat_encoding.html 769share/doc/qore/lang/html/group___string_concat_encoding.html
668share/doc/qore/lang/html/group___string_concat_encoding.js 770share/doc/qore/lang/html/group___string_concat_encoding.js
669share/doc/qore/lang/html/group__boolean__constants.html 771share/doc/qore/lang/html/group__boolean__constants.html
670share/doc/qore/lang/html/group__boolean__constants.js 772share/doc/qore/lang/html/group__boolean__constants.js
671share/doc/qore/lang/html/group__call__type__constants.html 773share/doc/qore/lang/html/group__call__type__constants.html
672share/doc/qore/lang/html/group__call__type__constants.js 774share/doc/qore/lang/html/group__call__type__constants.js
673share/doc/qore/lang/html/group__compression__constants.html 775share/doc/qore/lang/html/group__compression__constants.html
674share/doc/qore/lang/html/group__compression__constants.js 776share/doc/qore/lang/html/group__compression__constants.js
 777share/doc/qore/lang/html/group__compression__transformations.html
 778share/doc/qore/lang/html/group__compression__transformations.js
675share/doc/qore/lang/html/group__compresssion__functions.html 779share/doc/qore/lang/html/group__compresssion__functions.html
676share/doc/qore/lang/html/group__compresssion__functions.js 780share/doc/qore/lang/html/group__compresssion__functions.js
677share/doc/qore/lang/html/group__context__functions.html 781share/doc/qore/lang/html/group__context__functions.html
678share/doc/qore/lang/html/group__context__functions.js 782share/doc/qore/lang/html/group__context__functions.js
679share/doc/qore/lang/html/group__cryptographic__constants.html 783share/doc/qore/lang/html/group__cryptographic__constants.html
680share/doc/qore/lang/html/group__cryptographic__constants.js 784share/doc/qore/lang/html/group__cryptographic__constants.js
681share/doc/qore/lang/html/group__cryptographic__functions.html 785share/doc/qore/lang/html/group__cryptographic__functions.html
682share/doc/qore/lang/html/group__cryptographic__functions.js 786share/doc/qore/lang/html/group__cryptographic__functions.js
683share/doc/qore/lang/html/group__database__driver__constants.html 787share/doc/qore/lang/html/group__database__driver__constants.html
684share/doc/qore/lang/html/group__database__driver__constants.js 788share/doc/qore/lang/html/group__database__driver__constants.js
685share/doc/qore/lang/html/group__date__and__time__functions.html 789share/doc/qore/lang/html/group__date__and__time__functions.html
686share/doc/qore/lang/html/group__date__and__time__functions.js 790share/doc/qore/lang/html/group__date__and__time__functions.js
687share/doc/qore/lang/html/group__dbi__capabilities.html 791share/doc/qore/lang/html/group__dbi__capabilities.html
@@ -704,48 +808,48 @@ share/doc/qore/lang/html/group__exceptio @@ -704,48 +808,48 @@ share/doc/qore/lang/html/group__exceptio
704share/doc/qore/lang/html/group__exception__type__constants.js 808share/doc/qore/lang/html/group__exception__type__constants.js
705share/doc/qore/lang/html/group__file__locking__constants.html 809share/doc/qore/lang/html/group__file__locking__constants.html
706share/doc/qore/lang/html/group__file__locking__constants.js 810share/doc/qore/lang/html/group__file__locking__constants.js
707share/doc/qore/lang/html/group__file__open__constants.html 811share/doc/qore/lang/html/group__file__open__constants.html
708share/doc/qore/lang/html/group__file__open__constants.js 812share/doc/qore/lang/html/group__file__open__constants.js
709share/doc/qore/lang/html/group__file__seek__constants.html 813share/doc/qore/lang/html/group__file__seek__constants.html
710share/doc/qore/lang/html/group__file__seek__constants.js 814share/doc/qore/lang/html/group__file__seek__constants.js
711share/doc/qore/lang/html/group__file__stat__constants.html 815share/doc/qore/lang/html/group__file__stat__constants.html
712share/doc/qore/lang/html/group__file__stat__constants.js 816share/doc/qore/lang/html/group__file__stat__constants.js
713share/doc/qore/lang/html/group__filesystem__functions.html 817share/doc/qore/lang/html/group__filesystem__functions.html
714share/doc/qore/lang/html/group__filesystem__functions.js 818share/doc/qore/lang/html/group__filesystem__functions.js
715share/doc/qore/lang/html/group__hmac__functions.html 819share/doc/qore/lang/html/group__hmac__functions.html
716share/doc/qore/lang/html/group__hmac__functions.js 820share/doc/qore/lang/html/group__hmac__functions.js
717share/doc/qore/lang/html/group__input__stream__function.html 
718share/doc/qore/lang/html/group__input__stream__function.js 
719share/doc/qore/lang/html/group__io__constants.html 821share/doc/qore/lang/html/group__io__constants.html
720share/doc/qore/lang/html/group__io__constants.js 822share/doc/qore/lang/html/group__io__constants.js
721share/doc/qore/lang/html/group__library__functions.html 823share/doc/qore/lang/html/group__library__functions.html
722share/doc/qore/lang/html/group__library__functions.js 824share/doc/qore/lang/html/group__library__functions.js
723share/doc/qore/lang/html/group__list__functions.html 825share/doc/qore/lang/html/group__list__functions.html
724share/doc/qore/lang/html/group__list__functions.js 826share/doc/qore/lang/html/group__list__functions.js
725share/doc/qore/lang/html/group__math__constants.html 827share/doc/qore/lang/html/group__math__constants.html
726share/doc/qore/lang/html/group__math__constants.js 828share/doc/qore/lang/html/group__math__constants.js
727share/doc/qore/lang/html/group__math__functions.html 829share/doc/qore/lang/html/group__math__functions.html
728share/doc/qore/lang/html/group__math__functions.js 830share/doc/qore/lang/html/group__math__functions.js
729share/doc/qore/lang/html/group__misc__functions.html 831share/doc/qore/lang/html/group__misc__functions.html
730share/doc/qore/lang/html/group__misc__functions.js 832share/doc/qore/lang/html/group__misc__functions.js
731share/doc/qore/lang/html/group__network__address__family__constants.html 833share/doc/qore/lang/html/group__network__address__family__constants.html
732share/doc/qore/lang/html/group__network__address__family__constants.js 834share/doc/qore/lang/html/group__network__address__family__constants.js
733share/doc/qore/lang/html/group__network__address__information__constants.html 835share/doc/qore/lang/html/group__network__address__information__constants.html
734share/doc/qore/lang/html/group__network__address__information__constants.js 836share/doc/qore/lang/html/group__network__address__information__constants.js
735share/doc/qore/lang/html/group__null__and__nothing__constants.html 837share/doc/qore/lang/html/group__null__and__nothing__constants.html
736share/doc/qore/lang/html/group__null__and__nothing__constants.js 838share/doc/qore/lang/html/group__null__and__nothing__constants.js
737share/doc/qore/lang/html/group__number__formatting__constants.html 839share/doc/qore/lang/html/group__number__formatting__constants.html
738share/doc/qore/lang/html/group__number__formatting__constants.js 840share/doc/qore/lang/html/group__number__formatting__constants.js
 841share/doc/qore/lang/html/group__number__string__formatting__constants.html
 842share/doc/qore/lang/html/group__number__string__formatting__constants.js
739share/doc/qore/lang/html/group__object__functions.html 843share/doc/qore/lang/html/group__object__functions.html
740share/doc/qore/lang/html/group__object__functions.js 844share/doc/qore/lang/html/group__object__functions.js
741share/doc/qore/lang/html/group__old__dbi__functions.html 845share/doc/qore/lang/html/group__old__dbi__functions.html
742share/doc/qore/lang/html/group__old__dbi__functions.js 846share/doc/qore/lang/html/group__old__dbi__functions.js
743share/doc/qore/lang/html/group__option__constants.html 847share/doc/qore/lang/html/group__option__constants.html
744share/doc/qore/lang/html/group__option__constants.js 848share/doc/qore/lang/html/group__option__constants.js
745share/doc/qore/lang/html/group__parse__options.html 849share/doc/qore/lang/html/group__parse__options.html
746share/doc/qore/lang/html/group__parse__options.js 850share/doc/qore/lang/html/group__parse__options.js
747share/doc/qore/lang/html/group__protocol__constants.html 851share/doc/qore/lang/html/group__protocol__constants.html
748share/doc/qore/lang/html/group__protocol__constants.js 852share/doc/qore/lang/html/group__protocol__constants.js
749share/doc/qore/lang/html/group__pwd__functions.html 853share/doc/qore/lang/html/group__pwd__functions.html
750share/doc/qore/lang/html/group__pwd__functions.js 854share/doc/qore/lang/html/group__pwd__functions.js
751share/doc/qore/lang/html/group__range__functions.html 855share/doc/qore/lang/html/group__range__functions.html
@@ -854,49 +958,60 @@ share/doc/qore/lang/html/inherit_graph_2 @@ -854,49 +958,60 @@ share/doc/qore/lang/html/inherit_graph_2
854share/doc/qore/lang/html/inherit_graph_23.png 958share/doc/qore/lang/html/inherit_graph_23.png
855share/doc/qore/lang/html/inherit_graph_24.map 959share/doc/qore/lang/html/inherit_graph_24.map
856share/doc/qore/lang/html/inherit_graph_24.md5 960share/doc/qore/lang/html/inherit_graph_24.md5
857share/doc/qore/lang/html/inherit_graph_24.png 961share/doc/qore/lang/html/inherit_graph_24.png
858share/doc/qore/lang/html/inherit_graph_25.map 962share/doc/qore/lang/html/inherit_graph_25.map
859share/doc/qore/lang/html/inherit_graph_25.md5 963share/doc/qore/lang/html/inherit_graph_25.md5
860share/doc/qore/lang/html/inherit_graph_25.png 964share/doc/qore/lang/html/inherit_graph_25.png
861share/doc/qore/lang/html/inherit_graph_26.map 965share/doc/qore/lang/html/inherit_graph_26.map
862share/doc/qore/lang/html/inherit_graph_26.md5 966share/doc/qore/lang/html/inherit_graph_26.md5
863share/doc/qore/lang/html/inherit_graph_26.png 967share/doc/qore/lang/html/inherit_graph_26.png
864share/doc/qore/lang/html/inherit_graph_27.map 968share/doc/qore/lang/html/inherit_graph_27.map
865share/doc/qore/lang/html/inherit_graph_27.md5 969share/doc/qore/lang/html/inherit_graph_27.md5
866share/doc/qore/lang/html/inherit_graph_27.png 970share/doc/qore/lang/html/inherit_graph_27.png
 971share/doc/qore/lang/html/inherit_graph_28.map
 972share/doc/qore/lang/html/inherit_graph_28.md5
 973share/doc/qore/lang/html/inherit_graph_28.png
 974share/doc/qore/lang/html/inherit_graph_29.map
 975share/doc/qore/lang/html/inherit_graph_29.md5
 976share/doc/qore/lang/html/inherit_graph_29.png
867share/doc/qore/lang/html/inherit_graph_3.map 977share/doc/qore/lang/html/inherit_graph_3.map
868share/doc/qore/lang/html/inherit_graph_3.md5 978share/doc/qore/lang/html/inherit_graph_3.md5
869share/doc/qore/lang/html/inherit_graph_3.png 979share/doc/qore/lang/html/inherit_graph_3.png
 980share/doc/qore/lang/html/inherit_graph_30.map
 981share/doc/qore/lang/html/inherit_graph_30.md5
 982share/doc/qore/lang/html/inherit_graph_30.png
 983share/doc/qore/lang/html/inherit_graph_31.map
 984share/doc/qore/lang/html/inherit_graph_31.md5
 985share/doc/qore/lang/html/inherit_graph_31.png
870share/doc/qore/lang/html/inherit_graph_4.map 986share/doc/qore/lang/html/inherit_graph_4.map
871share/doc/qore/lang/html/inherit_graph_4.md5 987share/doc/qore/lang/html/inherit_graph_4.md5
872share/doc/qore/lang/html/inherit_graph_4.png 988share/doc/qore/lang/html/inherit_graph_4.png
873share/doc/qore/lang/html/inherit_graph_5.map 989share/doc/qore/lang/html/inherit_graph_5.map
874share/doc/qore/lang/html/inherit_graph_5.md5 990share/doc/qore/lang/html/inherit_graph_5.md5
875share/doc/qore/lang/html/inherit_graph_5.png 991share/doc/qore/lang/html/inherit_graph_5.png
876share/doc/qore/lang/html/inherit_graph_6.map 992share/doc/qore/lang/html/inherit_graph_6.map
877share/doc/qore/lang/html/inherit_graph_6.md5 993share/doc/qore/lang/html/inherit_graph_6.md5
878share/doc/qore/lang/html/inherit_graph_6.png 994share/doc/qore/lang/html/inherit_graph_6.png
879share/doc/qore/lang/html/inherit_graph_7.map 995share/doc/qore/lang/html/inherit_graph_7.map
880share/doc/qore/lang/html/inherit_graph_7.md5 996share/doc/qore/lang/html/inherit_graph_7.md5
881share/doc/qore/lang/html/inherit_graph_7.png 997share/doc/qore/lang/html/inherit_graph_7.png
882share/doc/qore/lang/html/inherit_graph_8.map 998share/doc/qore/lang/html/inherit_graph_8.map
883share/doc/qore/lang/html/inherit_graph_8.md5 999share/doc/qore/lang/html/inherit_graph_8.md5
884share/doc/qore/lang/html/inherit_graph_8.png 1000share/doc/qore/lang/html/inherit_graph_8.png
885share/doc/qore/lang/html/inherit_graph_9.map 1001share/doc/qore/lang/html/inherit_graph_9.map
886share/doc/qore/lang/html/inherit_graph_9.md5 1002share/doc/qore/lang/html/inherit_graph_9.md5
887share/doc/qore/lang/html/inherit_graph_9.png 1003share/doc/qore/lang/html/inherit_graph_9.png
888share/doc/qore/lang/html/inherits.html 1004share/doc/qore/lang/html/inherits.html
889share/doc/qore/lang/html/intro.html 
890share/doc/qore/lang/html/jquery.js 1005share/doc/qore/lang/html/jquery.js
891share/doc/qore/lang/html/keywords.html 1006share/doc/qore/lang/html/keywords.html
892share/doc/qore/lang/html/lvalue_references.html 1007share/doc/qore/lang/html/lvalue_references.html
893share/doc/qore/lang/html/modules.html 1008share/doc/qore/lang/html/modules.html
894share/doc/qore/lang/html/modules.js 1009share/doc/qore/lang/html/modules.js
895share/doc/qore/lang/html/namespace_qore.html 1010share/doc/qore/lang/html/namespace_qore.html
896share/doc/qore/lang/html/namespace_qore.js 1011share/doc/qore/lang/html/namespace_qore.js
897share/doc/qore/lang/html/namespace_qore_1_1_err.html 1012share/doc/qore/lang/html/namespace_qore_1_1_err.html
898share/doc/qore/lang/html/namespace_qore_1_1_option.html 1013share/doc/qore/lang/html/namespace_qore_1_1_option.html
899share/doc/qore/lang/html/namespace_qore_1_1_s_q_l.html 1014share/doc/qore/lang/html/namespace_qore_1_1_s_q_l.html
900share/doc/qore/lang/html/namespace_qore_1_1_s_q_l.js 1015share/doc/qore/lang/html/namespace_qore_1_1_s_q_l.js
901share/doc/qore/lang/html/namespace_qore_1_1_thread.html 1016share/doc/qore/lang/html/namespace_qore_1_1_thread.html
902share/doc/qore/lang/html/namespace_qore_1_1_thread.js 1017share/doc/qore/lang/html/namespace_qore_1_1_thread.js
@@ -5019,37 +5134,37 @@ share/doc/qore/modules/HttpServer/html/g @@ -5019,37 +5134,37 @@ share/doc/qore/modules/HttpServer/html/g
5019share/doc/qore/modules/HttpServer/html/group__digest__functions.js 5134share/doc/qore/modules/HttpServer/html/group__digest__functions.js
5020share/doc/qore/modules/HttpServer/html/group__env__functions.js 5135share/doc/qore/modules/HttpServer/html/group__env__functions.js
5021share/doc/qore/modules/HttpServer/html/group__error__constants.js 5136share/doc/qore/modules/HttpServer/html/group__error__constants.js
5022share/doc/qore/modules/HttpServer/html/group__event__constants.js 5137share/doc/qore/modules/HttpServer/html/group__event__constants.js
5023share/doc/qore/modules/HttpServer/html/group__event__map__constants.js 5138share/doc/qore/modules/HttpServer/html/group__event__map__constants.js
5024share/doc/qore/modules/HttpServer/html/group__event__source__constants.js 5139share/doc/qore/modules/HttpServer/html/group__event__source__constants.js
5025share/doc/qore/modules/HttpServer/html/group__exception__type__constants.js 5140share/doc/qore/modules/HttpServer/html/group__exception__type__constants.js
5026share/doc/qore/modules/HttpServer/html/group__file__locking__constants.js 5141share/doc/qore/modules/HttpServer/html/group__file__locking__constants.js
5027share/doc/qore/modules/HttpServer/html/group__file__open__constants.js 5142share/doc/qore/modules/HttpServer/html/group__file__open__constants.js
5028share/doc/qore/modules/HttpServer/html/group__file__seek__constants.js 5143share/doc/qore/modules/HttpServer/html/group__file__seek__constants.js
5029share/doc/qore/modules/HttpServer/html/group__file__stat__constants.js 5144share/doc/qore/modules/HttpServer/html/group__file__stat__constants.js
5030share/doc/qore/modules/HttpServer/html/group__filesystem__functions.js 5145share/doc/qore/modules/HttpServer/html/group__filesystem__functions.js
5031share/doc/qore/modules/HttpServer/html/group__hmac__functions.js 5146share/doc/qore/modules/HttpServer/html/group__hmac__functions.js
5032share/doc/qore/modules/HttpServer/html/group__input__stream__function.js 
5033share/doc/qore/modules/HttpServer/html/group__io__constants.js 5147share/doc/qore/modules/HttpServer/html/group__io__constants.js
5034share/doc/qore/modules/HttpServer/html/group__library__functions.js 5148share/doc/qore/modules/HttpServer/html/group__library__functions.js
5035share/doc/qore/modules/HttpServer/html/group__list__functions.js 5149share/doc/qore/modules/HttpServer/html/group__list__functions.js
5036share/doc/qore/modules/HttpServer/html/group__math__constants.js 5150share/doc/qore/modules/HttpServer/html/group__math__constants.js
5037share/doc/qore/modules/HttpServer/html/group__math__functions.js 5151share/doc/qore/modules/HttpServer/html/group__math__functions.js
5038share/doc/qore/modules/HttpServer/html/group__misc__functions.js 5152share/doc/qore/modules/HttpServer/html/group__misc__functions.js
5039share/doc/qore/modules/HttpServer/html/group__network__address__family__constants.js 5153share/doc/qore/modules/HttpServer/html/group__network__address__family__constants.js
5040share/doc/qore/modules/HttpServer/html/group__network__address__information__constants.js 5154share/doc/qore/modules/HttpServer/html/group__network__address__information__constants.js
5041share/doc/qore/modules/HttpServer/html/group__null__and__nothing__constants.js 5155share/doc/qore/modules/HttpServer/html/group__null__and__nothing__constants.js
5042share/doc/qore/modules/HttpServer/html/group__number__formatting__constants.js 5156share/doc/qore/modules/HttpServer/html/group__number__formatting__constants.js
 5157share/doc/qore/modules/HttpServer/html/group__number__string__formatting__constants.js
5043share/doc/qore/modules/HttpServer/html/group__object__functions.js 5158share/doc/qore/modules/HttpServer/html/group__object__functions.js
5044share/doc/qore/modules/HttpServer/html/group__old__dbi__functions.js 5159share/doc/qore/modules/HttpServer/html/group__old__dbi__functions.js
5045share/doc/qore/modules/HttpServer/html/group__option__constants.js 5160share/doc/qore/modules/HttpServer/html/group__option__constants.js
5046share/doc/qore/modules/HttpServer/html/group__parse__options.js 5161share/doc/qore/modules/HttpServer/html/group__parse__options.js
5047share/doc/qore/modules/HttpServer/html/group__protocol__constants.js 5162share/doc/qore/modules/HttpServer/html/group__protocol__constants.js
5048share/doc/qore/modules/HttpServer/html/group__pwd__functions.js 5163share/doc/qore/modules/HttpServer/html/group__pwd__functions.js
5049share/doc/qore/modules/HttpServer/html/group__range__functions.js 5164share/doc/qore/modules/HttpServer/html/group__range__functions.js
5050share/doc/qore/modules/HttpServer/html/group__regex__constants.js 5165share/doc/qore/modules/HttpServer/html/group__regex__constants.js
5051share/doc/qore/modules/HttpServer/html/group__signal__constants.js 5166share/doc/qore/modules/HttpServer/html/group__signal__constants.js
5052share/doc/qore/modules/HttpServer/html/group__signal__handling__functions.js 5167share/doc/qore/modules/HttpServer/html/group__signal__handling__functions.js
5053share/doc/qore/modules/HttpServer/html/group__socket__type__constants.js 5168share/doc/qore/modules/HttpServer/html/group__socket__type__constants.js
5054share/doc/qore/modules/HttpServer/html/group__sql__constants.js 5169share/doc/qore/modules/HttpServer/html/group__sql__constants.js
5055share/doc/qore/modules/HttpServer/html/group__string__functions.js 5170share/doc/qore/modules/HttpServer/html/group__string__functions.js
@@ -5066,26 +5181,29 @@ share/doc/qore/modules/HttpServer/html/g @@ -5066,26 +5181,29 @@ share/doc/qore/modules/HttpServer/html/g
5066share/doc/qore/modules/HttpServer/html/group__type__code__constants.js 5181share/doc/qore/modules/HttpServer/html/group__type__code__constants.js
5067share/doc/qore/modules/HttpServer/html/group__type__code__map__constants.js 5182share/doc/qore/modules/HttpServer/html/group__type__code__map__constants.js
5068share/doc/qore/modules/HttpServer/html/group__type__conversion__functions.js 5183share/doc/qore/modules/HttpServer/html/group__type__conversion__functions.js
5069share/doc/qore/modules/HttpServer/html/group__user__and__group__functions.js 5184share/doc/qore/modules/HttpServer/html/group__user__and__group__functions.js
5070share/doc/qore/modules/HttpServer/html/group__warning__constants.js 5185share/doc/qore/modules/HttpServer/html/group__warning__constants.js
5071share/doc/qore/modules/HttpServer/html/group__x509__verification__constants.js 5186share/doc/qore/modules/HttpServer/html/group__x509__verification__constants.js
5072share/doc/qore/modules/HttpServer/html/hierarchy.html 5187share/doc/qore/modules/HttpServer/html/hierarchy.html
5073share/doc/qore/modules/HttpServer/html/hierarchy.js 5188share/doc/qore/modules/HttpServer/html/hierarchy.js
5074share/doc/qore/modules/HttpServer/html/index.html 5189share/doc/qore/modules/HttpServer/html/index.html
5075share/doc/qore/modules/HttpServer/html/index.qhp 5190share/doc/qore/modules/HttpServer/html/index.qhp
5076share/doc/qore/modules/HttpServer/html/inherit_graph_0.map 5191share/doc/qore/modules/HttpServer/html/inherit_graph_0.map
5077share/doc/qore/modules/HttpServer/html/inherit_graph_0.md5 5192share/doc/qore/modules/HttpServer/html/inherit_graph_0.md5
5078share/doc/qore/modules/HttpServer/html/inherit_graph_0.png 5193share/doc/qore/modules/HttpServer/html/inherit_graph_0.png
 5194share/doc/qore/modules/HttpServer/html/inherit_graph_1.map
 5195share/doc/qore/modules/HttpServer/html/inherit_graph_1.md5
 5196share/doc/qore/modules/HttpServer/html/inherit_graph_1.png
5079share/doc/qore/modules/HttpServer/html/inherits.html 5197share/doc/qore/modules/HttpServer/html/inherits.html
5080share/doc/qore/modules/HttpServer/html/jquery.js 5198share/doc/qore/modules/HttpServer/html/jquery.js
5081share/doc/qore/modules/HttpServer/html/modules.html 5199share/doc/qore/modules/HttpServer/html/modules.html
5082share/doc/qore/modules/HttpServer/html/modules.js 5200share/doc/qore/modules/HttpServer/html/modules.js
5083share/doc/qore/modules/HttpServer/html/namespace_http_server.html 5201share/doc/qore/modules/HttpServer/html/namespace_http_server.html
5084share/doc/qore/modules/HttpServer/html/namespace_http_server.js 5202share/doc/qore/modules/HttpServer/html/namespace_http_server.js
5085share/doc/qore/modules/HttpServer/html/namespacemembers.html 5203share/doc/qore/modules/HttpServer/html/namespacemembers.html
5086share/doc/qore/modules/HttpServer/html/namespacemembers_func.html 5204share/doc/qore/modules/HttpServer/html/namespacemembers_func.html
5087share/doc/qore/modules/HttpServer/html/namespacemembers_vars.html 5205share/doc/qore/modules/HttpServer/html/namespacemembers_vars.html
5088share/doc/qore/modules/HttpServer/html/namespaces.html 5206share/doc/qore/modules/HttpServer/html/namespaces.html
5089share/doc/qore/modules/HttpServer/html/namespaces.js 5207share/doc/qore/modules/HttpServer/html/namespaces.js
5090share/doc/qore/modules/HttpServer/html/nav_f.png 5208share/doc/qore/modules/HttpServer/html/nav_f.png
5091share/doc/qore/modules/HttpServer/html/nav_g.png 5209share/doc/qore/modules/HttpServer/html/nav_g.png
@@ -5483,37 +5601,37 @@ share/doc/qore/modules/HttpServerUtil/ht @@ -5483,37 +5601,37 @@ share/doc/qore/modules/HttpServerUtil/ht
5483share/doc/qore/modules/HttpServerUtil/html/group__digest__functions.js 5601share/doc/qore/modules/HttpServerUtil/html/group__digest__functions.js
5484share/doc/qore/modules/HttpServerUtil/html/group__env__functions.js 5602share/doc/qore/modules/HttpServerUtil/html/group__env__functions.js
5485share/doc/qore/modules/HttpServerUtil/html/group__error__constants.js 5603share/doc/qore/modules/HttpServerUtil/html/group__error__constants.js
5486share/doc/qore/modules/HttpServerUtil/html/group__event__constants.js 5604share/doc/qore/modules/HttpServerUtil/html/group__event__constants.js
5487share/doc/qore/modules/HttpServerUtil/html/group__event__map__constants.js 5605share/doc/qore/modules/HttpServerUtil/html/group__event__map__constants.js
5488share/doc/qore/modules/HttpServerUtil/html/group__event__source__constants.js 5606share/doc/qore/modules/HttpServerUtil/html/group__event__source__constants.js
5489share/doc/qore/modules/HttpServerUtil/html/group__exception__type__constants.js 5607share/doc/qore/modules/HttpServerUtil/html/group__exception__type__constants.js
5490share/doc/qore/modules/HttpServerUtil/html/group__file__locking__constants.js 5608share/doc/qore/modules/HttpServerUtil/html/group__file__locking__constants.js
5491share/doc/qore/modules/HttpServerUtil/html/group__file__open__constants.js 5609share/doc/qore/modules/HttpServerUtil/html/group__file__open__constants.js
5492share/doc/qore/modules/HttpServerUtil/html/group__file__seek__constants.js 5610share/doc/qore/modules/HttpServerUtil/html/group__file__seek__constants.js
5493share/doc/qore/modules/HttpServerUtil/html/group__file__stat__constants.js 5611share/doc/qore/modules/HttpServerUtil/html/group__file__stat__constants.js
5494share/doc/qore/modules/HttpServerUtil/html/group__filesystem__functions.js 5612share/doc/qore/modules/HttpServerUtil/html/group__filesystem__functions.js
5495share/doc/qore/modules/HttpServerUtil/html/group__hmac__functions.js 5613share/doc/qore/modules/HttpServerUtil/html/group__hmac__functions.js
5496share/doc/qore/modules/HttpServerUtil/html/group__input__stream__function.js 
5497share/doc/qore/modules/HttpServerUtil/html/group__io__constants.js 5614share/doc/qore/modules/HttpServerUtil/html/group__io__constants.js
5498share/doc/qore/modules/HttpServerUtil/html/group__library__functions.js 5615share/doc/qore/modules/HttpServerUtil/html/group__library__functions.js
5499share/doc/qore/modules/HttpServerUtil/html/group__list__functions.js 5616share/doc/qore/modules/HttpServerUtil/html/group__list__functions.js
5500share/doc/qore/modules/HttpServerUtil/html/group__math__constants.js 5617share/doc/qore/modules/HttpServerUtil/html/group__math__constants.js
5501share/doc/qore/modules/HttpServerUtil/html/group__math__functions.js 5618share/doc/qore/modules/HttpServerUtil/html/group__math__functions.js
5502share/doc/qore/modules/HttpServerUtil/html/group__misc__functions.js 5619share/doc/qore/modules/HttpServerUtil/html/group__misc__functions.js
5503share/doc/qore/modules/HttpServerUtil/html/group__network__address__family__constants.js 5620share/doc/qore/modules/HttpServerUtil/html/group__network__address__family__constants.js
5504share/doc/qore/modules/HttpServerUtil/html/group__network__address__information__constants.js 5621share/doc/qore/modules/HttpServerUtil/html/group__network__address__information__constants.js
5505share/doc/qore/modules/HttpServerUtil/html/group__null__and__nothing__constants.js 5622share/doc/qore/modules/HttpServerUtil/html/group__null__and__nothing__constants.js
5506share/doc/qore/modules/HttpServerUtil/html/group__number__formatting__constants.js 5623share/doc/qore/modules/HttpServerUtil/html/group__number__formatting__constants.js
 5624share/doc/qore/modules/HttpServerUtil/html/group__number__string__formatting__constants.js
5507share/doc/qore/modules/HttpServerUtil/html/group__object__functions.js 5625share/doc/qore/modules/HttpServerUtil/html/group__object__functions.js
5508share/doc/qore/modules/HttpServerUtil/html/group__old__dbi__functions.js 5626share/doc/qore/modules/HttpServerUtil/html/group__old__dbi__functions.js
5509share/doc/qore/modules/HttpServerUtil/html/group__option__constants.js 5627share/doc/qore/modules/HttpServerUtil/html/group__option__constants.js
5510share/doc/qore/modules/HttpServerUtil/html/group__parse__options.js 5628share/doc/qore/modules/HttpServerUtil/html/group__parse__options.js
5511share/doc/qore/modules/HttpServerUtil/html/group__protocol__constants.js 5629share/doc/qore/modules/HttpServerUtil/html/group__protocol__constants.js
5512share/doc/qore/modules/HttpServerUtil/html/group__pwd__functions.js 5630share/doc/qore/modules/HttpServerUtil/html/group__pwd__functions.js
5513share/doc/qore/modules/HttpServerUtil/html/group__range__functions.js 5631share/doc/qore/modules/HttpServerUtil/html/group__range__functions.js
5514share/doc/qore/modules/HttpServerUtil/html/group__regex__constants.js 5632share/doc/qore/modules/HttpServerUtil/html/group__regex__constants.js
5515share/doc/qore/modules/HttpServerUtil/html/group__signal__constants.js 5633share/doc/qore/modules/HttpServerUtil/html/group__signal__constants.js
5516share/doc/qore/modules/HttpServerUtil/html/group__signal__handling__functions.js 5634share/doc/qore/modules/HttpServerUtil/html/group__signal__handling__functions.js
5517share/doc/qore/modules/HttpServerUtil/html/group__socket__type__constants.js 5635share/doc/qore/modules/HttpServerUtil/html/group__socket__type__constants.js
5518share/doc/qore/modules/HttpServerUtil/html/group__sql__constants.js 5636share/doc/qore/modules/HttpServerUtil/html/group__sql__constants.js
5519share/doc/qore/modules/HttpServerUtil/html/group__string__functions.js 5637share/doc/qore/modules/HttpServerUtil/html/group__string__functions.js
@@ -5926,37 +6044,37 @@ share/doc/qore/modules/MailMessage/html/ @@ -5926,37 +6044,37 @@ share/doc/qore/modules/MailMessage/html/
5926share/doc/qore/modules/MailMessage/html/group__digest__functions.js 6044share/doc/qore/modules/MailMessage/html/group__digest__functions.js
5927share/doc/qore/modules/MailMessage/html/group__env__functions.js 6045share/doc/qore/modules/MailMessage/html/group__env__functions.js
5928share/doc/qore/modules/MailMessage/html/group__error__constants.js 6046share/doc/qore/modules/MailMessage/html/group__error__constants.js
5929share/doc/qore/modules/MailMessage/html/group__event__constants.js 6047share/doc/qore/modules/MailMessage/html/group__event__constants.js
5930share/doc/qore/modules/MailMessage/html/group__event__map__constants.js 6048share/doc/qore/modules/MailMessage/html/group__event__map__constants.js
5931share/doc/qore/modules/MailMessage/html/group__event__source__constants.js 6049share/doc/qore/modules/MailMessage/html/group__event__source__constants.js
5932share/doc/qore/modules/MailMessage/html/group__exception__type__constants.js 6050share/doc/qore/modules/MailMessage/html/group__exception__type__constants.js
5933share/doc/qore/modules/MailMessage/html/group__file__locking__constants.js 6051share/doc/qore/modules/MailMessage/html/group__file__locking__constants.js
5934share/doc/qore/modules/MailMessage/html/group__file__open__constants.js 6052share/doc/qore/modules/MailMessage/html/group__file__open__constants.js
5935share/doc/qore/modules/MailMessage/html/group__file__seek__constants.js 6053share/doc/qore/modules/MailMessage/html/group__file__seek__constants.js
5936share/doc/qore/modules/MailMessage/html/group__file__stat__constants.js 6054share/doc/qore/modules/MailMessage/html/group__file__stat__constants.js
5937share/doc/qore/modules/MailMessage/html/group__filesystem__functions.js 6055share/doc/qore/modules/MailMessage/html/group__filesystem__functions.js
5938share/doc/qore/modules/MailMessage/html/group__hmac__functions.js 6056share/doc/qore/modules/MailMessage/html/group__hmac__functions.js
5939share/doc/qore/modules/MailMessage/html/group__input__stream__function.js 
5940share/doc/qore/modules/MailMessage/html/group__io__constants.js 6057share/doc/qore/modules/MailMessage/html/group__io__constants.js
5941share/doc/qore/modules/MailMessage/html/group__library__functions.js 6058share/doc/qore/modules/MailMessage/html/group__library__functions.js
5942share/doc/qore/modules/MailMessage/html/group__list__functions.js 6059share/doc/qore/modules/MailMessage/html/group__list__functions.js
5943share/doc/qore/modules/MailMessage/html/group__math__constants.js 6060share/doc/qore/modules/MailMessage/html/group__math__constants.js
5944share/doc/qore/modules/MailMessage/html/group__math__functions.js 6061share/doc/qore/modules/MailMessage/html/group__math__functions.js
5945share/doc/qore/modules/MailMessage/html/group__misc__functions.js 6062share/doc/qore/modules/MailMessage/html/group__misc__functions.js
5946share/doc/qore/modules/MailMessage/html/group__network__address__family__constants.js 6063share/doc/qore/modules/MailMessage/html/group__network__address__family__constants.js
5947share/doc/qore/modules/MailMessage/html/group__network__address__information__constants.js 6064share/doc/qore/modules/MailMessage/html/group__network__address__information__constants.js
5948share/doc/qore/modules/MailMessage/html/group__null__and__nothing__constants.js 6065share/doc/qore/modules/MailMessage/html/group__null__and__nothing__constants.js
5949share/doc/qore/modules/MailMessage/html/group__number__formatting__constants.js 6066share/doc/qore/modules/MailMessage/html/group__number__formatting__constants.js
 6067share/doc/qore/modules/MailMessage/html/group__number__string__formatting__constants.js
5950share/doc/qore/modules/MailMessage/html/group__object__functions.js 6068share/doc/qore/modules/MailMessage/html/group__object__functions.js
5951share/doc/qore/modules/MailMessage/html/group__old__dbi__functions.js 6069share/doc/qore/modules/MailMessage/html/group__old__dbi__functions.js
5952share/doc/qore/modules/MailMessage/html/group__option__constants.js 6070share/doc/qore/modules/MailMessage/html/group__option__constants.js
5953share/doc/qore/modules/MailMessage/html/group__parse__options.js 6071share/doc/qore/modules/MailMessage/html/group__parse__options.js
5954share/doc/qore/modules/MailMessage/html/group__protocol__constants.js 6072share/doc/qore/modules/MailMessage/html/group__protocol__constants.js
5955share/doc/qore/modules/MailMessage/html/group__pwd__functions.js 6073share/doc/qore/modules/MailMessage/html/group__pwd__functions.js
5956share/doc/qore/modules/MailMessage/html/group__range__functions.js 6074share/doc/qore/modules/MailMessage/html/group__range__functions.js
5957share/doc/qore/modules/MailMessage/html/group__regex__constants.js 6075share/doc/qore/modules/MailMessage/html/group__regex__constants.js
5958share/doc/qore/modules/MailMessage/html/group__signal__constants.js 6076share/doc/qore/modules/MailMessage/html/group__signal__constants.js
5959share/doc/qore/modules/MailMessage/html/group__signal__handling__functions.js 6077share/doc/qore/modules/MailMessage/html/group__signal__handling__functions.js
5960share/doc/qore/modules/MailMessage/html/group__socket__type__constants.js 6078share/doc/qore/modules/MailMessage/html/group__socket__type__constants.js
5961share/doc/qore/modules/MailMessage/html/group__sql__constants.js 6079share/doc/qore/modules/MailMessage/html/group__sql__constants.js
5962share/doc/qore/modules/MailMessage/html/group__string__functions.js 6080share/doc/qore/modules/MailMessage/html/group__string__functions.js
@@ -6705,37 +6823,37 @@ share/doc/qore/modules/Mime/html/group__ @@ -6705,37 +6823,37 @@ share/doc/qore/modules/Mime/html/group__
6705share/doc/qore/modules/Mime/html/group__digest__functions.js 6823share/doc/qore/modules/Mime/html/group__digest__functions.js
6706share/doc/qore/modules/Mime/html/group__env__functions.js 6824share/doc/qore/modules/Mime/html/group__env__functions.js
6707share/doc/qore/modules/Mime/html/group__error__constants.js 6825share/doc/qore/modules/Mime/html/group__error__constants.js
6708share/doc/qore/modules/Mime/html/group__event__constants.js 6826share/doc/qore/modules/Mime/html/group__event__constants.js
6709share/doc/qore/modules/Mime/html/group__event__map__constants.js 6827share/doc/qore/modules/Mime/html/group__event__map__constants.js
6710share/doc/qore/modules/Mime/html/group__event__source__constants.js 6828share/doc/qore/modules/Mime/html/group__event__source__constants.js
6711share/doc/qore/modules/Mime/html/group__exception__type__constants.js 6829share/doc/qore/modules/Mime/html/group__exception__type__constants.js
6712share/doc/qore/modules/Mime/html/group__file__locking__constants.js 6830share/doc/qore/modules/Mime/html/group__file__locking__constants.js
6713share/doc/qore/modules/Mime/html/group__file__open__constants.js 6831share/doc/qore/modules/Mime/html/group__file__open__constants.js
6714share/doc/qore/modules/Mime/html/group__file__seek__constants.js 6832share/doc/qore/modules/Mime/html/group__file__seek__constants.js
6715share/doc/qore/modules/Mime/html/group__file__stat__constants.js 6833share/doc/qore/modules/Mime/html/group__file__stat__constants.js
6716share/doc/qore/modules/Mime/html/group__filesystem__functions.js 6834share/doc/qore/modules/Mime/html/group__filesystem__functions.js
6717share/doc/qore/modules/Mime/html/group__hmac__functions.js 6835share/doc/qore/modules/Mime/html/group__hmac__functions.js
6718share/doc/qore/modules/Mime/html/group__input__stream__function.js 
6719share/doc/qore/modules/Mime/html/group__io__constants.js 6836share/doc/qore/modules/Mime/html/group__io__constants.js
6720share/doc/qore/modules/Mime/html/group__library__functions.js 6837share/doc/qore/modules/Mime/html/group__library__functions.js
6721share/doc/qore/modules/Mime/html/group__list__functions.js 6838share/doc/qore/modules/Mime/html/group__list__functions.js
6722share/doc/qore/modules/Mime/html/group__math__constants.js 6839share/doc/qore/modules/Mime/html/group__math__constants.js
6723share/doc/qore/modules/Mime/html/group__math__functions.js 6840share/doc/qore/modules/Mime/html/group__math__functions.js
6724share/doc/qore/modules/Mime/html/group__misc__functions.js 6841share/doc/qore/modules/Mime/html/group__misc__functions.js
6725share/doc/qore/modules/Mime/html/group__network__address__family__constants.js 6842share/doc/qore/modules/Mime/html/group__network__address__family__constants.js
6726share/doc/qore/modules/Mime/html/group__network__address__information__constants.js 6843share/doc/qore/modules/Mime/html/group__network__address__information__constants.js
6727share/doc/qore/modules/Mime/html/group__null__and__nothing__constants.js 6844share/doc/qore/modules/Mime/html/group__null__and__nothing__constants.js
6728share/doc/qore/modules/Mime/html/group__number__formatting__constants.js 6845share/doc/qore/modules/Mime/html/group__number__formatting__constants.js
 6846share/doc/qore/modules/Mime/html/group__number__string__formatting__constants.js
6729share/doc/qore/modules/Mime/html/group__object__functions.js 6847share/doc/qore/modules/Mime/html/group__object__functions.js
6730share/doc/qore/modules/Mime/html/group__old__dbi__functions.js 6848share/doc/qore/modules/Mime/html/group__old__dbi__functions.js
6731share/doc/qore/modules/Mime/html/group__option__constants.js 6849share/doc/qore/modules/Mime/html/group__option__constants.js
6732share/doc/qore/modules/Mime/html/group__parse__options.js 6850share/doc/qore/modules/Mime/html/group__parse__options.js
6733share/doc/qore/modules/Mime/html/group__protocol__constants.js 6851share/doc/qore/modules/Mime/html/group__protocol__constants.js
6734share/doc/qore/modules/Mime/html/group__pwd__functions.js 6852share/doc/qore/modules/Mime/html/group__pwd__functions.js
6735share/doc/qore/modules/Mime/html/group__range__functions.js 6853share/doc/qore/modules/Mime/html/group__range__functions.js
6736share/doc/qore/modules/Mime/html/group__regex__constants.js 6854share/doc/qore/modules/Mime/html/group__regex__constants.js
6737share/doc/qore/modules/Mime/html/group__signal__constants.js 6855share/doc/qore/modules/Mime/html/group__signal__constants.js
6738share/doc/qore/modules/Mime/html/group__signal__handling__functions.js 6856share/doc/qore/modules/Mime/html/group__signal__handling__functions.js
6739share/doc/qore/modules/Mime/html/group__socket__type__constants.js 6857share/doc/qore/modules/Mime/html/group__socket__type__constants.js
6740share/doc/qore/modules/Mime/html/group__sql__constants.js 6858share/doc/qore/modules/Mime/html/group__sql__constants.js
6741share/doc/qore/modules/Mime/html/group__string__functions.js 6859share/doc/qore/modules/Mime/html/group__string__functions.js
@@ -7501,26 +7619,32 @@ share/doc/qore/modules/OracleSqlUtil/htm @@ -7501,26 +7619,32 @@ share/doc/qore/modules/OracleSqlUtil/htm
7501share/doc/qore/modules/OracleSqlUtil/html/bdwn.png 7619share/doc/qore/modules/OracleSqlUtil/html/bdwn.png
7502share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_check_constraint-members.html 7620share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_check_constraint-members.html
7503share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_check_constraint.html 7621share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_check_constraint.html
7504share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_check_constraint.js 7622share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_check_constraint.js
7505share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_check_constraint__inherit__graph.map 7623share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_check_constraint__inherit__graph.map
7506share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_check_constraint__inherit__graph.md5 7624share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_check_constraint__inherit__graph.md5
7507share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_check_constraint__inherit__graph.png 7625share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_check_constraint__inherit__graph.png
7508share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base-members.html 7626share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base-members.html
7509share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base.html 7627share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base.html
7510share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base.js 7628share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base.js
7511share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base__inherit__graph.map 7629share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base__inherit__graph.map
7512share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base__inherit__graph.md5 7630share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base__inherit__graph.md5
7513share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base__inherit__graph.png 7631share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base__inherit__graph.png
 7632share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base_no_rename-members.html
 7633share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base_no_rename.html
 7634share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base_no_rename.js
 7635share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base_no_rename__inherit__graph.map
 7636share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base_no_rename__inherit__graph.md5
 7637share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_code_base_no_rename__inherit__graph.png
7514share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_column-members.html 7638share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_column-members.html
7515share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_column.html 7639share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_column.html
7516share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_column.js 7640share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_column.js
7517share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_column__inherit__graph.map 7641share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_column__inherit__graph.map
7518share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_column__inherit__graph.md5 7642share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_column__inherit__graph.md5
7519share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_column__inherit__graph.png 7643share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_column__inherit__graph.png
7520share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_database-members.html 7644share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_database-members.html
7521share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_database.html 7645share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_database.html
7522share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_database.js 7646share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_database.js
7523share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_database__inherit__graph.map 7647share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_database__inherit__graph.map
7524share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_database__inherit__graph.md5 7648share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_database__inherit__graph.md5
7525share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_database__inherit__graph.png 7649share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_database__inherit__graph.png
7526share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_foreign_constraint-members.html 7650share/doc/qore/modules/OracleSqlUtil/html/class_oracle_sql_util_1_1_oracle_foreign_constraint-members.html
@@ -9244,37 +9368,37 @@ share/doc/qore/modules/Qorize/html/group @@ -9244,37 +9368,37 @@ share/doc/qore/modules/Qorize/html/group
9244share/doc/qore/modules/Qorize/html/group__env__functions.js 9368share/doc/qore/modules/Qorize/html/group__env__functions.js
9245share/doc/qore/modules/Qorize/html/group__error__constants.js 9369share/doc/qore/modules/Qorize/html/group__error__constants.js
9246share/doc/qore/modules/Qorize/html/group__event__constants.js 9370share/doc/qore/modules/Qorize/html/group__event__constants.js
9247share/doc/qore/modules/Qorize/html/group__event__map__constants.js 9371share/doc/qore/modules/Qorize/html/group__event__map__constants.js
9248share/doc/qore/modules/Qorize/html/group__event__source__constants.js 9372share/doc/qore/modules/Qorize/html/group__event__source__constants.js
9249share/doc/qore/modules/Qorize/html/group__exception__type__constants.js 9373share/doc/qore/modules/Qorize/html/group__exception__type__constants.js
9250share/doc/qore/modules/Qorize/html/group__file__locking__constants.js 9374share/doc/qore/modules/Qorize/html/group__file__locking__constants.js
9251share/doc/qore/modules/Qorize/html/group__file__open__constants.js 9375share/doc/qore/modules/Qorize/html/group__file__open__constants.js
9252share/doc/qore/modules/Qorize/html/group__file__seek__constants.js 9376share/doc/qore/modules/Qorize/html/group__file__seek__constants.js
9253share/doc/qore/modules/Qorize/html/group__file__stat__constants.js 9377share/doc/qore/modules/Qorize/html/group__file__stat__constants.js
9254share/doc/qore/modules/Qorize/html/group__filesystem__functions.js 9378share/doc/qore/modules/Qorize/html/group__filesystem__functions.js
9255share/doc/qore/modules/Qorize/html/group__hmac__functions.js 9379share/doc/qore/modules/Qorize/html/group__hmac__functions.js
9256share/doc/qore/modules/Qorize/html/group__info__actions.js 9380share/doc/qore/modules/Qorize/html/group__info__actions.js
9257share/doc/qore/modules/Qorize/html/group__input__stream__function.js 
9258share/doc/qore/modules/Qorize/html/group__io__constants.js 9381share/doc/qore/modules/Qorize/html/group__io__constants.js
9259share/doc/qore/modules/Qorize/html/group__library__functions.js 9382share/doc/qore/modules/Qorize/html/group__library__functions.js
9260share/doc/qore/modules/Qorize/html/group__list__functions.js 9383share/doc/qore/modules/Qorize/html/group__list__functions.js
9261share/doc/qore/modules/Qorize/html/group__math__constants.js 9384share/doc/qore/modules/Qorize/html/group__math__constants.js
9262share/doc/qore/modules/Qorize/html/group__math__functions.js 9385share/doc/qore/modules/Qorize/html/group__math__functions.js
9263share/doc/qore/modules/Qorize/html/group__misc__functions.js 9386share/doc/qore/modules/Qorize/html/group__misc__functions.js
9264share/doc/qore/modules/Qorize/html/group__network__address__family__constants.js 9387share/doc/qore/modules/Qorize/html/group__network__address__family__constants.js
9265share/doc/qore/modules/Qorize/html/group__network__address__information__constants.js 9388share/doc/qore/modules/Qorize/html/group__network__address__information__constants.js
9266share/doc/qore/modules/Qorize/html/group__null__and__nothing__constants.js 9389share/doc/qore/modules/Qorize/html/group__null__and__nothing__constants.js
9267share/doc/qore/modules/Qorize/html/group__number__formatting__constants.js 9390share/doc/qore/modules/Qorize/html/group__number__formatting__constants.js
 9391share/doc/qore/modules/Qorize/html/group__number__string__formatting__constants.js
9268share/doc/qore/modules/Qorize/html/group__object__functions.js 9392share/doc/qore/modules/Qorize/html/group__object__functions.js
9269share/doc/qore/modules/Qorize/html/group__old__dbi__functions.js 9393share/doc/qore/modules/Qorize/html/group__old__dbi__functions.js
9270share/doc/qore/modules/Qorize/html/group__opcodes.js 9394share/doc/qore/modules/Qorize/html/group__opcodes.js
9271share/doc/qore/modules/Qorize/html/group__option__constants.js 9395share/doc/qore/modules/Qorize/html/group__option__constants.js
9272share/doc/qore/modules/Qorize/html/group__parse__options.js 9396share/doc/qore/modules/Qorize/html/group__parse__options.js
9273share/doc/qore/modules/Qorize/html/group__protocol__constants.js 9397share/doc/qore/modules/Qorize/html/group__protocol__constants.js
9274share/doc/qore/modules/Qorize/html/group__pwd__functions.js 9398share/doc/qore/modules/Qorize/html/group__pwd__functions.js
9275share/doc/qore/modules/Qorize/html/group__range__functions.js 9399share/doc/qore/modules/Qorize/html/group__range__functions.js
9276share/doc/qore/modules/Qorize/html/group__regex__constants.js 9400share/doc/qore/modules/Qorize/html/group__regex__constants.js
9277share/doc/qore/modules/Qorize/html/group__signal__constants.js 9401share/doc/qore/modules/Qorize/html/group__signal__constants.js
9278share/doc/qore/modules/Qorize/html/group__signal__handling__functions.js 9402share/doc/qore/modules/Qorize/html/group__signal__handling__functions.js
9279share/doc/qore/modules/Qorize/html/group__socket__type__constants.js 9403share/doc/qore/modules/Qorize/html/group__socket__type__constants.js
9280share/doc/qore/modules/Qorize/html/group__sql__constants.js 9404share/doc/qore/modules/Qorize/html/group__sql__constants.js
@@ -11315,37 +11439,37 @@ share/doc/qore/modules/SqlUtil/html/grou @@ -11315,37 +11439,37 @@ share/doc/qore/modules/SqlUtil/html/grou
11315share/doc/qore/modules/SqlUtil/html/group__error__constants.js 11439share/doc/qore/modules/SqlUtil/html/group__error__constants.js
11316share/doc/qore/modules/SqlUtil/html/group__event__constants.js 11440share/doc/qore/modules/SqlUtil/html/group__event__constants.js
11317share/doc/qore/modules/SqlUtil/html/group__event__map__constants.js 11441share/doc/qore/modules/SqlUtil/html/group__event__map__constants.js
11318share/doc/qore/modules/SqlUtil/html/group__event__source__constants.js 11442share/doc/qore/modules/SqlUtil/html/group__event__source__constants.js
11319share/doc/qore/modules/SqlUtil/html/group__exception__type__constants.js 11443share/doc/qore/modules/SqlUtil/html/group__exception__type__constants.js
11320share/doc/qore/modules/SqlUtil/html/group__file__locking__constants.js 11444share/doc/qore/modules/SqlUtil/html/group__file__locking__constants.js
11321share/doc/qore/modules/SqlUtil/html/group__file__open__constants.js 11445share/doc/qore/modules/SqlUtil/html/group__file__open__constants.js
11322share/doc/qore/modules/SqlUtil/html/group__file__seek__constants.js 11446share/doc/qore/modules/SqlUtil/html/group__file__seek__constants.js
11323share/doc/qore/modules/SqlUtil/html/group__file__stat__constants.js 11447share/doc/qore/modules/SqlUtil/html/group__file__stat__constants.js
11324share/doc/qore/modules/SqlUtil/html/group__filesystem__functions.js 11448share/doc/qore/modules/SqlUtil/html/group__filesystem__functions.js
11325share/doc/qore/modules/SqlUtil/html/group__hmac__functions.js 11449share/doc/qore/modules/SqlUtil/html/group__hmac__functions.js
11326share/doc/qore/modules/SqlUtil/html/group__info__actions.html 11450share/doc/qore/modules/SqlUtil/html/group__info__actions.html
11327share/doc/qore/modules/SqlUtil/html/group__info__actions.js 11451share/doc/qore/modules/SqlUtil/html/group__info__actions.js
11328share/doc/qore/modules/SqlUtil/html/group__input__stream__function.js 
11329share/doc/qore/modules/SqlUtil/html/group__io__constants.js 11452share/doc/qore/modules/SqlUtil/html/group__io__constants.js
11330share/doc/qore/modules/SqlUtil/html/group__library__functions.js 11453share/doc/qore/modules/SqlUtil/html/group__library__functions.js
11331share/doc/qore/modules/SqlUtil/html/group__list__functions.js 11454share/doc/qore/modules/SqlUtil/html/group__list__functions.js
11332share/doc/qore/modules/SqlUtil/html/group__math__constants.js 11455share/doc/qore/modules/SqlUtil/html/group__math__constants.js
11333share/doc/qore/modules/SqlUtil/html/group__math__functions.js 11456share/doc/qore/modules/SqlUtil/html/group__math__functions.js
11334share/doc/qore/modules/SqlUtil/html/group__misc__functions.js 11457share/doc/qore/modules/SqlUtil/html/group__misc__functions.js
11335share/doc/qore/modules/SqlUtil/html/group__network__address__family__constants.js 11458share/doc/qore/modules/SqlUtil/html/group__network__address__family__constants.js
11336share/doc/qore/modules/SqlUtil/html/group__network__address__information__constants.js 11459share/doc/qore/modules/SqlUtil/html/group__network__address__information__constants.js
11337share/doc/qore/modules/SqlUtil/html/group__null__and__nothing__constants.js 11460share/doc/qore/modules/SqlUtil/html/group__null__and__nothing__constants.js
11338share/doc/qore/modules/SqlUtil/html/group__number__formatting__constants.js 11461share/doc/qore/modules/SqlUtil/html/group__number__formatting__constants.js
 11462share/doc/qore/modules/SqlUtil/html/group__number__string__formatting__constants.js
11339share/doc/qore/modules/SqlUtil/html/group__object__functions.js 11463share/doc/qore/modules/SqlUtil/html/group__object__functions.js
11340share/doc/qore/modules/SqlUtil/html/group__old__dbi__functions.js 11464share/doc/qore/modules/SqlUtil/html/group__old__dbi__functions.js
11341share/doc/qore/modules/SqlUtil/html/group__option__constants.js 11465share/doc/qore/modules/SqlUtil/html/group__option__constants.js
11342share/doc/qore/modules/SqlUtil/html/group__parse__options.js 11466share/doc/qore/modules/SqlUtil/html/group__parse__options.js
11343share/doc/qore/modules/SqlUtil/html/group__protocol__constants.js 11467share/doc/qore/modules/SqlUtil/html/group__protocol__constants.js
11344share/doc/qore/modules/SqlUtil/html/group__pwd__functions.js 11468share/doc/qore/modules/SqlUtil/html/group__pwd__functions.js
11345share/doc/qore/modules/SqlUtil/html/group__range__functions.js 11469share/doc/qore/modules/SqlUtil/html/group__range__functions.js
11346share/doc/qore/modules/SqlUtil/html/group__regex__constants.js 11470share/doc/qore/modules/SqlUtil/html/group__regex__constants.js
11347share/doc/qore/modules/SqlUtil/html/group__signal__constants.js 11471share/doc/qore/modules/SqlUtil/html/group__signal__constants.js
11348share/doc/qore/modules/SqlUtil/html/group__signal__handling__functions.js 11472share/doc/qore/modules/SqlUtil/html/group__signal__handling__functions.js
11349share/doc/qore/modules/SqlUtil/html/group__socket__type__constants.js 11473share/doc/qore/modules/SqlUtil/html/group__socket__type__constants.js
11350share/doc/qore/modules/SqlUtil/html/group__sql__constants.js 11474share/doc/qore/modules/SqlUtil/html/group__sql__constants.js
11351share/doc/qore/modules/SqlUtil/html/group__sql__cop__funcs.html 11475share/doc/qore/modules/SqlUtil/html/group__sql__cop__funcs.html
@@ -11446,27 +11570,26 @@ share/doc/qore/modules/SqlUtil/html/nav_ @@ -11446,27 +11570,26 @@ share/doc/qore/modules/SqlUtil/html/nav_
11446share/doc/qore/modules/SqlUtil/html/nav_h.png 11570share/doc/qore/modules/SqlUtil/html/nav_h.png
11447share/doc/qore/modules/SqlUtil/html/navtree.css 11571share/doc/qore/modules/SqlUtil/html/navtree.css
11448share/doc/qore/modules/SqlUtil/html/navtree.js 11572share/doc/qore/modules/SqlUtil/html/navtree.js
11449share/doc/qore/modules/SqlUtil/html/navtreedata.js 11573share/doc/qore/modules/SqlUtil/html/navtreedata.js
11450share/doc/qore/modules/SqlUtil/html/navtreeindex0.js 11574share/doc/qore/modules/SqlUtil/html/navtreeindex0.js
11451share/doc/qore/modules/SqlUtil/html/navtreeindex1.js 11575share/doc/qore/modules/SqlUtil/html/navtreeindex1.js
11452share/doc/qore/modules/SqlUtil/html/navtreeindex2.js 11576share/doc/qore/modules/SqlUtil/html/navtreeindex2.js
11453share/doc/qore/modules/SqlUtil/html/navtreeindex3.js 11577share/doc/qore/modules/SqlUtil/html/navtreeindex3.js
11454share/doc/qore/modules/SqlUtil/html/navtreeindex4.js 11578share/doc/qore/modules/SqlUtil/html/navtreeindex4.js
11455share/doc/qore/modules/SqlUtil/html/navtreeindex5.js 11579share/doc/qore/modules/SqlUtil/html/navtreeindex5.js
11456share/doc/qore/modules/SqlUtil/html/navtreeindex6.js 11580share/doc/qore/modules/SqlUtil/html/navtreeindex6.js
11457share/doc/qore/modules/SqlUtil/html/navtreeindex7.js 11581share/doc/qore/modules/SqlUtil/html/navtreeindex7.js
11458share/doc/qore/modules/SqlUtil/html/navtreeindex8.js 11582share/doc/qore/modules/SqlUtil/html/navtreeindex8.js
11459share/doc/qore/modules/SqlUtil/html/navtreeindex9.js 
11460share/doc/qore/modules/SqlUtil/html/open.png 11583share/doc/qore/modules/SqlUtil/html/open.png
11461share/doc/qore/modules/SqlUtil/html/pages.html 11584share/doc/qore/modules/SqlUtil/html/pages.html
11462share/doc/qore/modules/SqlUtil/html/resize.js 11585share/doc/qore/modules/SqlUtil/html/resize.js
11463share/doc/qore/modules/SqlUtil/html/schema_management.html 11586share/doc/qore/modules/SqlUtil/html/schema_management.html
11464share/doc/qore/modules/SqlUtil/html/search/all_0.html 11587share/doc/qore/modules/SqlUtil/html/search/all_0.html
11465share/doc/qore/modules/SqlUtil/html/search/all_0.js 11588share/doc/qore/modules/SqlUtil/html/search/all_0.js
11466share/doc/qore/modules/SqlUtil/html/search/all_1.html 11589share/doc/qore/modules/SqlUtil/html/search/all_1.html
11467share/doc/qore/modules/SqlUtil/html/search/all_1.js 11590share/doc/qore/modules/SqlUtil/html/search/all_1.js
11468share/doc/qore/modules/SqlUtil/html/search/all_10.html 11591share/doc/qore/modules/SqlUtil/html/search/all_10.html
11469share/doc/qore/modules/SqlUtil/html/search/all_10.js 11592share/doc/qore/modules/SqlUtil/html/search/all_10.js
11470share/doc/qore/modules/SqlUtil/html/search/all_11.html 11593share/doc/qore/modules/SqlUtil/html/search/all_11.html
11471share/doc/qore/modules/SqlUtil/html/search/all_11.js 11594share/doc/qore/modules/SqlUtil/html/search/all_11.js
11472share/doc/qore/modules/SqlUtil/html/search/all_12.html 11595share/doc/qore/modules/SqlUtil/html/search/all_12.html
@@ -12203,37 +12326,37 @@ share/doc/qore/modules/TelnetClient/html @@ -12203,37 +12326,37 @@ share/doc/qore/modules/TelnetClient/html
12203share/doc/qore/modules/TelnetClient/html/group__env__functions.js 12326share/doc/qore/modules/TelnetClient/html/group__env__functions.js
12204share/doc/qore/modules/TelnetClient/html/group__error__constants.js 12327share/doc/qore/modules/TelnetClient/html/group__error__constants.js
12205share/doc/qore/modules/TelnetClient/html/group__event__constants.js 12328share/doc/qore/modules/TelnetClient/html/group__event__constants.js
12206share/doc/qore/modules/TelnetClient/html/group__event__map__constants.js 12329share/doc/qore/modules/TelnetClient/html/group__event__map__constants.js
12207share/doc/qore/modules/TelnetClient/html/group__event__source__constants.js 12330share/doc/qore/modules/TelnetClient/html/group__event__source__constants.js
12208share/doc/qore/modules/TelnetClient/html/group__exception__type__constants.js 12331share/doc/qore/modules/TelnetClient/html/group__exception__type__constants.js
12209share/doc/qore/modules/TelnetClient/html/group__file__locking__constants.js 12332share/doc/qore/modules/TelnetClient/html/group__file__locking__constants.js
12210share/doc/qore/modules/TelnetClient/html/group__file__open__constants.js 12333share/doc/qore/modules/TelnetClient/html/group__file__open__constants.js
12211share/doc/qore/modules/TelnetClient/html/group__file__seek__constants.js 12334share/doc/qore/modules/TelnetClient/html/group__file__seek__constants.js
12212share/doc/qore/modules/TelnetClient/html/group__file__stat__constants.js 12335share/doc/qore/modules/TelnetClient/html/group__file__stat__constants.js
12213share/doc/qore/modules/TelnetClient/html/group__filesystem__functions.js 12336share/doc/qore/modules/TelnetClient/html/group__filesystem__functions.js
12214share/doc/qore/modules/TelnetClient/html/group__hmac__functions.js 12337share/doc/qore/modules/TelnetClient/html/group__hmac__functions.js
12215share/doc/qore/modules/TelnetClient/html/group__info__actions.js 12338share/doc/qore/modules/TelnetClient/html/group__info__actions.js
12216share/doc/qore/modules/TelnetClient/html/group__input__stream__function.js 
12217share/doc/qore/modules/TelnetClient/html/group__io__constants.js 12339share/doc/qore/modules/TelnetClient/html/group__io__constants.js
12218share/doc/qore/modules/TelnetClient/html/group__library__functions.js 12340share/doc/qore/modules/TelnetClient/html/group__library__functions.js
12219share/doc/qore/modules/TelnetClient/html/group__list__functions.js 12341share/doc/qore/modules/TelnetClient/html/group__list__functions.js
12220share/doc/qore/modules/TelnetClient/html/group__math__constants.js 12342share/doc/qore/modules/TelnetClient/html/group__math__constants.js
12221share/doc/qore/modules/TelnetClient/html/group__math__functions.js 12343share/doc/qore/modules/TelnetClient/html/group__math__functions.js
12222share/doc/qore/modules/TelnetClient/html/group__misc__functions.js 12344share/doc/qore/modules/TelnetClient/html/group__misc__functions.js
12223share/doc/qore/modules/TelnetClient/html/group__network__address__family__constants.js 12345share/doc/qore/modules/TelnetClient/html/group__network__address__family__constants.js
12224share/doc/qore/modules/TelnetClient/html/group__network__address__information__constants.js 12346share/doc/qore/modules/TelnetClient/html/group__network__address__information__constants.js
12225share/doc/qore/modules/TelnetClient/html/group__null__and__nothing__constants.js 12347share/doc/qore/modules/TelnetClient/html/group__null__and__nothing__constants.js
12226share/doc/qore/modules/TelnetClient/html/group__number__formatting__constants.js 12348share/doc/qore/modules/TelnetClient/html/group__number__formatting__constants.js
 12349share/doc/qore/modules/TelnetClient/html/group__number__string__formatting__constants.js
12227share/doc/qore/modules/TelnetClient/html/group__object__functions.js 12350share/doc/qore/modules/TelnetClient/html/group__object__functions.js
12228share/doc/qore/modules/TelnetClient/html/group__old__dbi__functions.js 12351share/doc/qore/modules/TelnetClient/html/group__old__dbi__functions.js
12229share/doc/qore/modules/TelnetClient/html/group__opcodes.js 12352share/doc/qore/modules/TelnetClient/html/group__opcodes.js
12230share/doc/qore/modules/TelnetClient/html/group__option__constants.js 12353share/doc/qore/modules/TelnetClient/html/group__option__constants.js
12231share/doc/qore/modules/TelnetClient/html/group__parse__options.js 12354share/doc/qore/modules/TelnetClient/html/group__parse__options.js
12232share/doc/qore/modules/TelnetClient/html/group__protocol__constants.js 12355share/doc/qore/modules/TelnetClient/html/group__protocol__constants.js
12233share/doc/qore/modules/TelnetClient/html/group__pwd__functions.js 12356share/doc/qore/modules/TelnetClient/html/group__pwd__functions.js
12234share/doc/qore/modules/TelnetClient/html/group__range__functions.js 12357share/doc/qore/modules/TelnetClient/html/group__range__functions.js
12235share/doc/qore/modules/TelnetClient/html/group__regex__constants.js 12358share/doc/qore/modules/TelnetClient/html/group__regex__constants.js
12236share/doc/qore/modules/TelnetClient/html/group__signal__constants.js 12359share/doc/qore/modules/TelnetClient/html/group__signal__constants.js
12237share/doc/qore/modules/TelnetClient/html/group__signal__handling__functions.js 12360share/doc/qore/modules/TelnetClient/html/group__signal__handling__functions.js
12238share/doc/qore/modules/TelnetClient/html/group__socket__type__constants.js 12361share/doc/qore/modules/TelnetClient/html/group__socket__type__constants.js
12239share/doc/qore/modules/TelnetClient/html/group__sql__constants.js 12362share/doc/qore/modules/TelnetClient/html/group__sql__constants.js
@@ -13650,37 +13773,37 @@ share/doc/qore/modules/WebSocketUtil/htm @@ -13650,37 +13773,37 @@ share/doc/qore/modules/WebSocketUtil/htm
13650share/doc/qore/modules/WebSocketUtil/html/group__digest__functions.js 13773share/doc/qore/modules/WebSocketUtil/html/group__digest__functions.js
13651share/doc/qore/modules/WebSocketUtil/html/group__env__functions.js 13774share/doc/qore/modules/WebSocketUtil/html/group__env__functions.js
13652share/doc/qore/modules/WebSocketUtil/html/group__error__constants.js 13775share/doc/qore/modules/WebSocketUtil/html/group__error__constants.js
13653share/doc/qore/modules/WebSocketUtil/html/group__event__constants.js 13776share/doc/qore/modules/WebSocketUtil/html/group__event__constants.js
13654share/doc/qore/modules/WebSocketUtil/html/group__event__map__constants.js 13777share/doc/qore/modules/WebSocketUtil/html/group__event__map__constants.js
13655share/doc/qore/modules/WebSocketUtil/html/group__event__source__constants.js 13778share/doc/qore/modules/WebSocketUtil/html/group__event__source__constants.js
13656share/doc/qore/modules/WebSocketUtil/html/group__exception__type__constants.js 13779share/doc/qore/modules/WebSocketUtil/html/group__exception__type__constants.js
13657share/doc/qore/modules/WebSocketUtil/html/group__file__locking__constants.js 13780share/doc/qore/modules/WebSocketUtil/html/group__file__locking__constants.js
13658share/doc/qore/modules/WebSocketUtil/html/group__file__open__constants.js 13781share/doc/qore/modules/WebSocketUtil/html/group__file__open__constants.js
13659share/doc/qore/modules/WebSocketUtil/html/group__file__seek__constants.js 13782share/doc/qore/modules/WebSocketUtil/html/group__file__seek__constants.js
13660share/doc/qore/modules/WebSocketUtil/html/group__file__stat__constants.js 13783share/doc/qore/modules/WebSocketUtil/html/group__file__stat__constants.js
13661share/doc/qore/modules/WebSocketUtil/html/group__filesystem__functions.js 13784share/doc/qore/modules/WebSocketUtil/html/group__filesystem__functions.js
13662share/doc/qore/modules/WebSocketUtil/html/group__hmac__functions.js 13785share/doc/qore/modules/WebSocketUtil/html/group__hmac__functions.js
13663share/doc/qore/modules/WebSocketUtil/html/group__input__stream__function.js 
13664share/doc/qore/modules/WebSocketUtil/html/group__io__constants.js 13786share/doc/qore/modules/WebSocketUtil/html/group__io__constants.js
13665share/doc/qore/modules/WebSocketUtil/html/group__library__functions.js 13787share/doc/qore/modules/WebSocketUtil/html/group__library__functions.js
13666share/doc/qore/modules/WebSocketUtil/html/group__list__functions.js 13788share/doc/qore/modules/WebSocketUtil/html/group__list__functions.js
13667share/doc/qore/modules/WebSocketUtil/html/group__math__constants.js 13789share/doc/qore/modules/WebSocketUtil/html/group__math__constants.js
13668share/doc/qore/modules/WebSocketUtil/html/group__math__functions.js 13790share/doc/qore/modules/WebSocketUtil/html/group__math__functions.js
13669share/doc/qore/modules/WebSocketUtil/html/group__misc__functions.js 13791share/doc/qore/modules/WebSocketUtil/html/group__misc__functions.js
13670share/doc/qore/modules/WebSocketUtil/html/group__network__address__family__constants.js 13792share/doc/qore/modules/WebSocketUtil/html/group__network__address__family__constants.js
13671share/doc/qore/modules/WebSocketUtil/html/group__network__address__information__constants.js 13793share/doc/qore/modules/WebSocketUtil/html/group__network__address__information__constants.js
13672share/doc/qore/modules/WebSocketUtil/html/group__null__and__nothing__constants.js 13794share/doc/qore/modules/WebSocketUtil/html/group__null__and__nothing__constants.js
13673share/doc/qore/modules/WebSocketUtil/html/group__number__formatting__constants.js 13795share/doc/qore/modules/WebSocketUtil/html/group__number__formatting__constants.js
 13796share/doc/qore/modules/WebSocketUtil/html/group__number__string__formatting__constants.js
13674share/doc/qore/modules/WebSocketUtil/html/group__object__functions.js 13797share/doc/qore/modules/WebSocketUtil/html/group__object__functions.js
13675share/doc/qore/modules/WebSocketUtil/html/group__old__dbi__functions.js 13798share/doc/qore/modules/WebSocketUtil/html/group__old__dbi__functions.js
13676share/doc/qore/modules/WebSocketUtil/html/group__opcodes.html 13799share/doc/qore/modules/WebSocketUtil/html/group__opcodes.html
13677share/doc/qore/modules/WebSocketUtil/html/group__opcodes.js 13800share/doc/qore/modules/WebSocketUtil/html/group__opcodes.js
13678share/doc/qore/modules/WebSocketUtil/html/group__option__constants.js 13801share/doc/qore/modules/WebSocketUtil/html/group__option__constants.js
13679share/doc/qore/modules/WebSocketUtil/html/group__parse__options.js 13802share/doc/qore/modules/WebSocketUtil/html/group__parse__options.js
13680share/doc/qore/modules/WebSocketUtil/html/group__protocol__constants.js 13803share/doc/qore/modules/WebSocketUtil/html/group__protocol__constants.js
13681share/doc/qore/modules/WebSocketUtil/html/group__pwd__functions.js 13804share/doc/qore/modules/WebSocketUtil/html/group__pwd__functions.js
13682share/doc/qore/modules/WebSocketUtil/html/group__range__functions.js 13805share/doc/qore/modules/WebSocketUtil/html/group__range__functions.js
13683share/doc/qore/modules/WebSocketUtil/html/group__regex__constants.js 13806share/doc/qore/modules/WebSocketUtil/html/group__regex__constants.js
13684share/doc/qore/modules/WebSocketUtil/html/group__signal__constants.js 13807share/doc/qore/modules/WebSocketUtil/html/group__signal__constants.js
13685share/doc/qore/modules/WebSocketUtil/html/group__signal__handling__functions.js 13808share/doc/qore/modules/WebSocketUtil/html/group__signal__handling__functions.js
13686share/doc/qore/modules/WebSocketUtil/html/group__socket__type__constants.js 13809share/doc/qore/modules/WebSocketUtil/html/group__socket__type__constants.js
@@ -14378,42 +14501,42 @@ share/doc/qore/modules/WebUtil/html/sear @@ -14378,42 +14501,42 @@ share/doc/qore/modules/WebUtil/html/sear
14378share/doc/qore/modules/WebUtil/html/search/variables_d.js 14501share/doc/qore/modules/WebUtil/html/search/variables_d.js
14379share/doc/qore/modules/WebUtil/html/search/variables_e.html 14502share/doc/qore/modules/WebUtil/html/search/variables_e.html
14380share/doc/qore/modules/WebUtil/html/search/variables_e.js 14503share/doc/qore/modules/WebUtil/html/search/variables_e.js
14381share/doc/qore/modules/WebUtil/html/search/variables_f.html 14504share/doc/qore/modules/WebUtil/html/search/variables_f.html
14382share/doc/qore/modules/WebUtil/html/search/variables_f.js 14505share/doc/qore/modules/WebUtil/html/search/variables_f.js
14383share/doc/qore/modules/WebUtil/html/splitbar.png 14506share/doc/qore/modules/WebUtil/html/splitbar.png
14384share/doc/qore/modules/WebUtil/html/sync_off.png 14507share/doc/qore/modules/WebUtil/html/sync_off.png
14385share/doc/qore/modules/WebUtil/html/sync_on.png 14508share/doc/qore/modules/WebUtil/html/sync_on.png
14386share/doc/qore/modules/WebUtil/html/tab_a.png 14509share/doc/qore/modules/WebUtil/html/tab_a.png
14387share/doc/qore/modules/WebUtil/html/tab_b.png 14510share/doc/qore/modules/WebUtil/html/tab_b.png
14388share/doc/qore/modules/WebUtil/html/tab_h.png 14511share/doc/qore/modules/WebUtil/html/tab_h.png
14389share/doc/qore/modules/WebUtil/html/tab_s.png 14512share/doc/qore/modules/WebUtil/html/tab_s.png
14390share/doc/qore/modules/WebUtil/html/tabs.css 14513share/doc/qore/modules/WebUtil/html/tabs.css
14391share/qore-modules/${PKGVERSION}/BulkSqlUtil.qm 14514share/qore-modules/0.8.12/BulkSqlUtil.qm
14392share/qore-modules/${PKGVERSION}/CsvUtil.qm 14515share/qore-modules/0.8.12/CsvUtil.qm
14393share/qore-modules/${PKGVERSION}/Diff.qm 14516share/qore-modules/0.8.12/Diff.qm
14394share/qore-modules/${PKGVERSION}/FilePoller.qm 14517share/qore-modules/0.8.12/FilePoller.qm
14395share/qore-modules/${PKGVERSION}/FixedLengthUtil.qm 14518share/qore-modules/0.8.12/FixedLengthUtil.qm
14396share/qore-modules/${PKGVERSION}/FreetdsSqlUtil.qm 14519share/qore-modules/0.8.12/FreetdsSqlUtil.qm
14397share/qore-modules/${PKGVERSION}/HttpServer.qm 14520share/qore-modules/0.8.12/HttpServer.qm
14398share/qore-modules/${PKGVERSION}/HttpServerUtil.qm 14521share/qore-modules/0.8.12/HttpServerUtil.qm
14399share/qore-modules/${PKGVERSION}/MailMessage.qm 14522share/qore-modules/0.8.12/MailMessage.qm
14400share/qore-modules/${PKGVERSION}/Mapper.qm 14523share/qore-modules/0.8.12/Mapper.qm
14401share/qore-modules/${PKGVERSION}/Mime.qm 14524share/qore-modules/0.8.12/Mime.qm
14402share/qore-modules/${PKGVERSION}/MysqlSqlUtil.qm 14525share/qore-modules/0.8.12/MysqlSqlUtil.qm
14403share/qore-modules/${PKGVERSION}/OracleSqlUtil.qm 14526share/qore-modules/0.8.12/OracleSqlUtil.qm
14404share/qore-modules/${PKGVERSION}/PgsqlSqlUtil.qm 14527share/qore-modules/0.8.12/PgsqlSqlUtil.qm
14405share/qore-modules/${PKGVERSION}/Pop3Client.qm 14528share/qore-modules/0.8.12/Pop3Client.qm
14406share/qore-modules/${PKGVERSION}/QUnit.qm 14529share/qore-modules/0.8.12/QUnit.qm
14407share/qore-modules/${PKGVERSION}/Qorize.qm 14530share/qore-modules/0.8.12/Qorize.qm
14408share/qore-modules/${PKGVERSION}/RestClient.qm 14531share/qore-modules/0.8.12/RestClient.qm
14409share/qore-modules/${PKGVERSION}/RestHandler.qm 14532share/qore-modules/0.8.12/RestHandler.qm
14410share/qore-modules/${PKGVERSION}/Schema.qm 14533share/qore-modules/0.8.12/Schema.qm
14411share/qore-modules/${PKGVERSION}/SmtpClient.qm 14534share/qore-modules/0.8.12/SmtpClient.qm
14412share/qore-modules/${PKGVERSION}/SqlUtil.qm 14535share/qore-modules/0.8.12/SqlUtil.qm
14413share/qore-modules/${PKGVERSION}/TableMapper.qm 14536share/qore-modules/0.8.12/TableMapper.qm
14414share/qore-modules/${PKGVERSION}/TelnetClient.qm 14537share/qore-modules/0.8.12/TelnetClient.qm
14415share/qore-modules/${PKGVERSION}/Util.qm 14538share/qore-modules/0.8.12/Util.qm
14416share/qore-modules/${PKGVERSION}/WebSocketClient.qm 14539share/qore-modules/0.8.12/WebSocketClient.qm
14417share/qore-modules/${PKGVERSION}/WebSocketHandler.qm 14540share/qore-modules/0.8.12/WebSocketHandler.qm
14418share/qore-modules/${PKGVERSION}/WebSocketUtil.qm 14541share/qore-modules/0.8.12/WebSocketUtil.qm
14419share/qore-modules/${PKGVERSION}/WebUtil.qm 14542share/qore-modules/0.8.12/WebUtil.qm

cvs diff -r1.5 -r1.6 pkgsrc/lang/qore/distinfo (expand / switch to unified diff)

--- pkgsrc/lang/qore/distinfo 2016/07/20 11:58:40 1.5
+++ pkgsrc/lang/qore/distinfo 2016/12/09 19:00:18 1.6
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.5 2016/07/20 11:58:40 nros Exp $ 1$NetBSD: distinfo,v 1.6 2016/12/09 19:00:18 nros Exp $
2 2
3SHA1 (qore-0.8.12.tar.bz2) = 9c9465559536053b7303c73f17b5243adc52ecab 3SHA1 (qore-0.8.12.4.tar.bz2) = 6c39c36a146c0c53a28024681d5b535d40788d1c
4RMD160 (qore-0.8.12.tar.bz2) = 312751b59156aaa813e4fce4d0876c376b6fd1d0 4RMD160 (qore-0.8.12.4.tar.bz2) = 05b9590e2cac53e24acd44417c4fc16bc27e7254
5SHA512 (qore-0.8.12.tar.bz2) = 2f7bd62ed93a5e64fd4fb77b0e62162d9f1cfa0c0bf9e5b0270cf1b5a150aa13c4283fac9a805a4e6e52d95647253de27c48cb7f9251d53a2a265624f43b31af 5SHA512 (qore-0.8.12.4.tar.bz2) = cfd730ce710e70e874813fbc7fe16a763a6b78f58de384ac00bca81022549e09f16d562dfbe221a03f800e0cc86035efd9dc900f6bdf385132feceaada726529
6Size (qore-0.8.12.tar.bz2) = 21703171 bytes 6Size (qore-0.8.12.4.tar.bz2) = 22136459 bytes