Diff for /parser3/ChangeLog between versions 1.93 and 1.184

version 1.93, 2015/02/03 09:08:22 version 1.184, 2023/11/20 02:05:14
Line 1 Line 1
 2015-01-12      misha  2023-11-18  moko
         * src/classes/form.C 1.44:  
         * src/include/pa_common.h 1.156:          * src/include/pa_types.h: minor
         * src/include/pa_request_info.h 1.8:  
         * src/main/pa_common.C 1.280:          * src/include/pa_dir.h: MAXPATH in UTF-16 chars, not bytes
         * src/types/pa_vform.C 1.107:  
         * src/types/pa_vform.h 1.61:          * tests/: 389.html, results/389.processed: error messages for some
                 - supports body with PUT method as well ( new feature: #1006 )            OS differs a bit, reducing failing tests for them
   
         * src/classes/file.C 1.232:  2023-11-17  moko
                 - warnings war  
           * tests/: 423.html, results/423.processed: test for optional
 2015-01-11      misha            @auto[] inheritance added (related to feature #1233)
         * tests/results/300.processed 1.1:  
                 *** empty log message ***          * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
             types/pa_vstateless_class.C: optional @auto[] inheritance
         * tests/300.html 1.1:            implemented if defined with two args (path, class name)
                 - test for ^hash.delete[] is added            (implements feature #1233)
   
         * src/classes/hash.C 1.119:          * src/: classes/double.C, classes/int.C, classes/math.C,
                 - ^hash.delete[] clear all hash ( new feature: #989 )            include/pa_random.h, include/pa_types.h, main/pa_common.C,
                 - tiny optimization in intersects            types/pa_vdouble.h, types/pa_vint.h: clip2int,clip2uint added to
             sync double->int overflow behavour under different architectures
 2015-01-06      moko            (fixes bug #1232)
         * src/types/pa_vmail.C 1.107:  
                 file names transcode added, to and cc added with transcode,          * tests/: 422.html, results/422.processed: int clipping added
                 attachments detection fixed  
   2023-11-16  moko
         * src/main/pa_request.C 1.338:  
                 filling mail received after cgi/auto.p load to allow charset          * tests/: 422.html, results/422.processed: test for int and uint
                 switch (related to issue #996)            overflow in ^n.format[d/u/x]
   
 2014-12-31      moko          * src/classes/math.C: bugfix: crc32 should not be negative (under
         * src/types/pa_vmail.C 1.106:            Apple M1 when negative double converts to uint the result is 0)
                 from and subject now transcoded if not UTF-8 source charset (            and crc32 should be 32 bits
                 fixes issue 996)  
           * src/main/pa_common.C: avoid (uint)<negative double> conversion as
         * src/main/pa_exception.C 1.52:            on Apple M1 it's 0
                 fixed string from stack bug (closes issue #1000)  
           * src/classes/file.C: bugfix: crc32 should not be negative (under
 2014-12-11      misha            Apple M1 when negative double converts to uint the result is 0)
         * src/types/pa_vhashfile.C 1.65:            and crc32 should be 32 bits
                 - check if key is not empty before access ( bug fix: #1005 )  
   2023-10-07  moko
 2014-11-13      misha  
         * src/main/compile.tab.C 1.158:          * src/: main/execute.C, types/pa_vdate.h: volatile added to sync
         * tests/results/232.processed 1.3:            behavour with other OP_NUM_*, related to bug #1230
         * tests/results/299.processed 1.1:  
                 *** empty log message ***  2023-10-06  moko
   
         * src/main/compile.y 1.266:          * tests/: 338.html, results/338.processed: test for bug #1230 added
                 - PC.append does not reset to false while creating a new class.  
                 bugfix: #990          * src/: main/execute.C, types/pa_vdate.h: force double operands to
             be converted to double to avoid 80 bit operations in x87 mode
         * tests/299.html 1.1:            (fixes bug #1230)
                 - test for creation class after working with partial class (  
                 create+append)  2023-10-05  moko
   
         * src/types/pa_vobject.C 1.40:          * tests/420.html: add feature FEATURE_GET_ELEMENT4CALL disabled
                 - @GET[def] always returns true. bugfix: #995            compatibility
   
         * tests/232.html 1.3:          * tests/337.html: 2work without FEATURE_GET_ELEMENT4CALL
                 - test for @get[def] added  
           * tests/: 421.html, results/421.processed: test to cover all
 2014-10-12      moko            classes and objects nonexistent method and field exceptions
         * src/lib/pcre/pcre_internal.vcproj 1.3:            (related to feature #1080 and #1227)
                 correct path  
           * tests/results/: 182.processed, 324.processed: undefined method ->
 2014-10-11      moko            <type> method not found exception (related to feature #1080)
         * src/classes/classes.vcproj 1.32:  
         * src/lib/cord/cord.vcproj 1.7:          * src/types/: pa_vbool.h, pa_vconsole.h, pa_vdouble.h, pa_vint.h,
         * src/lib/ltdl/ltdl.vcproj 1.10:            pa_vregex.C, pa_vstateless_object.h: + VSimple_stateless_object,
         * src/lib/md5/md5.vcproj 1.8:            "element can not be fetched from" for them, "field not found" for
         * src/lib/pcre/pcre_internal.vcproj 1.2:            all other types (related to bug #1227)
         * src/main/main.vcproj 1.29:  
         * src/targets/apache/ApacheModuleParser3.vcproj 1.3:  2023-10-03  moko
         * src/targets/apache/ApacheModuleParser3Core.vcproj 1.3:  
         * src/targets/cgi/parser3.vcproj 1.23:          * src/types/pa_vstateless_class.h: "Source: <method name>, Comment:
         * src/targets/isapi/parser3isapi.vcproj 1.18:            <type> method not found" exception now thrown for static calls
         * src/types/types.vcproj 1.31:            instead of "undefined method" without class name (related to
                 project GUID inserted in *.vcproj for correct conversion in            feature #1080)
                 newer VS versions  
   2023-10-02  moko
         * parser3.sln 1.19:  
         * src/lib/pcre/pcre_internal.vcproj 1.1:          * src/types/: pa_vdouble.h, pa_vhash.h, pa_vint.h, pa_vobject.C,
                 pcre_internal.vcproj added            pa_vstateless_object.h, pa_vstring.h, pa_vtable.C: "Source:
             <method name>, Comment: <type> method not found" exception now
 2014-08-28      moko            thrown for all dynamic objects instead of "undefined method"
         * src/lib/pcre/Makefile.in 1.23:            without class name (implements feature #1080)
         * src/main/pa_charset.C 1.96:  
         * src/targets/apache/Makefile.am 1.11:  2023-10-01  moko
         * src/targets/apache/Makefile.in 1.13:  
         * src/targets/cgi/Makefile.am 1.65:          * src/classes/json.C: we don't have a dynamic json object.
         * src/targets/cgi/Makefile.in 1.86:  
                 *** empty log message ***  2023-09-28  moko
   
         * src/lib/pcre/Makefile.am 1.9:          * tests/: 420.html, results/261.processed, results/420.processed:
         * src/lib/pcre/pa_pcre_chartables.c 1.1:            tests updated after bug #1228 fix reverted
         * src/lib/pcre/pa_pcre_internal.h 1.3:  
         * src/lib/pcre/pa_pcre_valid_utf8.c 1.1:          * src/types/pa_vstring.h: revering fix for bug #1228, as empty or
                 _pcre_default_tables and pcre_valid_utf are copied to parser3            whitespace string is hash compatible, so we don't want $s.key to
                 code (fixes issue #991)            return a junction
   
 2014-06-29      misha          * tests/: 261.html, 420.html, results/261.processed,
         * tests/results/298.processed 1.1:            results/420.processed: test for bug #1227 added, test updated
                 *** empty log message ***            after bug #1228 fixed
   
         * tests/298.html 1.1:          * src/types/: pa_vdouble.h, pa_vint.h: $int.field and $double.field
                 - tests for ^reflection:def[class;className] added            now throws exception as $non-empty-string.field (fixes bug #1227)
   
         * src/classes/reflection.C 1.30:          * src/types/pa_vstring.h: allow $string.method access (fixes bug
                 - ^reflection:def[class;className] added ( new feature: #918 )            #1228)
   
         * src/classes/table.C 1.301:  2023-09-26  moko
                 - ^table::create[unsupported data] - exception comment changed  
                 to "body must be table or code" ( bug fix: #951 )          * AUTHORS, aclocal.m4, configure, src/classes/bool.C,
             src/classes/classes.C, src/classes/classes.awk,
         * tests/261.html 1.3:            src/classes/classes.h, src/classes/curl.C, src/classes/date.C,
         * tests/results/261.processed 1.3:            src/classes/double.C, src/classes/file.C, src/classes/form.C,
                 - tests for ^json:string[...;$.void[null|string]] added            src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
             src/classes/inet.C, src/classes/int.C, src/classes/json.C,
         * src/classes/json.C 1.32:            src/classes/mail.C, src/classes/math.C, src/classes/memcached.C,
         * src/types/pa_value.h 1.153:            src/classes/memory.C, src/classes/op.C, src/classes/reflection.C,
         * src/types/pa_vvoid.h 1.41:            src/classes/regex.C, src/classes/response.C,
                 - new option $.void[string|null] added to ^json:string[...] (            src/classes/string.C, src/classes/table.C, src/classes/void.C,
                 new feature: #952 )            src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
             src/include/pa_array.h, src/include/pa_base64.h,
 2014-06-27      moko            src/include/pa_cache_managers.h, src/include/pa_charset.h,
         * src/classes/curl.C 1.30:            src/include/pa_charsets.h, src/include/pa_common.h,
                 $.charset now processed before other curl options (closes issue #            src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
                 980)            src/include/pa_dictionary.h, src/include/pa_dir.h,
             src/include/pa_exception.h, src/include/pa_exec.h,
 2014-05-23      misha            src/include/pa_globals.h, src/include/pa_hash.h,
         * src/classes/json.C 1.31:            src/include/pa_http.h, src/include/pa_memory.h,
                 - bug fix: #987            src/include/pa_opcode.h, src/include/pa_operation.h,
             src/include/pa_os.h, src/include/pa_pool.h,
 2014-05-04      misha            src/include/pa_random.h, src/include/pa_request.h,
         * tests/results/253.processed 1.8:            src/include/pa_request_charsets.h, src/include/pa_request_info.h,
         * tests/results/255.processed 1.3:            src/include/pa_sapi.h, src/include/pa_socks.h,
                 *** empty log message ***            src/include/pa_sql_connection.h,
             src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
         * tests/253.html 1.7:            src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
         * tests/253_json.txt 1.4:            src/include/pa_stylesheet_manager.h, src/include/pa_symbols.h,
                 - test for ^json:parse[$.int(false)] is added            src/include/pa_table.h, src/include/pa_threads.h,
             src/include/pa_types.h, src/include/pa_uue.h,
         * src/classes/json.C 1.30:            src/include/pa_xml_exception.h, src/include/pa_xml_io.h,
                 - To ^json:parse[] added option $.int(bool, default true). The            src/lib/gd/gif.C, src/lib/gd/gif.h, src/lib/gd/gifio.C,
                 option is similar to $.double(bool) but for integers.            src/lib/ltdl/configure, src/lib/md5/pa_md5.h,
             src/lib/md5/pa_md5c.c, src/lib/memcached/pa_memcached.C,
 2014-05-01      moko            src/lib/memcached/pa_memcached.h, src/lib/punycode/pa_idna.c,
         * src/classes/file.C 1.231:            src/lib/punycode/pa_idna.h, src/lib/sdbm/pa_file_io.C,
                 "PARSER_VERSION" -> PARSER_VERSION ( bugfix: #12 )            src/lib/sdbm/pa_strings.C, src/lib/smtp/comms.C,
             src/lib/smtp/smtp.C, src/lib/smtp/smtp.h, src/main/compile.C,
 2014-04-15      moko            src/main/compile.tab.C, src/main/compile.y,
         * src/main/pa_http.C 1.61:            src/main/compile_tools.C, src/main/compile_tools.h,
                 response-charset option should finally work now (fix for issue #            src/main/execute.C, src/main/pa_base64.C,
                 867)            src/main/pa_cache_managers.C, src/main/pa_charset.C,
             src/main/pa_charsets.C, src/main/pa_common.C,
         * src/main/pa_http.C 1.60:            src/main/pa_dictionary.C, src/main/pa_dir.C,
                 response-charset option should work now (fix for issue #867)            src/main/pa_exception.C, src/main/pa_exec.C,
             src/main/pa_globals.C, src/main/pa_http.C, src/main/pa_memory.C,
 2014-03-07      moko            src/main/pa_os.C, src/main/pa_pool.C, src/main/pa_random.C,
         * buildall 1.13:            src/main/pa_request.C, src/main/pa_socks.C,
         * buildall [release_3_4_3] 1.12.2.1:            src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
                 libgc moved            src/main/pa_stylesheet_connection.C,
             src/main/pa_stylesheet_manager.C, src/main/pa_symbols.C,
 2013-12-29      moko            src/main/pa_table.C, src/main/pa_threads.C, src/main/pa_uue.C,
         * src/classes/string.C 1.212:            src/main/pa_xml_exception.C, src/main/pa_xml_io.C,
                 ^string:js-unescape result now tainted, closes issue #966            src/main/untaint.C, src/main/helpers/simple_folding.pl,
             src/sql/pa_sql_driver.h, src/targets/apache/mod_parser3.c,
         * tests/186.html 1.5:            src/targets/apache/mod_parser3_core.C,
         * tests/results/186.processed 1.4:            src/targets/apache/pa_httpd.h, src/targets/cgi/parser3.C,
                 ^string:js-unescape result now tainted, issue #966            src/targets/isapi/parser3isapi.C, src/types/pa_junction.h,
             src/types/pa_method.h, src/types/pa_property.h,
 2013-12-02      moko            src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
         * src/classes/memcached.C 1.11:            src/types/pa_vcaller_wrapper.h, src/types/pa_vclass.C,
         * src/types/pa_vmemcached.C 1.16:            src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
         * src/types/pa_vmemcached.h 1.7:            src/types/pa_vconsole.h, src/types/pa_vcookie.C,
                 memcached open $.skip-connect(true|false) option was added for            src/types/pa_vcookie.h, src/types/pa_vdate.C,
                 http://www.parser.ru/forum/?id=79343            src/types/pa_vdate.h, src/types/pa_vdouble.h,
             src/types/pa_venv.C, src/types/pa_venv.h, src/types/pa_vfile.C,
         * src/classes/file.C 1.230:            src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vform.h,
                 bugfix for http://www.parser.ru/forum/?id=79337            src/types/pa_vhash.C, src/types/pa_vhash.h,
             src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
 2013-11-05      moko            src/types/pa_vimage.C, src/types/pa_vimage.h,
         * configure.in 1.202:            src/types/pa_vint.h, src/types/pa_vjunction.C,
         * src/include/pa_version.h 1.51:            src/types/pa_vjunction.h, src/types/pa_vmail.C,
                 3.4.3 -> 3.4.4b            src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
             src/types/pa_vmemcached.C, src/types/pa_vmemcached.h,
         * src/main/pa_globals.C 1.192:            src/types/pa_vmemory.h, src/types/pa_vmethod_frame.C,
                 spelling fixed            src/types/pa_vmethod_frame.h, src/types/pa_vobject.C,
             src/types/pa_vobject.h, src/types/pa_vregex.C,
 2013-10-29      moko            src/types/pa_vregex.h, src/types/pa_vrequest.C,
         * src/lib/json/json.vcproj 1.5:            src/types/pa_vrequest.h, src/types/pa_vresponse.C,
                 json.c -> pa_json.C            src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
             src/types/pa_vstateless_class.h,
         * src/lib/json/pa_json.C 1.13:            src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
                 C++ compatibility addes, related to issue #892            src/types/pa_vstatus.h, src/types/pa_vstring.C,
             src/types/pa_vstring.h, src/types/pa_vtable.C,
         * src/classes/json.C 1.29:            src/types/pa_vtable.h, src/types/pa_vvoid.C,
         * src/lib/json/Makefile.am 1.7:            src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
         * src/lib/json/json.c 1.12:            src/types/pa_vxnode.C, src/types/pa_vxnode.h,
         * src/lib/json/json.h 1.3:            src/types/pa_wcontext.C, src/types/pa_wcontext.h,
         * src/lib/json/pa_json.C 1.12:            src/types/pa_wwrapper.h: copyright, authors actualized
                 json.c -> pa_json.C (for exceptions to be thrown thougth json  
                 library), related to issue #892  2023-08-20  moko
   
 2013-10-28      moko          * tests/: 141.html, results/141.processed: test for ^math:uuid7[]
         * src/main/pa_charset.C 1.95:            commited (related to feature #1219)
                 avoid compilation bug in Debian 6.0.8 x32, related to issue #896  
   2023-08-16  moko
 2013-10-24  moko  
           * src/main/pa_random.C: replaced clock precision with monotonicity
         * configure.in, src/include/pa_version.h: 3.4.3rc -> 3.4.3            counter, good for Windows version with low clock frequency
             (related to feature #1229)
 2013-10-23  moko  
   2023-08-15  moko
         * README: actualization  
           * src/: main/pa_random.C, types/pa_vstatus.C: win32 compatibility
 2013-10-22  moko            fixes related to feature #1229
   
         * src/targets/apache/mod_parser3.c: Adopted apache 2.4          * src/: classes/math.C, include/pa_random.h, main/pa_random.C,
           compatibility patch from Sergey Kirpichev            types/pa_vstatus.C: ^math:uuid7 added, code provided by Sumo
             (implements feature #1229)
         * tests/: 297.html, results/297.processed: non-working getter fix  
           test for issue #948  2023-08-02  moko
   
         * src/: include/pa_request.h, main/pa_request.C: Now getter is not          * tests/: results/417.processed, 417.html: test for empty string
           called when saving value of $match variable in ^string.match[] to            match after last char added (related to bug #1224)
           increase compatibility (related to issue #948).  
           * src/main/pa_string.C: avoid prestart++ after last char on zero
         * src/: include/pa_request.h, targets/cgi/parser3.C: minor header            length match (related to bug #1224)
           usage optimization  
   2022-11-22  moko
 2013-10-21  moko  
           * tests/: 419.html, results/419.processed: test for L_URI and path
         * tests/: 182.html, results/182.processed: local path removed for            removeal from filename added (related to bug #1204)
           compatibility  
           * src/main/pa_request.C: bugfix: pa_filename was lost in 1.394
         * tests/: 244.html, 253.html, 254.html, 275.html, 281.html,            commit (related to bug #1204), L_HTTP_HEADER is incorrect for
           results/244.processed, results/253.processed,            attribute value, L_URI should be used
           results/254.processed, results/275.processed,  
           results/281.processed: try_catch -> try-catch  2022-09-21  moko
   
         * tests/: 288.html, 294.html, 296.html, results/288.processed,          * src/targets/cgi/parser3.C: more clear error messages
           results/294.processed, results/296.processed: try_catch ->  
           try-catch          * src/targets/cgi/parser3.C: only SAPI_Info_CGI can read POST,
             SAPI_Info will return 0 in read_post and post_size !=
 2013-10-20  moko            content_length will be thrown
   
         * tests/: 296.html, results/296.processed: test for xsl exception  2022-08-23  moko
           for issue #938 added.  
           * src/types/pa_vmail.C: .tables addes as .raw contains only last
         * src/: include/pa_xml_exception.h,            header value
           main/pa_stylesheet_connection.C: forgotten to be replaced  
           XmlException is now replaced (once again closes issue #938)  2022-08-22  moko
   
 2013-10-19  misha          * tests/: 418.html, results/418.processed: test for
             ^hash_a.intersection[hash_b; $.order[self|arg] ] added (related
         * bin/auto.p.dist.in: - more mime-types are added            to #1225)
   
 2013-10-18  moko          * src/classes/hash.C: keep old behavoir by default
   
         * buildall: disable clock_gettime detection to avoid librt linking          * src/classes/hash.C: ^hash_a.intersection[hash_b;
           (which in turn depends on libpthread), related to issue #943            $.order[self|arg] ] added (implements #1215)
   
 2013-10-18  misha  2022-03-21  moko
   
         * src/: classes/classes.vcproj, lib/gd/gd.vcproj,          * src/main/pa_charset.C: bugfix: +static xml_encoding_handlers as
           lib/smtp/smtp.vcproj, main/main.vcproj,            xmlInitCharEncodingHandlers is called in libxml static
           targets/apache/ApacheModuleParser3Core.vcproj,            initializers before gc_substitute_memory_management_functions in
           targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,            pa_globals and thus gc may not see reference to our
           types/types.vcproj: - new locations for libxml2 includes where            xmlCharEncodingHandler and free it.
           added to vcproj files  
   2022-01-26  moko
 2013-10-18  moko  
           * src/targets/cgi/parser3.C: argv[0] -> parser3_filespec
         * src/classes/: hashfile.C, op.C: hopefully last part of issue #948  
           fix  2021-12-28  moko
   
         * tests/: 295.html, results/295.processed: test for issue #948          * tests/: 417.html, results/417.processed: test for empty string
           updated            match added (related to bug #1224)
   
         * src/classes/table.C: hopefully last lost part for issue #948 fix.          * src/main/pa_string.C: empty string match now works (fixes bug
           :)            #1224)
   
         * tests/: 295.html, results/295.processed: test for issue #948  2021-12-24  moko
           added  
           * tests/: 415_dir/29.p, results/415.processed: yet another test
         * src/: classes/hash.C, classes/string.C, classes/table.C,  
           include/pa_request.h, types/pa_method.h: for getters and setters  2021-12-23  moko
           to be executed request.put_element should be called, not  
           context.put_element (fixes issue #948)          * src/: classes/table.C, main/pa_request.C: warnings war
   
 2013-10-17  moko          * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
             main/pa_http.C, targets/cgi/parser3.C: MSVC SOCKET warnings war
         * src/classes/xdoc.C: libxml 2.9.1 compatibility with define  
           LIBXML2_NEW_BUFFER check (closes issue #943)  2021-12-21  moko
   
         * buildall: libxml 2.9.1 build is broken --without-reader.          * tests/: 416.html, results/416.processed: test for ^break[] in
             ^hash/table.select[] (related to feature #1222)
 2013-10-16  moko  
           * src/classes/: hash.C, table.C: ^break[] support for
         * configure.in, src/include/pa_version.h: 3.4.3b -> 3.4.3rc            ^hash/table.select[] (implements feature #1222)
   
         * tests/: 294.html, results/294.processed: test for issue #938  2021-11-30  moko
   
         * src/: classes/xdoc.C, classes/xnode.C,          * src/targets/cgi/parser3.C: default sock_ready interval changed to
           include/pa_xml_exception.h, main/pa_xml_exception.C: XmlException            0.5 sec
           now calls fixUTF8 if source charset is UTF-8 (closes issue #938)  
   2021-11-10  moko
         * buildall: pcre-8.30 -> pcre-8.33 libxml2-2.8.0 -> libxml2-2.9.1  
           libxslt-1.1.26 -> libxslt-1.1.28          * tests/results/415.processed: more syntax errors tests added
   
         * src/: include/pa_charset.h, lib/pcre/pa_pcre_internal.h,          * tests/415_dir/: 20.p, 21.p, 22.p, 23.p, 24.p, 25.p, 26.p, 27.p,
           main/pa_charset.C: fixUTF8 method added to replace invalid UTF-8            28.p: minor syntax error tests
           to '?', related to issue #938  
           * src/main/pa_exception.C: pa_strdup added for compatibility
 2013-10-15  moko  
           * src/classes/curl.C: hint to call ^curl:options[
         * src/: include/pa_common.h, main/pa_charset.C, main/pa_common.C,            $.library[correct.libcurl.so.name] ] added if default load fails.
           main/untaint.C: json chars 0x01-0x1F now are escaped as \u00XX,  
           minor optimizations (closes issue #896)  2021-11-09  moko
   
         * tests/results/: 292.processed, 293.processed: results updated to          * src/main/compile.y: error message can be on stack
           comply with issue #896  
           * src/main/pa_xml_io.C: strcat replaced with pa_strcat
         * tests/: 292.html, 293.html, results/292.processed,  
           results/293.processed: tests for json escaping          * src/main/pa_charset.C: memcpy is more correct and efficient in
             this case then strncpy
 2013-10-14  moko  
           * src/: classes/image.C, types/pa_vrequest.C: pa_strdup used
         * src/: include/pa_common.h, main/pa_common.C: minor rearrangements            instead of strcpy where possible
           and cleanup, code moved from .h to .C, no changes in code  
           * src/: classes/op.C, main/pa_exception.C: "%s" format now can be
 2013-10-12  moko            used to avoid MAX_STRING limit in Exception comment
   
         * tests/results/119.processed: updated test result commited          * tests/results/415.processed: compiler exceptions are no longer
             limited to MAX_STRING
         * tests/: 291.html, results/291.processed: test for issue #894  
           added          * src/main/: compile.y, compile_tools.h: Parse_control uses const
             char * instead of fixed buffer
         * src/types/pa_wcontext.h: base methods call support function  
           get_somebody_entered_some_class should not be true forever, as          * tests/: 415.html, 415_dir/01.p, 415_dir/02.p, 415_dir/03.p,
           wcontext can have many get_elements calls (fixes issue #894)            415_dir/04.p, 415_dir/05.p, 415_dir/06.p, 415_dir/07.p,
             415_dir/08.p, 415_dir/09.p, 415_dir/10.p, 415_dir/11.p,
 2013-10-11  moko            415_dir/12.p, 415_dir/13.p, 415_dir/14.p, 415_dir/15.p,
             results/415.processed: tests for parser.compile exceptions added
         * tests/: 290.html, results/290.processed: test for junction GPF  
           issue #942 added  2021-11-08  moko
   
         * src/types/pa_vmethod_frame.h: GPF if method junctions is passed          * src/: classes/math.C, include/pa_common.h, main/compile.y,
           to native method fixed (closes issue #942)            main/pa_common.C, main/pa_dir.C, main/pa_exec.C, main/pa_http.C,
             targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
         * tests/: 158.html, results/158.processed: test for csv-string[]            types/pa_vdate.C: pa_strncpy added ans used to avoid strncpy
           added            drawbacks
   
         * src/classes/table.C: minor fixes for table.csv-string[] (closes  2021-11-06  moko
           feature #907)  
           * src/classes/inet.C: ^inet:hostname[] added by sumo@ patch
         * src/classes/table.C: ^table.csv-string[] from misha@ (implements            (implements feature #1219)
           feature #907)  
           * tests/: 414.html, results/414.processed: test for
 2013-10-09  moko            ^hash.rename[from;to] added (related to feature #1144)
   
         * src/: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,  2021-11-05  moko
           types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,  
           types/pa_vstateless_class.C: GET_default, SET_default now works          * src/classes/hash.C: ^hash.rename[ $.from[to] ... ] support added
           properly not only in objects, but in classes as well (closes            (related to feature #1144)
           issue #903)  
   2021-11-04  moko
         * tests/: 289.html, results/289.processed: GET/SET_default now  
           works in classes, not only objects, test case added, related to          * src/: classes/hash.C, include/pa_hash.h: ^hash.rename[from;to]
           issue #903            added (implements feature #1144)
   
         * tests/: 288.html, results/288.processed: test for endless  2021-10-19  moko
           recursion bug added (related to issue #903)  
           * tests/: 413.html, results/413.processed: test for hash no longer
 2013-10-05  moko            is accepted as file parameter (related to bug #1218)
   
         * src/: classes/hash.C, classes/hashfile.C, classes/op.C,          * src/: classes/curl.C, classes/file.C, classes/image.C,
           classes/table.C, main/execute.C, types/pa_method.h,            classes/math.C, classes/xdoc.C, types/pa_value.C,
           types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,            types/pa_value.h, types/pa_vfile.h, types/pa_vmail.C: hash no
           types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,            longer is accepted as file parameter (fixes bug #1218)
           types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,  
           types/pa_vimage.C, types/pa_vimage.h, types/pa_vmemcached.C,  2021-07-19  moko
           types/pa_vmemcached.h, types/pa_vmethod_frame.h,  
           types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,          * src/targets/cgi/parser3.C: waitpid in file::exec returned "No
           types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,            child processes" when SIGCHLD was SIG_IGN (fixes bug #1215)
           types/pa_vstateless_class.h, types/pa_vstateless_object.h,  
           types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:  2021-04-16  moko
           optimization: put_element no longer has "bool areplace" argument,  
           related to issue #903          * src/types/pa_vmail.C: message can be null when e-mail is broken,
             processing it leads to assertions.
 2013-10-03  moko  
   2021-03-25  moko
         * tests/results/182.processed: result for $.replace(false) test  
           commited          * tests/: 412.html, results/412.processed: test to demonstrate bug
             #1213
         * src/classes/date.C: ^date::create(number) processed correctly  
           (fixes issue #901)  2021-02-12  moko
   
         * src/classes/image.C: as_no_junction removed, as param can be          * tests/: 360.html, results/360.processed, results/363.processed:
           expression (closes issue #931)            parser method call in expression mode no longer differs from call
             in string mode (related to feature #1211)
         * tests/233.html: test for issue #931 added  
   2021-02-11  moko
 2013-10-02  moko  
           * src/types/pa_vmail.C: mail parsing with Windows line endings
         * tests/: 182.html, 182_dir/a5.p: test for $.replace(true)            fixed (bug #1212)
           modified, test for $.replace(false) added  
           * src/types/pa_vmethod_frame.h: no more difference inside @test[]
         * src/main/compile_tools.h: forgotten class replace returned. :)            when called $v[^test[]] vs $v(^test[]), numbers are converted to
             strings in both calls (implements feature #1211)
 2013-09-30  moko  
   2021-01-28  moko
         * tests/: 141.html, results/141.processed: md5 tainting test added  
           * buildall, etc/auto.p.in: to remove last patch in debian package
         * src/: classes/op.C, include/pa_request.h, main/compile.y,  
           main/compile_tools.h, main/pa_request.C: allow_class_replace          * configure, configure.ac, src/include/pa_version.h: 3.4.6 ->
           implemented; $.replace option added to ^process and ^use            3.4.7b
   
 2013-08-27  moko  2021-01-21  moko
   
         * src/classes/: file.C, json.C, math.C, string.C, xdoc.C:          * src/main/pa_http.C: no alarm() in file::load when web server mode
           cstr_to_string_body_untaint should be called with charsets for            is MULTITHREADED
           possible uri language and connection for possible sql language.  
           related to issue #857  2021-01-20  moko
   
         * buildall: and -> or fixed          * src/targets/apache/mod_parser3.c: it is more correct to recommend
             'a2enmod mpm_prefork'
 2013-08-26  moko  
           * src/targets/apache/mod_parser3.c: prefork name is now
         * buildall: prepare_ functions logic changed to support            'libapache2-mpm-itk'
           gc-7.2d.tar.gz extracting to gc-7.2 directory  
           * src/targets/apache/mod_parser3_core.C: last regular malloc
 2013-08-23  moko            removed
   
         * src/include/pa_config_fixed.h: gc and xml libs are now linked          * src/targets/isapi/Makefile.am: -pa_threads.C
           statically  
           * configure, configure.ac, src/include/pa_version.h: 3.4.6rc ->
 2013-08-22  moko            3.4.6
   
         * src/classes/string.C: String::Empty used (related to issue #912)          * etc/auto.p.in: post_max_size 10Mb -> 64Mb. It's 2021 year now. :)
           append_know_length removed (related to old GPF bug)  
           * etc/auto.p.in: @config[result] added to simplify $cfg change in
 2013-08-21  moko            /httpd.p
   
         * src/classes/math.C: untaint(L_AS_IS) added for md5 and sha1          * etc/auto.p.in: httpd fine-tune: + @OPTIONS partial, +
             ^use[/httpd.p] + optional ^preprocess[] (related to feature
         * src/classes/math.C: ^math:digest[...;$file] support added            #1203)
           (related to ticket #857  
   2021-01-19  moko
         * tests/: 141.html, results/141.processed: ^math:digest[...;$file]  
           implemented          * buildall: --disable-parallel-mark added to avoid "number of
             processors" threads creation for heap marking as it conflicts
         * src/types/pa_vhashfile.h: warning war            with RLimitNProc in apache (on Linux setrlimit RLIMIT_NPROC
             limits threads)
         * src/: classes/json.C, classes/op.C, include/pa_hash.h,  
           include/pa_request.h, main/pa_request.C, types/pa_value.h:  2021-01-16  moko
           anti_endless_json_string_recoursion removed from request;  
           json_string_recoursion added to json_options; $.indent[indent          * src/: classes/memory.C, include/pa_memory.h, lib/gc/include/gc.h,
           value] now supported and passed within recoursion closes feature            main/pa_globals.C, main/pa_memory.C,
           #937            targets/apache/mod_parser3_core.C, targets/isapi/parser3isapi.C,
             types/pa_vhashfile.C: ^memory:auto-compact(N) added (implements
         * tests/: 287.html, results/287.processed: test for feature #937            feature #1209)
   
 2013-07-31  moko  2021-01-15  moko
   
         * src/lib/json/: json.c, pa_json.C: STATE__X -> STATE_XX for cygwin          * configure, configure.ac, src/include/pa_version.h: 3.4.6b ->
           compilation having #define _S            3.4.6rc
   
         * src/main/pa_globals.C: cleanup          * src/classes/json.C: get_delim added for delimiter caching (10%
             faster on large json)
 2013-07-30  moko  
   2021-01-14  moko
         * src/: classes/table.C, include/pa_common.h, main/pa_charset.C,  
           main/pa_common.C: vs2003 warning war          * operators.txt: updated with 3.4.6 changes
   
         * src/lib/json/: json.c, pa_json.C: vs2003 warning war          * tests/results/224.processed: test result modified after
             today(shift) implemented
         * src/lib/json/: json.c, pa_json.C: vs2003 compilation fix  
           * tests/: 407.html, results/407.processed: test for ^hash.select
         * src/lib/md5/pa_sha2.c: warning war            option $.default(bool) added (related to feature #1172)
   
 2013-07-29  moko          * src/classes/hash.C: ^hash.select option $.default(bool) added
             (related to feature #1172)
         * src/lib/json/: json.c, json.h, pa_json.C, pa_json.h: some libjson  
           patches from github          * tests/: 141.html, results/141.processed: test modified for
             feature #1185.
         * src/: classes/bool.C, classes/double.C, classes/int.C,  
           classes/memcached.C, include/pa_config_includes.h,          * src/: classes/math.C, include/pa_random.h, main/pa_random.C:
           types/pa_vfile.C, types/pa_vfile.h: warning war            ^math:uuid options $.lower(bool) $.solid(bool), ^math:uid64
             options $.lower(bool) (implements feature #1185)
         * src/lib/json/json.vcproj: C++ -> C  
   2021-01-11  moko
         * src/lib/json/: json.c, pa_json.C: C++ warning revert  
           * src/classes/date.C: ^date::today(N) by gz@ (implements feature
         * src/lib/json/: json.c, pa_json.C: windows compatibility            #1192)
   
         * src/lib/json/: json.c, pa_json.C: windows compatibility          * tests/: 411.html, results/411.processed: test for ^date::today(N)
             added (related to feature #1192)
         * src/lib/json/: json.c, pa_json.C: warning war  
   2021-01-05  moko
         * src/lib/json/: json.c, pa_json.C: win32 compilation issues fixes  
           * tests/: 270.html, results/270.processed: test modified to work
         * src/include/pa_config_fixed.h: uint16_t added            under Windows
   
         * configure.in: uint16_t check added          * tests/: 390.html, 395.html, results/395.processed: tests updated
             4 windows
         * src/: classes/json.C, lib/json/JSON_parser.C,  
           lib/json/JSON_parser.h, lib/json/Makefile.am, lib/json/json.c,          * tests/: 410.html, results/410.processed: test for
           lib/json/json.h, lib/json/json.vcproj, lib/json/pa_json.C,            $CLASS-GETTER-PROTECTED(false) added
           lib/json/pa_json.h: JSON_parser with non-free licence is replaced  
           with similar GPL licenced libjson (fixes issue #892)  2021-01-04  moko
   
 2013-07-25  moko          * tests/: 409.html, results/409.processed, results/auto.p: test for
             $MAIN:LOCALS(true) added
         * parser3.sln: dependencies added  
   2021-01-03  moko
         * parser3.sln, src/targets/apache/ApacheModuleParser3.vcproj,  
           src/targets/apache/ApacheModuleParser3Core.vcproj: win32 apache          * src/: main/pa_http.C, main/pa_request.C, types/pa_vclass.C,
           module support            types/pa_vclass.h, types/pa_vstateless_class.C,
             types/pa_vstateless_class.h: @conf[] +CLASS-GETTER-PROTECTED,
         * src/targets/apache/mod_parser3_core.C: win32 cleanup            +LOCALS. $main -> $MAIN in exception texts (implements feature
             #1207)
         * src/targets/apache/mod_parser3.c: win32 apache 2.2 module  
   2021-01-02  moko
 2013-07-23  moko  
           * etc/auto.p.in: minor
         * src/: include/pa_memory.h, main/pa_memory.C: non-working  
           PA_DEBUG_GC_MEMORY removed          * src/main/pa_request.C: sending headers only after opening file to
             allow error reporting if file was not opened (foreign group,
         * src/: main/pa_globals.C, targets/cgi/parser3.C:            etc).
           PA_DEBUG_DISABLE_GC compilation fix  
   2020-12-31  moko
         * src/: classes/op.C, classes/table.C, include/pa_request.h,  
           main/pa_request.C: outdated RESOURCES_DEBUG removed          * src/: include/pa_request.h, main/pa_request.C,
             targets/cgi/parser3.C: ^httpd-main[] -> ^httpd:main[]
         * src/: main/pa_os.C, targets/cgi/parser3.C: headers cleanup,  
           garbage cleanup          * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
             main/pa_request.C: get_class_ref added and used
         * src/main/pa_common.C: warning war  
           * etc/auto.p.in: @CLASS httpd added
         * src/: include/pa_http.h, main/pa_http.C: headers cleanup  
           * etc/auto.p.in: @auto[] is now first
         * src/: include/pa_common.h, main/pa_common.C: WIN32 -> _MSC_VER,  
           minor cleanup  2020-12-30  moko
   
         * src/: include/pa_dir.h, main/pa_dir.C: loaddir under cygwin now          * tests/: 408.html, results/408.processed: test for bug #1166
           uses cygwin, not WIN32 implementation            (windows only) added
   
         * src/main/pa_exec.C: WIN32 -> _MSC_VER, under cygwin unix exec is          * src/main/pa_common.C: create_dir_for_file should not create dir
           able to exec shell scripts            for trailing / (fixes bug #1166)
   
         * src/classes/math.C: ifdef WIN32 cleanup          * tests/: 341.html, results/341.processed: tests for
             ^nameless_table.hash[] added (related to feature #1138)
         * src/types/pa_vmemcached.C: LT_MODULE_EXT used  
           * src/classes/table.C: ^nameless_table.hash[0;1] now supported
         * bin/auto.p.dist.in: libpq.so -> libpq.            (implements feature #1138), extra fields in named tables no
             longer ignored (implements feature #1138)
         * src/classes/curl.C: LT_MODULE_EXT used  
           * tests/results/390.processed: updated after exception text change
         * src/include/pa_config_fixed.h: LT_MODULE_EXT defined  
   2020-12-29  moko
 2013-07-22  moko  
           * tests/: 407.html, results/407.processed: +$._default check
         * src/include/: pa_config_fixed.h, pa_config_includes.h: win32  
           includes fix          * src/classes/hash.C: keep $_default in ^hash.reverse[]
   
         * src/: main/pa_common.C, targets/cgi/parser3.C: includes cleanup          * tests/: 407.html, results/407.processed: test for ^hash.select[]
             and ^hash.reverse[] added (releated to feature #1172)
         * configure.in, src/include/pa_config_includes.h,  
           src/lib/smtp/comms.C, src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,          * src/classes/hash.C:
           src/main/pa_exec.C: includes cleanup            ^hash.select[key;value](bool-condition)[options hash] +
             ^hash.reverse[] added (implements feature #1172)
         * src/targets/cgi/parser3.C: 2012->2013  
           * src/types/pa_vtable.h: warning war
         * src/include/pa_version.h: 3.4.2 -> 3.4.3b  
           * src/include/pa_config_fixed.h: win32 fix
         * configure.in, src/include/pa_config_includes.h,  
           src/include/pa_http.h, src/lib/json/JSON_parser.h,  2020-12-27  moko
           src/main/pa_random.C, src/main/pa_socks.C,  
           src/types/pa_vstatus.C: cygwin support cleanup          * tests/: 406.html, results/406.processed: test results updated
   
         * configure.in: dirent.h check added          * src/: classes/table.C, main/pa_request.C, types/pa_vmail.C,
             types/pa_vmemcached.C: fine tuning in ^table.rename[], minor
         * src/: include/pa_config_includes.h, include/pa_dir.h,            spelling
           main/pa_dir.C: includes cleanup, dirent.h check added filePath  
           not copied  2020-12-26  moko
   
 2013-07-21  moko          * tests/: 406.html, results/406.processed: tests for
             ^table.rename[] added (related to feature #1148)
         * src/lib/cord/cord.vcproj: unused cordprnt.c removed  
           * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
         * src/targets/cgi/: Makefile.am, getopt.c, getopt.h,            ^table.rename[column name from;column name to], ^table.rename[
           parser3.vcproj: unused getopt.h / getopt.c removed            $.[column name from][column name to] ... ] added (implements
             feature #1148)
         * operators.txt, src/classes/file.C, tests/022.html,  
           tests/results/022.processed: ^file:list[path][$.filter[regexp]  2020-12-25  moko
           $.stat(true)] usage commented  
           * src/: include/pa_request_info.h, targets/cgi/parser3.C:
         * configure.in, src/classes/file.C, src/include/pa_dir.h,            request_info now on stack to avoid yet another THREAD_LOCAL
           src/main/pa_dir.C: ^file:list[] now has dir column and when            memory deallocation issue (now with cookies), explained in #1203
           $.stat(true) it has size/*date columns modified patch from misha@  
           that closes issue #914.          * src/types/pa_vcookie.C: fields should be inited
   
         * src/: include/pa_config_includes.h, main/pa_globals.C:  2020-12-24  moko
           PA_RELEASE_ASSERTS removed  
           * src/include/pa_stylesheet_connection.h: looks like
         * src/lib/md5/pa_md5c.c: minor cleanup            xsltFreeStylesheet leads to memory double-free. If so, it's for
             sure libxml bug, but we have GC anyway, so we just remove this
         * src/lib/json/: JSON_parser.C, JSON_parser.h: headers cleanup,            call and see...
           localeconv()->decimal_point usage remoed (related to issue #934)  
             * thread #1, name = 'parser.parser3.cgi', stop reason = signal
         * src/lib/cord/: Makefile.am, cordprnt.c, include/cord.h: unused            SIGABRT   * frame #0: 0x0000000801ab50fa libc.so.7`__sys_thr_kill
           cordprnt.c removed            + 10     frame #2: 0x0000000801ab5039 libc.so.7`abort at
             abort.c:65:8     frame #3: 0x00000000004da663
         * src/lib/sdbm/: sdbm.c, sdbm_pair.c, pa-include/pa_apr.h,            parser.parser3.cgi`GC_freehblk(hbp=<unavailable>) at
           pa-include/pa_errno.h, pa-include/pa_file_io.h,            allchblk.c:878:9     frame #4: 0x00000000004cb8c4
           pa-include/pa_strings.h: includes cleanup            parser.parser3.cgi`GC_free(p=0x0000000808b34000) at
             malloc.c:617:9     frame #5: 0x0000000000577f0c
         * src/lib/md5/pa_md5c.c: headers cleanup            parser.parser3.cgi`xmlHashFree(table=0x0000000806991a80,
             f=<unavailable>) at hash.c:356:2     frame #6: 0x000000000051a7c2
 2013-07-20  moko            parser.parser3.cgi`xsltFreeTemplateHashes + 50     frame #7:
             0x000000000050cfac parser.parser3.cgi`xsltFreeStylesheet + 124
         * src/lib/cord/: cordbscs.c, cordprnt.c, cordxtra.c: includes             frame #8: 0x000000000050d35c
           cleanup            parser.parser3.cgi`xsltFreeStylesheetList + 44     frame #9:
             0x000000000050d1fa parser.parser3.cgi`xsltFreeStylesheet + 714
 2013-07-19  moko             frame #10: 0x00000000004436e5
             parser.parser3.cgi`Stylesheet_manager::maybe_expire_cache()
         * src/classes/math.C: extern "C" added for crypt            [inlined]
             Stylesheet_connection::disconnect(this=0x0000000804676c80) at
 2013-07-18  moko            pa_stylesheet_connection.h:62:3
   
         * src/classes/math.C: fix redhat7.2 build  2020-12-23  moko
   
 2013-07-17  moko          * src/classes/image.C: ^image::measure[; $.video() ] option added
   
         * configure.in, src/include/pa_config_includes.h,          * tests/: 395.html, 395_dir/4.mp4, results/395.processed: test
           src/include/pa_config_fixed.h: headers actualized (inttypes.h            ^image::measure[; $.video(true) ] added
           added for uint8/32/64_t)  
           * src/main/pa_exec.C: not cleared automatically in multithreaded
         * src/lib/md5/: pa_md5.h, pa_md5c.c, pa_sha2.c, pa_sha2.h:            httpd mode for unknown reasons
           pa_config_includes.h used for uint32/64_t  
   2020-12-22  moko
 2013-07-16  moko  
           * src/targets/cgi/parser3.C: added by PAF in rev 201 to "write to
         * src/: include/pa_string.h, main/pa_string.C, types/pa_vform.C,            error_log uri of currently processed document", but never used
           types/pa_vform.h, types/pa_vobject.C, types/pa_vobject.h: warning            and conflicts with how libgc stops threads on FreeBSD (#define
           war            SIG_SUSPEND SIGUSR1), thus removed.
   
         * src/main/compile.tab.C: compile.y was updated  2020-12-21  moko
   
         * src/main/compile.y: warning war          * src/main/pa_request.C: +comment
   
         * src/: include/pa_exception.h, main/pa_exception.C,  2020-12-20  moko
           main/pa_xml_exception.C: warning war  
           * src/: include/pa_common.h, include/pa_memory.h, main/pa_common.C:
         * src/: include/pa_common.h, main/pa_common.C: warning war            it is more safe to have versions of pa_strdup with one and two
             arguments, as helper_length=0 not always mean that strlen()
         * configure.in: beauty :)            should be called, but means zero.
   
         * tests/: 141.html, results/141.processed: sha256/512 added          * src/targets/isapi/parser3isapi.C: minor
   
 2013-07-13  moko          * src/main/pa_http.C: +valid_http_method
   
         * src/lib/md5/md5.vcproj: sha2 added          * src/: include/pa_http.h, main/pa_http.C,
             targets/cgi/pa_sapi_info.h: SERVER_PORT now available
         * src/: lib/md5/pa_sha2.c, lib/md5/pa_sha2.h, lib/md5/Makefile.am,  
           classes/math.C: sha2 support (sha256/sha512 digest)  2020-12-17  moko
   
 2013-07-08  moko          * tests/: 405.html, results/405.processed: test for split by regex
             added (related to feature #1160)
         * src/classes/image.C: directory read or other read problem message  
           fixed (related to issue #933)          * src/classes/string.C: split by regex implemented (feature #1160)
   
 2013-07-07  moko          * src/classes/string.C: minor
   
         * bin/auto.p.dist.in: windows-1251 commented to remove auto.p          * tests/: 404.html, results/404.processed: test for whitespace
           dependense from $charsetsdir directory existance and content (and            string is now OK for table argument (related to feature #1169)
           UTF-8 is default allready)  
           * src/: classes/image.C, classes/string.C, classes/table.C,
         * AUTHORS: + misha + moko. :)            types/pa_vmethod_frame.C: whitespace string is now OK for table
             argument (as with hash) (implements feature #1169)
 2013-07-06  moko  
           * src/classes/op.C: Exception.add_comment used to avoid MAX_LENGTH
         * src/: classes/curl.C, include/pa_globals.h,            limit for comment (fixes bug #1102)
           include/pa_sql_driver_manager.h, lib/memcached/pa_memcached.C,  
           main/pa_globals.C, main/pa_sql_driver_manager.C: pa_dlinit added          * src/targets/cgi/parser3.C: +HAVE_TLS check
           for lt_dlinit to be called once and lt_dlexit called at right  
           place (related to issue #925)          * src/main/pa_http.C: no HAVE_TLS -> no multithreads mode
   
 2013-07-04  moko          * src/include/pa_config_includes.h: HAVE_TLS used
   
         * src/types/: pa_vfile.C, pa_vfile.h, pa_vstring.C:          * configure.ac: +TLS check
           VString::as_vfile now uses vfile.set_binary_string to avoid  
           content-type to be set, as it brokes badly designed logic in          * src/main/pa_http.C: content logging added
           response output. This hopefully finishes issue #928.  
           * src/targets/cgi/: pa_sapi_info.h, parser3.C:
         * tests/results/: 256.processed, 286.processed: file now displayed            clear_response_headers added
           as name, size, mode, content-type  
   2020-12-16  moko
         * src/main/pa_common.C: read error now reported cottectly (fixes  
           issue #933          * buildall: as we now use threads, libatomic_ops still required for
             some OS.
 2013-06-28  moko  
           * src/main/pa_request.C: whitespace
         * tests/: 286.html, results/286.processed: test extended  
           * src/: include/pa_request.h, main/pa_request.C:
         * tests/: 286.html, results/286.processed: Test for issue #928            Request::Exception_trace::table extracted and used
           added.  it tests default content-type change.  
           * src/main/pa_request.C: moving output_result call outside of try
         * src/types/pa_vfile.C: closes issue #928 - default content-type            as network exceptions should not be handled by parser code
           now updated  
           * src/: include/pa_http.h, main/pa_http.C: HTTPD_DEBUG added for
 2013-06-25  moko            logging network exchange
   
         * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h: default          * src/targets/cgi/: pa_sapi_info.h, parser3.C: do not send error
           content-type for text/binary files without name added;            via network if it was network write error.
           ^file::create[$f;...] options now works properly and $f  
           properties are default (fixes issue #928)          * src/targets/cgi/parser3.C: log -> pa_log
   
 2013-05-16  misha          * src/targets/cgi/parser3.C: pa_get_thread_id() used for logging
   
         * src/include/pa_opcode.h: - define for OBJECT_POOL optimisation is          * src/main/pa_threads.C: getpid() if no gettid() found
           added  
           * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
         * src/main/pa_table.C: - a tiny memory optimisation while creating            we need to ignore "void" connections from browsers (browsers open
           table if specified limit is bigger than source rows count            connections in advance and they will be empty if user does not
             request more pages)
         * src/classes/table.C: - ^table.foreach[k;v]{code}[separator] is  
           added ( new feature: #858 )  2020-12-15  moko
   
 2013-04-29  moko          * src/targets/cgi/parser3.C: avoid previous uri in logs
   
         * src/classes/curl.C: CURL_IPRESOLVE_V4 now set by default,          * src/targets/cgi/: pa_sapi_info.h, parser3.C: global ::request and
           $.ipresolve(0|1|2) added (closes issue #891)            RequestController not needed in httpd mode
   
         * src/lib/curl/curl.h: CURL_IPRESOLVE added          * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
             classes/classes.h, classes/curl.C, classes/date.C,
 2013-04-24  moko            classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
             classes/hashfile.C, classes/image.C, classes/inet.C,
         * src/: classes/memcached.C, lib/memcached/pa_memcached.C,            classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
           lib/memcached/pa_memcached.h, types/pa_vmemcached.C,            classes/memcached.C, classes/memory.C, classes/op.C,
           types/pa_vmemcached.h: ^memcache.release[] added, calls            classes/reflection.C, classes/regex.C, classes/response.C,
           memcached_quit (refs #893)            classes/string.C, classes/table.C, classes/void.C,
             classes/xdoc.C, classes/xnode.C, classes/xnode.h,
 2013-04-22  moko            include/pa_array.h, include/pa_base64.h,
             include/pa_cache_managers.h, include/pa_charset.h,
         * src/: include/pa_string.h, main/pa_common.C: no more double            include/pa_charsets.h, include/pa_common.h,
           slashes in file path (fixes bug #872)            include/pa_config_fixed.h, include/pa_config_includes.h,
             include/pa_dictionary.h, include/pa_dir.h,
         * src/: classes/curl.C, lib/curl/curl.h: minor fixes related to            include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
           CURLOPT_ENCODING renamed into CURLOPT_ACCEPT_ENCODING (issue            include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
           #739)            include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
             include/pa_pool.h, include/pa_random.h, include/pa_request.h,
         * tests/results/266.processed: $.max_params added (feature #915)            include/pa_request_charsets.h, include/pa_request_info.h,
             include/pa_sapi.h, include/pa_socks.h,
         * src/: include/pa_common.h, main/pa_http.C: response-charset            include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
           option added to file::load (closes issue #867)            include/pa_stack.h, include/pa_string.h,
             include/pa_stylesheet_connection.h,
 2013-04-20  misha            include/pa_stylesheet_manager.h, include/pa_symbols.h,
             include/pa_table.h, include/pa_threads.h, include/pa_types.h,
         * src/classes/curl.C: - forgotten CURL_ACCEPT_ENCODING option is            include/pa_uue.h, include/pa_xml_exception.h,
           commited            include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
             lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
 2013-03-15  misha            lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
             lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
         * src/classes/: hash.C, table.C: - Optimisation: do not create            lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
           multiple empty strings while ::sql. uae String::Empty instead            lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
             main/compile.tab.C, main/compile.y, main/compile_tools.C,
 2013-03-14  misha            main/compile_tools.h, main/execute.C, main/pa_base64.C,
             main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
         * src/classes/reflection.C: - for user classes            main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
           ^reflection:method_info[] returns $.max_params and $.extra_param            main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
           with $.call_type if they available ( new feature: #915 )            main/pa_http.C, main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
             main/pa_random.C, main/pa_request.C, main/pa_socks.C,
         * src/classes/file.C: - ^file:delete[] now supports an option            main/pa_sql_driver_manager.C, main/pa_string.C,
           $.exception(false) that suppress any exception while deleting            main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
           file ( new feature: #916 )            main/pa_symbols.C, main/pa_table.C, main/pa_threads.C,
             main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
         * src/classes/curl.C: - parsing cookies after curl:load now should            main/untaint.C, sql/pa_sql_driver.h,
           work :)            targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
             targets/apache/pa_httpd.h, targets/cgi/parser3.C,
 2013-03-12  misha            targets/isapi/parser3isapi.C, types/pa_junction.h,
             types/pa_method.h, types/pa_property.h, types/pa_value.C,
         * src/types/pa_vfile.C: - if specified file_name is empty string            types/pa_value.h, types/pa_vbool.h, types/pa_vcaller_wrapper.h,
           set default name for the file            types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
             types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
 2013-03-11  misha            types/pa_vdate.C, types/pa_vdate.h, types/pa_vdouble.h,
             types/pa_venv.C, types/pa_venv.h, types/pa_vfile.C,
         * src/classes/curl.C: - after $f[^curl:load[...]] the cookies are            types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
           also available in $f.cookies            types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.C,
             types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
         * src/: include/pa_http.h, main/pa_http.C: - parsing cookies is            types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
           moved to a separate method            types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
             types/pa_vmath.h, types/pa_vmemcached.C, types/pa_vmemcached.h,
 2013-03-10  moko            types/pa_vmemory.h, types/pa_vmethod_frame.C,
             types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
         * src/include/pa_config_fixed.h: typedef unsigned int uint32_t            types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
           added            types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
             types/pa_vstateless_class.C, types/pa_vstateless_class.h,
         * src/lib/memcached/pa_memcached.h: typedef unsigned int uint32_t            types/pa_vstateless_object.h, types/pa_vstatus.C,
           removed (declared by autoconf)            types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
             types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
         * configure.in: AC_TYPE_SSIZE_T, AC_TYPE_UINT32_T added for            types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
           uint32_t define            types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
             types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
 2013-03-10  misha  
           * src/main/pa_request.C: old compilers support
         * src/classes/file.C: ^file:delete and ^file:move now support  
           option $.keep-empty-dirs(true) ( new feature: #884 )          * tests/: 362.html, results/362.processed: test updated after
             changes after upgrade to libxml2-2.9.9 were made (related to bug
         * src/: include/pa_common.h, main/pa_common.C: - option for keeping            #1108)
           empty dirs is added  
           * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltStylesheet_auto_ptr
 2013-03-10  moko            removed, as xsltFreeStylesheet has side effects on original doc.
             compiled stylesheet no longer cached as with libxml2-2.9.9 it was
         * src/classes/: bool.C, double.C, int.C: default can be present,            not updated after xdoc modification (part 3 of test 362).
           but default check removed from ^int/double/bool.int/double/bool            (related to bug #1108)
           for string.int/double/bool compatibility (related to issue #913)  
           * src/targets/isapi/parser3isapi.C: +pa_strcat
         * src/classes/string.C: ^string.int/dobule/bool no longer  
           internally throws exception if default is present (closes issue          * src/: classes/memory.C, include/pa_memory.h,
           #913)            targets/apache/mod_parser3_core.C, targets/isapi/parser3isapi.C:
             PA_GC_GCOLLECT used
 2013-03-09  misha  
           * src/include/pa_memory.h: +PA_GC_COLLECT
         * src/types/: pa_vhash.h, pa_vregex.h, pa_vtable.h: - tiny  
           optimisations ( #845 )          * src/targets/cgi/parser3.C: msvs support fixes
   
         * src/types/pa_venv.C: - added $env:fields ( new feature: #906 )          * src/lib/gc/include/gc.h: more cleanup
   
 2013-03-08  moko          * src/: include/pa_threads.h, main/pa_threads.C: win32 fixes
   
         * src/main/pa_http.C: GPF on ^cookies:save fixed, $file.cookies now          * src/: include/pa_http.h, main/pa_http.C, main/pa_request.C,
           creates correct table (fixes issue #910)            targets/cgi/parser3.C: $main:HTTPD.mode implemented
   
         * src/classes/op.C: r.connection() -> r.connection(false) to allow          * src/include/pa_config_includes.h: +HAVE_PTHREAD_H
           use outside of 'connect' operator (fixes issue #911)  
           * configure.ac: pthread.h added to checked headers
         * tests/results/: 096.processed, 122.processed: test results  
           updated as doubles now printed with 15 significant digits, not 5          * src/classes/table.C: string stream is back :)
           (fixes issue #882)  
           * src/classes/memory.C: GC_generate_random_backtrace no longer
         * src/types/pa_vdouble.h: %.15g now used to format doubles instead            exists
           of broken has_frac() ? "%g": "%.0f" logic (fixes issue #882)  
           * src/main/pa_globals.C: GC_dont_gc replaced
 2013-02-21  moko  
           * src/lib/gc/include/gc.h: major cleanup, only used functions are
         * src/classes/table.C: _locate_name_value does not check arguments            left to simplify adding new functions.  depricated GC_dont_gc
           count, so we check it in advance (fixes issue #905)            replaced with GC_disable and GC_enable calls.
   
 2012-10-23  moko          * src/lib/cord/: cordxtra.c, include/cord.h: cleanup:
             CORD_from_file* not used and thus removed
         * buildall: old shell for and echo compatibility (for six)  
           * src/lib/gc/include/gc_allocator.h: minor cleanup
 2012-10-19  moko  
   2020-12-14  moko
         * buildall: --strip added --disable-safe-mode listed in usage  
           * src/classes/: curl.C, memory.C, table.C: every TLS should be
 2012-10-17  misha            referenced elsewhere, or GC will collect it.
   
         * src/classes/op.C: - apply-taint should not throw "outside          * src/: include/pa_xml_io.h, main/pa_stylesheet_connection.C,
           connect" exception with sql lang now            main/pa_xml_io.C: bugfix: TLS variables should be referenced
             elsewhere, or GC will collect them (and we'll get GPF in
 2012-10-17  moko            multithreaded enviroment).  May be it can be also fixed by some
             GC call, not sure. But this fix costs nothing (but hours of
         * src/main/pa_request.C: bugfix: safe mode should be inited for            debugging to find the issue :).
           each request (for apache module)  
   2020-12-11  moko
 2012-09-26  moko  
           * configure.ac: gettid() check added
         * src/doc/doxygen.cfg: png -> svg  
           * src/main/pa_threads.C: HAVE_GETTID used
 2012-09-25  moko  
           * src/include/pa_config_auto.h.in: +HAVE_GETTID
         * tests/: 141.html, results/141.processed: md5 hmac added, long key  
           test added          * src/: include/pa_threads.h, main/pa_threads.C: now unified
             version for isapi/cgi/apache
         * src/classes/math.C: HMAC for MD5 added, bugfix for tempdigest  
           double use when key is long          * buildall: threads are now required.
   
 2012-09-16  moko          * src/: targets/apache/ApacheModuleParser3Core.vcproj,
             targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
         * src/classes/math.C: Format -> Method Encode -> Format            main/main.vcproj: pa_threads.C moved to main
   
         * tests/: 141.html, results/141.processed: math:digest hmac test          * src/targets/: apache/pa_threads.C, cgi/pa_threads.C,
           added            isapi/pa_threads.C: pa_threads.C moved to main
   
 2012-09-14  moko          * src/: main/Makefile.am, targets/cgi/Makefile.am,
             targets/apache/Makefile.am: pa_threads.C moved to main
         * src/classes/math.C: SHA1ReadDigest added and used in ^sha1.  
           ^digest[sha1|md5;data; $.encode[base64|hex] $.hmac[key]] basic          * src/classes/xdoc.C: Stylesheet_connection_ptr changed a bit
           implementation added  
           * src/: include/pa_stylesheet_connection.h,
 2012-09-12  moko            main/pa_stylesheet_manager.C: Stylesheet_connection_ptr simplfied
             and weird GPF in multithreaded httpd is gone
         * src/doc/: doxygen.cfg, footer.htm, index.dox, string.dox,  
           targets.dox: doxygen.cfg and footer.htm updated for doxygen 1.7.3          * src/include/: pa_stylesheet_connection.h,
           targets.dox and string.dox slightly actualized            pa_sql_driver_manager.h: whitespace
   
 2012-08-31  moko          * src/main/pa_sql_driver_manager.C: timeout 60 sec -> 10 sec
   
         * ChangeLog: now generated with patched cvs2cl.pl          * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
             main/pa_stylesheet_manager.C: whitespace, warning war
 2012-07-29  moko  
           * src/: include/pa_threads.h, targets/apache/pa_threads.C,
         * tests/285.html, src/main/execute.C, tests/results/285.processed:            targets/cgi/pa_threads.C, targets/isapi/pa_threads.C:
           result should be pushed after VMethodFrame destructor is called,            parser_multithreaded never used
           as it deletes junctions from stack params (fixes issue #868)  
           * src/main/pa_http.C: no ALARM in MULTITHREADED httpd server mode
 2012-07-23  moko  
   2020-12-10  moko
         * INSTALL, README: buildall script usage documented, other outdated  
           info updated.          * src/: include/pa_config_includes.h, include/pa_http.h,
             main/pa_http.C, targets/cgi/parser3.C: initial support for
         * buildall-with-xml, buildall-without-xml: replaced by buildall            MULTITHREADED and PARALLEL httpd server modes
   
 2012-07-21  moko          * src/main/pa_globals.C: GC_java_finalization is depricated
   
         * buildall: glib does not compile when threads are disabled...  2020-12-09  moko
   
         * src/types/pa_vmail.C: g_assertion fixes for empty input          * etc/auto.p.in: + @httpd-main
   
         * src/types/pa_vmail.C: yet another fix (strange GPF on object          * src/: include/pa_common.h, main/pa_request.C,
           unref, can't unref nested objects)            targets/cgi/pa_sapi_info.h: Range Requests (rfc7233) now really
             work
         * src/types/pa_vmail.C: another check added  
           * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
 2012-07-19  moko            slow file_read_binary no longer used, send_range added
   
         * buildall: usage added  2020-12-08  moko
   
         * buildall: new buildall script that unites buildall-with-xml,          * src/main/pa_request.C: >4Gb support
           buildall-without-xml, --with-apache and --with-mailreceive  
           * src/targets/cgi/parser3.C: msvc warning war
         * configure.in: support for static gmime and dynamic glib linking.  
           fixes for FreeBSD          * src/: include/pa_config_includes.h, main/pa_http.C,
             main/pa_request.C: msvc warnings war
 2012-07-17  moko  
           * src/classes/image.C: warning war
         * configure.in: --with-mailreceive replaced  
           --with-static-mailreceive and --with-shared-mailreceive pathlink          * src/classes/table.C: MSVC warning war
           removed  
           * src/targets/cgi/parser3.C: msvc warnings war
 2012-07-16  moko  
           * src/targets/apache/mod_parser3_core.C: SYSTEM_CONFIG_FILE support
         * src/types/pa_vmail.C: updated to work gmime 2.6, headers now            added
           capitalized, content now decoded and text content converted to  
           $request:charset.  all properties are accessed by functions, this  2020-12-07  moko
           ready for dynamic load.  
           * configure.ac: SYSTEM_LOG_FILE no longer required as cheat used to
 2012-06-28  moko            avoid logging beside system-wide auto.p
   
         * src/targets/apache/Makefile.am: fix for apache cflags for Linux          * src/targets/cgi/parser3.C: SYSTEM_CONFIG_FILE used
           32 bit  
           * configure, configure.ac, src/include/pa_config_auto.h.in:
 2012-06-27  moko            configure options added:
   
         * buildall-with-xml, buildall-without-xml: fetch requires -p for            --with-system-cfg=FILE  to specify system-wide auto.p
           passive ftp            --with-system-log=FILE  to specify system-wide parser3.log
   
         * src/lib/ltdl/ltdl.vcproj: release build fixed          * Makefile.am: bin no longer exists
   
         * configure.in: 3.4.2 RC -> 3.4.2          * configure, configure.ac: auto.p moved to etc to simplify debian
             package
 2012-06-22  moko  
           * buildall: auto.p and parser3.charsets moved to their default
         * src/types/pa_vfile.C: returned empty mode to stated files (issue            location after install
           #815)  
           * etc/: Makefile.am, auto.p.in: auto.p moved to etc directory
         * tests/: 284.html, results/284.processed: output options test  
           (feature #265)          * aclocal.m4, configure: automake 1.15 -> 1.16.1
   
 2012-06-22  misha          * src/targets/cgi/parser3.C: locate_config call returned to
             original place as it requires pa_thread_request() under Windows
         * tests/215.html: - little changes  
           * src/targets/cgi/parser3.C: renaming
 2012-06-21  moko  
   2020-12-06  moko
         * src/: classes/json.C, classes/xdoc.C, types/pa_vxdoc.C,  
           types/pa_vxdoc.h: output_options returned and used (bugfix for          * src/: main/pa_globals.C, targets/cgi/parser3.C: thread request
           feature #265)            check added
   
         * buildall-with-xml, buildall-without-xml: --with-match-limit=10000  2020-12-04  moko
           breaks long .*, default 10M restored. (issue #216)  
           * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
         * tests/: 283.html, results/283.processed: test for issue #815            main/pa_request.C: unified uint64_t lseek implemented to support
           added            >4Gb files under x86, including Windows
   
         * src/types/: pa_vfile.C, pa_vstring.C: bugfix: ^#0D not altered  2020-12-02  moko
           again, cstrm not required.  
           * src/main/pa_common.C: minor bugfix: $.limit() should be checked
         * src/lib/ltdl/: argz.c, ltdl.c, libltdl/lt__glibc.h: fixes for            with max_file_size
           Win32 and broken FreeBSD (issue #45)  
           * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
         * src/lib/ltdl/ltdl.vcproj: preopen.c and config.h removed            support for processing files sized >4Gb on 32 bit planforms
   
         * src/main/pa_string.C: warnings war          * tests/399.html: file moved
   
         * src/: classes/mail.C, include/pa_dir.h, include/pa_http.h,          * src/: include/pa_string.h, main/pa_string.C: long long -> int64_t
           lib/json/JSON_parser.h, lib/smtp/smtp.h, main/pa_random.C,  
           main/pa_socks.C, targets/apache/pa_threads.C,          * src/targets/cgi/pa_sapi_info.h: warning war
           targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,  
           types/pa_vstatus.C: compilation under cygwin fixed          * src/: main/pa_http.C, targets/isapi/parser3isapi.C: windows
             warning war
 2012-06-19  moko  
   2020-12-01  moko
         * src/lib/ltdl/: config_fixed.h, ltdl.vcproj: compilation under  
           Windows fixed          * src/classes/image.C: mp4 extended size (>4Gb) support added
   
         * parser3.sln: removed antique pcre_ctype          * src/classes/image.C: for "size not found" exception to be shown
             if size not found until eof
         * src/include/pa_config_fixed.h: required for INT_MAX / UINT_MAX  
           * src/classes/image.C: long -> off_t (which is 64 bits even on 32
         * src/include/pa_config_fixed.h: undefined reference to            bit linux)
           __imp__pcre_* fix for Windows  
           * src/classes/image.C: ^image::measure[] now supports mp4 (feature
         * src/: include/pa_charset.h, lib/pcre/Makefile.am,            #1188)
           lib/pcre/pa_pcre_internal.h, lib/pcre/pcre_internal.h:  
           pcre_internal.h -> pa_pcre_internal.h for Windows compatibility  2020-11-30  moko
           (win32/pcre has own copy of pcre_internal.h _pcre_default_tables  
           define fixed          * src/classes/image.C: definitions moved closer to code
   
 2012-06-18  moko          * tests/: 395.bmp, 395.html, 396.html, 396.tiff, 395_dir/1.bmp,
             395_dir/2.tiff, 395_dir/3_VP8.webp, 395_dir/3_VP8L.webp,
         * src/classes/memcached.C: flush -> clear            395_dir/3_VP8X.webp, results/395.processed,
             results/396.processed: tests for ^image::measure[] .webp support
         * src/classes/memcached.C: memcached does not support quotes even            added, all image files moved into one directory (related to
           in server name            feature #1188)
   
         * src/: classes/memcached.C, lib/memcached/pa_memcached.C,          * src/classes/image.C: ^image::measure[] now supports webp (feature
           lib/memcached/pa_memcached.h, types/pa_vmemcached.C: version()            #1188)
           called on open to check servers existance.  $.key(true) syntax  
           now supported  2020-11-29  moko
   
 2012-06-17  moko          * src/main/pa_request.C: CONF_OPTION added to unify @conf options
             processing, unnessesary defines removed
         * src/include/: pa_config_fixed.h, pa_config_includes.h: old stuff  
           cleanup  2020-11-24  moko
   
         * src/classes/table.C, tests/282.cfg, tests/282.html,          * tests/results/: 099.processed, 100.processed, 205.processed,
           tests/results/282.processed: encloser at the EOF bug fixed,            309.processed, 310.processed: Content-Disposition: inline
           incorrectly enclosed data now processed more logicaly (fixes            returned
           #339)  
           * tests/: 099.html, 237.html, 403.html, outputs/403.processed,
 2012-06-15  moko            results/auto.p: test for $response:body[ $.file[<file>] $.name[]
             ] added (related to bug #1204)
         * buildall-without-xml: sync with buildall-with-xml  
           * src/main/pa_request.C: $response:body[ $file[<file>.ext] $.name[]
         * buildall-with-xml: download auto-detected between fetch and curl            ] supported to avoid Content-Disposition: inline;
             filename="<file>.ext" but still set Content-Type for ext (related
         * configure.in: --with-gc and --with-pcre now also processed            to bug #1204)
           correctly  
   2020-11-22  moko
         * aclocal.m4, configure, src/include/pa_config_auto.h.in: now  
           aclocal -I src/lib/ltdl/m4/ && autoheader && automake && autoconf          * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
           should be run on rol1 using automake / aclocal (GNU automake)            types/pa_vfile.C: pa_filename added to avoid useless rsplit
           1.11.1 autoconf (GNU Autoconf) 2.68  
           * src/main/pa_request.C: content_disposition_inline returned.
         * configure.in: new PARSER_VERSION logic  
   2020-11-17  moko
         * src/include/pa_version.h: new pa_version.h logic  
           * src/main/pa_request.C: empty main method name support
         * src/: classes/curl.C, classes/file.C, classes/image.C,  
           classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,          * src/: main/pa_common.C, targets/cgi/parser3.C: httpd
           types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C:            config_handler added, stdout flush added.
           feols_normalized -> fis_text_content set_binary added  
   2020-11-16  moko
         * src/targets/cgi/parser3.C: gcc compilation warnings fixed  
           * src/targets/cgi/parser3.C: filespec_4log added, pa_strcat used.
 2012-06-15  misha  
           * tests/results/: 099.processed, 205.processed, 237.processed,
         * src/: classes/curl.C, classes/file.C, classes/image.C,            309.processed, 310.processed: Content-Disposition: inline is not
           classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,            required and should not contain filename="<name>"
           types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C: -  
           ^file::create[text;content] EOLs in content now is normalized. (          * src/: include/pa_common.h, main/pa_common.C, main/pa_exception.C,
           new feature: #815 )            targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
             targets/isapi/parser3isapi.C: pa_strcat implemented and used
 2012-06-15  moko  
   2020-11-14  moko
         * configure.in: --disable-version-update added to disable version  
           update with host information (for debian package) whitespace          * src/targets/cgi/parser3.C: spelling
           optimized  
           * src/targets/cgi/parser3.C: renaming
         * configure.in: version changed to 3.4.2 RC no-pic added for  
           libtool          * src/targets/cgi/parser3.C: args_skip removed, locate_config
             relocated
         * src/include/pa_version.h: Nice pa_version.h default. Please keep  
           it.          * src/targets/cgi/parser3.C: execution_canceled was for sigpipe
             before request processing, which is weired
 2012-06-14  moko  
   2020-11-13  moko
         * src/classes/hash.C, src/types/pa_vhash.h, tests/281.html,  
           tests/results/281.processed: "hash flocked" error removed for          * src/main/pa_http.C: pa_recv added with timeout support, thus read
           safe operations like ^h._count[] ( new feature: #335 )            copied in httpd.
   
         * src/targets/apache/Makefile.am: libmod_parser3 -> mod_parser3  2020-11-12  moko
   
         * buildall-with-xml, buildall-without-xml: --with-static -> --with          * src/main/pa_http.C: ALARM code unified to be used in httpd
   
         * configure.in: --with-static/shared xml replaced with --with-xml,          * src/: include/pa_request.h, main/pa_request.C,
           xml compilation check added            targets/cgi/pa_sapi_info.h: pa_httpd_timeout added
   
         * configure.in: --with-static/shared-gc, --with-static-pcre are          * src/main/pa_http.C: URI validation added
           replaced with --with-gc and --with-pcre test for pcre linking  
           added          * src/targets/cgi/parser3.C: filespec_to_process now variable,
             can't be empty but can be null.  httpd-main is now main method
 2012-06-13  moko            name for httpd mode
   
         * configure.in: apxs2 check optimized  2020-11-11  moko
   
         * src/targets/cgi/Makefile.am: preserve-dup-deps requires .a, not          * src/main/pa_request.C: path_translated can be null in httpd mode
           .la, includes optimized  
           * src/: classes/curl.C, classes/file.C, classes/hashfile.C,
         * buildall-with-xml: --with-pic looks better for -fPIC            classes/image.C, classes/op.C, classes/string.C, classes/table.C,
             classes/xdoc.C, include/pa_request.h, main/execute.C,
         * configure.in: switched to convenience library in static linking            main/pa_request.C: r.absolute -> r.full_disk_path
   
         * src/targets/apache/Makefile.am: switched to convenience library          * src/targets/cgi/parser3.C: if filename to process is not
           usage to avoid libtool warnings            specified, auto.p should be present.
   
         * src/lib/: cord/Makefile.am, gd/Makefile.am, json/Makefile.am,  2020-11-03  moko
           md5/Makefile.am, memcached/Makefile.am, sdbm/Makefile.am,  
           smtp/Makefile.am: switched to convenience library usage          * src/: classes/op.C, include/pa_request.h: unused argument removed
   
         * src/sql/Makefile.am: pa_sql_driver.h should be in includes          * src/main/pa_request.C: content_disposition_inline is the default,
             not required.
         * src/targets/apache/Makefile.am: updated for libtool usage  
   2020-10-29  moko
         * bin/auto.p.dist.in: .cfg removed from charset names.  
           * src/: classes/op.C, include/pa_request.h, main/pa_request.C:
         * buildall-without-xml: --with-included-ltdl added            ^use[file; $.main(true) ] implemented for auto.p processing and
             path_translated changing to correct relative files path
         * buildall-without-xml: sync with buildall-with-xml            calculation in httpd mode
   
         * buildall-with-xml: --with-included-ltdl added $cflags added for          * src/: include/pa_request.h, main/pa_request.C:
           -fPIC for x64 $download added for wget success check added            fail_on_read_problem removed, as it allways true, as if should
             be.
         * buildall-without-xml: --with-dynamic-stdcpp removed  
           * src/: include/pa_request.h, main/pa_request.C,
         * configure.in: disable-static returned            targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
             targets/isapi/parser3isapi.C: clearing config_filespec when
         * src/targets/cgi/Makefile.am: Automake 1.9 does not support            config was not found, thus flag not required and removed.
           LIBTOOLFLAGS  
   2020-10-28  moko
 2012-06-12  moko  
           * tests/: 402.html, results/402.processed: error reporting test
         * configure.in, src/targets/cgi/Makefile.am: disable-static not  
           compatible with LIBTOOLFLAGS for unknown reasons          * src/main/execute.C: better error reporting when
             $result[^hash::create[]] in @main.
         * buildall-with-xml: --with-dynamic-stdcpp removed  
           * src/main/: execute.C, pa_request.C: frame.result() should be used
         * configure.in: static/dynamic -lstdc++ linking option removed            + minor optimization
           apxs2 check added  
           * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
         * src/targets/cgi/Makefile.am: static/dynamic -lstdc++ linking            main/pa_xml_io.C: execute_*_method simplified and unified
           option removed  
   2020-10-27  moko
 2012-06-10  moko  
           * tests/: 306.html, results/306.processed: a bit more testing. :)
         * src/targets/cgi/Makefile.am: --preserve-dup-deps libtool option  
           added          * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
             types/pa_vclass.h, types/pa_vconsole.h, types/pa_vcookie.C,
         * src/targets/cgi/pp3.cmd: old PAF stuff            types/pa_vdate.C, types/pa_venv.C, types/pa_vform.C,
             types/pa_vhash.h, types/pa_vimage.C, types/pa_vmemcached.C,
         * Makefile.am: ACLOCAL_AMFLAGS = -I src/lib/ltdl/m4 added and some            types/pa_vmethod_frame.h, types/pa_vobject.C,
           beauty            types/pa_vrequest.C, types/pa_vresponse.C, types/pa_vtable.C,
             types/pa_vxnode.C: optimization: PUT_ELEMENT_REPLACED_ELEMENT no
         * depcomp: from libtool 2.4.2            longer used in object-prototype mode
   
         * configure.in: ltdl directory removed, it has correct Makefile.in          * src/: include/pa_sapi.h, targets/apache/mod_parser3_core.C,
             targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C,
 2012-06-09  moko            targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_venv.h,
             types/pa_vform.C, types/pa_vform.h: + $env:name[value] and
         * Makefile.am, aclocal.m4, config.guess, config.sub, configure,            $form:name[value] features
           install-sh, ltmain.sh, missing, src/include/pa_config_auto.h.in:  
           autogenerated files updated after libtool update  2020-10-18  moko
   
         * src/lib/ltdl/: COPYING.LIB, Makefile.am, README, acinclude.m4,          * src/targets/cgi/Makefile.am: + pa_sapi_info.h
           aclocal.m4, argz.c, argz_.h, config-h.in, config.h,  
           config_auto.h.in, config_fixed.h, configure, configure.ac,  2020-10-15  moko
           configure.in, lt__alloc.c, lt__dirent.c, lt__strl.c,  
           lt_dlloader.c, lt_error.c, ltdl.c, ltdl.h, slist.c,          * src/main/pa_http.C: url no longer needed as
           config/compile, config/config.guess, config/config.sub,            ALTER_EXCEPTION_SOURCE is used
           config/depcomp, config/install-sh, config/ltmain.sh,  
           config/missing, libltdl/lt__alloc.h, libltdl/lt__dirent.h,          * src/: classes/curl.C, include/pa_common.h, main/pa_common.C,
           libltdl/lt__glibc.h, libltdl/lt__private.h, libltdl/lt__strl.h,            main/pa_http.C: check_file_size filespec is now optional
           libltdl/lt_dlloader.h, libltdl/lt_error.h, libltdl/lt_system.h,  
           libltdl/slist.h, loaders/dld_link.c, loaders/dlopen.c,          * src/: classes/curl.C, include/pa_exception.h,
           loaders/dyld.c, loaders/load_add_on.c, loaders/loadlibrary.c,            main/pa_exception.C, main/pa_http.C: ALTER_EXCEPTION_SOURCE and
           loaders/preopen.c, loaders/shl_load.c, m4/argz.m4, m4/libtool.m4,            ALTER_EXCEPTION_COMMENT added for better error reporting
           m4/ltdl.m4, m4/ltoptions.m4, m4/ltsugar.m4, m4/ltversion.m4,  
           m4/lt~obsolete.m4: libtool updated to version 2.4.2          * tests/: 379-curl.html, 379.html, results/223-curl.processed,
             results/346-curl.processed, results/379-curl.processed,
         * configure.in: preparation for new libtool            results/379.processed: test results updated as load now provides
             better error reporting + curl responses updated
         * configure.in: Some beauty added :)  
   2020-10-14  moko
         * src/targets/apache/Makefile.am: := -> =  
           * src/: classes/date.C, include/pa_string.h, main/pa_http.C,
         * src/lib/pcre/: Makefile.am, config.h: config.h removed once            main/pa_string.C, targets/apache/mod_parser3_core.C,
           again. :)            targets/cgi/parser3.C: pa_atoi / pa_atoui / pa_atoul usage
             checked. 10 is now default base, no hex autodetect by default
         * src/include/pa_config_includes.h, configure.in: limits.h added,  
           previously was taken from pcre_internal.h. :)          * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
             connection socket closing in destructor + accept exception
         * src/lib/pcre/Makefile.am: config.h returned            handling
   
         * src/lib/pcre/config.h: still need this. :)          * src/targets/cgi/parser3.C: warning war
   
         * src/lib/pcre/pcre_internal.h: extracts from real pcre_internal.h          * src/: include/pa_http.h, include/pa_sapi.h, main/pa_http.C,
             main/pa_request.C, targets/apache/mod_parser3_core.C,
         * configure.in: --with-charsets removed; --with-mysql-client & co            targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C: global try
           removed            exception handling unified
   
         * buildall-with-xml, buildall-without-xml: pcre_internal.h extracts  2020-10-13  moko
           now in parser tree, no need to copy  
           * src/targets/isapi/parser3isapi.C: reverted to atoi to avoid hex
         * src/lib/pcre/: Makefile.am, config.h, ibm-1250.ucm, ibm-1251.ucm,            autodetection
           ibm-1254.ucm, ibm-1257.ucm, pcre_parser_ctype.c,  
           pcre_parser_ctype.vcproj, ruspart_win2koi.pl, win-koi.tab:          * src/targets/apache/mod_parser3_core.C: reverted to atoi
           debian/patches/101_pcre.patch - local copy of pcre_internal.h  
           extracts now used old trash removed          * src/: main/pa_http.C, targets/cgi/pa_sapi_info.h: warning war
   
         * bin/auto.p.dist.in: all charsets are listed, utf-8 by default,          * src/main/pa_http.C: warning war
           rare charsets/drivers are commented, sql driver quessing removed  
           (debian/patches/103_auto_p.patch)  2020-10-12  moko
   
         * etc/parser3.charsets/Makefile.am: charsets now in share          * src/: main/pa_request.C, targets/apache/mod_parser3_core.C,
           (debian/patches/104_automake.patch) + all charsets are copied            targets/cgi/parser3.C, targets/isapi/parser3isapi.C: excaption in
             unhandled exception code optimization
         * buildall-with-xml, buildall-without-xml: curl option removed +  
           extra arguments now supported          * src/targets/cgi/parser3.C: request_info now global variable
   
 2012-06-08  misha          * src/main/pa_http.C: http_read_response moved to HTTP_response
             class
         * src/classes/table.C: - one params.as_hash usage was rolled back:  
           the 2nd option in ^table.hash[] could be hash or table so          * src/: include/pa_http.h, main/pa_http.C,
           .as_hash will throw an exception when table option is specified            targets/cgi/pa_sapi_info.h: read_post implemented
   
         * src/: classes/curl.C, classes/file.C, classes/hash.C,          * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
           classes/image.C, classes/mail.C, classes/op.C, classes/string.C,            [host:]port syntax support in httpd mode
           classes/table.C, classes/void.C, classes/xdoc.C,  
           include/pa_exception.h, types/pa_vmethod_frame.C,          * src/: include/pa_http.h, targets/cgi/pa_sapi_info.h,
           types/pa_vmethod_frame.h: - MethodParams::as_hash is optimized            targets/cgi/parser3.C: populate_env added
           and improved (whitespaces are allowed as empty options) -  
           MethodParams::as_table is added - above methods are used for          * src/include/pa_hash.h: to make get(char *) compiling in
           parsing methods' options ( new feature: #9 )            HashStringString
   
         * src/types/: pa_vclass.C, pa_vclass.h: - method get_hash is added  2020-10-10  moko
           to vclass. now class fields can be accessible as a hash:  
           $h[^hash::create[$asd:CLASS]]          * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
             targets/cgi/pa_sapi_info.h: ResponseHeaders -> HTTP_Headers
         * src/types/: pa_vhash.h, pa_vhashfile.h: - vhash and vhashfile now  
           have get_fields method so their fields can be accessed with          * src/: include/pa_http.h, include/pa_request_info.h,
           ^reflection:fields[...] & ^reflection:field[...]            main/pa_http.C, main/pa_string.C,
             targets/apache/mod_parser3_core.C, targets/cgi/pa_sapi_info.h,
 2012-06-06  misha            targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
             types/pa_vrequest.C: initial httpd mode implementation
         * tests/280.html: - tests for  
           ^reflection:method[obj-or-class;method],  2020-10-04  moko
           ^reflection:field[obj-or-class;field] and  
           ^reflection:fields[obj-or-class] are added          * src/targets/cgi/parser3.C: options together
   
 2012-06-05  misha  2020-09-30  moko
   
         * src/classes/reflection.C: - ^reflection:method[class or          * src/main/pa_http.C: renamed
           object;method name] and ^reflection:field[class or object;field  
           name] are added  2020-08-14  moko
   
         * src/types/pa_vstateless_class.C: - Method::get_vjunction method          * configure, configure.ac, parser3.sln, src/lib/Makefile.am,
           is used            src/targets/cgi/Makefile.am: no httpd as separate library
   
         * src/types/pa_method.h: - Method::as_vjunction method is added  2020-08-13  moko
   
 2012-06-05  moko          * src/targets/cgi/parser3.C: SAPI::die used in exception in
             unhandled exception handler to report 500 instead of 200 it was
         * src/targets/Makefile.am: cgi now build with apache module            before.
   
         * src/classes/memcached.C: flish ttl fixed          * src/targets/apache/mod_parser3_core.C: minor cleanup
   
 2012-06-04  moko          * src/: include/pa_sapi.h, main/untaint.C,
             targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
         * src/classes/json.C, src/classes/op.C, tests/279.html,            targets/isapi/parser3isapi.C: SAPI::abort was used only once,
           tests/results/279.processed: ^json:parse[] now supports $.taint            thus replaced with SAPI::die and removed
           option (new feature #833)  
           * src/targets/: apache/mod_parser3_core.C, isapi/parser3isapi.C,
 2012-06-04  misha            cgi/parser3.C: whitespace
   
         * src/: include/pa_common.h, main/pa_common.C, types/pa_vcookie.C:          * src/targets/cgi/parser3.C: locate_config() extracted, whitespace.
           - search_stop method was moved from pa_vcookie.C to pa_common.C  
   2020-08-12  moko
 2012-06-03  misha  
           * src/targets/cgi/parser3.C: duplicate info in signal logging
         * src/main/pa_http.C: - ^file:load[...;http://...] - all received            removed, whitespace was: SIGPIPE received while executing code.
           cookies are parced and stored into $.cookies ( new feature: #31 )            uri=/_tmp.html, method=GET, cl=0 [uri=/_tmp.html, method=GET,
             cl=0]
 2012-05-30  misha  
           * parser3.sln: + httpd.vcproj
         * tests/: 182_dir/a3.p, 182_dir/a4.p, 182.html: - test for adding  
           incomplete class into a scope while @USE is found  2020-08-11  moko
   
         * src/main/compile.y: - add incomplete class into a scope while          * src/targets/cgi/Makefile.am: +libhttpd
           @USE and @CLASS instructions are found ( bugfix: #838 )  
           * configure.ac, src/lib/Makefile.am: +libhttpd
 2012-05-30  moko  
   2020-07-13  moko
         * src/types/pa_vclass.C, tests/278.html,  
           tests/results/278.processed: removed "property has no getter          * tests/: 401.html, results/401.processed: test for hash key does
           method" exception when GET_DEFAULT present (fixes #269)            not keep language, but tainted in foreach.
   
         * src/classes/json.C, tests/277.html: ^json:string[], $.default ->  2020-07-01  moko
           $._default  
           * tests/: 235.html, results/235.processed: test result updated as
 2012-05-29  moko            messages before attachments implemented (feature #1176)
   
         * src/types/pa_vvoid.h: $STRICT-VARS(true) implemented to check  2020-06-27  moko
           uninitialized values usage (new feature: #154)  
           * tests/: 400.html, results/400.processed: test updated to check
 2012-05-28  moko            ^return{code}
   
         * tests/277.html, src/classes/json.C, src/classes/reflection.C,          * src/classes/op.C: bugfix: ^return{code} or ^return(expre+ssion)
           src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,            fixed
           src/types/pa_vdate.h, src/types/pa_vdouble.h,  
           src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vint.h,  2020-06-26  moko
           src/types/pa_vobject.C, src/types/pa_vobject.h,  
           src/types/pa_vstring.h, src/types/pa_vtable.C,          * tests/: 400.html, results/400.processed: test for OPTIMIZE_RESULT
           tests/results/277.processed, src/types/pa_vtable.h,            added (related to https://www.parser.ru/forum/?id=85319)
           src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h:  
           ^json:string[$o; $.default[$method]] implemented for VObject (new          * src/types/pa_vmethod_frame.h: bugfix: OPTIMIZE_RESULT failed,
           feature #803)            when $result assignment was last statement in the method
             (https://www.parser.ru/forum/?id=85319)
         * src/classes/json.C, src/lib/json/JSON_parser.h, tests/277.html,  
           tests/results/277.processed: json numbers are now treated as  2020-05-23  moko
           double ( new feature: #834 )  
           * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h:
         * src/: classes/math.C, include/pa_string.h, main/pa_charset.C,            whitespace, unused level removed
           main/pa_string.C, types/pa_vdouble.h, types/pa_vint.h: pa_atoui  
           added for out of range checks, zero division in vint/vdouble  2020-05-19  moko
           check added ( fixes #832 )  
           * src/types/pa_vmail.C: whitespace
         * tests/: 275.html, results/275.processed: tests for pa_atoui added  
           ( fixes #832 )          * src/types/pa_vmail.C: files should be processed last (related to
             feature #1176)
 2012-05-28  misha  
   2020-05-12  moko
         * buildall-with-xml: - --without-lzma option is added to libxml2  
           configure          * src/include/pa_memory.h: no new/delete checks for for FreeBSD1X.X
             due to https://bugs.llvm.org/show_bug.cgi?id=40161 bug
         * tests/256.html: - test for ^json:string[-file-;$.file[stat]] is  
           added - tests for unsupported values for options $.file, $.table          * configure.ac: FreeBSD1X.X check added to avoid
           and $.date are added            https://bugs.llvm.org/show_bug.cgi?id=40161 bug.
   
         * src/: classes/json.C, types/pa_value.h: - ^json:string[...] now  2020-02-26  moko
           accepts "stat" $.file[] option's value in addition to existed  
           "text" and "base64" ( new feature: #835 )          * src/main/pa_common.C: entry_exists -> entry_ifdir to fix Windows
             compilation issue (related to bug #1201)
         * tests/276.html: - test for  
           ^reflection:delete[$object-or-class;field-name]          * src/main/pa_common.C: entry_readable -> entry_exists,
             undocumented access(fname, R_OK) call removed (fixes bug #1201)
         * src/classes/reflection.C: -            -f and -d now works under Windows in UTF-8 with Russian
           ^reflection:delete[$object-or-class;field-name] is added ( new            filenames.
           feature: #268 )  
           * src/types/pa_vmail.C: g_mime_stream_pipe_new used by gmime author
 2012-05-27  misha            advice (related to feature #1199)
   
         * buildall-with-xml: - libxml2 2.7.8 => 2.8.0  2020-02-25  moko
   
 2012-05-24  misha          * buildall: --silent removed
   
         * src/include/pa_common.h: - method lastposafter was removed          * configure.ac: gmime-3.0 support
   
         * src/classes/file.C: - use strrpbrk & rskipchars instead of          * buildall: --with-system-mailreceive option added to build with
           lastposafter - ^file:dirname[] & Co proper handle windows file            system libgmime
           paths ( bug fix: #783 ) - ^file:dirname[] & ^file:basename[] now  
           work as *nix commands          * src/types/pa_vmail.C: avoiding
             https://github.com/jstedfast/gmime/issues/83 "feature" (related
         * src/main/pa_request.C: - use strrpbrk instead of lastposafter            to feature #1199)
   
         * src/: include/pa_string.h, main/pa_string.C: - strrpbrk &  2020-02-18  moko
           rskipchars were added  
           * src/classes/op.C: windows x64 debug mode compile fix
         * tests/270.html: - more tests for ^file:find[]  
           * src/main/pa_globals.C: no longer required due to -MD -> -MT
         * tests/065.html: - more tests for ^file:dirname[] & Co            change (releated to feature #1200)
   
         * src/include/pa_version.h: - must be "win32" here. it is          * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
           auto-generated on *nix            lib/gd/gd.vcproj, lib/json/json.vcproj, lib/ltdl/ltdl.vcproj,
             lib/md5/md5.vcproj, lib/memcached/memcached.vcproj,
 2012-05-24  moko            lib/pcre/pcre_internal.vcproj, lib/punycode/punycode.vcproj,
             lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
         * src/classes/math.C: ^math:convert[] now supports uint32 and            targets/apache/ApacheModuleParser3.vcproj,
           throws overflow exception ( new feature: #830 )            targets/apache/ApacheModuleParser3Core.vcproj,
             targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
         * tests/: 275.html, results/275.processed: test for ^math:convert[]            types/types.vcproj: -MD -> -MT to remove msvcp71.dll/etc
           uint32 support and overflow added ( new feature: #830 )            dependency (related to feature #1200)
   
 2012-05-23  moko  2020-02-12  moko
   
         * src/: classes/table.C, types/pa_value.h, types/pa_vbool.h,          * src/types/pa_vmail.C: minimize diff
           types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,  
           types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,          * src/types/pa_vmail.C: libgmime 3.X support (implements feature
           types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,            #1199)
           types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,  
           types/pa_vregex.h, types/pa_vstateless_class.C,  2020-01-18  moko
           types/pa_vstateless_class.h, types/pa_vstring.h,  
           types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,          * tests/: 388-sql.html, results/388-sql.processed: +postprocess
           types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: bool  
           "return string as-is" removed from as_expr_result. ( new feature:  2019-12-28  moko
           #831 )  
           * src/targets/cgi/parser3.C: avoid empty ?
         * tests/results/244.processed: test changed after bug #782 fix  
           commited  2019-12-27  moko
   
         * tests/results/229.processed: test results for bug #782 commited          * src/targets/cgi/parser3.C: PATH_INFO check in reinventing
             DOCUMENT_ROOT (related to feature #1164)
         * tests/: 254.html, results/254.processed: uid now just compared,  
           not printed. :)          * src/targets/cgi/parser3.C: IIS5 support removed to simplify
             fcgiwrap setup (implements feature #1164)
 2012-05-20  moko  
           * src/targets/cgi/parser3.C: real_parser_handler logic simplified,
         * src/classes/reflection.C: ^reflection:uid[$object] added ( new            but no issues found (related to feature #1164)
           feature: #341 )  
           * src/targets/cgi/parser3.C: actualized
         * tests/: 254.html, results/254.processed: test for  
           ^reflection:uid[] added  2019-12-26  moko
   
         * tests/: 254.html, results/254.processed: test for          * src/targets/apache/ApacheModuleParser3.vcproj: apache stop/start
           ^reflection:uid[$obj] added            removed
   
 2012-05-17  misha          * src/targets/isapi/parser3isapi.vcproj: inetinfo stop/start
             removed
         * src/main/untaint.C: - do not replace ' char by _26 while  
           exploding filespec-tainting ( new feature: #829 )          * src/: lib/gc/include/gc.h, main/pa_globals.C: As we log
             allocation errors, we don't want default gc warnings (without
 2012-05-12  moko            timestamp and URI).
   
         * src/types/pa_vvoid.h: is_string now also checked, but get_* -          * src/: classes/memory.C, main/pa_globals.C,
           not.            targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
             targets/isapi/parser3isapi.C: GC_dont_gc=1 moved to
 2012-05-08  moko            pa_globals_init
   
         * src/types/pa_vmethod_frame.h: bug #782 fixed          * src/main/pa_globals.C: setup_hex_value() removed, static array
             initialization used (optimization)
         * tests/229.html: test for bug #782  
           * src/: main/pa_globals.C, targets/apache/mod_parser3_core.C,
         * tests/results/259.processed, src/main/pa_request.C,            targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
           src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,            pa_socks_init/pa_socks_done moved inside pa_globals_init
           src/types/pa_vstring.h, src/types/pa_vvoid.C,            (optimization)
           src/types/pa_vvoid.h: feature #154 - first empty param now  
           string; defined locals are empty strings; $STRICT-VARS(true)  2019-12-09  moko
           added  
           * src/include/pa_config_fixed.h: warning war
 2012-04-27  moko  
   2019-12-08  moko
         * src/targets/apache/Makefile.am:  
           ../../lib/memcached/libmemcached.a added          * src/main/main.vcproj: compile.y - ExcludedFromBuild, as we
             process grammar under Unix.
 2012-04-27  misha  
   2019-12-07  moko
         * buildall-with-xml, buildall-without-xml: - prce 8.12 => pcre 8.30  
           ( #827 )          * tests/389.html: For Windows XP. :)
   
 2012-04-25  moko          * tests/388-sql.html: Windows compatibility added
   
         * src/: classes/json.C, classes/memcached.C,  2019-12-06  moko
           lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,  
           types/pa_vmemcached.C, types/pa_vmemcached.h: memcached_add          * src/targets/cgi/parser3.C: warning war
           implemented.  
           * src/main/pa_string.C: + COMPILE_ASSERT(sizeof(String::Languages)
         * src/classes/curl.C: stderr -> f_stderr for Windows compatibility            == sizeof(CORD)) to avoid aligning bugs in future
   
 2012-04-23  moko          * src/: include/pa_config_fixed.h, main/pa_globals.C: simplified to
             XML_STATIC
         * src/: classes/memcached.C, lib/memcached/pa_memcached.C,  
           lib/memcached/pa_memcached.h, types/pa_vmemcached.C,          * src/include/pa_request.h: StackItem() not required
           types/pa_vmemcached.h: open allows options hash for new  
           memcached(options) function          * src/include/pa_stack.h: warning war
   
         * src/classes/curl.C: check_safe_mode added, stderr now rewritten,          * src/include/pa_config_includes.h: GCC warning silenced
           not appended  
           * src/include/pa_memory.h: warning war: the program should also
 2012-04-21  moko            define 'void operator delete [](void*, std::size_t)'
             [-Wsized-deallocation]
         * src/classes/curl.C: '' added. :)  
           * src/types/: pa_vregex.h, pa_vtable.h: warning war
         * src/classes/classes.vcproj: new curl.h location  
           * src/classes/string.C: not reqired cast removed
         * src/classes/curl.C: verbose output redirection from stderr to  
           file curl option added          * src/classes/string.C: not reqired cast removed
   
 2012-04-20  moko  2019-12-05  moko
   
         * src/: classes/curl.C, lib/curl/curl.h: lib/curl/curl.h now          * src/lib/sdbm/pa_file_io.C: warning war
           contains what we need from curl, #ifdef HAVE_CURL removed  
           * src/include/pa_string.h: bugfix for Windows x64: enum Language ->
         * configure, configure.in, src/classes/Makefile.am,            enum Language : size_t - required for VS2015+ to make
           src/include/pa_config_auto.h.in, src/include/pa_version.h,            sizeof(Languages::opt) == sizeof(CORD), will be 16 byte under x64
           src/lib/Makefile.am, src/lib/curl/Makefile.am,            without it (related to feature #1198)
           src/lib/curl/curl.h: curl.h header now in src/lib/curl, not  
           configure option  2019-12-04  moko
   
 2012-04-19  moko          * src/main/pa_base64.C: unsigned char -> uchar
   
         * src/: classes/double.C, classes/inet.C, classes/int.C,          * src/main/: main.vcproj, pa_globals.C: libpcre now linked same way
           classes/string.C, lib/gc/include/gc_allocator.h,            as other libs
           types/pa_vform.C: PVS-Studio detected errors fixes, unused  
           options from sql_result_string removed. (closes issue #468)          * src/include/pa_version.h: +amd64
   
         * src/types/pa_vmemcached.C: empty string fix  2019-12-03  moko
   
         * src/types/: pa_value.C, pa_value.h, pa_vmemcached.C,          * src/: classes/classes.vcproj, types/types.vcproj: sync debug with
           pa_vstring.C, pa_vstring.h: serialization helpers moved to            release
           pa_vmemcached.C  
           * src/include/pa_config_includes.h: warning war
 2012-04-18  moko  
           * src/classes/image.C: warning war
         * src/targets/apache/mod_parser3.c: "Parser3 module requires  
           apache2-mpm-prefork" error displayed in threaded mpm.          * src/main/pa_globals.C: x64 libs support
   
         * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:          * src/include/pa_config_includes.h: warning war
           pa_setup_module_cells delayed to avoid GPF on init with php5-xsl  
           installed (issue #354)          * src/types/pa_method.h: warning war
   
 2012-04-16  moko  2019-11-28  moko
   
         * src/types/pa_vmemcached.C: call to memcached_result_create and          * src/classes/math.C: vs2003 compatibility + warning war
           memcached_result_free removed  
           * buildall: libxslt-1.1.29 -> libxslt-1.1.34, libxml2-2.9.4 ->
 2012-04-14  moko            libxml2-2.9.9 (related to feature #1136)
   
         * src/lib/memcached/pa_memcached.h: uint32_t for Windows defined          * src/classes/xdoc.C: xmlHashScanner declaration changed, using
             typecast for more compatibility (related to feature #1136)
         * src/types/pa_vmemcached.C: check_key added and used  
           * buildall: --direct-download option added, gc-7.6.2 -> gc-8.0.4 +
 2012-04-13  moko            libatomic no longer required, pcre-8.40 -> pcre-8.43 (related to
             feature #1136)
         * src/: include/pa_string.h, types/pa_value.C, types/pa_value.h,  
           types/pa_vmemcached.C, types/pa_vstring.C, types/pa_vstring.h:  2019-11-26  moko
           Serialization_data now added and used, VString now serialized  
           with languages into memcached.          * src/main/: compile_tools.C, compile_tools.h: invalid assert
             removed (it was failing in $$var case), condition added
 2012-03-28  moko  
   2019-11-25  moko
         * src/: types/pa_vmemcached.C, lib/memcached/pa_memcached.C,  
           lib/memcached/pa_memcached.h: result lengths added          * tests/: 397.html, 399.html, results/141.processed,
             results/399.processed: base64 options tested
 2012-03-27  moko  
           * src/: classes/math.C, main/pa_http.C: base64 options used
         * src/types/pa_vmemcached.C: strdup added  
           * src/main/pa_base64.C: base64 encode rewritten, base64 options
 2012-03-24  moko            implemented (feature #986)
   
         * src/: classes/memcached.C, lib/memcached/pa_memcached.C,          * src/main/pa_cache_managers.C: whitespace
           lib/memcached/pa_memcached.h, types/pa_vmemcached.C,  
           types/pa_vmemcached.h: memcached: mget, flush, fttl added          * tests/: 397.html, 399.html, results/399.processed: tests for
             ^base64 encode options added (related to feature #986)
 2012-03-20  moko  
           * src/: classes/file.C, include/pa_base64.h, main/pa_base64.C:
         * configure, configure.in: Makefiles.in updated for memcached            pa_base64_encode(file) removed - more memory, but faster and less
             code (related fo feature #986)
         * src/targets/cgi/Makefile.am: cleanup  
   2019-11-24  moko
         * src/: types/Makefile.am, types/pa_vmemcached.C,  
           types/pa_vmemcached.h, targets/cgi/Makefile.am: memcached initial          * tests/: 155.html, results/155.processed: limit and offset in
             ^table::load[] now supported, thus test added
         * src/: classes/Makefile.am, classes/memcached.C,  
           lib/memcached/Makefile.am, lib/memcached/constants.h,          * src/: classes/file.C, classes/table.C, include/pa_common.h,
           lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,            main/pa_common.C: optimization: offset and limit options parsing
           lib/memcached/types.h, lib/Makefile.am: memcached initial            moved inside file_load.
   
 2012-03-16  moko  2019-11-23  moko
   
         * src/main/execute.C: ident now works under Linux + ident displays          * src/: classes/file.C, classes/op.C, include/pa_common.h,
           filenames (closes issue #818)            main/pa_common.C, main/pa_request.C, types/pa_vform.C:
             optimization: file_read replaced with simplified file_read_binary
         * src/types/: Makefile.am, pa_vmethod_frame_global.h,  
           pa_vmethod_frame_local.h: cleanup: pa_vmethod_frame_global.h          * src/: classes/op.C, main/pa_common.C, main/pa_request.C,
           pa_vmethod_frame_local.h removed            types/pa_vform.C: whitespace
   
         * src/: classes/bool.C, classes/classes.C, classes/classes.awk,          * src/: include/pa_common.h, main/pa_common.C: never used params
           classes/classes.h, classes/curl.C, classes/date.C,            removed
           classes/double.C, classes/file.C, classes/form.C, classes/hash.C,  
           classes/hashfile.C, classes/image.C, classes/inet.C,  2019-11-21  moko
           classes/int.C, classes/json.C, classes/mail.C, classes/math.C,  
           classes/memory.C, classes/op.C, classes/reflection.C,          * tests/: 193.html, results/193.processed, results/389.processed:
           classes/regex.C, classes/response.C, classes/string.C,            test results updated as now base64 does not discard tail without
           classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,            padding (related to feature #986)
           classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,  
           include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,  2019-11-20  moko
           include/pa_config_fixed.h, include/pa_config_includes.h,  
           include/pa_dictionary.h, include/pa_dir.h,          * src/: classes/file.C, classes/string.C, include/pa_base64.h,
           include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,            main/pa_base64.C: optimization: void pa_base64_decode -> size_t
           include/pa_hash.h, include/pa_http.h, include/pa_memory.h,            pa_base64_decode (related to feature #986)
           include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,  
           include/pa_pool.h, include/pa_random.h, include/pa_request.h,          * tests/398.html: tests for base64 decode added (related to feature
           include/pa_request_charsets.h, include/pa_request_info.h,            #986)
           include/pa_sapi.h, include/pa_socks.h,  
           include/pa_sql_connection.h, include/pa_sql_driver_manager.h,          * src/main/pa_base64.C: base64_decode rewritten - padding option
           include/pa_stack.h, include/pa_string.h,            support, padding inside base 64 supported (related to feature
           include/pa_stylesheet_connection.h,            #096)
           include/pa_stylesheet_manager.h, include/pa_table.h,  
           include/pa_threads.h, include/pa_types.h, include/pa_uue.h,  2019-11-19  moko
           include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,  
           lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,          * src/include/pa_memory.h: CHECK_DELETE_USAGE tested to work under
           lib/md5/pa_md5c.c, lib/pcre/pcre_parser_ctype.c,            FreeBSD 12
           lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,  
           lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,  2019-11-16  moko
           main/compile.tab.C, main/compile.y, main/compile_tools.C,  
           main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,          * src/main/pa_base64.C: base64_decode converted to C++, url-safe
           main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,            support added, step support removed (related to #986)
           main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,  
           main/pa_exec.C, main/pa_globals.C, main/pa_http.C,  2019-11-15  moko
           main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,  
           main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,          * src/classes/math.C: using log since log2 is not present on
           main/pa_string.C, main/pa_stylesheet_connection.C,            FreeBSD < 8.4 (related to feature #1177)
           main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,  
           main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,          * src/: include/pa_base64.h, main/pa_base64.C: whitespace,
           main/helpers/simple_folding.pl, sql/pa_sql_driver.h,            pa_base64_size extracted and used for files as well (related to
           targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,            feature 986)
           targets/apache/pa_httpd.h, targets/apache/pa_threads.C,  
           targets/cgi/pa_threads.C, targets/cgi/parser3.C,  2019-11-14  moko
           targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,  
           types/pa_junction.h, types/pa_method.h, types/pa_property.h,          * tests/: 397.html, results/397.processed: + content check
           types/pa_value.C, types/pa_value.h, types/pa_vbool.h,  
           types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,          * tests/: 141.html, results/141.processed: make test resuls more
           types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,            readable
           types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,  
           types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,          * tests/: 397.html, results/193.processed, results/397.processed:
           types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,            test results updated after \x00 character was disabled in
           types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,            math:convert string mode (related to feature #1177)
           types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,  
           types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,          * src/classes/: math.C, string.C: \\x00 character disabled while
           types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,            converting to string (as in base64, related to feature #1177)
           types/pa_vmemory.h, types/pa_vmethod_frame.C,  
           types/pa_vmethod_frame.h, types/pa_vmethod_frame_global.h,          * src/classes/file.C: more correct arguments separation
           types/pa_vmethod_frame_local.h, types/pa_vobject.C,  
           types/pa_vobject.h, types/pa_vregex.C, types/pa_vregex.h,          * src/: classes/file.C, classes/math.C, classes/string.C,
           types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,            include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
           types/pa_vresponse.h, types/pa_vstateless_class.C,            main/pa_http.C, types/pa_vfile.C, types/pa_vmail.C: base64
           types/pa_vstateless_class.h, types/pa_vstateless_object.h,            options added, but not yet implemented (related to feature #986)
           types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,  
           types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,          * src/classes/math.C: whitespace
           types/pa_vvoid.C, types/pa_vvoid.h, types/pa_vxdoc.C,  
           types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,  2019-11-13  moko
           types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:  
           ident now works under Linux + ident displays filenames (closes          * tests/: 397.html, results/397.processed: +tainting test (related
           issue #818) Copyright updated            to feature #1177)
   
 2012-03-13  moko          * src/classes/math.C: as we now produce not only digits, result
             should be tainted (related to feature #1177)
         * src/main/pa_string.C: compilation fix for feature #741  
           * src/main/pa_base64.C: whitespace
 2012-03-09  misha  
           * src/: include/Makefile.am, main/Makefile.am, main/main.vcproj,
         * tests/193.html: - tests for ^string:base64[encoded] are updated            include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
             main/pa_common.C: pa_base64.h and pa_base64.C added, base64
         * src/main/pa_common.C: - ^string:base64[encoded;$.strict(true)]            implementation moved from pa_common.h and pa_common.C
           now detects invalid base64 chars in the middle of encoded stricg  
           ( new feature: #55 )  2019-11-12  moko
   
         * src/include/pa_exception.h: - new exception type for base64          * tests/: 275.html, results/275.processed: out of range test fixed,
           decoding is added            as ^math:convert now supports arbitrary precision
   
 2012-03-06  misha  2019-11-11  moko
   
         * tests/274.html: - tests for ^date::today[] and          * tests/results/389.processed: uctualized error message
           ^date.sql-string[datetime|date|time] are added  
           * tests/: 389.html, 397.html, results/397.processed: tests for
         * src/classes/date.C: - constructor ^date::today[] is added ( new            ^math:convert added (related to feature #1177)
           feature: #811 ) - ^date.sql-string[] now can accept one param --  
           strings "datetime", "date" or "time" - comments tidying up          * src/classes/math.C: ^math:convert now supports arbitrary
             precision, alphabet support added (implements feature #1177)
         * src/types/pa_vdate.h: - get_sql_string now can print datetime,  
           date and time  2019-11-06  moko
   
 2012-03-03  misha          * tests/: 181.html, results/181.processed: entities usage added,
             more entites load tests (related to bug #842 discussion)
         * tests/193.html: - tests for  
           ^string:base64[encoded;$.strict(true)] are added  2019-11-05  moko
   
         * tests/results/auto.p: - try-catch operator is added          * src/main/pa_xml_io.C: bugfix: no more extra http://localhost/
             call from xmlFileOpen if http://localhost/<file> was not found
         * src/: classes/file.C, classes/string.C, include/pa_common.h,            (related to bug #842)
           main/pa_common.C: - $.strict(true|false) option is added to  
           base64 decode methods ( new feature: #55 )          * src/main/pa_xml_io.C: rename
   
         * src/main/pa_common.C: - base64 decode memory usage was decreased          * src/main/pa_xml_io.C: +MemoryStream constructor
           ( new feature: #819 )  
           * src/main/pa_xml_io.C: whitespace
 2012-02-28  moko  
   2019-10-31  moko
         * src/classes/hash.C: ident test  
           * src/classes/xdoc.C: XML_PARSE_OPTIONS (XML_PARSE_DTDLOAD |
 2012-02-27  misha            XML_PARSE_NOENT) added to fix entities load, (related to feature
             #1181)
         * src/classes/file.C: - PARSER_VaRSION => PARSER_VeRSION  
   2019-10-25  moko
 2012-01-08  misha  
           * tests/: 388-sql.html, results/388-sql.processed: more multiple
         * tests/273.html: - tests for ^string.replace[from;to] are added            queries tests
   
         * src/: classes/string.C, include/pa_dictionary.h,  2019-10-24  moko
           main/pa_dictionary.C, main/pa_string.C: -  
           ^string.replace[from;to] is added ( new feature: #741 ) -          * tests/: 388-sql.html, results/388-sql.processed: support for
           ^string.replace[one subst here] is slightly optimized            pgsql driver test
   
 2011-12-07  misha          * tests/: 388-sql.html, results/388-sql.processed:
             multi_statements=1 now tested, mysql test now supported
         * src/classes/table.C: - $t[^table::create{$empty}] now creates            (connection must be specified in [parser3] section in .my.cnf)
           named table with one empty column ( bugfix: #63 )            related to issues #1195 and #1194
   
 2011-11-30  misha  2019-09-11  moko
   
         * src/classes/json.C: - it's possible to set user's method for          * src/classes/int.C: whitespace
           parsing arrays: ^json:parse[...;$.array[$hook]] ( new feature:  
           #763 )          * tests/: 388-sql.html, results/388-sql.processed: +duplicate key
             exception test
         * tests/272.html: - test for ^json:parse[...;$.array[$hook]]  
           * tests/results/388-sql.processed: sql queries now shown (related
 2011-11-23  misha            to feature #1196)
   
         * src/: classes/curl.C, classes/file.C, classes/image.C,          * src/sql/pa_sql_driver.h: to keep new SQL drivers more compatible
           classes/table.C, classes/xdoc.C, types/pa_vfile.C,            with old parser versions.
           types/pa_vfile.h, types/pa_vform.C: - constructor  
           ^file::create[mode;filename;content[;options]] now accepts binary          * src/: classes/file.C, classes/hash.C, classes/string.C,
           mode and file-content - new constructor's format:            classes/table.C, classes/void.C, include/pa_sql_connection.h,
           ^file::create[string-or-file-content[;$.name[filename]            main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: Show query
           $.mode[text|binary] $.content-type[...] $.charset[...]]] ( new            instead of connect string in query_event_handlers exceptions
           feature: #65 )            (implements feature #1196)
   
         * src/: include/pa_request.h, main/pa_request.C: - new method  2019-09-06  moko
           mime_type_of(const String*) is added  
           * tests/388-sql.html: mysql compat
         * src/include/pa_exception.h: - new exception constant  
           FILE_NAME_MUST_BE_SPECIFIED is added          * src/: classes/hash.C, classes/string.C, classes/table.C,
             classes/void.C, include/pa_common.h, main/pa_common.C: cleanup:
         * src/classes/table.C: - bug with negative offset transformed into            sql_ variables declaration moved to pa_common.h
           a feature. it means pointing to a row from the end of the table (  
           new feature: #810 )  2019-01-15  moko
   
 2011-11-19  misha          * src/classes/curl.C: ^curl:info[] - OrderedHashString used, items
             logically sorted
         * src/classes/table.C: - íåñêîëüêî signed/unsigned warnings óáðàíû  
           â ìåòîäå _select ( new feature: #810 )  2018-12-27  moko
   
         * src/types/pa_vxdoc.C: - checkout if $.encoding and $.charset          * src/include/pa_config_includes.h: warning war:
           options were specified together is simplified            -Wdeprecated-register added for C++ 17
   
 2011-11-12  misha  2018-10-15  moko
   
         * src/main/pa_request.C: - forgotten fix for escaping filename in          * configure.ac: FreeBSD 11.2 can be build with ./configure
           HTTP content-disposition header (a part of bug #361 )            --with-gc=/usr/local/lib/ --with-pcre=/usr/local/
             --with-xml=/usr/local/
         * src/classes/json.C: - ^json:string[$.class_name[jmethod]] now  
           checks for ancestors' classes as well ( new feature: #456 )  2018-09-24  moko
   
         * src/classes/op.C: - exceptions for ^break[] and ^continue[]          * tests/: 396.html, 396.tiff, results/396.processed: test for
           "without cycle" now have types "parser.break" and            ^image::measure[] now supports tiff added (related to feature
           "parser.continue" instead of "parser.runtime" ( new feature: #799            #1188)
           )  
           * src/classes/image.C: ^image::measure[] now supports tiff
 2011-11-11  misha            (implements feature #1188)
   
         * tests/results/: 099.processed, 100.processed, 205.processed,  2018-09-20  moko
           237.processed: - since bug #361 was fixed the content of filename  
           in HTTP headers is quoted          * tests/: 395.bmp, 395.html, results/395.processed: test for bmp
             files measure added (related to ticket #1188)
         * tests/results/270.processed: - result for test 270  
           * src/classes/image.C: measure of bmp files implemented (related to
         * tests/: 065.html, results/065.processed: - more tests for            ticket #1188)
           ^file:basename[] & Co were added  
   2018-09-18  moko
         * tests/270_dir/: 270.txt, subdir/270.txt: - stuff for 270.html  
           * tests/: 394-curl.html, results/394-curl.processed,
         * tests/270.html: - tests for ^file:find[] are added            results/auto.p: test for bug #1187 (max_file_size check for head
             requests) added
         * src/types/pa_vxdoc.C: - now it's possible to specify encoding  
           using option $.charset. option $.engoding is still supported but  2018-08-24  moko
           these options can not be specified together  
           * src/classes/curl.C: CURLOPT_NOBODY value used to check if
         * src/classes/xdoc.C: - charset.isUTF8 is used instead of            response content-length check is required (fixes bug #1187)
           comparation charset name with string "UTF-8" ( bugfix: #759 )  
   2018-05-11  moko
 2011-10-11  misha  
           * tests/: 157.html, results/157.processed: test for ^file:copy[..;
         * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h: - new            $.append(bool) ] option added (related to feature #919)
           option was added: ^xdoc.file[$.name[èìÿ ôàéëà]] (new feature:  
           #622)          * src/classes/file.C: ^file:copy[..; $.append(bool) ] option added
             from misha@ patch (implements feature #919)
 2011-09-30  misha  
   2018-03-22  moko
         * src/types/pa_vrequest.C: - saving empty $request:post-body causes  
           exception "saving stat-ed file" ( bugfix: #395 )          * src/main/pa_request.C: $response:download[ $.file[file.namef] ]
             worked rather slow (about 1mb/sec) with 10kb buffer, replaced it
 2011-05-30  misha            with 128kb buffer.  Now works at least 12 times faster. :) May be
             Windows-only problem.
         * src/classes/string.C: - fixed bug which was added with  
           params.as_hash into string:sql          * src/lib/cord/cord.vcproj: Profile * complete cleanup (VS 2003
             build fix)
 2011-05-29  misha  
   2018-02-03  moko
         * src/types/pa_value.C: - filename in content-disposition header  
           must be quoted ( bugfix: #361 )          * src/main/execute.C: removes irrelevant lines from exception stack
             trace when exceptions occurs in assigment (fixes bug #1165)
 2011-05-27  misha  
           * tests/: 393.html, results/393.processed: test for behavour after
         * src/classes/: image.C, xdoc.C: - $.mode must be set for newly            "Property can not be created, already exists field with that
           created file            name" exception removed (related to feature #1183)
   
         * src/classes/: hash.C, mail.C: - little tunning with get_hash          * src/types/pa_vclass.C: "Property can not be created, already
           usage            exists field with that name" exception removed (implements
             feature #1183)
         * src/include/pa_exception.h: - one more string for exception was  
           added  2018-01-19  moko
   
 2011-05-25  misha          * src/classes/string.C: whitespace
   
         * tests/269.html: - tests for checking input params in some dom          * src/classes/string.C: whitespace
           methods  
           * tests/: 392.html, results/392.processed: test for
         * src/classes/: xdoc.C, xnode.C: - validation of some input params            ^regex::create[$regex] added (related to feature #1135)
           was added. it isn't possible not wo create xdoc with invalid  
           tagName. ( bugfix: #160 )          * src/: classes/regex.C, types/pa_vregex.C, types/pa_vregex.h:
             ^regex::create[$regex] added (implements feature #1135)
         * src/include/: pa_exception.h, pa_xml_exception.h: - exception's  
           string "data must be string" was mover from pa_exception.h to          * src/types/: pa_vclass.C, pa_vclass.h: CLASS_GETTER_UNPROTECTED
           pa_xml_exception.h            commented define added (related to feature #1157)
   
         * src/classes/: xnode.C, xnode.h: - methods as_xmlqname,  2018-01-17  moko
           as_xmlncname, as_xmlname and as_xmlnsuri were added  
           * buildall: gc 7.6.0 -> 7.6.2 (related to feature #1136)
         * src/main/pa_xml_exception.C: - XmlException accepts more options  
   2018-01-15  moko
         * src/include/pa_xml_exception.h: - XmlException accepts more  
           options - XML-related exception's strings were added          * tests/: 390.html, results/390.processed: real path replaced by
             stub
         * src/: classes/xdoc.C, types/pa_vxdoc.h: - code cleanup (unused  
           output_options were removed)          * tests/: 391.html, results/391.processed: test for feature #1181
             (XML_PARSE_HUGE exception) added
 2011-05-19  misha  
   2018-01-11  moko
         * src/classes/: file.C, hash.C, string.C, table.C, void.C: -  
           params.as_hash is used more while parsing methods hash-options          * src/classes/xdoc.C: xmlReadMemory/xmlReadFile now used with
             XML_PARSE_HUGE option passed by default (implements feature
 2011-05-18  misha            #1181)
   
         * operators.txt: - info about json-serialization of xdoc was added          * src/classes/string.C: whitespace
   
         * tests/256.html: - tests for json-serialization xdoc were added  2017-12-10  moko
   
         * src/types/pa_vxdoc.C: - ups. I've forgot about "method" :)          * tests/: 389.html, 390.html, results/389.processed,
             results/390.processed: image code coverage tests added (related
         * src/: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,            to feature #1125)
           classes/json.C, classes/xdoc.C: - now json:string can serialize  
           xdoc-objects. options (the same as ^xdoc.string[]) could be  2017-12-08  moko
           specified in $.xdoc[] ( new feature: #265 )  
           * tests/: 346-curl.html, 388-sql.html, 389.html,
 2011-05-15  misha            results/346-curl.processed, results/388-sql.processed,
             results/389.processed: more code coverage tests
         * tests/268.html: - tests for ^table.count[with options] were added  
           * tests/: 264.html, results/264.processed: code coverage for
         * src/classes/table.C: - method ^table.count[] now can accept            ^file::exec[]
           options ( new feature: #93 ): ^table.count[column] returns number  
           of columns for named table; ^table.count[cells] returns number of  2017-12-07  moko
           cells in the current row; ^table.count[] & ^table.count[rows]  
           return number of rows in a table.          * tests/: 174.html, 388-sql.html, 389.html,
             results/388-sql.processed, results/389.processed,
         * tests/267.html: - test for checking switch/case in boolean mode            results/174.processed: more coverage tests
           was added  
           * src/classes/math.C: exception text actualized
         * src/classes/op.C: - if switch's or case's value is bool, they are  
           compared as bool values, not as double values: new feature: #351  2017-12-06  moko
   
 2011-05-06  misha          * tests/388-sql.html: $SQL can be here
   
         * tests/242.html: - EOL before EOF was added          * tests/results/auto.p: $SQL not required here
   
         * tests/169.html: - tests for splitting empty string and void were          * tests/: 388-sql.html, 389.html, Makefile,
           added            results/388-sql.processed, results/389.processed, results/auto.p:
             code coverage tests for sql (using sqlite) and int/double/bool
         * src/main/pa_string.C: - fix of fix (^empty_string.split[...]            added (related to feature #1125)
           returned table with one empty cell)  
           * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
 2011-04-03  misha            lib/json/json.vcproj, lib/md5/md5.vcproj,
             lib/memcached/memcached.vcproj, lib/punycode/punycode.vcproj,
         * src/include/pa_version.h, configure.in: - version in head was            lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
           changed to 3.4.2b            targets/apache/ApacheModuleParser3Core.vcproj,
             targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
 2011-03-30  misha            types/types.vcproj: gc\include no longer required
   
         * src/types/pa_vregex.C: - \w & Co now contain unicode properties          * src/lib/: cord/cord.vcproj, gd/gd.vcproj: gc\include no longer
           as well ( new feature #294 )            required
   
 2011-03-29  misha          * src/: classes/Makefile.am, classes/table.C,
             include/pa_config_includes.h, include/pa_string.h,
         * buildall-with-xml, buildall-without-xml: - PCRE stack usage is            lib/cord/Makefile.am, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
           limited to approx. 6 MB. previous limits were too big for real            lib/gd/Makefile.am, lib/json/Makefile.am, lib/sdbm/Makefile.am,
           life. bugfix: #216            lib/smtp/Makefile.am, main/Makefile.am, main/untaint.C,
             targets/apache/Makefile.am, targets/cgi/Makefile.am,
 2011-03-04  moko            types/Makefile.am: to be sure that our version of gc.h/cord.h is
             used, we now include it directly
         * etc/parser3.charsets/cp866.cfg: Conforms to  
           http://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP866.TXT  2017-12-04  moko
   
         * etc/parser3.charsets/cp866.cfg: cp866 initial version from          * src/lib/: gd/gd.vcproj, md5/md5.vcproj,
           vlalek@            memcached/memcached.vcproj, punycode/punycode.vcproj,
             sdbm/sdbm.vcproj, smtp/smtp.vcproj: includes unified, gc added
 2011-02-22  misha            where required
   
         * src/include/pa_charset.h, operators.txt: - some methods mustn't          * src/: classes/memory.C, include/pa_config_includes.h: GC_DEBUG
           be under #ifdef XML or parser can't be compiled without xml            now can be used to trace memory allocations
           support  
           * src/: classes/table.C, include/pa_config_includes.h,
 2011-02-21  misha            include/pa_memory.h, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
             main/pa_globals.C: PA_DEBUG_DISABLE_GC works again, pa_gc_*
         * src/targets/apache/: Makefile.am: - mention            method removes, libcord also can work without libgc
           ApacheModuleParser3.vcproj was removed  
           * src/classes/json.C: pa_gc_malloc_atomic should not be used
         * src/types/pa_vjunction.C: - EOL before EOF was added (warning  
           removed)  2017-11-29  moko
   
 2011-02-20  misha          * src/classes/curl.C: no exception if some of ^curl:info[] elements
             are not present (related to feature #1173)
         * tests/: 266.html, 266.p: - tests for checking $.inherited and  
           $.overridden in ^reflection:method_info[...] were added          * tests/346-curl.html: test updated to test curl content-length bug
             (related to feature #1173)
         * src/classes/reflection.C: - beautifying result of  
           ^reflection:method_info[] ($.overridden/inherited)          * tests/results/346-curl.processed: more test for content-length
             curl bug (related to feature #1173)
 2011-02-18  misha  
           * tests/results/346-curl.processed: test results updated after
         * src/main/: pa_charset.C, pa_http.C, untaint.C: - use pa_isalpha            #1173 implemented
           and pa_isalnum instead of isalpha and isalnum - bug with  
           redundand quoting lowercased latin chars while building email  2017-11-28  moko
           body was fixed  
           * src/classes/curl.C: another libcurl Content-length bug walkaround
         * src/include/pa_common.h: - pa_isalpha and ps_isalnum methods were            (related to feature #1173)
           added (they check for latin chars only)  
   2017-11-27  moko
 2011-02-16  misha  
           * src/: classes/curl.C, lib/curl/curl.h: ^curl:options
         * src/main/pa_charset.C: - bugfix: in some cases the calculating            $.http_version[version string] added (implements feature #1173),
           string size for transcoding gave too small value (should ever            CURLOPT_POSTFIELDSIZE is set to 0 now only for old versions,
           look for availability char in dest charset inspite of the char            where $post(true) bug existed.
           size)  
   2017-11-18  moko
 2011-02-04  moko  
           * src/include/pa_memory.h: warning war (related to feature #1170)
         * tests/223.html: header values now not url-encoded (issue #195)  
           * src/include/pa_pool.h: RedHat 7.3 compatibility fixed (related to
 2011-02-01  misha            feature #1170)
   
         * buildall-with-xml, buildall-without-xml: - 8.10 => 8.12  2017-11-17  moko
   
 2011-01-31  misha          * src/include/pa_memory.h: CHECK_DELETE_USAGE define added as
             std::basic_stringstream used in ^table.csv-string[] is compatible
         * src/main/pa_request.C: - throw exception if param file_name in            with delete usage check only under Debian 9 (related to feature
           use_file is empty            #1170)
   
 2011-01-08  moko  2017-11-16  moko
   
         * src/classes/curl.C: compilations errors fixed          * src/: classes/curl.C, classes/hash.C, classes/json.C,
             classes/table.C, classes/xdoc.C, include/pa_config_includes.h,
 2010-12-29  moko            include/pa_hash.h, include/pa_memory.h, include/pa_pool.h,
             main/pa_charset.C, main/pa_memory.C, main/pa_xml_io.C,
         * tests/: 265.html, results/265.processed: test for issue #200            sql/pa_sql_driver.h, types/pa_value.h, types/pa_vmemcached.C,
           added            types/pa_vxdoc.h: regular new/delete no longer used in our code,
             stubs defend from accidental use (implements feature #1170)
         * src/main/pa_string.C: empty regex result check added (fixes issue  
           #200)  2017-06-24  moko
   
         * src/main/pa_http.C: pa_http_safe_header_name corrected a bit          * configure.ac: minor fix: thanks to alx@
   
         * tests/results/223.processed: header values now not url-encoded  2017-05-29  moko
           (issue #195)  
           * src/types/pa_vmail.C: mail headers are now correctly truncated -
         * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,            MAX_CHARS_IN_HEADER_LINE value fixed, mail_header_utf8_substring
           main/untaint.C: L_HTTP_HEADER now used in http headers values,            added to avoid cutting of UTF-8 chars (fixed bug #123)
           pa_http_safe_header_name added for headers names (fixes bug #195)  
           * src/main/untaint.C: as in case of <space>=?UTF-8?Q?= space is
 2010-12-18  misha            ignored, =?UTF-8?Q?= should start in case of leading space
             (related to bug #123)
         * src/: types/types.vcproj, classes/classes.vcproj: - arp-include  
           => pa-include          * buildall: echo -n -> printf for OS X. :)
   
 2010-11-28  moko  2017-05-25  moko
   
         * src/lib/sdbm/sdbm.vcproj: apr -> pa (.vcproj)          * tests/: 288.html, results/288.processed: test updated afted
             setting $o.prop without setter exception removed (related to
         * src/lib/sdbm/: pa_strings.C, sdbm.c, pa-include/pa_strings.h: apr            feature #1157)
           -> pa  
           * src/types/pa_vclass.C: no more "this property has no setter
         * configure.in: apr -> pa            method" when setting $o.prop without setter (implements feature
             #1157)
         * src/types/: pa_vhashfile.C, pa_vhashfile.h: apr -> pa  
           * buildall: echo \c -> echo -n for FreeBSD
         * src/: lib/sdbm/pa-include/Makefile.am, lib/sdbm/Makefile.am,  
           classes/Makefile.am, types/Makefile.am: apr -> pa          * configure, configure.ac, src/include/pa_config_auto.h.in,
             src/types/pa_vdouble.h: isfinite now checked in configure
         * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C,  
           pa_file_io.C, pa_strings.C, sdbm.c, sdbm_hash.c, sdbm_lock.c,          * compile, config.guess, config.sub, depcomp, install-sh, missing:
           sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h,            upgraded to automake 1.15
           pa-include/pa_apr.h, pa-include/pa_errno.h,  
           pa-include/pa_file_info.h, pa-include/pa_file_io.h,  2017-05-23  moko
           pa-include/pa_sdbm.h, pa-include/pa_strings.h: apr -> pa (apache2  
           module apr name conflict resolved)          * src/types/pa_vdouble.h: finite returned where isfinite not
             defined
 2010-11-27  misha  
   2017-05-22  moko
         * buildall-with-xml, buildall-without-xml: - typo fixed: libz2 ->  
           libbz2          * buildall: gc-7.6.0 USE_LIBC_PRIVATES allready defined warning war
   
 2010-11-26  misha          * buildall: extern CFLAGS setting support
   
         * src/: types/pa_vregex.C, classes/hash.C, classes/table.C: -          * src/types/pa_vdouble.h: warning war: finine() -> isfinite() 4OSX
           warnings removed  
           * buildall: http -> https
 2010-11-25  moko  
           * buildall: gc-7.2f -> gc-7.6.0
         * operators.txt: $.indent(true)  
   2017-05-20  moko
         * operators.txt: another bugfix. :)  
           * buildall: https, pcre, xml, xslt updated to current versions
         * operators.txt: bugfix. :)            (related to feature #1136)
   
         * buildall-with-xml: libxml2-2.7.8 + with-apache  2017-05-19  moko
   
 2010-11-24  moko          * tests/097.html: after parser.ru moved to https
   
         * configure: apxs support  2017-05-17  moko
   
         * configure.in: apxs support -Bstatic gc removed for OS X          * tests/results/: 175.processed, 372.processed: tests resuls
             updated after lintian spelling typos fixed (related to bug #1156)
         * src/targets/: Makefile.am, apache/Makefile.am: apxs support  
           * src/: classes/file.C, classes/hash.C, classes/reflection.C,
         * src/main/: pa_globals.C, pa_xml_io.C: the rest converted to            classes/string.C, classes/table.C, main/pa_charset.C,
           THREAD_LOCAL usage            main/pa_common.C, main/pa_http.C, types/pa_vimage.h,
             types/pa_vmail.C, types/pa_vxdoc.h: fixed spelling typos from
         * src/: classes/curl.C, include/pa_config_includes.h,            lintian reported by Sergey B Kirpichev (fixes bug #1156)
           main/pa_globals.C: THREAD_LOCAL defined and used  
           * tests/results/096.processed: +XMP
 2010-11-23  moko  
           * tests/: 096.html, 096_dir/188.jpg: ^image::measure[] $.exif(true)
         * src/: classes/op.C, main/pa_os.C: microseconds, not milliseconds            $.xmp(true) options tested (test for feature #1154)
           should be passed to pa_sleep, and only fractional part (bugfix:  
           #188)          * src/classes/image.C: ^image:measure[] options $.exif(false)
             $.xmp(false) $.xmp-charset[UTF-8] implemened. exif no longer
         * src/targets/apache/mod_parser3.c: 1.3 compatibility            fetched by default! (implements feature #1154)
   
         * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:  2017-05-16  moko
           GC_dont_gc=1, as in cgi version  
           * tests/: 256.html, results/256.processed: ^json:string[$image] now
         * src/targets/apache/mod_parser3.c: warning war            allowed (related to feature #1154)
   
         * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,          * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
           pa_httpd.h: version removed, some trash removed            initial XMP implementation - without options and transcode
             (related to feature #1154)
         * src/targets/apache/mod_parser3.c: version removed (we don't want  
           to show it), warning war  2017-05-12  moko
   
         * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,          * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
           pa_httpd.h: parser_status_allowed removed + merge config            image: exif moved to ffields, skipped in ^image.html[] where
           functions removed (override is the default) + beauty            iterators now used (preparation for feature #1154)
   
         * src/: include/pa_request.h, main/pa_request.C,  2017-05-05  moko
           targets/cgi/parser3.C, targets/isapi/parser3isapi.C: option to  
           hide $status used in apache module removed          * tests/: 387.html, 387_dir/A.p, 387_dir/B.p,
             results/387.processed: test for circular class inheritance check
 2010-11-18  moko            added (related to bug #1150)
   
         * operators.txt: $.table[compact] added for ^json:string[]          * src/types/pa_vstateless_class.C: circular class inheritance check
             added (fixes endless add_derived bug #1150)
 2010-11-16  moko  
   2017-05-04  moko
         * src/targets/apache/mod_parser3.c: some cleanup done  
           * tests/: 386.html, results/386.processed: test for
         * src/main/untaint.C: bugfix: first, second String::Body argument            $table.value(number) added (related to feature #1152)
           is hashcode; second, info.fragment_begin is original, not  
           resulting length          * src/types/pa_vtable.C: table put_element: column value must be
             string  - > column value must be string compatible to allow
         * src/classes/file.C: new feature: $.stdin now untainted            $t.value(1) (implements feature #1152)
   
         * tests/results/264.processed: new feature: $.stdin[] now untainted  2017-05-03  moko
   
         * tests/cat.sh: new feature: stdin arg to test $.stdin[value]          * src/main/pa_request.C: $use[$method] is not possible, reverting
             (related to feature #1151)
         * src/classes/op.C: ^apply-taint[] method added  
           * tests/: 386.html, 386.p, results/386.processed: $use[$method] is
         * tests/: 264.html, results/264.processed: ^apply-taint[] test            not possible, removing test (related to feature #1151)
           added; $.stdin untaint test added  
           * src/: main/pa_request.C, types/pa_vstateless_class.h:
 2010-11-15  moko            get_element_method added and used to allow $use[$method] and
             $autouse[$method] (implements feature 1151)
         * src/targets/apache/mod_parser3.c: outdated MODULE_MAGIC_NUMBER  
           removed          * tests/: 386.html, 386.p, results/386.processed: test for @use in
             variable added (related to feature #1151)
         * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,  
           pa_httpd.h: 2x2 calculated under apache2. :)          * tests/results/226.processed: actualized after ^try-catch used
   
 2010-11-13  moko          * tests/: 226.html, 385.html, results/385.processed: test for
             @autouse in variable added
         * src/targets/apache/mod_parser3.c: initial changes to build module  
           with apache 2.x includes          * configure.ac, src/include/pa_version.h: 3.4.5 -> 3.4.6b
   
         * src/targets/apache/: Makefile.am, mod_parser3.c,  2017-02-27  moko
           mod_parser3_core.C, pa_httpd.h, pa_threads.C: initial commit for  
           united apache 1.3 / apache 2.x DSO module          * configure.ac, src/include/pa_version.h: 3.4.5rc -> 3.4.5
   
 2010-11-09  moko  2017-02-20  moko
   
         * src/types/pa_method.h: check added to dissallow @method[name;*]          * operators.txt: actualization + beauty
           syntax  
   2017-02-16  moko
         * tests/: 263.html, results/263.processed: test from method[*args]  
           added          * tests/: 384.html, results/384.processed: test for
             ^reflection:mixin[; $.name[] ] option added (related to feature
         * src/types/: pa_method.h, pa_vmethod_frame.h: closes #26: variable            #1089)
           number of params can now be passed to a method declared with *arg  
           * tests/: 384.html, results/384.processed: test for
 2010-11-06  moko            ^reflection:mixin[] added (related to feature #1089)
   
         * src/classes/table.C: formating fixed. :)          * src/types/pa_value.h: warning war: virtual ~Value() added
   
         * src/classes/table.C: closes #4: ^table.select now supports  2017-02-15  moko
           $.limit(), $.offset, $.reverse() options  
           * src/include/pa_hash.h: compilation without HASH_CODE_CACHING
         * tests/: 262.html, results/262.processed: test for ^table:select            fixed
           with options added (feature #4)  
           * tests/: 320.html, results/320.processed: $.reverse(true/false)
         * src/include/pa_array.h: remove function added            test added (related to feature #1069)
   
         * src/types/: pa_vhash.C, pa_vhash.h: avoiding temporal String          * src/: classes/reflection.C, types/pa_vstateless_class.h:
           object in get_element/put_element, using static one.            compilation without HASH_ORDER fixed
   
 2010-11-04  moko          * src/: classes/reflection.C, include/pa_hash.h:
             $.reverse(true/false) added to ^reflection:methods[] (related to
         * src/types/pa_vregex.C: closes #6: exeption now thrown if invalid            feature #1069)
           options is passed  
   2017-02-14  moko
         * tests/: 256.html, results/256.processed: $.table[compact] feature  
           now tested; k and p in handler now tested.          * tests/: 152.html, results/152.processed: test for $._default hash
             added (related to bug #1131)
         * src/types/: pa_value.h, pa_vtable.C, pa_vtable.h: fixes #153,  
           $.table[compact] feature added          * tests/: 277.html, results/277.processed: test for hash with only
             $._default is now defined (related to bug #1131)
         * src/classes/json.C: key is now passed to handler in  
           value_json_string; ^json:string result now process tainting          * src/types/pa_vhash.h: hash with only $._default is now defined
           inside and returns clean string, related to issue #153            (fixed bug #1131)
   
         * src/main/untaint.C: bugfix: charset can be null (in  2017-02-13  moko
           ^string:save[] as example), thus check is added  
           * tests/cat-windows.sh: cat-windows added (cygwin required)
 2010-10-31  moko  
           * tests/: 171.html, 264.html, 286.html, 370.html,
         * src/classes/string.C: error message changed (fixes issue #149)            results/320.processed, results/375.processed, results/auto.p:
             cat-windows.sh support added
 2010-10-29  moko  
           * tests/375.html: Windows support
         * src/main/pa_http.C: ":port" is now added to "Host:" header if  
           port is not default (fixes issue #155); exception on invalid port          * tests/270.html: documented
           added.  
           * tests/: 270.html, run_parser.cmd: bugfix: PATH_INFO has slashes
         * src/main/untaint.C: '*' is now not urlencoded to allow header            (not backslashes) even under Windows (broke test 270)
           "Accept: */*" to be passed  
   2017-02-12  moko
 2010-10-28  moko  
           * tests/: descript.ion, todo.txt: cleanup
         * src/classes/curl.C: bugfix: detect_charset() was throwing  
           exception on unknown charset even if response_charset was  2017-02-09  moko
           specified  
           * tests/: 253.html, 255.html, 275.html, 347-curl.html,
 2010-10-27  moko            run_tests.cmd: Windows compatibility
   
         * src/classes/string.C: ^string.append removed for void          * tests/make_tests.cmd: removed as test can't be passed - TZ is set
           compatibility            incorrectly (GMT) if parser is called from cygwin
   
 2010-10-26  moko  2017-02-08  moko
   
         * src/classes/json.C: libjson supports array at top level, we too          * operators.txt: actualization 15% completed
           (GPF fixed)  
           * operators.txt: cp1251 -> utf-8
 2010-10-25  moko  
           * NEWS, README: minor update
         * tests/: 253.html, results/253.processed: libjson supports array  
           at top level, parser now supports it as well.          * src/include/pa_config_includes.h: warning war continues
   
         * tests/261.html, tests/results/261.processed,          * src/: include/pa_config_includes.h, include/pa_memory.h,
           src/types/pa_vstring.h: empty string is now void compatible            targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
           (allows $empty.key)            targets/isapi/parser3isapi.C, types/pa_vdouble.h: warning war:
             gcc 6.x issues fixed
 2010-10-22  misha  
           * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
         * src/types/pa_vcookie.C: - fix for session cookie (was introduced            classes/classes.h, classes/curl.C, classes/date.C,
           while adding additional expires checkout)            classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
             classes/hashfile.C, classes/image.C, classes/inet.C,
         * tests/030.html: - test for session cookie was added            classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
             classes/memcached.C, classes/memory.C, classes/op.C,
 2010-10-21  moko            classes/reflection.C, classes/regex.C, classes/response.C,
             classes/string.C, classes/table.C, classes/void.C,
         * src/: classes/string.C, classes/void.C, main/execute.C,            classes/xdoc.C, classes/xnode.C, classes/xnode.h,
           types/pa_vvoid.C, types/pa_vvoid.h: void now inherited from            include/pa_array.h, include/pa_cache_managers.h,
           string (feature #111)            include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
             include/pa_config_fixed.h, include/pa_config_includes.h,
         * tests/: 261.html, results/261.processed: checks void from string            include/pa_dictionary.h, include/pa_dir.h,
           inheritance (feature #111)            include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
             include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
         * src/classes/: bool.C, classes.h, curl.C, date.C, double.C,            include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
           file.C, hash.C, hashfile.C, image.C, inet.C, int.C, json.C,            include/pa_pool.h, include/pa_random.h, include/pa_request.h,
           reflection.C, regex.C, string.C, table.C, void.C: used_directly()            include/pa_request_charsets.h, include/pa_request_info.h,
           now true by default            include/pa_sapi.h, include/pa_socks.h,
             include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
 2010-10-17  moko            include/pa_stack.h, include/pa_string.h,
             include/pa_stylesheet_connection.h,
         * src/: include/pa_string.h, main/pa_http.C, main/untaint.C: files            include/pa_stylesheet_manager.h, include/pa_symbols.h,
           upload now uses binary blocks instead of L_FILE_POST tainting.            include/pa_table.h, include/pa_threads.h, include/pa_types.h,
           (bugfix: #128)            include/pa_uue.h, include/pa_xml_exception.h,
             include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
         * tests/: 223.html, results/223.processed: binary file upload test            lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
           added, GPF (issue #128) also checked in this test            lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
             lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
 2010-10-13  misha            lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
             lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
         * tests/260.html: - test for math:convert            main/compile.tab.C, main/compile.y, main/compile_tools.C,
             main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
         * src/classes/math.C: - error in math:convert was fixed            main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
             main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
         * operators.txt: - info about            main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
           ^math:convert[number](from-base;to-base) was added            main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
             main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
         * src/classes/math.C: - method            main/pa_string.C, main/pa_stylesheet_connection.C,
           ^math:convert[number](from-base;to-base) for converting number            main/pa_stylesheet_manager.C, main/pa_symbols.C, main/pa_table.C,
           represention from one base to another was added ( new feature:            main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
           #23 )            main/untaint.C, sql/pa_sql_driver.h,
             targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
 2010-10-13  moko            targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
             targets/cgi/pa_threads.C, targets/cgi/parser3.C,
         * src/main/compile.tab.C: [] now is empty string, not void            targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
             types/pa_junction.h, types/pa_method.h, types/pa_property.h,
         * src/main/compile.y: [] now is empty string, not void            types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
             types/pa_vcaller_wrapper.h, types/pa_vclass.C, types/pa_vclass.h,
         * src/types/pa_vvoid.h: void now passed as parameter            types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
             types/pa_vcookie.h, types/pa_vdate.C, types/pa_vdate.h,
         * tests/: 259.html, results/259.processed: to test difference            types/pa_vdouble.h, types/pa_venv.C, types/pa_venv.h,
           between void and empty string (see ticket #111)            types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
             types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
         * tests/results/152.processed: $sEmpty[] is now empty string, not            types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
           void            types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
             types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
         * tests/256.html: $s[$void] is no longer empty string            types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemcached.C,
             types/pa_vmemcached.h, types/pa_vmemory.h,
         * tests/254.html: empty string is no longer void            types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
             types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
 2010-10-12  misha            types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
             types/pa_vresponse.C, types/pa_vresponse.h,
         * src/types/pa_vcookie.C: - check if $.expires value can be            types/pa_vstateless_class.C, types/pa_vstateless_class.h,
           converted to date during cookies set up ( bugfix: #104 )            types/pa_vstateless_object.h, types/pa_vstatus.C,
             types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
         * tests/041.html: - more tests for ^table.locate were added            types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
             types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
         * src/classes/table.C: - ^table.locate[field;value;options] didn't            types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
           work ( bugfix: #129 ) - exception comment for incorrect options            types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year:
           ^table.locate[field;value;options] was fixed            2015->2017
   
 2010-10-10  moko  2017-02-07  moko
   
         * src/: classes/reflection.C, main/execute.C: constructor returning          * configure.ac, src/include/pa_version.h: 3.4.5b -> 3.4.5rc
           another object feature returned  
   2017-02-06  moko
         * tests/results/258.processed: test result updated as constructor  
           returning another object feature returned          * src/main/pa_common.C: minor fixes, whitespace
   
         * tests/: 258.html, results/258.processed: test for constructor          * src/: classes/curl.C, classes/file.C, classes/image.C,
           returning another object            include/pa_common.h, include/pa_dir.h, main/pa_common.C,
             main/pa_dir.C, main/pa_exec.C: wchar filenames API under Windows
 2010-10-08  misha            now used (implements feature #1081)
   
         * tests/257.html: - whitespaces after @METACOMMANDS and their          * src/: types/pa_vcookie.C, main/pa_charset.C: cleanup
           options shouldn't cause exceptions any longer  
   2017-02-01  moko
 2010-10-06  moko  
           * src/include/pa_request.h: cleanup
         * src/classes/: hash.C, table.C: length from sql server is now  
           ignored, as sql string can contain 0x00 inside (bugfix: #119)  2017-01-30  moko
   
 2010-10-02  misha          * src/main/pa_request.C: file_lock_wait_limit -> lock_wait_timeout
   
         * operators.txt: - the X mark was removed from ^cache[file]. it is  2017-01-29  moko
           usable to delete cache file.  
           * tests/: 383.html, results/383.processed: test for
 2010-10-02  moko            ^reflection:stack[] added (related to feature #1052)
   
         * tests/: 253.html, results/253.processed: hook_key added for key          * src/classes/reflection.C: else added
           checking  
           * src/: include/pa_os.h, main/pa_os.C, main/pa_request.C:
         * src/classes/json.C: null key bug fixed            $.max_file_lock_wait added (implements feature #1128)
   
 2010-09-29  misha  2017-01-28  moko
   
         * tests/: 256.html, 256.txt: - tests for ^json:string[] were added          * tests/: 379-curl.html, results/379-curl.processed: curl empty
             body and other cases tests added (related to featue #1014)
 2010-09-25  moko  
           * src/classes/curl.C: bug if response is empty fixed (related to
         * src/classes/json.C: small fixed            feature #1014)
   
         * tests/results/: 253.processed, 255.processed: just updated  2017-01-27  moko
   
         * tests/: 253.html, 253_json.txt, 255.html, results/253.processed,          * src/: classes/json.C, classes/reflection.C, include/pa_request.h,
           results/255.processed: charset transcode test added for            main/execute.C, types/pa_vmethod_frame.h: ^reflection:stack[]
           json:parse            added (implements feature #1052)
   
 2010-09-24  moko  2017-01-25  moko
   
         * src/types/pa_value.h: warning war :)          * tests/: 382.html, results/382.processed: @GET_DEFAULT returning
             method test added
         * src/: classes/json.C, include/pa_request.h, types/pa_value.h,  
           types/pa_vfile.C, types/pa_vtable.C: $.indent implemented for  2017-01-23  moko
           ^json:string  
           * src/classes/reflection.C: optimization: options->get replaced by
 2010-09-22  moko            hash iterator
   
         * src/main/pa_charset.C: parser charset tables declare only          * tests/: 381.html, results/381.processed: now -> fixed date
           white-space before 0x20, thus adding the missing chars  
           * src/main/pa_request.C: warning war
         * etc/parser3.charsets/: koi8-r.cfg, koi8-u.cfg: updated to conform  
           to http://unicode.org/Public/MAPPINGS/VENDORS/          * src/targets/cgi/parser3.vcproj: Stack size increased from 2Mb to
             5Mb (fixes bug #1058)
 2010-09-21  misha  
           * src/classes/curl.C: warning war
         * src/main/compile.y: - some semicolons were added (VS2010 don't  
           want to compile grammar if they are absent)          * tests/: 381.html, results/381.processed: tests for ^json:string
             $.one-line(true) option added (related to feature #1124)
         * tests/: make_tests.cmd, run_tests.cmd: - path tools is changed  
           * src/: classes/json.C, types/pa_value.h: $json-string
         * src/classes/classes.vcproj: - pathes to ls and gawk are changed            $.one-line(true|false) options is now supported (implements
             feature #1124)
         * src/main/main.vcproj: - path to bison is changed  
           * tests/: 380.html, results/380.processed: test for modified
 2010-09-21  moko            $.max_file_size added (related to bug #1014)
   
         * etc/parser3.charsets/: windows-1250.cfg, windows-1251.cfg,          * tests/: 379.html, results/auto.p: tests for rewritten http file
           windows-1254.cfg, windows-1257.cfg, x-mac-cyrillic.cfg: updated            load added (related to bug #1014)
           to conform to http://unicode.org/Public/MAPPINGS/VENDORS/  
           * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
 2010-09-20  misha            main/pa_common.C, main/pa_http.C: check_file_size added and used
             in curl / file load from disk and http, http file load rewritten
         * src/types/pa_vtable.C: - add EOLs while json-serializing table            (related to bug #1014)
   
         * src/classes/json.C: - add EOL while json-serializing hash  2017-01-18  moko
   
         * src/lib/json/JSON_parser.C: - 'ES' replaced by 'ESC' because some          * tests/: 378.html, results/378.processed: tests for ^result[]
           compilers don't like 'ES'.            added (related to feature #66)
   
 2010-09-17  misha          * src/: classes/op.C, include/pa_request.h: ^return[] can't be
             Method::CO_WITHOUT_FRAME as frame still added in expression
         * operators.txt: - info about json class was added            (related to feature #66)
   
         * src/classes/json.C: - ^json:string[object]  2017-01-17  moko
   
         * src/: include/pa_request.h, main/pa_request.C: - stuff for          * tests/: 377.html, results/377.processed: test for different
           preventing infinite recursion while executing json:string was            combinations of breaks in body and delimiter (related to bug
           added            #1077)
   
         * src/include/pa_string.h: - method append_quoted was added          * tests/: 376.html, results/376.processed: many ^break[] tests
             added (related to bug #1077)
         * src/types/: pa_value.C, pa_value.h, pa_vbool.h, pa_vdate.h,  
           pa_vdouble.h, pa_vfile.C, pa_vfile.h, pa_vint.h, pa_vstring.h,          * src/types/pa_vmethod_frame.C: "break is not allowed in expression
           pa_vtable.C, pa_vtable.h, pa_vvoid.h: - method get_json_string            passed to native method" exception added to avoid bugs due to
           was added to Value & Co            WRITE_EXPR_RESULT skipped and native methods execution continues
             after ^break[] (related to bug #1077)
         * src/classes/date.C: - methods get_gmt_string and get_sql_string  
           were used  2017-01-14  moko
   
         * src/types/pa_vdate.h: - methods get_gmt_string and get_sql_string          * tests/: 330.html, results/330.processed: test results updated
           were added            after ^break[] bugs where fixed (related to bug #1077)
   
 2010-09-10  moko          * tests/: 329.html, results/329.processed: test results updated
             after ^break[] bugs where fixed (related to bug #1077)
         * src/targets/cgi/parser3.C: vsnprintf now not called twice in  
           die_or_abort (backport from 3.4.1)          * tests/results/320.processed: ^return[] added
   
         * src/targets/cgi/parser3.C: vsnprintf now not called twice in  2017-01-13  moko
           die_or_abort (bugfix: #106)  
           * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
 2010-09-09  moko            classes/table.C, include/pa_request.h, main/execute.C,
             main/pa_request.C, targets/cgi/parser3.C,
         * src/classes/json.C: warning war. :)            types/pa_vmethod_frame.C: Request::SKIP_INTERRUPTED,
             Request::SKIP_RETURN added and implemented, Request::SKIP_* now
 2010-09-08  misha            checked after each possible process/execute call (fixes bug
             #1077)
         * src/lib/json/Makefile.am: - additional include directories were  
           added (for pa_memory.h and gc.h)  2016-12-29  moko
   
         * src/lib/json/json.vcproj: - JSON_parser.c => JSON_parser.C -          * src/main/pa_common.C: warning war
           compile as C++ instead default - additional include directory was  
           added (for gc.h)          * src/: classes/math.C, include/pa_random.h, include/pa_request.h,
             include/pa_types.h, main/pa_request.C, main/pa_string.C:
         * src/types/pa_vform.C: - little code reformating            pa_file_size_limit added, ^math:random fixed for upper limit and
             limits more then 0x7FFFFFFF, limits now declared in pa_types.h
         * src/classes/file.C: - $.content-type option now can be specified            (related to feature #1014)
           in ^file::create ( new feature: #102 )  
           * src/: classes/curl.C, classes/file.C, include/pa_common.h,
 2010-09-08  moko            main/pa_common.C, main/pa_dir.C, main/pa_exec.C: stat -> pa_stat
             (related to feature #1014)
         * src/lib/json/: JSON_parser.C, JSON_parser.h: json lib now uses  
           pa_malloc/pa_free  2016-12-28  moko
   
 2010-09-07  moko          * src/: classes/file.C, main/pa_request.C, main/pa_string.C: VS2003
             warning war
         * tests/results/254.processed: VStateless_class:put_element  
           exception was fixed  2016-12-26  moko
   
         * src/types/: pa_value.h, pa_vstateless_class.h: now          * tests/: 341.html, results/341.processed: test for
           VStateless_class:put_element barks self.type, not this.type            ^table.hash[id;;$.type[string]] added (related to feature #1057)
           (bugfix: #105)  
           * src/classes/table.C: ^table.hash[id;;$.type[string]] support fix
 2010-09-06  moko            (related to feature #1057)
   
         * src/classes/reflection.C: bugfix: new String() is required for          * src/types/pa_vdate.C: warning war continues...
           exception handling  
           * src/: classes/date.C, classes/image.C, classes/table.C,
         * tests/: 254.html, results/254.processed: test modified            include/pa_config_includes.h, types/pa_vfile.C: warning war
   
 2010-09-05  moko          * src/lib/gd/gifio.C: warning war / cleanup
   
         * tests/: 254.html, results/254.processed: ^reflection:copy test          * src/lib/json/pa_json.C: warning war
           added  
           * src/classes/hash.C: warning war
         * src/: classes/reflection.C, include/pa_request.h:  
           ^reflection:copy implemented (new feature: #100)          * src/types/pa_vfile.C: warning war
   
 2010-09-03  moko          * src/: classes/hash.C, include/pa_common.h, types/pa_vcookie.C:
             -Wall warning war continues
         * src/lib/json/JSON_parser.C: c++ compatiblity  
           * configure.ac: --with-build-warnings actualized
         * tests/: 253.html, 253_json.txt, results/253.processed: $.distinct  
           option testing added  2016-12-25  moko
   
 2010-09-02  moko          * src/main/pa_exec.C: -wAll warning war
   
         * src/classes/json.C: $.distinct[first|last|all] added          * src/: types/pa_vform.C, types/pa_vrequest.C, main/pa_common.C:
             -wAll warning war
 2010-09-01  moko  
           * src/: include/pa_common.h, include/pa_sapi.h,
         * tests/results/253.processed: json test result            types/pa_junction.h, types/pa_method.h, types/pa_value.h,
             types/pa_vdate.C, types/pa_vstateless_class.h, types/pa_vxdoc.h:
         * tests/: 253.html, 253_json.txt: json test added            -wAll warning war
   
         * src/classes/json.C: json.C update to actual version + hash key  2016-12-23  moko
           creation bugfix  
           * src/lib/ltdl/Makefile.am: extra dist added
 2010-08-31  misha  
           * tests/results/344.processed: test result updated after $file.text
         * src/lib/json/JSON_parser.C, src/lib/json/JSON_parser.h,            prefetched in ^hash::create[$file] (related to feature #1075)
           src/lib/json/Makefile.am, src/lib/json/json.vcproj,  
           src/lib/Makefile.am, src/classes/Makefile.am,          * src/types/: pa_vfile.C, pa_vfile.h: $file.text prefetched in
           src/classes/classes.vcproj, src/classes/json.C, parser3.sln: -            ^hash::create[$file] (related to feature #1075)
           json library was added  
   2016-12-22  moko
 2010-08-30  moko  
           * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
         * src/: include/pa_request.h, main/execute.C, main/pa_request.C,            main/pa_request.C, main/pa_stylesheet_connection.C,
           types/pa_vobject.C: cosmetic optimization in            types/pa_vfile.C: file_stat now return 64-bit size (implements
           request:execute_method usage            #1014 under 32-bit unix versions)
   
         * src/: include/pa_charset.h, main/pa_charset.C: small  2016-12-21  moko
           optimization, just to decrease number of lines. :)  
           * tests/: 375.html, results/375.processed: test for exec returning
 2010-08-27  misha            stated file added (related to feature #1119)
   
         * src/classes/op.C: - taint[json] was added          * src/classes/file.C: load should not return file with null body
             (fixes bug #1119)
         * tests/: 250.html, 251.html, 252.html: - tests for taint[json]  
           were added  2016-12-14  moko
   
         * src/main/pa_exec.C: - warning fix was rolled back.          * tests/: 374.html, results/374.processed: test for $method.name
             added (related to feature #1117) plus method returning junction
         * src/: main/pa_charset.C, main/untaint.C, include/pa_charset.h,            test
           include/pa_string.h: - taint[json] was added - escaping was  
           slightly modified  2016-12-13  moko
   
 2010-08-25  misha          * src/: include/pa_symbols.h, main/pa_symbols.C,
             types/pa_vjunction.C, types/pa_vjunction.h: $method.name added
         * src/classes/file.C: - typo in file:sql exception was fixed            (implements feature #1117)
   
         * src/main/pa_exec.C: - warning about declared and not used          * src/: types/pa_vform.C, include/pa_request_info.h: now only GET,
           variable forced_allow was removed            HEAD and TRACE can't have body (implements feature #1116)
   
 2010-08-14  misha  2016-12-09  moko
   
         * src/classes/hash.C: - two warnings about signed/unsigned mismatch          * tests/: 373.html, results/373.processed: tests for
           were removed            ^reflection:tainting added (related to feature #1098)
   
 2010-08-11  moko          * src/classes/reflection.C: ^reflection:tainting arguments order
             change (related to feature #1098)
         * tests/: 249.html, results/249.processed: default setter and  
           anti-recursive default getter test added  2016-12-06  moko
   
         * src/: classes/reflection.C, include/pa_request.h, main/execute.C,          * src/: classes/reflection.C, include/pa_string.h,
           types/pa_value.h, types/pa_vclass.C, types/pa_vobject.C,            main/pa_string.C: ^reflection:tainting[$string] added (implements
           types/pa_vobject.h, types/pa_vstateless_class.C,            feature #1098)
           types/pa_vstateless_class.h: default setter support +  
           anti-recursive default getter support ( new feature: #13 )  2016-12-05  moko
   
         * src/include/pa_hash.h: optimization: threshold member removed          * src/types/pa_vdouble.h: negative zero (-0) now converted to 0
           from hash, reducing sizeof(hash)            (fixes bug #1114)
   
 2010-08-10  misha  2016-12-04  moko
   
         * tests/196.html: - junction-method was added to the test          * tests/: 206.html, results/206.processed: negative zero (0/-1)
             check added
         * tests/248.html: - ups. typo :)  
   2016-12-03  moko
         * tests/248.html: - test for checking .match with 4 params  
           * tests/: 346-curl.html, results/346-curl.processed: test modified
         * tests/: 247.html, 247_utf8.txt, 247_utf8_bom.txt,            to test value.as_hash() usage
           247_windows1251.txt: - test for "transcode file from utf-8 to  
           $request:charset during loading if the BOM code is detected"          * src/classes/curl.C: value.as_hash() used for correct hash
             processing
         * src/main/: pa_common.C, pa_http.C: - transcode file from utf-8 to  
           $request:charset during loading if the BOM code is detected ( new          * src/classes/reflection.C: exceptions texts fixes
           feature: #98 )  
   2016-12-02  moko
 2010-08-05  misha  
           * tests/: 372.html, results/372.processed: tests for
         * src/classes/image.C: - ^image.replace now can accept only 2            ^reflection:create[ $.class[name] $.constructor[name]
           params. in this case the whole image is affected ( new feature:            $.arguments[ $.1[param1] $.2[param2] ... ] ] added (related to
           #95 )            feature #1094)
   
 2010-08-04  misha          * src/types/pa_vmethod_frame.h: comment added: params should be
             declared outside of *_FRAME_ACTION as MethodParams destructor
         * tests/246.html: - test tor ^hash._at[] was added            will be called in ~VNativeMethodFrame
   
         * src/classes/hash.C: - ^hash._at[first|last|[-]N] ( new feature:          * src/classes/reflection.C: ^reflection:create[ $.arguments[ ... ]
           #53 )            ] minor fix
   
         * src/include/pa_hash.h: - methods for accessing the first and the          * src/: classes/reflection.C, types/pa_value.C, types/pa_value.h,
           last values of ordered hash were added (first_value and            types/pa_vmethod_frame.C: ^reflection:create[ $.class[name]
           last_value)            $.constructor[name] $.arguments[ $.1[param1] $.2[param2] ... ] ]
             now supported (implements feature #1094) value::as_hash added
         * src/classes/file.C: - now ^file::base64 accepts up to 4 params            (and should be used everywhere)
           (similar to others file's methods):  
           ^file::base64[mode;user-file-name;encoded;options] ( new feature:          * src/classes/reflection.C: cleanup
           #68 )  
   2016-12-01  moko
         * src/types/pa_vmethod_frame.h: - helper method as_hash was added  
           * tests/: 356.html, results/356.processed: test for method
 2010-08-01  moko            junctions class name added to the resulting hash added (related
             to feature #1068)
         * src/classes/op.C: to correctly process $result[] in code, called  
           from ^process          * src/classes/reflection.C: for method junctions class name added
             to the resulting hash (related to feature #1068)
         * tests/245.html: $result in ^process[] test added  
   2016-11-30  moko
         * src/: classes/op.C, classes/reflection.C, include/pa_request.h,  
           main/execute.C, main/pa_request.C, types/pa_vmethod_frame.C,          * src/types/: pa_vhashfile.C, pa_vhashfile.h: file_name included in
           types/pa_vmethod_frame.h, types/pa_vobject.C: optimization:            exception (related to bug #1113)
           VMethodFrame(junction, caller) replaced with VMethodFrame(method,  
           caller, self) op_call(VMethodFrame &frame, bool constructing)          * src/types/pa_vhashfile.C: whitespace
           removed, construct(class,method) added  
           * src/main/pa_os.C: errno now returned as it should (fixes bug
         * tests/results/: 192.processed, 244.processed: request::construct            #1113)
           added  
           * tests/results/: 175.processed, 192.processed, 224.processed,
         * tests/: 244.html, 245.html, results/244.processed,            229.processed, 239.processed, 244.processed, 246.processed,
           results/245.processed: object creation exceptions and ^process            314.processed, 352.processed: tests results updated after method
           tests added            call exceptions improved as method now keeps its name
   
 2010-07-28  misha          * src/: classes/reflection.C, main/execute.C, types/pa_value.C,
             types/pa_vmethod_frame.h: method call exceptions improved as
         * tests/make_tests.cmd: - win32 EOLs            method now keeps its name
   
         * tests/: run_parser.cmd, run_tests.cmd: - cmd files for executing          * tests/: 224.html, 239.html, results/224.processed,
           tests on Win32 were added (The system timezone should be GMT+3)            results/239.processed: tests and tests results updated after
             Request::construct exception changed
 2010-07-26  misha  
           * src/: classes/reflection.C, main/execute.C: Request::construct
         * tests/: 212.html, results/212.processed: - sizes were removed            exception optimized
           mecause they could be different on different OSs  
           * tests/: 371.html, results/371.processed: test for
         * tests/065.html: - make it "win32 friendly"            WWrapper.get_element call in $.name.key[value] code added
             (related to feature #1091)
 2010-07-25  misha  
           * src/types/pa_wwrapper.h: WWrapper.get_element returned, as used
         * src/main/compile.y: - all EOLs between methods are removed during            in $.name.key[value] code (related to feature #1091)
           compilation ( new feature: #47 )  
   2016-11-29  moko
         * tests/results/149.processed: - prepare tests to trim trailing  
           methods' EOLs          * src/classes/op.C: VS warning war
   
         * tests/149.html: - prepare tests to trim trailing methods' EOLs          * src/types/: pa_vmethod_frame.h, pa_wcontext.h: VS warning war:
             C4239: nonstandard extension used : 'return' : conversion from
         * tests/: results/006.processed, results/014.processed, 006.html,            'Value' to 'Value &' (related to feature #1020)
           014.html, 022.html: - prepare tests to trim trailing methods'  
           EOLs          * src/: main/execute.C, types/pa_vmethod_frame.h,
             types/pa_wcontext.h: VS warning war: C4239: nonstandard extension
         * tests/: 059.html, 071.html, 149.html, results/059.processed,            used : 'return' : conversion from 'Value' to 'Value &' (related
           results/071.processed, results/022.processed: - prepare tests to            to feature #1020)
           trim trailing methods' EOLs  
           * src/main/execute.C: VS warning war
         * tests/: results/073.processed, results/109.processed,  
           results/142.processed, results/144.processed,          * src/targets/cgi/parser3.C: VS compatibility fix
           results/149.processed, 073.html, 096.html, 109.html, 142.html,  
           144.html: - prepare tests to trim trailing methods' EOLs          * src/include/pa_request.h: VS warning war
   
         * tests/: 096.html, 107.html, 109.html, 142.html, 144.html,          * tests/: 370.html, results/370.processed: test for ^file::exec[
           149.html, 152.html, results/096.processed, results/107.processed,            ... $.stdin[$binary_file] ] added (related to bug #1044)
           results/109.processed, results/142.processed,  
           results/144.processed: - prepare tests to trim trailing methods'          * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
           EOLs            include/pa_string.h, main/pa_exec.C: pa_exec now supports
             $.stdin[$binary_file] (fixes bug #1044)
 2010-07-24  moko  
   2016-11-28  moko
         * tests/results/: 156.processed, 224.processed: fix for #54 changed  
           the hash order in this test          * src/main/pa_exec.C: whitespace
   
         * tests/014.html: to check hash order, hash no is longer sorted          * src/main/pa_request.C: whitespace
           before print  
           * tests/: 369.html, results/369.processed: test for
         * src/include/pa_hash.h: hash copy constructor now keeps order            $response:status usage added (related to feature #1099)
           (bugfix: #54)  
           * src/targets/cgi/parser3.C: HTTP response code used as exit status
 2010-07-23  moko            if < 100 (implements feature #1099)
   
         * tests/results/224.processed: @auto[] is no longer inherited          * src/targets/cgi/parser3.C: whitespace
   
         * src/types/pa_vstateless_class.C, tests/227.html,          * src/targets/cgi/parser3.C: whitespace
           tests/results/227.processed: @auto[] is no longer inherited  
           (bugfix: #57)          * tests/: 368.html, results/368.processed: test updated after
             ^reflection:filename[$method] added (related to feature #1053)
 2010-07-22  misha  
           * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
         * src/classes/table.C: - don't skip comment lines during            main/compile.y, main/execute.C, main/pa_request.C,
           table::load if encloser or separator is set as '#' ( new feature:            types/pa_vclass.h: filename -> filespec,
           #30 )            ^reflection:filename[$method] added (related to feature #1053)
   
         * src/targets/cgi/parser3.C: - don't run as cgi if  2016-11-27  moko
           env:PARSER_VERSION was set for preventing infinite loot ( bugfix:  
           #12 )          * tests/: 368.html, results/368.processed: test for
             reflection:filename[$class or object] added (related to feature
         * src/classes/file.C: - set PARSER_VARSION env before external            #1053)
           script executing  
           * src/: classes/reflection.C, main/compile.y, types/pa_vclass.h,
 2010-07-13  misha            types/pa_vstateless_class.h: ^reflection:filename[$class or
             object] added (implements feature #1053)
         * tests/058.html: - test for suppressing @border was added - test  
           for user attribute was added  2016-11-26  moko
   
         * tests/results/186.processed: unescaping from \uXXXX          * src/: include/pa_request_info.h,
             targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
         * tests/186.html: unescaping from \uXXXX            remove_absolute_uri -> strip_absolute_uri
   
         * tests/: 239.html, results/239.processed: method call type  2016-11-25  moko
   
         * src/types/: pa_vjunction.C, pa_vjunction.h: - bugfix: #90 :          * src/: include/pa_request_info.h,
           $junction_method.CLASS_NAME (+CLASS)            targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
             request_info.remove_absolute_uri added to remove possible
 2010-07-07  misha            http://site.name/ from $request:uri (implements feature #1112)
   
         * buildall-with-xml, buildall-without-xml: - moving to pcre 8.10 on  2016-11-24  moko
           *nix  
           * tests/: 367-curl.html, results/367-curl.processed: test for
 2010-07-05  misha            previous request headers clearing after redirect added (related
             to bug #1109)
         * src/: classes/curl.C, classes/file.C, classes/hash.C,  
           classes/image.C, classes/op.C, classes/string.C, classes/table.C,          * src/: classes/curl.C, include/pa_array.h, include/pa_http.h:
           classes/void.C, main/pa_common.C, main/pa_http.C: - exception            response headers from previous requests are now cleared, only
           comment strings "options must be hash", "options must be hash,            last request headers are collected (fixes bug #1109)
           not code" and "called with invalid option" were replaced by  
           constatns - exception comment string "invalid option passed" was          * tests/results/: 266.processed, 321.processed, 356.processed:
           replaced by "called with invalid option" (now in different            tests results updated as method name now added to the resulting
           methods are the same exception comment string)            hash for new syntax only (Imp1 compatimility fixed, related to
             feature #1068)
         * src/include/pa_exception.h: - more exception strings were defined  
           * src/classes/reflection.C: method name now added to the resulting
         * src/: main/compile.y, main/compile_tools.C, main/compile_tools.h,            hash for new syntax only (Imp1 compatimility fixed, related to
           types/pa_vstateless_class.h: - now we can define possible            feature #1068)
           method's call type ( new feature: #5 )   1.  
           @OPTIONS\nstatic|dynamic (no option == any) -- for all classe's          * tests/results/366.processed: test for native and parser
           methods   2. @static:method[params] (only static keyword could be            implementation of ^use[] logic (related to feature #1074)
           used here) -- for specified methods  
           * tests/: 366.html, 366_dir/test-duplicate.p, 366_dir/test.p: test
         * src/main/pa_common.C: - junction points should not be deleted on            for native and parser implementation of ^use[] logic (related to
           win32 during dirs cleanup ( bugfix: #83 ) - optimisation in dirs            feature #1074)
           cleanup  
   2016-11-23  moko
 2010-07-03  misha  
           * src/: classes/op.C, include/pa_request.h, main/compile.y,
         * tests/: 158.html, 160.html, 161.html, 162.html, 163.html,            main/pa_request.C: @USE file now implemented as ^use[file;
           results/158.processed, results/160.processed,            $.origin[origin_file] ] (implements feature #1074)
           results/161.processed, results/162.processed,  
           results/163.processed: - prepare tests to trim trailing methods'  2016-11-21  moko
           EOLs  
           * tests/: 365.html, results/365.processed: test for $caller bugs in
         * tests/results/169.processed: - prepare tests to trim trailing            3.4.4 and $caller.method now tested (related to feature #1110)
           methods' EOLs  
           * tests/: 364.html, results/364.processed: $caller usage in
         * tests/results/: 168.processed, 169.processed: - prepare tests to            different contexts now tested (related to feature #1110)
           trim trailing methods' EOLs  
           * src/types/types.vcproj: +pa_vcaller_wrapper.h
         * tests/: results/170.processed, results/167.processed,  
           results/168.processed, results/169.processed, 167.html, 168.html,          * src/types/Makefile.am: pa_vcaller_wrapper.h added
           169.html: - prepare tests to trim trailing methods' EOLs  
           * src/: include/pa_symbols.h, main/pa_symbols.C, types/pa_method.h,
         * tests/: results/170.processed, results/171.processed,            types/pa_vcaller_wrapper.h, types/pa_vmethod_frame.C,
           results/172.processed, results/173.processed,            types/pa_vmethod_frame.h:  redesign: VCallerWrapper added and
           results/174.processed, results/175.processed, 170.html, 171.html,            used (implements feature #1110)
           172.html, 173.html, 174.html, 175.html: - prepare tests to trim  
           trailing methods' EOLs  2016-11-20  moko
   
         * tests/: results/176.processed, results/180.processed,          * src/types/pa_vdouble.h: whitespace
           results/184.processed, results/185.processed,  
           results/191.processed, results/192.processed,  2016-11-11  moko
           results/196.processed, results/197.processed,  
           results/198.processed, 176.html, 180.html, 184.html, 185.html,          * tests/: 363.html, results/363.processed: more tests for feature
           191.html, 192.html, 196.html, 197.html, 198.html: - prepare tests            #1091 (how parser methods work in expression context)
           to trim trailing methods' EOLs  
           * src/: include/pa_request.h, types/pa_vmethod_frame.h: in
         * tests/: 199.html, 208.html, 209.html, 213.html, 214.html,            expressions strings are now written as strings, not values by
           results/199.processed, results/208.processed,            write_as_string (related to feature #1091)
           results/209.processed, results/213.processed,  
           results/214.processed: - prepare tests to trim trailing methods'          * src/classes/op.C: to make more correct behavour in expression
           EOLs            context
   
 2010-06-29  misha  2016-11-07  moko
   
         * tests/: 220.html, 218.html, results/218.processed,          * tests/: 362.html, results/362.processed: test for
           results/215.processed, results/217.processed, 215.html, 217.html:            xsltParseStylesheetDoc caching as xsl modification after it added
           - prepare tests to trim trailing methods' EOLs            (related to bug #1108)
   
         * tests/: results/224.processed, 224.html, 223.html,          * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltParseStylesheetDoc
           results/223.processed, results/220.processed: - prepare tests to            result now cached as xdoc is modified after it (fixes bug #1108)
           trim trailing methods' EOLs  
   2016-11-06  moko
         * tests/results/: 226.processed, 230.processed: - prepare tests to  
           trim trailing methods' EOLs          * src/types/pa_vxdoc.h: whitespace
   
         * tests/: 229.html, results/229.processed: - prepare tests to trim  2016-11-05  moko
           trailing methods' EOLs  
           * src/types/pa_vmethod_frame.h: cleanup
         * tests/: 232.html, 235.html, results/232.processed,  
           results/235.processed, 226.html, 227.html, 228.html, 230.html,  2016-11-03  moko
           results/226.processed, results/227.processed,  
           results/228.processed, results/230.processed: - prepare tests to          * tests/results/244.processed: more correct exception after method
           trim trailing methods' EOLs            frames separation
   
 2010-06-16  moko          * src/types/pa_vmethod_frame.h: minor optimizaion
   
         * tests/: 229.html, results/229.processed:  elseif now supported in          * src/types/pa_method.h: optimization: params_count added
           ^if  
           * src/: classes/json.C, classes/op.C, classes/reflection.C,
         * src/classes/op.C: new feature: #56 elseif now supported in ^if            include/pa_request.h, main/execute.C, main/pa_request.C,
             types/pa_value.C, types/pa_vmethod_frame.C,
 2010-06-03  misha            types/pa_vmethod_frame.h, types/pa_vobject.C: Optimization:
             VMethodFrame now divided into VNativeMethodFrame,
         * src/main/pa_common.C: - bugfix #74 -- memmove should be used            VParserMethodFrame, VLocalParserMethodFrame; METHOD_FRAME_ACTION,
           instead of memcopy for overlaped regions            EXPRESSION_FRAME_ACTION, CONSTRUCTOR_FRAME_ACTION defines added
             and used (related to feature #1104)
 2010-05-25  misha  
   2016-11-02  moko
         * src/main/pa_common.C: - wanring about unused vars was removed  
           * src/: classes/bool.C, classes/curl.C, classes/date.C,
         * src/: include/pa_request.h, main/execute.C, main/pa_request.C: -            classes/double.C, classes/file.C, classes/hash.C,
           get_method_filename was moved to execute.C            classes/hashfile.C, classes/image.C, classes/inet.C,
             classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
 2010-05-23  misha            classes/memcached.C, classes/op.C, classes/reflection.C,
             classes/regex.C, classes/string.C, classes/table.C,
         * src/main/pa_request.C: - more accurate detection of method's file            classes/xdoc.C, classes/xnode.C, include/pa_request.h,
             main/execute.C: cleanup: r.write_pass_lang, r.write_no_lang ->
 2010-05-22  misha            r.write (implements feature #1091)
   
         * src/classes/reflection.C: - bugfix: core during detection of          * src/main/execute.C: cleanup (related to feature #1104)
           .file if filespec isn't detected successfully  
           * src/: include/pa_request.h, main/execute.C,
 2010-05-20  misha            types/pa_vmethod_frame.h, types/pa_wcontext.h: VExpressionFrame
             added, in_expression removed (implements feature #1104)
         * src/main/pa_request.C: - fix in get_method_filename  
   2016-10-31  moko
         * src/include/pa_request.h: - new feature: #24 -- searching  
           included file in @USE/^use is changed. if its filespec doesn't          * src/types/pa_value.C: whitespace
           start from '/' it will be searched in caller file directory  
   2016-10-28  moko
         * src/classes/reflection.C: - ^reflection:method_info returns file  
           where the method is defined          * tests/results/244.processed: updated after error reporting fixed
             in pa_wcontext.C
         * src/: include/pa_request.h, main/compile.y, main/pa_request.C,  
           classes/op.C: - new feature: #24 -- searching included file in          * src/types/pa_wcontext.C: error reporting fixed
           @USE/^use is changed. if its filespec doesn't start from '/' it  
           will be searched in caller file directory          * src/types/pa_wcontext.h: whitespace
   
         * src/: classes/file.C, include/pa_common.h: - method lastposafter          * src/classes/image.C: not fully readed entries are no longer
           is moved to pa_common.h            processed (fixes bug #1106)
   
 2010-05-18  misha  2016-10-26  moko
   
         * src/: main/pa_common.C, include/pa_common.h, classes/string.C,          * src/classes/image.C: whitespace
           types/pa_vcookie.C: new feature: #71 ^string:js-unescape and  
           cookie parser decode \uXXXX as well as %uXXXX          * src/: include/pa_request.h, include/pa_string.h, main/untaint.C,
             types/pa_vmail.C, types/pa_vmethod_frame.h, types/pa_wcontext.h,
 2010-05-17  misha            types/pa_wwrapper.h: optimization: L_PASS_APPENDED removed as no
             longer required (related to feature #1091)
         * src/classes/curl.C: beauty: - unused param is removed in method  
           _curl_version_action - some spaces were removed or replaced by          * tests/results/: 264.processed, 350.processed: test results update
           tabs            reverted (whitespace optimization) after write_no_lang removed :)
             (related to feature #1091)
         * src/classes/table.C: - bugfix: #72 core with empty value during  
           ^table.hash[...;name_of_the_last_column][$.type[string]]          * src/: classes/file.C, classes/hash.C, classes/op.C,
             classes/string.C, classes/table.C, classes/void.C,
 2010-05-16  misha            classes/xdoc.C, include/pa_request.h, main/pa_xml_io.C,
             types/pa_vmail.C: Temp_lang removed, write_no_lang now almost
         * src/classes/curl.C: new: #61 more curl options were added            equal write_pass_lang (related to feature #1091)
           (contributed by Sumo)  
           * tests/results/: 264.processed, 350.processed: test results
 2010-04-29  pretender            updated (whitespace optimization) after write_assign_lang removed
             (related to feature #1091)
         * src/main/pa_string.C: fixes #63 Split result from empty string  
           now empty string.          * tests/: 361.html, results/361.processed: test for non-string
             ^untaint added (related to feature #1091)
         * src/types/pa_vtable.C: bugfix: #35 All empty table cells are now  
           string type.          * src/: classes/curl.C, classes/date.C, classes/file.C,
             classes/hash.C, classes/op.C, classes/string.C,
 2010-04-28  pretender            include/pa_request.h, main/execute.C: optimization:
             write_assign_lang removed as not required (first part of feature
         * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,            #1091 implementation)
           main/execute.C: bugfix: #59 OPTIMIZE_BYTECODE_GET_CLASS  
           macrodefinition removed  2016-10-12  moko
   
 2010-04-19  pretender          * tests/: 360.html, results/360.processed: more test code (related
             to feature #1104)
         * src/main/execute.C: fixes #60 Stacktrace now contains info for  
           OP_CONSTRUCT_OBJECT and OP_GET_CLASS          * src/: classes/op.C, classes/reflection.C, include/pa_opcode.h,
             include/pa_request.h, main/compile.y, main/execute.C: opcode
         * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:            OP_PREPARE_TO_EXPRESSION removed as not required, optimized
           fixes #64 Now file.missing exception generates in unsafe mode to.            WContext is next task (implements feature #1104)
   
         * src/classes/file.C: fixes #48 Now not throw "not save environment          * src/types/pa_method.h: more detailed comment for CO_WITHOUT_FRAME
           variable" exception in grpunlim version.            / CO_WITHOUT_WCONTEXT
   
 2010-04-05  misha          * tests/: 360.html, results/360.processed: test for in expression
             state (related to feature #1104)
         * src/classes/string.C: - new feature: 4th param was added to  
           match. if specified its value is returned in case of nothing was  2016-10-11  moko
           found  
           * src/main/execute.C: compilation without OPTIMIZE_CALL fixed
 2010-04-01  misha  
           * src/classes/op.C: default value removed from initializer
         * src/main/pa_request.C: - bugfix: on *nix URIs like /a/b/// caused  
           multiple execution of /a/b/auto.p          * src/types/pa_vmemcached.C: FreeBSD 11 warning war
   
 2010-03-19  misha          * src/types/pa_vmethod_frame.h: FreeBSD 11 warning war
   
         * src/main/execute.C: - core in $table1.$table2 was fixed  2016-10-10  moko
   
         * src/targets/cgi/parser3.C: - core in sigpipe was fixed          * tests/results/auto.p: test updated adter $RECOURSION_LIMIT,
             $LOOP_LIMIT  -> $LIMITS[ $.max_recoursion, $.max_loop ] (related
 2010-01-27  misha            to feature #42)
   
         * src/main/pa_common.C: - bugfix: there are no excaption.type if          * src/main/pa_request.C: $RECOURSION_LIMIT, $LOOP_LIMIT  ->
           trying to open file by path /existing-file/non-exixting-file            $LIMITS[ $.max_recoursion, $.max_loop ] (related to feature #42)
   
 2010-01-26  misha  2016-10-08  moko
   
         * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:post-body          * src/classes/double.C: whitespace
           was added (returns file)  
   2016-10-07  moko
 2009-12-22  misha  
           * src/types/pa_vmethod_frame.h: reorder
         * src/classes/curl.C: - method 'option' was renamed to 'options' -  
           now parser doesn't have class curl if it was built without it  2016-10-06  moko
   
 2009-12-15  misha          * src/classes/date.C: typo
   
         * configure.in: - little cheat with curl include dir was added          * src/types/pa_vmethod_frame.h: whitespace + cleanup
   
 2009-12-05  misha          * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
             classes/op.C, classes/reflection.C, types/pa_vmethod_frame.C,
         * src/classes/curl.C: - some fixes            types/pa_vmethod_frame.h: params.get now returns Value&, not
             Value*
 2009-12-04  misha  
           * src/types/pa_vmethod_frame.C: params.get should return Value&.
         * src/include/pa_config_fixed.h, src/classes/classes.vcproj,  
           src/classes/curl.C, src/classes/file.C, src/classes/Makefile.am,          * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: get_as
           buildall-with-xml, buildall-without-xml, configure.in: - curl            removed; first as_* code rewrite
           class was added  
   2016-10-05  moko
         * src/include/pa_hash.h: - hash-iterator was added  
           * src/include/pa_request.h: whitespace
         * buildall-with-xml, buildall-without-xml: - option --passive-ftp  
           was added to pcre          * tests/: 359.html, results/359.processed: test for VCodeFrame and
             intercept_string added (related to feature #1097)
 2009-11-27  misha  
           * src/: classes/image.C, classes/op.C, classes/table.C,
         * src/classes/image.C: - don't add @border attribute to output of            include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
           ^image.html[] if it was specified by user with empty value            optimization: intercept_string removed (implements feature #1097)
   
         * src/types/pa_vxdoc.C: - bugfix: core if xdoc doesn't have the          * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: whitespace
           root element and we are trying to access .documentElement  
           * src/types/: pa_vcode_frame.h, pa_wwrapper.h: get_element removed
 2009-11-11  misha            from VCodeFrame and WWrapper as not required
   
         * src/classes/table.C: - in ^table.flip[] look at number of columns  2016-10-04  moko
           instead of number of items in first row for named tables  
           * src/: classes/curl.C, classes/date.C, classes/double.C,
 2009-11-10  misha            classes/file.C, classes/hash.C, classes/image.C, classes/inet.C,
             classes/int.C, classes/json.C, classes/op.C,
         * operators.txt: - info about hash-options in ^file::create was            classes/reflection.C, classes/string.C, classes/table.C,
           added            include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
             proces_to_value -> process after StringOrValue removed (related
         * tests/237.html: - test for ^file::create[...;$.charset[...]] was            to feature #1020)
           added  
           * src/classes/form.C: whitespace
 2009-11-09  misha  
           * src/main/execute.C: VALUE__GET_BASE_CLASS added to opcode_names
         * buildall-with-xml: - moving to libxml 2.7.6  
           * tests/: 357.html, 358.html, results/357.processed,
         * tests/236.html: - tests for comparations cords with functions            results/358.processed, results/auto.p: test for @conf
           were added            $RECOURSION_LIMIT and $LOOP_LIMIT added (related to feature #42)
   
         * src/include/pa_string.h: - optimisation: cacheing of cstr was  2016-10-03  moko
           added  
           * src/: classes/op.C, include/pa_request.h, main/pa_request.C,
         * src/main/pa_http.C: - little optimisation            types/pa_vtable.C: @conf $RECOURSION_LIMIT and $LOOP_LIMIT now
             supported (implements feature #42)
         * src/: classes/table.C, lib/gc/include/gc_allocator.h: - bugfix:  
           GPF mallocs + stringstream (table.save)          * src/types/pa_vregex.h: no reason for VRegex to be
             is_evaluated_expr
         * src/classes/file.C: - file::create now accepts 4th param: options  
           with $.charset          * src/classes/curl.C: CURL_OPT(CURL_INT, SSLVERSION) added
             (implements feature #1095)
         * src/lib/cord/: cordxtra.c, include/private/cord_pos.h: - fixed  
           bug in cord (comparation cords with functions was buggy)  2016-10-01  moko
   
 2009-11-06  misha          * src/classes/reflection.C: $.overwrite in ^reflection:mixin is now
             false by default (related to feature #1089)
         * src/main/pa_string.C: - bugfix: calculation string.length  
           sometimes was buggy  2016-09-30  moko
   
         * src/classes/string.C: - bugfix: Temp_value_element wasn't          * src/types/pa_wcontext.h: cleanup
           destroyed if exception occured during match/replace  
   2016-09-29  moko
         * src/: main/pa_charset.C, include/pa_charset.h: - method  
           lengthUTF8Char was added          * src/main/execute.C: whitespace
   
         * src/classes/op.C: - clean tainting lang was added for user's          * src/include/pa_request.h: whitespace
           usage  
           * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
         * src/lib/cord/: cordbscs.c, cordxtra.c: - some rare GPF were            classes/op.C, classes/table.C, include/pa_request.h,
           fixed: checkouts are required after GC_MALLOC            main/execute.C, main/pa_request.C, types/pa_vmethod_frame.h,
             types/pa_vobject.C, types/pa_wcontext.h: optimization:
         * src/types/pa_vregex.C: - check UTF8 only during 1st iteration            StringOrValue removed as it just slows down and adds complexity
             (implements feature #1020)
         * operators.txt: - actually, there is no ^untaint[xml] in  
           file::create  2016-09-28  moko
   
 2009-10-15  misha          * tests/: 356.html, results/266.processed, results/321.processed,
             results/356.processed: tests updated after name was added to
         * tests/: 235.html, 235_attach.txt: - tests for preparing email            method_info hash, test for ^reflection:method_info[junction]
           were added            added (related to feature #1068)
   
         * tests/234.html: - more tests for checking ^taint[uri] escaping          * src/classes/reflection.C: ^reflection:method_info[junction] now
           were added            supported, method name added to the resulting hash (implements
             feature #1068)
         * src/: include/pa_string.h, main/pa_charset.C, main/pa_http.C,  
           main/pa_request.C, main/untaint.C, types/pa_vmail.C: - little          * tests/: 276.html, results/276.processed: more tests for
           hacking: for dealing with transcoding+^taint[uri]            ^reflection:delete[]
           transcode_and_untaint was replaced by untaint_and_transcode  
           * src/classes/reflection.C: fixed bug then ^reflection:delete
 2009-10-13  misha            didn't work on class and could damage native objects (like file)
   
         * tests/: 121.html, results/121.processed: - test transcoding +  2016-09-26  moko
           url-escaping now  
           * tests/: 345.html, 346-curl.html, 347-curl.html, 348.html,
         * tests/results/auto.p: - more helpers' methods were added            results/345.processed, results/346-curl.processed,
             results/347-curl.processed, results/348.processed: numbers added
         * src/main/pa_globals.C: - die instead of abort            to simplify diff analysis
   
 2009-10-06  misha          * tests/: 352.html, results/352.processed: test result updated as
             method name used
         * src/main/pa_common.C: - don't allocate memory during  
           capitalization if input string is already capitalized          * src/classes/reflection.C: method name used
   
         * src/targets/isapi/parser3isapi.C: - pass pre-capitalized headers          * src/types/: pa_method.h, pa_vstateless_class.C: method now keeps
             its name
         * src/targets/cgi/parser3.C: - pass pre-capitalized headers - don't  
           use format function because it calls malloc          * src/types/pa_method.h: whitespace
   
         * src/include/pa_common.h: - more capitalized headers were added          * src/classes/reflection.C: both method and field with one name can
             exist.
         * src/main/pa_common.C: - in safe mode clear executable bits during  
           file writing          * src/classes/reflection.C: ^reflection:mixin added (implements
             feature #1089)
 2009-10-05  misha  
           * tests/: 355.html, results/355.processed: property appears in
         * src/main/pa_charset.C: - use iterators in pa_charset.C itself            derived class if added in base test added
   
 2009-10-03  misha          * src/types/pa_vstateless_class.h: get_method declaration +
             whitespace
         * src/: types/pa_vimage.h, classes/image.C: - ^img.font[],  
           ^img.text[] & ^img.length[] can work in utf-8 now          * tests/: 354.html, results/354.processed: nice test from method
             and property with one name in class added
         * src/: include/pa_charset.h, main/pa_charset.C: - class  
           UTF8_string_iterator was added  2016-09-23  moko
   
         * src/classes/image.C: - respect utf-8 when calculate alphabet          * src/classes/reflection.C: ^reflection:method usage documented
           length  
   2016-09-22  moko
         * src/classes/mail.C: - check from before get message.cstr  
           * src/: classes/classes.vcproj, types/types.vcproj: we need RTTI as
 2009-10-02  misha            we use 'dynamic_cast' on polymorphic type 'Value'. Without it
             compile warning and GPF occures on VS2003 (related to feature
         * tests/233.html: - test for image.font, image.length, image.text            #1087)
           with text in utf-8 were added  
           * tests/: 350.html, results/350.processed: test added for
         * src/main/pa_common.C: - use pa_malloc_atomic instead of new            $.encloser[] support in ^table::create (related to feature #11)
   
         * buildall-with-xml, buildall-without-xml: - comment about gc          * src/classes/table.C: another minor fix (related to feature #11)
           version for freebsd 4 was added  
   2016-09-21  moko
 2009-10-01  misha  
           * src/include/pa_config_fixed.h: vs2015 compilation fixes
         * src/main/pa_exec.C: - bugfix: allocate a bit more (for  
           terminator) - read_pipe were slightly optimized          * src/: classes/curl.C, classes/file.C, classes/hash.C,
             classes/json.C, classes/string.C, classes/table.C,
 2009-09-28  misha            classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
             main/pa_common.C, main/pa_http.C, main/pa_request.C,
         * src/main/: pa_common.C, pa_uue.C: - some magic numbers were            main/pa_sql_driver_manager.C, types/pa_vfile.C, types/pa_vmail.C,
           removed            types/pa_vrequest.C, types/pa_vresponse.C: charsets ->
             pa_charsets, vs2015 warning war
         * src/types/pa_vmail.C: - forgot about space after ':'  
           * src/classes/table.C: vs2015 warning war
         * src/types/pa_vmail.C: - escape filenames while preparing mail  
           body - small simplifications          * src/types/pa_vdate.C: vs2015 warning war
   
         * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode now has          * src/main/: pa_common.C, pa_globals.C: vs2015 compilation fixes
           inout params like pa_base64  
           * src/targets/cgi/parser3.vcproj: wsock32 -> ws2_32.lib (winsock 1
         * src/: types/pa_vmail.C, types/pa_vmail.h, classes/mail.C: - new            -> winsock 2) for vs2015 compatibility (getaddrinfo functions)
           option $.debug-print(1) was added to mail:send - changes for  
           using uue_encode which uses less memory          * src/main/pa_common.C: vs2015 compilation fixes
   
         * src/main/pa_common.C: - pa_base64_encode uses less memory now          * src/: include/pa_common.h, lib/smtp/smtp.C, main/pa_common.C:
             vs2015 compilation fixes
         * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode reduces less  
           memory now          * src/main/pa_charset.C: vs2015 warning war
   
 2009-09-26  misha          * src/: classes/file.C, types/pa_wwrapper.h: vs2015 warning war
   
         * src/types/pa_vmail.C: - default encoding now is base64          * src/main/pa_charset.C: vs2015 warning war
   
         * buildall-with-xml: - moving to libxml 2.7.5 and libxslt 1.1.26          * src/types/: pa_wcontext.h, pa_vmethod_frame.h: vs2015 warning war
   
 2009-09-25  misha          * src/types/pa_vdate.C: vs2015 compilation fix
   
         * src/types/pa_vmail.C: - capitalization of headers was added to          * src/: include/pa_memory.h, main/pa_memory.C: VS2015 warning war
           sending mail as well  
           * src/: lib/json/pa_json.C, classes/mail.C, classes/string.C:
         * buildall-with-xml: - catalog package was removed from libxml            VS2015 compilation fixes
   
         * src/main/pa_xml_io.C: - fix in removing file:// protocol for          * src/classes/table.C: minor fix (related to feature #11)
           win32 absolute path  
           * tests/results/282.processed: no longer skipping extra enclosers
         * src/include/pa_common.h: - one more capitalized header was added            (related to feature #11)
   
 2009-09-22  misha          * src/classes/table.C: minor fix + no longer skipping extra
             enclosers (related to feature #11)
         * INSTALL: - comment about building just httpd binary while  
           building apache module was added          * src/classes/table.C: minor optimization (related to feature #11)
   
 2009-09-21  misha          * src/classes/table.C: minor fix and optimization (related to
             feature #11)
         * buildall-with-xml: - moving to the latest versions of xml libs:  
           libxml 2.7.4 and libxslt 1.1.25  2016-09-20  moko
   
 2009-09-19  misha          * tests/: 353.html, results/353.processed: test for
             PC.cclass->is_vars_local() check in one_big_piece in ^process[]
         * tests/231.html: - test for encoding cookie in win-1251            added (related to bug #1090)
   
 2009-09-18  misha          * src/main/compile.y: PC.cclass->is_vars_local() check added for
             one_big_piece (fixes bug #1090)
         * tests/: 224.html, 224.p: - tests for ^reflection:fields[class or  
           object] were added          * tests/: 229.html, results/229.processed: code coverage tests
   
         * operators.txt: - info about method ^reflection:fields[class or          * src/classes/op.C: bugfix: no more GPF if ^process[$context] (no
           object] was added            body) was called
   
         * src/classes/reflection.C: - method ^reflection:fields[class or          * src/classes/op.C: whitespace
           object] was added  
           * tests/: 323.html, results/323.processed: test for code junction
         * src/types/: pa_value.h, pa_vclass.C, pa_vclass.h, pa_vobject.h: -            should not be returned by ^reflection:class, ^reflection:base
           methods get_fields were added  
           * src/classes/reflection.C: bugfix: code junction should not be
         * tests/232.html: - tests for @GET[name]            returned by ^reflection:class, ^reflection:base
   
         * src/classes/table.C: - some changes in handling hash-options for          * tests/: 323.html, 352.html, results/352.processed: no more
           creare, join and locate            exception for ^reflection:method[class;no-such-method] (related
             to feature #1087)
         * src/types/: pa_vobject.C, pa_vobject.h: - @GET[] now could be  
           defined with option: the type of requested value          * src/classes/reflection.C:
             ^reflection:method[class;no-such-method] : exception -> void
 2009-09-17  misha            (related to feature #1087)
   
         * tests/212.html: - tests for .pattern and .options were added          * src/include/pa_request.h: request::write_value added to allow
             write value without convertion (related to issue #1091)
         * src/types/: pa_vregex.C, pa_vregex.h: - $regex.pattern and  
           $regex.options were added  2016-09-19  moko
   
 2009-09-11  misha          * src/main/pa_random.C: windows build fix
   
         * tests/: 223.html, 223_utf8.txt, 223_win1251.txt: - test was          * src/types/pa_vhash.h: warning war
           rewrited. it checks not just one case of sending cookies during  
           file::load[http], but also sending headers and fields (including  2016-09-14  moko
           files)  
           * tests/: 352.html, 552.html, results/352.processed,
 2009-09-10  misha            results/552.processed: test for ^reflection:method[] extension
             added (related to feature #1087)
         * src/main/untaint.C: - workaround in file-spec lang for old Macs  
           was removed => now parser can open files with Russian 'r' in          * tests/: 552.html, results/552.processed: test for
           filename            ^reflection:method[] extension added (related to feature #1087)
   
         * src/main/untaint.C: - bugfix: client charset whould be analized          * src/classes/reflection.C: compatibility issue fixed, VClass
           while escaping cookies but now source charset            dynamic_cast check added (related to feature #1087)
   
         * src/main/pa_http.C: - bugfix: the values of http headers didn't          * tests/: 351.html, results/351.processed: test for @auto[]
           ^tainted[uri] so it was possible to make request with incorrect            inheritance bug diring ^process[] added (related to bug #1088)
           http header  
           * src/: classes/op.C, main/pa_request.C,
         * src/main/pa_http.C: - capitalization of http headers during            types/pa_vstateless_class.C: set_method now checks for @auto[] to
           file::load[http was slightly changes - bugfix: all headers which            disable it inheritance during ^process (fixes bug #1088)
           parser sends during file::load[http should be transcoded and only  
           then escaped          * src/classes/reflection.C: ^reflection:method[$class:method;$self]
             added (implements feature #1087)
         * src/main/untaint.C: - a bit more comments were added  
   2016-09-13  moko
         * src/classes/: file.C, string.C: - types where changes (minus 2  
           warnings)          * tests/: 349.html, results/auto.p: test for objects prototyping
             added and $OBJECT-PROTOTYPE(false) is used for old tests (related
         * src/include/pa_common.h: - 2 capitalized strings for making http            to feature #1086)
           headers during file::load[http were added  
           * src/: main/pa_request.C, types/pa_vclass.C, types/pa_vclass.h,
 2009-09-08  misha            types/pa_vobject.C: objects now are not class instances, but have
             class as prototype, can be overridden by $OBJECT-PROTOTYPE(false)
         * operators.txt: - changes in file.save and string.save were added            in @conf (implements feature #1086)
   
         * tests/: 230.html, 230.txt: - tests for checking options in  2016-09-08  moko
           file.save and string.save were added  
           * src/: classes/file.C, classes/mail.C, classes/string.C,
         * src/main/pa_request.C: - http headers names, which are passed to            classes/table.C, main/pa_http.C, main/pa_string.C,
           SAPI::add_header_attribute are lowercased now (it'll be            include/pa_string.h: cleanup: string::split limit argument
           capitalized in that method)            removed as no longer required, pos_after no longer reference
             (related to feature #11)
         * src/: types/pa_vfile.C, types/pa_vfile.h, classes/file.C,  
           classes/string.C: - file_write accepts Request_charsets and asked          * src/classes/table.C, tests/results/348.processed: now exception
           charset and cound transcode content before writing - string.save            is rised when invalid option is passed to ^table::create[]
           and file.save have option $.charset now  
           * tests/: 282.cfg, 282.html, results/282.processed: more code
         * src/: include/pa_common.h, main/pa_common.C, classes/table.C,            coverage tests
           classes/xdoc.C: - file_write accepts Request_charsets and asked  
           charset and cound transcode content before writing          * tests/: 348.html, results/348.processed: code coverage tests
             added
         * src/include/pa_exception.h: - new exception comment string was  
           defined          * tests/: 348.html, results/348.processed: generic ^table::create[]
             tests
 2009-09-07  misha  
           * tests/: 035.html, results/035.processed, results/272.processed:
         * src/main/compile.y: - grammar $name\ name stops now for regex            tests updated after $.encloser[] support for ^table::create
           sub-pattern\s            implementation (related to feature #11)
   
 2009-09-04  misha          * src/classes/table.C: $.encloser[] support for ^table::create
             finally added (implements feature #11)
         * src/main/pa_http.C: - capitalization of http headers during  
           file::load[http was implemented  2016-09-07  moko
   
 2009-09-03  misha          * src/include/pa_string.h: added StringSplitHelper as friend
             (related to feature #11)
         * src/: main/pa_common.C, main/pa_http.C, main/pa_request.C,  
           include/pa_common.h, include/pa_sapi.h, types/pa_vcookie.C,          * src/include/pa_string.h: body and langs now protected, not
           types/pa_vmail.C, targets/cgi/parser3.C,            private to allow inheritance (related to feature #11)
           targets/isapi/parser3isapi.C: - back to storing response http  
           headers in lowercase - capitalize them during output          * src/classes/table.C: lsplit optimized before cloning for
             ^table::create with $.encloser[] (related to feature #11)
 2009-08-31  misha  
           * src/classes/table.C: optimizaion: TableControlChars.separators
         * src/classes/table.C: - allow call with any brackets (it could be            added and used (related to feature #11)
           useful in methods with explict result declaration)  
           * src/classes/table.C: spelling:
         * src/classes/table.C: - bugfix: ^table.sort{...} doesn't work  
           correctly if $request:charset==koi8-r            TableSeparators -> TableControlChars column -> separator
             separators -> control_chars
 2009-08-30  misha  
   2016-09-06  moko
         * src/: include/pa_common.h, main/pa_request.C: - http headers were  
           changed: content-type => Content-type and so on          * src/main/pa_string.C: whitespace
   
         * src/classes/file.C, src/include/pa_common.h,          * src/main/pa_string.C: whitespace
           src/include/pa_request.h, src/main/pa_http.C,  
           src/main/pa_request.C, src/types/pa_vcookie.C,  2016-09-01  moko
           src/types/pa_vmail.C, src/targets/cgi/parser3.C,  
           src/targets/isapi/parser3isapi.C, tests/results/001.processed,          * tests/: 347-curl.html, results/347-curl.processed: to make tests
           tests/results/002.processed, tests/results/003.processed,            results OS-independent
           tests/results/004.processed, tests/results/005.processed,  
           tests/results/006.processed, tests/results/007.processed,          * src/: include/pa_http.h, main/pa_http.C: typo bugfix for clang
           tests/results/008.processed, tests/results/009.processed,            compiler (related to feature #1042)
           tests/results/010.processed, tests/results/011.processed,  
           tests/results/012.processed, tests/results/013.processed,  2016-08-15  moko
           tests/results/014.processed, tests/results/015.processed,  
           tests/results/016.processed, tests/results/017.processed,          * src/include/pa_string.h: whitespace
           tests/results/018.processed, tests/results/019.processed,  
           tests/results/020.processed, tests/results/021.processed,          * src/classes/table.C: whitespace
           tests/results/022.processed, tests/results/023.processed,  
           tests/results/024.processed, tests/results/025.processed,  2016-08-05  moko
           tests/results/026.processed, tests/results/027.processed,  
           tests/results/028.processed, tests/results/029.processed,          * tests/: 344.html, results/344.processed: test for
           tests/results/030.processed, tests/results/031.processed,            ^hash::create[$file] added (related to feature #1075)
           tests/results/032.processed, tests/results/033.processed,  
           tests/results/034.processed, tests/results/035.processed,          * src/types/: pa_vfile.h, pa_vmail.C: ^hash::create[$file] now
           tests/results/036.processed, tests/results/037.processed,            supported (implements feature #1075)
           tests/results/038.processed, tests/results/039.processed,  
           tests/results/040.processed, tests/results/041.processed,  2016-08-04  moko
           tests/results/042.processed, tests/results/043.processed,  
           tests/results/044.processed, tests/results/045.processed,          * tests/: 341.html, results/341.processed: more code coverage tests
           tests/results/046.processed, tests/results/047.processed,  
           tests/results/048.processed, tests/results/049.processed,          * tests/: 346-curl.html, results/346-curl.processed: more code
           tests/results/050.processed, tests/results/051.processed,            coverage tests for curl
           tests/results/052.processed, tests/results/053.processed,  
           tests/results/054.processed, tests/results/055.processed,          * tests/: 346-curl.html, results/346-curl.processed: more code
           tests/results/056.processed, tests/results/057.processed,            coverage tests for curl
           tests/results/058.processed, tests/results/059.processed,  
           tests/results/060.processed, tests/results/061.processed,          * tests/: 223-curl.html, 223.html, results/223-curl.processed,
           tests/results/062.processed, tests/results/063.processed,            results/223.processed: code coverage tests: $.form[ $.table[] ]
           tests/results/064.processed, tests/results/065.processed,            test added
           tests/results/066.processed, tests/results/067.processed,  
           tests/results/068.processed, tests/results/069.processed,          * tests/: 223-curl.html, results/223-curl.processed: more code
           tests/results/070.processed, tests/results/071.processed,            coverage tests for curl
           tests/results/072.processed, tests/results/073.processed,  
           tests/results/074.processed, tests/results/075.processed,  2016-08-03  moko
           tests/results/076.processed, tests/results/077.processed,  
           tests/results/078.processed, tests/results/079.processed,          * src/classes/curl.C: dlink(curl_library) now called not once, but
           tests/results/080.processed, tests/results/081.processed,            until it will be loaded, allowing to find existing library.
           tests/results/082.processed, tests/results/083.processed,  
           tests/results/084.processed, tests/results/085.processed,          * tests/: 346-curl.html, 347-curl.html, results/346-curl.processed,
           tests/results/086.processed, tests/results/087.processed,            results/347-curl.processed: more code coverage tests for curl
           tests/results/088.processed, tests/results/089.processed,  
           tests/results/090.processed, tests/results/091.processed,          * tests/: 339-curl.html, 339.html, 346-curl.html, Makefile,
           tests/results/092.processed, tests/results/093.processed,            results/339-curl.processed, results/346-curl.processed: curl
           tests/results/094.processed, tests/results/095.processed,            functionality tests
           tests/results/096.processed, tests/results/097.processed,  
           tests/results/098.processed, tests/results/099.processed,  2016-08-02  moko
           tests/results/100.processed, tests/results/101.processed,  
           tests/results/102.processed, tests/results/103.processed,          * tests/: 339.html, results/339.processed: test for tables in
           tests/results/104.processed, tests/results/105.processed,            ^file:load[] and ^curl:load[] (commented) added (related to
           tests/results/106.processed, tests/results/107.processed,            feature #1042)
           tests/results/108.processed, tests/results/109.processed,  
           tests/results/110.processed, tests/results/111.processed,          * tests/: 345.html, results/345.processed: code coverage tests for
           tests/results/112.processed, tests/results/113.processed,            file class
           tests/results/114.processed, tests/results/115.processed,  
           tests/results/116.processed, tests/results/117.processed,          * tests/: 344.html, results/344.processed: code coverage tests
           tests/results/118.processed, tests/results/119.processed,  
           tests/results/120.processed, tests/results/121.processed,          * tests/: 344.html, results/344.processed: mdate removed from
           tests/results/122.processed, tests/results/123.processed,            output
           tests/results/124.processed, tests/results/125.processed,  
           tests/results/126.processed, tests/results/127.processed,          * src/classes/file.C: minor bugfix: is_text should be taked from
           tests/results/128.processed, tests/results/129.processed,            fcontent.is_text_mode() if not set (related to feature #1061)
           tests/results/130.processed, tests/results/131.processed,  
           tests/results/132.processed, tests/results/133.processed,          * tests/: 344.html, results/344.processed: more tests
           tests/results/134.processed, tests/results/135.processed,  
           tests/results/136.processed, tests/results/138.processed,          * tests/: 343.html, 344.html, results/343.processed,
           tests/results/139.processed, tests/results/140.processed,            results/344.processed: tests for ^file::create[ $.from-charset
           tests/results/141.processed, tests/results/142.processed,            and $.to-charset ] (related to feature #1061)
           tests/results/143.processed, tests/results/144.processed,  
           tests/results/145.processed, tests/results/146.processed,          * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
           tests/results/147.processed, tests/results/148.processed,            aset_text_mode argument optimized
           tests/results/149.processed, tests/results/150.processed,  
           tests/results/151.processed, tests/results/152.processed,          * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
           tests/results/153.processed, tests/results/154.processed,            checkBOM now used in detect_binary_content (related to feature
           tests/results/155.processed, tests/results/156.processed,            #1061)
           tests/results/157.processed, tests/results/158.processed,  
           tests/results/159.processed, tests/results/160.processed,          * src/main/pa_request.C: load_charset no longer required to_upper
           tests/results/161.processed, tests/results/162.processed,  
           tests/results/163.processed, tests/results/164.processed,          * src/types/pa_vfile.C: bugfix: ^file::create[$text_file;...] now
           tests/results/165.processed, tests/results/166.processed,            preserves original file mode (if no $.mode specified)
           tests/results/167.processed, tests/results/168.processed,  
           tests/results/169.processed, tests/results/170.processed,          * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
           tests/results/171.processed, tests/results/172.processed,            ^file::create now supports $.from-charset[] and $.to-charset
           tests/results/173.processed, tests/results/174.processed,            options (implements feature #1061), automatic transcode is done
           tests/results/175.processed, tests/results/176.processed,            if text file is created from binary file and charset is detected.
           tests/results/177.processed, tests/results/178.processed,  
           tests/results/179.processed, tests/results/180.processed,  2016-07-30  moko
           tests/results/181.processed, tests/results/182.processed,  
           tests/results/183.processed, tests/results/184.processed,          * src/classes/table.C: ^t.hash[..;] now supported (related to
           tests/results/185.processed, tests/results/186.processed,            feature #1057)
           tests/results/187.processed, tests/results/188.processed,  
           tests/results/189.processed, tests/results/190.processed,          * tests/: 341.html, results/341.processed: test for ^t.hash[..;]
           tests/results/191.processed, tests/results/192.processed,            added (related to feature #1057)
           tests/results/193.processed, tests/results/194.processed,  
           tests/results/195.processed, tests/results/196.processed,          * tests/: 286.html, results/286.processed: code tests coverage
           tests/results/197.processed, tests/results/198.processed,  
           tests/results/199.processed, tests/results/200.processed,  2016-07-29  moko
           tests/results/201.processed, tests/results/202.processed,  
           tests/results/203.processed, tests/results/204.processed,          * src/classes/table.C: table size should be checked inside menu and
           tests/results/205.processed, tests/results/206.processed,            foreach (related to feature #858)
           tests/results/207.processed, tests/results/208.processed,  
           tests/results/209.processed, tests/results/210.processed,          * src/: classes/curl.C, classes/file.C, classes/string.C,
           tests/results/211.processed, tests/results/212.processed,            classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
           tests/results/213.processed, tests/results/214.processed,            main/pa_common.C, main/pa_http.C, main/pa_sql_driver_manager.C,
           tests/results/215.processed, tests/results/216.processed,            types/pa_vmail.C, types/pa_vrequest.C, types/pa_vresponse.C:
           tests/results/217.processed, tests/results/218.processed,            charsets.get now does str_upper inside (related to feature #1061)
           tests/results/219.processed, tests/results/220.processed,  
           tests/results/221.processed, tests/results/222.processed,          * tests/: 342.html, results/342.processed: more code coverage tests
           tests/results/223.processed, tests/results/224.processed,  
           tests/results/225.processed, tests/results/226.processed,          * tests/: 342.html, outputs/342.processed: table menu code coverage
           tests/results/227.processed, tests/results/228.processed,            + foreach test added (related to feature #858)
           tests/results/229.processed: - http headers were changed:  
           content-type => Content-type and so on          * tests/: 341.html, results/341.processed: tests for
             ^table.hash[]{code} added + code coverage tests (related to
 2009-08-27  misha            feature #1057)
   
         * src/: main/pa_random.C, include/pa_random.h,          * src/: include/pa_common.h, classes/table.C: ^table.hash[]{code as
           targets/cgi/parser3.C: - year was updated :)            value} support (implements feature #1057)
   
 2009-08-26  misha          * src/classes/table.C: whitespace
   
         * tests/: 224.html, 224.p: - test for creating of parser object  2016-07-28  moko
           using constructor without params - little bugfix in test  
           * src/: classes/curl.C, types/pa_vfile.C: curl now saves filename
         * src/main/compile_tools.h: - bugfix: should't call autouse while            from URL, if not specified query string removed from url-based
           checking existed class while processing partial option            filenames in ^curl:load[] and ^file::load[] (related to feature
             #1042)
         * src/classes/reflection.C: - bugfix: core when creating object  
           with reflection and constructor doesn't have params  2016-07-27  moko
   
 2009-08-24  misha          * tests/: 340.html, results/340.processed: test for
             transcode_text_result=false added (related to issue #1042)
         * tests/229.html: - tests for checking the number of parameters  
           were added  2016-07-26  moko
   
         * src/types/: pa_value.C, pa_vmethod_frame.h: - bugfix: the actual          * src/types/pa_vfile.C: file name should not be empty (if file path
           number of method's parameters wasn't checked correctly (the bug            is folder and ends with /) (related to feature #1042)
           was introduced in 3.4.0)  
           * src/main/pa_http.C: whitespace optimizaion
 2009-08-22  misha  
           * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
         * src/main/pa_http.C: - ^file::load[http://...;$.body[]] : $.body            main/pa_common.C, main/pa_http.C: ^curl:load[] now support
           transcoded, but tainted pieces are escaped only when            multiple headers, ^file::load supports headers transcoding
           content-type==url-encoding            (implements feature #1042)
   
         * tests/228.html: - test for checking  2016-07-25  moko
           ^file::load[http://...;$.body[]]  
           * src/include/pa_common.h: PA_DEFAULT added
         * src/types/: pa_vform.C, pa_vform.h: - bugfix: attempt to detect  
           post charset was too early (charsets is empty at this moment)  2016-07-22  moko
   
 2009-08-21  misha          * tests/: 338.html, results/338.processed: test for
             $date.field(value) added (related to feature #1066)
         * src/: include/pa_string.h, main/pa_http.C, main/pa_request.C,  
           main/untaint.C: - some fixes with transcode+untaint          * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
             $date.field(value) now supported for y/m/d/h/m/s (implements
 2009-08-15  misha            feature #1066)
   
         * src/main/pa_exec.C: - number of argv in file::exec/cgi on unix  2016-07-21  moko
           was increaced to 100 (was 50)  
           * src/: classes/file.C, classes/image.C, include/pa_common.h,
         * tests/227.html: - test for checking overriding properties in            main/pa_common.C: pa_common.h: File_read_action: fname, as_text
           static classes was added            arguments removed; image.C - absolute path shown in exception
             (implements feature #1071)
         * tests/: 226.html, 226.p: - test for @autoload[] was added  
           * tests/: 235.html, results/235.processed: test and test result
         * src/: include/pa_request.h, main/compile.y, main/compile_tools.h,            updated after static boundary in mail and Errors-To: mail header
           main/execute.C, main/pa_request.C, classes/reflection.C: -            removed (related to feature #1047)
           autouse was implemented  
           * src/: classes/math.C, include/pa_random.h, main/pa_http.C,
 2009-08-14  misha            main/pa_random.C, types/pa_vmail.C: get_uuid_boundary() added and
             used, static boundary in mail removed, Errors-To: mail header
         * src/classes/reflection.C: - outdated checkout was removed            removed (implements feature #1047)
   
         * src/classes/reflection.C: - optimization - method ^dynamical was  2016-07-20  moko
           added.  
           * src/: classes/reflection.C, types/pa_vstateless_class.h:
         * src/: types/pa_value.h, types/pa_vmethod_frame.h,            equest.classes(): Value -> VStateless_class, part 3 (related to
           types/pa_vstateless_class.h, main/execute.C: - optimization            issue #1051)
   
         * src/types/pa_vclass.C: - exception if base on sytem class          * src/: classes/reflection.C, include/pa_request.h, main/execute.C:
             request.classes(): Value -> VStateless_class, part 2 (related to
 2009-08-12  misha            issue #1051)
   
         * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,          * tests/results/: 224.processed, 323.processed: classes without
           pa_vstateless_class.h: - little optimisation            methods should not be methoded (related to issue #1051)
   
 2009-08-11  misha          * src/: classes/reflection.C, include/pa_request.h, main/compile.y,
             main/compile_tools.h, main/pa_request.C: request.classes(): Value
         * tests/224.html: - method_params => method_info - checking for            -> VStateless_class, part 1 (related to issue #1051)
           $.inherited  
           * tests/: 337.html, results/337.processed: test for
         * src/classes/reflection.C, operators.txt: - method method_params            ^reflection:fields_reference[] and VHashReference class added
           was renamed to method_info and now it returns class name, if            (related to feature #1072)
           method was defined in ancestor  
           * src/: classes/hash.C, classes/json.C, classes/reflection.C,
         * tests/225.html: - tests for cheching properties in hierarhical            types/pa_value.h, types/pa_vhash.h, types/pa_vobject.h: VHashBase
           classes were added            and VHashReference added, allowing ^reflection:fields_reference[]
             implementation (closes feature #1072)
         * src/: types/pa_property.h, types/pa_vclass.C, types/pa_vclass.h,  
           types/pa_vstateless_class.C, types/pa_vstateless_class.h,  2016-07-19  moko
           main/compile.y, main/execute.C, classes/classes.C: - problems  
           with properties in new classes implementation were fixed          * tests/: 323.html, results/323.processed: we want to see
             "methoded"
 2009-08-10  misha  
           * tests/: 336.html, results/336.processed: test for $BASE:property
         * src/main/execute.C: - now constructor shouldn't be defined in            and ^BASE:method (OP_VALUE__GET_BASE_CLASS) added (related to bug
           class. it could be defined in parent.            #1059)
   
 2009-08-09  misha          * src/: include/pa_opcode.h, main/compile.y, main/execute.C,
             types/pa_vstateless_class.h, types/pa_wcontext.h: no more
         * src/classes/reflection.C: - ^reflection:methods doesn't return            somebody_entered_some_class, $BASE:property works again,
           base's methods            ^BASE:method[] bugs fixed (fixes bug #1059)
   
 2009-08-08  misha  2016-07-14  moko
   
         * src/: classes/classes.h, classes/date.C, classes/file.C,          * tests/: 335.html, results/335.processed: test for feature #1055
           classes/form.C, classes/hash.C, classes/hashfile.C,            added
           classes/image.C, classes/mail.C, classes/op.C,  
           classes/reflection.C, classes/regex.C, classes/string.C,          * src/classes/hash.C: bugfix: $._default was not copied if empty
           classes/table.C, classes/xdoc.C, classes/xnode.C,            feature: ^hash.contains[_default] added (implements feature
           classes/xnode.h, include/pa_hash.h, main/execute.C,            #1055)
           main/pa_http.C, main/pa_request.C, targets/cgi/parser3.C,  
           types/pa_method.h, types/pa_property.h, types/pa_value.C,  2016-07-13  moko
           types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,  
           types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,          * src/classes/reflection.C: bugfix: ^reflection:def[class;name]
           types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.C,            should not call @autouse (http://www.parser.ru/forum/?id=83480)
           types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,  
           types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,  2016-07-05  moko
           types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,  
           types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,          * src/classes/hash.C: Optimization: HashStringValue::Iterator used
           types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.h,            in ^hash.foreach (related to feature #1073)
           types/pa_vobject.C, types/pa_vobject.h, types/pa_vproperty.C,  
           types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,  2016-07-04  moko
           types/pa_vresponse.C, types/pa_vresponse.h,  
           types/pa_vstateless_class.C, types/pa_vstateless_class.h,          * tests/: 134.html, 281.html, results/134.processed,
           types/pa_vstateless_object.h, types/pa_vstatus.C,            results/281.processed: tests updated after hash blocking removed
           types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,            (related to feature #1073)
           types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,  
           types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,          * src/: classes/hash.C, include/pa_hash.h, types/pa_vhash.h: hash
           types/pa_wwrapper.h, types/types.vcproj: - new classes            no longer blocks on change during foreach (implements feature
           implementation            #1073)
   
         * buildall-with-xml, buildall-without-xml: - gc has a bug if  2016-06-17  moko
           USE_MUNMAP is used. so it is disabled as a workaround.  
           * tests/: 330.html, results/330.processed: try exception source
 2009-08-05  misha            test added (related to bug in #1062)
   
         * src/: main/pa_common.C, include/pa_common.h: - not needed          * tests/: 334.html, results/334.processed: Exception stack trace
           parameter was removed            test added (related to bug in $1062)
   
         * src/main/pa_http.C: - bugfix: error was during detecting          * src/classes/op.C: Exception trace now correctly restored and
           content-type of file which was loaded by http            errors reported (related to bug #1062)
   
 2009-08-01  misha  2016-05-25  moko
   
         * src/main/execute.C, src/main/compile.y, src/include/pa_opcode.h,          * src/main/compile.y: minor cleanup + beauty
           src/types/pa_wcontext.h, src/types/pa_wwrapper.h, INSTALL: -  
           OPTIMIZE_BYTECODE_CONSTRUCT_OBJECT and OPTIMIZE_CONSTRUCT_OBJECT  2016-05-24  moko
           can't be disabled with defines any longer  
           * tests/: 333.html, results/333.processed: more exceptions testing
 2009-07-29  misha  
           * tests/: 332.html, results/332.processed: test for FIELDS_SYMBOL,
         * src/classes/reflection.C, tests/results/224.processed: - for            _DEFAULT_SYMBOL, CALLER_SYMBOL, SELF_SYMBOL added (related to
           native methods with any call type now returned empty call_type            features #1056, #1026)
           value  
           * src/: classes/json.C, include/pa_symbols.h, main/pa_symbols.C,
         * src/: classes/hash.C, classes/hashfile.C, classes/op.C,            types/pa_vhash.C, types/pa_vhash.h, types/pa_vtable.C,
           classes/table.C, include/pa_hash.h, include/pa_request.h,            types/pa_vtable.h: FIELDS_SYMBOL, _DEFAULT_SYMBOL added and used
           main/pa_request.C: - break in cycles was optimized            (implements feature #1056)
   
         * INSTALL: - more defines were described          * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
             main/execute.C, main/pa_symbols.C, types/pa_vjunction.C,
 2009-07-28  misha            types/pa_vstateless_class.C, types/pa_vstateless_class.h:
             CLASS_SYMBOL, CLASS_NAME_SYMBOL added and used (related to
         * operators.txt: - some changes in information about reflection            feature #1026)
           class  
           * src/: classes/reflection.C, include/pa_symbols.h, main/compile.y,
         * tests/: 224.html, 224.p: - tests for reflection class            main/compile_tools.C, main/compile_tools.h, main/pa_symbols.C,
             types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: Symbols now
         * src/classes/reflection.C: - some bugs were fixed, method classes            have *_SYMBOL naming convention. STATIC_SYMBOL, DYNAMIC_SYMBOL,
           was added, refactoring            LOCALS_SYMBOL, PARTIAL_SYMBOL, REM_SYMBOL where added (related to
             feature #1026)
 2009-07-26  misha  
           * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
         * src/classes/classes.vcproj: - reflection class wass added to            main/pa_globals.C, main/pa_symbols.C, types/pa_vmethod_frame.C,
           project            types/pa_vmethod_frame.h, types/pa_vstateless_class.C:
             SYMBOLS_CACHING define implemented (related to feature #1026)
         * operators.txt: - information about reflection class was added  
           * src/main/main.vcproj: + ps_symbols
         * src/classes/reflection.C: - class was redesigned  
           * src/: include/Makefile.am, include/pa_string.h,
 2009-07-24  misha            include/pa_symbols.h, main/Makefile.am, main/compile.tab.C,
             main/compile.y, main/compile_tools.C, main/pa_symbols.C,
         * src/classes/: Makefile.am, reflection.C: - class reflection was            types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
           added            types/pa_vstateless_class.C: initial implementation for symbols
             cache (related to feature #1026)
         * src/types/pa_vstateless_class.h: - method for reflection method's  
           in classes was added          * src/: include/pa_common.h, main/pa_http.C: minor cleanup
   
 2009-07-22  misha          * src/main/pa_globals.C: minor cleanup
   
         * src/main/compile_tools.h: - bugfix: $object.$var was  2016-05-19  moko
           over-optimized. it failed if $object1.$object2.field  
           * src/types/pa_vhash.h: minor optimization: ^hash.fields[] removed
 2009-07-16  misha            (related to feature #1046)
   
         * src/: lib/cord/cordbscs.c, lib/cord/cordprnt.c,          * tests/: 331.html, results/331.processed: test for
           lib/cord/cordxtra.c, lib/cord/include/cord.h,            BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE removal added
           include/pa_string.h, main/pa_string.C: - optimization: CORD_str,            (related to feature #1051)
           CORD_to_const_char_star, CORD_to_char_star and CORD_substr have  
           one more arg: length of cord          * src/main/compile.y:
             BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE error removed
 2009-07-15  misha            (implements feature #1054)
   
         * src/main/pa_http.C: - bugfix: $.cookies' values should be force  2016-05-18  moko
           tainted in ^file::load[http://...;$.cookies[]]  
           * src/types/pa_vtable.C, tests/results/324.processed: no more
         * src/classes/: op.C, regex.C, string.C: - new string with            "column not found" exception for ^table.no-such-method[] (related
           exception was used            to feature #1046)
   
         * src/include/pa_exception.h: - new string with exception was added          * tests/: 261.html, results/261.processed: test added and updated
             after feature #1046 implementation
         * tests/223.html: - test for checking cookie-encoding during  
           ^file::load[http was added          * src/: classes/string.C, types/pa_value.C, types/pa_vstring.h,
             types/pa_vvoid.h: $string.anything works for whitespace strings,
         * tests/: 221.html, 222.html: - tests for checking type of            ^string.contains added for hash compatibility, $string.method no
           $table.fields.field were added            longer returns stting method (implements feature #1046)
   
         * src/types/pa_vtable.C: - not used var decl was removed  2016-05-12  moko
   
         * src/include/pa_string.h: - use cached string length in Body::mid.          * src/classes/curl.C: content-type response header no longer
           it improves speed of match with brackets in pattern            ignored (fixes issue #1045)
   
         * src/lib/cord/include/cord.h: - make CORD_substr_checked available          * tests/: 330.html, results/330.processed: test for incomplete
           outside            finally execution when break occures added (related to issue
             #1077)
 2009-07-14  misha  
           * src/classes/op.C: bugfix: Request::skip reset is called before
         * src/types/pa_vtable.C: - $table.fields.a return string even if            executing catch and finally code (fixes issue #1062)
           column is empty (sometime returned void) - $table.fields was  
           added for nameless tables  2016-05-11  moko
   
         * src/targets/cgi/getopt.c: - one warning resolved          * tests/: 329.html, results/329.processed: test for invalid
             ^break[] behavour added (bug #1077)
         * src/main/pa_string.C: - potentian bug fixed  
           * src/classes/op.C: try_catch code cleanup (related to bug #1062)
         * src/classes/op.C: - small optimization in taint/untaint  
   2016-04-24  moko
 2009-07-13  misha  
           * src/types/pa_vstateless_class.h: warning war
         * tests/156.html: - test for $cookie[...$.httponly(false)...] was  
           added  2016-04-17  moko
   
         * src/types/pa_value.C: - bugfix: $cookie[...$.httponly(false)...]          * tests/: 328.html, results/328.processed: test for
           souldn't add the attribut to output            ^break(condition) and ^continue(condition) (related to feature
             #1063)
 2009-07-11  misha  
           * src/classes/op.C: ^break(condition) and ^continue(condition)
         * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -            implemented (feature #1063)
           stack size was increaced to 2MB (default=1MB)  
   2016-04-12  moko
 2009-07-08  misha  
           * tests/results/280.processed: ordered hash now used for class
         * src/main/pa_string.C: - link to UTF-8 description was added            methods and properties (test results updated for feature #1069)
   
         * src/include/pa_hash.h: - hash keeps element's order in more          * src/classes/: xdoc.C, xnode.C: xnode_class initialization moved
           places (ex: ._keys[])            to xdoc.C as under FreeBSD it was inited after and inheritance
             failed (related to issue #1051)
         * tests/220.html: - test for checking order of elements in hash in  
           foreach was added          * tests/: 320.html, results/320.processed: xdoc and xnode methods
             are printed to check inheritance (related to feature #1051)
         * tests/172.html: - small changes in printing hash  
   2016-04-09  moko
         * tests/129.html: - small changes in printing hash  
           * tests/results/320.processed: ordered hash now used for class
         * src/: include/pa_common.h, include/pa_hash.h,            methods and properties (test results updated for feature #1069)
           include/pa_request.h, types/pa_value.h, types/pa_vmethod_frame.C,  
           types/pa_vmethod_frame.h: - hash now keeps order of elements          * src/types/pa_vstateless_class.h: ordered hash now used for class
             methods and properties (implements feature #1069)
         * tests/014.html: - small changes in printing hash  
           * src/types/: pa_vconsole.h, pa_vcookie.C, pa_venv.C,
 2009-07-07  misha            pa_vrequest.C, pa_vstatus.C: minor optimization: #ifndef
             OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL returned (related to
         * src/classes/op.C: - new taint language "parser-code" was added            feature #1051)
   
         * tests/219.html: - test for auto untaint parser code in process  2016-04-07  moko
           was added  
           * src/main/execute.C: returned Value in .CLASS case for VJunction
         * src/classes/op.C: - tainted pieces in body of process are            (related to feature #1051)
           auto-untainted now: ^ -> ^^, $ -> ^$ etc.  
           * src/types/: pa_vjunction.C, pa_vmethod_frame.C,
         * src/: include/pa_string.h, main/untaint.C: - new language            pa_vmethod_frame.h, pa_vstateless_class.C, pa_vstateless_class.h:
           L_PARSER_CODE for auto-untaint in process was added            string constants deduplication (related to feature #1051)
   
         * src/: classes/file.C, classes/hash.C, classes/image.C,          * tests/results/224.processed: test result updated (related to
           classes/op.C, classes/string.C, classes/table.C, classes/void.C,            feature #1051)
           classes/xdoc.C, include/pa_string.h, main/pa_charset.C,  
           main/pa_http.C, main/pa_request.C, main/pa_xml_io.C,          * src/: main/execute.C, types/pa_vconsole.h, types/pa_vcookie.C,
           main/untaint.C, types/pa_value.h, types/pa_vhash.h,            types/pa_vcookie.h, types/pa_venv.C, types/pa_venv.h,
           types/pa_vmail.C, types/pa_vobject.h, types/pa_vstring.h: - some            types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vstatus.C,
           code cleanup            types/pa_vstatus.h: classes hash now contains only
             VStateless_class derived objects, .CLASS is also allways
 2009-07-06  misha            VStateless_class derived object (related to feature #1051).
   
         * src/classes/: file.C, hash.C, image.C, mail.C, op.C, string.C,  2016-04-06  moko
           table.C, void.C, xdoc.C: - cstr(params) and cstrm(params) were  
           deleted. taint_cstr[m] and untaint_cstr[m] should be used          * tests/results/323.processed: test result updated after feature
             #1051 implementation
         * src/types/: pa_vcookie.C, pa_vhash.h, pa_vhashfile.C,  
           pa_vimage.C, pa_vmail.C, pa_vobject.h, pa_vregex.C,          * src/: classes/classes.h, classes/op.C, classes/response.C,
           pa_vrequest.C, pa_vstring.h, pa_vvoid.h: - cstr(params) and            classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
           cstrm(params) were deleted. taint_cstr[m] and untaint_cstr[m]            main/pa_request.C, types/pa_vclass.h, types/pa_vform.C,
           should be used            types/pa_vmail.C, types/pa_vmath.C, types/pa_vmemory.h,
             types/pa_vresponse.C, types/pa_vresponse.h,
         * src/main/: pa_charset.C, pa_common.C, pa_exec.C, pa_http.C,            types/pa_vstateless_class.h: base -> methoded_donor for static
           pa_request.C, pa_sql_driver_manager.C, pa_xml_io.C: -            classes, type() moved from VStateless_class to VClass and
           cstr(params) and cstrm(params) were deleted. taint_cstr[m] and            Methoded (implements feature #1051)
           untaint_cstr[m] should be used  
   2016-04-04  moko
         * src/include/pa_string.h: - cstr(params) and cstrm(params) were  
           deleted. taint_cstr[m] and untaint_cstr[m] should be used          * src/: classes/classes.C, include/pa_request.h, main/pa_request.C:
             beauty: put_class added (related to feature #1051)
         * tests/218.html: - test for checking automatic file-spec-taint was  
           added  2016-04-01  moko
   
         * src/: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vmail.C,          * tests/results/: 175.processed, 192.processed, 224.processed,
           types/pa_vregex.C, types/pa_vrequest.C, types/pa_vstring.C,            229.processed, 244.processed, 246.processed, 316.processed: test
           classes/file.C, classes/hash.C, classes/image.C,            results updated as class.type() removed from error messages, only
           classes/string.C, classes/table.C, classes/void.C,            type() left (related to feature #1051)
           classes/xdoc.C: - optimizations and simplification of  
           string.cstr(...)          * src/: classes/classes.C, classes/classes.h, classes/mail.C,
             classes/op.C, classes/reflection.C, main/compile.y,
         * src/: include/pa_string.h, main/untaint.C, main/pa_common.C,            main/compile_tools.h, main/execute.C, main/pa_request.C,
           main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C:            types/pa_value.C, types/pa_vclass.C, types/pa_vclass.h,
           - optimizations and simplification of string.cstr(...)            types/pa_vmethod_frame.h, types/pa_vobject.h,
             types/pa_vstateless_class.h, types/pa_wcontext.C: name() removed
 2009-07-04  misha            from VStateless_class, type() is used instead (related to feature
             #1051)
         * tests/217.html: - test for recursion detection was added  
           * src/classes/mail.C: old logic restored.
         * src/: types/types.vcproj, main/main.vcproj,  
           classes/classes.vcproj, targets/cgi/parser3.vcproj,          * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
           targets/isapi/parser3isapi.vcproj: - RuntimeTypeInfo was removed            classes/classes.h, classes/curl.C, classes/date.C,
           from .vcproj            classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
             classes/hashfile.C, classes/image.C, classes/inet.C,
         * src/types/pa_wwrapper.h: - dynamic_cast was removed            classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
             classes/memcached.C, classes/memory.C, classes/reflection.C,
         * tests/: 195.html, 195_utf8.txt, 195_windows1251.txt: - tests for            classes/regex.C, classes/response.C, classes/string.C,
           uploading files and case-insensitive http-method were added            classes/table.C, classes/xdoc.C, classes/xnode.C,
             types/pa_vform.C, types/pa_vmail.C, types/pa_vmath.C,
         * tests/: 216.html, 216_dir/1, 216_dir/2.txt: - test for checking            types/pa_vmemory.h: optimizaion: *_base_class removed (related to
           tainted pattern in ^file:list[] was added            feature #1051)
   
 2009-07-03  misha  2016-03-30  moko
   
         * src/: classes/classes.vcproj, main/main.vcproj,          * tests/: 327.html, results/224.processed, results/327.processed:
           types/types.vcproj, targets/cgi/parser3.vcproj,            test for TZ specification in ^date::create[], TZ is kept during
           targets/isapi/parser3isapi.vcproj: - enable runtime info (needed            ^date::create[$dt] (related to feature #1048)
           for dynamic_cast) - little options changes  
           * src/: classes/date.C, types/pa_vdate.h: TZ can be specified in
         * src/main/pa_http.C: - file::load[http works now with uploading            ^date::create[], TZ is kept during ^date::create[$dt] (implements
           files _and_ changing $.charset            feature #1048)
   
 2009-06-29  misha  2016-03-29  moko
   
         * src/types/pa_vregex.C: - ^untaint[regex][] for all tainted data          * tests/: 315.html, results/315.processed: test for timezone format
           while creating pattern            +HHmm added (related to feature #1065)
   
 2009-06-25  misha          * src/classes/date.C: timezone format +HHmm now supported
             (implements feature #1065)
         * src/classes/image.C, operators.txt: - options' names for  
           ^image.font were changed to $.space, $.width and $spacing -  2016-03-28  moko
           default space width now == gif's width  
           * tests/: 202.html, results/131.processed, results/202.processed,
 2009-06-24  misha            results/224.processed, results/256.processed,
             results/315.processed: test results updated after %.2d now
         * tests/215.html: - tests for $file.mode were added            default for hours offset in iso-string (was %2d), test for
             ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
         * operators.txt: - added info about $file.mode and changes in            added (related to feature #1065)
           ^image.font[  
   2016-03-27  moko
         * src/: types/pa_vimage.h, classes/image.C: ^image.font - third  
           param now could be omited - third param now could be hash (with          * src/types/pa_vdate.C: '+' sign for zero offset (related to
           all widths options: $.space-width, $.letter-width) - it's            feature #1065)
           possible to specify tracking ($.letter-space)  
           * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
         * src/classes/file.C: - file objects now could have mode field            ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
           (text|binary)            added (implements feature #1065)
   
         * src/types/: pa_vfile.C, pa_vfile.h: - method set_method was added  2016-03-24  moko
   
 2009-06-23  misha          * tests/: 202.html, results/202.processed: test $date.week added
             (related to bug #1067)
         * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -  
           trim can work with utf-8 chars now          * src/types/: pa_vdate.C, pa_vdate.h: fix for $date.week changed
             date (fix for bug #1067)
 2009-06-20  misha  
   2016-03-10  moko
         * src/: classes/hash.C, main/pa_string.C: - string length cacheing  
           was implemented          * configure.ac, src/include/pa_version.h: 3.4.4 -> 3.4.5b
   
         * src/classes/table.C: - string length cacheing was implemented  2015-12-07  moko
   
         * src/include/pa_string.h: - string length cacheing was implemented          * tests/: 326.html, results/326.processed: test for .CLASS &
             .CLASS_NAME optimization added (related to feature #844)
 2009-06-17  misha  
   2015-11-17  moko
         * src/main/execute.C: - value param was removed from  
           WContext::WContext          * tests/: 323.html, results/323.processed: order added
   
         * src/types/: pa_vcode_frame.h, pa_vmethod_frame.C, pa_wcontext.h,          * tests/: 325.html, results/325.processed: double range test added
           pa_wwrapper.h: - value param was removed from WContext::WContext            (related to bug #1049)
           - field wcontext was removed from VCodeFrame (using fparent  
           instead)  2015-11-16  moko
   
         * tests/214.html: - test with hash copying          * src/: classes/string.C, types/pa_vdouble.h: finite(double) check
             added to disallow NaN and Infinity (fixes bug #1049)
 2009-06-16  misha  
   2015-11-11  moko
         * tests/: 062.html, results/062.processed: - evaluation hardcoded  
           strings doesn't work in expression anymore          * tests/324.html: parser 3.4.3 execution support added (related to
             feature #1017)
         * src/main/execute.C: - less calls for get_constructing() - little  
           refactoring          * tests/: 324.html, results/324.processed: test for
             GET_ELEMENT4CALL feature added (feature #1017)
         * src/: types/pa_wcontext.h, types/pa_wwrapper.h,  
           include/pa_request.h: - less calls for get_constructing()  2015-10-29  moko
   
         * src/classes/: hash.C, hashfile.C: - fixed bug which was          * operators.txt: updated for 3.4.4
           introduced with OPTIMIZE_SINGLE_STRING optimization  
           * configure.ac, src/include/pa_version.h: 3.4.4rc -> 3.4.4
 2009-06-14  misha  
           * src/main/pa_exec.C: get_exit_status implemented for Windows
         * src/: classes/date.C, classes/file.C, classes/hash.C,            (related to bug #1043)
           classes/hashfile.C, classes/image.C, classes/regex.C,  
           classes/table.C, classes/xdoc.C, classes/xnode.h,  2015-10-28  moko
           types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,  
           types/pa_vstateless_class.h, main/execute.C: - create object for          * src/main/pa_exec.C: Windows bugfix: $.stdin[] no longer cause
           storing object's fields only for parser objects            hangup during ^file::exec (fixes bug #1043)
   
 2009-06-13  misha  2015-10-27  moko
   
         * buildall-with-xml, buildall-without-xml: - new option was added          * src/main/pa_memory.C: pa_fail_alloc added for GC_abort in Windows
           for building GC (it slightly reduces memory usage)  
   2015-10-26  moko
         * src/types/: pa_wcontext.h, pa_wwrapper.h: - optimization of  
           single string write          * tests/322.html, src/classes/reflection.C: arguments reorder
             (related to issue #1041)
         * src/main/execute.C: - bytecode optimization of ^class:constructor  
           - optimization of single string write          * src/: classes/classes.awk, main/helpers/simple_folding.pl:
             Copyright year updated
         * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.h:  
           - bytecode optimization of ^class:constructor          * src/: classes/bool.C, classes/classes.C, classes/classes.h,
             classes/curl.C, classes/date.C, classes/double.C, classes/file.C,
 2009-06-09  misha            classes/form.C, classes/hash.C, classes/hashfile.C,
             classes/image.C, classes/inet.C, classes/int.C, classes/json.C,
         * src/targets/cgi/parser3.C: - type size_t was changed to int in            classes/mail.C, classes/math.C, classes/memcached.C,
           main (better compatibility)            classes/memory.C, classes/op.C, classes/reflection.C,
             classes/regex.C, classes/response.C, classes/string.C,
 2009-06-08  misha            classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
             classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
         * src/main/compile.y: - I've forgot to commit it :(            include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
             include/pa_config_fixed.h, include/pa_config_includes.h,
 2009-06-07  misha            include/pa_dictionary.h, include/pa_dir.h,
             include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
         * src/include/pa_opcode.h: - more optimizations for WITH_SELF,            include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
           WITH_READ and WITH_ROOT            include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
             include/pa_pool.h, include/pa_random.h, include/pa_request.h,
         * src/main/: compile.y, compile_tools.C, compile_tools.h,            include/pa_request_charsets.h, include/pa_request_info.h,
           execute.C: - more optimizations for WITH_SELF, WITH_READ and            include/pa_sapi.h, include/pa_socks.h,
           WITH_ROOT - little refactoring            include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
             include/pa_stack.h, include/pa_string.h,
 2009-06-06  misha            include/pa_stylesheet_connection.h,
             include/pa_stylesheet_manager.h, include/pa_table.h,
         * tests/213.html: - tests for 3rd match string-param were added            include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
             include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
         * src/classes/string.C: - 3rd match param could be string now            lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
             lib/md5/pa_md5c.c, lib/memcached/pa_memcached.C,
         * src/main/: compile.y, compile_tools.h: - much more bytecode's            lib/memcached/pa_memcached.h, lib/sdbm/pa_file_io.C,
           sequences optimized to WITH_SELF__VALUE__GET_ELEMENT and            lib/sdbm/pa_strings.C, lib/smtp/comms.C, lib/smtp/smtp.C,
           GET_OBJECT_ELEMENT            lib/smtp/smtp.h, main/compile.C, main/compile.tab.C,
             main/compile.y, main/compile_tools.C, main/compile_tools.h,
 2009-06-05  misha            main/execute.C, main/pa_cache_managers.C, main/pa_charset.C,
             main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
         * src/main/pa_http.C: - bugfix: content-length was not calculated            main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
           if $.body was specified            main/pa_globals.C, main/pa_http.C, main/pa_memory.C,
             main/pa_os.C, main/pa_pool.C, main/pa_random.C,
 2009-06-04  misha            main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
             main/pa_string.C, main/pa_stylesheet_connection.C,
         * src/classes/op.C: - optimizing write_assign_lang in connect            main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
             main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
         * src/classes/op.C: - optimizing write_assign_lang in taint/untaint            sql/pa_sql_driver.h, targets/apache/mod_parser3.c,
             targets/apache/mod_parser3_core.C, targets/apache/pa_httpd.h,
         * src/main/execute.C: - little refactoring - optimizing            targets/apache/pa_threads.C, targets/cgi/pa_threads.C,
           write_assign_lang in taint/untaint            targets/cgi/parser3.C, targets/isapi/pa_threads.C,
             targets/isapi/parser3isapi.C, types/pa_junction.h,
         * src/include/pa_opcode.h: - little refactoring            types/pa_method.h, types/pa_property.h, types/pa_value.C,
             types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
         * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,            types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
           main/compile_tools.h, main/execute.C: - optimizations for            types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.C,
           $self.field, ^self.method, $self.field[...] and $self.field(...)            types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
           were added            types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
             types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
 2009-06-03  misha            types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
             types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
         * src/types/pa_venv.C: - pa_strdup was replaced by strdup            types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
             types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
 2009-06-02  misha            types/pa_vmemcached.C, types/pa_vmemcached.h, types/pa_vmemory.h,
             types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
         * src/: main/compile.y, main/compile_tools.h, main/execute.C,            types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
           include/pa_opcode.h: - refactoring in last optimizations            types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
           ($a[...], $a(...), $.a[...], $.a(...)). a bit less optimizations            types/pa_vresponse.C, types/pa_vresponse.h,
           now but code is much easy and it is ready for further            types/pa_vstateless_class.C, types/pa_vstateless_class.h,
           improvements.            types/pa_vstateless_object.h, types/pa_vstatus.C,
             types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
 2009-05-27  misha            types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
             types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
         * src/: types/pa_junction.h, types/pa_vjunction.C,            types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
           types/pa_vjunction.h, types/pa_vmethod_frame.h, main/execute.C: -            types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
           changed in destructing junctions  
           * src/targets/cgi/parser3.C: year updated
         * src/main/: pa_charset.C, pa_string.C: - more safe creation on  
           String:Body          * src/classes/reflection.C: VS2003 compatibility fixed (related to
             issue #1041)
 2009-05-26  misha  
           * tests/: 323.html, results/323.processed: test for base classes
         * src/: main/pa_common.C, main/pa_http.C, include/pa_common.h: -            added
           one method detect_charset was deleted - bug was fixed in this  
           method (error while detecting charset in content_type withot last          * tests/: 261.html, results/261.processed: updated after better
           ';')            error reporting done for $string.key exception
   
         * src/types/: pa_vform.C, pa_vform.h: - detect post charset only          * src/types/pa_vstring.h: better error report for $string.key
           once            exception
   
 2009-05-25  misha          * src/types/: pa_vobject.C, pa_vobject.h: VObject::get_element
             copied as VObject::get_element4call to remove extra virtual call
         * src/classes/file.C: - bugfix: file::exec didn't work after  
           optimizing of helper_length          * tests/: 322.html, results/322.processed: test for
             ^reflection:is[] added (related to feature #1041)
 2009-05-24  misha  
           * src/classes/reflection.C: ^reflection:is empty value is void
         * src/main/compile_tools.h: - $a[$b.c] and $a[$b.$c] optimisations            (related to feature #1041)
           were added - little refactoring  
           * src/classes/reflection.C:
         * src/main/execute.C: - core while printing in debug log            ^reflection:is[class_name|code|method;[context;]element_name]
           non-printable values was fixed - $a[$b.c] and $a[$b.$c]            added (implements feature #1041)
           optimisations were added  
   2015-10-24  moko
         * src/include/pa_opcode.h: - new opcodes for $a[$b.c] and $a[$b.$c]  
           were added          * configure.ac, src/include/pa_version.h: 3.4.4b -> 3.4.4rc
   
 2009-05-23  misha  2015-10-22  moko
   
         * src/: lib/cord/cordbscs.c, lib/cord/cordxtra.c,          * tests/: 321.html, results/321.processed: test for
           lib/cord/include/cord.h, include/pa_string.h, main/untaint.C: -            ^reflection:method_info[] file detection added
           CORD_cat optimization  
           * tests/: 320.html, results/320.processed: test for
         * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C:            ^reflection:class_by_name[class_name] added (related to feature
           - call constr optimisation under separate define now            #993)
   
         * src/main/: compile_tools.h, execute.C: - bugfix: $a[] $b[$a] --          * src/classes/reflection.C: ^reflection:class_by_name[class_name]
           in $b should be string, not void            added (implements feature #993)
   
         * src/main/compile.y: - little fix for rem-cut optimisation          * src/main/execute.C: GET_ELEMENT4CALL added to get_method_filename
             (related to feature #1017)
         * src/: include/pa_opcode.h, main/compile_tools.C,  
           main/compile_tools.h, main/execute.C: - optimisations for          * tests/: 319.html, results/319.processed: ^throw[] stacktrace test
           $a[^b[...]], $.a[^b[...]], $a(^b[...]) and $.a(^b[...])            added (related to issue #1039)
   
         * INSTALL: - description of some #defined were added          * src/main/pa_request.C: ^throw origin fixed (related to feature
             #1039)
         * src/types/: pa_vfile.C, pa_vfile.h: - fill .'text' field only  
           before 1st access (memory usage is reduced if don't access to          * src/types/pa_vcookie.C: bugfix: expires_sec should not be called
           .text field)            for VDate
   
         * src/include/pa_array.h: - array grows step now not static (it          * tests/results/182.processed: updated after feature #1038
           reduces numbers of reallocs)            implemented
   
 2009-05-20  misha          * tests/: 318.html, 182_dir/a6.p, results/318.processed: test for
             compile-time exception origin added (test for feature #1039)
         * src/include/pa_opcode.h: - bytecode optimization for $a(1),  
           $.b(2), $c[d] and $.e[f] was added          * src/: include/pa_request.h, main/compile.C, main/compile.y,
             main/pa_request.C: exception unification: compile-time exceptions
         * src/main/: compile.y, compile_tools.C, compile_tools.h,            now have origin, @USE origins also tracked (implements feature
           execute.C: - bytecode optimization for $a(1), $.b(2), $c[d] and            #1039)
           $.e[f] was added  
   2015-10-20  moko
         * src/main/execute.C: - debug printing moved in defines  
           * src/main/pa_request.C: cleanup
         * src/main/: compile.y, compile_tools.C, compile_tools.h: - bugfix  
           and little refactoring for OP_GET_OBJECT_ELEMENT +  2015-10-15  moko
           OP_GET_OBJECT_VAR_ELEMENT optimisation  
           * src/types/pa_vtable.C: defines fixed (related to feature #1017)
 2009-05-19  misha  
           * src/: classes/hash.C, include/pa_opcode.h, types/pa_vhash.h,
         * src/main/: compile.y, compile_tools.C, compile_tools.h,            types/pa_vtable.C: new feature: no more $table.method and
           execute.C: - $a.$b & ^a.$b bytecode optimisation            $hash.method, aliases for _at, _count, _key (related to feature
             #1017)
         * src/include/pa_opcode.h: - new opcodes were added (for $a.$b &  
           ^a.$b optimisation)  2015-10-14  moko
   
         * src/main/compile.y: - compiler now generate new opcodes:          * tests/: 317.html, results/317.processed: test for
           OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE for $a.b and            ^string.unescape[] added (related to feature #120)
           ^a.b - compiler now cut off ^rem{ with all content ; any number  
           of params }          * buildall: reverted libxml 2.9.2 -> 2.9.1 due to "ID already
             defined" bug (described in issue #1036)
         * src/main/execute.C: - code for handle new opcodes  
           OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE was added          * tests/: 247.html, results/247.processed: test for checkBOM added
             (test for bug #1037)
         * src/main/: compile_tools.C, compile_tools.h: - new parameter was  
           added for LA2V and LA2S          * src/: include/pa_charsets.h, main/pa_charsets.C,
             main/pa_common.C, main/pa_http.C: checkBOM detects charset if
         * src/include/pa_opcode.h: - new defines which can be used for            it's not enforced, skips BOM signature if it complies charset
           disable some bytecode optimisation and new opcodes were added            (fixes bug #1037)
   
 2009-05-17  misha  2015-10-13  moko
   
         * src/lib/cord/cordxtra.c: - bugfix.          * src/targets/cgi/parser3.vcproj: disabling buggy incremental
             linking
         * tests/212.html: - .size[] and .study_size[] were added to tests  
           * src/classes/inet.C: vs2003 compilation fix
         * operators.txt: - info about regex class was added  
           * src/classes/math.C: warning war
         * tests/212.html: - tests for regex class were added  
           * src/lib/punycode/pa_punycode.c: warning war
 2009-05-16  misha  
   2015-10-12  moko
         * buildall-with-xml, buildall-without-xml: - moving from gc6.8 to  
           gc7.1          * src/lib/punycode/pa_punycode.c: warning war
   
         * tests/022.html: - test for ^file:list[path;] (empty second param)          * parser3.sln: moved parser3 first, to make it default startup
           was added            project
   
         * src/classes/file.C: - bugfix: ^file:list[path;] [empty second          * buildall: parser "mirror" now used for external libs sources
           param) should work            (implements feature #1036)
   
 2009-05-15  misha          * buildall: most external libs are updated to their current
             versions (related to feature #1036)
         * src/classes/table.C: - automatically disable stringstream usage  
           on freebsd4          * src/classes/image.C: more tags added
   
         * src/lib/cord/cordxtra.c: - var decl should be at the beginning of          * src/: include/pa_memory.h, types/pa_vdate.C: warning war
           scope  
   2015-10-11  moko
         * tests/211.html: - test with different types of access to hash was  
           added          * src/classes/curl.C: minor optimization (related to feature #1035)
   
         * tests/210.html: - test which checks for loosing tainting in  2015-10-09  moko
           hash's keys was added  
           * src/classes/curl.C: pa_strdup added for strings from curl
         * tests/208.html: - some parser work added. or stime == 0 %-)            (related to feature #1035)
   
         * src/lib/cord/cordbscs.c: - little hack was added to cord          * src/main/pa_string.C: mini fix: RedHat 7.2 does not have
             ULLONG_MAX definition
         * src/lib/cord/cordxtra.c: - cacheing of cord chars was added  
           * src/classes/curl.C: ^curl:info[name]/^curl:info[] added
         * src/include/pa_version.h, configure.in: - moko have made a lot of            (implements feature #1035)
           optimisations for increacing version number more dramatically :)  
           * src/main/pa_charset.C: String::Body(String::C) used
         * src/classes/date.C: - little refactoring: use constructor which  
           accepts formated string          * src/main/pa_charset.C: exceptions unified
   
         * src/: include/pa_string.h, main/pa_string.C: - String constructor          * src/: include/pa_charset.h, main/pa_charset.C: declarations
           which can print formatted string was added            unified
   
 2009-05-14  misha          * src/: classes/file.C, classes/image.C, classes/mail.C,
             classes/op.C, classes/xdoc.C, classes/xnode.C,
         * src/include/pa_string.h: - type was fixed            include/pa_string.h, main/pa_request.C, main/pa_string.C,
             types/pa_vimage.C, types/pa_vmath.C, types/pa_vstatus.C,
         * src/: classes/hashfile.C, classes/op.C,            types/pa_vxdoc.C: explicit String::Body(char) calls removed;
           include/pa_cache_managers.h, include/pa_charset.h,            String::Body(String::C) constructor added (related to bug #957)
           include/pa_charsets.h, include/pa_common.h, include/pa_hash.h,  
           include/pa_request.h, include/pa_sql_driver_manager.h,          * src/classes/file.C: minor optimization
           include/pa_string.h, include/pa_stylesheet_manager.h,  
           include/pa_table.h, include/pa_xml_io.h, main/pa_charset.C,          * src/include/pa_hash.h: hash.get(char*) added, to minimize
           main/pa_charsets.C, main/pa_string.C,            Cord(char*) autocreation (related to bug #957)
           main/pa_stylesheet_connection.C, types/pa_value.h,  
           types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,          * src/: classes/string.C, main/untaint.C: minor optimizations
           types/pa_vobject.C, types/pa_vstateless_class.C,  
           types/pa_vstateless_class.h: - hash_code caching was implemented          * src/: classes/json.C, classes/reflection.C, include/pa_string.h:
           (seaches should be faster now)            String(char*, Lang, length) removed, String(C(), Lang) used
             instead (related to bug #957)
         * src/: classes/file.C, classes/hash.C, classes/image.C,  
           classes/string.C, classes/table.C, include/pa_string.h,  2015-10-08  moko
           main/pa_charset.C, main/pa_http.C, main/pa_request.C,  
           types/pa_vconsole.h, types/pa_vcookie.C, types/pa_venv.C,          * src/: classes/file.C, include/pa_string.h, lib/cord/cordbscs.c,
           types/pa_vform.C, types/pa_vhashfile.C, types/pa_vregex.C,            lib/cord/include/cord.h, main/pa_http.C, main/pa_string.C,
           types/pa_vrequest.C: - String constructors don't have that stupid            main/untaint.C: Now char * is converted to CORD only using
           true/false param which means 'tainted'. they accept lang instead.            AS_CORD() to check for empty cord bug (fixes bug #957)
   
         * src/types/pa_vmethod_frame.h: - bugfix: taint/untaint didn't work          * src/include/pa_hash.h: fixed compilation without
           with OPTIMIZE_RESULT            HASH_CODE_CACHING
   
         * src/types/: pa_method.h, pa_vstateless_class.C: - less warnings          * src/classes/string.C:
           wher OPTIMIZE_RESULT and OPTIMIZE_CALL not defined            ^string:unescape[js|uri;escaped;$.charset[...]] added (implements
             feature #120)
 2009-05-13  misha  
           * src/main/pa_common.C: reduce js flags checks count (related to
         * src/: types/pa_method.h, types/pa_vcookie.C, types/pa_vdouble.h,            feature #120)
           types/pa_venv.C, types/pa_vhashfile.C, types/pa_vint.h,  
           types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,  2015-10-07  moko
           types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,  
           types/pa_vstateless_class.C, main/execute.C, main/pa_charset.C,          * tests/: 275.html, results/275.processed: test modified after
           main/pa_common.C, main/pa_request.C, main/pa_string.C,            unsigned long long int support implemented (feature #1034)
           include/pa_string.h, classes/date.C, classes/file.C,  
           classes/hash.C, classes/image.C, classes/string.C,          * src/: classes/math.C, include/pa_string.h, main/pa_string.C:
           classes/table.C, classes/xdoc.C: - result optimisation -            pa_atoul added for unsigned long long int support
           helper_length parameter removed from string constructors  
   2015-10-06  moko
 2009-05-11  misha  
           * src/types/pa_vdate.C: INT_MAX used
         * tests/209.html: - tests for ^hash::create[hash] were added  
   2015-10-03  moko
         * tests/208.html: - tests for $status:rusage, $status:memory,  
           ^memory:compact[] were added          * tests/: 302.html, results/302.processed: test for bug #1023
             (\u2028, \u2029 escaping) added
         * tests/207.html: -tests for abs, sign, trunc, frac, exp, log,  
           log10 were added          * src/main/untaint.C: \u2028, \u2029 are now escaped in
             json:string[] (fixes bug #1023)
         * tests/206.html: - test for try with finally was added  
   2015-09-29  moko
 2009-05-10  misha  
           * tests/305.html: try-catch added for OS without ipv6 support
         * tests/205.html: - test for ^file::create[...] was added  
           * src/lib/json/pa_json.C: more unique prefixes for Solaris
         * tests/204.html: - test for ^response:clear[] was added            compilation
   
         * tests/038.html: - tests for trigonometric functions were added          * src/: include/pa_opcode.h, include/pa_request.h, main/compile.y,
             main/execute.C, types/pa_value.h, types/pa_vhash.h,
         * tests/014.html: - tests for ^hash.containts and ^hash.delete were            types/pa_vtable.C, types/pa_vtable.h: get_element4call
           added - more tests for .add, .sub, .union, .intersects and            implemented to distinguish ^hash.method from $hash.field
           .intersections            (implements feature #1017)
   
         * tests/065.html: - test for ^file:dirname was added          * src/lib/punycode/pa_punycode.c: warning war
   
         * tests/030.html: - test for $cookie:fields was added          * src/include/pa_config_includes.h: warning war
   
         * tests/203.html: - test for ^h._keys[column name] was added          * src/include/pa_config_includes.h: pragma warning actualized a bit
   
         * tests/201.html: - tests for .trim were added          * src/include/pa_config_includes.h: warning war
   
         * tests/202.html: - tests for last-day,          * src/include/pa_hash.h: clang compilation fix
           date:calendar[type](YYYY;MM;DD) were added  
   2015-09-27  moko
         * tests/200.html: - tests for .sort(), .sort{}, .flip[] and  
           .offset[type](N) were added          * src/main/compile.tab.C: Bison 3 is now default
   
         * tests/185.html: - more tests for .left(N), .right(N), .min(N;M)          * src/main/: compile.C, compile.y: Bison 3 compatibility fixed
           and .pos[c](N) were added  
   2015-09-25  moko
         * tests/141.html: - test for math:sha1 was added  
           * src/: classes/hash.C, include/pa_hash.h: parser now compiles and
         * tests/063.html: - tests for .mod(N), .inc[] & .dec[] were added            works with undefined HASH_ORDER (related to feature #196)
   
 2009-05-09  misha  2015-09-24  moko
   
         * src/main/compile.y: - rollback          * tests/: 027.html, results/027.processed: test modified to test
             ^hash.sort (feature #196)
 2009-05-05  misha  
           * src/: classes/hash.C, include/pa_hash.h:
         * src/main/pa_exec.C: - little optimisation: somewhere length() was            ^hash.sort[key;value]{string-key-maker}|(numeric-key-maker)[[asc|desc]]
           replaced by is_empty()            added (implements feature #196)
   
         * src/: include/pa_string.h, main/pa_charset.C: - little          * tests/: 316.html, results/316.processed: Added test for bug #1025
           optimisation: somewhere length() was replaced by is_empty()            (exception handling in non-cached ^cache), plus for "it does not
             have logical value" and "$exception.handled value must be either
         * src/classes/table.C: - little optimisation: somewhere length()            boolean or string 'cache'" exceptions.
           was replaced by is_empty()  
           * src/classes/op.C: ^cache: exceptions now handled in non-cached
         * src/: classes/file.C, classes/hash.C, classes/hashfile.C,            code (fixes bug #1025)
           classes/op.C, classes/table.C, main/pa_exception.C: - little  
           optimisation: somewhere length() was replaced by is_empty()  2015-09-23  moko
   
 2009-05-04  misha          * src/classes/table.C: warning war
   
         * src/: types/pa_method.h, types/pa_vstateless_class.C,          * src/: classes/math.C, types/pa_vcookie.C: warning war
           types/pa_vstateless_class.h, main/execute.C,  
           include/pa_request.h, classes/hash.C, classes/op.C,          * src/classes/file.C: warning war
           classes/table.C: - more optimisations were added: some operators  
           don't switch write context anylonger          * src/: include/pa_table.h, main/pa_table.C: warning war
   
 2009-05-01  misha          * src/: main/pa_request.C, classes/date.C: warning war
   
         * src/main/compile.y: - slightly more opcode optimisations for          * src/: types/pa_vdate.C, classes/op.C: warning war
           WITH_WRITE + VALUE + GET_ELEMENT -> OP_VALUE__GET_ELEMENT  
           * tests/: 122.html, results/122.processed: win sync: to remove
         * src/main/execute.C: - simplifying process for getters            differences with OS that doesn't keep timezone change history
   
 2009-04-30  misha          * src/types/pa_vdate.C: tzset() should be called in Windows after
             TZ change (related to feature #36)
         * tests/: 198.html, 199.html: - new line fixes (should be 0x0A)  
           * tests/: 075.html, results/075.processed: win sync: to remove
         * tests/results/199.processed: - test for checking $result into            differences with OS that doesn't keep timezone change history
           ^rem was added  
           * tests/: 315.html, results/315.processed: win sync: to remove
         * tests/199.html: - test for checking $result into ^rem was added            differences with OS that doesn't keep timezone change history
   
         * tests/: 022.html, 096.html: - þsort after :list was asses (on          * tests/: 256.html, results/256.processed: win sync: to remove
           some OS it returns list in different order)            differences with OS that doesn't keep timezone change history
   
         * src/: include/pa_array.h, include/pa_request.h,          * tests/: 124.html, results/124.processed: win results sync: to
           include/pa_stack.h, main/execute.C, types/pa_vmethod_frame.h: -            avoid hitting time change hole.
           changes in stack impl - get_element() optimisation: 3rd param  
           removed - bugfix: problems with reading empty input param -          * src/types/pa_vdate.C: static returned. :)
           defines SAVE_CONTEXT and RESTORE_CONTEXT were added and used  
   2015-09-22  moko
         * tests/results/198.processed: - test for reading empty local var  
           was added          * src/types/pa_vdate.C: FreeBSD 10 GPF fix (related to feature #36)
   
         * tests/198.html: - test for reading empty local var was added          * tests/results/131.processed: more tests for feature #1032
   
 2009-04-29  misha          * src/classes/date.C: minor fix related to feature #1032
   
         * src/main/compile.y: - bugfix: couldn't compile because          * operators.txt: ISO date creation documented (related to feature
           OP_VALUE__GET_ELEMENT should be unde #ifdef            #1032)
   
         * src/: include/pa_array.h, include/pa_opcode.h,          * operators.txt: iso-string documented (related to feature #1032)
           include/pa_request.h, main/compile.y, main/execute.C,  
           main/pa_request.C, types/pa_vmethod_frame.C,          * tests/: 315.html, results/315.processed: more tests added
           types/pa_vmethod_frame.h: - we can work without opcode            (related to feature #1032)
           OP_STORE_PARAM, so it was removed  
           * tests/: 131.html, results/131.processed: date range checks
 2009-04-28  misha            updated (related to feature #36)
   
         * src/: include/pa_opcode.h, main/compile.y, main/execute.C: -          * tests/: 315.html, results/057.processed, results/315.processed:
           op-codes optimisation:   1. VALUE+GET_CLASS=>VALUE_GET_CLASS   2.            test added for ISO date support (related to issue #315)
           WITH_READ+VALUE+GET_ELEMENT=>VALUE__GET_ELEMENT (not all yet)  
           3. WITH_READ+VALUE+GET_ELEMENT__WRITE=>VALUE__GET_ELEMENT__WRITE          * src/classes/date.C: more readable exceptions in date creation
           4.            (related to ticket #1032)
           WITH_READ+VALUE+GET_ELEMENT_OR_OPERATOR=>VALUE__GET_ELEMENT_OR_OPERATOR  
   2015-09-18  moko
         * src/main/compile_tools.h: - new stuff for op-codes optimisation  
           * tests/: 202.html, results/202.processed: ^date.iso-string[] check
         * src/: main/pa_string.C, classes/string.C: - !length() =>            added (related to issue #1032)
           is_empty()  
           * tests/results/256.processed, src/classes/json.C: iso-string
 2009-04-27  misha            documented (related to issue #1032)
   
         * src/types/pa_vregex.h: - back explicit vars initialisation          * tests/: 256.html, results/256.processed: ISO date check added
             (related to issue #1032)
 2009-04-24  misha  
           * tests/: 057.html, results/057.processed, results/224.processed:
         * src/classes/string.C: - ups. typo fixed            tests results updated after ISO date support implemented (related
             to feature #1032)
         * src/main/execute.C: - more replacements '*new VBool' to  
           'VBool::get' - checks for ^break[], ^continue[] and          * src/: classes/date.C, classes/image.C, types/pa_value.h,
           parser.interrupted were optimised            types/pa_vdate.C, types/pa_vdate.h: ISO 8601 dates support added,
             ^date::create[string] constructor formalized, ^date.iso-string[]
         * src/classes/string.C: - number of params.count() calls was            added (implements feature #1032)
           slightly reduced  
   2015-09-05  moko
 2009-04-23  misha  
           * operators.txt: actualized
         * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -  
           make it x64 friendly          * operators.txt: date changes documented (related to ticket #36)
   
         * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -  2015-09-04  moko
           parser is x64 friendly now  
           * src/types/pa_vdate.C: warning war
 2009-04-22  misha  
           * src/: classes/op.C, types/pa_vhashfile.C: warning war
         * src/types/pa_vhashfile.C: - coder friendly exception about  
           exceeding record size was added  2015-09-03  moko
   
         * src/classes/file.C: - use vregex object instead of direct calls          * tests/results/096.processed: test result updated for 0..9999 year
           methods from pcre lib            date range support (related to feature #36)
   
         * src/: classes/file.C, include/pa_string.h, main/pa_string.C,          * tests/: 314.html, results/314.processed: test for
           classes/string.C: - use vregex object instead of direct calls            ^string:base64[], ^string:idna[], ^string:js-escape[] (related to
           methods from pcre lib            bug #1031)
   
         * src/: include/pa_common.h, main/pa_common.C: - method          * src/classes/string.C: Static calls fixed for ^string:base64[],
           print_pcre_exec_error_text was moved to class vregex            ^string:idna[], ^string:js-escape[] (closes bug #1031)
   
         * src/classes/: Makefile.am, classes.vcproj, regex.C: - class regex          * Makefile.am, acsite.m4, configure.ac, configure.in: Warning war:
           was added            configure.in -> configure.ac
   
         * src/types/: Makefile.am, pa_vregex.C, pa_vregex.h, types.vcproj:          * configure, configure.in, src/include/pa_config_auto.h.in: more
           - class vregex was added            correct timezone check for FreeBSD Warning war: configure.in ->
             configure.ac
 2009-04-21  misha  
           * configure, configure.in, src/classes/Makefile.am,
         * buildall-with-xml, buildall-without-xml: - pcre 7.8 -> pcre 7.9            src/include/pa_config_auto.h.in, src/lib/cord/Makefile.am,
             src/lib/gd/Makefile.am, src/lib/json/Makefile.am,
         * src/: types/pa_junction.h, types/pa_value.C,            src/lib/memcached/Makefile.am, src/lib/pcre/Makefile.am,
           types/pa_vjunction.C, types/pa_vjunction.h, types/pa_wcontext.C,            src/lib/sdbm/Makefile.am, src/lib/smtp/Makefile.am,
           types/pa_wcontext.h, main/execute.C, classes/op.C: -            src/main/Makefile.am, src/targets/apache/Makefile.am,
           junction-optimisation (destructors)            src/targets/cgi/Makefile.am, src/types/Makefile.am: INCLUDES ->
             AM_CPPFLAGS (warning war) PA_DATE64 (0..9999 year date range)
         * src/include/pa_array.h: - free under if now            check added
   
 2009-04-19  misha          * src/types/pa_vdate.C: FreeBSD fixes + more robust code
   
         * src/main/untaint.C: - ^taint[js] now escapes \x0D as well          * tests/results/: 124.processed, 224.processed: test resuls updated
             for new date implementation (related to feature #36)
 2009-04-18  misha  
           * src/: classes/date.C, classes/image.C, include/pa_common.h,
         * src/include/pa_version.h:            main/pa_common.C, types/pa_value.C, types/pa_vdate.C,
           :q :            types/pa_vdate.h: new double date implementation with internal
             support for extended 0..9999 year range, default timezone support
           CV:            (related to feature #36)
           ----------------------------------------------------------------------  
   2015-08-28  moko
         * src/types/: pa_vjunction.h, pa_vstateless_class.C: - little  
           refactoring          * src/types/pa_vmail.C: fixed $mail:received.date calculations
             (fixes bug #1030)
         * src/: include/pa_array.h, include/pa_hash.h,  
           types/pa_vmethod_frame.h: - destructors under #ifdef now  2015-08-21  moko
   
         * src/include/pa_memory.h: - define for using destructors was added          * src/classes/inet.C: snprintf size "bug" commented
   
         * src/: types/pa_method.h, types/pa_vstateless_class.C,          * src/main/pa_common.C: snprintf comments updated
           main/execute.C: - some junctions will be cached now  
   2015-08-16  moko
         * src/include/pa_hash.h: - hash destructor frees pairs now  
           * src/types/: pa_vdate.C, pa_vdate.h: logic moved to pa_vdate.C
         * src/include/pa_array.h: - inline was added to destructor  
   2015-08-11  moko
         * src/types/pa_method.h: - comment was changed  
           * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
 2009-04-17  misha            types/pa_vclass.C, types/pa_vobject.C: hash_json_string argument
             can be null (fixes bug #1029)
         * src/: include/pa_array.h, include/pa_hash.h,  
           types/pa_vmethod_frame.h: - destructors were added  2015-08-06  moko
   
         * src/types/: pa_method.h, pa_vmethod_frame.h: - write_to_result          * src/types/: Makefile.am, pa_vdate.C, pa_vdate.h, types.vcproj:
           renamed to always_use_result            pa_vdate.C added
   
         * src/main/: compile.y, compile_tools.h: - rollback changes in  2015-08-05  moko
           compiler: full backward compatibility is better  
           * tests/: 313.html, results/313.processed: test for
         * src/types/pa_vmethod_frame.h: - set flag write_to_result if find            ^table.count[columns] and ^table.flip[] with nameless tables
           result in var's hash            (feature #1003)
   
         * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -          * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
           optimisation in method_frame            max_cell added, now ^table.count[columns] and ^table.flip[] works
             correctly for nameless tables (implements feature #1003)
         * src/include/pa_array.h: - optimisation in array (allocate  
           elements only when needed)  2015-08-03  moko
   
         * src/types/pa_vresponse.C: - check for $response:headers field          * tests/312.html: test for ^table.append[$hash] and
           before looking at custom fields            ^table.insert[$hash] added (related to feature #1028)
   
         * src/types/pa_vmethod_frame.h: - if flag write_to_result was set,          * src/classes/table.C: ^table.append[$hash] and
           not needed to check existance var with name 'result' in var's            ^table.insert[$hash] now supported (implements feature #1028)
           hash  
           * tests/: 312.html, results/312.processed: test row copy in
         * src/main/compile.y: - compiler was changed: now it detects            ^table.hash[; $.type[table] ] added (related to feature #1016)
           writings to $result and set flag writo_to_result in method  
           * src/classes/table.C: row copy now created in ^table.hash[;
         * src/classes/string.C: - little optimisation: no needed to write            $.type[table] ] (related to feature #1016)
           number with lang  
   2015-07-29  moko
         * src/main/pa_charset.C: - methods readChar and skipChar which is  
           used for read utf8-strings were renamed - is_escaped was renamed          * tests/: 312.html, results/312.processed: test for ^table.delete[]
           to isEscaped (to the same name convention)            added (related to feature #1016)
   
         * src/: types/pa_method.h, main/compile_tools.h: - flag          * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
           write_to_result added. compiler get this info from code.            ^table.delete[] added to delete current row (related to feature
             1016)
 2009-04-16  misha  
   2015-07-28  moko
         * src/types/: pa_wcontext.h, pa_vmethod_frame.h: - create new  
           String only before 1st write          * tests/: 312.html, results/312.processed: test for
             $table.column[value] and ^table.insert{row} (related to feature
         * src/include/pa_string.h: - not needed template removed            #1016)
   
         * src/: types/pa_vbool.h, types/pa_vfile.h, types/pa_vimage.C,          * src/: classes/table.C, include/pa_table.h, main/pa_table.C,
           types/pa_vjunction.C, types/pa_vproperty.C,            types/pa_vtable.C, types/pa_vtable.h: $table.column[value] and
           types/pa_vstateless_class.C, types/pa_vxdoc.C, types/pa_vxnode.C,            ^table.insert{row} are now implemented (feature #1016)
           main/pa_request.C, classes/bool.C, classes/double.C,  
           classes/hash.C, classes/int.C, classes/string.C, classes/table.C,          * src/include/pa_array.h: Optimization: bool reverse removed from
           classes/void.C, classes/xnode.C: - bool optimisation (use only 2            append(), insert() added, memmove arguments order in remove()
           bool objects)            fixed (related to feature #1016)
   
 2009-04-15  misha  2015-07-23  moko
   
         * src/lib/cord/cordxtra.c: - more optimisation          * src/classes/json.C: tainted json and empty json exception added
             (implements feature #1015)
         * src/: include/pa_string.h, main/untaint.C: - String::append  
           optimisation          * tests/: 311.html, results/311.processed: empty json and tainted
             json exception test added (related to issue #1015)
         * src/include/pa_hash.h: - get_by_hash_code added (it works faster  
           then get and can sometime be used)  2015-07-22  moko
   
         * src/main/pa_string.C: - String::length optimisation          * tests/: 311.html, results/311.processed: test for UTF-8
             processing added
         * src/main/pa_charset.C: - rollback changeing readChar to skipChar.  
           these methods read different strings          * tests/: 311.html, results/311.processed: test for
             json_exception_with_source added (related to issue #394)
         * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -  
           fresult_initial_void removed + some optimisation - if $result          * src/classes/json.C: json_exception_with_source added (implements
           defined we don't write to context anymore            feature #394)
   
         * src/main/pa_charset.C: - readChar => skipChar (in this place we  2015-06-29  moko
           need just skip char)  
           * src/: classes/file.C, include/pa_dir.h, main/pa_dir.C:
         * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,            directories are now correctly determined if _d_type == DT_UNKNOWN
           types/pa_vrequest.C, types/pa_vtable.C, main/execute.C,            (closes bug #1027)
           classes/table.C: - VVoid::get() => new VVoid (one void-instance)  
   2015-06-10  moko
         * src/types/pa_vvoid.h: - added get() method for retreave one  
           instance          * src/types/pa_vxnode.h: extern "C" not requred and causes build
             error if libxml has LIBXML_ICU_ENABLED.
 2009-04-11  misha  
   2015-06-04  moko
         * tests/196.html: - tests for $cookie:CLASS_NAME & Co were added  
           * tests/099.html: ups, reverting
         * tests/197.html: - test for parser://test in xml was added  
           * tests/: 099.html, 309.html, 310.html, results/309.processed,
         * src/classes/string.C: - small optimisation            results/310.processed: tests for $response:body[ $.file[] ] and
             $response:last-modified added
         * src/types/: pa_venv.C, pa_venv.h, pa_vconsole.h: - small  
           optimisation          * src/main/pa_request.C: last-modified check fixed
   
 2009-04-10  misha  2015-06-03  moko
   
         * buildall-with-xml, buildall-without-xml: - moving from pcre-7.7          * tests/: 204.html, 205.html, 293.html, results/204.processed,
           to pcre-7.8            results/205.processed, results/293.processed: $response:headers
             logging added (tests for feature #1007)
         * src/types/pa_vclass.C: - normalizing todo-comments: '@todo' now  
           * src/: include/pa_common.h, include/pa_request.h,
         * src/types/: pa_vcookie.C, pa_vcookie.h: - $cookie:CLASS_NAME was            main/pa_request.C, types/pa_vmail.C, types/pa_vresponse.C:
           added            $response:headers are now in uppercase (closes feature #1007)
   
         * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:CLASS and  2015-06-02  moko
           $request:CLASS_NAME were added  
           * src/: include/pa_memory.h, classes/math.C: some of -pedantic
         * src/types/pa_vconsole.h: - $console:CLASS and $console:CLASS_NAME            build errors reverted for clang compatibility
           were added  
   2015-06-01  moko
         * src/types/: pa_venv.C, pa_venv.h: - $env:CLASS and  
           $env:CLASS_NAME were added          * src/include/pa_memory.h: -pedantic build errors fixed
   
         * src/types/: pa_vmail.C, pa_vdate.h: - normalizing todo-comments:          * src/classes/math.C: -pedantic build error fixed
           '@todo' now  
           * src/classes/table.C: USE_STRINGSTREAM moved to the correct place
         * src/targets/cgi/parser3.C: - size_t -> int for calming down  
           compirer  2015-05-31  moko
   
         * src/main/pa_string.C: - little code cleanup          * src/classes/table.C: USE_STRINGSTREAM optimized
   
         * src/main/pa_common.C: - describe one more UTF-8 related error          * src/: classes/file.C, classes/math.C, include/pa_opcode.h,
           during PCRE compile/execute            include/pa_string.h, lib/json/pa_json.h, main/compile_tools.h,
             main/pa_charset.C, main/pa_globals.C, main/pa_string.C,
         * src/classes/: image.C, inet.C, string.C, xdoc.C, xnode.C: -            types/pa_vmail.C, types/pa_vmethod_frame.C, types/pa_vregex.C,
           normalizing todo-comments: '@todo' now            types/pa_vxnode.h: warning war (-pedantic flag)
   
         * src/types/: pa_vmath.C, pa_vmath.h: - $math:E was added  2015-05-28  moko
   
         * src/main/pa_charset.C: - type changed for making compiler happy          * tests/: 308.html, results/308.processed: test for
             ^table::create[$t;], etc work added (related to bug #975)
 2009-03-10  misha  
           * src/classes/table.C: check_option_param removed,
         * src/targets/cgi/parser3.C: make g++ happy with the type of argc            ^table::create[$t;], etc now works (fixes bug #975)
           in main()  
   2015-05-27  moko
 2009-02-01  misha  
           * src/main/pa_request.C: Invalid response filename in gcc 4.9.2
         * src/main/pa_http.C: - bugfix: double CRLF before the end of            (Debian jessie) fixed (closes issue #1024)
           boundary  
           * tests/Makefile: sort added as in Debian jessie list become
 2009-01-25  misha            unsorted
   
         * tests/: 194.html, 194_dir/194.p: - test for @GET[] was added  2015-05-18  moko
   
         * src/classes/file.C: - more changes for parsing different number          * tests/: 201.html, results/201.processed: test for
           of params for file::load            ^string.trim[what] feature #1022
   
         * tests/193.html: - tests for exception while base64-decode binary          * src/classes/string.C: ^string.trim[what] now supported,
           to string was added            implements feature #1022
   
         * tests/192.html: - tests for file::load with different number of  2015-05-17  moko
           options  
           * tests/results/185.processed: test result updated as feature #1021
         * src/classes/math.C: - ups. forgot '+1'            implemented (left/right accept negative parameter)
   
         * src/: classes/table.C, classes/file.C, include/pa_common.h,          * src/classes/string.C: left/right now accept negative parameter
           include/pa_http.h, main/pa_xml_io.C, main/pa_common.C,            (implements feature #1021)
           main/pa_http.C: - ^file::load[...;http://...;] now can post files  
           (new option $.encode[multipart-form/data] should be specified) -  2015-05-08  moko
           $.method[] option for file::load now is not case-sensitive  
           * src/classes/math.C: isalnum -> pa_isalnum
         * src/: include/pa_string.h, main/untaint.C: - for file post the  
           new taint language L_FILE_POST was added          * src/main/execute.C: optimization in getter-junction processing
             (related to issue #997)
         * src/: include/pa_random.h, main/Makefile.am, main/pa_random.C,  
           main/main.vcproj, classes/math.C, include/Makefile.am: - some  2015-05-07  moko
           stuff was moved to separate files  
           * tests/: 307.html, results/307.processed: test for issue #997
 2009-01-23  misha            added
   
         * src/classes/math.C: - little optimisation in ^math:sha1[] -          * src/main/execute.C: process_getter result now checked if junction
           spaces to tabs were converted            returned (closes issue #997)
   
 2009-01-12  misha          * tests/: 305.html, results/305.processed: sort added to ignore
             different order
         * src/main/pa_http.C: - value of $.method[] option force uppercased  
           now          * src/types/pa_vxnode.C: & now untainted in $node.nodeValue
             assignment (closes issue #994)
         * src/: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,  
           types/pa_vform.C, types/pa_vmail.C: - some constants changed          * tests/: 306.html, results/306.processed: test for issue #994
           their names            added
   
         * src/main/pa_common.C: - changes in formating          * tests/: 303.html, results/303.processed: two more errors tested
   
         * src/: classes/file.C, main/pa_http.C: - some constants changed  2015-05-06  moko
           their names  
           * tests/: 305.html, results/305.processed: test for name2ip &
         * src/include/pa_http.h: - some spaces were converted to tabs            ip2name added (related to feature #992)
   
         * src/include/pa_common.h: - some constants changed their names          * tests/: 303.html, 304.html, results/303.processed,
             results/304.processed: tests for idna conversion added (related
         * src/classes/file.C: - fixed 4-th paramether for file::load -            to issue #849)
           little code rewriting  
   2015-05-02  moko
         * src/types/pa_vfile.C: - little code rewriting  
           * src/classes/inet.C: ^inet:ip2name[] and ^inet:name2ip[]
         * src/: main/pa_common.C, main/pa_http.C, main/untaint.C,            implemented
           types/pa_value.h: - some formating changes  
   2015-04-30  moko
         * src/include/pa_common.h: - some formating spaces transformed to  
           tabs          * src/main/pa_http.C: idna_host added, related to issue #849
   
         * src/classes/string.C: - exception while base64-decode binary to a          * src/main/pa_http.C: set_addr corrected, pa_idna_encode call added
           string            (related to issue #849)
   
 2009-01-11  misha  2015-04-24  moko
   
         * configure.in: - version changed to 3.3.1b          * src/types/pa_vjunction.C: warning war
   
 2008-09-05  misha          * src/lib/punycode/: pa_idna.h, pa_punycode.h: code style
             unification
         * src/lib/pcre/Makefile.am: file Makefile.am was added on branch  
           release_3_3_0 on 2008-09-05 10:59:35 +0000          * src/lib/punycode/pa_idna.c: warning war
   
 2008-09-04  misha  2015-04-22  moko
   
         * tests/: 130.html, 131.html: - these exceptions not typeless          * src/main/main.vcproj: punycode include path added
           anymore  
           * src/lib/punycode/pa_idna.c: windows compile error fixed
         * src/classes/op.C: - exception with 'invalid taint language' not  
           typeless anylonger          * src/lib/punycode/pa_idna.c: warning war
   
         * src/classes/image.C: - some exceptions while operations with          * parser3.sln, src/lib/punycode/punycode.vcproj: punycode windows
           image not typeless anymore            project file added
   
         * src/: types/pa_vhashfile.C, main/pa_common.C, classes/file.C,          * src/lib/punycode/pa_convert_utf.c: debug compilation fix
           main/pa_exec.C, main/pa_http.C: - some exceptions while  
           operations with files not typeless anymore          * src/include/pa_memory.h: warning war
   
         * src/: classes/date.C, types/pa_value.C, types/pa_vcookie.C,          * src/: classes/string.C, include/pa_common.h, main/pa_common.C:
           types/pa_vdate.h: - exceptions while checking date range not            ^string:idna[xn--...], ^string.idna[] - idna conversion support
           typeless anymore            implemented (related to feature #849)
   
         * src/include/pa_exception.h: - exception type string for invalid          * configure.in, src/main/Makefile.am,
           date range was added            src/targets/apache/Makefile.am, src/targets/cgi/Makefile.am:
             libpunycode added in Unix
 2008-09-03  misha  
   2015-04-21  moko
         * src/: classes/file.C, main/pa_string.C: - exception while pce  
           operations not typeless anymore          * configure.in: large files support
   
         * src/include/pa_exception.h: - exception type for pce operations  2015-04-15  moko
           was added  
           * src/lib/punycode/: Makefile.am, pa_convert_utf.c,
         * tests/: 191.html, 191_a.p, 191_b.p: - tests for calling .CLASS            pa_convert_utf.h, pa_idna.c, pa_idna.h, pa_punycode.c,
           and .CLASS_NAME insite classes            pa_punycode.h: initial version for punycode/idna support library
             (ticket #849)
         * src/classes/table.C: - don't save table header whiile  
           ^table.save[append;filename] if file exists  2015-04-08  moko
   
 2008-09-02  misha          * src/: classes/curl.C, classes/date.C, classes/file.C,
             classes/image.C, classes/mail.C, classes/reflection.C,
         * src/main/compile.y, src/main/compile_tools.h,            classes/string.C, classes/xnode.C, include/pa_request.h,
           src/types/pa_vstateless_class.h, src/main/compile.tab.C,            include/pa_string.h, include/pa_stylesheet_connection.h,
           tests/182_dir/a1.p, tests/182_dir/a2.p: - append option was            main/compile.y, main/compile_tools.h, main/execute.C,
           renamed to partial and it login changed: we must mark class as            main/pa_common.C, main/pa_request.C, main/pa_string.C,
           partial for allow their modifications in future.            main/pa_xml_io.C, main/untaint.C, types/pa_vclass.C,
             types/pa_vcookie.C, types/pa_vfile.C, types/pa_vform.C,
 2008-08-29  misha            types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
             types/pa_wwrapper.h, main/compile.tab.C: removed most of the
         * tests/results/022.processed: - testing taint[regex] in mask for            clang compiler warnings (closes issue #1018)
           file:list  
           * src/include/pa_string.h: String::Body comparation operators with
         * tests/022.html: - testing taint[regex] in mask for file:list            char * added (related to issue #958)
   
         * tests/022_dir/b[b].txt: - file for testing taint[regex] in mask  2015-04-07  moko
           for file:list was added  
           * src/main/compile.tab.C: YYMALLOC/YYFREE defined to
         * src/classes/file.C: - bugfix: ^taint[regex][] didn't works in            pa_malloc/pa_free to remove system malloc/free usage (related to
           file:list            issue #1018)
   
 2008-08-26  misha          * src/: classes/table.C, classes/xdoc.C, doc/memory.dox,
             include/pa_hash.h, include/pa_memory.h, lib/gd/gif.C,
         * src/types/pa_vobject.C: - we must get .CLASS and .CLASS_NAME from            lib/gd/gif.h, lib/smtp/smtp.C, main/compile.y, main/pa_charset.C,
           last derived object            main/pa_http.C, main/pa_request.C, main/pa_string.C,
             main/pa_xml_io.C, targets/apache/mod_parser3_core.C,
         * src/classes/image.C: - many strings "image.format" replaced by            types/pa_vconsole.h, types/pa_vdouble.h, types/pa_vfile.C,
           IMAGE_FORMAT constant string - handle GPS info while parse exif -            types/pa_vform.C, types/pa_vint.h: new(UseGC) replaced with new,
           understand some more exif tags            malloc/strdup/free replaced with pa_ version and checks for
             accidental use of non-pa_ version added (related to issue #1018)
         * src/include/pa_exception.h: - string "image.format" was added  
   2015-04-03  moko
 2008-08-21  misha  
           * buildall: pcre-8.33 -> pcre-8.36
         * src/: main/pa_string.C, classes/file.C: - use method for print  
           pcre_exec text error          * src/: main/compile.y, classes/form.C, classes/mail.C,
             classes/op.C, classes/string.C, main/compile.tab.C,
         * src/main/pa_common.C: - method for print pcre_exec text error was            main/compile_tools.C, main/pa_http.C, main/pa_request.C,
           added            main/pa_sql_driver_manager.C, types/pa_vfile.C,
             types/pa_vhashfile.C: C++11 compilation errors fixed (related to
         * src/include/pa_common.h: - method declaration for print pcre_exec            ticket #958)
           text error was added  
           * src/: classes/file.C, include/pa_common.h, include/pa_sapi.h,
 2008-08-19  misha            main/pa_common.C, main/pa_http.C, main/pa_request.C,
             targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
         * src/main/execute.C: - bugfix: opcodes must be in separate            targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_vform.C,
           namespace while debug execution as well            types/pa_vform.h, types/pa_vrequest.C, types/pa_vrequest.h:
             $request:headers, $request:method added (implements feature
         * tests/: 015.html, results/015.processed: - test for escaping some            #1007)
           parser chars was added  
   2015-03-17  misha
 2008-08-18  misha  
           * tests/302.html: - test for
         * tests/: 190.html, 190.p, results/190.processed: - test for            ^json:string[...;$._default[method-name]]
           $caller.self.field + default getter in one class was added  
           * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
         * tests/: 189.html, results/189.processed: - test for            types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C: - if
           ^date::create[date object]            option $._default[method-name] is specified in ^json:string[], a
             method with specified name will be called for classes/objects
         * tests/: 188.html, results/188.processed: - tests for match with            serialization ( new feature: #982 )
           UTF-8 strings  
   2015-03-16  misha
         * src/main/pa_string.C: - option 'U' (ungreedy) was added to  
           ^string.match[]          * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
             main/compile_tools.h, main/execute.C, types/pa_vconsole.h,
         * ChangeLog: - parser 3.3.0 beta13            types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.C,
             types/pa_venv.h, types/pa_vform.C, types/pa_vform.h,
 2008-08-15  misha            types/pa_vhashfile.h, types/pa_vjunction.C, types/pa_vjunction.h,
             types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
         * src/lib/pcre/: LICENCE, Makefile.am, README, Tech.Notes, get.c,            types/pa_vmemory.h, types/pa_vmethod_frame.C,
           internal.h, pcre.3, pcre.3.html, pcre.3.txt, pcre.c, pcre.h,            types/pa_vmethod_frame.h, types/pa_vregex.C, types/pa_vrequest.C,
           pcre.vcproj, study.c, maketables.c, pcre_dftables.vcproj,            types/pa_vrequest.h, types/pa_vstateless_class.C,
           dftables.c: - old PCRE files removed            types/pa_vstateless_class.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
             types/pa_vxnode.C, types/pa_vxnode.h: - $var.CLASS &
         * src/lib/pcre/config.h: - configuration for PCRE library            $var.CLASS_NAME now have special opcodes. This can be switched
             off by commenting #define OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL
         * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -            on pa_opcode.h ( new feature: #844 )
           use PCRE library from win32\pcre instead of parser3\src\lib\pcre  
   2015-03-15  misha
         * src/: classes/file.C, main/pa_string.C: - moved to new PCRE  
           library and set flag UTF8 if $request:charset is UTF-8          * tests/075.html: - test for $response:header[]
   
         * src/: include/pa_charset.h, main/pa_charset.C, main/pa_globals.C,          * src/types/pa_vresponse.C: - $response:header[] deletes header
           include/pa_config_fixed.h: - moved to new PCRE library            that was set earlie ( new feature: #1001 )
   
         * src/: main/main.vcproj, types/types.vcproj,  2015-03-12  misha
           classes/classes.vcproj, lib/Makefile.am: - use PCRE library from  
           win32\pcre instead of parser3\src\lib\pcre          * tests/246.html: - more tests for ^hash._at[]
   
         * src/: include/pa_opcode.h, include/pa_operation.h,          * src/: classes/hash.C, include/pa_hash.h: - ^õýø._at[...] now
           main/compile.C, main/compile.y, main/compile_tools.C,            accepts second param [key|value|hash] ( new feature: #1012 )
           main/compile_tools.h, main/execute.C, main/compile.tab.C: -  
           opcodes were moved to separate namespace  2015-03-09  moko
   
 2008-08-14  misha          * src/types/pa_vmail.C: exception for everything but
             $mail:received, closes issue #1011
         * src/types/pa_vstateless_class.C: - newline at the end missed  
   2015-02-20  moko
         * src/main/untaint.C: - char '-' also prefixed by '\' while regex  
           tainting          * tests/: 275.html, results/275.processed: hex detection in
             pa_atoui fix test (closes issue #1010)
 2008-08-11  misha  
           * src/main/pa_string.C: hex detection in pa_atoui fixed (closes
         * tests/: 187.html, 187.p, results/187.processed: - tests for            issue #1010)
           $caller.self, $caller.self.field and $caller.self.field[value]  
           were added  2015-02-17  moko
   
         * src/types/pa_vmethod_frame.h: - still need to check 'self'          * src/types/pa_vmail.C: closes issue #1009 - mail content should be
           runtime as well (for $caller.self)            tainted.
   
 2008-07-25  misha  2015-02-03  misha
   
         * tests/: 021.html, 032.html, 033.html, 047.html, 055.html,          * tests/301.html: - test for ^json:string($double) causes
           059.html, 061.html, 064.html, 067.html, 068.html, 085.html,            exception. bugfix: #1008
           086.html, 098.html, 109.html, 121.html: - set correct charsets in  
           tests with international characters          * src/classes/json.C: - ^json:string($double) causes exception.
             bugfix: #1008
 2008-07-23  misha  
           * tests/014.html: - updated for work with ^hash.delete[]
         * src/main/pa_http.C: - escape $cookies as %uXXXX while  
           file::load[...;http://  2015-01-12  misha
   
         * src/: main/pa_string.C, main/pa_globals.C, classes/file.C: - pcre          * src/: classes/form.C, include/pa_common.h,
           now everywhere in separate namespace            include/pa_request_info.h, main/pa_common.C, types/pa_vform.C,
             types/pa_vform.h: - supports body with PUT method as well ( new
         * src/types/pa_vmethod_frame.h: - looking for caller before looking            feature: #1006 )
           for vars  
           * src/classes/file.C: - warnings war
         * src/main/: compile.y, compile.tab.C: - characters '@' and '#' now  
           can be escaped by '^'  2015-01-11  misha
   
 2008-07-22  misha          * tests/300.html: - test for ^hash.delete[] is added
   
         * src/classes/string.C, tests/186.html: - names changes:          * src/classes/hash.C: - ^hash.delete[] clear all hash ( new
           escape=>js-escape, unescape=>js-unescape            feature: #989 ) - tiny optimization in intersects
   
 2008-07-21  misha  2015-01-06  moko
   
         * tests/results/186.processed: - test for string escape/unescape          * src/types/pa_vmail.C: file names transcode added, to and cc added
             with transcode, attachments detection fixed
         * tests/186.html: - test for string escape/unescape  
           * src/main/pa_request.C: filling mail received after cgi/auto.p
         * src/classes/string.C: - string has escape and unescape methods            load to allow charset switch (related to issue #996)
           now  
   2014-12-31  moko
         * src/: include/pa_string.h, main/pa_string.C: - escape method was  
           added          * src/types/pa_vmail.C: from and subject now transcoded if not
             UTF-8 source charset (fixes issue 996)
         * src/: include/pa_charset.h, main/pa_charset.C: - more escape  
           method-layers added (with different params)          * src/main/pa_exception.C: fixed string from stack bug (closes
             issue #1000)
 2008-07-18  misha  
   2014-12-11  misha
         * tests/results/185.processed: - test for ^str.pos[substr](offset)  
           was added          * src/types/pa_vhashfile.C: - check if key is not empty before
             access ( bug fix: #1005 )
         * tests/185.html: - test for ^str.pos[sub](offset) added  
   2014-11-13  misha
         * src/classes/string.C, src/classes/void.C, operators.txt: -  
           ^string.pos[substr](offset) -- 2nd param accepted now          * src/main/compile.y: - PC.append does not reset to false while
             creating a new class. bugfix: #990
         * src/main/pa_string.C: - .pos works fine with offset for utf-8  
           strings          * tests/299.html: - test for creation class after working with
             partial class (create+append)
 2008-07-17  misha  
           * src/types/pa_vobject.C: - @GET[def] always returns true. bugfix:
         * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -            #995
           helper length added for mid for small optimisation  
           * tests/232.html: - test for @get[def] added
 2008-07-16  misha  
   2014-10-12  moko
         * tests/: 185.html, results/185.processed: - tests for  
           length/left/right/mid/pos with utf-8 strings          * src/lib/pcre/pcre_internal.vcproj: correct path
   
         * src/classes/string.C: - left/right/mid/length/pos works fine for          * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
           utf-8 strings            lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
             lib/pcre/pcre_internal.vcproj, main/main.vcproj,
         * src/main/untaint.C: - comments removed            targets/apache/ApacheModuleParser3.vcproj,
             targets/apache/ApacheModuleParser3Core.vcproj,
         * src/: include/pa_string.h, main/pa_string.C,            targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
           include/pa_charset.h, main/pa_charset.C: - methods for working            types/types.vcproj: project GUID inserted in *.vcproj for correct
           with pos/mid for strings in utf-8 were added            conversion in newer VS versions
   
 2008-07-15  misha          * parser3.sln, src/lib/pcre/pcre_internal.vcproj:
             pcre_internal.vcproj added
         * tests/: 184.html, results/184.processed: - test for case body as  
           expression: $var(^switch(1){^case(1)(true)..})  2014-08-28  moko
   
         * src/classes/op.C: - case body can be expression now:          * src/lib/pcre/: Makefile.am, pa_pcre_chartables.c,
           $var(^switch(1){^case(1)(true)..})            pa_pcre_internal.h, pa_pcre_valid_utf8.c: _pcre_default_tables
             and pcre_valid_utf are copied to parser3 code (fixes issue #991)
         * tests/: results/183.processed, 183.html: - added test for testing  
           new cookie encoding (%uXXXX)  2014-06-30  misha
   
         * src/main/untaint.C: - cookies outputs as %uXXXX now. while          * tests/298.html: - tests for ^reflection:def[class;className]
           decoding for backward compatibility they decoded from %XX in            added
           request:charset too  
           * src/classes/reflection.C: - ^reflection:def[class;className]
         * src/: types/pa_vcookie.C, types/pa_vcookie.h, main/pa_request.C:            added ( new feature: #918 )
           - cookie class now decode cookies before first access after last  
           request:charset changing (as form class).  2014-06-29  misha
   
         * src/main/pa_charset.C: - added method escape for escaping cookies          * src/classes/table.C: - ^table::create[unsupported data] -
           as %uXXXX - before transcode calculate required space for dest            exception comment changed to "body must be table or code" ( bug
           string. it reduce mem usage for transcode            fix: #951 )
   
         * src/include/pa_charset.h: - added method escape for escaping          * tests/: 261.html, results/261.processed: - tests for
           cookies as %uXXXX            ^json:string[...;$.void[null|string]] added
   
         * src/include/pa_string.h: - taint lang (internal) L_HTTP_COOKIE          * src/: classes/json.C, types/pa_value.h, types/pa_vvoid.h: - new
           was added. will used for escaping cookies as %uXXXX            option $.void[string|null] added to ^json:string[...] ( new
             feature: #952 )
         * src/include/pa_common.h: - escape method has new option for skip  
           converting '+' to a space char  2014-06-28  moko
   
         * src/main/: pa_common.C, pa_http.C: - skip BOM code before          * src/classes/curl.C: $.charset now processed before other curl
           transcode - escape method has new option for skip converting '+'            options (closes issue #980)
           to a space char  
   2014-05-23  misha
 2008-07-08  misha  
           * src/classes/json.C: - bug fix: #987
         * src/classes/op.C: - bugfix in switch - case "stops" on 1st match  
           (no UE if more then 1 case matches anylonger) - optimization:  2014-05-04  misha
           doing searching.as_string() || searching.as_double() only once  
           * tests/: 253.html, 253_json.txt: - test for
 2008-07-04  misha            ^json:parse[$.int(false)] is added
   
         * src/types/pa_vdate.h: - is_evaluated_expr returning true added so          * src/classes/json.C: - To ^json:parse[] added option $.int(bool,
           now ^date::create[date object] works            default true). The option is similar to $.double(bool) but for
             integers.
         * src/classes/string.C: - left and right added as aliases for start  
           and end in ^string.trim[]  2014-05-01  moko
   
 2008-07-03  misha          * src/classes/file.C: "PARSER_VERSION" -> PARSER_VERSION ( bugfix:
             #12 )
         * src/classes/file.C: - allow $.limit for file::sql as well  
   2014-04-16  moko
         * src/classes/file.C: - allow $.offset option for file::sql - force  
           send limit=1 to query for use sql specifics authomatically          * src/main/pa_http.C: response-charset option should finally work
             now (fix for issue #867)
         * src/classes/: hash.C, string.C, table.C: - don't throw exception  
           if $.limit value if empty. autoconvert it as everywere          * src/main/pa_http.C: response-charset option should work now (fix
             for issue #867)
 2008-07-02  misha  
   2014-03-07  moko
         * configure.in: - time to change version number to 3.3.0 %-)  
           * buildall: libgc moved
         * src/include/pa_version.h: - time to change version number to  
           3.3.0 %-)          * buildall: libgc moved
   
 2008-06-26  misha  2013-12-29  moko
   
         * src/classes/: file.C, hash.C, string.C, table.C, void.C: -          * src/classes/string.C: ^string:js-unescape result now tainted,
           $.limit(0) fixes            closes issue #966
   
         * src/sql/pa_sql_driver.h: - new drivers API and new version (10.0)          * tests/: 186.html, results/186.processed: ^string:js-unescape
           - $.limit(0) fixes            result now tainted, issue #966
   
         * src/sql/pa_sql_driver.h: - SQL_NO_LIMIT added (preparations to  2013-12-03  moko
           new API)  
           * src/: classes/memcached.C, types/pa_vmemcached.C,
         * src/: include/pa_sql_driver_manager.h,            types/pa_vmemcached.h: memcached open $.skip-connect(true|false)
           include/pa_sql_connection.h, main/pa_sql_driver_manager.C,            option was added for http://www.parser.ru/forum/?id=79343
           classes/op.C: - document_root added  
           * src/classes/file.C: bugfix for
         * src/main/compile.tab.C: - error message was changed            http://www.parser.ru/forum/?id=79337
   
 2008-06-25  misha  2013-11-05  moko
   
         * src/main/compile.y: - error message was changed          * configure.in, src/include/pa_version.h: 3.4.3 -> 3.4.4b
   
 2008-06-24  misha          * src/main/pa_globals.C: spelling fixed
   
         * tests/176_dir/: a.p, d.p: - @OPTION => @OPTIONS  2013-10-29  moko
   
         * tests/: 182.html, 182_dir/a1.p, 182_dir/a2.p, 182_dir/a3.p: -          * src/lib/json/json.vcproj: json.c -> pa_json.C
           tests for @OPTIONS\nappend  
           * src/lib/json/pa_json.C: C++ compatibility addes, related to issue
         * tests/: 176.html, results/176.processed: - @OPTION => @OPTIONS            #892
   
         * src/main/: compile.y, compile.tab.C: - stuff for @OPTIONS\nappend          * src/: classes/json.C, lib/json/Makefile.am, lib/json/json.c,
             lib/json/json.h, lib/json/pa_json.C: json.c -> pa_json.C (for
         * src/main/compile_tools.h: - new methods for @OPTIONS\nappend            exceptions to be thrown thougth json library), related to issue
             #892
         * src/types/pa_vmethod_frame.h: - ALL_VARS_LOCAL_NAME moved fo  
           compile.y          * src/main/pa_charset.C: avoid compilation bug in Debian 6.0.8 x32,
             related to issue #896
 2008-06-17  misha  
   2013-10-24  moko
         * src/main/: compile.y, compile.tab.C: - bugfix in 'def'  
           compilation: ^if(default){true. it's incorrect. must be          * configure.in, src/include/pa_version.h: 3.4.3rc -> 3.4.3
           exception}  
   2013-10-23  moko
 2008-06-16  misha  
           * README: actualization
         * tests/: 181.ent, 181.html, results/181.processed: - test for  
           checking external reference loading with 'http://localhost'  2013-10-22  moko
           prefix while creating xdoc  
           * src/targets/apache/mod_parser3.c: Adopted apache 2.4
         * tests/180.html: - use ^inet:ntoa[] and ^inet:aton[] instead of            compatibility patch from Sergey Kirpichev
           ^math:long2ip[] and ^math:ip2long[]  
           * tests/: 297.html, results/297.processed: non-working getter fix
         * src/types/: pa_vobject.C, pa_vobject.h: - get_scalar_value method            test for issue #948
           added which use scalar stateless class method when user object  
           used in scalar context - use get_scalar_value when user object          * src/: include/pa_request.h, main/pa_request.C: Now getter is not
           requested in scalar context            called when saving value of $match variable in ^string.match[] to
             increase compatibility (related to issue #948).
         * src/main/pa_common.C: - size must be int but not size_t or we  
           can't compare with 0 sprintf result          * src/: include/pa_request.h, targets/cgi/parser3.C: minor header
             usage optimization
         * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,  
           main/execute.C, main/pa_request.C: - go back to one VMethodFrame  2013-10-21  moko
           with internal switch between local/global vars  
           * tests/: 182.html, results/182.processed: local path removed for
         * src/types/pa_vclass.C: - register scalar if method @GET[] was            compatibility
           specified  
           * tests/: 244.html, 253.html, 254.html, 275.html, 281.html,
         * src/types/: pa_vstateless_class.C, pa_vstateless_class.h,            results/244.processed, results/253.processed,
           pa_vstateless_object.h: - stateless class and object now has            results/254.processed, results/275.processed,
           private scalar field and getter/setter for working with it            results/281.processed: try_catch -> try-catch
   
         * src/classes/math.C: - methods math:long2ip & math:ip2long were          * tests/: 288.html, 294.html, 296.html, results/288.processed,
           moved to inet static class            results/294.processed, results/296.processed: try_catch ->
             try-catch
         * src/classes/: classes.vcproj, inet.C, Makefile.am: - inet static  
           class added (^inet:aton[IP], ^inet:ntoa(number))  2013-10-20  moko
   
         * tests/: 180.html, results/180.processed: - tests for          * tests/: 296.html, results/296.processed: test for xsl exception
           ^math:long2ip(long) and ^math:ip2long[IP]            for issue #938 added.
   
         * src/classes/math.C: - ^math:ip2long[IP] added          * src/: include/pa_xml_exception.h,
             main/pa_stylesheet_connection.C: forgotten to be replaced
 2008-06-11  misha            XmlException is now replaced (once again closes issue #938)
   
         * src/main/pa_xml_io.C: - use file_read_text again because of we  2013-10-18  moko
           need cut BOM code and remove DOS newline chars. but don't  
           transcode it anyway.          * buildall: disable clock_gettime detection to avoid librt linking
             (which in turn depends on libpthread), related to issue #943
         * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,  
           main/pa_http.C: - option for disable transcoding while file_read  2013-10-18  misha
           and file_read_text added  
           * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
 2008-06-10  misha            lib/smtp/smtp.vcproj, main/main.vcproj,
             targets/apache/ApacheModuleParser3Core.vcproj,
         * tests/: 179.html, 179.p, results/179.processed: - test for many            targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
           classes in 1 file            types/types.vcproj: - new locations for libxml2 includes where
             added to vcproj files
         * src/main/: compile.C, compile_tools.h: - compile return list of  
           classes now.  2013-10-18  moko
   
         * src/main/: compile.y, compile.tab.C: - compile return list of          * src/classes/: hashfile.C, op.C: hopefully last part of issue #948
           classes now. internals.            fix
   
         * src/main/pa_request.C: - compile return list of classes now. try          * tests/: 295.html, results/295.processed: test for issue #948
           call @conf and @auto for each returned class            updated
   
         * src/include/pa_request.h: - compile return list of classes now          * src/classes/table.C: hopefully last lost part for issue #948 fix.
             :)
         * src/types/pa_vstateless_class.h: - typedef ArrayClass added (for  
           return list of classes when compile buf)          * tests/: 295.html, results/295.processed: test for issue #948
             added
 2008-06-07  misha  
           * src/: classes/hash.C, classes/string.C, classes/table.C,
         * src/main/pa_request.C: - constructing VRequest object with 3rd            include/pa_request.h, types/pa_method.h: for getters and setters
           param -- form            to be executed request.put_element should be called, not
             context.put_element (fixes issue #948)
         * src/types/: pa_vrequest.C, pa_vrequest.h: - constructor acceps  
           3rd param: form. needed for get post_charset  2013-10-17  moko
   
         * src/types/: pa_vform.C, pa_vform.h: - VForm::get_post_charset()          * src/classes/xdoc.C: libxml 2.9.1 compatibility with define
           added            LIBXML2_NEW_BUFFER check (closes issue #943)
   
         * src/: include/pa_common.h, main/pa_common.C, main/pa_http.C,          * buildall: libxml 2.9.1 build is broken --without-reader.
           types/pa_vform.C, types/pa_vform.h: - some polish  
   2013-10-16  moko
 2008-06-06  misha  
           * configure.in, src/include/pa_version.h: 3.4.3b -> 3.4.3rc
         * src/types/: pa_vform.C, pa_vform.h: - if POST -- try detec  
           charset and decode chars from it but not from response:charset          * tests/: 294.html, results/294.processed: test for issue #938
   
         * src/main/pa_http.C: - detect_charset moved out of here          * src/: classes/xdoc.C, classes/xnode.C,
             include/pa_xml_exception.h, main/pa_xml_exception.C: XmlException
         * src/: include/pa_common.h, main/pa_common.C: - more helpers            now calls fixUTF8 if source charset is UTF-8 (closes issue #938)
           methods moved here - unescape_chars accepn one charset now  
           * buildall: pcre-8.30 -> pcre-8.33 libxml2-2.8.0 -> libxml2-2.9.1
         * src/main/pa_http.C: - new constants used - don't allow            libxslt-1.1.26 -> libxslt-1.1.28
           $.content-type in ^file::load[;http://;$.method[POST]] - add  
           charset info while ^file::load[;http://;$.method[POST]] - option          * src/: include/pa_charset.h, lib/pcre/pa_pcre_internal.h,
           $.omit-post-charset(true) added to ^file::load[;http://] for            main/pa_charset.C: fixUTF8 method added to replace invalid UTF-8
           disabling charset during post            to '?', related to issue #938
   
         * src/types/pa_vform.C: - new constants used  2013-10-15  moko
   
         * src/include/pa_common.h: - some constants were added          * src/: include/pa_common.h, main/pa_charset.C, main/pa_common.C,
             main/untaint.C: json chars 0x01-0x1F now are escaped as \u00XX,
         * src/: classes/form.C, types/pa_vform.C: - use StrStartFromNC            minor optimizations (closes issue #896)
           instead of StrEqNc  
           * tests/results/: 292.processed, 293.processed: results updated to
         * src/main/pa_common.C: - new method for caseless search            comply with issue #896
           c-substring in c-string - use isxdigit instead of is_hex_digit  
           * tests/: 292.html, 293.html, results/292.processed,
         * src/include/pa_common.h: - new method for caseless search            results/293.processed: tests for json escaping
           c-substring in c-string  
   2013-10-14  moko
 2008-06-05  misha  
           * src/: include/pa_common.h, main/pa_common.C: minor rearrangements
         * tests/results/178.processed: - test for testing default getter            and cleanup, code moved from .h to .C, no changes in code
   
         * tests/178.html: - test for testing default getter  2013-10-12  moko
   
         * tests/178_dir/: 178a.p, 178b.p, 178c.p, 178d.p, 178e.p: - classes          * tests/results/119.processed: updated test result commited
           for test for testing default getter  
           * tests/: 291.html, results/291.processed: test for issue #894
         * src/main/execute.C: - default getter soul            added
   
         * src/types/: pa_vobject.C, pa_vobject.h: - get default getter if          * src/types/pa_wcontext.h: base methods call support function
           requested objects' field not found            get_somebody_entered_some_class should not be true forever, as
             wcontext can have many get_elements calls (fixes issue #894)
         * src/types/pa_vclass.C: - register default getter if defined - get  
           default getter if requested field not found  2013-10-11  moko
   
         * src/types/pa_vstateless_object.h: - method get_default_getter was          * tests/: 290.html, results/290.processed: test for junction GPF
           added            issue #942 added
   
         * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -          * src/types/pa_vmethod_frame.h: GPF if method junctions is passed
           pointer to default getter and methods for get/set it were added            to native method fixed (closes issue #942)
   
         * src/types/: pa_junction.h, pa_vjunction.h: - junction has          * tests/: 158.html, results/158.processed: test for csv-string[]
           auto_name field (for default getter)            added
   
 2008-06-04  misha          * src/classes/table.C: minor fixes for table.csv-string[] (closes
             feature #907)
         * src/main/pa_xml_io.C: - load external xml in binary mode (no  
           transcoding, no cutting BOM code, no fixing line breaks) and get          * src/classes/table.C: ^table.csv-string[] from misha@ (implements
           it to libxml "as is"            feature #907)
   
 2008-06-03  misha  2013-10-09  moko
   
         * src/main/pa_common.C: - use store_Char instead of          * src/: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
           transcodeCharFromUTF8            types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
             types/pa_vstateless_class.C: GET_default, SET_default now works
         * src/: include/pa_charset.h, main/pa_charset.C: - method            properly not only in objects, but in classes as well (closes
           store_Char added, transcodeCharFromUTF8 -- removed            issue #903)
   
 2008-06-02  misha          * tests/: 289.html, results/289.processed: GET/SET_default now
             works in classes, not only objects, test case added, related to
         * tests/: results/177.processed, 177.html: - test for checking            issue #903
           .[acm]date after local ^file::load[] was added  
           * tests/: 288.html, results/288.processed: test for endless
         * tests/: results/176.processed, 176.html: - test for checking            recursion bug added (related to issue #903)
           @OPTION\locals + @method[vars][locals] added  
   2013-10-05  moko
         * tests/results/auto.p: - CLASS_PATH specified for checking use  
           * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
 2008-05-30  misha            classes/table.C, main/execute.C, types/pa_method.h,
             types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
         * src/main/: compile.y, compile.tab.C: - changes in compiler:            types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
           @OPTION\nlocals + @method[vars][;locals;] were added            types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
             types/pa_vimage.C, types/pa_vimage.h, types/pa_vmemcached.C,
         * src/main/execute.C: - code of OP_CALL and OP_CALL__WRITE was            types/pa_vmemcached.h, types/pa_vmethod_frame.h,
           moved to separate method op_code - switch from VMethodFrame to            types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
           VMethodFrameGlobal + VMethodFrameLocal            types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
             types/pa_vstateless_class.h, types/pa_vstateless_object.h,
         * src/include/pa_request.h: - code of OP_CALL and OP_CALL__WRITE            types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
           was moved to separate method op_code            optimization: put_element no longer has "bool areplace" argument,
             related to issue #903
         * src/main/pa_request.C: - use VMethodFrameGlobal instead of  
           VMethodFrame now  2013-10-03  moko
   
         * src/types/pa_vstateless_class.h: - stateless class have bool flag          * tests/results/182.processed: result for $.replace(false) test
           all_vars_local as well            commited
   
         * src/types/: pa_vmethod_frame.h, pa_vmethod_frame_global.h,          * src/classes/date.C: ^date::create(number) processed correctly
           pa_vmethod_frame_local.h, Makefile.am: - who children for            (fixes issue #901)
           VMethodFrame were added: one (global) works as VMethodFrame  
           before and second (local) write all vars in self vars scope          * src/classes/image.C: as_no_junction removed, as param can be
             expression (closes issue #931)
         * src/types/pa_method.h: - method has bool flag all_vars_local now  
           * tests/233.html: test for issue #931 added
 2008-05-29  misha  
   2013-10-02  moko
         * tests/: 129.html, results/129.processed: - more tests for  
           ^table.hash[]          * tests/: 182.html, 182_dir/a5.p: test for $.replace(true)
             modified, test for $.replace(false) added
         * src/classes/hash.C: - ^hash::sql has a new option:  
           $.type[hash|string|table] as ^table.hash[] one.          * src/main/compile_tools.h: forgotten class replace returned. :)
   
         * src/classes/op.C: - ^try has 3rd param now: finally code which  2013-09-30  moko
           executed anyway after try or catch section  
           * tests/: 141.html, results/141.processed: md5 tainting test added
 2008-05-27  misha  
           * src/: classes/op.C, include/pa_request.h, main/compile.y,
         * src/classes/table.C: - bugfix: ^table.hash[key][$.type[table]]            main/compile_tools.h, main/pa_request.C: allow_class_replace
           must not fail if $.distinct(1) wasn't specified            implemented; $.replace option added to ^process and ^use
   
 2008-05-26  misha  2013-08-27  moko
   
         * src/classes/op.C: - allow ^throw[my type]          * src/classes/: file.C, json.C, math.C, string.C, xdoc.C:
             cstr_to_string_body_untaint should be called with charsets for
 2008-05-22  misha            possible uri language and connection for possible sql language.
             related to issue #857
         * configure.in, configure: - version number updated to 3.2.4b  
           * buildall: and -> or fixed
         * src/classes/: op.C, string.C: - trim format string before  
           eval/format  2013-08-26  moko
   
         * tests/: results/175.processed, 175.html: - more tests for          * buildall: prepare_ functions logic changed to support
           different format strings in .format[]            gc-7.2d.tar.gz extracting to gc-7.2 directory
   
         * src/types/pa_vform.C: - while decoding get values decode %uXXXX  2013-08-23  moko
           as well (not only %XX)  
           * src/include/pa_config_fixed.h: gc and xml libs are now linked
         * src/main/pa_common.C: - unescape_chars can decode %uXXXX if            statically
           charset specified - checks for format before print number  
           (^d.format[>...<], ^eval($d)[>...<]) - formating with spaces  2013-08-22  moko
           (instead of tabs) removed  
           * src/classes/string.C: String::Empty used (related to issue #912)
         * src/include/pa_common.h: - unescape_chars can decode %uXXXX if            append_know_length removed (related to old GPF bug)
           charset specified  
   2013-08-21  moko
         * src/: include/pa_charset.h, main/pa_charset.C: - method for get  
           char in requested charset from utf code was added          * src/classes/math.C: untaint(L_AS_IS) added for md5 and sha1
   
 2008-05-19  misha          * src/classes/math.C: ^math:digest[...;$file] support added
             (related to ticket #857
         * tests/: 174.html, results/174.processed: - test for  
           ^hashfile.cleanup[] added          * tests/: 141.html, results/141.processed: ^math:digest[...;$file]
             implemented
         * src/classes/hashfile.C: - optimization: don't create any key or  
           value variable if it's name weren't specified          * src/types/pa_vhashfile.h: warning war
           (^hf.foreach[;v]{...})  
           * src/: classes/json.C, classes/op.C, include/pa_hash.h,
 2008-05-16  misha            include/pa_request.h, main/pa_request.C, types/pa_value.h:
             anti_endless_json_string_recoursion removed from request;
         * src/classes/hash.C: - optimization: don't create any key variable            json_string_recoursion added to json_options; $.indent[indent
           if variable name wasn't specified (^h.foreach[;v]{...})            value] now supported and passed within recoursion closes feature
             #937
 2008-05-15  misha  
           * tests/: 287.html, results/287.processed: test for feature #937
         * src/classes/op.C: - small changes  
   2013-07-31  moko
         * src/classes/hashfile.C: - code reformating (as hash.foreach)  
           * src/lib/json/: json.c, pa_json.C: STATE__X -> STATE_XX for cygwin
         * src/classes/hash.C: - calculate var_context once before foreach            compilation having #define _S
   
 2008-05-14  misha          * src/main/pa_globals.C: cleanup
   
         * src/classes/hashfile.C: - incorrect vars context calculation for  2013-07-30  moko
           ^hashfile.foreach[;]{} fixed  
           * src/: classes/table.C, include/pa_common.h, main/pa_charset.C,
         * src/classes/: hash.C, table.C: - little optimisation            main/pa_common.C: vs2003 warning war
   
         * src/classes/file.C: - bugfix: double absolute path while loading          * src/lib/json/: json.c, pa_json.C: vs2003 warning war
           file  
           * src/lib/json/: json.c, pa_json.C: vs2003 compilation fix
         * tests/: 174.html, results/174.processed: - tests for hashfile  
           were added          * src/lib/md5/pa_sha2.c: warning war
   
         * buildall-with-xml: - moving to libxslt 1.1.24  2013-07-29  moko
   
 2008-04-30  misha          * src/lib/json/: json.c, json.h, pa_json.C, pa_json.h: some libjson
             patches from github
         * src/classes/file.C: - stat file while loading (local only) so  
           .adate, .mdate and .cdate available without additional ::stat          * src/: classes/bool.C, classes/double.C, classes/int.C,
             classes/memcached.C, include/pa_config_includes.h,
 2008-04-28  misha            types/pa_vfile.C, types/pa_vfile.h: warning war
   
         * src/classes/file.C: - $.name and $.content-type available for          * src/lib/json/json.vcproj: C++ -> C
           stated file  
           * src/lib/json/: json.c, pa_json.C: C++ warning revert
 2008-04-14  misha  
           * src/lib/json/: json.c, pa_json.C: windows compatibility
         * src/targets/cgi/parser3.C: - new year in copyright %-)  
           * src/lib/json/: json.c, pa_json.C: windows compatibility
         * src/include/pa_version.h: - new version number in head  
           * src/lib/json/: json.c, pa_json.C: warning war
 2008-04-10  misha  
           * src/lib/json/: json.c, pa_json.C: win32 compilation issues fixes
         * tests/: 080.html, results/080.processed: - cut '0' from  
           exponential part because of on diff OS it differ (20 or 020 for          * src/include/pa_config_fixed.h: uint16_t added
           ex)  
           * configure.in: uint16_t check added
         * tests/: 119.html, results/119.processed: - check for encoding  
           while creating xdoc          * src/: classes/json.C, lib/json/JSON_parser.C,
             lib/json/JSON_parser.h, lib/json/Makefile.am, lib/json/json.c,
 2008-04-09  misha            lib/json/json.h, lib/json/json.vcproj, lib/json/pa_json.C,
             lib/json/pa_json.h: JSON_parser with non-free licence is replaced
         * buildall-with-xml: - move to libxml 2.6.32 and libxslt 1.1.23            with similar GPL licenced libjson (fixes issue #892)
   
         * src/main/pa_common.C: - comment added  2013-07-25  moko
   
         * src/classes/date.C: - little refactoring          * parser3.sln: dependencies added
   
 2008-04-07  misha          * parser3.sln, src/targets/apache/ApacheModuleParser3.vcproj,
             src/targets/apache/ApacheModuleParser3Core.vcproj: win32 apache
         * src/classes/table.C: - use NO_STRINGSTREAM for switch to old            module support
           style of ^table.save[]: prepare one big string and sabe it at  
           once. it's safe on freebsd 4.x but use much more memory.          * src/targets/apache/mod_parser3_core.C: win32 cleanup
   
         * buildall-with-xml, buildall-without-xml: - option          * src/targets/apache/mod_parser3.c: win32 apache 2.2 module
           --disable-stringstream added (under comment. use it on freebsd  
           4.x)  2013-07-23  moko
   
 2008-02-22  misha          * src/: include/pa_memory.h, main/pa_memory.C: non-working
             PA_DEBUG_GC_MEMORY removed
         * src/main/pa_http.C: - exception if $.body[] and $.forms[]  
           specified together in file::load[;http] - get back transcoding          * src/: main/pa_globals.C, targets/cgi/parser3.C:
           $.body[] in file::load[;http]            PA_DEBUG_DISABLE_GC compilation fix
   
 2008-02-21  misha          * src/: classes/op.C, classes/table.C, include/pa_request.h,
             main/pa_request.C: outdated RESOURCES_DEBUG removed
         * src/classes/date.C: - ^date.gmt-string[] was added  
           * src/: main/pa_os.C, targets/cgi/parser3.C: headers cleanup,
         * src/types/pa_value.C: - method for output date in RFC 822 format            garbage cleanup
           moved to pa_common.h  
           * src/main/pa_common.C: warning war
         * src/include/pa_common.h: - method for output date in RFC 822  
           format moved here from pa_value.C          * src/: include/pa_http.h, main/pa_http.C: headers cleanup
   
         * src/types/pa_vmail.C: - fixed core in sending mail with          * src/: include/pa_common.h, main/pa_common.C: WIN32 -> _MSC_VER,
           attachment in simple mode ($.file[file here]) introduced in 3.2.2            minor cleanup
   
 2008-02-20  misha          * src/: include/pa_dir.h, main/pa_dir.C: loaddir under cygwin now
             uses cygwin, not WIN32 implementation
         * src/main/pa_http.C: - transcode $.headers before escaping into  
           specified charset while ^file::load[...;http://...] (L_URI          * src/main/pa_exec.C: WIN32 -> _MSC_VER, under cygwin unix exec is
           instead of L_HTTP_HEADER) - $.cookies param available in            able to exec shell scripts
           ^file::load[;http://...] now (but we don't parse set-cookies from  
           response yet) (cookies not transcoded as common $cookies)          * src/classes/math.C: ifdef WIN32 cleanup
   
 2008-02-19  misha          * src/types/pa_vmemcached.C: LT_MODULE_EXT used
   
         * src/main/pa_request.C: - rollback: we mustn't force taint          * src/classes/curl.C: LT_MODULE_EXT used
           $response:field values because in this case  
           $response:locateion[http://...] don't works.          * src/include/pa_config_fixed.h: LT_MODULE_EXT defined
   
 2008-02-15  misha  2013-07-22  moko
   
         * src/classes/op.C: - little refactoring          * src/include/: pa_config_fixed.h, pa_config_includes.h: win32
             includes fix
         * src/main/pa_http.C: - taint names of $.headers for load[;http  
           * src/: main/pa_common.C, targets/cgi/parser3.C: includes cleanup
         * src/main/pa_request.C: - force taint values of $response:field  
           * configure.in, src/include/pa_config_includes.h,
 2008-02-14  misha            src/lib/smtp/comms.C, src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
             src/main/pa_exec.C: includes cleanup
         * src/main/pa_request.C: - $response:field transcoded to  
           $response:charset before escaping now          * src/targets/cgi/parser3.C: 2012->2013
   
         * src/main/pa_http.C: - some outdated comments removed          * src/include/pa_version.h: 3.4.2 -> 3.4.3b
   
         * src/classes/date.C: - lastdat -> last-day          * configure.in, src/include/pa_config_includes.h,
             src/include/pa_http.h, src/lib/json/JSON_parser.h,
         * src/classes/date.C: - ^date:lastday(year;month) and            src/main/pa_random.C, src/main/pa_socks.C,
           ^date.lastday[] were added - little code refactoring - comments            src/types/pa_vstatus.C: cygwin support cleanup
           changes  
           * configure.in: dirent.h check added
         * tests/: 159.html, results/159.processed: - test for number of  
           days in February          * src/: include/pa_config_includes.h, include/pa_dir.h,
             main/pa_dir.C: includes cleanup, dirent.h check added filePath
         * src/types/pa_value.C: - fixes in code formatting            not copied
   
         * src/classes/: file.C, op.C, table.C: - fixes in code formatting  2013-07-21  moko
           and comments  
           * src/lib/cord/cord.vcproj: unused cordprnt.c removed
 2008-02-13  misha  
           * src/targets/cgi/: Makefile.am, getopt.c, getopt.h,
         * src/main/pa_common.C: - bugfix for february at leap year            parser3.vcproj: unused getopt.h / getopt.c removed
   
 2008-01-28  misha          * operators.txt, src/classes/file.C, tests/022.html,
             tests/results/022.processed: ^file:list[path][$.filter[regexp]
         * tests/: 160.html, results/160.processed: - more test for cache            $.stat(true)] usage commented
           added  
           * configure.in, src/classes/file.C, src/include/pa_dir.h,
         * src/classes/op.C: - bugfix: cache body executed twice if contains            src/main/pa_dir.C: ^file:list[] now has dir column and when
           unhandled exception            $.stat(true) it has size/*date columns modified patch from misha@
             that closes issue #914.
 2008-01-25  misha  
           * src/: include/pa_config_includes.h, main/pa_globals.C:
         * src/lib/sdbm/sdbm.c: - use arp_malloc instead of malloc (fixed            PA_RELEASE_ASSERTS removed
           bug when hashfile became inavailable after memory:compact)  
           * src/lib/md5/pa_md5c.c: minor cleanup
         * src/lib/sdbm/apr_strings.C: - +arp_malloc  
           * src/lib/json/: JSON_parser.C, JSON_parser.h: headers cleanup,
 2008-01-22  misha            localeconv()->decimal_point usage remoed (related to issue #934)
   
         * src/classes/table.C: - little refactiring and exception texts          * src/lib/cord/: Makefile.am, cordprnt.c, include/cord.h: unused
           changes in method ^table.hash[]            cordprnt.c removed
   
         * src/types/pa_vcookie.C: - link to cookie specification changed          * src/lib/sdbm/: sdbm.c, sdbm_pair.c, pa-include/pa_apr.h,
             pa-include/pa_errno.h, pa-include/pa_file_io.h,
 2008-01-21  misha            pa-include/pa_strings.h: includes cleanup
   
         * tests/: 171.html, cat.sh, results/171.processed: - more tests for          * src/lib/md5/pa_md5c.c: headers cleanup
           file::exec/cgi  
   2013-07-20  moko
         * src/classes/file.C: - bugfix: core while processing headers if  
           executed cgi script don't return content          * src/lib/cord/: cordbscs.c, cordprnt.c, cordxtra.c: includes
             cleanup
 2008-01-18  misha  
   2013-07-19  moko
         * buildall-with-xml: - move to libxml2 version 2.6.31  
           * src/classes/math.C: extern "C" added for crypt
         * src/include/pa_version.h, configure.in: - version number updated  
           to '3.2.3b'  2013-07-18  moko
   
 2007-12-28  misha          * src/classes/math.C: fix redhat7.2 build
   
         * src/: classes/hash.C, include/pa_hash.h: - hash.contain =>  2013-07-17  moko
           hash.contains  
           * configure.in, src/include/pa_config_includes.h,
 2007-12-27  misha            src/include/pa_config_fixed.h: headers actualized (inttypes.h
             added for uint8/32/64_t)
         * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,  
           src/lib/cord/cord.vcproj, src/lib/gd/gd.vcproj,          * src/lib/md5/: pa_md5.h, pa_md5c.c, pa_sha2.c, pa_sha2.h:
           src/lib/ltdl/ltdl.vcproj, src/lib/md5/md5.vcproj,            pa_config_includes.h used for uint32/64_t
           src/lib/pcre/pcre.vcproj, src/lib/pcre/pcre_dftables.vcproj,  
           src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,  2013-07-16  moko
           src/lib/smtp/smtp.vcproj, src/main/main.vcproj,  
           src/targets/cgi/parser3.vcproj,          * src/: include/pa_string.h, main/pa_string.C, types/pa_vform.C,
           src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj: -            types/pa_vform.h, types/pa_vobject.C, types/pa_vobject.h: warning
           back to VS2003 because of Apache 1.3 module can't work if it was            war
           built in VS 2005.  with cgi all file so VS2003 project files can  
           be easy converted to the new format.          * src/main/compile.tab.C: compile.y was updated
   
 2007-12-04  misha          * src/main/compile.y: warning war
   
         * src/types/pa_vcode_frame.h: - changes in comment          * src/: include/pa_exception.h, main/pa_exception.C,
             main/pa_xml_exception.C: warning war
 2007-11-29  misha  
           * src/: include/pa_common.h, main/pa_common.C: warning war
         * src/: types/pa_vcode_frame.h, main/execute.C: - code frame don't  
           intercept strings any longer          * configure.in: beauty :)
   
         * tests/: 173.html, results/173.processed: - tests for          * tests/: 141.html, results/141.processed: sha256/512 added
           $d[^date::now[]] $j{$d} $r[$j] -- must create date object in $r  
           but not in main code frame  2013-07-13  moko
   
         * tests/: 172.html, results/172.processed: - more tests for pass          * src/lib/md5/md5.vcproj: sha2 added
           objects from code frames  
           * src/: lib/md5/pa_sha2.c, lib/md5/pa_sha2.h, lib/md5/Makefile.am,
 2007-11-27  misha            classes/math.C: sha2 support (sha256/sha512 digest)
   
         * tests/: 152.html, results/152.processed: - tests for converting  2013-07-08  moko
           strings 'true'/'false' to bool were added  
           * src/classes/image.C: directory read or other read problem message
         * tests/152.html: - added checks for converting strings            fixed (related to issue #933)
           'true'/'false' to bool  
   2013-07-07  moko
         * src/classes/string.C: - ^srting.bool[] now can convert to bool  
           not only strings with numbers but with values 'true'/'false' as          * AUTHORS: + misha + moko. :)
           well  
   2013-07-06  moko
         * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: - buffer size  
           for parser3.log increased          * src/: classes/curl.C, include/pa_globals.h,
             include/pa_sql_driver_manager.h, lib/memcached/pa_memcached.C,
         * src/main/pa_common.C: - remove_crlf optimize whitespaces now            main/pa_globals.C, main/pa_sql_driver_manager.C: pa_dlinit added
             for lt_dlinit to be called once and lt_dlexit called at right
         * src/include/pa_common.h: - remove_crlf return cstring size now            place (related to issue #925)
   
         * src/include/pa_types.h: - constant with buffer size for  2013-07-04  moko
           parser3.log added  
           * src/types/: pa_vfile.C, pa_vfile.h, pa_vstring.C:
 2007-11-16  misha            VString::as_vfile now uses vfile.set_binary_string to avoid
             content-type to be set, as it brokes badly designed logic in
         * tests/cat.sh: - script for tests for file::exec/cgi            response output. This hopefully finishes issue #928.
   
         * tests/171.html: - tests for file::exec/cgi          * tests/results/: 256.processed, 286.processed: file now displayed
             as name, size, mode, content-type
         * tests/results/171.processed: - tests results for file::exec/cgi  
           * src/main/pa_common.C: read error now reported cottectly (fixes
 2007-11-15  misha            issue #933
   
         * src/main/pa_exec.C: - fixed incorrect exec code for unix  2013-06-28  moko
   
         * src/classes/file.C: - .body must be set before analyzing cgi          * tests/: 286.html, results/286.processed: test extended
           headers  
           * tests/: 286.html, results/286.processed: Test for issue #928
         * src/classes/file.C: - bugfix: we must transcode output fix EOLs            added.  it tests default content-type change.
           only if exec/cgi return anything.  
           * src/types/pa_vfile.C: closes issue #928 - default content-type
 2007-11-14  misha            now updated
   
         * operators.txt: - info about new text|binary option for  2013-06-25  moko
           file::exec/cgi was added  
           * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h: default
         * src/: include/pa_exec.h, main/pa_exec.C, classes/file.C: -            content-type for text/binary files without name added;
           ^file:exec[[text|binary];script;...]            ^file::create[$f;...] options now works properly and $f
             properties are default (fixes issue #928)
         * src/: include/pa_exception.h, classes/file.C, classes/image.C,  
           classes/string.C, classes/table.C: - more text strings moved to  2013-05-16  misha
           the one place  
           * src/include/pa_opcode.h: - define for OBJECT_POOL optimisation is
 2007-11-09  misha            added
   
         * src/types/pa_vrequest.C: - $request:argv must be taint          * src/main/pa_table.C: - a tiny memory optimisation while creating
             table if specified limit is bigger than source rows count
         * ChangeLog: - $request:argv [patch from Sumo]  
           * src/classes/table.C: - ^table.foreach[k;v]{code}[separator] is
         * operators.txt: - $request:argv            added ( new feature: #858 )
   
         * src/: include/pa_request_info.h, types/pa_vrequest.C,  2013-04-29  moko
           types/pa_vrequest.h, targets/cgi/parser3.C: - $request:argv  
           * src/classes/curl.C: CURL_IPRESOLVE_V4 now set by default,
 2007-10-25  misha            $.ipresolve(0|1|2) added (closes issue #891)
   
         * buildall-with-xml, buildall-without-xml: - options preparations          * src/lib/curl/curl.h: CURL_IPRESOLVE added
           for ./configure rewrited  
   2013-04-24  moko
         * src/main/: compile.tab.C, compile.y: - bug if parser.compile  
           error occure in unhandled_exception finally fixed          * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
             lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
 2007-10-23  misha            types/pa_vmemcached.h: ^memcache.release[] added, calls
             memcached_quit (refs #893)
         * tests/: 170.html, results/170.processed: - test for  
           @method[][result]  2013-04-22  moko
   
         * operators.txt: - added info about node.prefix and          * src/: include/pa_string.h, main/pa_common.C: no more double
           node.namespaceURI            slashes in file path (fixes bug #872)
   
         * src/classes/xnode.C: - xmlHasProp used instead of xmlGetProp          * src/: classes/curl.C, lib/curl/curl.h: minor fixes related to
             CURLOPT_ENCODING renamed into CURLOPT_ACCEPT_ENCODING (issue
         * src/types/pa_vxnode.C: - DOM2 fields namespaceURI and prefix were            #739)
           added for node and attribute  
           * tests/results/266.processed: $.max_params added (feature #915)
 2007-10-22  misha  
           * src/: include/pa_common.h, main/pa_http.C: response-charset
         * src/types/pa_vmail.C: - content-transfer-encoding: 8bit added            option added to file::load (closes issue #867)
   
         * src/main/pa_request.C: - added const content-transfer-encoding  2013-04-20  misha
   
         * src/include/pa_request.h: - added const content-transfer-encoding          * src/classes/curl.C: - forgotten CURL_ACCEPT_ENCODING option is
           - ups. constants must be in lowercase (for search)            commited
   
         * src/types/pa_vmail.C: - more constants used -  2013-03-15  misha
           content-transfer-encoding: 8bit added  
           * src/classes/: hash.C, table.C: - Optimisation: do not create
         * src/main/pa_uue.C: - content-transfer-encoding moved out of here            multiple empty strings while ::sql. uae String::Empty instead
   
         * src/include/pa_request.h: - more constants  2013-03-14  misha
   
         * src/types/pa_vmail.C: - constant renamed - $.content-id don't          * src/classes/reflection.C: - for user classes
           ommit anymore if $.content-disposition was specified - little            ^reflection:method_info[] returns $.max_params and $.extra_param
           refactoring            with $.call_type if they available ( new feature: #915 )
   
         * src/: include/pa_request.h, main/pa_request.C: - constant renamed          * src/classes/file.C: - ^file:delete[] now supports an option
             $.exception(false) that suppress any exception while deleting
 2007-10-17  misha            file ( new feature: #916 )
   
         * operators.txt: - info about          * src/classes/curl.C: - parsing cookies after curl:load now should
           table::create[nameless]{data}[>options<] was added            work :)
   
         * src/main/: compile.tab.C, compile.y: - if error occure while  2013-03-12  misha
           compile method don't put this method in methods table anymore.  
           in other case the parser coredumped if @unhandled_exception          * src/types/pa_vfile.C: - if specified file_name is empty string
           method can't be compiled because of parser.compile error.            set default name for the file
   
         * src/main/execute.C: - little code reformating  2013-03-11  misha
   
         * src/main/pa_request.C: - little code reformating - comment          * src/classes/curl.C: - after $f[^curl:load[...]] the cookies are
           changed            also available in $f.cookies
   
 2007-10-16  misha          * src/: include/pa_http.h, main/pa_http.C: - parsing cookies is
             moved to a separate method
         * tests/: 035.html, results/035.processed: - tests  
           table::create[]{}[options] added  2013-03-10  moko
   
         * src/classes/table.C: - table::create[]{} now accept 3rd param:          * src/include/pa_config_fixed.h: typedef unsigned int uint32_t
           options (only $.seperator[] yet)            added
   
 2007-10-10  misha          * src/lib/memcached/pa_memcached.h: typedef unsigned int uint32_t
             removed (declared by autoconf)
         * src/classes/table.C: - some contstants moved to pa_common.h -  
           some code changes          * configure.in: AC_TYPE_SSIZE_T, AC_TYPE_UINT32_T added for
             uint32_t define
 2007-10-02  misha  
   2013-03-10  misha
         * src/main/pa_uue.C: - memory usage during uuencode reduced more  
           then three time as much. but base64 encoding method still use          * src/classes/file.C: ^file:delete and ^file:move now support
           less memory anyway.            option $.keep-empty-dirs(true) ( new feature: #884 )
   
 2007-09-17  misha          * src/: include/pa_common.h, main/pa_common.C: - option for keeping
             empty dirs is added
         * operators.txt: - added info about $cookie:fields  
   2013-03-10  moko
         * src/types/pa_vcookie.C: - $cookie:fields available now  
           * src/classes/: bool.C, double.C, int.C: default can be present,
         * src/classes/hash.C: - some stuff for use with .for_each moved to            but default check removed from ^int/double/bool.int/double/bool
           common            for string.int/double/bool compatibility (related to issue #913)
   
         * src/include/pa_common.h: - some stuff for use with .for_each          * src/classes/string.C: ^string.int/dobule/bool no longer
           moved here            internally throws exception if default is present (closes issue
             #913)
         * src/types/: pa_venv.C, pa_venv.h: - some strings moved to #define  
   2013-03-09  misha
 2007-09-14  misha  
           * src/types/: pa_vhash.h, pa_vregex.h, pa_vtable.h: - tiny
         * buildall-with-xml: - new xml libs again =)            optimisations ( #845 )
   
 2007-08-28  misha          * src/types/pa_venv.C: - added $env:fields ( new feature: #906 )
   
         * operators.txt: - texts about ^table.columns[[column name]]  and  2013-03-08  moko
           ^string.split[...][v][column name] were added  
           * src/main/pa_http.C: GPF on ^cookies:save fixed, $file.cookies now
         * tests/: 168.html, 169.html, results/168.processed,            creates correct table (fixes issue #910)
           results/169.processed: - tests for ^table.columns[[column name]]  
           and ^string.split[...][v][column name] were added          * src/classes/op.C: r.connection() -> r.connection(false) to allow
             use outside of 'connect' operator (fixes issue #911)
         * src/classes/table.C: - new option ^table.columns[[column name]]  
           was added          * tests/results/: 096.processed, 122.processed: test results
             updated as doubles now printed with 15 significant digits, not 5
         * src/classes/string.C: - new option ^string.split[...;v;[column            (fixes issue #882)
           name]]  
           * src/types/pa_vdouble.h: %.15g now used to format doubles instead
         * src/include/pa_exception.h: - error text message for            of broken has_frac() ? "%g": "%.0f" logic (fixes issue #882)
           ^hash._keys[], ^table.columns[] and ^string.split[]  
   2013-02-21  moko
 2007-08-27  misha  
           * src/classes/table.C: _locate_name_value does not check arguments
         * src/main/untaint.C: - try to fix coredump on unix if print to            count, so we check it in advance (fixes issue #905)
           body ^taint[sql][something] outside of connect  
   2012-10-23  moko
         * tests/: 167.html, results/167.processed: - test for ^taint[sql]  
           outside of connect          * buildall: old shell for and echo compatibility (for six)
   
         * buildall-with-xml, buildall-without-xml: - strip parser3 was  2012-10-19  moko
           added (commented by default)  
           * buildall: --strip added --disable-safe-mode listed in usage
 2007-08-20  misha  
   2012-10-17  misha
         * operators.txt: - comment about new method ^node.hasAttributes[]  
           was added          * src/classes/op.C: - apply-taint should not throw "outside
             connect" exception with sql lang now
         * src/classes/: file.C, math.C, op.C, string.C, xdoc.C: - more  
           duplicated exception text strings were removed  2012-10-17  moko
   
         * src/include/pa_exception.h: - more exception text strings moved          * src/main/pa_request.C: bugfix: safe mode should be inited for
           here            each request (for apache module)
   
         * src/classes/table.C: - some duplicate exceptions' text strings  2012-09-26  moko
           removed  
           * src/doc/doxygen.cfg: png -> svg
         * src/classes/: file.C, hashfile.C, image.C, op.C, string.C,  
           xdoc.C, xnode.C: - some duplicate exceptions' text strings  2012-09-25  moko
           removed  
           * tests/: 141.html, results/141.processed: md5 hmac added, long key
         * src/include/pa_exception.h: - some exception text strings movet            test added
           to pa_exception  
           * src/classes/math.C: HMAC for MD5 added, bugfix for tempdigest
         * tests/: 149.html, results/149.processed: - test for            double use when key is long
           ^xnode.hasAttributes[] was added - some code changes  
   2012-09-16  moko
         * src/classes/xnode.C: - DOM2 method ^xnode.hasAttributes[] was  
           added          * src/classes/math.C: Format -> Method Encode -> Format
   
 2007-08-17  misha          * tests/: 141.html, results/141.processed: math:digest hmac test
             added
         * tests/: results/006.processed, results/059.processed, 006.html,  
           059.html: - more tests for match  2012-09-14  moko
   
         * tests/: 129.html, results/129.processed: - tests for          * src/classes/math.C: SHA1ReadDigest added and used in ^sha1.
           ^table.hash[...][$.type[string|hash|table]] added            ^digest[sha1|md5;data; $.encode[base64|hex] $.hmac[key]] basic
             implementation added
         * src/targets/cgi/parser3.C: - little syntax changes  
   2012-09-12  moko
         * src/: classes/math.C, targets/isapi/parser3isapi.C: - little  
           syntax changes          * src/doc/: doxygen.cfg, footer.htm, index.dox, string.dox,
             targets.dox: doxygen.cfg and footer.htm updated for doxygen 1.7.3
         * src/targets/cgi/parser3.C, operators.txt: - annoying 'SIGPIPE'            targets.dox and string.dox slightly actualized
           messages in parser3.log switched off by default. If someone  
           really still need it: use $SIGPIPE(1)  2012-08-31  moko
   
 2007-08-08  misha          * ChangeLog: now generated with patched cvs2cl.pl
   
         * buildall-with-xml, buildall-without-xml: - remove libs source  2012-07-29  moko
           files by default since now  
           * tests/285.html, src/main/execute.C, tests/results/285.processed:
 2007-08-07  misha            result should be pushed after VMethodFrame destructor is called,
             as it deletes junctions from stack params (fixes issue #868)
         * buildall-without-xml: - some option syntax changes  
   2012-07-23  moko
         * buildall-with-xml: - compile libxml2 without http support - some  
           option syntax changes          * INSTALL, README: buildall script usage documented, other outdated
             info updated.
         * src/main/pa_xml_io.C: - will use parser file loader for xml needs  
           * buildall-with-xml, buildall-without-xml: replaced by buildall
 2007-08-06  misha  
   2012-07-21  moko
         * buildall-with-xml: - moved to libxml2-2.6.29 and libxslt-1.1.21  
           * buildall: glib does not compile when threads are disabled...
         * tests/: 160.html, results/160.processed: - cache test was  
           rewrited          * src/types/pa_vmail.C: g_assertion fixes for empty input
   
 2007-07-06  misha          * src/types/pa_vmail.C: yet another fix (strange GPF on object
             unref, can't unref nested objects)
         * tests/: 153.html, results/153.processed: - added test for  
           ^math:sha1[string]          * src/types/pa_vmail.C: another check added
   
         * src/types/pa_vform.C: - bugfix: uploaded file name wasn't  2012-07-19  moko
           transcoded  
           * buildall: usage added
         * src/classes/math.C: - ^math:long2ip(long) and ^math:sha1[string]  
           were added          * buildall: new buildall script that unites buildall-with-xml,
             buildall-without-xml, --with-apache and --with-mailreceive
 2007-06-28  misha  
           * configure.in: support for static gmime and dynamic glib linking.
         * etc/parser3.charsets/windows-1251.cfg: - removed duplicated and            fixes for FreeBSD
           some incorrect chars  
   2012-07-17  moko
 2007-06-19  misha  
           * configure.in: --with-mailreceive replaced
         * src/include/pa_hash.h: - methods generic_hash_code & hash_code            --with-static-mailreceive and --with-shared-mailreceive pathlink
           were moved on top because of gcc 4 had a problems during            removed
           building.  
   2012-07-16  moko
 2007-06-18  misha  
           * src/types/pa_vmail.C: updated to work gmime 2.6, headers now
         * tests/results/019.processed: - new image commited            capitalized, content now decoded and text content converted to
             $request:charset.  all properties are accessed by functions, this
 2007-06-09  misha            ready for dynamic load.
   
         * src/classes/: op.C, table.C: - in while and table.select method  2012-06-28  moko
           as_expression used now  
           * src/targets/apache/Makefile.am: fix for apache cflags for Linux
         * src/types/pa_vmethod_frame.h: - method as_expression was added            32 bit
   
 2007-06-08  misha  2012-06-27  moko
   
         * tests/: 166.html, results/166.processed: - test for          * buildall-with-xml, buildall-without-xml: fetch requires -p for
           ^match[...][n]            passive ftp
   
         * tests/: 165.html, results/165.processed: - tests for loops          * src/lib/ltdl/ltdl.vcproj: release build fixed
   
         * src/lib/cord/include/private/cord_pos.h: - back to origin value          * configure.in: 3.4.2 RC -> 3.4.2
           because of no speed/memory optimisation but some proglems with  
           long cycles occure  2012-06-22  moko
   
 2007-06-06  misha          * src/types/pa_vfile.C: returned empty mode to stated files (issue
             #815)
         * src/classes/: op.C, table.C: - ^while(true){}, ^while(1){},  
           ^table.select(true) and ^table.select(1) didn't works because of          * tests/: 284.html, results/284.processed: output options test
           awaiting junction-param only. fixed.            (feature #265)
   
 2007-05-24  misha  2012-06-22  misha
   
         * src/: include/pa_os.h, main/pa_os.C: - 20 attempt to get lock          * tests/215.html: - little changes
           with 0.5 secs interval  
   2012-06-21  moko
         * src/classes/op.C: - cache was rewrited. I hope it works with  
           locking system now on unix          * src/: classes/json.C, classes/xdoc.C, types/pa_vxdoc.C,
             types/pa_vxdoc.h: output_options returned and used (bugfix for
         * src/main/pa_os.C: - locks engines were rewrited: now we don't use            feature #265)
           system locks which wait till other threads release it but try get  
           lock, if fail wait 1 sec and make 10 attempts.          * buildall-with-xml, buildall-without-xml: --with-match-limit=10000
             breaks long .*, default 10M restored. (issue #216)
         * src/include/pa_os.h: - consts for blocking locks + some comments  
           were added          * tests/: 283.html, results/283.processed: test for issue #815
             added
         * src/lib/sdbm/apr_file_io.C: - wait till lock released while  
           opening files          * src/types/: pa_vfile.C, pa_vstring.C: bugfix: ^#0D not altered
             again, cstrm not required.
         * src/classes/table.C: - changes in includes. if unclude <sstream>  
           after our classes on unix it can't be build          * src/lib/ltdl/: argz.c, ltdl.c, libltdl/lt__glibc.h: fixes for
             Win32 and broken FreeBSD (issue #45)
         * src/types/pa_vhashfile.C: - not needed code removed  
           * src/lib/ltdl/ltdl.vcproj: preopen.c and config.h removed
 2007-05-23  misha  
           * src/main/pa_string.C: warnings war
         * src/: classes/file.C, classes/op.C, main/pa_common.C,  
           include/pa_common.h: - cosmetic changes          * src/: classes/mail.C, include/pa_dir.h, include/pa_http.h,
             lib/json/JSON_parser.h, lib/smtp/smtp.h, main/pa_random.C,
 2007-05-18  misha            main/pa_socks.C, targets/apache/pa_threads.C,
             targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
         * src/lib/cord/include/private/cord_pos.h: - rebalance tree not so            types/pa_vstatus.C: compilation under cygwin fixed
           often. it's give some speed increasing  
   2012-06-19  moko
         * tests/results/160.processed: - returned time corrected  
           * src/lib/ltdl/: config_fixed.h, ltdl.vcproj: compilation under
         * tests/160.html: - time increased because on unix 1 mean nothing            Windows fixed
           :(  
           * parser3.sln: removed antique pcre_ctype
         * operators.txt: - added info about ^hash.contain[key]  
           * src/include/pa_config_fixed.h: required for INT_MAX / UINT_MAX
         * src/classes/hash.C: - added ^hash.contain[key]  
           * src/include/pa_config_fixed.h: undefined reference to
         * src/include/pa_hash.h: - added method for checking key exists in            __imp__pcre_* fix for Windows
           hash  
           * src/: include/pa_charset.h, lib/pcre/Makefile.am,
 2007-05-07  misha            lib/pcre/pa_pcre_internal.h, lib/pcre/pcre_internal.h:
             pcre_internal.h -> pa_pcre_internal.h for Windows compatibility
         * src/include/pa_string.h: - was compilation error during build on            (win32/pcre has own copy of pcre_internal.h _pcre_default_tables
           freebsd4            define fixed
   
 2007-05-03  misha  2012-06-18  moko
   
         * src/classes/table.C: - option $.type[hash|string|table] was added          * src/classes/memcached.C: flush -> clear
           for ^table.hash[]  
           * src/classes/memcached.C: memcached does not support quotes even
         * src/classes/file.C: - comment removed            in server name
   
 2007-04-26  misha          * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
             lib/memcached/pa_memcached.h, types/pa_vmemcached.C: version()
         * src/types/: pa_vhashfile.C, pa_vhashfile.h: - while ::open the            called on open to check servers existance.  $.key(true) syntax
           real files doesn't opened in place anymore            now supported
   
 2007-04-24  misha  2012-06-17  moko
   
         * src/classes/math.C: - I thought one more time and remove lg(N) :)          * src/include/: pa_config_fixed.h, pa_config_includes.h: old stuff
             cleanup
         * src/include/pa_exception.h: "static" removed  
           * src/classes/table.C, tests/282.cfg, tests/282.html,
 2007-04-23  misha            tests/results/282.processed: encloser at the EOF bug fixed,
             incorrectly enclosed data now processed more logicaly (fixes
         * src/classes/math.C: ^math:lg(N) => ^math:log10(N)            #339)
   
         * src/classes/math.C: added: - ^math:ln(N) (the same as  2012-06-15  moko
           ^math:log(N)) - ^math:lg(N)  
           * buildall-without-xml: sync with buildall-with-xml
         * tests/: 097.html, results/097.processed: - charsets converstion  
           during ^file::load[text;http://...] added          * buildall-with-xml: download auto-detected between fetch and curl
   
         * tests/: 164.html, results/164.processed: - check for set expires          * configure.in: --with-gc and --with-pcre now also processed
           as a date            correctly
   
         * tests/: 164.html, results/164.processed: - test for hashfile          * aclocal.m4, configure, src/include/pa_config_auto.h.in: now
             aclocal -I src/lib/ltdl/m4/ && autoheader && automake && autoconf
         * src/classes/hashfile.C: - little comment changes            should be run on rol1 using automake / aclocal (GNU automake)
             1.11.1 autoconf (GNU Autoconf) 2.68
         * src/types/pa_vhashfile.C: - don't open hashfile files until 1st  
           access          * configure.in: new PARSER_VERSION logic
   
         * src/: classes/date.C, classes/double.C, classes/file.C,          * src/include/pa_version.h: new pa_version.h logic
           classes/form.C, classes/hash.C, classes/image.C, classes/int.C,  
           classes/mail.C, classes/math.C, classes/op.C, classes/string.C,          * src/: classes/curl.C, classes/file.C, classes/image.C,
           classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,            classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
           classes/xnode.h, include/pa_request.h, main/execute.C,            types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C:
           main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,            feols_normalized -> fis_text_content set_binary added
           main/pa_dictionary.C, main/pa_exec.C, main/pa_http.C,  
           main/pa_request.C, main/pa_sql_driver_manager.C, main/pa_table.C,          * src/targets/cgi/parser3.C: gcc compilation warnings fixed
           types/pa_value.C, types/pa_value.h, types/pa_vclass.C,  
           types/pa_vconsole.h, types/pa_vfile.h, types/pa_vhash.h,  2012-06-15  misha
           types/pa_vimage.h, types/pa_vmail.C, types/pa_vmethod_frame.h,  
           types/pa_vstateless_class.C, types/pa_vstateless_class.h,          * src/: classes/curl.C, classes/file.C, classes/image.C,
           types/pa_vtable.C, types/pa_vxdoc.h, types/pa_wcontext.C: -            classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
           "parser.runtime" strings were removed            types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C: -
             ^file::create[text;content] EOLs in content now is normalized. (
         * src/classes/hashfile.C: - with .clear[] called files_delete()            new feature: #815 )
           now.  
   2012-06-15  moko
         * src/types/: pa_vhashfile.C, pa_vhashfile.h: - .clear() removed.  
           * configure.in: --disable-version-update added to disable version
         * src/include/pa_exception.h: - string constant with            update with host information (for debian package) whitespace
           "parser.runtime" text was added            optimized
   
 2007-04-20  misha          * configure.in: version changed to 3.4.2 RC no-pic added for
             libtool
         * operators.txt: - some comments changing  
           * src/include/pa_version.h: Nice pa_version.h default. Please keep
         * operators.txt: - added info about .^hashfile.release[],            it.
           ^hashfile.clenaup[] and new ^string.match[][>N-option<]  
   2012-06-14  moko
         * configure: =cheching for unsetenv  
           * src/classes/hash.C, src/types/pa_vhash.h, tests/281.html,
         * src/classes/hashfile.C: - ^hashfile.cleanup[],            tests/results/281.processed: "hash flocked" error removed for
           ^hashfile.release[] were added            safe operations like ^h._count[] ( new feature: #335 )
   
         * src/: main/pa_string.C, include/pa_string.h, classes/string.C: -          * src/targets/apache/Makefile.am: libmod_parser3 -> mod_parser3
           ^string.match[][] understand new option now: return number of  
           matches but not table wit results          * buildall-with-xml, buildall-without-xml: --with-static -> --with
   
         * src/types/: pa_vhashfile.C, pa_vhashfile.h: - hashfile can auto          * configure.in: --with-static/shared xml replaced with --with-xml,
           reopen now            xml compilation check added
   
         * src/classes/op.C: - bug. must be false          * configure.in: --with-static/shared-gc, --with-static-pcre are
             replaced with --with-gc and --with-pcre test for pcre linking
         * configure.in: - checking for unsetenv was added            added
   
         * src/types/pa_vform.C: - some comments  2012-06-13  moko
   
 2007-04-18  misha          * configure.in: apxs2 check optimized
   
         * buildall-with-xml: moving to libxml2-2.6.28          * src/targets/cgi/Makefile.am: preserve-dup-deps requires .a, not
             .la, includes optimized
         * buildall-with-xml, buildall-without-xml: added commented lines  
           with --disable-safe-mode option          * buildall-with-xml: --with-pic looks better for -fPIC
   
         * operators.txt: - info about $form:files          * configure.in: switched to convenience library in static linking
   
 2007-04-17  misha          * src/targets/apache/Makefile.am: switched to convenience library
             usage to avoid libtool warnings
         * src/types/: pa_vform.C, pa_vform.h: - some code was modified -  
           $form:files was added          * src/lib/: cord/Makefile.am, gd/Makefile.am, json/Makefile.am,
             md5/Makefile.am, memcached/Makefile.am, sdbm/Makefile.am,
         * tests/: 163.html, results/163.processed: removing auto format            smtp/Makefile.am: switched to convenience library usage
   
         * src/types/pa_vdate.h: - start adding unsetenv("TZ");          * src/sql/Makefile.am: pa_sql_driver.h should be in includes
   
 2007-04-16  misha          * src/targets/apache/Makefile.am: updated for libtool usage
   
         * tests/: 163.html, results/163.processed: - test for .int[],          * buildall-without-xml: --with-included-ltdl added
           floor, round, ceiling and .format[]  
           * buildall-without-xml: sync with buildall-with-xml
         * src/classes/file.C: - little optimization for getting args in  
           exec/cgi          * buildall-with-xml: --with-included-ltdl added $cflags added for
             -fPIC for x64 $download added for wget success check added
 2007-04-13  misha  
           * buildall-without-xml: --with-dynamic-stdcpp removed
         * src/classes/file.C: - arguments for file::exec/cgi can be  
           specified now as s table with one column          * configure.in: disable-static returned
   
 2007-03-27  misha          * src/targets/cgi/Makefile.am: Automake 1.9 does not support
             LIBTOOLFLAGS
         * tests/: 162.html, results/162.processed: - test for  
           ^table.select(^condition[$t])  2012-06-12  moko
   
         * tests/results/auto.p: - load windows-1251 charset for some tests          * configure.in, src/targets/cgi/Makefile.am: disable-static not
             compatible with LIBTOOLFLAGS for unknown reasons
         * tests/run_parser.sh: PARSER_CONFIG -> CGI_PARSER_CONFIG  
           * buildall-with-xml: --with-dynamic-stdcpp removed
         * tests/: results/161.processed, 161.html, 161_utf8.txt,  
           161_windows1251.txt: - added test for          * configure.in: static/dynamic -lstdc++ linking option removed
           ^file::load[text;/local/file.txt;$.charset[...]]            apxs2 check added
   
         * tests/: results/013.processed, 013.html: - added test for          * src/targets/cgi/Makefile.am: static/dynamic -lstdc++ linking
           checking $._default value while hash modifications            option removed
   
         * tests/: 160.html, results/160.processed: - add test for  2012-06-10  moko
           ^cache[key](secs){code}, ^cache[] and ^cache(0)  
           * src/targets/cgi/Makefile.am: --preserve-dup-deps libtool option
 2007-03-22  misha            added
   
         * src/include/pa_common.h: - "charset" string defined for          * src/targets/cgi/pp3.cmd: old PAF stuff
           ^file::load[text;/local.txt] and ^table::load[/table.txt]  
           * Makefile.am: ACLOCAL_AMFLAGS = -I src/lib/ltdl/m4 added and some
         * src/main/: pa_common.C, pa_http.C: - $.charset option for            beauty
           ^file::load[text;/local.txt] and ^table::load[/table.txt] was  
           added - not needed transcodes were removed from          * depcomp: from libtool 2.4.2
           ^file::load[...;http://...]  
           * configure.in: ltdl directory removed, it has correct Makefile.in
         * src/types/pa_vdate.h: - date.week was fixed - date.weekyear was  
           added  2012-06-09  moko
   
         * src/classes/date.C: - date.week was fixed          * Makefile.am, aclocal.m4, config.guess, config.sub, configure,
             install-sh, ltmain.sh, missing, src/include/pa_config_auto.h.in:
         * operators.txt: - added info about date.weekyear            autogenerated files updated after libtool update
   
         * tests/: 159.html, results/159.processed: - tests for date.week          * src/lib/ltdl/: COPYING.LIB, Makefile.am, README, acinclude.m4,
           and date.weekyear added            aclocal.m4, argz.c, argz_.h, config-h.in, config.h,
             config_auto.h.in, config_fixed.h, configure, configure.ac,
 2007-03-15  misha            configure.in, lt__alloc.c, lt__dirent.c, lt__strl.c,
             lt_dlloader.c, lt_error.c, ltdl.c, ltdl.h, slist.c,
         * src/classes/table.C: - enclose column numbers for nameless tables            config/compile, config/config.guess, config/config.sub,
           as well            config/depcomp, config/install-sh, config/ltmain.sh,
             config/missing, libltdl/lt__alloc.h, libltdl/lt__dirent.h,
 2007-03-14  misha            libltdl/lt__glibc.h, libltdl/lt__private.h, libltdl/lt__strl.h,
             libltdl/lt_dlloader.h, libltdl/lt_error.h, libltdl/lt_system.h,
         * src/targets/cgi/parser3.C: - bugxif. failed when request cgi            libltdl/slist.h, loaders/dld_link.c, loaders/dlopen.c,
             loaders/dyld.c, loaders/load_add_on.c, loaders/loadlibrary.c,
         * src/classes/table.C: - table.save optimization: now required much            loaders/preopen.c, loaders/shl_load.c, m4/argz.m4, m4/libtool.m4,
           less memory            m4/ltdl.m4, m4/ltoptions.m4, m4/ltsugar.m4, m4/ltversion.m4,
             m4/lt~obsolete.m4: libtool updated to version 2.4.2
 2007-03-13  misha  
           * configure.in: preparation for new libtool
         * tests/results/: 158.processed, 158.processes: - tests for  
           table.save/table.load          * configure.in: Some beauty added :)
   
         * tests/: 158.html, results/158.processes: - tests for          * src/targets/apache/Makefile.am: := -> =
           table.save/table.load  
           * src/lib/pcre/: Makefile.am, config.h: config.h removed once
         * buildall-with-xml: libxml2: --without-ftp --without-docbook            again. :)
   
         * buildall-with-xml: - pattern needed now for building          * src/include/pa_config_includes.h, configure.in: limits.h added,
             previously was taken from pcre_internal.h. :)
         * tests/results/097.processed: - added test results for xdoc::load  
           & xdoc::load[http://...]          * src/lib/pcre/Makefile.am: config.h returned
   
         * tests/097.html: - added test for xdoc::load          * src/lib/pcre/config.h: still need this. :)
   
 2007-03-12  misha          * src/lib/pcre/pcre_internal.h: extracts from real pcre_internal.h
   
         * tests/: 107.html, results/107.processed: - added test for xpath          * configure.in: --with-charsets removed; --with-mysql-client & co
           '//man'            removed
   
 2007-03-01  misha          * buildall-with-xml, buildall-without-xml: pcre_internal.h extracts
             now in parser tree, no need to copy
         * tests/: 097.html, results/097.processed: - added test for  
           creating xdoc from file          * src/lib/pcre/: Makefile.am, config.h, ibm-1250.ucm, ibm-1251.ucm,
             ibm-1254.ucm, ibm-1257.ucm, pcre_parser_ctype.c,
         * tests/: results/157.processed, 157.html: - added test for            pcre_parser_ctype.vcproj, ruspart_win2koi.pl, win-koi.tab:
           file:move            debian/patches/101_pcre.patch - local copy of pcre_internal.h
             extracts now used old trash removed
 2007-02-28  misha  
           * etc/parser3.charsets/Makefile.am: charsets now in share
         * src/classes/xdoc.C: - another attempt            (debian/patches/104_automake.patch) + all charsets are copied
   
         * src/classes/xdoc.C: - roll back last changes for a while          * buildall-with-xml, buildall-without-xml: curl option removed +
             extra arguments now supported
         * src/classes/xdoc.C, operators.txt: - ^xdoc::create[$file] added.  
   2012-06-08  misha
         * src/classes/file.C: - under lock we create non-exist dir anyway  
           * src/classes/table.C: - one params.as_hash usage was rolled back:
         * tests/results/099.processed: - ever send content-disposition to            the 2nd option in ^table.hash[] could be hash or table so
           client with file            .as_hash will throw an exception when table option is specified
   
         * tests/157.html: + test for file:copy          * src/: classes/curl.C, classes/file.C, classes/hash.C,
             classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
 2007-02-26  misha            classes/table.C, classes/void.C, classes/xdoc.C,
             include/pa_exception.h, types/pa_vmethod_frame.C,
         * src/classes/file.C: - some similar strings moved to #define            types/pa_vmethod_frame.h: - MethodParams::as_hash is optimized
           instead of to be copy/pasted many times            and improved (whitespaces are allowed as empty options) -
             MethodParams::as_table is added - above methods are used for
         * src/types/pa_vfile.h: - class name string ("file") moved to            parsing methods' options ( new feature: #9 )
           #define  
           * src/types/: pa_vclass.C, pa_vclass.h: - method get_hash is added
 2007-02-20  misha            to vclass. now class fields can be accessible as a hash:
             $h[^hash::create[$asd:CLASS]]
         * bin/auto.p.dist.in: - added lines for sqlite  
           * src/types/: pa_vhash.h, pa_vhashfile.h: - vhash and vhashfile now
         * configure.in: - added some strings for sqlite detection            have get_fields method so their fields can be accessed with
             ^reflection:fields[...] & ^reflection:field[...]
 2007-02-19  misha  
   2012-06-06  misha
         * operators.txt: - some comments changes  
           * tests/280.html: - tests for
         * buildall-with-xml, buildall-without-xml: - some modifications            ^reflection:method[obj-or-class;method],
             ^reflection:field[obj-or-class;field] and
 2007-02-17  misha            ^reflection:fields[obj-or-class] are added
   
         * buildall-with-xml, buildall-without-xml: - moving to gc6.8  2012-06-05  misha
   
         * src/main/pa_request.C: - damn, i forgot to commit it while I          * src/classes/reflection.C: - ^reflection:method[class or
           change console behaviour            object;method name] and ^reflection:field[class or object;field
             name] are added
 2007-02-12  misha  
           * src/types/pa_vstateless_class.C: - Method::get_vjunction method
         * src/targets/cgi/parser3.C: - don't print headers if            is used
           $console:line[data] was used during cgi execution.  
           * src/types/pa_method.h: - Method::as_vjunction method is added
         * src/types/pa_vconsole.h: - console class have bool flag now which  
           marked as 'true' if class was used.  2012-06-05  moko
   
         * tests/: 152.html, results/152.processed: - more types was added          * src/targets/Makefile.am: cgi now build with apache module
           to test 152  
           * src/classes/memcached.C: flish ttl fixed
         * src/types/: pa_vimage.C, pa_vimage.h: - fixed bug added while  
           adding 'bool' (^if($image){} caused exception)  2012-06-04  moko
   
 2007-02-09  misha          * src/classes/json.C, src/classes/op.C, tests/279.html,
             tests/results/279.processed: ^json:parse[] now supports $.taint
         * tests/: 152.html, results/152.processed: - test alightly updated            option (new feature #833)
   
         * tests/: 152.html, results/152.processed: - test rewrited  2012-06-04  misha
   
         * src/types/: pa_vxdoc.C, pa_vxdoc.h, pa_vxnode.C, pa_vxnode.h: -          * src/: include/pa_common.h, main/pa_common.C, types/pa_vcookie.C:
           bugfix. I broke xdoc & xnode in expression            - search_stop method was moved from pa_vcookie.C to pa_common.C
   
 2007-02-08  misha  2012-06-03  misha
   
         * tests/: 152.html, results/152.processed: - add test for checking          * src/main/pa_http.C: - ^file:load[...;http://...] - all received
           'def' for void, string, bool, int & double            cookies are parced and stored into $.cookies ( new feature: #31 )
   
 2007-02-07  misha  2012-05-30  misha
   
         * operators.txt: - ^file:base64[filespec]  was added          * tests/: 182_dir/a3.p, 182_dir/a4.p, 182.html: - test for adding
             incomplete class into a scope while @USE is found
         * tests/results/153.processed: - result test for  
           ^file:base64[filespec]  was updated          * src/main/compile.y: - add incomplete class into a scope while
             @USE and @CLASS instructions are found ( bugfix: #838 )
         * tests/153.html: - test for ^file:base64[filespec]  was added  
   2012-05-30  moko
         * src/types/pa_vconsole.h: - little optimization  
           * src/types/pa_vclass.C, tests/278.html,
         * src/classes/file.C: - ^file:base64[filespec]            tests/results/278.processed: removed "property has no getter
             method" exception when GET_DEFAULT present (fixes #269)
         * src/main/pa_common.C: - definitions for ^file:base64[filespec]  
           * src/classes/json.C, tests/277.html: ^json:string[], $.default ->
         * src/include/pa_common.h: - declarations for            $._default
           ^file:base64[filespec]  
   2012-05-29  moko
         * src/types/pa_vcookie.C: - little optimization  
           * src/types/pa_vvoid.h: $STRICT-VARS(true) implemented to check
 2007-02-06  misha            uninitialized values usage (new feature: #154)
   
         * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: - some chars  2012-05-28  moko
           were temporary commented  
           * tests/277.html, src/classes/json.C, src/classes/reflection.C,
         * src/types/pa_vbool.h: - bugfix            src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
             src/types/pa_vdate.h, src/types/pa_vdouble.h,
         * tests/156.html: - added test for bool cookie            src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vint.h,
             src/types/pa_vobject.C, src/types/pa_vobject.h,
         * src/types/pa_vcookie.h: - not needed string "cookie" removed            src/types/pa_vstring.h, src/types/pa_vtable.C,
             tests/results/277.processed, src/types/pa_vtable.h,
         * tests/: 155.html, results/155.processed: - added test for check            src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h:
           $.encloser[] option for table save/load            ^json:string[$o; $.default[$method]] implemented for VObject (new
             feature #803)
         * tests/: 153.html, 154.html, todo.txt: - two more tests added  
           * src/classes/json.C, src/lib/json/JSON_parser.h, tests/277.html,
 2007-02-05  misha            tests/results/277.processed: json numbers are now treated as
             double ( new feature: #834 )
         * tests/results/152.processed: - newline at the end was missed  
           * src/: classes/math.C, include/pa_string.h, main/pa_charset.C,
         * tests/results/141.processed: - math:md5 must be lowercased            main/pa_string.C, types/pa_vdouble.h, types/pa_vint.h: pa_atoui
             added for out of range checks, zero division in vint/vdouble
         * src/targets/cgi/parser3.C: - 2007 in help ;)            check added ( fixes #832 )
   
 2007-02-03  misha          * tests/: 275.html, results/275.processed: tests for pa_atoui added
             ( fixes #832 )
         * tests/results/: 150.processed, 151.processed, 152.processed: -  
           test for bool added and some content length fixes  2012-05-28  misha
   
         * tests/152.html: - test for bool added          * buildall-with-xml: - --without-lzma option is added to libxml2
             configure
         * buildall-with-xml: - moved to libxml2-2.6.27 and libxslt-1.1.20  
           * tests/256.html: - test for ^json:string[-file-;$.file[stat]] is
         * operators.txt: - info bool class was added            added - tests for unsupported values for options $.file, $.table
             and $.date are added
         * src/: classes/Makefile.am, classes/bool.C,  
           classes/classes.vcproj, classes/double.C, classes/int.C,          * src/: classes/json.C, types/pa_value.h: - ^json:string[...] now
           classes/string.C, classes/void.C, classes/xnode.C,            accepts "stat" $.file[] option's value in addition to existed
           include/pa_string.h, types/pa_vbool.h, types/pa_vclass.h,            "text" and "base64" ( new feature: #835 )
           types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,  
           types/pa_vjunction.h, types/pa_vproperty.C, types/pa_vproperty.h,          * tests/276.html: - test for
           types/pa_vstateless_class.C, types/pa_vstateless_class.h,            ^reflection:delete[$object-or-class;field-name]
           types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h,  
           types/types.vcproj: - bool class was added          * src/classes/reflection.C: -
             ^reflection:delete[$object-or-class;field-name] is added ( new
         * src/main/pa_request.C: - fix            feature: #268 )
   
 2007-01-18  misha  2012-05-27  misha
   
         * src/: main/pa_string.C, classes/string.C: - return table during          * buildall-with-xml: - libxml2 2.7.8 => 2.8.0
           ^string.match[][] even if no matched found.  
   2012-05-24  misha
 2006-12-20  misha  
           * src/include/pa_common.h: - method lastposafter was removed
         * src/types/: pa_method.h, pa_vfile.h: - some syntax changes [  
           http://www.parser.ru/forum/?id=55598 ]          * src/classes/file.C: - use strrpbrk & rskipchars instead of
             lastposafter - ^file:dirname[] & Co proper handle windows file
 2006-12-19  misha            paths ( bug fix: #783 ) - ^file:dirname[] & ^file:basename[] now
             work as *nix commands
         * src/types/pa_vxdoc.C: - $xDoc is "xnode" == true now. more  
           details: http://www.parser.ru/forum/?id=52359          * src/main/pa_request.C: - use strrpbrk instead of lastposafter
   
         * src/main/pa_request.C: - always set content-disposition for          * src/: include/pa_string.h, main/pa_string.C: - strrpbrk &
           $response:body[hash here]. more details:            rskipchars were added
           http://www.parser.ru/forum/?id=52130  
           * tests/270.html: - more tests for ^file:find[]
 2006-12-07  misha  
           * tests/065.html: - more tests for ^file:dirname[] & Co
         * operators.txt: - added info about bool params in cookie set  
           * src/include/pa_version.h: - must be "win32" here. it is
         * src/types/pa_vcookie.C: - bool param in cookies available now            auto-generated on *nix
           $cookie:name[   $.value[123]   $.secure(true)   $.httponly(true)  
           ]  2012-05-24  moko
   
         * src/types/: pa_value.C, pa_value.h, pa_vbool.h: - is_bool method          * src/classes/math.C: ^math:convert[] now supports uint32 and
           was added            throws overflow exception ( new feature: #830 )
   
 2006-12-02  misha          * tests/: 275.html, results/275.processed: test for ^math:convert[]
             uint32 support and overflow added ( new feature: #830 )
         * src/classes/file.C: - file_block_read used instead of native read  
   2012-05-23  moko
         * src/main/pa_common.C: - added file_block_read with read error  
           detection - file_block_read used instead of native read          * src/: classes/table.C, types/pa_value.h, types/pa_vbool.h,
             types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
         * src/include/pa_common.h: - added file_block_read declaration            types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
             types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
 2006-12-01  misha            types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
             types/pa_vregex.h, types/pa_vstateless_class.C,
         * operators.txt: - info about $var.CLASS_NAME was added            types/pa_vstateless_class.h, types/pa_vstring.h,
             types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
         * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -            types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: bool
           $var.CLASS_NAME added            "return string as-is" removed from as_expr_result. ( new feature:
             #831 )
         * operators.txt: - added info about ^file:copy[]  
           * tests/results/244.processed: test changed after bug #782 fix
         * src/classes/file.C: - ^file:copy[from;fo] was added            commited
   
 2006-11-20  misha          * tests/results/229.processed: test results for bug #782 commited
   
         * src/classes/date.C: - bug fix :)          * tests/: 254.html, results/254.processed: uid now just compared,
             not printed. :)
 2006-11-17  misha  
   2012-05-20  moko
         * src/include/pa_common.h: - array in crc32 calculation was changed  
           to static          * src/classes/reflection.C: ^reflection:uid[$object] added ( new
             feature: #341 )
         * src/main/pa_common.C: - little optimization in getMonthDays -  
           small changes in crc32 calculation          * tests/: 254.html, results/254.processed: test for
             ^reflection:uid[] added
         * src/classes/date.C: - not needed code was removed  
           * tests/: 254.html, results/254.processed: test for
 2006-11-16  misha            ^reflection:uid[$obj] added
   
         * src/types/pa_vmail.C: - fix missed brakes  2012-05-17  misha
   
         * src/types/pa_vmail.C: - mail:send now set content-type:          * src/main/untaint.C: - do not replace ' char by _26 while
           multipart/related instead of multipart/mixed if file have            exploding filespec-tainting ( new feature: #829 )
           $.content-id[]  
   2012-05-12  moko
 2006-11-15  misha  
           * src/types/pa_vvoid.h: is_string now also checked, but get_* -
         * src/types/pa_vdouble.h: abs -> fabs            not.
   
 2006-11-14  misha  2012-05-08  moko
   
         * operators.txt: - added info about ^file.md5[] and          * src/types/pa_vmethod_frame.h: bug #782 fixed
           ^file:md5[file-name]  
           * tests/229.html: test for bug #782
         * src/classes/file.C: - ^file.md5[] and ^file:md5[file-name] were  
           added          * tests/results/259.processed, src/main/pa_request.C,
             src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
         * src/main/pa_common.C: - CRC32_MAX_BUFFER_SIZE was renamed to            src/types/pa_vstring.h, src/types/pa_vvoid.C,
           FILE_BUFFER_SIZE            src/types/pa_vvoid.h: feature #154 - first empty param now
             string; defined locals are empty strings; $STRICT-VARS(true)
         * src/classes/math.C: - hex_string was moved to pa_common.h            added
   
         * src/include/pa_common.h: - hex_string was moved from math.C -  2012-04-27  moko
           CRC32_MAX_BUFFER_SIZE was renamed to FILE_BUFFER_SIZE  
           * src/targets/apache/Makefile.am:
         * src/types/pa_vdouble.h: - incorrect frac detection with negative            ../../lib/memcached/libmemcached.a added
           values was fixed  
   2012-04-27  misha
 2006-11-13  misha  
           * buildall-with-xml, buildall-without-xml: - prce 8.12 => pcre 8.30
         * operators.txt: - added info about ^math:crc32[string],            ( #827 )
           ^file:crc32[file-name] & ^file.crc32[]  
   2012-04-25  moko
         * src/classes/math.C: - added ^math:crc32[string]  
           * src/: classes/json.C, classes/memcached.C,
         * src/classes/file.C: - some comments were changed - added            lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
           ^file:crc32[file-name] and ^file.crc32[]            types/pa_vmemcached.C, types/pa_vmemcached.h: memcached_add
             implemented.
         * src/: include/pa_common.h, main/pa_common.C: - some functions for  
           crc32 calculation added          * src/classes/curl.C: stderr -> f_stderr for Windows compatibility
   
 2006-11-03  misha  2012-04-23  moko
   
         * src/include/pa_array.h: - not needed variable removed          * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
             lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
         * tests/: 150.html, 151.html, results/150.processed,            types/pa_vmemcached.h: open allows options hash for new
           results/151.processed: - 2 tests were added            memcached(options) function
   
         * src/include/: pa_array.h, pa_table.h: - table.locate & table.join          * src/classes/curl.C: check_safe_mode added, stderr now rewritten,
           with $.reverse(1) were fixed            not appended
   
         * src/main/pa_http.C: - bug fix. now tainted data from $.form and  2012-04-21  moko
           query converted to $.charset during ^file::load[http://...]  
           * src/classes/curl.C: '' added. :)
 2006-11-02  misha  
           * src/classes/classes.vcproj: new curl.h location
         * src/include/pa_table.h: ups. forget '=' char  
           * src/classes/curl.C: verbose output redirection from stderr to
         * src/include/pa_table.h: - one more fix in            file curl option added
           .locate[...][$.reverse(1)]  
   2012-04-20  moko
 2006-11-01  misha  
           * src/: classes/curl.C, lib/curl/curl.h: lib/curl/curl.h now
         * src/classes/math.C: - bug fix, details:            contains what we need from curl, #ifdef HAVE_CURL removed
           http://www.parser.ru/forum/?id=53360  
           * configure, configure.in, src/classes/Makefile.am,
         * src/include/pa_table.h: - bug fix during ^table.locate( condition            src/include/pa_config_auto.h.in, src/include/pa_version.h,
           false for all records )[$.reverse(1)]            src/lib/Makefile.am, src/lib/curl/Makefile.am,
             src/lib/curl/curl.h: curl.h header now in src/lib/curl, not
         * src/main/pa_http.C: - second param for this mid method is length            configure option
           but not end_index so this method has error and can't detect  
           charsets in next content-types: Content-type: text/html;  2012-04-19  moko
           charset="windows-1251" Content-type: text/html;  
           charset="windows-1251"; Content-type: text/html;          * src/: classes/double.C, classes/inet.C, classes/int.C,
           charset=windows-1251;            classes/string.C, lib/gc/include/gc_allocator.h,
             types/pa_vform.C: PVS-Studio detected errors fixes, unused
           only Content-type: text/html; charset=windows-1251 was fine            options from sql_result_string removed. (closes issue #468)
   
 2006-10-31  misha          * src/types/pa_vmemcached.C: empty string fix
   
         * src/classes/file.C: - empty args in file::exec removed now          * src/types/: pa_value.C, pa_value.h, pa_vmemcached.C,
             pa_vstring.C, pa_vstring.h: serialization helpers moved to
 2006-09-11  misha            pa_vmemcached.C
   
         * bin/auto.p.dist.in: - 2 errors were fixed - table::set was  2012-04-18  moko
           replaced to table::create - some changes in text/code formatting  
           * src/targets/apache/mod_parser3.c: "Parser3 module requires
 2006-09-03  paf            apache2-mpm-prefork" error displayed in threaded mpm.
   
         * src/classes/file.C: proper tainting of          * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
           ^file::exec/cgi[script;env;COMMAND;LINE;PARAMS]            pa_setup_module_cells delayed to avoid GPF on init with php5-xsl
             installed (issue #354)
 2006-06-09  paf  
   2012-04-16  moko
         * src/lib/pcre/pcre-2_08.tar.gz: one can easily find those  
           * src/types/pa_vmemcached.C: call to memcached_result_create and
         * src/classes/table.C: formatting            memcached_result_free removed
   
         * src/classes/table.C: incorporated patch from misha: Sent:  2012-04-14  moko
           Thursday, June 08, 2006 12:38 PM Subject: parser3: patch for  
           ignoring string options for ^table.save[]          * src/lib/memcached/pa_memcached.h: uint32_t for Windows defined
   
         * src/classes/hash.C: incorporated patch from misha Sent:          * src/types/pa_vmemcached.C: check_key added and used
           Wednesday, June 07, 2006 9:52 PM Subject: parser3: patch for  
           $hash._default disappear while  2012-04-13  moko
   
         * operators.txt: ^mail:send[   $.file1[      $.value[file]          * src/: include/pa_string.h, types/pa_value.C, types/pa_value.h,
           $.format[!uue|!base64] << new base64 option. default uue   ] ]            types/pa_vmemcached.C, types/pa_vstring.C, types/pa_vstring.h:
             Serialization_data now added and used, VString now serialized
         * src/types/pa_vmail.C: misha: Sent: Wednesday, June 07, 2006 8:51            with languages into memcached.
           PM Subject: patch for base64 in ^mail:send[] %-)  
   2012-03-28  moko
 2006-04-09  paf  
           * src/: types/pa_vmemcached.C, lib/memcached/pa_memcached.C,
         * src/main/compile.tab.C: ` change compiled            lib/memcached/pa_memcached.h: result lengths added
   
         * gnu.vcproj, operators.txt, parser3.sln,  2012-03-27  moko
           src/classes/classes.vcproj, src/classes/file.C,  
           src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,          * src/types/pa_vmemcached.C: strdup added
           src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,  
           src/classes/xnode.C, src/include/pa_array.h,  2012-03-24  moko
           src/include/pa_config_fixed.h, src/include/pa_dir.h,  
           src/include/pa_memory.h, src/include/pa_request.h,          * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
           src/include/pa_stack.h, src/lib/cord/cord.vcproj,            lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
           src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,            types/pa_vmemcached.h: memcached: mget, flush, fttl added
           src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,  
           src/lib/pcre/pcre_dftables.vcproj,  2012-03-20  moko
           src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,  
           src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,          * configure, configure.in: Makefiles.in updated for memcached
           src/main/compile.y, src/main/execute.C, src/main/main.vcproj,  
           src/main/pa_cache_managers.C, src/main/pa_charset.C,          * src/targets/cgi/Makefile.am: cleanup
           src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,  
           src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,          * src/: types/Makefile.am, types/pa_vmemcached.C,
           src/main/pa_string.C, src/main/pa_stylesheet_connection.C,            types/pa_vmemcached.h, targets/cgi/Makefile.am: memcached initial
           src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,  
           src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,          * src/: classes/Makefile.am, classes/memcached.C,
           src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,            lib/memcached/Makefile.am, lib/memcached/constants.h,
           src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,            lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
           src/types/pa_value.h, src/types/pa_vcookie.C,            lib/memcached/types.h, lib/Makefile.am: memcached initial
           src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,  
           src/types/pa_vmail.C, src/types/pa_vresponse.C,  2012-03-16  moko
           src/types/pa_vstatus.C, src/types/types.vcproj,  
           tests/descript.ion, www/htdocs/_bug.html, www/htdocs/_bug.xsl: +          * src/main/execute.C: ident now works under Linux + ident displays
           ^break[] ^continue[], in ^for, ^while, ^menu,            filenames (closes issue #818)
           ^hash/hashfile.foreach  
           * src/types/: Makefile.am, pa_vmethod_frame_global.h,
         * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,            pa_vmethod_frame_local.h: cleanup: pa_vmethod_frame_global.h
           src/classes/file.C, src/classes/hash.C, src/classes/image.C,            pa_vmethod_frame_local.h removed
           src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,  
           src/classes/xnode.C, src/include/pa_array.h,          * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
           src/include/pa_config_fixed.h, src/include/pa_dir.h,            classes/classes.h, classes/curl.C, classes/date.C,
           src/include/pa_memory.h, src/include/pa_request.h,            classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
           src/include/pa_stack.h, src/lib/cord/cord.vcproj,            classes/hashfile.C, classes/image.C, classes/inet.C,
           src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,            classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
           src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,            classes/memory.C, classes/op.C, classes/reflection.C,
           src/lib/pcre/pcre_dftables.vcproj,            classes/regex.C, classes/response.C, classes/string.C,
           src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,            classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
           src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,            classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
           src/main/compile.y, src/main/execute.C, src/main/main.vcproj,            include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
           src/main/pa_cache_managers.C, src/main/pa_charset.C,            include/pa_config_fixed.h, include/pa_config_includes.h,
           src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,            include/pa_dictionary.h, include/pa_dir.h,
           src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,            include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
           src/main/pa_string.C, src/main/pa_stylesheet_connection.C,            include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
           src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,            include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
           src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,            include/pa_pool.h, include/pa_random.h, include/pa_request.h,
           src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,            include/pa_request_charsets.h, include/pa_request_info.h,
           src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,            include/pa_sapi.h, include/pa_socks.h,
           src/types/pa_value.h, src/types/pa_vcookie.C,            include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
           src/types/pa_vmail.C, src/types/pa_vresponse.C,            include/pa_stack.h, include/pa_string.h,
           src/types/pa_vstatus.C, src/types/types.vcproj,            include/pa_stylesheet_connection.h,
           tests/descript.ion, www/htdocs/_bug.html, www/htdocs/_bug.xsl: !            include/pa_stylesheet_manager.h, include/pa_table.h,
           switched to VS2005 (projects and object<info explicitly            include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
           typed>.for_each(, info)) + $response:field[] setting void means            include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
           removing + grammar $name` name stops now, for mysql `$field` +            lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
           started ^break[] ^continue[], in ^for. TODO: to other iterators            lib/md5/pa_md5c.c, lib/pcre/pcre_parser_ctype.c,
           (while, menu, foreach) + all log messages += [uri=, method=, cl=]            lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
             lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
         * buildall-with-xml: merged . ftp paths update            main/compile.tab.C, main/compile.y, main/compile_tools.C,
             main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
         * buildall-with-xml: . ftp paths update            main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
             main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
 2006-03-04  paf            main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
             main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
         * src/main/: pa_string.C: merged from HEAD ! cache file curruption            main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
           checks++ [thanks to Igor Zinkovsky for detailed report]            main/pa_string.C, main/pa_stylesheet_connection.C,
             main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
         * src/main/pa_string.C: ! cache file curruption checks++ [thanks to            main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
           Igor Zinkovsky for detailed report]            main/helpers/simple_folding.pl, sql/pa_sql_driver.h,
             targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
 2006-03-01  paf            targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
             targets/cgi/pa_threads.C, targets/cgi/parser3.C,
         * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or            targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
           \n to ' ' in            types/pa_junction.h, types/pa_method.h, types/pa_property.h,
             types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
 2006-02-18  paf            types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
             types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
         * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or            types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
           \n to ' ' in            types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
             types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
         * src/main/untaint.C: ! mail:send << changed \r or \n to ' ' in            types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
             types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
 2006-02-03  paf            types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
             types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
         * src/main/pa_common.C: merged from HEAD ! bugfix: decoding from            types/pa_vmemory.h, types/pa_vmethod_frame.C,
           base64            types/pa_vmethod_frame.h, types/pa_vmethod_frame_global.h,
             types/pa_vmethod_frame_local.h, types/pa_vobject.C,
         * src/main/pa_common.C: ! bugfix: decoding from base64            types/pa_vobject.h, types/pa_vregex.C, types/pa_vregex.h,
             types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
 2006-01-20  paf            types/pa_vresponse.h, types/pa_vstateless_class.C,
             types/pa_vstateless_class.h, types/pa_vstateless_object.h,
         * src/types/pa_vhashfile.C: . merged hashfile.foreach memory            types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
           economy fix            types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
             types/pa_vvoid.C, types/pa_vvoid.h, types/pa_vxdoc.C,
         * src/classes/: table.C: merged from HEAD ! bugfix            types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
           ^table.save[$.encloser-s now handled properly            types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
             ident now works under Linux + ident displays filenames (closes
         * src/classes/table.C: ! bugfix ^table.save[$.encloser-s now            issue #818) Copyright updated
           handled properly  
   2012-03-13  moko
 2006-01-19  paf  
           * src/main/pa_string.C: compilation fix for feature #741
         * buildall-with-xml, buildall-without-xml: merged from HEAD !  
           libgc:USE_MUNMAP activates merging of free memory blocks which  2012-03-09  misha
           helps a lot in our case: after transform we want  
           CORD(main.result)->cstr[big malloc]->transcode[big malloc]          * tests/193.html: - tests for ^string:base64[encoded] are updated
   
         * src/types/pa_vhashfile.C: . merged hashfile.foreach memory          * src/main/pa_common.C: - ^string:base64[encoded;$.strict(true)]
           economy fix            now detects invalid base64 chars in the middle of encoded stricg
             ( new feature: #55 )
         * buildall-with-xml, buildall-without-xml: ! libgc:USE_MUNMAP  
           activates merging of free memory blocks which helps a lot in our          * src/include/pa_exception.h: - new exception type for base64
           case: after transform we want CORD(main.result)->cstr[big            decoding is added
           malloc]->transcode[big malloc]  
   2012-03-06  misha
 2006-01-17  paf  
           * tests/274.html: - tests for ^date::today[] and
         * src/types/pa_vhashfile.C: ! hashfile.foreach: counted pairs            ^date.sql-string[datetime|date|time] are added
           before reading them. got rid of reallocs = became quicker and  
           less fragmentated          * src/classes/date.C: - constructor ^date::today[] is added ( new
             feature: #811 ) - ^date.sql-string[] now can accept one param --
 2005-12-29  paf            strings "datetime", "date" or "time" - comments tidying up
   
         * INSTALL, Makefile.am, buildall-with-xml, buildall-without-xml,          * src/types/pa_vdate.h: - get_sql_string now can print datetime,
           configure, configure.in, src/include/pa_version.h,            date and time
           src/lib/ltdl/Makefile.am, src/lib/ltdl/acconfig.h,  
           src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,  2012-03-03  misha
           src/lib/ltdl/config.sub, src/lib/ltdl/configure.in,  
           src/lib/ltdl/install-sh, src/lib/ltdl/ltmain.sh,          * tests/193.html: - tests for
           src/lib/ltdl/missing, www/htdocs/_bug.html: . merged from 3.2.1            ^string:base64[encoded;$.strict(true)] are added
   
         * Makefile.am, src/lib/ltdl/Makefile.am: . now site.m4 also          * tests/results/auto.p: - try-catch operator is added
           packaged when 'make dist', so do configure companion files in  
           src/lib/ltdl          * src/: classes/file.C, classes/string.C, include/pa_common.h,
             main/pa_common.C: - $.strict(true|false) option is added to
         * src/lib/ltdl/: Makefile.am, acconfig.h, acinclude.m4,            base64 decode methods ( new feature: #55 )
           config.guess, config.sub, configure.in, install-sh, ltmain.sh,  
           missing: . now config_auto.h is created with configure [were          * src/main/pa_common.C: - base64 decode memory usage was decreased
           constant]            ( new feature: #819 )
   
         * INSTALL: . references to documentation and some clarification  2012-02-28  moko
   
         * buildall-with-xml, buildall-without-xml: . farawell doc          * src/classes/hash.C: ident test
           indication  
   2012-02-27  misha
         * Makefile.am: . dist+=buildall*  
           * src/classes/file.C: - PARSER_VaRSION => PARSER_VeRSION
 2005-12-28  paf  
   2012-01-08  misha
         * configure: . 3.2.1  
           * tests/273.html: - tests for ^string.replace[from;to] are added
         * INSTALL, buildall-with-xml, buildall-without-xml: + started to  
           simplify build process, see INSTALL          * src/: classes/string.C, include/pa_dictionary.h,
             main/pa_dictionary.C, main/pa_string.C: -
 2005-12-26  paf            ^string.replace[from;to] is added ( new feature: #741 ) -
             ^string.replace[one subst here] is slightly optimized
         * configure: ver  
   2011-12-07  misha
         * configure.in, src/include/pa_version.h, src/main/compile.tab.C:  
           version          * src/classes/table.C: - $t[^table::create{$empty}] now creates
             named table with one empty column ( bugfix: #63 )
 2005-12-21  paf  
   2011-11-30  misha
         * src/main/compile.tab.C, src/main/main.vcproj,  
           www/htdocs/_bug.html: . win32: grammar is now compiled with bison          * src/classes/json.C: - it's possible to set user's method for
           1.875b, it reports unexpected token names            parsing arrays: ^json:parse[...;$.array[$hook]] ( new feature:
             #763 )
 2005-12-19  paf  
           * tests/272.html: - test for ^json:parse[...;$.array[$hook]]
         * src/main/compile.tab.C, src/types/pa_vxnode.h,  
           www/htdocs/_bug.html, www/htdocs/_bug.xsl: ! bugfix xnode now  2011-11-23  misha
           holds a link to xmlNode to prevent premature gc(xmlNode)  
           * src/: classes/curl.C, classes/file.C, classes/image.C,
         * src/classes/classes.vcproj, src/include/pa_config_fixed.h,            classes/table.C, classes/xdoc.C, types/pa_vfile.C,
           src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,            types/pa_vfile.h, types/pa_vform.C: - constructor
           src/main/main.vcproj, src/main/pa_globals.C,            ^file::create[mode;filename;content[;options]] now accepts binary
           src/targets/cgi/parser3.vcproj,            mode and file-content - new constructor's format:
           src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj,            ^file::create[string-or-file-content[;$.name[filename]
           configure, configure.in, src/include/pa_version.h: . killing            $.mode[text|binary] $.content-type[...] $.charset[...]]] ( new
           gdome [what a relief]            feature: #65 )
   
         * tests/: 097.html, 106.html, 108.html, 110.html, 112.html,          * src/: include/pa_request.h, main/pa_request.C: - new method
           113.html, 114.html, 115.html, 116.html, 117.html, Makefile,            mime_type_of(const String*) is added
           run_parser.sh, results/001.processed, results/002.processed,  
           results/003.processed, results/004.processed,          * src/include/pa_exception.h: - new exception constant
           results/005.processed, results/006.processed,            FILE_NAME_MUST_BE_SPECIFIED is added
           results/008.processed, results/009.processed,  
           results/010.processed, results/011.processed,          * src/classes/table.C: - bug with negative offset transformed into
           results/012.processed, results/013.processed,            a feature. it means pointing to a row from the end of the table (
           results/014.processed, results/015.processed,            new feature: #810 )
           results/016.processed, results/017.processed,  
           results/018.processed, results/020.processed,  2011-11-19  misha
           results/021.processed, results/022.processed,  
           results/023.processed, results/024.processed,          * src/classes/table.C: - íåñêîëüêî signed/unsigned warnings óáðàíû
           results/025.processed, results/026.processed,            â ìåòîäå _select ( new feature: #810 )
           results/027.processed, results/028.processed,  
           results/029.processed, results/030.processed,          * src/types/pa_vxdoc.C: - checkout if $.encoding and $.charset
           results/031.processed, results/032.processed,            options were specified together is simplified
           results/033.processed, results/034.processed,  
           results/035.processed, results/036.processed,  2011-11-12  misha
           results/037.processed, results/038.processed,  
           results/039.processed, results/040.processed,          * src/main/pa_request.C: - forgotten fix for escaping filename in
           results/041.processed, results/042.processed,            HTTP content-disposition header (a part of bug #361 )
           results/043.processed, results/044.processed,  
           results/045.processed, results/046.processed,          * src/classes/json.C: - ^json:string[$.class_name[jmethod]] now
           results/047.processed, results/048.processed,            checks for ancestors' classes as well ( new feature: #456 )
           results/049.processed, results/050.processed,  
           results/051.processed, results/052.processed,          * src/classes/op.C: - exceptions for ^break[] and ^continue[]
           results/053.processed, results/054.processed,            "without cycle" now have types "parser.break" and
           results/055.processed, results/056.processed,            "parser.continue" instead of "parser.runtime" ( new feature: #799
           results/057.processed, results/058.processed,            )
           results/059.processed, results/060.processed,  
           results/061.processed, results/062.processed,  2011-11-11  misha
           results/063.processed, results/064.processed,  
           results/065.processed, results/066.processed,          * tests/results/: 099.processed, 100.processed, 205.processed,
           results/067.processed, results/068.processed,            237.processed: - since bug #361 was fixed the content of filename
           results/069.processed, results/070.processed,            in HTTP headers is quoted
           results/071.processed, results/072.processed,  
           results/073.processed, results/074.processed,          * tests/results/270.processed: - result for test 270
           results/075.processed, results/076.processed,  
           results/077.processed, results/078.processed,          * tests/: 065.html, results/065.processed: - more tests for
           results/079.processed, results/080.processed,            ^file:basename[] & Co were added
           results/081.processed, results/082.processed,  
           results/083.processed, results/084.processed,          * tests/270_dir/: 270.txt, subdir/270.txt: - stuff for 270.html
           results/085.processed, results/086.processed,  
           results/087.processed, results/088.processed,          * tests/270.html: - tests for ^file:find[] are added
           results/089.processed, results/090.processed,  
           results/091.processed, results/092.processed,          * src/types/pa_vxdoc.C: - now it's possible to specify encoding
           results/093.processed, results/094.processed,            using option $.charset. option $.engoding is still supported but
           results/095.processed, results/096.processed,            these options can not be specified together
           results/097.processed, results/099.processed,  
           results/100.processed, results/101.processed,          * src/classes/xdoc.C: - charset.isUTF8 is used instead of
           results/102.processed, results/104.processed,            comparation charset name with string "UTF-8" ( bugfix: #759 )
           results/105.processed, results/106.processed,  
           results/107.processed, results/108.processed,  2011-10-11  misha
           results/109.processed, results/110.processed,  
           results/111.processed, results/112.processed,          * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h: - new
           results/113.processed, results/114.processed,            option was added: ^xdoc.file[$.name[èìÿ ôàéëà]] (new feature:
           results/115.processed, results/117.processed,            #622)
           results/119.processed, results/120.processed,  
           results/121.processed, results/122.processed,  2011-09-30  misha
           results/123.processed, results/124.processed,  
           results/125.processed, results/126.processed,          * src/types/pa_vrequest.C: - saving empty $request:post-body causes
           results/127.processed, results/128.processed,            exception "saving stat-ed file" ( bugfix: #395 )
           results/129.processed, results/130.processed,  
           results/131.processed, results/132.processed,  2011-05-30  misha
           results/133.processed, results/134.processed,  
           results/135.processed, results/136.processed,          * src/classes/string.C: - fixed bug which was added with
           results/138.processed, results/139.processed,            params.as_hash into string:sql
           results/140.processed, results/141.processed,  
           results/142.processed, results/143.processed,  2011-05-29  misha
           results/144.processed, results/145.processed,  
           results/146.processed, results/147.processed,          * src/types/pa_value.C: - filename in content-disposition header
           results/148.processed, results/149.processed, results/auto.p: .            must be quoted ( bugfix: #361 )
           now works if we turn off default auto.p  
   2011-05-27  misha
         * configure: . makes  
           * src/classes/: image.C, xdoc.C: - $.mode must be set for newly
         * src/types/pa_vxnode.C: . less warnings            created file
   
         * src/types/pa_vxnode.C, tests/142.html, tests/144.html,          * src/classes/: hash.C, mail.C: - little tunning with get_hash
           tests/145.html, tests/149.html, tests/descript.ion,            usage
           tests/outputs/d.cmd, tests/results/142.processed,  
           tests/results/143.processed, tests/results/144.processed,          * src/include/pa_exception.h: - one more string for exception was
           tests/results/145.processed, tests/results/146.processed,            added
           tests/results/147.processed, tests/results/148.processed,  
           tests/results/149.processed, www/htdocs/_bug.html: . removed  2011-05-25  misha
           .nodeValue from all node types other than 5 (grabbed piece from  
           gdome)          * tests/269.html: - tests for checking input params in some dom
             methods
         * tests/: 137.html, results/137.processed: . not handled this case  
           yet. code does not hang from inserting parent into child,          * src/classes/: xdoc.C, xnode.C: - validation of some input params
           considering thing minor issue -- nodes are removed from source            was added. it isn't possible not wo create xdoc with invalid
           anyway, don't know why shold that be an error after all            tagName. ( bugfix: #160 )
   
         * src/targets/cgi/parser3.C: . style          * src/include/: pa_exception.h, pa_xml_exception.h: - exception's
             string "data must be string" was mover from pa_exception.h to
         * src/classes/xnode.C: . "xml.dom" . xnode.select* now works on            pa_xml_exception.h
           xdoc too [were barking "not element"]  
           * src/classes/: xnode.C, xnode.h: - methods as_xmlqname,
 2005-12-16  paf            as_xmlncname, as_xmlname and as_xmlnsuri were added
   
         * tests/146.html, tests/147.html, tests/148.html,          * src/main/pa_xml_exception.C: - XmlException accepts more options
           www/htdocs/_bug.html: . more tests  
           * src/include/pa_xml_exception.h: - XmlException accepts more
         * src/classes/xnode.C: . also bark on possible errors            options - XML-related exception's strings were added
   
         * src/types/: pa_vxdoc.C, pa_vxnode.C, pa_vxnode.h: + xdoc DOM          * src/: classes/xdoc.C, types/pa_vxdoc.h: - code cleanup (unused
           props            output_options were removed)
   
         * www/htdocs/_bug.html: ! fixed overoptimized ^call(false) case.  2011-05-19  misha
           (confused it with ^call[] case)  
           * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
         * src/: types/pa_value.h, types/pa_vvoid.h, main/compile.tab.C,            params.as_hash is used more while parsing methods hash-options
           main/compile.y: merged from HEAD ! fixed overoptimized  
           ^call(false) case. (confused it with ^call[] case)  2011-05-18  misha
   
         * src/main/: compile.tab.C, compile.y: ! fixed overoptimized          * operators.txt: - info about json-serialization of xdoc was added
           ^call(false) case. (confused it with ^call[] case)  
           * tests/256.html: - tests for json-serialization xdoc were added
         * tests/: 142.html, 143.html, 144.html, 145.html: . dom [part]  
           * src/types/pa_vxdoc.C: - ups. I've forgot about "method" :)
         * tests/: 006.html, 034.html, 057.html, Makefile, make_tests.cmd,  
           results/001.processed, results/002.processed,          * src/: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
           results/003.processed, results/004.processed,            classes/json.C, classes/xdoc.C: - now json:string can serialize
           results/005.processed, results/006.processed,            xdoc-objects. options (the same as ^xdoc.string[]) could be
           results/008.processed, results/009.processed,            specified in $.xdoc[] ( new feature: #265 )
           results/010.processed, results/011.processed,  
           results/012.processed, results/013.processed,  2011-05-15  misha
           results/014.processed, results/015.processed,  
           results/016.processed, results/017.processed,          * tests/268.html: - tests for ^table.count[with options] were added
           results/018.processed, results/019.processed,  
           results/020.processed, results/021.processed,          * src/classes/table.C: - method ^table.count[] now can accept
           results/022.processed, results/023.processed,            options ( new feature: #93 ): ^table.count[column] returns number
           results/024.processed, results/025.processed,            of columns for named table; ^table.count[cells] returns number of
           results/026.processed, results/027.processed,            cells in the current row; ^table.count[] & ^table.count[rows]
           results/028.processed, results/029.processed,            return number of rows in a table.
           results/030.processed, results/031.processed,  
           results/032.processed, results/033.processed,          * tests/267.html: - test for checking switch/case in boolean mode
           results/034.processed, results/035.processed,            was added
           results/036.processed, results/037.processed,  
           results/038.processed, results/039.processed,          * src/classes/op.C: - if switch's or case's value is bool, they are
           results/040.processed, results/041.processed,            compared as bool values, not as double values: new feature: #351
           results/042.processed, results/043.processed,  
           results/044.processed, results/045.processed,  2011-05-06  misha
           results/046.processed, results/047.processed,  
           results/048.processed, results/049.processed,          * tests/242.html: - EOL before EOF was added
           results/050.processed, results/051.processed,  
           results/052.processed, results/053.processed,          * tests/169.html: - tests for splitting empty string and void were
           results/054.processed, results/055.processed,            added
           results/056.processed, results/057.processed,  
           results/058.processed, results/059.processed,          * src/main/pa_string.C: - fix of fix (^empty_string.split[...]
           results/060.processed, results/061.processed,            returned table with one empty cell)
           results/062.processed, results/063.processed,  
           results/064.processed, results/065.processed,  2011-04-03  misha
           results/066.processed, results/067.processed,  
           results/068.processed, results/069.processed,          * src/include/pa_version.h, configure.in: - version in head was
           results/070.processed, results/071.processed,            changed to 3.4.2b
           results/072.processed, results/073.processed,  
           results/074.processed, results/075.processed,  2011-03-30  misha
           results/076.processed, results/077.processed,  
           results/078.processed, results/079.processed,          * src/types/pa_vregex.C: - \w & Co now contain unicode properties
           results/080.processed, results/081.processed,            as well ( new feature #294 )
           results/082.processed, results/083.processed,  
           results/084.processed, results/085.processed,  2011-03-29  misha
           results/086.processed, results/087.processed,  
           results/088.processed, results/089.processed,          * buildall-with-xml, buildall-without-xml: - PCRE stack usage is
           results/090.processed, results/091.processed,            limited to approx. 6 MB. previous limits were too big for real
           results/092.processed, results/093.processed,            life. bugfix: #216
           results/094.processed, results/095.processed,  
           results/096.processed, results/097.processed,  2011-03-04  moko
           results/099.processed, results/101.processed,  
           results/102.processed, results/104.processed,          * etc/parser3.charsets/cp866.cfg: Conforms to
           results/105.processed, results/106.processed,            http://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP866.TXT
           results/107.processed, results/108.processed,  
           results/109.processed, results/110.processed,          * etc/parser3.charsets/cp866.cfg: cp866 initial version from
           results/111.processed, results/112.processed,            vlalek@
           results/113.processed, results/114.processed,  
           results/115.processed, results/116.processed,  2011-02-22  misha
           results/117.processed, results/118.processed,  
           results/119.processed, results/120.processed,          * src/include/pa_charset.h, operators.txt: - some methods mustn't
           results/121.processed, results/122.processed,            be under #ifdef XML or parser can't be compiled without xml
           results/123.processed, results/124.processed,            support
           results/125.processed, results/126.processed,  
           results/127.processed, results/128.processed,  2011-02-21  misha
           results/129.processed, results/130.processed,  
           results/131.processed, results/132.processed,          * src/targets/apache/: Makefile.am: - mention
           results/133.processed, results/134.processed,            ApacheModuleParser3.vcproj was removed
           results/135.processed, results/136.processed,  
           results/137.processed, results/138.processed,          * src/types/pa_vjunction.C: - EOL before EOF was added (warning
           results/139.processed, results/140.processed,            removed)
           results/141.processed: . refreshed old tests, made them work  
           without auto.p (in utf8) . things noted: . gif got encoded  2011-02-20  misha
           differently . exif 0000:00:00 decoded now into 0000:00:00 (were  
           some strange year)          * tests/: 266.html, 266.p: - tests for checking $.inherited and
             $.overridden in ^reflection:method_info[...] were added
         * INSTALL: . revived linux libgc fix  
           * src/classes/reflection.C: - beautifying result of
         * INSTALL, configure.in, src/lib/Makefile.am: . sweetest part [no            ^reflection:method_info[] ($.overridden/inherited)
           glib/gdome in INSTALL and patches]  
   2011-02-18  misha
         * src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,  
           src/include/pa_charset.h, src/include/pa_config_includes.h,          * src/main/: pa_charset.C, pa_http.C, untaint.C: - use pa_isalpha
           src/include/pa_globals.h, src/include/pa_memory.h,            and pa_isalnum instead of isalpha and isalnum - bug with
           src/include/pa_request.h, src/include/pa_xml_exception.h,            redundand quoting lowercased latin chars while building email
           src/lib/cord/Makefile.am, src/lib/cord/cord.vcproj,            body was fixed
           src/lib/cord/cordbscs.c, src/lib/cord/cordprnt.c,  
           src/lib/cord/cordxtra.c, src/main/compile.tab.C,          * src/include/pa_common.h: - pa_isalpha and ps_isalnum methods were
           src/main/pa_charset.C, src/main/pa_globals.C,            added (they check for latin chars only)
           src/main/pa_memory.C, src/main/pa_request.C,  
           src/main/pa_stylesheet_connection.C, src/main/pa_xml_exception.C,  2011-02-16  misha
           src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,  
           src/types/pa_vxnode.C, src/types/pa_vxnode.h,          * src/main/pa_charset.C: - bugfix: in some cases the calculating
           www/htdocs/.htaccess, www/htdocs/_bug.html: . started killing            string size for transcoding gave too small value (should ever
           gdome            look for availability char in dest charset inspite of the char
             size)
 2005-12-13  paf  
   2011-02-04  moko
         * src/main/: pa_request.C: merged from HEAD ! when code in  
           @unhandled_exception thrown another exception, print correct          * tests/223.html: header values now not url-encoded (issue #195)
           origin (earlier code in catch of exception inside of  
           @unhandled_exception grabbed parent_frame(original_exception)  2011-02-01  misha
           origin and printed it, instead of true origin)  
           * buildall-with-xml, buildall-without-xml: - 8.10 => 8.12
         * src/main/pa_request.C: ! when code in @unhandled_exception thrown  
           another exception, print correct origin (earlier code in catch of  2011-01-31  misha
           exception inside of @unhandled_exception grabbed  
           parent_frame(original_exception) origin and printed it, instead          * src/main/pa_request.C: - throw exception if param file_name in
           of true origin)            use_file is empty
   
 2005-12-09  paf  2011-01-08  moko
   
         * INSTALL: . updated INSTALL doc to work around linux stack base          * src/classes/curl.C: compilations errors fixed
           detection problem, due to change in gc6.4 code  
   2010-12-29  moko
         * src/main/: pa_string.C: merged from 3.1.5 ! regex tainting were  
           ignored in ^string.matched :(          * tests/: 265.html, results/265.processed: test for issue #200
             added
         * src/main/pa_string.C: ! regex tainting were ignored in  
           ^string.matched :(          * src/main/pa_string.C: empty regex result check added (fixes issue
             #200)
         * ChangeLog, INSTALL, configure, configure.in, src/classes/date.C,  
           src/include/pa_config_fixed.h, src/include/pa_version.h,          * src/main/pa_http.C: pa_http_safe_header_name corrected a bit
           src/main/compile.y, src/main/compile_tools.h,  
           src/main/pa_charset.C, src/main/pa_common.C,          * tests/results/223.processed: header values now not url-encoded
           src/main/pa_globals.C, src/main/pa_string.C,            (issue #195)
           src/targets/cgi/getopt.c, src/targets/isapi/parser3isapi.C,  
           src/types/pa_vmail.C, www/htdocs/.htaccess, www/htdocs/_bug.txt,          * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
           www/htdocs/auto.p: . merged latest fixes from 3.2.0            main/untaint.C: L_HTTP_HEADER now used in http headers values,
             pa_http_safe_header_name added for headers names (fixes bug #195)
 2005-12-08  paf  
   2010-12-18  misha
         * src/types/pa_vmail.C: merged from 3.2.0 ! bcc line longer then  
           500 chars now handled OK [were wrapped on 500th char according to          * src/: types/types.vcproj, classes/classes.vcproj: - arp-include
           rfc, but sendmail failed to unwrap it properly]            => pa-include
   
         * src/types/pa_vmail.C: ! bcc line longer then 500 chars now  2010-11-28  moko
           handled OK [were wrapped on 500th char according to rfc, but  
           sendmail failed to unwrap it properly]          * src/lib/sdbm/sdbm.vcproj: apr -> pa (.vcproj)
   
         * src/targets/isapi/parser3isapi.C: . less warnings          * src/lib/sdbm/: pa_strings.C, sdbm.c, pa-include/pa_strings.h: apr
             -> pa
         * src/targets/isapi/parser3isapi.C: . undone some strange change  
           since 3.1.5          * configure.in: apr -> pa
   
         * src/targets/isapi/parser3isapi.C: . merged from 3.1.5 release          * src/types/: pa_vhashfile.C, pa_vhashfile.h: apr -> pa
           link fixes  
           * src/: lib/sdbm/pa-include/Makefile.am, lib/sdbm/Makefile.am,
         * src/classes/date.C, src/include/pa_config_fixed.h,            classes/Makefile.am, types/Makefile.am: apr -> pa
           src/main/compile.tab.C, src/main/compile.y,  
           src/main/compile_tools.h, src/main/pa_charset.C,          * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C,
           src/main/pa_common.C, src/main/pa_globals.C,            pa_file_io.C, pa_strings.C, sdbm.c, sdbm_hash.c, sdbm_lock.c,
           src/main/pa_string.C, src/targets/cgi/getopt.c,            sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h,
           www/htdocs/_bug.html, www/htdocs/_bug.txt, www/htdocs/auto.p: .            pa-include/pa_apr.h, pa-include/pa_errno.h,
           less warnings            pa-include/pa_file_info.h, pa-include/pa_file_io.h,
             pa-include/pa_sdbm.h, pa-include/pa_strings.h: apr -> pa (apache2
         * src/include/pa_config_fixed.h: . removed outdated string origins            module apr name conflict resolved)
           [in current storage scheme there's no place for them. someday we  
           can add third CORD to store origins and special version of parser  2010-11-27  misha
           which stores origins there [separate binary]]  
           * buildall-with-xml, buildall-without-xml: - typo fixed: libz2 ->
 2005-12-07  paf            libbz2
   
         * src/targets/isapi/parser3isapi.C: . now links in release mode  2010-11-26  misha
   
         * src/include/pa_version.h: makefiles          * src/: types/pa_vregex.C, classes/hash.C, classes/table.C: -
             warnings removed
         * src/include/pa_version.h: . not beta  
   2010-11-25  moko
         * configure, configure.in, src/include/pa_version.h: not beta  
           * operators.txt: $.indent(true)
 2005-12-06  paf  
           * operators.txt: another bugfix. :)
         * src/types/: pa_wcontext.C, pa_wcontext.h: ! after long discussion  
           [some details here http://i2/tasks/edit/?id=4869912143891354460]          * operators.txt: bugfix. :)
           decided to undo the change ^call[$void] passes void. now it will  
           pass empty string again.          * buildall-with-xml: libxml2-2.7.8 + with-apache
   
         * src/main/: compile.tab.C, compile.y: . version readded  2010-11-24  moko
   
         * src/classes/op.C: . in this version there is no ^switch[$nothing]          * configure: apxs support
           = ^switch[void] problem  
           * configure.in: apxs support -Bstatic gc removed for OS X
 2005-12-01  paf  
           * src/targets/: Makefile.am, apache/Makefile.am: apxs support
         * src/classes/op.C: mreged from HEAD . bugfix ^switch[$void_value]  
           caused ^case[string] to be coerced to double since searching          * src/main/: pa_globals.C, pa_xml_io.C: the rest converted to
           value were not string (it was vvoid)            THREAD_LOCAL usage
   
         * src/classes/op.C: . bugfix ^switch[$void_value] caused          * src/: classes/curl.C, include/pa_config_includes.h,
           ^case[string] to be coerced to double since searching value were            main/pa_globals.C: THREAD_LOCAL defined and used
           not string (it was vvoid)  
   2010-11-23  moko
         * INSTALL: . compiled with       libxml2 = 2.6.22       libxslt =  
           1.1.15       glib = 1.2.10       gdome2 = 0.8.1          * src/: classes/op.C, main/pa_os.C: microseconds, not milliseconds
             should be passed to pa_sleep, and only fractional part (bugfix:
 2005-11-30  paf            #188)
   
         * src/types/pa_vdate.h: merged from HEAD: ! bugfix: to drop TZ on          * src/targets/apache/mod_parser3.c: 1.3 compatibility
           win32 must putenv("TZ="), on unix works only putenv("TZ")  
           * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
         * src/types/pa_vdate.h: ! bugfix: to drop TZ on win32 must            GC_dont_gc=1, as in cgi version
           putenv("TZ="), on unix works only putenv("TZ")  
           * src/targets/apache/mod_parser3.c: warning war
         * INSTALL: . xml libs versions updated  
           * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
         * src/main/pa_globals.C: //20051130 trying to remove this, author            pa_httpd.h: version removed, some trash removed
           claims that fixed a lot there // 20040920 for now both  
           workarounds needed. wait for new libxml/xsl versions          * src/targets/apache/mod_parser3.c: version removed (we don't want
             to show it), warning war
 2005-11-28  paf  
           * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
         * src/classes/table.C: merged from HEAD: ! nameless table has            pa_httpd.h: parser_status_allowed removed + merge config
           columns==0            functions removed (override is the default) + beauty
   
         * src/classes/table.C: ! nameless table has columns==0          * src/: include/pa_request.h, main/pa_request.C,
             targets/cgi/parser3.C, targets/isapi/parser3isapi.C: option to
         * src/main/pa_http.C: merged from HEAD: ! status line check made            hide $status used in apache module removed
           earlier [was totally wrong]  
   2010-11-18  moko
         * src/main/pa_http.C: ! status line check made earlier [was totally  
           wrong]          * operators.txt: $.table[compact] added for ^json:string[]
   
 2005-11-25  paf  2010-11-16  moko
   
         * src/include/pa_array.h: -this reduces speed(table::load) strange.          * src/targets/apache/mod_parser3.c: some cleanup done
           undoing for now...  
           * src/main/untaint.C: bugfix: first, second String::Body argument
         * src/include/pa_version.h: -this reduces speed(table::load),            is hashcode; second, info.fragment_begin is original, not
           strange. undoing            resulting length
   
         * src/classes/op.C: merged from HEAD + ^while(){}[SEPARATOR]          * src/classes/file.C: new feature: $.stdin now untainted
   
         * src/classes/op.C, www/htdocs/_bug.html, www/htdocs/auto.p: +          * tests/results/264.processed: new feature: $.stdin[] now untainted
           ^while(){}[SEPARATOR]  
           * tests/cat.sh: new feature: stdin arg to test $.stdin[value]
         * src/include/pa_array.h: + optimistics added: all arrays (table  
           rows) now grow size*=2, like in .NET ArrayList.EnsureCapacity,          * src/classes/op.C: ^apply-taint[] method added
           this speeds things up and saves memory a LOT! (not noticed  
           negative effect on syntetic tests, future will tell...)          * tests/: 264.html, results/264.processed: ^apply-taint[] test
             added; $.stdin untaint test added
         * src/include/pa_memory.h: . removed GC_DEBUG for debug version, it  
           changed gc_malloc implementation, which obscured profiling  2010-11-15  moko
   
         * src/classes/table.C: merged from HEAD: + optimized          * src/targets/apache/mod_parser3.c: outdated MODULE_MAGIC_NUMBER
           table::load/sql, now row ArrayString-s allocated with            removed
           columns.count() elements and don't always grow from  
           count=3[realloc,realloc]          * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
             pa_httpd.h: 2x2 calculated under apache2. :)
         * src/classes/table.C: + optimized table::load/sql, now row  
           ArrayString-s allocated with columns.count() elements and don't  2010-11-13  moko
           always grow from count=3[realloc,realloc]  
           * src/targets/apache/mod_parser3.c: initial changes to build module
         * src/classes/table.C: merged from HEAD: . ^table.save unused            with apache 2.x includes
           buffer after save  
           * src/targets/apache/: Makefile.am, mod_parser3.c,
         * src/classes/table.C: . ^table.save unused buffer after save            mod_parser3_core.C, pa_httpd.h, pa_threads.C: initial commit for
             united apache 1.3 / apache 2.x DSO module
 2005-11-24  paf  
   2010-11-09  moko
         * configure.in: . merged glib2-config patch  
           * src/types/pa_method.h: check added to dissallow @method[name;*]
         * configure.in: + trying to find glib2-config            syntax
   
         * src/classes/file.C, src/include/pa_common.h, src/main/execute.C,          * tests/: 263.html, results/263.processed: test from method[*args]
           src/main/pa_common.C, src/main/pa_request.C,            added
           www/htdocs/_bug.html: merged from HEAD: ! changed  
           file/dir_readable to simple file/dir_exist, this would help in          * src/types/: pa_method.h, pa_vmethod_frame.h: closes #26: variable
           situations "class not found because .p file has bad rights" << in            number of params can now be passed to a method declared with *arg
           that case error would be explicit "access denied to 'this' file"  
   2010-11-06  moko
         * aclocal.m4, configure, src/include/pa_config_auto.h.in: makefiles  
           * src/classes/table.C: formating fixed. :)
         * src/: classes/file.C, include/pa_common.h, main/execute.C,  
           main/pa_common.C, main/pa_request.C: ! changed file/dir_readable          * src/classes/table.C: closes #4: ^table.select now supports
           to simple file/dir_exist, this would help in situations "class            $.limit(), $.offset, $.reverse() options
           not found because .p file has bad rights" << in that case error  
           would be explicit "access denied to 'this' file"          * tests/: 262.html, results/262.processed: test for ^table:select
             with options added (feature #4)
         * src/: classes/file.C, include/Makefile.am, include/pa_common.h,  
           include/pa_http.h, main/Makefile.am, main/main.vcproj,          * src/include/pa_array.h: remove function added
           main/pa_common.C, main/pa_http.C: merged from HEAD: +!  
           ^file::exec/cgi[script;$.charset[changed]          * src/types/: pa_vhash.C, pa_vhash.h: avoiding temporal String
           $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be            object in get_element/put_element, using static one.
           encoded in $.charset charset  
   2010-11-04  moko
         * src/classes/file.C, www/htdocs/_bug.html, www/htdocs/_bug.pl,  
           www/htdocs/_bug.txt: +! ^file::exec/cgi[script;$.charset[changed]          * src/types/pa_vregex.C: closes #6: exeption now thrown if invalid
           $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be            options is passed
           encoded in $.charset charset  
           * tests/: 256.html, results/256.processed: $.table[compact] feature
         * src/: include/Makefile.am, include/pa_common.h,            now tested; k and p in handler now tested.
           include/pa_http.h, main/Makefile.am, main/main.vcproj,  
           main/pa_common.C, main/pa_http.C: . extracted http:// into          * src/types/: pa_value.h, pa_vtable.C, pa_vtable.h: fixes #153,
           separate file [preparation for            $.table[compact] feature added
           ^file::cgi[script;$.form[$.field1[]  
           * src/classes/json.C: key is now passed to handler in
 2005-11-22  paf            value_json_string; ^json:string result now process tainting
             inside and returns clean string, related to issue #153
         * src/: include/pa_version.h, main/compile.tab.C: makefiles  
           * src/main/untaint.C: bugfix: charset can be null (in
         * acinclude.m4, configure.in: . merged underquting fixes            ^string:save[] as example), thus check is added
   
         * src/include/pa_config_auto.h.in: configure+makes  2010-10-31  moko
   
         * src/classes/op.C: . overmerged a little          * src/classes/string.C: error message changed (fixes issue #149)
   
         * src/main/compile.tab.C: Makefile  2010-10-29  moko
   
         * src/main/: pa_common.C: . less gcc warnings          * src/main/pa_http.C: ":port" is now added to "Host:" header if
             port is not default (fixes issue #155); exception on invalid port
         * src/classes/op.C: merged from HEAD: + $exception.handled[cache]            added.
           now reports original exception if we have no old cache  
           * src/main/untaint.C: '*' is now not urlencoded to allow header
         * src/classes/op.C, www/htdocs/_bug.html: +            "Accept: */*" to be passed
           $exception.handled[cache] now reports original exception if we  
           have no old cache  2010-10-28  moko
   
         * src/classes/op.C, src/include/pa_string.h, src/main/untaint.C,          * src/classes/curl.C: bugfix: detect_charset() was throwing
           www/htdocs/_bug.html: merged from HEAD: + ^taint/untaint[regex]            exception on unknown charset even if response_charset was
           << escapes these: \^$.[]|()?*+{}            specified
   
         * src/classes/op.C, src/include/pa_string.h, src/main/untaint.C,  2010-10-27  moko
           www/htdocs/_bug.html: + ^taint/untaint[regex] << escapes these:  
           \^$.[]|()?*+{}          * src/classes/string.C: ^string.append removed for void
             compatibility
         * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to  
           getenv-ed variable, which does not work both on win32&unix.  2010-10-26  moko
           copied old TZ value now  
           * src/classes/json.C: libjson supports array at top level, we too
         * src/types/pa_vdate.h: merged from 3.1.5: ! date TZ save/restore            (GPF fixed)
           stored pointer to getenv-ed variable, which does not work both on  
           win32&unix. copied old TZ value now  2010-10-25  moko
   
         * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to          * tests/: 253.html, results/253.processed: libjson supports array
           getenv-ed variable, which does not work both on win32&unix.            at top level, parser now supports it as well.
           copied old TZ value now  
           * tests/261.html, tests/results/261.processed,
         * src/types/pa_vresponse.C: merged from HEAD: + $response:headers            src/types/pa_vstring.h: empty string is now void compatible
           access to internal hash            (allows $empty.key)
   
         * src/types/pa_vresponse.C, www/htdocs/_bug.html: +  2010-10-22  misha
           $response:headers access to internal hash  
           * src/types/pa_vcookie.C: - fix for session cookie (was introduced
         * src/targets/isapi/parser3isapi.C: merged from HEAD: +            while adding additional expires checkout)
           GC_large_alloc_warn_suppressed=0 between requests [apache mod_,  
           isapi] this reduces number of "GC Warning: Repeated allocation of          * tests/030.html: - test for session cookie was added
           very large block" messages to only important onces  
   2010-10-21  moko
         * src/targets/isapi/parser3isapi.C, www/htdocs/_bug.html: +  
           GC_large_alloc_warn_suppressed=0 between requests [apache mod_,          * src/: classes/string.C, classes/void.C, main/execute.C,
           isapi] this reduces number of "GC Warning: Repeated allocation of            types/pa_vvoid.C, types/pa_vvoid.h: void now inherited from
           very large block" messages to only important onces            string (feature #111)
   
         * src/classes/string.C: merged from HEAD: + removed limitation on          * tests/: 261.html, results/261.processed: checks void from string
           ^string/int/double:sql{}[$.default[({param style})] ]            inheritance (feature #111)
   
         * src/classes/string.C: + removed limitation on          * src/classes/: bool.C, classes.h, curl.C, date.C, double.C,
           ^string/int/double:sql{}[$.default[({param style})] ]            file.C, hash.C, hashfile.C, image.C, inet.C, int.C, json.C,
             reflection.C, regex.C, string.C, table.C, void.C: used_directly()
         * src/main/pa_common.C: merged from HEAD: + removed "use either uri            now true by default
           with ?params or $.form option" limitation  
   2010-10-17  moko
         * src/main/pa_common.C: + removed "use either uri with ?params or  
           $.form option" limitation          * src/: include/pa_string.h, main/pa_http.C, main/untaint.C: files
             upload now uses binary blocks instead of L_FILE_POST tainting.
         * src/classes/file.C, src/classes/string.C,            (bugfix: #128)
           src/include/pa_common.h, src/main/pa_common.C,  
           www/htdocs/_bug.html: merged from HEAD: + ^file.base64[] encode +          * tests/: 223.html, results/223.processed: binary file upload test
           ^file::base64[encoded] decode            added, GPF (issue #128) also checked in this test
   
         * src/classes/file.C, src/classes/string.C,  2010-10-13  misha
           src/include/pa_common.h, src/main/pa_common.C,  
           www/htdocs/_bug.html: + ^file.base64[] encode +          * tests/260.html: - test for math:convert
           ^file::base64[encoded] decode  
           * src/classes/math.C: - error in math:convert was fixed
         * src/classes/file.C, src/classes/string.C, www/htdocs/_bug.html: +  
           ^string.base64[] encode + ^string:base64[encoded] decode          * operators.txt: - info about
             ^math:convert[number](from-base;to-base) was added
         * src/classes/string.C, src/include/pa_common.h,  
           src/main/pa_common.C, www/htdocs/_bug.html: + ^string:base64[in]          * src/classes/math.C: - method
           encode + ^string.base64[] decode            ^math:convert[number](from-base;to-base) for converting number
             represention from one base to another was added ( new feature:
 2005-11-21  paf            #23 )
   
         * src/classes/file.C, www/htdocs/_bug.html: + merged from HEAD:  2010-10-13  moko
           ^file::create[text;file.xml;^untaint[xml]{data}]  
           * src/main/compile.tab.C: [] now is empty string, not void
         * src/classes/file.C, www/htdocs/_bug.html: +  
           ^file::create[text;file.xml;^untaint[xml]{data}]          * src/main/compile.y: [] now is empty string, not void
   
         * src/main/pa_request.C: ! merged: $response:body[file] now          * src/types/pa_vvoid.h: void now passed as parameter
           differes from :download, it does not return content-disposition  
           at all now [previusely it returned valueless content-disposition]          * tests/: 259.html, results/259.processed: to test difference
             between void and empty string (see ticket #111)
         * src/main/pa_request.C: ! $response:body[file] now differes from  
           :download, it does not return content-disposition at all now          * tests/results/152.processed: $sEmpty[] is now empty string, not
           [previusely it returned valueless content-disposition]            void
   
         * src/main/: compile.tab.C, compile.y: ! overoptimized void          * tests/256.html: $s[$void] is no longer empty string
           literals, reverted to just vvod, recreating empty array with each  
           void_value token. that's absolutely needed, since that array          * tests/254.html: empty string is no longer void
           grows  
   2010-10-12  misha
         * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,  
           types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,          * src/types/pa_vcookie.C: - check if $.expires value can be
           types/pa_vmethod_frame.h: + merged: expression literals:            converted to date during cookies set up ( bugfix: #104 )
           true/false. ^format[$.indent(true)]  
           * tests/041.html: - more tests for ^table.locate were added
         * src/main/compile.tab.C, src/main/compile.y, src/types/pa_value.h,  
           src/types/pa_vbool.h, src/types/pa_vdouble.h,          * src/classes/table.C: - ^table.locate[field;value;options] didn't
           src/types/pa_vint.h, src/types/pa_vmethod_frame.h,            work ( bugfix: #129 ) - exception comment for incorrect options
           www/htdocs/_bug.html: + expression literals: true/false.            ^table.locate[field;value;options] was fixed
           ^format[$.indent(true)]  
   2010-10-10  moko
         * src/types/Makefile.am, src/types/pa_venv.C, src/types/pa_venv.h,  
           src/types/types.vcproj, www/htdocs/_bug.html,          * src/: classes/reflection.C, main/execute.C: constructor returning
           www/htdocs/_bug.txt: + merged: $env:PARSER_VERSION reports            another object feature returned
           "3.1.5beta (compiled on i386-pc-win32)"  
           * tests/results/258.processed: test result updated as constructor
         * src/types/Makefile.am, src/types/pa_venv.C, src/types/pa_venv.h,            returning another object feature returned
           src/types/types.vcproj, www/htdocs/_bug.html: +  
           $env:PARSER_VERSION reports "3.1.5beta (compiled on          * tests/: 258.html, results/258.processed: test for constructor
           i386-pc-win32)"            returning another object
   
 2005-11-18  paf  2010-10-08  misha
   
         * src/classes/: double.C, int.C: ! ^int/double:sql{select          * tests/257.html: - whitespaces after @METACOMMANDS and their
           null}[$.default(123)] will now return default value            options shouldn't cause exceptions any longer
   
         * www/htdocs/_bug.html: + ^cache[] << returns current cache  2010-10-06  moko
           expiration time  
           * src/classes/: hash.C, table.C: length from sql server is now
         * src/classes/op.C: + merged ^cache[] << returns current cache            ignored, as sql string can contain 0x00 inside (bugfix: #119)
           expiration time  
   2010-10-02  misha
         * src/classes/op.C: + ^cache[] << returns current cache expiration  
           time          * operators.txt: - the X mark was removed from ^cache[file]. it is
             usable to delete cache file.
         * src/classes/table.C: ! merged ^table::create[not'nameless';  
           failed << Exception.problem_source pointed to local var!  2010-10-02  moko
   
         * src/classes/table.C: ! ^table::create[not'nameless'; failed <<          * tests/: 253.html, results/253.processed: hook_key added for key
           Exception.problem_source pointed to local var!            checking
   
         * src/main/pa_common.C: ! merged: file::load[binary;fileOfZeroSize]          * src/classes/json.C: null key bug fixed
           now loads VFile.ptr!=0, so such files can be saved now  
   2010-09-29  misha
         * src/main/pa_common.C: ! file::load[binary;fileOfZeroSize] now  
           loads VFile.ptr!=0, so such files can be saved now          * tests/: 256.html, 256.txt: - tests for ^json:string[] were added
   
         * src/include/pa_dir.h, www/htdocs/_bug.html, www/htdocs/_bug.txt:  2010-09-25  moko
           ! merged: file:list now sees .xxx files, only . and .. now  
           removed from list [were removed all .*]          * src/classes/json.C: small fixed
   
         * src/include/pa_dir.h: ! file:list now sees .xxx files, only . and          * tests/results/: 253.processed, 255.processed: just updated
           .. now removed from list [were removed all .*]  
           * tests/: 253.html, 253_json.txt, 255.html, results/253.processed,
         * src/lib/sdbm/apr_file_io.C: ! merged from 3.1.5: hashfile file            results/255.processed: charset transcode test added for
           open error now checked, were not :( [stole that piece from apache            json:parse
           1.3 sources]  
   2010-09-24  moko
         * src/lib/sdbm/apr_file_io.C: ! hashfile file open error now  
           checked, were not :( [stole that piece from apache 1.3 sources]          * src/types/pa_value.h: warning war :)
   
         * src/main/pa_request.C: ! merged from 3.1.5: ensured proper          * src/: classes/json.C, include/pa_request.h, types/pa_value.h,
           untainting of @main result if returned by $result or            types/pa_vfile.C, types/pa_vtable.C: $.indent implemented for
           $response:body            ^json:string
   
         * src/main/pa_request.C: ! ensured proper untainting of @main  2010-09-22  moko
           result if returned by $result or $response:body  
           * src/main/pa_charset.C: parser charset tables declare only
         * src/main/pa_common.C: ! merged from 3.1.5: fixed file load memory            white-space before 0x20, thus adding the missing chars
           issue: now tries to guess content-length and allocates one big  
           piece if possible [regretfully gc_realloc works as malloc+free,          * etc/parser3.charsets/: koi8-r.cfg, koi8-u.cfg: updated to conform
           leaving lots of holes behind]            to http://unicode.org/Public/MAPPINGS/VENDORS/
   
         * src/: classes/memory.C, main/compile.tab.C, main/pa_common.C: !  2010-09-21  misha
           fixed file load memory issue: now tries to guess content-length  
           and allocates one big piece if possible [regretfully gc_realloc          * src/main/compile.y: - some semicolons were added (VS2010 don't
           works as malloc+free, leaving lots of holes behind]            want to compile grammar if they are absent)
   
 2005-11-16  paf          * tests/: make_tests.cmd, run_tests.cmd: - path tools is changed
   
         * src/include/pa_common.h, src/classes/file.C, src/classes/table.C,          * src/classes/classes.vcproj: - pathes to ls and gawk are changed
           src/main/compile.tab.C, src/main/pa_common.C,  
           www/htdocs/_bug.html: merged to HEAD: ! table::save with          * src/main/main.vcproj: - path to bison is changed
           enclosers now doubles them: "->"" ! table::save/load do not  
           remove elements from options hash  2010-09-21  moko
   
         * src/main/compile.y: ! merged to HEAD: ^if(-f "...") now works          * etc/parser3.charsets/: windows-1250.cfg, windows-1251.cfg,
           [were overoptimized ^if(double_literal), compiler confused            windows-1254.cfg, windows-1257.cfg, x-mac-cyrillic.cfg: updated
           OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX            to conform to http://unicode.org/Public/MAPPINGS/VENDORS/
   
         * src/main/: compile.tab.C, compile.y: ! ^if(-f "...") now works  2010-09-20  misha
           [were overoptimized ^if(double_literal), compiler confused  
           OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX          * src/types/pa_vtable.C: - add EOLs while json-serializing table
   
         * src/classes/file.C, src/classes/table.C, src/include/pa_common.h,          * src/classes/json.C: - add EOL while json-serializing hash
           src/main/pa_common.C, www/htdocs/_bug.html: ! table::save with  
           enclosers now doubles them: "->"" ! table::save/load do not          * src/lib/json/JSON_parser.C: - 'ES' replaced by 'ESC' because some
           remove elements from options hash            compilers don't like 'ES'.
   
 2005-11-03  paf  2010-09-17  misha
   
         * src/main/: Makefile.am, compile.tab.C: removed $< from .y          * operators.txt: - info about json class was added
           compilation, not all makefiles liked that  
           * src/classes/json.C: - ^json:string[object]
 2005-08-30  paf  
           * src/: include/pa_request.h, main/pa_request.C: - stuff for
         * src/classes/op.C: merge . speedup check of [DEFAULT]            preventing infinite recursion while executing json:string was
             added
         * src/classes/op.C: . speedup check of [DEFAULT]  
           * src/include/pa_string.h: - method append_quoted was added
 2005-08-26  paf  
           * src/types/: pa_value.C, pa_value.h, pa_vbool.h, pa_vdate.h,
         * src/classes/date.C, src/types/pa_vdate.h, www/htdocs/_bug.html:            pa_vdouble.h, pa_vfile.C, pa_vfile.h, pa_vint.h, pa_vstring.h,
           merged + date.week            pa_vtable.C, pa_vtable.h, pa_vvoid.h: - method get_json_string
             was added to Value & Co
         * src/classes/date.C, src/types/pa_vdate.h, www/htdocs/_bug.html: +  
           date.week          * src/classes/date.C: - methods get_gmt_string and get_sql_string
             were used
         * src/classes/table.C: merged ! ^table::create[bad]{xxx} now  
           complains about bad!=nameless          * src/types/pa_vdate.h: - methods get_gmt_string and get_sql_string
             were added
         * src/classes/table.C: ! ^table::create[bad]{xxx} now complains  
           about bad!=nameless  2010-09-10  moko
   
         * src/classes/: hash.C, string.C, table.C, void.C: merged !          * src/targets/cgi/parser3.C: vsnprintf now not called twice in
           optional options were allowed to be empty. were checked            die_or_abort (backport from 3.4.1)
           if(is_string), changed to !defined||is_string to allow void  
           * src/targets/cgi/parser3.C: vsnprintf now not called twice in
         * src/targets/isapi/parser3isapi.C, www/htdocs/_bug.html,            die_or_abort (bugfix: #106)
           src/classes/hash.C, src/classes/string.C, src/classes/table.C,  
           src/classes/void.C: ! optional options were allowed to be empty.  2010-09-09  moko
           were checked if(is_string), changed to !defined||is_string to  
           allow void          * src/classes/json.C: warning war. :)
   
         * src/types/pa_vmethod_frame.h: merged ! many classes/*  used  2010-09-08  misha
           as_junction where they needed as_int/double, so failed with  
           recent "(const) now no junction" optimization          * src/lib/json/Makefile.am: - additional include directories were
             added (for pa_memory.h and gc.h)
         * src/classes/: double.C, int.C, math.C, op.C, string.C, table.C:  
           merged ! many classes/*  used as_junction where they needed          * src/lib/json/json.vcproj: - JSON_parser.c => JSON_parser.C -
           as_int/double, so failed with recent "(const) now no junction"            compile as C++ instead default - additional include directory was
           optimization            added (for gc.h)
   
         * src/classes/double.C, src/classes/int.C, src/classes/math.C,          * src/types/pa_vform.C: - little code reformating
           src/classes/op.C, src/classes/string.C, src/classes/table.C,  
           src/main/compile.tab.C, src/types/pa_vmethod_frame.h,          * src/classes/file.C: - $.content-type option now can be specified
           www/htdocs/_bug.html: ! many classes/*  used as_junction where            in ^file::create ( new feature: #102 )
           they needed as_int/double, so failed with recent "(const) now no  
           junction" optimization  2010-09-08  moko
   
 2005-08-24  paf          * src/lib/json/: JSON_parser.C, JSON_parser.h: json lib now uses
             pa_malloc/pa_free
         * src/targets/isapi/: parser3isapi.C, parser3isapi.vcproj: ! on  
           windows 2003 DllMain receivese \\?\ prefix to fullspec of .dll,  2010-09-07  moko
           stripped it  
           * tests/results/254.processed: VStateless_class:put_element
 2005-08-09  paf            exception was fixed
   
         * src/types/pa_wcontext.h: ! bugfix in_expression bit field were          * src/types/: pa_value.h, pa_vstateless_class.h: now
           not cleared            VStateless_class:put_element barks self.type, not this.type
             (bugfix: #105)
         * www/htdocs/: _bug.html, _bug.pl, _bug.txt: . file::exec $charset  
           transcodes env fine  2010-09-06  moko
   
         * src/: classes/classes.C, classes/classes.h, classes/date.C,          * src/classes/reflection.C: bugfix: new String() is required for
           classes/double.C, classes/file.C, classes/form.C, classes/hash.C,            exception handling
           classes/hashfile.C, classes/image.C, classes/int.C,  
           classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,          * tests/: 254.html, results/254.processed: test modified
           classes/response.C, classes/string.C, classes/table.C,  
           classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,  2010-09-05  moko
           include/pa_array.h, include/pa_cache_managers.h,  
           include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,          * tests/: 254.html, results/254.processed: ^reflection:copy test
           include/pa_config_fixed.h, include/pa_config_includes.h,            added
           include/pa_dictionary.h, include/pa_dir.h,  
           include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,          * src/: classes/reflection.C, include/pa_request.h:
           include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,            ^reflection:copy implemented (new feature: #100)
           include/pa_operation.h, include/pa_os.h, include/pa_request.h,  
           include/pa_request_charsets.h, include/pa_request_info.h,  2010-09-03  moko
           include/pa_sapi.h, include/pa_socks.h,  
           include/pa_sql_connection.h, include/pa_sql_driver_manager.h,          * src/lib/json/JSON_parser.C: c++ compatiblity
           include/pa_stack.h, include/pa_string.h,  
           include/pa_stylesheet_connection.h,          * tests/: 253.html, 253_json.txt, results/253.processed: $.distinct
           include/pa_stylesheet_manager.h, include/pa_table.h,            option testing added
           include/pa_threads.h, include/pa_types.h, include/pa_uue.h,  
           include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,  2010-09-02  moko
           lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,  
           lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,          * src/classes/json.C: $.distinct[first|last|all] added
           lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,  
           main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,  2010-09-01  moko
           main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,  
           main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,          * tests/results/253.processed: json test result
           main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,  
           main/pa_os.C, main/pa_request.C, main/pa_socks.C,          * tests/: 253.html, 253_json.txt: json test added
           main/pa_sql_driver_manager.C, main/pa_string.C,  
           main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,          * src/classes/json.C: json.C update to actual version + hash key
           main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,            creation bugfix
           main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,  
           targets/cgi/pa_threads.C, targets/cgi/parser3.C,  2010-08-31  misha
           targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,  
           types/pa_junction.h, types/pa_method.h, types/pa_property.h,          * src/lib/json/JSON_parser.C, src/lib/json/JSON_parser.h,
           types/pa_value.C, types/pa_value.h, types/pa_vbool.h,            src/lib/json/Makefile.am, src/lib/json/json.vcproj,
           types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,            src/lib/Makefile.am, src/classes/Makefile.am,
           types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,            src/classes/classes.vcproj, src/classes/json.C, parser3.sln: -
           types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,            json library was added
           types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,  
           types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,  2010-08-30  moko
           types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,  
           types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,          * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
           types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,            types/pa_vobject.C: cosmetic optimization in
           types/pa_vmemory.h, types/pa_vmethod_frame.C,            request:execute_method usage
           types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,  
           types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,          * src/: include/pa_charset.h, main/pa_charset.C: small
           types/pa_vresponse.C, types/pa_vresponse.h,            optimization, just to decrease number of lines. :)
           types/pa_vstateless_class.C, types/pa_vstateless_class.h,  
           types/pa_vstateless_object.h, types/pa_vstatus.C,  2010-08-27  misha
           types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,  
           types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,          * src/classes/op.C: - taint[json] was added
           types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,  
           types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,          * tests/: 250.html, 251.html, 252.html: - tests for taint[json]
           types/pa_wcontext.h, types/pa_wwrapper.h: 2005            were added
   
         * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,          * src/main/pa_exec.C: - warning fix was rolled back.
           pa_vmethod_frame.h: merged from HEAD ! simplified (double)  
           speedup consequent checks in vmethod_frame          * src/: main/pa_charset.C, main/untaint.C, include/pa_charset.h,
             include/pa_string.h: - taint[json] was added - escaping was
         * src/types/pa_wcontext.h: ! bugfix in_expression bit field were            slightly modified
           not cleared  
   2010-08-25  misha
         * src/: classes/file.C, main/pa_exec.C: merged +file::cgi/exec now  
           params: 50 max (were 10)          * src/classes/file.C: - typo in file:sql exception was fixed
   
         * src/: classes/file.C, main/pa_exec.C: + file::cgi/exec now          * src/main/pa_exec.C: - warning about declared and not used
           params: 50 max (were 10)            variable forced_allow was removed
   
         * src/types/pa_value.h, src/types/pa_vdouble.h,  2010-08-14  misha
           src/types/pa_vint.h, src/types/pa_vmethod_frame.h,  
           src/types/pa_vvoid.C, src/types/pa_vvoid.h,          * src/classes/hash.C: - two warnings about signed/unsigned mismatch
           src/types/pa_wcontext.C, src/types/pa_wcontext.h,            were removed
           www/htdocs/.htaccess, www/htdocs/_bug.html: + ^call[$void] param  
           inside now is void (were: empty string) ! simplified (double)  2010-08-11  moko
           speedup consequent checks in vmethod_frame  
           * tests/: 249.html, results/249.processed: default setter and
         * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: merged +            anti-recursive default getter test added
           optimized constants in expressions vstring->vdouble + optimized  
           ^call(vdouble), no junction creation, no calls later          * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
             types/pa_value.h, types/pa_vclass.C, types/pa_vobject.C,
 2005-08-08  paf            types/pa_vobject.h, types/pa_vstateless_class.C,
             types/pa_vstateless_class.h: default setter support +
         * bin/auto.p.dist.in: merged . apache bad 404 handling workaround            anti-recursive default getter support ( new feature: #13 )
           integrated  
           * src/include/pa_hash.h: optimization: threshold member removed
         * bin/auto.p.dist.in: . apache bad 404 handling workaround            from hash, reducing sizeof(hash)
           integrated  
   2010-08-10  misha
         * src/main/compile.tab.C, src/main/compile.y,  
           src/main/compile_tools.C, src/main/compile_tools.h,          * tests/196.html: - junction-method was added to the test
           www/htdocs/.htaccess, www/htdocs/_bug.html, www/htdocs/_bug.xml:  
           merged + optimized constants in expressions vstring->vdouble +          * tests/248.html: - ups. typo :)
           optimized ^call(vdouble), no junction creation, no calls later  
           * tests/248.html: - test for checking .match with 4 params
         * src/types/pa_vdouble.h: merged . double values without fractional  
           part now default printed as %.0f instead of %g          * tests/: 247.html, 247_utf8.txt, 247_utf8_bom.txt,
             247_windows1251.txt: - test for "transcode file from utf-8 to
         * src/types/pa_vdouble.h: . double values without fractional part            $request:charset during loading if the BOM code is detected"
           now default printed as %.0f instead of %g  
           * src/main/: pa_common.C, pa_http.C: - transcode file from utf-8 to
         * www/htdocs/: _bug.html, _bug.xml: . merged ! second            $request:charset during loading if the BOM code is detected ( new
           hashfile::open would cause an exception            feature: #98 )
   
         * src/classes/hashfile.C: . merged ! second hashfile::open would  2010-08-05  misha
           cause an exception  
           * src/classes/image.C: - ^image.replace now can accept only 2
         * src/classes/hashfile.C: ! second hashfile::open would cause an            params. in this case the whole image is affected ( new feature:
           exception            #95 )
   
         * src/classes/classes.h, src/main/execute.C,  2010-08-04  misha
           src/types/pa_junction.h, src/types/pa_value.h,  
           src/types/pa_vclass.C, src/types/pa_vclass.h,          * tests/246.html: - test tor ^hash._at[] was added
           src/types/pa_vcode_frame.h, src/types/pa_vconsole.h,  
           src/types/pa_vcookie.C, src/types/pa_vcookie.h,          * src/classes/hash.C: - ^hash._at[first|last|[-]N] ( new feature:
           src/types/pa_vhash.h, src/types/pa_vhashfile.h,            #53 )
           src/types/pa_vimage.C, src/types/pa_vimage.h,  
           src/types/pa_vjunction.h, src/types/pa_vmethod_frame.h,          * src/include/pa_hash.h: - methods for accessing the first and the
           src/types/pa_vobject.C, src/types/pa_vobject.h,            last values of ordered hash were added (first_value and
           src/types/pa_vrequest.C, src/types/pa_vrequest.h,            last_value)
           src/types/pa_vresponse.C, src/types/pa_vresponse.h,  
           src/types/pa_vstateless_class.C,          * src/classes/file.C: - now ^file::base64 accepts up to 4 params
           src/types/pa_vstateless_object.h, src/types/pa_vvoid.h,            (similar to others file's methods):
           src/types/pa_vxnode.C, src/types/pa_vxnode.h,            ^file::base64[mode;user-file-name;encoded;options] ( new feature:
           src/types/pa_wwrapper.h, www/htdocs/_bug.html, www/htdocs/_bug.p:            #68 )
           . merged VJunction(new Junction) optimization from 3.1.4  
           * src/types/pa_vmethod_frame.h: - helper method as_hash was added
         * src/: main/execute.C, types/pa_junction.h, types/pa_vjunction.h,  
           types/pa_vstateless_class.C: + optimized new VJunction(new  2010-08-01  moko
           Junction(params)) to new VJunction(params), thousands of mallocs  
           removed          * src/classes/op.C: to correctly process $result[] in code, called
             from ^process
 2005-08-05  paf  
           * tests/245.html: $result in ^process[] test added
         * src/: include/pa_memory.h, main/compile.tab.C, main/compile.y,  
           types/pa_vdouble.h, types/pa_vmethod_frame.C,          * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
           types/pa_vmethod_frame.h: + optimized ^call(vdouble), no junction            main/execute.C, main/pa_request.C, types/pa_vmethod_frame.C,
           creation, no calls later            types/pa_vmethod_frame.h, types/pa_vobject.C: optimization:
             VMethodFrame(junction, caller) replaced with VMethodFrame(method,
         * src/: classes/classes.C, classes/classes.h, classes/date.C,            caller, self) op_call(VMethodFrame &frame, bool constructing)
           classes/double.C, classes/file.C, classes/form.C, classes/hash.C,            removed, construct(class,method) added
           classes/hashfile.C, classes/image.C, classes/int.C,  
           classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,          * tests/results/: 192.processed, 244.processed: request::construct
           classes/response.C, classes/string.C, classes/table.C,            added
           classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,  
           include/pa_array.h, include/pa_cache_managers.h,          * tests/: 244.html, 245.html, results/244.processed,
           include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,            results/245.processed: object creation exceptions and ^process
           include/pa_config_fixed.h, include/pa_config_includes.h,            tests added
           include/pa_dictionary.h, include/pa_dir.h,  
           include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,  2010-07-28  misha
           include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,  
           include/pa_operation.h, include/pa_os.h, include/pa_request.h,          * tests/make_tests.cmd: - win32 EOLs
           include/pa_request_charsets.h, include/pa_request_info.h,  
           include/pa_sapi.h, include/pa_socks.h,          * tests/: run_parser.cmd, run_tests.cmd: - cmd files for executing
           include/pa_sql_connection.h, include/pa_sql_driver_manager.h,            tests on Win32 were added (The system timezone should be GMT+3)
           include/pa_stack.h, include/pa_string.h,  
           include/pa_stylesheet_connection.h,  2010-07-26  misha
           include/pa_stylesheet_manager.h, include/pa_table.h,  
           include/pa_threads.h, include/pa_types.h, include/pa_uue.h,          * tests/: 212.html, results/212.processed: - sizes were removed
           include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,            mecause they could be different on different OSs
           lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,  
           lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,          * tests/065.html: - make it "win32 friendly"
           lib/smtp/smtp.h, main/compile.C, main/compile.y,  
           main/compile_tools.C, main/compile_tools.h, main/execute.C,  2010-07-25  misha
           main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,  
           main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,          * src/main/compile.y: - all EOLs between methods are removed during
           main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,            compilation ( new feature: #47 )
           main/pa_memory.C, main/pa_os.C, main/pa_request.C,  
           main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,          * tests/results/149.processed: - prepare tests to trim trailing
           main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,            methods' EOLs
           main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,  
           main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,          * tests/149.html: - prepare tests to trim trailing methods' EOLs
           targets/cgi/pa_threads.C, targets/cgi/parser3.C,  
           targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,          * tests/: results/006.processed, results/014.processed, 006.html,
           types/pa_junction.h, types/pa_method.h, types/pa_value.C,            014.html, 022.html: - prepare tests to trim trailing methods'
           types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,            EOLs
           types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,  
           types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,          * tests/: 059.html, 071.html, 149.html, results/059.processed,
           types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,            results/071.processed, results/022.processed: - prepare tests to
           types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,            trim trailing methods' EOLs
           types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.h,  
           types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,          * tests/: results/073.processed, results/109.processed,
           types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,            results/142.processed, results/144.processed,
           types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemory.h,            results/149.processed, 073.html, 096.html, 109.html, 142.html,
           types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,            144.html: - prepare tests to trim trailing methods' EOLs
           types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,  
           types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,          * tests/: 096.html, 107.html, 109.html, 142.html, 144.html,
           types/pa_vstateless_class.C, types/pa_vstateless_class.h,            149.html, 152.html, results/096.processed, results/107.processed,
           types/pa_vstateless_object.h, types/pa_vstatus.C,            results/109.processed, results/142.processed,
           types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,            results/144.processed: - prepare tests to trim trailing methods'
           types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,            EOLs
           types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,  
           types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,  2010-07-24  moko
           types/pa_wcontext.h, types/pa_wwrapper.h: . 2005 ;)  
           * tests/results/: 156.processed, 224.processed: fix for #54 changed
         * src/: lib/cord/cord.vcproj, lib/gd/gd.vcproj,            the hash order in this test
           lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/pcre.vcproj,  
           lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,          * tests/014.html: to check hash order, hash no is longer sorted
           lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/compile.tab.C,            before print
           main/compile.y, main/compile_tools.C, main/compile_tools.h,  
           targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj: +          * src/include/pa_hash.h: hash copy constructor now keeps order
           optimized constants in expressions vstring->vdouble            (bugfix: #54)
   
 2005-07-29  paf  2010-07-23  moko
   
         * src/types/pa_vclass.C, www/htdocs/_bug.p: . shaped up error          * tests/results/224.processed: @auto[] is no longer inherited
           messages a bit  
           * src/types/pa_vstateless_class.C, tests/227.html,
         * src/types/pa_vclass.C, www/htdocs/_bug_derived.p: + property            tests/results/227.processed: @auto[] is no longer inherited
           getter can now be overridden            (bugfix: #57)
   
         * src/main/execute.C, src/types/pa_vclass.C,  2010-07-22  misha
           src/types/pa_vobject.C, www/htdocs/_bug.p,  
           www/htdocs/_bug_derived.p: ! bug fix: static parent fields were          * src/classes/table.C: - don't skip comment lines during
           not replaced in case $derived:field[put] + property setter can            table::load if encloser or separator is set as '#' ( new feature:
           now be overridden            #30 )
   
         * www/htdocs/: _bug.html, _bug.p, _bug_derived.p: + removed limit          * src/targets/cgi/parser3.C: - don't run as cgi if
           "ctor must be declared in class being created"            env:PARSER_VERSION was set for preventing infinite loot ( bugfix:
             #12 )
 2005-07-28  paf  
           * src/classes/file.C: - set PARSER_VARSION env before external
         * configure, configure.in, src/classes/classes.h,            script executing
           src/classes/date.C, src/classes/file.C, src/classes/hash.C,  
           src/classes/hashfile.C, src/classes/image.C, src/classes/op.C,  2010-07-13  misha
           src/classes/table.C, src/classes/xdoc.C, src/classes/xnode.C,  
           src/classes/xnode.h, src/include/pa_hash.h,          * tests/058.html: - test for suppressing @border was added - test
           src/include/pa_version.h, src/main/execute.C,            for user attribute was added
           src/types/Makefile.am, src/types/pa_method.h,  
           src/types/pa_value.h, src/types/pa_vclass.C,          * tests/results/186.processed: unescaping from \uXXXX
           src/types/pa_vclass.h, src/types/pa_vcode_frame.h,  
           src/types/pa_vconsole.h, src/types/pa_vcookie.C,          * tests/186.html: unescaping from \uXXXX
           src/types/pa_vcookie.h, src/types/pa_vhash.h,  
           src/types/pa_vhashfile.h, src/types/pa_vimage.C,          * tests/: 239.html, results/239.processed: method call type
           src/types/pa_vimage.h, src/types/pa_vmethod_frame.h,  
           src/types/pa_vobject.C, src/types/pa_vobject.h,          * src/types/: pa_vjunction.C, pa_vjunction.h: - bugfix: #90 :
           src/types/pa_vproperty.h, src/types/pa_vrequest.C,            $junction_method.CLASS_NAME (+CLASS)
           src/types/pa_vrequest.h, src/types/pa_vresponse.C,  
           src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,  2010-07-07  misha
           src/types/pa_vstateless_class.h,  
           src/types/pa_vstateless_object.h, src/types/pa_vvoid.h,          * buildall-with-xml, buildall-without-xml: - moving to pcre 8.10 on
           src/types/pa_vxnode.C, src/types/pa_vxnode.h,            *nix
           src/types/pa_wwrapper.h, www/htdocs/.htaccess,  
           www/htdocs/_bug.html, www/htdocs/_bug.p, www/htdocs/_bug.pl,  2010-07-05  misha
           www/htdocs/_bug.sh, www/htdocs/auto.p: + 3.2.0 beta: merged from  
           dynamic_fields_join          * src/: classes/curl.C, classes/file.C, classes/hash.C,
             classes/image.C, classes/op.C, classes/string.C, classes/table.C,
         * src/classes/hash.C, src/classes/hashfile.C, src/classes/op.C,            classes/void.C, main/pa_common.C, main/pa_http.C: - exception
           src/classes/xnode.C, src/include/pa_hash.h, src/main/execute.C,            comment strings "options must be hash", "options must be hash,
           src/types/pa_method.h, src/types/pa_value.h,            not code" and "called with invalid option" were replaced by
           src/types/pa_vclass.C, src/types/pa_vclass.h,            constatns - exception comment string "invalid option passed" was
           src/types/pa_vcode_frame.h, src/types/pa_vconsole.h,            replaced by "called with invalid option" (now in different
           src/types/pa_vcookie.C, src/types/pa_vcookie.h,            methods are the same exception comment string)
           src/types/pa_vhash.h, src/types/pa_vhashfile.h,  
           src/types/pa_vimage.C, src/types/pa_vimage.h,          * src/include/pa_exception.h: - more exception strings were defined
           src/types/pa_vmethod_frame.h, src/types/pa_vobject.C,  
           src/types/pa_vobject.h, src/types/pa_vrequest.C,          * src/: main/compile.y, main/compile_tools.C, main/compile_tools.h,
           src/types/pa_vrequest.h, src/types/pa_vresponse.C,            types/pa_vstateless_class.h: - now we can define possible
           src/types/pa_vresponse.h, src/types/pa_vstateless_object.h,            method's call type ( new feature: #5 )   1.
           src/types/pa_vvoid.h, src/types/pa_vxnode.C,            @OPTIONS\nstatic|dynamic (no option == any) -- for all classe's
           src/types/pa_vxnode.h, src/types/pa_wwrapper.h,            methods   2. @static:method[params] (only static keyword could be
           www/htdocs/.htaccess, www/htdocs/auto.p: ! restored            used here) -- for specified methods
           put_element('replace' param), and restored its checks in  
           vobject.put_element->static fields | dynamic properties          * src/main/pa_common.C: - junction points should not be deleted on
             win32 during dirs cleanup ( bugfix: #83 ) - optimisation in dirs
 2005-07-27  paf            cleanup
   
         * src/types/pa_vclass.C: ! changed to GET_ SET_ prefixes. for there  2010-07-03  misha
           is some old code containing @set_name $name  
           * tests/: 158.html, 160.html, 161.html, 162.html, 163.html,
         * src/types/pa_vobject.h: . fixed warning            results/158.processed, results/160.processed,
             results/161.processed, results/162.processed,
         * configure, configure.in, src/include/pa_version.h,            results/163.processed: - prepare tests to trim trailing methods'
           src/types/Makefile.am: 3.2.0beta started            EOLs
   
         * src/classes/xnode.C, src/include/pa_hash.h,          * tests/results/169.processed: - prepare tests to trim trailing
           src/types/pa_vstateless_class.C, www/htdocs/.htaccess,            methods' EOLs
           www/htdocs/_bug.html, www/htdocs/_bug.p, www/htdocs/_bug.pl,  
           www/htdocs/_bug.sh, www/htdocs/auto.p: ! new asserts were all          * tests/results/: 168.processed, 169.processed: - prepare tests to
           false. regretfully reverted them all to checks            trim trailing methods' EOLs
   
         * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,          * tests/: results/170.processed, results/167.processed,
           classes/op.C, main/execute.C, types/pa_method.h,            results/168.processed, results/169.processed, 167.html, 168.html,
           types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,            169.html: - prepare tests to trim trailing methods' EOLs
           types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,  
           types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,          * tests/: results/170.processed, results/171.processed,
           types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,            results/172.processed, results/173.processed,
           types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,            results/174.processed, results/175.processed, 170.html, 171.html,
           types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,            172.html, 173.html, 174.html, 175.html: - prepare tests to trim
           types/pa_vstateless_object.h, types/pa_vvoid.h,            trailing methods' EOLs
           types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:  
           joined_dynamic_fields: removed unused param from put_method          * tests/: results/176.processed, results/180.processed,
           (returned to 3 params)            results/184.processed, results/185.processed,
             results/191.processed, results/192.processed,
         * src/include/pa_hash.h, src/types/pa_vclass.C,            results/196.processed, results/197.processed,
           src/types/pa_vclass.h, www/htdocs/_bug.html, www/htdocs/_bug.p:            results/198.processed, 176.html, 180.html, 184.html, 185.html,
           joined_dynamic_fields: dynamic get/set works with overriding            191.html, 192.html, 196.html, 197.html, 198.html: - prepare tests
           props [alpha2]            to trim trailing methods' EOLs
   
         * src/types/pa_vclass.C, www/htdocs/_bug.html:          * tests/: 199.html, 208.html, 209.html, 213.html, 214.html,
           joined_dynamic_fields: dynamic get/set works [alfa]            results/199.processed, results/208.processed,
             results/209.processed, results/213.processed,
         * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,            results/214.processed: - prepare tests to trim trailing methods'
           classes/op.C, include/pa_hash.h, main/execute.C,            EOLs
           types/pa_method.h, types/pa_value.h, types/pa_vclass.C,  
           types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,  2010-06-29  misha
           types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,  
           types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,          * tests/: 220.html, 218.html, results/218.processed,
           types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,            results/215.processed, results/217.processed, 215.html, 217.html:
           types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,            - prepare tests to trim trailing methods' EOLs
           types/pa_vresponse.h, types/pa_vstateless_class.C,  
           types/pa_vstateless_object.h, types/pa_vvoid.h,          * tests/: results/224.processed, 224.html, 223.html,
           types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:            results/223.processed, results/220.processed: - prepare tests to
           joined_dynamic_fields: just compiled            trim trailing methods' EOLs
   
         * src/: classes/date.C, classes/file.C, classes/hash.C,          * tests/results/: 226.processed, 230.processed: - prepare tests to
           classes/hashfile.C, classes/image.C, classes/table.C,            trim trailing methods' EOLs
           classes/xdoc.C, classes/xnode.h, main/execute.C,  
           types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,          * tests/: 229.html, results/229.processed: - prepare tests to trim
           types/pa_vstateless_class.h: joined_dynamic_fields: started            trailing methods' EOLs
   
         * src/types/pa_vobject.C: . object setters [only started, does not          * tests/: 232.html, 235.html, results/232.processed,
           work yet]            results/235.processed, 226.html, 227.html, 228.html, 230.html,
             results/226.processed, results/227.processed,
         * src/include/pa_hash.h, src/types/pa_vclass.C,            results/228.processed, results/230.processed: - prepare tests to
           src/types/pa_vobject.C, www/htdocs/_bug.html, www/htdocs/_bug.p:            trim trailing methods' EOLs
           . object setters [only started, does not work yet]  
   2010-06-16  moko
 2005-07-26  paf  
           * tests/: 229.html, results/229.processed:  elseif now supported in
         * src/include/pa_request.h, src/main/execute.C,            ^if
           www/htdocs/_bug.html: . properties: set works [alpha2]. for  
           classes. todo: for objects          * src/classes/op.C: new feature: #56 elseif now supported in ^if
   
         * src/classes/classes.h, src/include/pa_hash.h, src/main/execute.C,  2010-06-03  misha
           src/types/pa_value.h, src/types/pa_vclass.C,  
           src/types/pa_vclass.h, src/types/pa_vcode_frame.h,          * src/main/pa_common.C: - bugfix #74 -- memmove should be used
           src/types/pa_vconsole.h, src/types/pa_vcookie.C,            instead of memcopy for overlaped regions
           src/types/pa_vcookie.h, src/types/pa_vhash.h,  
           src/types/pa_vhashfile.h, src/types/pa_vimage.C,  2010-05-25  misha
           src/types/pa_vimage.h, src/types/pa_vmethod_frame.h,  
           src/types/pa_vobject.C, src/types/pa_vobject.h,          * src/main/pa_common.C: - wanring about unused vars was removed
           src/types/pa_vrequest.C, src/types/pa_vrequest.h,  
           src/types/pa_vresponse.C, src/types/pa_vresponse.h,          * src/: include/pa_request.h, main/execute.C, main/pa_request.C: -
           src/types/pa_vstateless_object.h, src/types/pa_vvoid.h,            get_method_filename was moved to execute.C
           src/types/pa_vxnode.C, src/types/pa_vxnode.h,  
           src/types/pa_wwrapper.h, www/htdocs/_bug.html: . properties: set  2010-05-23  misha
           works [alpha1]  
           * src/main/pa_request.C: - more accurate detection of method's file
 2005-07-25  paf  
   2010-05-22  misha
         * src/main/compile.C, src/types/pa_vclass.C, src/types/pa_vclass.h,  
           src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,          * src/classes/reflection.C: - bugfix: core during detection of
           www/htdocs/_bug.html: . properties: started, get works [alpha1,            .file if filespec isn't detected successfully
           other approach]  
   2010-05-20  misha
         * src/main/compile.C, src/types/pa_vclass.C, src/types/pa_vclass.h,  
           www/htdocs/_bug.html, www/htdocs/_bug.p: . properties: started,          * src/main/pa_request.C: - fix in get_method_filename
           get works [alpha2]  
           * src/include/pa_request.h: - new feature: #24 -- searching
         * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,            included file in @USE/^use is changed. if its filespec doesn't
           pa_vstateless_class.h: . properties: started, get works [alpha]            start from '/' it will be searched in caller file directory
   
 2005-07-15  paf          * src/classes/reflection.C: - ^reflection:method_info returns file
             where the method is defined
         * src/: classes/classes.h, classes/op.C, main/execute.C,  
           types/pa_junction.h, types/pa_property.h, types/pa_value.h,          * src/: include/pa_request.h, main/compile.y, main/pa_request.C,
           types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,            classes/op.C: - new feature: #24 -- searching included file in
           types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,            @USE/^use is changed. if its filespec doesn't start from '/' it
           types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,            will be searched in caller file directory
           types/pa_vimage.h, types/pa_vmethod_frame.h, types/pa_vobject.C,  
           types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,          * src/: classes/file.C, include/pa_common.h: - method lastposafter
           types/pa_vresponse.C, types/pa_vresponse.h,            is moved to pa_common.h
           types/pa_vstateless_class.C, types/pa_vstateless_class.h,  
           types/pa_vstateless_object.h, types/pa_vvoid.h,  2010-05-18  misha
           types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.h,  
           types/pa_wwrapper.h, types/types.vcproj: + started property          * src/: main/pa_common.C, include/pa_common.h, classes/string.C,
           [getters work but think of changing them too to precaching]            types/pa_vcookie.C: new feature: #71 ^string:js-unescape and
             cookie parser decode \uXXXX as well as %uXXXX
 2005-07-08  paf  
   2010-05-17  misha
         * src/main/pa_request.C, www/htdocs/_bug.html: ! bugfix:  
           $response:body[nonfile] caused gpf          * src/classes/curl.C: beauty: - unused param is removed in method
             _curl_version_action - some spaces were removed or replaced by
 2005-06-28  paf            tabs
   
         * src/: classes/file.C, main/untaint.C: ! string invariant violated          * src/classes/table.C: - bugfix: #72 core with empty value during
           in passing empty strings to file::exec/cgi environment            ^table.hash[...;name_of_the_last_column][$.type[string]]
   
 2005-06-06  paf  2010-05-16  misha
   
         * src/classes/hash.C, src/classes/string.C, src/classes/table.C,          * src/classes/curl.C: new: #61 more curl options were added
           www/htdocs/.htaccess, www/htdocs/_bug.html, www/htdocs/_bug.pl,            (contributed by Sumo)
           www/htdocs/_bug.xsl: ! bugfix ^string:sql ^table:sql ^hash:sql  
           now DO process $.bind option  2010-04-29  pretender
   
 2005-05-24  paf          * src/main/pa_string.C: fixes #63 Split result from empty string
             now empty string.
         * src/classes/file.C: ! bugfix ^file::load[mode;name;$.offset  
           $.limit] now work again [support was broken in 3.1.4]          * src/types/pa_vtable.C: bugfix: #35 All empty table cells are now
             string type.
         * src/: main/pa_string.C, classes/op.C: . steps toward removing  
           ALL_INTERIOR_POINTERS  2010-04-28  pretender
   
 2005-05-12  paf          * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
             main/execute.C: bugfix: #59 OPTIMIZE_BYTECODE_GET_CLASS
         * configure: 3.1.5beta            macrodefinition removed
   
         * src/main/pa_common.C: ! bugfix -- recv()==0 is not an error  2010-04-19  pretender
   
         * src/main/pa_common.C: ! bugfix ^file::load[mode;name;$.offset          * src/main/execute.C: fixes #60 Stacktrace now contains info for
           $.limit] now work again [support was broken in 3.1.4]            OP_CONSTRUCT_OBJECT and OP_GET_CLASS
   
         * src/lib/gd/gif.C: ! fixed image.fill, not it does not depend on          * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
           line-width  [was refusing to fill if line-width >1, thanks to            fixes #64 Now file.missing exception generates in unsafe mode to.
           Seras <seras@pinxit.lt> for repro case  
           * src/classes/file.C: fixes #48 Now not throw "not save environment
 2005-04-25  paf            variable" exception in grpunlim version.
   
         * src/types/pa_vdate.h: ! getenv("TZ")==0? TZ environment restored  2010-04-05  misha
           correctly  
           * src/classes/string.C: - new feature: 4th param was added to
 2005-04-19  paf            match. if specified its value is returned in case of nothing was
             found
         * src/types/pa_vdate.h: bugfix: initial $date.TZ is 0, that results  
           in VString violating invariant!!  2010-04-01  misha
   
         * src/types/pa_vdate.h: bugfix: TZ now restored after roll if were          * src/main/pa_request.C: - bugfix: on *nix URIs like /a/b/// caused
           getenv("TZ")==null            multiple execution of /a/b/auto.p
   
 2005-04-08  paf  2010-03-19  misha
   
         * src/main/pa_charset.C: bugfix: UTF8->one-byte-per-char-encoding          * src/main/execute.C: - core in $table1.$table2 was fixed
           bugfix: when there is no char in charset one byte produces 6  
           (&#255; <<max). increased buffer size!          * src/targets/cgi/parser3.C: - core in sigpipe was fixed
   
 2005-03-23  paf  2010-01-27  misha
   
         * src/: types/pa_vdate.h, classes/date.C: ! bugfix:          * src/main/pa_common.C: - bugfix: there are no excaption.type if
           ^date.sql-string now takes TZ into account            trying to open file by path /existing-file/non-exixting-file
   
 2005-03-16  paf  2010-01-26  misha
   
         * INSTALL, www/htdocs/.htaccess, www/htdocs/_bug.html,          * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:post-body
           src/include/pa_stack.h: . compiled on freebsd 5.3 with gcc 3.4            was added (returns file)
   
         * src/types/pa_vhash.C: . warning about eof eol  2009-12-22  misha
   
 2005-02-17  paf          * src/classes/curl.C: - method 'option' was renamed to 'options' -
             now parser doesn't have class curl if it was built without it
         * operators.txt, src/classes/op.C: + operator ^sleep(double  
           seconds)  2009-12-15  misha
   
 2005-02-02  paf          * configure.in: - little cheat with curl include dir was added
   
         * src/classes/xnode.C, www/htdocs/_bug.html: beauty: removed  2009-12-05  misha
           needless includes  
           * src/classes/curl.C: - some fixes
 2005-01-31  paf  
   2009-12-04  misha
         * src/types/pa_vmail.C: change: $.partX now always 1...  change:  
           $.partNoNumber now alias to $.part1          * src/include/pa_config_fixed.h, src/classes/classes.vcproj,
             src/classes/curl.C, src/classes/file.C, src/classes/Makefile.am,
         * src/types/pa_vmail.C: change: incoming letter part contains            buildall-with-xml, buildall-without-xml, configure.in: - curl
           "content-disposition" header with any value? now considering that            class was added
           part to be "file#" [for text/plain text/html were $.text#  
           $.html#]          * src/include/pa_hash.h: - hash-iterator was added
   
         * INSTALL: updatet to latest working versions available          * buildall-with-xml, buildall-without-xml: - option --passive-ftp
             was added to pcre
 2005-01-20  paf  
   2009-11-27  misha
         * configure.in, src/include/pa_version.h, www/htdocs/_bug.html:  
           version          * src/classes/image.C: - don't add @border attribute to output of
             ^image.html[] if it was specified by user with empty value
 2005-01-19  paf  
           * src/types/pa_vxdoc.C: - bugfix: core if xdoc doesn't have the
         * src/: lib/gd/Makefile.am, lib/ltdl/Makefile.am,            root element and we are trying to access .documentElement
           targets/cgi/parser3.C, types/Makefile.am: forgotten makefiles.  
           couple warnings in parser3.C  2009-11-11  misha
   
 2004-12-23  paf          * src/classes/table.C: - in ^table.flip[] look at number of columns
             instead of number of items in first row for named tables
         * src/main/pa_sql_driver_manager.C, www/htdocs/_bug.html: sql  
           connect string, rsplit @  2009-11-10  misha
   
         * src/main/pa_exec.C, www/htdocs/_bug.html: win32: bugfix:          * operators.txt: - info about hash-options in ^file::create was
           file::cgi/exec now set current dir to directory of script (when            added
           shbang used), not to directory of its interpreter  
           * tests/237.html: - test for ^file::create[...;$.charset[...]] was
         * src/include/pa_version.h: compiled on win32...            added
   
         * src/targets/cgi/parser3.C: now, when version (compiled on HOST),  2009-11-09  misha
           we need more hspace  
           * buildall-with-xml: - moving to libxml 2.7.6
         * configure, configure.in, src/include/pa_version.h: configured  
           host to pa_version. will be displayed everywhere          * tests/236.html: - tests for comparations cords with functions
             were added
         * src/main/pa_request.C, www/htdocs/_bug.html: new:  
           @unhandled_exception can prevent exception from being logged by          * src/include/pa_string.h: - optimisation: cacheing of cstr was
           setting $exception.handled(1)            added
   
         * operators.txt, src/classes/file.C, www/htdocs/_bug.html: change:          * src/main/pa_http.C: - little optimisation
           ^file::sql{query}[[options]] options: $.name[file name]  
           $.content-type[application/what]          * src/: classes/table.C, lib/gc/include/gc_allocator.h: - bugfix:
             GPF mallocs + stringstream (table.save)
         * src/include/pa_common.h, src/main/pa_common.C,  
           src/types/pa_vhashfile.C, www/htdocs/_bug.html: beauty:          * src/classes/file.C: - file::create now accepts 4th param: options
           hashfile::open now creates dir for new file            with $.charset
   
         * src/classes/table.C, src/types/pa_vhash.C, src/types/pa_vhash.h,          * src/lib/cord/: cordxtra.c, include/private/cord_pos.h: - fixed
           www/htdocs/_bug.html: bugfix: table->hash now regards _default            bug in cord (comparation cords with functions was buggy)
   
         * src/types/pa_vmethod_frame.h, www/htdocs/_bug.html: bugfix: when  2009-11-06  misha
           method junction was created by accessing $name_of_method it  
           acquired bad self=closest methodframe; instead of proper self          * src/main/pa_string.C: - bugfix: calculation string.length
           (current class)            sometimes was buggy
   
         * src/types/pa_vhashfile.C, www/htdocs/_bug.html: bugfix: reading          * src/classes/string.C: - bugfix: Temp_value_element wasn't
           empty string from hashfile produced bad cord            destroyed if exception occured during match/replace
   
 2004-12-10  paf          * src/: main/pa_charset.C, include/pa_charset.h: - method
             lengthUTF8Char was added
         * src/: lib/smtp/comms.C, main/pa_common.C: DONT_LINGER can cause  
           subsequent failures though defined in .h          * src/classes/op.C: - clean tainting lang was added for user's
             usage
         * src/main/pa_common.C: comment on volatile  
           * src/lib/cord/: cordbscs.c, cordxtra.c: - some rare GPF were
         * src/: include/pa_config_auto.h.in, main/pa_common.C: http: unix:            fixed: checkouts are required after GC_MALLOC
           alarm function were not used since the beginning due to stupid  
           error [setsigjmp were not checked in configure.in]          * src/types/pa_vregex.C: - check UTF8 only during 1st iteration
   
         * src/main/pa_common.C: http: timeout setsockopt [if possible] on          * operators.txt: - actually, there is no ^untaint[xml] in
           unix too            file::create
   
         * src/main/pa_common.C: http: exception status of send/recv errors  2009-10-15  misha
           change to most probable http.timeout  
           * tests/: 235.html, 235_attach.txt: - tests for preparing email
         * src/main/pa_common.C, www/htdocs/_bug.html: win32: http            were added
           connection $.timeout option now works [setsockopt on  
           send/receive]          * tests/234.html: - more tests for checking ^taint[uri] escaping
             were added
 2004-12-08  paf  
           * src/: include/pa_string.h, main/pa_charset.C, main/pa_http.C,
         * src/classes/mail.C, src/types/pa_vmail.C, www/htdocs/.htaccess,            main/pa_request.C, main/untaint.C, types/pa_vmail.C: - little
           www/htdocs/_bug.html, www/htdocs/_bug.xsl: bugfix: mail body now            hacking: for dealing with transcoding+^taint[uri]
           cstr-ed knowing mail charset, and untainting uri lang now knows            transcode_and_untaint was replaced by untaint_and_transcode
           proper charset  
   2009-10-13  misha
 2004-11-24  paf  
           * tests/: 121.html, results/121.processed: - test transcoding +
         * src/classes/hash.C: hash: adding/cloning adds/clones _default now            url-escaping now
   
           $hash[  $.a[1]  $._default[def] ] #$hash2[^hash::create[$hash]]          * tests/results/auto.p: - more helpers' methods were added
           $hash2[^hash::create[]] ^hash2.add[$hash] $hash2.shit  
           * src/main/pa_globals.C: - die instead of abort
 2004-11-12  paf  
   2009-10-06  misha
         * src/types/pa_vmail.C: bugfix: mail:send[$.date[]] were ignored  
           [since 3.0.4]          * src/main/pa_common.C: - don't allocate memory during
             capitalization if input string is already capitalized
 2004-11-09  paf  
           * src/targets/isapi/parser3isapi.C: - pass pre-capitalized headers
         * src/targets/cgi/parser3.C: debug: PA_DEBUG_CGI_ENTRY_EXIT if on,  
           writes basics to c:\parser3.log          * src/targets/cgi/parser3.C: - pass pre-capitalized headers - don't
             use format function because it calls malloc
 2004-10-21  paf  
           * src/include/pa_common.h: - more capitalized headers were added
         * src/classes/xnode.C: bugfix: xnode.getAttribute[NS] now return  
           tainted strings [were returning clean onces]          * src/main/pa_common.C: - in safe mode clear executable bits during
             file writing
 2004-10-15  paf  
   2009-10-05  misha
         * src/types/pa_vdouble.h: bugfix: ^for[i](1;1.5){} << did two  
           cycles(i=1; i=2), which was wrong, now does ONE          * src/main/pa_charset.C: - use iterators in pa_charset.C itself
   
 2004-10-12  paf  2009-10-03  misha
   
         * etc/parser3.charsets/windows-1251.cfg: euro promille +/-          * src/: types/pa_vimage.h, classes/image.C: - ^img.font[],
             ^img.text[] & ^img.length[] can work in utf-8 now
 2004-10-07  paf  
           * src/: include/pa_charset.h, main/pa_charset.C: - class
         * src/include/pa_config_fixed.h, src/include/pa_config_includes.h,            UTF8_string_iterator was added
           src/main/pa_globals.C, www/htdocs/.htaccess,  
           www/htdocs/_bug.html, www/htdocs/_bug.pl: debugger help:          * src/classes/image.C: - respect utf-8 when calculate alphabet
           PA_RELEASE_ASSERTS enables release asserts            length
   
         * src/: main/pa_string.C, include/pa_string.h: debugger help:          * src/classes/mail.C: - check from before get message.cstr
           String.dump() to stdout in detailed form  [were String.v() in  
           short form]  2009-10-02  misha
   
         * src/lib/cord/cordbscs.c: debugger help: CORD_dump now dumpts          * tests/233.html: - test for image.font, image.length, image.text
           \t\r\n as @#| and truncates long char sequences less            with text in utf-8 were added
   
 2004-10-06  paf          * src/main/pa_common.C: - use pa_malloc_atomic instead of new
   
         * src/: include/pa_socks.h, main/pa_common.C, main/pa_socks.C:          * buildall-with-xml, buildall-without-xml: - comment about gc
           win32 beauty: socket errors properly decoded            version for freebsd 4 was added
   
 2004-10-05  paf  2009-10-01  misha
   
         * src/: include/pa_request.h, main/pa_request.C: bugfix:          * src/main/pa_exec.C: - bugfix: allocate a bit more (for
           request::configure_user/admin done always, even if no            terminator) - read_pipe were slightly optimized
           file-to-process useful in @unhandled_exception [say, if they  
           would want to mail by SMTP something]  2009-09-28  misha
   
         * src/main/pa_request.C: bugfix: cookie(and mail:recieved) fills          * src/main/: pa_common.C, pa_uue.C: - some magic numbers were
           now performed prior to file loading [and @auto executing] thus            removed
           making $cookie:value available in @auto and in  
           @unhandled_exception when IIS is configured to run interpreter          * src/types/pa_vmail.C: - forgot about space after ':'
           even if no file exist  
           * src/types/pa_vmail.C: - escape filenames while preparing mail
 2004-09-20  paf            body - small simplifications
   
         * src/main/pa_globals.C: libxml has bugs: it calls xmlMallocAtomic          * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode now has
           somewhere where it should have called xmlMalloc and it calls            inout params like pa_base64
           xmlFree when it should have not called it.  inserted two  
           workarounds: xmlMallocAtomic implemented as xmlMalloc, and          * src/: types/pa_vmail.C, types/pa_vmail.h, classes/mail.C: - new
           xmlFree just ignored.  put away a testcase, maybe someday libxml            option $.debug-print(1) was added to mail:send - changes for
           author would fix all that.  until that day: we have SLOW garbage            using uue_encode which uses less memory
           collecting when many xml objects are alive hint: do  
           ^memory:compact[] before xdoc::create          * src/main/pa_common.C: - pa_base64_encode uses less memory now
   
 2004-09-17  paf          * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode reduces less
             memory now
         * src/classes/file.C: bugfix: file::cgi headers were lost [typo  
           error from 3.0.8 version]  2009-09-26  misha
   
 2004-09-14  paf          * src/types/pa_vmail.C: - default encoding now is base64
   
         * src/types/pa_vhashfile.C: bugfix: hashfile.clear deleted only          * buildall-with-xml: - moving to libxml 2.7.5 and libxslt 1.1.26
           part bugfix: hashfile.foreach iterated only part if hashfile were  
           modified inside  2009-09-25  misha
   
 2004-09-13  paf          * src/types/pa_vmail.C: - capitalization of headers was added to
             sending mail as well
         * src/main/pa_string.C, www/htdocs/_bug.html: bugfix: $s[+008]  
           ^eval($s) now parsed OK [were as octal]          * buildall-with-xml: - catalog package was removed from libxml
   
         * src/types/pa_vhashfile.C, www/htdocs/_bug.html: beauty: not          * src/main/pa_xml_io.C: - fix in removing file:// protocol for
           reproduced $hashfile.key[$novalue] bug [reported by motorin],            win32 absolute path
           inserted safety-check  
           * src/include/pa_common.h: - one more capitalized header was added
         * src/types/pa_vhashfile.C: change: empty keys now error in parser  
           [not something obscure from sdbm lib]  2009-09-22  misha
   
         * src/types/pa_vhashfile.C, www/htdocs/_bug.html: bugfix: error          * INSTALL: - comment about building just httpd binary while
           numbers now from errno.h = strerror now returnes something and we            building apache module was added
           can properly report that to client  
   2009-09-21  misha
         * src/lib/sdbm/sdbm_private.h: change: limit on length(key+value)  
           now 8008 bytes, were 1008. perl sdbm compatibility now ruined          * buildall-with-xml: - moving to the latest versions of xml libs:
             libxml 2.7.4 and libxslt 1.1.25
         * www/htdocs/: _bug.html, _bug.xsl: change: ^xdoc.string now  
           outputted as-is  [tainted as-is] this helps //[space][newline] to  2009-09-19  misha
           remain as-is and not be unnecessary optimized away [ruining  
           javascript]          * tests/231.html: - test for encoding cookie in win-1251
   
         * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is  2009-09-18  misha
           [tainted as-is] this helps //[space][newline] to remain as-is and  
           not be unnecessary optimized away [ruining javascript]          * tests/: 224.html, 224.p: - tests for ^reflection:fields[class or
             object] were added
         * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is  
           [tainted as-is]          * operators.txt: - info about method ^reflection:fields[class or
             object] was added
         * src/classes/mail.C: bugfix: typo error  
           * src/classes/reflection.C: - method ^reflection:fields[class or
 2004-09-09  paf            object] was added
   
         * src/main/pa_common.C: bugfix: loads headers with both \r\n and \n          * src/types/: pa_value.h, pa_vclass.C, pa_vclass.h, pa_vobject.h: -
           separators bugfix: loads header with endings \r\n\r\n and \n\n            methods get_fields were added
           (bloody yandex.server)  
           * tests/232.html: - tests for @GET[name]
 2004-09-06  paf  
           * src/classes/table.C: - some changes in handling hash-options for
         * src/main/pa_charset.C: bugfix: two-bytes invalid chars in            creare, join and locate
           TranscodeFromUTF8 considered valid. only >2bytes-long now %HH  
           encoded          * src/types/: pa_vobject.C, pa_vobject.h: - @GET[] now could be
             defined with option: the type of requested value
 2004-09-01  paf  
   2009-09-17  misha
         * src/types/pa_vmail.C: change: multipart/mixed changed to  
           multipart/related outlook express have no problems showing          * tests/212.html: - tests for .pattern and .options were added
           unrelated attachments.  todo: someday figure out a way of  
           multipart/mixed    multipart/related       text/html          * src/types/: pa_vregex.C, pa_vregex.h: - $regex.pattern and
           image/xxx application/octet-stream << true attachments            $regex.options were added
   
         * src/types/pa_vmail.C, www/htdocs/_bug.html: new:  2009-09-11  misha
           ^mail:send[$.file[$.content-disposition can be overriden new:  
           empty mail header fields removed from letter          * tests/: 223.html, 223_utf8.txt, 223_win1251.txt: - test was
             rewrited. it checks not just one case of sending cookies during
         * src/classes/mail.C, src/include/pa_config_fixed.h,            file::load[http], but also sending headers and fields (including
           src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vmail.C,            files)
           www/htdocs/_bug.html: new: ^mail:send[    $.file[  
           $.any[header]  2009-09-10  misha
   
 2004-08-30  paf          * src/main/untaint.C: - workaround in file-spec lang for old Macs
             was removed => now parser can open files with Russian 'r' in
         * src/include/pa_config_fixed.h, src/main/pa_common.C,            filename
           www/htdocs/.htaccess, www/htdocs/_bug.html: beauty: less warnings  
           * src/main/untaint.C: - bugfix: client charset whould be analized
         * src/main/pa_common.C: beauty: do not bother with charset            while escaping cookies but now source charset
           detection when ^file::load[binary  
           * src/main/pa_http.C: - bugfix: the values of http headers didn't
 2004-08-27  paf            ^tainted[uri] so it was possible to make request with incorrect
             http header
         * src/main/pa_common.C: hack: for yandex.server http server  
           * src/main/pa_http.C: - capitalization of http headers during
 2004-08-18  paf            file::load[http was slightly changes - bugfix: all headers which
             parser sends during file::load[http should be transcoded and only
         * src/main/pa_request.C: bugfix: Accept-Ranges: bytes  when sending            then escaped
           possibly-chunked response  
           * src/main/untaint.C: - a bit more comments were added
 2004-08-17  paf  
           * src/classes/: file.C, string.C: - types where changes (minus 2
         * src/classes/file.C: bugfix: $f[^file::load[;http://]]            warnings)
           $f.content-type now = that of http response  
           * src/include/pa_common.h: - 2 capitalized strings for making http
         * src/classes/file.C: bugfix: $f[^file::load[;http://]]            headers during file::load[http were added
           $f.content-type now = that of http response  
   2009-09-08  misha
 2004-08-03  paf  
           * operators.txt: - changes in file.save and string.save were added
         * www/htdocs/: .htaccess, _bug.html: bugfix: empty input variables  
           can be replaced by output [forgot to allocate proper buffer,          * tests/: 230.html, 230.txt: - tests for checking options in
           oracle _server_ died with kgepop: no error frame to pop to for            file.save and string.save were added
           error 21500 message]  
           * src/main/pa_request.C: - http headers names, which are passed to
 2004-07-30  paf            SAPI::add_header_attribute are lowercased now (it'll be
             capitalized in that method)
         * src/include/pa_request.h, src/main/pa_request.C,  
           src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,          * src/: types/pa_vfile.C, types/pa_vfile.h, classes/file.C,
           www/htdocs/.htaccess: bugfix: win32: system&parser exceptions in            classes/string.C: - file_write accepts Request_charsets and asked
           release mode reported properly parser exception in exception            charset and cound transcode content before writing - string.save
           handler WERE mistakenly reported as system exception, without            and file.save have option $.charset now
           details [in apache & isapi] +some beauty in exception text  
           * src/: include/pa_common.h, main/pa_common.C, classes/table.C,
         * src/include/pa_exception.h, src/main/pa_request.C,            classes/xdoc.C: - file_write accepts Request_charsets and asked
           src/targets/cgi/parser3.C, www/htdocs/.htaccess,            charset and cound transcode content before writing
           www/htdocs/_bug.html: bugfix: win32: system&parser exceptions in  
           release mode reported properly parser exception in exception          * src/include/pa_exception.h: - new exception comment string was
           handler WERE mistakenly reported as system exception, without            defined
           details  
   2009-09-07  misha
         * src/main/execute.C: beauty: simplified system exception handling  
           * src/main/compile.y: - grammar $name\ name stops now for regex
 2004-07-29  paf            sub-pattern\s
   
         * src/classes/table.C, www/htdocs/_bug.html: bugfix:  2009-09-04  misha
           ^table.save[export.csv;$.separator[^;]] now works fine [separator  
           were ignored, and \t used unconditionally]          * src/main/pa_http.C: - capitalization of http headers during
             file::load[http was implemented
         * src/types/Makefile.am: added vhash.c  
   2009-09-03  misha
 2004-07-28  paf  
           * src/: main/pa_common.C, main/pa_http.C, main/pa_request.C,
         * src/: classes/date.C, classes/image.C, classes/math.C,            include/pa_common.h, include/pa_sapi.h, types/pa_vcookie.C,
           lib/ltdl/ltdl.c, lib/pcre/pcre_parser_ctype.c, lib/smtp/comms.C,            types/pa_vmail.C, targets/cgi/parser3.C,
           main/pa_common.C, targets/cgi/parser3.C, types/pa_vform.C,            targets/isapi/parser3isapi.C: - back to storing response http
           types/pa_vmail.C: bugfix: isspace((unsigned char)c) everywhere.            headers in lowercase - capitalize them during output
           failed on russian letters  
   2009-08-31  misha
         * src/main/pa_string.C, src/types/pa_vmail.C, www/htdocs/_bug.html,  
           src/main/pa_common.C: bugfix: isspace((unsigned char)c)          * src/classes/table.C: - allow call with any brackets (it could be
           everywhere. failed on russian letters            useful in methods with explict result declaration)
   
         * www/htdocs/_bug.html: bugfix: win32: chdir not needed, dir          * src/classes/table.C: - bugfix: ^table.sort{...} doesn't work
           passwed as 'currentDirectory' parameter to CreateProcess            correctly if $request:charset==koi8-r
   
         * src/main/pa_exec.C: bugfix: win32: chdir not needed, dir passwed  2009-08-30  misha
           as 'currentDirectory' parameter to CreateProcess  
           * src/: include/pa_common.h, main/pa_request.C: - http headers were
 2004-07-27  paf            changed: content-type => Content-type and so on
   
         * src/targets/cgi/parser3.vcproj: beauty: win32:          * src/classes/file.C, src/include/pa_common.h,
           globaloptimizations ON, release:mapfile ON todo: copy .mapfile            src/include/pa_request.h, src/main/pa_http.C,
           from release somewhere [to help searching for unhandled system            src/main/pa_request.C, src/types/pa_vcookie.C,
           exceptions]            src/types/pa_vmail.C, src/targets/cgi/parser3.C,
             src/targets/isapi/parser3isapi.C, tests/results/001.processed,
         * src/types/pa_vdate.h: check: for invalid datetime after temporary            tests/results/002.processed, tests/results/003.processed,
           TZ shift            tests/results/004.processed, tests/results/005.processed,
             tests/results/006.processed, tests/results/007.processed,
         * src/types/pa_vdate.h: bugfix: time checked not only at set_time            tests/results/008.processed, tests/results/009.processed,
           but also in ctor            tests/results/010.processed, tests/results/011.processed,
             tests/results/012.processed, tests/results/013.processed,
 2004-07-26  paf            tests/results/014.processed, tests/results/015.processed,
             tests/results/016.processed, tests/results/017.processed,
         * operators.txt, src/include/pa_common.h, src/main/pa_common.C,            tests/results/018.processed, tests/results/019.processed,
           src/main/pa_request.C, src/types/pa_vfile.h,            tests/results/020.processed, tests/results/021.processed,
           src/types/pa_vhash.C, src/types/pa_vhash.h,            tests/results/022.processed, tests/results/023.processed,
           src/types/types.vcproj, www/htdocs/_bug.html: new:            tests/results/024.processed, tests/results/025.processed,
           $response:body/download[    $.file[name on disk]    $.name[of            tests/results/026.processed, tests/results/027.processed,
           file for user]        $.mdate[date of last-modified. default from            tests/results/028.processed, tests/results/029.processed,
           directory] ]            tests/results/030.processed, tests/results/031.processed,
             tests/results/032.processed, tests/results/033.processed,
         * src/classes/file.C: moving file:send somewhere else..            tests/results/034.processed, tests/results/035.processed,
             tests/results/036.processed, tests/results/037.processed,
         * src/: classes/file.C, include/pa_sapi.h, main/pa_common.C,            tests/results/038.processed, tests/results/039.processed,
           targets/cgi/parser3.C, targets/isapi/parser3isapi.C: patched:            tests/results/040.processed, tests/results/041.processed,
           ^file:send by Victor Fedoseev <vvf_ru@mail.ru> todo: turn it to            tests/results/042.processed, tests/results/043.processed,
           $response:download[ $.filename[filename] $.option[] ,, ]            tests/results/044.processed, tests/results/045.processed,
             tests/results/046.processed, tests/results/047.processed,
         * src/classes/file.C: beauty: invalid mode thoroughly reported            tests/results/048.processed, tests/results/049.processed,
             tests/results/050.processed, tests/results/051.processed,
 2004-07-21  paf            tests/results/052.processed, tests/results/053.processed,
             tests/results/054.processed, tests/results/055.processed,
         * src/types/pa_vmail.C, www/htdocs/_bug.html: bugfix: too long            tests/results/056.processed, tests/results/057.processed,
           header values now splitted to several lines            tests/results/058.processed, tests/results/059.processed,
             tests/results/060.processed, tests/results/061.processed,
           were: header: vaaaaaaaaaaaalue now: header: vaaaaaa  aaalue            tests/results/062.processed, tests/results/063.processed,
             tests/results/064.processed, tests/results/065.processed,
           note: ms outlook[!express] shows only first 255 characters of            tests/results/066.processed, tests/results/067.processed,
           subject            tests/results/068.processed, tests/results/069.processed,
             tests/results/070.processed, tests/results/071.processed,
 2004-07-15  paf            tests/results/072.processed, tests/results/073.processed,
             tests/results/074.processed, tests/results/075.processed,
         * src/main/pa_os.C: bugfix: locks now compiled in [were mistakenly            tests/results/076.processed, tests/results/077.processed,
           off]            tests/results/078.processed, tests/results/079.processed,
             tests/results/080.processed, tests/results/081.processed,
 2004-07-14  paf            tests/results/082.processed, tests/results/083.processed,
             tests/results/084.processed, tests/results/085.processed,
         * src/classes/table.C: bugfix: $.bind values now got untainted            tests/results/086.processed, tests/results/087.processed,
           according to lang  [were: as-is]            tests/results/088.processed, tests/results/089.processed,
             tests/results/090.processed, tests/results/091.processed,
 2004-07-07  paf            tests/results/092.processed, tests/results/093.processed,
             tests/results/094.processed, tests/results/095.processed,
         * src/classes/op.C: bugfix: cache with 2 params caused assertion,            tests/results/096.processed, tests/results/097.processed,
           checked that            tests/results/098.processed, tests/results/099.processed,
             tests/results/100.processed, tests/results/101.processed,
         * src/main/pa_exec.C: bufix: on unix AND win32 environment string            tests/results/102.processed, tests/results/103.processed,
           now untainted according to their languages.  were: as-is.            tests/results/104.processed, tests/results/105.processed,
           EVERYWHERE            tests/results/106.processed, tests/results/107.processed,
             tests/results/108.processed, tests/results/109.processed,
         * src/classes/file.C, src/main/pa_exec.C, www/htdocs/_bug.html,            tests/results/110.processed, tests/results/111.processed,
           www/htdocs/_bug.pl: bufix: on unix AND win32 environment string            tests/results/112.processed, tests/results/113.processed,
           now untainted according to their languages.  were: as-is.            tests/results/114.processed, tests/results/115.processed,
           EVERYWHERE            tests/results/116.processed, tests/results/117.processed,
             tests/results/118.processed, tests/results/119.processed,
         * src/main/pa_exec.C: bufix: on unix environment string now            tests/results/120.processed, tests/results/121.processed,
           untainted according to their languages.  were: as-is. on win32:            tests/results/122.processed, tests/results/123.processed,
           ok            tests/results/124.processed, tests/results/125.processed,
             tests/results/126.processed, tests/results/127.processed,
         * parser3.vssscc: ...would not go unnoticed            tests/results/128.processed, tests/results/129.processed,
             tests/results/130.processed, tests/results/131.processed,
         * src/main/pa_charset.C, www/htdocs/.htaccess,            tests/results/132.processed, tests/results/133.processed,
           www/htdocs/_bug.html: convinience: transcodeFromUTF8 now never            tests/results/134.processed, tests/results/135.processed,
           fails. in case on input appears nonutf, those bytes will be            tests/results/136.processed, tests/results/138.processed,
           printed in %HH form. that can be easily decoded/recovered.            tests/results/139.processed, tests/results/140.processed,
             tests/results/141.processed, tests/results/142.processed,
           this form is quite noticable, and hopefully would not go noticed            tests/results/143.processed, tests/results/144.processed,
             tests/results/145.processed, tests/results/146.processed,
 2004-07-06  paf            tests/results/147.processed, tests/results/148.processed,
             tests/results/149.processed, tests/results/150.processed,
         * src/main/pa_exec.C: bufix: on unix environment string now            tests/results/151.processed, tests/results/152.processed,
           untainted according to their languages.  were: as-is. on win32:            tests/results/153.processed, tests/results/154.processed,
           ok            tests/results/155.processed, tests/results/156.processed,
             tests/results/157.processed, tests/results/158.processed,
 2004-07-01  paf            tests/results/159.processed, tests/results/160.processed,
             tests/results/161.processed, tests/results/162.processed,
         * src/classes/classes.vcproj, src/lib/cord/cord.vcproj,            tests/results/163.processed, tests/results/164.processed,
           src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,            tests/results/165.processed, tests/results/166.processed,
           src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,            tests/results/167.processed, tests/results/168.processed,
           src/lib/pcre/pcre_dftables.vcproj,            tests/results/169.processed, tests/results/170.processed,
           src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/smtp/smtp.vcproj,            tests/results/171.processed, tests/results/172.processed,
           src/main/main.vcproj, src/targets/cgi/parser3.vcproj,            tests/results/173.processed, tests/results/174.processed,
           src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj,            tests/results/175.processed, tests/results/176.processed,
           www/htdocs/.htaccess: win32: option: global optimization ON            tests/results/177.processed, tests/results/178.processed,
             tests/results/179.processed, tests/results/180.processed,
         * src/main/untaint.C, www/htdocs/_bug.html: workaround kinda bug in            tests/results/181.processed, tests/results/182.processed,
           libxml: life requires to do xdoc::create{invalid chars} standard            tests/results/183.processed, tests/results/184.processed,
           disables chars less then \x20, except tab, cr, lf.            tests/results/185.processed, tests/results/186.processed,
             tests/results/187.processed, tests/results/188.processed,
           changed tainting so that those become '!'            tests/results/189.processed, tests/results/190.processed,
             tests/results/191.processed, tests/results/192.processed,
 2004-06-25  paf            tests/results/193.processed, tests/results/194.processed,
             tests/results/195.processed, tests/results/196.processed,
         * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed            tests/results/197.processed, tests/results/198.processed,
           int on odd address [prev bugfix failed due to superwize            tests/results/199.processed, tests/results/200.processed,
           optimizer, which turned memcpy into same 'ld' asm command]            tests/results/201.processed, tests/results/202.processed,
             tests/results/203.processed, tests/results/204.processed,
         * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed            tests/results/205.processed, tests/results/206.processed,
           int on odd address            tests/results/207.processed, tests/results/208.processed,
             tests/results/209.processed, tests/results/210.processed,
 2004-06-23  paf            tests/results/211.processed, tests/results/212.processed,
             tests/results/213.processed, tests/results/214.processed,
         * www/htdocs/_bug.html: checked: oracle: various ways of returning            tests/results/215.processed, tests/results/216.processed,
           error from stored proc.  bad: no way of knowing which exactly            tests/results/217.processed, tests/results/218.processed,
           user-defined exception were thrown.  good:            tests/results/219.processed, tests/results/220.processed,
           raise_application_error can return error message number and            tests/results/221.processed, tests/results/222.processed,
           string FINE good: PRAGMA EXCEPTION_INIT works good too            tests/results/223.processed, tests/results/224.processed,
             tests/results/225.processed, tests/results/226.processed,
 2004-06-22  paf            tests/results/227.processed, tests/results/228.processed,
             tests/results/229.processed: - http headers were changed:
         * src/sql/pa_sql_driver.h: note: about possible optimization            content-type => Content-type and so on
   
         * www/htdocs/_bug.html: checked: in out variables OK  2009-08-27  misha
   
         * operators.txt, src/classes/hash.C, src/classes/memory.C,          * src/: main/pa_random.C, include/pa_random.h,
           src/classes/string.C, src/classes/table.C, src/classes/void.C,            targets/cgi/parser3.C: - year was updated :)
           src/include/pa_config_includes.h, www/htdocs/_bug.html: new:  
           ^void:sql{call paf(:a)}[                $.bind[  2009-08-26  misha
                 $.a[2]          ]       ] output variables work.  todo:  
           check in out variables          * tests/: 224.html, 224.p: - test for creating of parser object
             using constructor without params - little bugfix in test
 2004-06-18  paf  
           * src/main/compile_tools.h: - bugfix: should't call autouse while
         * src/classes/file.C, src/classes/hash.C, src/classes/string.C,            checking existed class while processing partial option
           src/classes/table.C, src/classes/void.C,  
           src/include/pa_globals.h, src/include/pa_sql_connection.h,          * src/classes/reflection.C: - bugfix: core when creating object
           src/main/compile.tab.C, src/sql/pa_sql_driver.h,            with reflection and constructor doesn't have params
           www/htdocs/.htaccess, www/htdocs/_bug.html: started:  
           ^void:sql{call paf(:a)}[                $.bind[  2009-08-24  misha
                 $.a[2]          ]       ] input variables work.  
           todo:output          * tests/229.html: - tests for checking the number of parameters
             were added
         * src/targets/cgi/parser3.C: bugfix: iis specific  
           http://parser3/_bug.html?404;http://hpsv/test/ now $request:uri          * src/types/: pa_value.C, pa_vmethod_frame.h: - bugfix: the actual
           /_bug.html?404;http://hpsv/test/            number of method's parameters wasn't checked correctly (the bug
           --------------------------------------------------------------------------------            was introduced in 3.4.0)
           $request:query IIS-STATUS=404&IIS-DOCUMENT=http://hpsv/test/  
           --------------------------------------------------------------------------------  2009-08-22  misha
           IIS-STATUS="404" IIS-DOCUMENT="http://hpsv/test/"  
           * src/main/pa_http.C: - ^file::load[http://...;$.body[]] : $.body
 2004-06-16  paf            transcoded, but tainted pieces are escaped only when
             content-type==url-encoding
         * src/targets/cgi/parser3.C: new: iis specific  
           http://parser3/_bug.html?404;http://server/_bug.html?f=v now          * tests/228.html: - test for checking
           $request:query            ^file::load[http://...;$.body[]]
           IIS-STATUS=404&IIS-DOCUMENT=http://server/_bug.html&f=v  
           $form:fields IIS-STATUS="404"          * src/types/: pa_vform.C, pa_vform.h: - bugfix: attempt to detect
           IIS-DOCUMENT="http://server/_bug.html" f="v"            post charset was too early (charsets is empty at this moment)
   
           todo: isapi too  2009-08-21  misha
   
 2004-05-26  paf          * src/: include/pa_string.h, main/pa_http.C, main/pa_request.C,
             main/untaint.C: - some fixes with transcode+untaint
         * src/include/pa_version.h: 3.1.3  
   2009-08-15  misha
         * operators.txt: beauty: removed outdated level 'table'  
           * src/main/pa_exec.C: - number of argv in file::exec/cgi on unix
         * etc/parser3.charsets/x-mac-cyrillic.cfg: added: thanks to konst            was increaced to 100 (was 50)
   
         * src/main/pa_string.C: beauty: removed 3 warnings          * tests/227.html: - test for checking overriding properties in
             static classes was added
         * src/include/pa_string.h, src/classes/table.C, src/main/untaint.C,  
           www/htdocs/_bug.html, src/classes/op.C: beauty: removed outdated          * tests/: 226.html, 226.p: - test for @autoload[] was added
           level 'table'  
           * src/: include/pa_request.h, main/compile.y, main/compile_tools.h,
 2004-05-25  paf            main/execute.C, main/pa_request.C, classes/reflection.C: -
             autouse was implemented
         * src/lib/sdbm/apr_file_io.C: bugfix: bad seek wrapper  
           implementation. mistery: how anything worked  2009-08-14  misha
   
         * src/sql/pa_sql_driver.h: beauty: param renamed and comment          * src/classes/reflection.C: - outdated checkout was removed
           changed, it is now safe to use url if pointers to it are stored  
           to gc mem          * src/classes/reflection.C: - optimization - method ^dynamical was
             added.
         * src/: main/pa_exec.C, types/pa_vhashfile.C: bugfix: hashfile  
           unknown errors reported and not cause SIGSEGV now          * src/: types/pa_value.h, types/pa_vmethod_frame.h,
             types/pa_vstateless_class.h, main/execute.C: - optimization
 2004-05-24  paf  
           * src/types/pa_vclass.C: - exception if base on sytem class
         * src/include/pa_string.h, src/lib/cord/cordbscs.c,  
           src/lib/cord/include/cord.h, www/htdocs/_bug.html,  2009-08-12  misha
           src/lib/cord/cordxtra.c: cancel: more speed, less memory:  
           CORD_chars_block originally intended to ...  it was good that          * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
           CORD_chars_block were not used: it consumes more memory [and,            pa_vstateless_class.h: - little optimisation
           might be slow too] undoing that. [and removed that func so that  
           it would not confuse parser developer in future]  2009-08-11  misha
   
         * src/: include/pa_string.h, lib/cord/include/cord.h: more speed,          * tests/224.html: - method_params => method_info - checking for
           less memory: CORD_chars_block originally intended to            $.inherited
           speedup/reduce mem usage were forgotten, and were used stupid  
           CORD_chars          * src/classes/reflection.C, operators.txt: - method method_params
             was renamed to method_info and now it returns class name, if
         * src/include/pa_config_auto.h.in: bugfix: bigendian check added            method was defined in ancestor
   
         * src/include/: pa_config_fixed.h, pa_string.h: bugfix: on          * tests/225.html: - tests for cheching properties in hierarhical
           BIGENDIAN processors space-conserving mech failed, causing            classes were added
           SIGSEGV/SIGBUS and SAPI::abort("unknown untaint lang#%d",  
           (1|2|3));          * src/: types/pa_property.h, types/pa_vclass.C, types/pa_vclass.h,
             types/pa_vstateless_class.C, types/pa_vstateless_class.h,
 2004-05-14  paf            main/compile.y, main/execute.C, classes/classes.C: - problems
             with properties in new classes implementation were fixed
         * src/types/Makefile.am, src/types/pa_vvoid.C,  
           src/types/pa_vvoid.h, src/types/types.vcproj,  2009-08-10  misha
           www/htdocs/.htaccess, www/htdocs/_bug.html, www/htdocs/auto.p:  
           bugfix: void now has vfile value, and $response:body[] works OK          * src/main/execute.C: - now constructor shouldn't be defined in
             class. it could be defined in parent.
 2004-05-12  paf  
   2009-08-09  misha
         * src/types/pa_vbool.h, src/types/pa_vhash.h,  
           src/types/pa_vhashfile.h, src/types/pa_vtable.h,          * src/classes/reflection.C: - ^reflection:methods doesn't return
           www/htdocs/.htaccess, www/htdocs/_bug.html: beauty: ^if(def            base's methods
           $bool) now equals ^if($bool) and shaped up other sources to use  
           is_defined() {return as_bool();} along VBool  2009-08-08  misha
   
 2004-05-11  paf          * src/: classes/classes.h, classes/date.C, classes/file.C,
             classes/form.C, classes/hash.C, classes/hashfile.C,
         * src/include/pa_exec.h: bugfix: gpf on file::exec/cgi because of            classes/image.C, classes/mail.C, classes/op.C,
           referencing to local objects            classes/reflection.C, classes/regex.C, classes/string.C,
             classes/table.C, classes/xdoc.C, classes/xnode.C,
         * src/classes/mail.C, src/include/pa_exec.h,            classes/xnode.h, include/pa_hash.h, main/execute.C,
           src/main/compile.tab.C, src/types/pa_vmail.C,            main/pa_http.C, main/pa_request.C, targets/cgi/parser3.C,
           src/types/pa_vmail.h, www/htdocs/.htaccess, www/htdocs/_bug.gif,            types/pa_method.h, types/pa_property.h, types/pa_value.C,
           www/htdocs/_bug.html: bugfix: bcc with sendmail now left intact            types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
             types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
 2004-04-15  paf            types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.C,
             types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
         * src/classes/date.C: merged: beauty: unused var removed            types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
             types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
         * src/classes/date.C: beauty: unused var removed            types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
             types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.h,
         * src/include/: pa_exec.h: bugfix: interface without pointer            types/pa_vobject.C, types/pa_vobject.h, types/pa_vproperty.C,
           provoked bug            types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
             types/pa_vresponse.C, types/pa_vresponse.h,
 2004-04-09  paf            types/pa_vstateless_class.C, types/pa_vstateless_class.h,
             types/pa_vstateless_object.h, types/pa_vstatus.C,
         * src/types/pa_vform.C: merge: bugfix: form:imap were incorrect            types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
             types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
         * src/types/pa_vform.C: bugfix: form:imap were incorrect            types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
             types/pa_wwrapper.h, types/types.vcproj: - new classes
 2004-04-08  paf            implementation
   
         * src/classes/date.C: new: ^date::create[y-m-d          * buildall-with-xml, buildall-without-xml: - gc has a bug if
           h-M-s>>.milliseconds<<] now allowed, ignored so far            USE_MUNMAP is used. so it is disabled as a workaround.
   
         * src/main/pa_xml_io.C: merged: bugfix /etc/xml/catalog  2009-08-05  misha
   
         * src/main/pa_xml_io.C: bugfix: in safe mode -- disabled attempts          * src/: main/pa_common.C, include/pa_common.h: - not needed
           to consult default catalog [usually, that file belongs to other            parameter was removed
           user/group]  
           * src/main/pa_http.C: - bugfix: error was during detecting
 2004-04-06  paf            content-type of file which was loaded by http
   
         * src/main/pa_common.C: beauty: gcc warning removed  2009-08-01  misha
   
         * src/main/: compile.tab.C, compile.y: bugfix: gcc refused to          * src/main/execute.C, src/main/compile.y, src/include/pa_opcode.h,
           accept that trick, trying other            src/types/pa_wcontext.h, src/types/pa_wwrapper.h, INSTALL: -
             OPTIMIZE_BYTECODE_CONSTRUCT_OBJECT and OPTIMIZE_CONSTRUCT_OBJECT
         * src/main/compile.tab.C, src/main/compile.y, www/htdocs/_bug.html:            can't be disabled with defines any longer
           bugfix: step3 to fix explicit result problem  
   2009-07-29  misha
         * src/main/compile.tab.C, src/main/compile.y, www/htdocs/_bug.html:  
           bugfix: step2 to fix explicit result problem          * src/classes/reflection.C, tests/results/224.processed: - for
             native methods with any call type now returned empty call_type
         * src/main/compile.tab.C, src/main/compile.y, www/htdocs/_bug.html:            value
           bugfix: step1 to fix explicit result problem  
           * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
         * operators.txt, src/classes/string.C: new: ^string.append[string]            classes/table.C, include/pa_hash.h, include/pa_request.h,
             main/pa_request.C: - break in cycles was optimized
         * src/include/pa_opcode.h, src/main/compile.tab.C,  
           src/main/compile.y, src/main/execute.C, www/htdocs/_bug.html:          * INSTALL: - more defines were described
           attempt_check_call_in_explicit_result_mode: failed  
   2009-07-28  misha
         * src/main/pa_common.C: bugfix: of 1.175 bugfix:  
           http://i.p.a.ddress gethostbyaddr added [on some platforms          * operators.txt: - some changes in information about reflection
           gethostbyname failed with such 'domains'] now checked properly,            class
           were: needless reverse/forward dns lookup  
           * tests/: 224.html, 224.p: - tests for reflection class
         * src/main/pa_common.C: bugfix: of 1.175 bugfix:  
           http://i.p.a.ddress gethostbyaddr added [on some platforms          * src/classes/reflection.C: - some bugs were fixed, method classes
           gethostbyname failed with such 'domains'] now checked properly,            was added, refactoring
           were: needless reverse/forward dns lookup  
   2009-07-26  misha
         * src/main/compile.C, src/main/compile.tab.C, src/main/compile.y,  
           www/htdocs/_bug.html: reimplemented: @method[][result] means "no          * src/classes/classes.vcproj: - reflection class wass added to
           string output here" moved to lexical level [on grammar level it            project
           were too difficult]  
           * operators.txt: - information about reflection class was added
         * operators.txt, src/include/pa_string.h, src/main/compile.tab.C,  
           src/main/compile.y, src/main/compile_tools.h,          * src/classes/reflection.C: - class was redesigned
           src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,  
           www/htdocs/.htaccess, www/htdocs/_bug.html: new:  2009-07-24  misha
           @method[][result] means "no string output here", implemented part  
           of that idea: compiler throws away string literal generation          * src/classes/: Makefile.am, reflection.C: - class reflection was
           code. and barks nonwhitespace chars            added
   
         * operators.txt: truth: removed comment about $ORIGIN          * src/types/pa_vstateless_class.h: - method for reflection method's
             in classes was added
 2004-04-05  paf  
   2009-07-22  misha
         * configure.in, src/doc/html2chm.cmd, src/doc/sources2html.cmd,  
           src/include/pa_version.h, src/main/pa_common.C,          * src/main/compile_tools.h: - bugfix: $object.$var was
           src/targets/isapi/parser3isapi.C, www/htdocs/.htaccess,            over-optimized. it failed if $object1.$object2.field
           www/htdocs/_bug.html, www/htdocs/_bug.txt: merged with 3.1.3  
   2009-07-16  misha
         * etc/parser3.charsets/x-mac-cyrillic.cfg: added: donated by  
           Konstantin Tomashevitch [mailto:konst@design.ru]          * src/: lib/cord/cordbscs.c, lib/cord/cordprnt.c,
             lib/cord/cordxtra.c, lib/cord/include/cord.h,
         * src/doc/html2chm.cmd: beauty: no need in bg here            include/pa_string.h, main/pa_string.C: - optimization: CORD_str,
             CORD_to_const_char_star, CORD_to_char_star and CORD_substr have
         * src/doc/sources2html.cmd: beauty: same window, in bg it            one more arg: length of cord
           interfered with FAR console  
   2009-07-15  misha
         * configure, configure.in: 3.1.3  
           * src/main/pa_http.C: - bugfix: $.cookies' values should be force
         * src/targets/isapi/parser3isapi.C: beauty: removed some warnings            tainted in ^file::load[http://...;$.cookies[]]
   
         * src/main/pa_common.C: removed warning          * src/classes/: op.C, regex.C, string.C: - new string with
             exception was used
         * src/include/pa_version.h: 3.1.3  
           * src/include/pa_exception.h: - new string with exception was added
 2004-04-02  paf  
           * tests/223.html: - test for checking cookie-encoding during
         * src/main/pa_string.C: bugfix: $s[009] ^s.int[] now 9, were error            ^file::load[http was added
   
         * src/targets/cgi/parser3.C: new: CGI_PARSER_LOG env variable          * tests/: 221.html, 222.html: - tests for checking type of
           allows to specify where to put parser log file            $table.fields.field were added
   
 2004-04-01  paf          * src/types/pa_vtable.C: - not used var decl was removed
   
         * src/classes/table.C: bugfix: bugfix: table::load last line          * src/include/pa_string.h: - use cached string length in Body::mid.
           without tab and enter were ignored            it improves speed of match with brackets in pattern
   
         * src/: include/pa_cache_managers.h, include/pa_globals.h,          * src/lib/cord/include/cord.h: - make CORD_substr_checked available
           include/pa_socks.h, main/pa_cache_managers.C, main/pa_globals.C,            outside
           main/pa_socks.C, targets/cgi/parser3.C,  
           targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.def:  2009-07-14  misha
           bugfix: sql connections now are disconnected  
           * src/types/pa_vtable.C: - $table.fields.a return string even if
 2004-03-30  paf            column is empty (sometime returned void) - $table.fields was
             added for nameless tables
         * src/classes/table.C: bugfix: table::load last line without tab  
           and enter were ignored          * src/targets/cgi/getopt.c: - one warning resolved
   
         * src/classes/table.C: bufix: if last table lines were commented,          * src/main/pa_string.C: - potentian bug fixed
           gpfed  
           * src/classes/op.C: - small optimization in taint/untaint
         * src/doc/ClassExample1.dox, src/doc/ClassExample2.dox,  
           src/doc/ClassExample3.dox, src/doc/chmhelper.pl,  2009-07-13  misha
           src/doc/class.dox, src/doc/compiler.dox, src/doc/doxygen.cfg,  
           src/doc/exception.dox, src/doc/executor.dox, src/doc/footer.htm,          * tests/156.html: - test for $cookie[...$.httponly(false)...] was
           src/doc/index.dox, src/doc/memory.dox, src/doc/methoded.dox,            added
           src/doc/object.dox, src/doc/string.dox, src/doc/targets.dox,  
           src/doc/value.dox, src/include/pa_version.h,          * src/types/pa_value.C: - bugfix: $cookie[...$.httponly(false)...]
           src/main/pa_cache_managers.C,            souldn't add the attribut to output
           src/main/pa_stylesheet_connection.C,  
           src/targets/isapi/parser3isapi.vcproj, src/types/pa_vform.C,  2009-07-11  misha
           www/htdocs/_bug.html, www/htdocs/_bug.txt: merged bugfixes from  
           3.1.2, changed version to 3.1.3beta          * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
             stack size was increaced to 2MB (default=1MB)
 2004-03-29  paf  
   2009-07-08  misha
         * src/types/pa_vhashfile.C: bugfix: empty key on hashfile.get  
           causes gpf          * src/main/pa_string.C: - link to UTF-8 description was added
   
         * src/doc/: ClassExample1.dox, ClassExample2.dox,          * src/include/pa_hash.h: - hash keeps element's order in more
           ClassExample3.dox, chmhelper.pl, class.dox, compiler.dox,            places (ex: ._keys[])
           doxygen.cfg, exception.dox, executor.dox, footer.htm, index.dox,  
           memory.dox, methoded.dox, object.dox, string.dox, targets.dox,          * tests/220.html: - test for checking order of elements in hash in
           value.dox: translated to english            foreach was added
   
 2004-03-25  paf          * tests/172.html: - small changes in printing hash
   
         * src/targets/isapi/parser3isapi.vcproj: beauty: one more          * tests/129.html: - small changes in printing hash
           parser3project dependency removed  
           * src/: include/pa_common.h, include/pa_hash.h,
         * src/main/: pa_cache_managers.C, pa_stylesheet_connection.C:            include/pa_request.h, types/pa_value.h, types/pa_vmethod_frame.C,
           bugfix: refused to compile without xml            types/pa_vmethod_frame.h: - hash now keeps order of elements
   
         * src/types/pa_vform.C: beauty: removed warning          * tests/014.html: - small changes in printing hash
   
         * src/classes/classes.vcproj: merged bugfix: now all compiles in  2009-07-07  misha
           any folder [removed last ;) folder dependency]  
           * src/classes/op.C: - new taint language "parser-code" was added
         * src/classes/classes.vcproj: bugfix: now all compiles in any  
           folder [removed last ;) folder dependency]          * tests/219.html: - test for auto untaint parser code in process
             was added
         * src/include/pa_version.h: release  
           * src/classes/op.C: - tainted pieces in body of process are
         * src/lib/gd/gif.C: new: ^image.pixel(outof;bounds) now returns -1            auto-untainted now: ^ -> ^^, $ -> ^$ etc.
   
         * src/classes/table.C: beauty: comment& more meaningful error          * src/: include/pa_string.h, main/untaint.C: - new language
           message            L_PARSER_CODE for auto-untaint in process was added
   
         * src/classes/hash.C, www/htdocs/_bug.html: bugfix: ^hash::sql{one          * src/: classes/file.C, classes/hash.C, classes/image.C,
           column} now produces $.hash[$.column_value1(true) ... ] [were            classes/op.C, classes/string.C, classes/table.C, classes/void.C,
           producing some strang thing]            classes/xdoc.C, include/pa_string.h, main/pa_charset.C,
             main/pa_http.C, main/pa_request.C, main/pa_xml_io.C,
 2004-03-23  paf            main/untaint.C, types/pa_value.h, types/pa_vhash.h,
             types/pa_vmail.C, types/pa_vobject.h, types/pa_vstring.h: - some
         * src/classes/image.C, src/main/pa_common.C, www/htdocs/_bug.html:            code cleanup
           bugfix: ^image.polyline and http status line parsing checked  
           number of columns in table [user reported an assert]  2009-07-06  misha
   
         * operators.txt: example: on hashfile          * src/classes/: file.C, hash.C, image.C, mail.C, op.C, string.C,
             table.C, void.C, xdoc.C: - cstr(params) and cstrm(params) were
         * src/classes/op.C, src/types/pa_value.C, src/types/pa_wcontext.C,            deleted. taint_cstr[m] and untaint_cstr[m] should be used
           www/htdocs/_bug.html: bugfix: junction reattach now actually  
           reattaches a junction to new wcontext [were only assigning it to          * src/types/: pa_vcookie.C, pa_vhash.h, pa_vhashfile.C,
           junction, which caused junction tracking to loose junction, and            pa_vimage.C, pa_vmail.C, pa_vobject.h, pa_vregex.C,
           it's context were not killed, and it tried to process in invalid            pa_vrequest.C, pa_vstring.h, pa_vvoid.h: - cstr(params) and
           context, gpf]            cstrm(params) were deleted. taint_cstr[m] and untaint_cstr[m]
             should be used
         * src/targets/cgi/parser3.C: debug helper added  
           * src/main/: pa_charset.C, pa_common.C, pa_exec.C, pa_http.C,
 2004-03-19  paf            pa_request.C, pa_sql_driver_manager.C, pa_xml_io.C: -
             cstr(params) and cstrm(params) were deleted. taint_cstr[m] and
         * src/types/pa_wcontext.C, www/htdocs/_bug.html: beauty: error            untaint_cstr[m] should be used
           messages removed duplicate "type(type)" in braces  
           * src/include/pa_string.h: - cstr(params) and cstrm(params) were
 2004-03-10  paf            deleted. taint_cstr[m] and untaint_cstr[m] should be used
   
         * operators.txt, src/classes/xdoc.C, src/classes/xnode.C,          * tests/218.html: - test for checking automatic file-spec-taint was
           src/classes/xnode.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,            added
           src/types/pa_vxnode.C, src/types/pa_vxnode.h,  
           www/htdocs/_bug.html: new: refined solution to          * src/: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vmail.C,
           search-in-namespaces problem:            types/pa_vregex.C, types/pa_vrequest.C, types/pa_vstring.C,
           $xdoc.search-namespaces.x[http://pif.design.ru/]            classes/file.C, classes/hash.C, classes/image.C,
           $nodes[^xdoc.select[//x:second]]            classes/string.C, classes/table.C, classes/void.C,
             classes/xdoc.C: - optimizations and simplification of
         * operators.txt, src/classes/xnode.C, www/htdocs/_bug.html,            string.cstr(...)
           www/htdocs/_bug.xml: new: xnode.select*[xpath  
           expression][[NAMESPACES HASH]] allows to search for info in          * src/: include/pa_string.h, main/untaint.C, main/pa_common.C,
           namespaces            main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C:
             - optimizations and simplification of string.cstr(...)
           $nodes[^xdoc.select[//x:second][  
           $.x[http://pif.design.ru/] ]]  2009-07-04  misha
   
 2004-03-09  paf          * tests/217.html: - test for recursion detection was added
   
         * operators.txt, src/main/pa_common.C, www/htdocs/.htaccess,          * src/: types/types.vcproj, main/main.vcproj,
           www/htdocs/_bug.html, www/htdocs/_bug.txt, www/htdocs/_bug.xsl:            classes/classes.vcproj, targets/cgi/parser3.vcproj,
           new: ^file::load[...][options]         $.form[            targets/isapi/parser3isapi.vcproj: - RuntimeTypeInfo was removed
           !$.field1[string]            from .vcproj
           !$.field2[^table::create{one_column_only^#0Avalue1^#0Avalue2}]  
                ]         !$.body[string]          * src/types/pa_wwrapper.h: - dynamic_cast was removed
   
           GET ?here notGET(POST, HEAD, others) in content-type:          * tests/: 195.html, 195_utf8.txt, 195_windows1251.txt: - tests for
           application/x-www-form-urlencoded            uploading files and case-insensitive http-method were added
   
           todo: upload files ability          * tests/: 216.html, 216_dir/1, 216_dir/2.txt: - test for checking
             tainted pattern in ^file:list[] was added
         * src/lib/cord/cordxtra.c: bugfix: CORD_pos were not fixed  
           properly, done  2009-07-03  misha
   
 2004-03-05  paf          * src/: classes/classes.vcproj, main/main.vcproj,
             types/types.vcproj, targets/cgi/parser3.vcproj,
         * operators.txt, src/main/pa_common.C: new: file::load[;http://            targets/isapi/parser3isapi.vcproj: - enable runtime info (needed
           GET/POST $.form[$.fields started, not tested yet            for dynamic_cast) - little options changes
           todo:$.field[table] for multiple values  
           * src/main/pa_http.C: - file::load[http works now with uploading
         * operators.txt: new: http:// options $.user $.password basic            files _and_ changing $.charset
           authorization  
   2009-06-29  misha
         * src/main/pa_common.C: beauty: link to rtf added  
           * src/types/pa_vregex.C: - ^untaint[regex][] for all tainted data
         * operators.txt, src/include/pa_common.h, src/main/pa_common.C,            while creating pattern
           www/htdocs/_bug.html: new: http:// options $.user $.password  
           basic authorization  2009-06-25  misha
   
         * src/main/pa_common.C: beauty: removed needless vars          * src/classes/image.C, operators.txt: - options' names for
             ^image.font were changed to $.space, $.width and $spacing -
         * operators.txt: new: pgsql option [like that recently added to            default space width now == gif's width
           oracle driver]             ClientCharset=parser-charset <<  
           charset in which parser thinks client works  2009-06-24  misha
   
         * src/sql/pa_sql_driver.h: beauty: important warning added          * tests/215.html: - tests for $file.mode were added
   
         * etc/parser3.charsets/koi8-r.cfg: there's special code for grad          * operators.txt: - added info about $file.mode and changes in
           char!            ^image.font[
   
         * etc/parser3.charsets/windows-1251.cfg: typo          * src/: types/pa_vimage.h, classes/image.C: ^image.font - third
             param now could be omited - third param now could be hash (with
         * www/htdocs/_bug.html, operators.txt: new: odbc option [like that            all widths options: $.space-width, $.letter-width) - it's
           recently added to oracle driver]            possible to specify tracking ($.letter-space)
           ClientCharset=parser-charset << charset in which parser thinks  
           client works          * src/classes/file.C: - file objects now could have mode field
             (text|binary)
 2004-03-04  paf  
           * src/types/: pa_vfile.C, pa_vfile.h: - method set_method was added
         * www/htdocs/: _bug.html, _bug.txt: new: mysql option [like that  
           recently added to oracle driver]  2009-06-23  misha
           ClientCharset=parser-charset << charset in which parser thinks  
           client works          * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
             trim can work with utf-8 chars now
         * src/main/pa_sql_driver_manager.C: speedup: charset lookups  
           cached, sql transcoding now goes faster  2009-06-20  misha
   
         * operators.txt: new: mysql option [like that recently added to          * src/: classes/hash.C, main/pa_string.C: - string length cacheing
           oracle driver]             ClientCharset=parser-charset <<            was implemented
           charset in which parser thinks client works  
           * src/classes/table.C: - string length cacheing was implemented
         * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: keyboard  
           typo error          * src/include/pa_string.h: - string length cacheing was implemented
   
         * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: typograph  2009-06-17  misha
           chars commented  
           * src/main/execute.C: - value param was removed from
 2004-03-03  paf            WContext::WContext
   
         * INSTALL: note: added on libgc on FreeBSD, thanks to Andrey N.          * src/types/: pa_vcode_frame.h, pa_vmethod_frame.C, pa_wcontext.h,
           Pazychev <135@ugtel.ru> and Goor <goor@hotbox.ru>            pa_wwrapper.h: - value param was removed from WContext::WContext
             - field wcontext was removed from VCodeFrame (using fparent
 2004-03-02  paf            instead)
   
         * operators.txt: new[update typo]:     !^void.left(n)          * tests/214.html: - test with hash copying
           nothing     !^void.right(n)        nothing     !^void.mid(p[;n])  
                 nothing  2009-06-16  misha
   
         * operators.txt, src/classes/void.C, www/htdocs/_bug.html: new:          * tests/: 062.html, results/062.processed: - evaluation hardcoded
           !^void.left(n)        nothing     !^void.right(n)        nothing            strings doesn't work in expression anymore
           !^void.pos(p[;n])           nothing  
           * src/main/execute.C: - less calls for get_constructing() - little
         * operators.txt, src/classes/file.C, src/include/pa_string.h,            refactoring
           www/htdocs/_bug.html: new: ^file::sql[[name_to_become_$.name]]{}  
           query result must be one row with columns:   first: data          * src/: types/pa_wcontext.h, types/pa_wwrapper.h,
           second: file name   third: content-type            include/pa_request.h: - less calls for get_constructing()
   
         * operators.txt, src/classes/file.C, www/htdocs/_bug.gif,          * src/classes/: hash.C, hashfile.C: - fixed bug which was
           www/htdocs/_bug.html: ^file.sql-string[] inside ^connect gets            introduced with OPTIMIZE_SINGLE_STRING optimization
           properly escaped string, which can be passed to request now this  
           for mysql only. it's up to parser sql driver to fix zeros  2009-06-14  misha
           properly  
           * src/: classes/date.C, classes/file.C, classes/hash.C,
         * INSTALL: note: added on building apache with this option:            classes/hashfile.C, classes/image.C, classes/regex.C,
           --enable-shared=max thanks to Victor Fedoseev <vvf_ru@mail.ru>            classes/table.C, classes/xdoc.C, classes/xnode.h,
             types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
         * www/htdocs/_bug.html: feature:            types/pa_vstateless_class.h, main/execute.C: - create object for
           oracle?..&LowerCaseColumnNames=0&ClientCharset=something column            storing object's fields only for parser objects
           names got transcoded to $request:charset too [were only column  
           data]  2009-06-13  misha
   
 2004-03-01  paf          * buildall-with-xml, buildall-without-xml: - new option was added
             for building GC (it slightly reduces memory usage)
         * src/targets/isapi/parser3isapi.C: new: apache module & isapi  
           extension memory:compact befor processingrequest          * src/types/: pa_wcontext.h, pa_wwrapper.h: - optimization of
             single string write
         * operators.txt, src/classes/hash.C, www/htdocs/_bug.html: new:  
           ^hash._keys[>>name<<] to call sole column of result          * src/main/execute.C: - bytecode optimization of ^class:constructor
             - optimization of single string write
         * operators.txt, src/classes/image.C, src/lib/gd/gif.C,  
           src/lib/gd/gif.h, www/htdocs/_bug.html: new:          * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.h:
           ^image.pixel(x;y)[(color)]         get/set pixel color            - bytecode optimization of ^class:constructor
   
         * src/classes/image.C, src/types/pa_vimage.C,  2009-06-09  misha
           src/types/pa_vimage.h, www/htdocs/_bug.html: beauty: image --  
           less checks [were ugly impl]          * src/targets/cgi/parser3.C: - type size_t was changed to int in
             main (better compatibility)
         * src/classes/string.C, www/htdocs/_bug.html: bugfix:  
           ^string.left/right/mid with negative values now considered bad  2009-06-08  misha
   
         * src/main/pa_common.C: bugfix: INADDR_NONE not everywhere defined          * src/main/compile.y: - I've forgot to commit it :(
   
         * src/classes/xdoc.C, src/types/pa_vxdoc.h, www/htdocs/_bug.html,  2009-06-07  misha
           www/htdocs/_bug.xsl: bugfix: boolean output options now have  
           unified defaults [after transform          * src/include/pa_opcode.h: - more optimizations for WITH_SELF,
           indent/omit-xml-declaration/standalone 'default' erroreously            WITH_READ and WITH_ROOT
           meant 'true']  
           * src/main/: compile.y, compile_tools.C, compile_tools.h,
         * www/htdocs/_bug.html: bugfix: http://i.p.a.ddress gethostbyaddr            execute.C: - more optimizations for WITH_SELF, WITH_READ and
           added [on some platforms gethostbyname failed with such            WITH_ROOT - little refactoring
           'domains']  
   2009-06-06  misha
         * src/main/pa_common.C: bugfix: http://i.p.a.ddress gethostbyaddr  
           added [on some platforms gethostbyname failed with such          * tests/213.html: - tests for 3rd match string-param were added
           'domains']  
           * src/classes/string.C: - 3rd match param could be string now
         * src/include/pa_config_auto.h.in: no select check, no define  
           * src/main/: compile.y, compile_tools.h: - much more bytecode's
         * src/classes/string.C: feature: ^string.trim both parameters may            sequences optimized to WITH_SELF__VALUE__GET_ELEMENT and
           be empty-strings, meaning kind=both chars=whitespaces            GET_OBJECT_ELEMENT
   
         * src/lib/smtp/comms.C: bugfix: use SO_LINGER if no SO_DONTLINGER  2009-06-05  misha
           exist  
           * src/main/pa_http.C: - bugfix: content-length was not calculated
         * src/classes/string.C: check: trim 'chars' must not be empty,            if $.body was specified
           exception if it is  
   2009-06-04  misha
         * src/classes/string.C: changed: ^string.trim [] << both,  
           whitespaces [start|both|end] << kind, whitespaces          * src/classes/op.C: - optimizing write_assign_lang in connect
           [start|both|end;chars]  full  
           * src/classes/op.C: - optimizing write_assign_lang in taint/untaint
 2004-02-27  paf  
           * src/main/execute.C: - little refactoring - optimizing
         * operators.txt, src/classes/string.C, src/main/pa_string.C,            write_assign_lang in taint/untaint
           www/htdocs/_bug.html: new method:  
           ^string.trim[start|both|end[;chars]]        default 'chars' --          * src/include/pa_opcode.h: - little refactoring
           whitespace chars finished  
           * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
         * operators.txt, src/classes/string.C, src/include/pa_string.h,            main/compile_tools.h, main/execute.C: - optimizations for
           src/main/pa_string.C, www/htdocs/_bug.html: new method:            $self.field, ^self.method, $self.field[...] and $self.field(...)
           ^string.trim[start|both|end[;chars]]        default 'chars' --            were added
           whitespace chars   started, only start works  
   2009-06-03  misha
         * www/htdocs/: _bug.html, _bug.xml, _bug.xsl: bug discovered: todo!  
           xdoc::create+save != xdoc.transform&no<xsl:output>+save          * src/types/pa_venv.C: - pa_strdup was replaced by strdup
   
         * src/main/compile.C: bugfix: line numbers after  2009-06-02  misha
           ^process{}[$.line(-10]] can be negative, allowed to print they as  
           signed          * src/: main/compile.y, main/compile_tools.h, main/execute.C,
             include/pa_opcode.h: - refactoring in last optimizations
         * src/main/untaint.C: speed: there's no \n chars in output            ($a[...], $a(...), $.a[...], $.a(...)). a bit less optimizations
           [normally], so no need to optimize them they could be retrived            now but code is much easy and it is ready for further
           from databases, though. but 1. should be replaced 2. if not            improvements.
           optimized, no harm done  
   2009-05-27  misha
         * www/htdocs/: _bug.html, _bug.txt: just test:  
           file::load[text;http:// $.text utf-8 signature, line ends OK          * src/: types/pa_junction.h, types/pa_vjunction.C,
           http://i2/tasks/edit/?id=4629476859594276758            types/pa_vjunction.h, types/pa_vmethod_frame.h, main/execute.C: -
             changed in destructing junctions
         * src/main/pa_exec.C: bugfix: waitpid could be interrupted --  
           ^file::exec/cgi could return invalid status & zombie child can          * src/main/: pa_charset.C, pa_string.C: - more safe creation on
           remain for short period until process exists [very bad in            String:Body
           mod_parser3] http://i2/tasks/edit/?id=4629451867179521923  
   2009-05-26  misha
         * src/lib/smtp/smtp.h: bugfix: SMTP buffer overflow could allow  
           malicious SMTP server to attack as by returning too long status          * src/: main/pa_common.C, main/pa_http.C, include/pa_common.h: -
           responses http://i2/tasks/edit/?id=4629448401140924947            one method detect_charset was deleted - bug was fixed in this
             method (error while detecting charset in content_type withot last
 2004-02-26  paf            ';')
   
         * operators.txt: feature: ^process...{CODE}[now has options] which          * src/types/: pa_vform.C, pa_vform.h: - detect post charset only
           are         $.main[to what to rename @main]         $.file[file,            once
           from which (user says) goes that CODE]         $.lineno(line  
           number in that file, where CODE starts. may be negative)  2009-05-25  misha
   
         * operators.txt, src/classes/op.C, src/include/pa_request.h,          * src/classes/file.C: - bugfix: file::exec didn't work after
           src/main/compile.C, src/main/compile_tools.h,            optimizing of helper_length
           src/main/pa_request.C, www/htdocs/_bug.html, www/htdocs/_bug.p,  
           www/htdocs/_bug.xsl: feature: ^process...{CODE}[now has options]  2009-05-24  misha
           which are         $.main[to what to rename @main]  
           $.file[file, from which (user says) goes that CODE]          * src/main/compile_tools.h: - $a[$b.c] and $a[$b.$c] optimisations
           $.lineno(line number in that file, where CODE starts. may be            were added - little refactoring
           negative)  
           * src/main/execute.C: - core while printing in debug log
 2004-02-25  paf            non-printable values was fixed - $a[$b.c] and $a[$b.$c]
             optimisations were added
         * etc/parser3.charsets/Makefile.am: bugfix: @sysconfdir@ used [were  
           old @charsetsdir@ recently erased from configure.in]          * src/include/pa_opcode.h: - new opcodes for $a[$b.c] and $a[$b.$c]
             were added
         * src/classes/hash.C: feature: ^hash::sql{one colum result} now  
           produces hash of column=>1  2009-05-23  misha
   
         * www/htdocs/: _bug.html, _bug.xsl: xhtml: &#9; as resutl of          * src/: lib/cord/cordbscs.c, lib/cord/cordxtra.c,
           <xsl:attribute>[tab]  is OK            lib/cord/include/cord.h, include/pa_string.h, main/untaint.C: -
             CORD_cat optimization
         * src/lib/smtp/smtp.h: beauty: couple of #ifdef-s to compile even  
           with incomplete errno constants set          * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C:
             - call constr optimisation under separate define now
 2004-02-24  paf  
           * src/main/: compile_tools.h, execute.C: - bugfix: $a[] $b[$a] --
         * src/lib/smtp/smtp.C: smtp on unix: authors of lib/smtp never read            in $b should be string, not void
           "man select"  
           * src/main/compile.y: - little fix for rem-cut optimisation
         * src/main/pa_os.C: beauty: <0 better then ==-1  
           * src/: include/pa_opcode.h, main/compile_tools.C,
         * src/lib/smtp/comms.C: smtp on unix: steps to work on unix            main/compile_tools.h, main/execute.C: - optimisations for
             $a[^b[...]], $.a[^b[...]], $a(^b[...]) and $.a(^b[...])
         * src/lib/smtp/: smtp.C: smtp on unix: steps to work on unix  
           * INSTALL: - description of some #defined were added
         * src/classes/Makefile.am: smtp on unix: steps to work on unix  
           * src/types/: pa_vfile.C, pa_vfile.h: - fill .'text' field only
         * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp on            before 1st access (memory usage is reduced if don't access to
           unix: steps to work on unix [extracted 'to']            .text field)
   
         * src/classes/mail.C: smtp on unix: steps to work on unix          * src/include/pa_array.h: - array grows step now not static (it
             reduces numbers of reallocs)
         * src/lib/smtp/smtp.C: smtp on unix: compiled on win32  
   2009-05-20  misha
         * src/: lib/smtp/Makefile.am, lib/smtp/comms.C, lib/smtp/smtp.C,  
           lib/smtp/smtp.h, targets/cgi/Makefile.am: started porting smtp to          * src/include/pa_opcode.h: - bytecode optimization for $a(1),
           unix [testing on solaris]            $.b(2), $c[d] and $.e[f] was added
   
 2004-02-20  paf          * src/main/: compile.y, compile_tools.C, compile_tools.h,
             execute.C: - bytecode optimization for $a(1), $.b(2), $c[d] and
         * src/classes/xdoc.C, www/htdocs/_bug.xsl: beauty: ugly code            $.e[f] was added
           removed, thanks to egr for pointing that out  
           * src/main/execute.C: - debug printing moved in defines
         * www/htdocs/: _bug.html, _bug.xsl: bugfix: <tag  
           attr="&#digital_entity;" bug fixed again [same solution,          * src/main/: compile.y, compile_tools.C, compile_tools.h: - bugfix
           mistanenly removed one line]            and little refactoring for OP_GET_OBJECT_ELEMENT +
             OP_GET_OBJECT_VAR_ELEMENT optimisation
         * src/classes/xdoc.C: bugfix: <tag attr="&#digital_entity;" bug  
           fixed again [same solution, mistanenly removed one line]  2009-05-19  misha
   
 2004-02-19  paf          * src/main/: compile.y, compile_tools.C, compile_tools.h,
             execute.C: - $a.$b & ^a.$b bytecode optimisation
         * src/: classes/date.C, classes/image.C, types/pa_vdate.h: feature:  
           date::create from bad datetime in spring daylightsaving hole now          * src/include/pa_opcode.h: - new opcodes were added (for $a.$b &
           OK for all platforms [on some platforms it failed]            ^a.$b optimisation)
   
         * src/classes/date.C, src/classes/image.C, www/htdocs/_bug.html:          * src/main/compile.y: - compiler now generate new opcodes:
           beauty: date::create[bad date time in daylightsaving hole] now            OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE for $a.b and
           throws error            ^a.b - compiler now cut off ^rem{ with all content ; any number
             of params }
         * src/classes/date.C: comment: mistake fixed  
           * src/main/execute.C: - code for handle new opcodes
 2004-02-18  paf            OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE was added
   
         * www/htdocs/_bug.html: beauty: coder can override save/file          * src/main/: compile_tools.C, compile_tools.h: - new parameter was
           encoding by specifying it in xsl:output or in save/file            added for LA2V and LA2S
           hash-options  
           * src/include/pa_opcode.h: - new defines which can be used for
         * www/htdocs/: _bug.html, _bug.xsl: beauty: coder can override            disable some bytecode optimisation and new opcodes were added
           save/file encoding by specifying it in xsl:output or in save/file  
           hash-options  2009-05-17  misha
   
         * www/htdocs/: _bug.html, _bug.xsl: beauty: xdoc.string now          * src/lib/cord/cordxtra.c: - bugfix.
           renderes in $request:charset, but in header puts  
           $response:charset todo: make that default only so that coder          * tests/212.html: - .size[] and .study_size[] were added to tests
           could override that  
           * operators.txt: - info about regex class was added
         * www/htdocs/: _bug.html: beauty: xdoc.string now renderes in  
           $request:charset, but in header puts $response:charset todo: make          * tests/212.html: - tests for regex class were added
           that default only so that coder could override that  
   2009-05-16  misha
         * src/classes/xdoc.C, src/include/pa_charset.h,  
           www/htdocs/_bug.html, www/htdocs/_bug.xsl: beauty: xdoc.string          * buildall-with-xml, buildall-without-xml: - moving from gc6.8 to
           now renderes in $request:charset, but in header puts            gc7.1
           $response:charset todo: make that default only so that coder  
           could override that          * tests/022.html: - test for ^file:list[path;] (empty second param)
             was added
         * src/classes/xdoc.C, www/htdocs/_bug.xsl: beauty: xhtml  
           doctype-public/system forcly turns off omit-xml-declaration          * src/classes/file.C: - bugfix: ^file:list[path;] [empty second
             param) should work
         * src/classes/xdoc.C, www/htdocs/_bug.html, www/htdocs/_bug.xsl:  
           feature: reimplemented xhtml output, see /.xsl for sample  2009-05-15  misha
   
 2004-02-17  paf          * src/classes/table.C: - automatically disable stringstream usage
             on freebsd4
         * src/classes/xdoc.C: beauty: needless helper class removed  
           * src/lib/cord/cordxtra.c: - var decl should be at the beginning of
         * src/classes/xdoc.C: beauty: method=html outputxmlbuffer not            scope
           copied extra time  
           * tests/211.html: - test with different types of access to hash was
         * src/classes/xdoc.C: bugfound: meta again, now somewhere in xhtml            added
           part of libxml  
           * tests/210.html: - test which checks for loosing tainting in
         * src/classes/xdoc.C: new: xhtml now works [libxslt prevented            hash's keys was added
           libxml to do the work] <xsl:output        method="html"  
           doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"          * tests/208.html: - some parser work added. or stime == 0 %-)
           doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"  
           />          * src/lib/cord/cordbscs.c: - little hack was added to cord
   
         * src/classes/xdoc.C: beauty: no <meta ... charset generated          * src/lib/cord/cordxtra.c: - cacheing of cord chars was added
   
         * src/types/pa_vxdoc.h: bugfix: ^xdoc::transform [note double :]          * src/include/pa_version.h, configure.in: - moko have made a lot of
           caused assertion            optimisations for increacing version number more dramatically :)
   
         * src/classes/hash.C: bugfix: ^hash.add[$hash] ^hash.sub[$hash]          * src/classes/date.C: - little refactoring: use constructor which
           could hang. now such add does nothing, sub clears $hash            accepts formated string
   
         * src/main/untaint.C: bugfix: one last char prior to "spaces<" were          * src/: include/pa_string.h, main/pa_string.C: - String constructor
           not made quoted-printable            which can print formatted string was added
   
         * src/main/pa_uue.C: bugfix: uuencoded finish char adding violated  2009-05-14  misha
           string invariant  
           * src/include/pa_string.h: - type was fixed
 2004-02-16  paf  
           * src/: classes/hashfile.C, classes/op.C,
         * src/main/pa_globals.C: bugfix: xml errors copy from library now            include/pa_cache_managers.h, include/pa_charset.h,
           cleared [were not cleared properly]            include/pa_charsets.h, include/pa_common.h, include/pa_hash.h,
             include/pa_request.h, include/pa_sql_driver_manager.h,
 2004-02-13  paf            include/pa_string.h, include/pa_stylesheet_manager.h,
             include/pa_table.h, include/pa_xml_io.h, main/pa_charset.C,
         * src/include/pa_version.h: prerelease            main/pa_charsets.C, main/pa_string.C,
             main/pa_stylesheet_connection.C, types/pa_value.h,
         * src/main/pa_stylesheet_connection.C: change: .xsl.stamp now not            types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
           used, introducing dependencies timestamp check            types/pa_vobject.C, types/pa_vstateless_class.C,
             types/pa_vstateless_class.h: - hash_code caching was implemented
         * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,            (seaches should be faster now)
           include/pa_xml_io.h, main/Makefile.am, main/compile.tab.C,  
           main/main.vcproj, main/pa_globals.C, main/pa_xml_io.C: change:          * src/: classes/file.C, classes/hash.C, classes/image.C,
           .xsl.stamp now not used, introducing dependencies timestamp check            classes/string.C, classes/table.C, include/pa_string.h,
             main/pa_charset.C, main/pa_http.C, main/pa_request.C,
         * configure.in, bin/auto.p.dist.in: auto.p: @conf made relative            types/pa_vconsole.h, types/pa_vcookie.C, types/pa_venv.C,
             types/pa_vform.C, types/pa_vhashfile.C, types/pa_vregex.C,
 2004-02-12  paf            types/pa_vrequest.C: - String constructors don't have that stupid
             true/false param which means 'tainted'. they accept lang instead.
         * src/types/pa_vform.C: bugfix: empty values[recently allowed]  
           ruined empty <input type=file> submits. parser thought there were          * src/types/pa_vmethod_frame.h: - bugfix: taint/untaint didn't work
           nameless empty file and $form:field got value of type 'file'            with OPTIMIZE_RESULT
   
         * INSTALL: --without-threads          * src/types/: pa_method.h, pa_vstateless_class.C: - less warnings
             wher OPTIMIZE_RESULT and OPTIMIZE_CALL not defined
         * src/include/pa_sapi.h: 2004  
   2009-05-13  misha
 2004-02-11  paf  
           * src/: types/pa_method.h, types/pa_vcookie.C, types/pa_vdouble.h,
         * src/: classes/classes.C, classes/classes.h, classes/date.C,            types/pa_venv.C, types/pa_vhashfile.C, types/pa_vint.h,
           classes/double.C, classes/file.C, classes/form.C, classes/hash.C,            types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
           classes/hashfile.C, classes/image.C, classes/int.C,            types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
           classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,            types/pa_vstateless_class.C, main/execute.C, main/pa_charset.C,
           classes/response.C, classes/string.C, classes/table.C,            main/pa_common.C, main/pa_request.C, main/pa_string.C,
           classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,            include/pa_string.h, classes/date.C, classes/file.C,
           include/pa_array.h, include/pa_cache_managers.h,            classes/hash.C, classes/image.C, classes/string.C,
           include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,            classes/table.C, classes/xdoc.C: - result optimisation -
           include/pa_config_fixed.h, include/pa_config_includes.h,            helper_length parameter removed from string constructors
           include/pa_dictionary.h, include/pa_dir.h,  
           include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,  2009-05-11  misha
           include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,  
           include/pa_operation.h, include/pa_os.h, include/pa_request.h,          * tests/209.html: - tests for ^hash::create[hash] were added
           include/pa_request_charsets.h, include/pa_request_info.h,  
           include/pa_socks.h, include/pa_sql_connection.h,          * tests/208.html: - tests for $status:rusage, $status:memory,
           include/pa_sql_driver_manager.h, include/pa_stack.h,            ^memory:compact[] were added
           include/pa_string.h, include/pa_stylesheet_connection.h,  
           include/pa_stylesheet_manager.h, include/pa_table.h,          * tests/207.html: -tests for abs, sign, trunc, frac, exp, log,
           include/pa_threads.h, include/pa_types.h, include/pa_uue.h,            log10 were added
           include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,  
           lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,          * tests/206.html: - test for try with finally was added
           lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,  
           lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,  2009-05-10  misha
           main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,  
           main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,          * tests/205.html: - test for ^file::create[...] was added
           main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,  
           main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,          * tests/204.html: - test for ^response:clear[] was added
           main/pa_os.C, main/pa_request.C, main/pa_socks.C,  
           main/pa_sql_driver_manager.C, main/pa_string.C,          * tests/038.html: - tests for trigonometric functions were added
           main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,  
           main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,          * tests/014.html: - tests for ^hash.containts and ^hash.delete were
           sql/pa_sql_driver.h, targets/cgi/pa_threads.C,            added - more tests for .add, .sub, .union, .intersects and
           targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,            .intersections
           types/pa_junction.h, types/pa_method.h, types/pa_value.C,  
           types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,          * tests/065.html: - test for ^file:dirname was added
           types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,  
           types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,          * tests/030.html: - test for $cookie:fields was added
           types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,  
           types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,          * tests/203.html: - test for ^h._keys[column name] was added
           types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,  
           types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,          * tests/201.html: - tests for .trim were added
           types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,  
           types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,          * tests/202.html: - tests for last-day,
           types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,            date:calendar[type](YYYY;MM;DD) were added
           types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,  
           types/pa_vresponse.h, types/pa_vstateless_class.C,          * tests/200.html: - tests for .sort(), .sort{}, .flip[] and
           types/pa_vstateless_class.h, types/pa_vstateless_object.h,            .offset[type](N) were added
           types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,  
           types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,          * tests/185.html: - more tests for .left(N), .right(N), .min(N;M)
           types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,            and .pos[c](N) were added
           types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,  
           types/pa_wcontext.h, types/pa_wwrapper.h: 2004          * tests/141.html: - test for math:sha1 was added
   
         * src/main/pa_globals.C: beauty: typo caused gc.log warnings with          * tests/063.html: - tests for .mod(N), .inc[] & .dec[] were added
           debug version of gc.dll  
   2009-05-09  misha
         * src/: classes/classes.vcproj, lib/gd/gd.vcproj,  
           lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,          * src/main/compile.y: - rollback
           lib/pcre/pcre_parser_ctype.vcproj, lib/sdbm/sdbm.vcproj,  
           lib/smtp/smtp.vcproj, main/main.vcproj, main/pa_globals.C,  2009-05-05  misha
           targets/cgi/parser3.C, targets/cgi/parser3.vcproj,  
           targets/isapi/parser3isapi.vcproj, types/types.vcproj: migrated          * src/main/pa_exec.C: - little optimisation: somewhere length() was
           to latest libxml[2.6.5] and libgdome[1.1.2] simplified lib build            replaced by is_empty()
           processes  
           * src/: include/pa_string.h, main/pa_charset.C: - little
         * src/: classes/classes.vcproj, lib/gd/gd.vcproj, main/main.vcproj,            optimisation: somewhere length() was replaced by is_empty()
           main/pa_globals.C, targets/cgi/parser3.vcproj,  
           targets/isapi/parser3isapi.vcproj, types/types.vcproj: continued          * src/classes/table.C: - little optimisation: somewhere length()
           changes to reflect libxml xsl new folders            was replaced by is_empty()
   
         * src/: classes/classes.vcproj, lib/gd/gd.vcproj,          * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
           lib/smtp/smtp.vcproj, main/main.vcproj,            classes/op.C, classes/table.C, main/pa_exception.C: - little
           targets/cgi/parser3.vcproj, types/types.vcproj: continued changes            optimisation: somewhere length() was replaced by is_empty()
           to reflect libxml xsl new folders  
   2009-05-04  misha
         * src/: classes/classes.vcproj, lib/gd/gd.vcproj,  
           lib/smtp/smtp.vcproj, main/main.vcproj,          * src/: types/pa_method.h, types/pa_vstateless_class.C,
           targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,            types/pa_vstateless_class.h, main/execute.C,
           types/types.vcproj: started changes to reflect libxml xsl new            include/pa_request.h, classes/hash.C, classes/op.C,
           folders            classes/table.C: - more optimisations were added: some operators
             don't switch write context anylonger
         * ChangeLog, parser3.sln, src/classes/classes.vcproj,  
           src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,  2009-05-01  misha
           src/main/compile.tab.C, src/main/main.vcproj,  
           src/main/pa_globals.C, src/targets/cgi/parser3.vcproj,          * src/main/compile.y: - slightly more opcode optimisations for
           src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj,            WITH_WRITE + VALUE + GET_ELEMENT -> OP_VALUE__GET_ELEMENT
           www/htdocs/.htaccess: started changes to reflect libxml xsl new  
           folders          * src/main/execute.C: - simplifying process for getters
   
 2004-02-10  paf  2009-04-30  misha
   
         * INSTALL: critical: libxslt1.1.2 wanted at least libxml2.6.3 to          * tests/: 198.html, 199.html: - new line fixes (should be 0x0A)
           compile. recommened latest libxml up to date  
           * tests/results/199.processed: - test for checking $result into
         * INSTALL: critical: prior to 1.0.30 had bug: "a segfault on            ^rem was added
           pattern compilation errors", on which spent 4 hours worktime. use  
           versions higher than that. recommended now latest up to date          * tests/199.html: - test for checking $result into ^rem was added
   
 2004-02-06  paf          * tests/: 022.html, 096.html: - þsort after :list was asses (on
             some OS it returns list in different order)
         * src/main/: pa_sql_driver_manager.C, pa_stylesheet_manager.C:  
           beauty: unified destructing style          * src/: include/pa_array.h, include/pa_request.h,
             include/pa_stack.h, main/execute.C, types/pa_vmethod_frame.h: -
         * src/main/untaint.C: beauty: removed old def/ifdef            changes in stack impl - get_element() optimisation: 3rd param
             removed - bugfix: problems with reading empty input param -
         * src/main/untaint.C: beauty: coredump @unknown untaint language            defines SAVE_CONTEXT and RESTORE_CONTEXT were added and used
           now  
           * tests/results/198.processed: - test for reading empty local var
 2004-02-03  paf            was added
   
         * src/: classes/image.C, main/pa_exec.C, main/pa_memory.C,          * tests/198.html: - test for reading empty local var was added
           targets/isapi/parser3isapi.C, types/pa_value.C,  
           types/pa_vcookie.C: beauty: %u is more simple=proper for size_t  2009-04-29  misha
           then %ld/%lu  
           * src/main/compile.y: - bugfix: couldn't compile because
         * src/main/pa_common.C: typo: %l -> %u            OP_VALUE__GET_ELEMENT should be unde #ifdef
   
         * src/classes/xdoc.C: bugfix: libxml: FOR UTF-8 TOO russian letters          * src/: include/pa_array.h, include/pa_opcode.h,
           in attributes or documents-results of transform now not &#04xx;            include/pa_request.h, main/compile.y, main/execute.C,
             main/pa_request.C, types/pa_vmethod_frame.C,
         * src/classes/xnode.C: memleaks found: not fixed yet. todo            types/pa_vmethod_frame.h: - we can work without opcode
             OP_STORE_PARAM, so it was removed
         * src/main/pa_charset.C: bugfix: forgot to undo some  
   2009-04-28  misha
         * src/main/pa_charset.C: beauty: uncomment  
           PA_PATCHED_LIBXML_BACKWARD to link with old patched libxml          * src/: include/pa_opcode.h, main/compile.y, main/execute.C: -
           libraries            op-codes optimisation:   1. VALUE+GET_CLASS=>VALUE_GET_CLASS   2.
             WITH_READ+VALUE+GET_ELEMENT=>VALUE__GET_ELEMENT (not all yet)
 2004-02-02  paf            3. WITH_READ+VALUE+GET_ELEMENT__WRITE=>VALUE__GET_ELEMENT__WRITE
             4.
         * src/types/pa_vcookie.C: bugfix: erasing cookie: params now output            WITH_READ+VALUE+GET_ELEMENT_OR_OPERATOR=>VALUE__GET_ELEMENT_OR_OPERATOR
           $cookie:example[    $.value[value]  $.path[/there/] ]  
           * src/main/compile_tools.h: - new stuff for op-codes optimisation
           $cookie:example[        $.value[]       $.expires[session]  
           $.path[/there/]         $.domain[test.com] ]          * src/: main/pa_string.C, classes/string.C: - !length() =>
             is_empty()
         * src/types/pa_vform.C: bugfix: empty values with  
           enctype=multipart/form-data now produce entries in $form:tables  2009-04-27  misha
           <form method=post enctype=multipart/form-data> <input type=hidden  
           name=a> <input type=hidden name=b>          * src/types/pa_vregex.h: - back explicit vars initialisation
   
           <input type=submit> </form> $k[^form:fields._keys[]] ^eval($k)  2009-04-24  misha
           <hr> <pre>$request:body  
           * src/classes/string.C: - ups. typo fixed
 2004-01-30  paf  
           * src/main/execute.C: - more replacements '*new VBool' to
         * src/classes/xdoc.C: bugfix: libxml: russian letters in attributes            'VBool::get' - checks for ^break[], ^continue[] and
           or documents-results of transform now not &#04xx;            parser.interrupted were optimised
   
         * src/classes/date.C: bugfix: ^date::create[invalid fields now          * src/classes/string.C: - number of params.count() calls was
           produce exception.            slightly reduced
   
         * src/: classes/date.C, include/pa_string.h, main/pa_string.C:  2009-04-23  misha
           bugfix: ^date::create[invalid fields now produce exception.  
           * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
         * ChangeLog, src/classes/date.C, www/htdocs/.htaccess: bugfix:            make it x64 friendly
           ^date::create[invalid year] now produces exception. todo: check  
           other fields          * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
             parser is x64 friendly now
 2004-01-29  paf  
   2009-04-22  misha
         * src/include/pa_memory.h: typo error  
           * src/types/pa_vhashfile.C: - coder friendly exception about
         * src/include/pa_memory.h: bugfix: [potential] strdup copied one            exceeding record size was added
           more byte then specified, then zeroed it << useless and  
           potentially harmful(could gpf)          * src/classes/file.C: - use vregex object instead of direct calls
             methods from pcre lib
 2004-01-22  paf  
           * src/: classes/file.C, include/pa_string.h, main/pa_string.C,
         * src/classes/xdoc.C: bugfix: when stylesheet contains error, gpf            classes/string.C: - use vregex object instead of direct calls
             methods from pcre lib
         * src/main/untaint.C: merged: bugfix from 3.1.1 on whitespace  
           optimization          * src/: include/pa_common.h, main/pa_common.C: - method
             print_pcre_exec_error_text was moved to class vregex
         * src/main/untaint.C: bugfix: whitespace now optimized properly  
           [were bug: ^taint[1 & 2]="1 &2"          * src/classes/: Makefile.am, classes.vcproj, regex.C: - class regex
             was added
         * src/main/pa_globals.C: beauty: bigger buffer for xml-related  
           errors          * src/types/: Makefile.am, pa_vregex.C, pa_vregex.h, types.vcproj:
             - class vregex was added
         * src/main/pa_common.C: merged: bugfix from 3.1.1 on memory  
           overflow  2009-04-21  misha
   
         * src/main/pa_common.C: bugfix: buffer overflow * in libxml&xsl          * buildall-with-xml, buildall-without-xml: - pcre 7.8 -> pcre 7.9
           error-reporting code * in parser-error reporting code [when no  
           @unhandled_exception defined]          * src/: types/pa_junction.h, types/pa_value.C,
             types/pa_vjunction.C, types/pa_vjunction.h, types/pa_wcontext.C,
           fixed in one place: my *snprintf override            types/pa_wcontext.h, main/execute.C, classes/op.C: -
             junction-optimisation (destructors)
 2004-01-13  paf  
           * src/include/pa_array.h: - free under if now
         * operators.txt: typo erro  
   2009-04-19  misha
 2003-12-25  paf  
           * src/main/untaint.C: - ^taint[js] now escapes \x0D as well
         * src/main/pa_common.C: bugfix: ^file::load[binary;http:// now not  
           garbled  [pieces after zero bytes were removed]  2009-04-18  misha
   
 2003-12-22  paf          * src/include/pa_version.h:
             :q :
         * src/include/Makefile.am: bugfix: removed from dist:  
           src/include/pa_config_auto.h which were configured for            CV:
           make-dist-platform and badly updated proper config file in target            ----------------------------------------------------------------------
           [when .tar used for updating existing source tree]  
           * src/types/: pa_vjunction.h, pa_vstateless_class.C: - little
         * ChangeLog, operators.txt, src/classes/op.C,            refactoring
           src/include/pa_sql_connection.h,  
           src/include/pa_sql_driver_manager.h,          * src/: include/pa_array.h, include/pa_hash.h,
           src/main/pa_sql_driver_manager.C, src/sql/pa_sql_driver.h,            types/pa_vmethod_frame.h: - destructors under #ifdef now
           www/htdocs/.htaccess: feature: sql introducing ability to  
           transcode charsets          * src/include/pa_memory.h: - define for using destructors was added
   
 2003-12-19  paf          * src/: types/pa_method.h, types/pa_vstateless_class.C,
             main/execute.C: - some junctions will be cached now
         * src/main/pa_sql_driver_manager.C: beauty: more straighforward  
           error message          * src/include/pa_hash.h: - hash destructor frees pairs now
   
         * src/main/pa_charset.C: bugfix: memory for charsethandler          * src/include/pa_array.h: - inline was added to destructor
           structure for libxml now allocated properly  
           * src/types/pa_method.h: - comment was changed
 2003-12-17  paf  
   2009-04-17  misha
         * src/types/pa_vfile.C: beauty: removed outdated cast  
           * src/: include/pa_array.h, include/pa_hash.h,
         * src/main/pa_common.C: bugfix: empty http response caused gpf            types/pa_vmethod_frame.h: - destructors were added
   
         * src/include/pa_string.h: bugfix: removed too strong a assert          * src/types/: pa_method.h, pa_vmethod_frame.h: - write_to_result
             renamed to always_use_result
         * src/main/pa_globals.C: bugfix: removed false warning [warning:  
           unreported xmlGenericErrors]          * src/main/: compile.y, compile_tools.h: - rollback changes in
             compiler: full backward compatibility is better
 2003-12-15  paf  
           * src/types/pa_vmethod_frame.h: - set flag write_to_result if find
         * src/classes/xdoc.C: bugfix: taint uri under ^xdoc::create{now            result in var's hash
           works}  
           * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
 2003-12-11  paf            optimisation in method_frame
   
         * operators.txt, src/types/pa_vstatus.C:     !$status:pid process          * src/include/pa_array.h: - optimisation in array (allocate
           id            elements only when needed)
               !$status:tid thread id  
           * src/types/pa_vresponse.C: - check for $response:headers field
         * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,            before looking at custom fields
           main/pa_globals.C, main/pa_request.C, types/pa_vstatus.C:  
           bugfix(solaris): removed dependency on object initialization          * src/types/pa_vmethod_frame.h: - if flag write_to_result was set,
           order [one more place]            not needed to check existance var with name 'result' in var's
             hash
         * src/: classes/file.C, classes/mail.C, classes/op.C,  
           classes/xdoc.C, main/pa_request.C, types/pa_vimage.C,          * src/main/compile.y: - compiler was changed: now it detects
           types/pa_vmath.C, types/pa_vstatus.C: beauty cancel: gcc does not            writings to $result and set flag writo_to_result in method
           understand that  
           * src/classes/string.C: - little optimisation: no needed to write
         * src/: classes/file.C, classes/mail.C, classes/op.C,            number with lang
           classes/xdoc.C, include/pa_cache_managers.h,  
           include/pa_sql_connection.h, include/pa_sql_driver_manager.h,          * src/main/pa_charset.C: - methods readChar and skipChar which is
           include/pa_stylesheet_manager.h, main/pa_request.C,            used for read utf8-strings were renamed - is_escaped was renamed
           main/pa_stylesheet_manager.C, types/pa_vimage.C,            to isEscaped (to the same name convention)
           types/pa_vmath.C, types/pa_vstatus.C: beauty: removed redundant  
           ctor call [relying on implicit String::Body(cstr) call]          * src/: types/pa_method.h, main/compile_tools.h: - flag
             write_to_result added. compiler get this info from code.
         * src/main/: pa_cache_managers.C, pa_sql_driver_manager.C,  
           pa_stylesheet_manager.C: bugfix(solaris): removed dependency on  2009-04-16  misha
           object initialization order [two places]  
           * src/types/: pa_wcontext.h, pa_vmethod_frame.h: - create new
 2003-12-10  paf            String only before 1st write
   
         * src/include/pa_sql_connection.h, www/htdocs/.htaccess: bugfix:          * src/include/pa_string.h: - not needed template removed
           $status:sql.cache back  << time now ok  
           * src/: types/pa_vbool.h, types/pa_vfile.h, types/pa_vimage.C,
         * operators.txt, src/main/pa_sql_driver_manager.C,            types/pa_vjunction.C, types/pa_vproperty.C,
           src/main/pa_stylesheet_manager.C: $status:stylesheet.cache back            types/pa_vstateless_class.C, types/pa_vxdoc.C, types/pa_vxnode.C,
           operational            main/pa_request.C, classes/bool.C, classes/double.C,
             classes/hash.C, classes/int.C, classes/string.C, classes/table.C,
         * ChangeLog, operators.txt, src/classes/xdoc.C,            classes/void.C, classes/xnode.C: - bool optimisation (use only 2
           src/include/pa_charset.h, src/include/pa_sql_connection.h,            bool objects)
           src/main/pa_charset.C, src/main/pa_sql_driver_manager.C,  
           src/main/pa_string.C, src/types/pa_vxdoc.h, www/htdocs/.htaccess:  2009-04-15  misha
           $status:sql.cache back operational  
           * src/lib/cord/cordxtra.c: - more optimisation
 2003-12-02  paf  
           * src/: include/pa_string.h, main/untaint.C: - String::append
         * src/types/pa_vmail.C: bugfix:            optimisation
           ^mail:send[$.file[$.value[>>xxxx<<]] now untaints properly [were:  
           as-is forced]          * src/include/pa_hash.h: - get_by_hash_code added (it works faster
             then get and can sometime be used)
         * src/main/pa_xml_io.C: bugfix: on some platforms one can't throw  
           exceptions out of libxml callbacks: reimplemented error handling          * src/main/pa_string.C: - String::length optimisation
           of http://localhost, parser://method and safemode check callbacks  
           * src/main/pa_charset.C: - rollback changeing readChar to skipChar.
         * src/main/pa_string.C: bugfix: SPARC gpf on %4!=0 address int ref            these methods read different strings
           [merged from HEAD]  
           * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
         * src/classes/image.C: nothing: comment removed            fresult_initial_void removed + some optimisation - if $result
             defined we don't write to context anymore
         * src/main/pa_string.C: bugfix: sparc gpf on reading %4!=0  
           addresses to int          * src/main/pa_charset.C: - readChar => skipChar (in this place we
             need just skip char)
 2003-12-01  paf  
           * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
         * src/main/pa_xml_io.C: bugfix: typo            types/pa_vrequest.C, types/pa_vtable.C, main/execute.C,
             classes/table.C: - VVoid::get() => new VVoid (one void-instance)
         * src/main/pa_globals.C: bugfix: win32: compile prob  
           * src/types/pa_vvoid.h: - added get() method for retreave one
         * src/classes/xdoc.C: bugfix: typo            instance
   
         * src/main/pa_xml_io.C: todo: safe mode check not to throw  2009-04-11  misha
           exception  
           * tests/196.html: - tests for $cookie:CLASS_NAME & Co were added
         * src/main/pa_xml_io.C: bugfix: http://localhost typo error  
           * tests/197.html: - test for parser://test in xml was added
 2003-11-28  paf  
           * src/classes/string.C: - small optimisation
         * src/main/pa_xml_io.C: installed safe-mode checker as filter of  
           all xml documents read          * src/types/: pa_venv.C, pa_venv.h, pa_vconsole.h: - small
             optimisation
         * src/main/pa_xml_io.C: http://localhost/ now checked for safe mode  
   2009-04-10  misha
         * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,  
           include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:          * buildall-with-xml, buildall-without-xml: - moving from pcre-7.7
           replaced original open mech of xdoc::create & co to use libxml            to pcre-7.8
           open, so that this would work for root document todo: safe mode  
           checks to libxml: ideally to some 1 point          * src/types/pa_vclass.C: - normalizing todo-comments: '@todo' now
   
         * src/main/pa_xml_io.C: comment          * src/types/: pa_vcookie.C, pa_vcookie.h: - $cookie:CLASS_NAME was
             added
         * operators.txt, src/main/pa_xml_io.C: leading / in  
           http://parser[abscent params]          * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:CLASS and
             $request:CLASS_NAME were added
         * operators.txt, src/include/pa_request.h, src/main/pa_xml_io.C:  
           works.  todo: maybe replace original open mech of xdoc::create &          * src/types/pa_vconsole.h: - $console:CLASS and $console:CLASS_NAME
           co to use libxml open, so that this would work for root document            were added
   
           $xdoc[^xdoc::create{<?xml version="1.0"?> <!DOCTYPE test SYSTEM          * src/types/: pa_venv.C, pa_venv.h: - $env:CLASS and
           "parser://method/params/here"> <test>   &test^; </test> }]            $env:CLASS_NAME were added
   
           ^taint[^xdoc.string[]]          * src/types/: pa_vmail.C, pa_vdate.h: - normalizing todo-comments:
             '@todo' now
           @method[param] <!ENTITY test  
           "test-entity-value+$form:user+$param!">          * src/targets/cgi/parser3.C: - size_t -> int for calming down
             compirer
 2003-11-27  paf  
           * src/main/pa_string.C: - little code cleanup
         * src/main/pa_xml_io.C: libxml: started parser://methodcall/params  
           * src/main/pa_common.C: - describe one more UTF-8 related error
         * src/classes/date.C: bugfix: typo error            during PCRE compile/execute
   
 2003-11-26  paf          * src/classes/: image.C, inet.C, string.C, xdoc.C, xnode.C: -
             normalizing todo-comments: '@todo' now
         * operators.txt, src/include/Makefile.am, src/include/pa_globals.h,  
           src/main/Makefile.am, src/main/main.vcproj,          * src/types/: pa_vmath.C, pa_vmath.h: - $math:E was added
           src/main/pa_globals.C, src/main/pa_request.C,  
           src/include/pa_xml_io.h, src/main/pa_xml_io.C: simplification:          * src/main/pa_charset.C: - type changed for making compiler happy
           xml errors to hash<thread_id,error> reorganization: xml io moved  
           to pa_xml_io.C/h  2009-03-10  misha
   
         * src/types/pa_value.h: warnings: --          * src/targets/cgi/parser3.C: make g++ happy with the type of argc
             in main()
 2003-11-25  paf  
   2009-02-01  misha
         * src/classes/table.C: bugfix: wrong sequence. [sadly no waring  
           whatever)          * src/main/pa_http.C: - bugfix: double CRLF before the end of
             boundary
         * src/classes/table.C: bugfix: a, c?x:y, z in gcc considered(?) as  
           a, (c?x:y, z)  2009-01-25  misha
   
         * src/main/untaint.C: bugfix: consequences of not reading this          * tests/: 194.html, 194_dir/194.p: - test for @GET[] was added
           comment: CORD_pos_chars_left /* Number of characters in cache.  
           <= 0 ==> none    */          * src/classes/file.C: - more changes for parsing different number
             of params for file::load
         * src/include/pa_array.h: removed needless checks  
           * tests/193.html: - tests for exception while base64-decode binary
 2003-11-24  paf            to string was added
   
         * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:          * tests/192.html: - tests for file::load with different number of
           removed limit: now $form:xxx can be accessed anytime, even in            options
           @auto/conf [and request/response:charset still can be changed  
           anytime]          * src/classes/math.C: - ups. forgot '+1'
   
         * src/main/pa_common.C: bugfix: ^file::load[binary;http://...]          * src/: classes/table.C, classes/file.C, include/pa_common.h,
           now not transcodes response body            include/pa_http.h, main/pa_xml_io.C, main/pa_common.C,
             main/pa_http.C: - ^file::load[...;http://...;] now can post files
         * operators.txt, src/types/pa_vxnode.C, src/types/pa_vxnode.h:            (new option $.encode[multipart-form/data] should be specified) -
           $xdoc[^xdoc::create[test]] $tn[^xdoc.createTextNode[text node            $.method[] option for file::load now is not case-sensitive
           value]] $dummy[^xdoc.firstChild.appendChild[$tn]]  
           $xdoc.firstChild.firstChild.nodeValue[different]          * src/: include/pa_string.h, main/untaint.C: - for file post the
           ^taint[^xdoc.string[]]            new taint language L_FILE_POST was added
   
         * src/: include/pa_hash.h, types/types.vcproj: linker HPUX nongnu          * src/: include/pa_random.h, main/Makefile.am, main/pa_random.C,
           workaround: static Hash::allocates -> static Hash_allocates            main/main.vcproj, classes/math.C, include/Makefile.am: - some
             stuff was moved to separate files
 2003-11-21  paf  
   2009-01-23  misha
         * Makefile.am, configure, configure.in, src/classes/Makefile.am,  
           src/include/pa_config_auto.h.in, src/targets/cgi/Makefile.am,          * src/classes/math.C: - little optimisation in ^math:sha1[] -
           src/types/Makefile.am: rearrange: gd&smtp moved to src/lib            spaces to tabs were converted
   
         * src/classes/classes.vcproj: rearrange: gd&smtp moved to src/lib  2009-01-12  misha
   
         * src/classes/mail.C: bugfix: typo          * src/main/pa_http.C: - value of $.method[] option force uppercased
             now
         * parser3.sln, src/classes/Makefile.am, src/lib/Makefile.am,  
           src/lib/gd/Makefile.am, src/lib/gd/gd.vcproj, src/lib/gd/gif.C,          * src/: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
           src/lib/gd/gif.h, src/lib/gd/gifio.C, src/lib/gd/mtables.h,            types/pa_vform.C, types/pa_vmail.C: - some constants changed
           src/lib/smtp/Makefile.am, src/lib/smtp/comms.C,            their names
           src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,  
           src/lib/smtp/smtp.vcproj: rearrange: gd&smtp moved to src/lib          * src/main/pa_common.C: - changes in formating
   
         * src/main/pa_exec.C: bug in safe mode          * src/: classes/file.C, main/pa_http.C: - some constants changed
             their names
         * src/include/Makefile.am: pa_xml_exception.h  
           * src/include/pa_http.h: - some spaces were converted to tabs
         * src/targets/isapi/parser3isapi.C: more warnings --  
           * src/include/pa_common.h: - some constants changed their names
 2003-11-20  paf  
           * src/classes/file.C: - fixed 4-th paramether for file::load -
         * src/: classes/math.C, classes/op.C, classes/string.C,            little code rewriting
           main/pa_charset.C, main/pa_dictionary.C, main/pa_string.C,  
           types/pa_value.C, main/pa_dir.C, main/pa_table.C: more warnings          * src/types/pa_vfile.C: - little code rewriting
           --  
           * src/: main/pa_common.C, main/pa_http.C, main/untaint.C,
         * src/: main/pa_charset.C, main/pa_string.C, types/pa_vxnode.C:            types/pa_value.h: - some formating changes
           more warnings --  
           * src/include/pa_common.h: - some formating spaces transformed to
         * src/classes/xdoc.C: more warnings --            tabs
   
         * src/classes/: date.C, image.C, xdoc.C: more warnings --          * src/classes/string.C: - exception while base64-decode binary to a
             string
         * src/: main/pa_sql_driver_manager.C, main/untaint.C,  
           types/pa_vcookie.C, types/pa_vmail.C: more warnings --  2009-01-11  misha
   
         * src/: classes/date.C, classes/file.C, classes/hash.C,          * configure.in: - version changed to 3.3.1b
           classes/image.C, classes/mail.C, classes/op.C, classes/string.C,  
           classes/table.C, include/pa_cache_managers.h,  2008-09-05  misha
           include/pa_stylesheet_connection.h, main/pa_request.C,  
           types/pa_vdate.h, types/pa_vhashfile.C, types/pa_vimage.h,          * src/lib/pcre/Makefile.am: file Makefile.am was added on branch
           types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: more warnings            release_3_3_0 on 2008-09-05 10:59:35 +0000
           --  
   2008-09-04  misha
         * src/main/: execute.C, pa_request.C: old forgotten todo: when  
           can't report problem (undefined @unhandled_exception) problem          * tests/: 130.html, 131.html: - these exceptions not typeless
           source string were not reported            anymore
   
         * src/: classes/classes.C, classes/classes.h, classes/date.C,          * src/classes/op.C: - exception with 'invalid taint language' not
           classes/double.C, classes/file.C, classes/form.C, classes/hash.C,            typeless anylonger
           classes/hashfile.C, classes/image.C, classes/int.C,  
           classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,          * src/classes/image.C: - some exceptions while operations with
           classes/response.C, classes/string.C, classes/table.C,            image not typeless anymore
           classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,  
           include/pa_array.h, include/pa_cache_managers.h,          * src/: types/pa_vhashfile.C, main/pa_common.C, classes/file.C,
           include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,            main/pa_exec.C, main/pa_http.C: - some exceptions while
           include/pa_config_fixed.h, include/pa_dictionary.h,            operations with files not typeless anymore
           include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,  
           include/pa_globals.h, include/pa_hash.h, include/pa_memory.h,          * src/: classes/date.C, types/pa_value.C, types/pa_vcookie.C,
           include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,            types/pa_vdate.h: - exceptions while checking date range not
           include/pa_request.h, include/pa_request_charsets.h,            typeless anymore
           include/pa_request_info.h, include/pa_sapi.h, include/pa_socks.h,  
           include/pa_sql_connection.h, include/pa_sql_driver_manager.h,          * src/include/pa_exception.h: - exception type string for invalid
           include/pa_stack.h, include/pa_string.h,            date range was added
           include/pa_stylesheet_connection.h,  
           include/pa_stylesheet_manager.h, include/pa_table.h,  2008-09-03  misha
           include/pa_threads.h, include/pa_types.h, include/pa_uue.h,  
           include/pa_xml_exception.h, lib/md5/pa_md5.h, lib/md5/pa_md5c.c,          * src/: classes/file.C, main/pa_string.C: - exception while pce
           lib/sdbm/apr_file_io.C, lib/sdbm/apr_strings.C, main/compile.C,            operations not typeless anymore
           main/compile_tools.C, main/compile_tools.h, main/execute.C,  
           main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,          * src/include/pa_exception.h: - exception type for pce operations
           main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,            was added
           main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,  
           main/pa_memory.C, main/pa_os.C, main/pa_pool.C,          * tests/: 191.html, 191_a.p, 191_b.p: - tests for calling .CLASS
           main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,            and .CLASS_NAME insite classes
           main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,  
           main/pa_uue.C, main/pa_xml_exception.C, main/untaint.C,          * src/classes/table.C: - don't save table header whiile
           sql/pa_sql_driver.h, targets/cgi/pa_threads.C,            ^table.save[append;filename] if file exists
           targets/cgi/parser3.C, targets/isapi/pa_threads.C,  
           targets/isapi/parser3isapi.C, types/pa_junction.h,  2008-09-02  misha
           types/pa_method.h, types/pa_value.C, types/pa_value.h,  
           types/pa_vbool.h, types/pa_vclass.C, types/pa_vclass.h,          * src/main/compile.y, src/main/compile_tools.h,
           types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,            src/types/pa_vstateless_class.h, src/main/compile.tab.C,
           types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,            tests/182_dir/a1.p, tests/182_dir/a2.p: - append option was
           types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,            renamed to partial and it login changed: we must mark class as
           types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,            partial for allow their modifications in future.
           types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,  
           types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,  2008-08-29  misha
           types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,  
           types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,          * tests/results/022.processed: - testing taint[regex] in mask for
           types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,            file:list
           types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,  
           types/pa_vresponse.h, types/pa_vstateless_class.C,          * tests/022.html: - testing taint[regex] in mask for file:list
           types/pa_vstateless_class.h, types/pa_vstateless_object.h,  
           types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,          * tests/022_dir/b[b].txt: - file for testing taint[regex] in mask
           types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,            for file:list was added
           types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,  
           types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,          * src/classes/file.C: - bugfix: ^taint[regex][] didn't works in
           types/pa_wcontext.h, types/pa_wwrapper.h: static const char *            file:list
           const IDENT  
   2008-08-26  misha
         * src/: include/pa_array.h, include/pa_pool.h,  
           include/pa_request.h, include/pa_string.h, include/pa_table.h,          * src/types/pa_vobject.C: - we must get .CLASS and .CLASS_NAME from
           main/compile_tools.h, main/pa_common.C, types/pa_vhash.h,            last derived object
           types/pa_wcontext.h: more warnings --  
           * src/classes/image.C: - many strings "image.format" replaced by
         * src/: classes/classes.vcproj, classes/date.C, classes/double.C,            IMAGE_FORMAT constant string - handle GPS info while parse exif -
           classes/file.C, classes/hash.C, classes/hashfile.C,            understand some more exif tags
           classes/image.C, classes/int.C, classes/mail.C, classes/math.C,  
           classes/memory.C, classes/op.C, classes/string.C,          * src/include/pa_exception.h: - string "image.format" was added
           classes/table.C, classes/xdoc.C, classes/xnode.C,  
           include/pa_config_includes.h, include/pa_operation.h,  2008-08-21  misha
           include/pa_sql_connection.h, include/pa_table.h,  
           include/pa_types.h, lib/ltdl/config_fixed.h,          * src/: main/pa_string.C, classes/file.C: - use method for print
           lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/maketables.c,            pcre_exec text error
           lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,  
           lib/sdbm/apr_file_io.C, main/compile.tab.C, main/execute.C,          * src/main/pa_common.C: - method for print pcre_exec text error was
           main/main.vcproj, main/pa_cache_managers.C, main/pa_charset.C,            added
           main/pa_common.C, main/pa_dir.C, main/pa_exec.C,  
           main/pa_globals.C, main/pa_os.C, main/pa_request.C,          * src/include/pa_common.h: - method declaration for print pcre_exec
           main/pa_string.C, main/pa_table.C, targets/cgi/parser3.vcproj,            text error was added
           targets/isapi/parser3isapi.vcproj, types/pa_value.h,  
           types/pa_vconsole.h, types/pa_vdate.h, types/pa_vfile.h,  2008-08-19  misha
           types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vimage.h,  
           types/pa_vmail.C, types/pa_vobject.C,          * src/main/execute.C: - bugfix: opcodes must be in separate
           types/pa_vstateless_class.h, types/pa_vtable.C,            namespace while debug execution as well
           types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,  
           types/pa_vxnode.h, types/types.vcproj: turned on warnings level4          * tests/: 015.html, results/015.processed: - test for escaping some
           on all projects (except libltdl=off & libsdbm=level3) found            parser chars was added
           several unitialized vars  
   2008-08-18  misha
 2003-11-19  paf  
           * tests/: 190.html, 190.p, results/190.processed: - test for
         * src/classes/op.C: more ansi C++ comp            $caller.self.field + default getter in one class was added
   
         * operators.txt, src/classes/op.C, src/include/pa_request.h,          * tests/: 189.html, results/189.processed: - test for
           src/main/pa_request.C: ^cache[...]{body}{catch block with            ^date::create[date object]
           $exception.handled[cache] meaning "get expired cache, if any.  
           else error"}          * tests/: 188.html, results/188.processed: - tests for match with
             UTF-8 strings
         * src/: classes/op.C, include/pa_os.h, include/pa_request.h,  
           main/pa_common.C: cache: ^cache[] fallback todo: kinda ^try:          * src/main/pa_string.C: - option 'U' (ungreedy) was added to
           ^cache[...]{body}{catch code with $exception.cache field}            ^string.match[]
   
 2003-11-12  paf          * ChangeLog: - parser 3.3.0 beta13
   
         * src/classes/xnode.C: replaceChild: 2nd param now named oldChild  2008-08-15  misha
           [copy/paste bug]  
           * src/lib/pcre/: LICENCE, Makefile.am, README, Tech.Notes, get.c,
 2003-11-11  paf            internal.h, pcre.3, pcre.3.html, pcre.3.txt, pcre.c, pcre.h,
             pcre.vcproj, study.c, maketables.c, pcre_dftables.vcproj,
         * src/types/: pa_value.h, pa_vfile.h: more C++ compatible [HP C++            dftables.c: - old PCRE files removed
           failed]  
           * src/lib/pcre/config.h: - configuration for PCRE library
         * bin/auto.p.dist.in: colno  
           * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
 2003-11-10  paf            use PCRE library from win32\pcre instead of parser3\src\lib\pcre
   
         * src/types/pa_vconsole.h: flush          * src/: classes/file.C, main/pa_string.C: - moved to new PCRE
             library and set flag UTF8 if $request:charset is UTF-8
         * operators.txt, src/main/pa_request.C, src/types/Makefile.am,  
           src/types/types.vcproj, src/types/pa_vconsole.h: $console:line          * src/: include/pa_charset.h, main/pa_charset.C, main/pa_globals.C,
           read/write  [for nntp]            include/pa_config_fixed.h: - moved to new PCRE library
   
         * operators.txt: mysql: transaction support: ?autocommit=0          * src/: main/main.vcproj, types/types.vcproj,
             classes/classes.vcproj, lib/Makefile.am: - use PCRE library from
         * operators.txt: comment: updated            win32\pcre instead of parser3\src\lib\pcre
   
         * src/types/: pa_vhashfile.C, pa_vhashfile.h: add: hashfile old          * src/: include/pa_opcode.h, include/pa_operation.h,
           serialize version and exipire now removes entries            main/compile.C, main/compile.y, main/compile_tools.C,
             main/compile_tools.h, main/execute.C, main/compile.tab.C: -
         * operators.txt: ^hashfile.delete[] removes files altogether [and            opcodes were moved to separate namespace
           dir, if could]  
   2008-08-14  misha
         * src/: classes/hashfile.C, include/pa_common.h, main/pa_common.C,  
           types/pa_vhashfile.C, types/pa_vhashfile.h: ^hashfile.delete[]          * src/types/pa_vstateless_class.C: - newline at the end missed
           removes files altogether [and dir, if could]  
           * src/main/untaint.C: - char '-' also prefixed by '\' while regex
         * src/lib/sdbm/sdbm.c: bugfix: sdbm: .h said it's OK to remove            tainting
           nonexistent pair. .c coded that that was error. fixed  
   2008-08-11  misha
         * src/types/pa_vhashfile.C: sdbm: exception type change to  
           file.access [regretfull can't split it to different exceptions          * tests/: 187.html, 187.p, results/187.processed: - tests for
           without modifying sdbm source wich would prefer not to]            $caller.self, $caller.self.field and $caller.self.field[value]
             were added
 2003-11-07  paf  
           * src/types/pa_vmethod_frame.h: - still need to check 'self'
         * src/: classes/date.C, classes/file.C, classes/hash.C,            runtime as well (for $caller.self)
           classes/hashfile.C, classes/image.C, classes/table.C,  
           classes/xdoc.C, include/Makefile.am, include/pa_array.h,  2008-07-25  misha
           include/pa_pool.h, include/pa_request.h, main/Makefile.am,  
           main/execute.C, main/main.vcproj, main/pa_pool.C,          * tests/: 021.html, 032.html, 033.html, 047.html, 055.html,
           main/pa_request.C, targets/cgi/parser3.C, types/pa_vclass.C,            059.html, 061.html, 064.html, 067.html, 068.html, 085.html,
           types/pa_vclass.h, types/pa_vhashfile.h, types/pa_vobject.h,            086.html, 098.html, 109.html, 121.html: - set correct charsets in
           types/pa_vstateless_class.h: resurrected: pool idea. now only for            tests with international characters
           destructing objects at request processing end  
   2008-07-23  misha
 2003-11-06  paf  
           * src/main/pa_http.C: - escape $cookies as %uXXXX while
         * src/: classes/Makefile.am, types/Makefile.am: .am sdbm INCLUDES            file::load[...;http://
           updates  
           * src/: main/pa_string.C, main/pa_globals.C, classes/file.C: - pcre
         * parser3.sln, src/targets/cgi/Makefile.am: .vcproj & .am updated            now everywhere in separate namespace
           to include sdbm  
           * src/types/pa_vmethod_frame.h: - looking for caller before looking
         * src/include/: pa_config_includes.h, pa_version.h: our            for vars
           replacements of max& co only for cpp  
           * src/main/: compile.y, compile.tab.C: - characters '@' and '#' now
         * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C: move to            can be escaped by '^'
           upper dir, .am updated  
   2008-07-22  misha
         * tests/todo.txt: hashfile: done  
           * src/classes/string.C, tests/186.html: - names changes:
         * operators.txt, src/types/pa_vhashfile.C: hashfile: clear &            escape=>js-escape, unescape=>js-unescape
           expiration [time in value. todo: move time to key]  
   2008-07-21  misha
         * src/types/pa_vhashfile.C: hashfile: foreach body can bodify $self  
           * tests/results/186.processed: - test for string escape/unescape
         * src/types/pa_vhashfile.C: hashfile: clear now works [were trying  
           to do that in foreach, no errors, but surely wrong]          * tests/186.html: - test for string escape/unescape
   
         * operators.txt, src/types/pa_vhashfile.C,          * src/classes/string.C: - string has escape and unescape methods
           src/types/pa_vhashfile.h: hashfile: clear and proper locking            now
   
         * operators.txt, src/classes/hash.C, src/classes/hashfile.C,          * src/: include/pa_string.h, main/pa_string.C: - escape method was
           src/types/pa_vhashfile.C, src/types/pa_vhashfile.h: hashfile:            added
           foreach  
           * src/: include/pa_charset.h, main/pa_charset.C: - more escape
         * src/classes/hashfile.C, src/types/pa_vhashfile.C,            method-layers added (with different params)
           src/types/pa_vhashfile.h, operators.txt: hashfile: hash  
   2008-07-18  misha
         * operators.txt, src/classes/hashfile.C, src/types/pa_vhashfile.C,  
           src/types/pa_vhashfile.h, tests/todo.txt: hashfile: delete          * tests/results/185.processed: - test for ^str.pos[substr](offset)
             was added
         * src/include/pa_memory.h, src/targets/cgi/parser3.C,  
           src/types/pa_value.C, src/types/pa_value.h,          * tests/185.html: - test for ^str.pos[sub](offset) added
           src/types/pa_vcookie.C, src/types/pa_vhashfile.C,  
           src/types/pa_vhashfile.h, www/htdocs/.htaccess: hashfile          * src/classes/string.C, src/classes/void.C, operators.txt: -
           implemented get/put [raw]            ^string.pos[substr](offset) -- 2nd param accepted now
   
         * src/: classes/op.C, main/pa_os.C: just linked          * src/main/pa_string.C: - .pos works fine with offset for utf-8
             strings
         * src/: classes/xdoc.C, classes/xnode.C, types/pa_vxnode.h:  
           XmlException changes  2008-07-17  misha
   
         * src/: include/pa_charset.h, include/pa_globals.h,          * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
           include/pa_stylesheet_connection.h, main/pa_exception.C:            helper length added for mid for small optimisation
           XmlException changes  
   2008-07-16  misha
         * src/lib/sdbm/: sdbm.c, sdbm.vcproj: just compiled  
           * tests/: 185.html, results/185.processed: - tests for
         * src/: include/pa_common.h, include/pa_exception.h,            length/left/right/mid/pos with utf-8 strings
           main/main.vcproj, main/pa_common.C, include/pa_os.h,  
           include/pa_xml_exception.h, main/pa_os.C, lib/sdbm/sdbm.vcproj,          * src/classes/string.C: - left/right/mid/length/pos works fine for
           main/pa_xml_exception.C: locking move to pa_os [along with            utf-8 strings
           pa_sleep] apr-impl locking done  
           * src/main/untaint.C: - comments removed
         * configure, configure.in, operators.txt, parser3.sln,  
           src/classes/classes.vcproj, src/classes/hashfile.C,          * src/: include/pa_string.h, main/pa_string.C,
           src/classes/xdoc.C, src/include/pa_config_fixed.h,            include/pa_charset.h, main/pa_charset.C: - methods for working
           src/include/pa_exception.h, src/include/pa_globals.h,            with pos/mid for strings in utf-8 were added
           src/include/pa_memory.h, src/include/pa_version.h,  
           src/lib/ltdl/libltdl.vcproj, src/lib/ltdl/libltdl.vcproj.vspscc,  2008-07-15  misha
           src/lib/ltdl/ltdl.vcproj, src/lib/ltdl/ltdl.vcproj.vspscc,  
           src/main/compile.tab.C, src/main/main.vcproj,          * tests/: 184.html, results/184.processed: - test for case body as
           src/main/pa_charset.C, src/targets/cgi/parser3.vcproj,            expression: $var(^switch(1){^case(1)(true)..})
           src/types/Makefile.am, src/types/pa_vhash.C,  
           src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,          * src/classes/op.C: - case body can be expression now:
           src/types/pa_vxnode.h, src/types/types.vcproj,            $var(^switch(1){^case(1)(true)..})
           www/htdocs/.htaccess: hashfile: started again with sdbm from  
           apache          * tests/: results/183.processed, 183.html: - added test for testing
             new cookie encoding (%uXXXX)
 2003-11-05  paf  
           * src/main/untaint.C: - cookies outputs as %uXXXX now. while
         * src/: classes/classes.vcproj, include/pa_config_fixed.h,            decoding for backward compatibility they decoded from %XX in
           main/main.vcproj, targets/cgi/parser3.vcproj: not has to be in            request:charset too
           \parser3project dir anymore  
           * src/: types/pa_vcookie.C, types/pa_vcookie.h, main/pa_request.C:
         * src/main/pa_charset.C: bugfix: had broken binary search [copied            - cookie class now decode cookies before first access after last
           thoughtlessly from xalan]            request:charset changing (as form class).
   
         * src/lib/sdbm/: Makefile.am, sdbm.c, sdbm_hash.c, sdbm_lock.c,          * src/main/pa_charset.C: - added method escape for escaping cookies
           sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h: original            as %uXXXX - before transcode calculate required space for dest
           from httpd-2.0.43\srclib\apr-util\dbm\sdbm            string. it reduce mem usage for transcode
   
         * src/main/helpers/CaseFolding.txt:          * src/include/pa_charset.h: - added method escape for escaping
           http://www.unicode.org/Public/UNIDATA/CaseFolding.txt            cookies as %uXXXX
   
 2003-11-04  paf          * src/include/pa_string.h: - taint lang (internal) L_HTTP_COOKIE
             was added. will used for escaping cookies as %uXXXX
         * operators.txt: comment: ^mail:send[$.options[  
           * src/include/pa_common.h: - escape method has new option for skip
         * src/classes/table.C: compiled on unix            converting '+' to a space char
   
         * src/classes/Makefile.am: classes.C to rebuild last          * src/main/: pa_common.C, pa_http.C: - skip BOM code before
             transcode - escape method has new option for skip converting '+'
         * src/classes/mail.C: compiled on unix            to a space char
   
         * operators.txt, src/classes/mail.C, src/types/pa_vmail.C,  2008-07-08  misha
           src/types/pa_vmail.h:     !^mail:send[  
                   $.options[unix: string to append to sendmail command          * src/classes/op.C: - bugfix in switch - case "stops" on 1st match
           line]            (no UE if more then 1 case matches anylonger) - optimization:
             doing searching.as_string() || searching.as_double() only once
         * operators.txt, src/classes/table.C, src/main/pa_string.C,  
           tests/todo.txt: ^table.save[...          $.separator[^#09]  2008-07-04  misha
           $.encloser["] <nothing> by default  
           * src/types/pa_vdate.h: - is_evaluated_expr returning true added so
         * operators.txt, src/classes/table.C, tests/todo.txt: ^table::load            now ^date::create[date object] works
                  !$.separator[^#09]         !$.encloser["] <nothing> by  
           default          * src/classes/string.C: - left and right added as aliases for start
             and end in ^string.trim[]
 2003-11-03  paf  
   2008-07-03  misha
         * operators.txt, src/classes/table.C, src/main/pa_common.C:  
           ^table::load[; options:         !$.column-separator[^#09]          * src/classes/file.C: - allow $.limit for file::sql as well
           !$.column-encloser["]  
           * src/classes/file.C: - allow $.offset option for file::sql - force
         * operators.txt, src/include/pa_config_fixed.h,            send limit=1 to query for use sql specifics authomatically
           src/types/pa_vrequest.C: $request:document-root  
           * src/classes/: hash.C, string.C, table.C: - don't throw exception
         * src/targets/cgi/parser3.C: beauty: SIGUSRX removed qs= printing            if $.limit value if empty. autoconvert it as everywere
           [already included into uri=xxx]  
   2008-07-02  misha
         * operators.txt, src/classes/image.C, tests/todo.txt,  
           www/htdocs/auto.p: ^image.gif[filename] for $response:download          * configure.in: - time to change version number to 3.3.0 %-)
   
         * src/classes/date.C: minor precaution          * src/include/pa_version.h: - time to change version number to
             3.3.0 %-)
         * operators.txt, src/classes/date.C:     !^date::unix-timestamp()  
               !^date.unix-timestamp[]  2008-06-26  misha
   
 2003-10-30  paf          * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
             $.limit(0) fixes
         * operators.txt, src/classes/date.C, src/types/pa_vdate.h: merged  
           from 3.0.8: ^date.roll[TZ;GMT] $date.hour          * src/sql/pa_sql_driver.h: - new drivers API and new version (10.0)
             - $.limit(0) fixes
         * src/classes/: date.C, image.C: improvement diagnostics:  
           $now[^date::create[$undefined]] now is error          * src/sql/pa_sql_driver.h: - SQL_NO_LIMIT added (preparations to
             new API)
         * src/main/pa_common.C: read errors would now be reported 'actually  
           read -1 bytes'          * src/: include/pa_sql_driver_manager.h,
             include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
 2003-10-24  paf            classes/op.C: - document_root added
   
         * Makefile.am, src/classes/Makefile.am, src/lib/cord/Makefile.am,          * src/main/compile.tab.C: - error message was changed
           src/lib/md5/Makefile.am, src/lib/pcre/Makefile.am,  
           src/main/Makefile.am, src/targets/cgi/Makefile.am,  2008-06-25  misha
           src/targets/isapi/Makefile.am: .dsp/w -> .vcproj/sln  
           * src/main/compile.y: - error message was changed
 2003-10-22  paf  
   2008-06-24  misha
         * src/include/pa_request.h: fixed: $h[^hash::create[]] $$h[1]  
           * tests/176_dir/: a.p, d.p: - @OPTION => @OPTIONS
 2003-10-21  paf  
           * tests/: 182.html, 182_dir/a1.p, 182_dir/a2.p, 182_dir/a3.p: -
         * operators.txt, src/include/pa_string.h, src/main/pa_string.C:            tests for @OPTIONS\nappend
           fixed: string.match[g] without <'> option produced columns with  
           NULL's, which gpf'ed at table.save time          * tests/: 176.html, results/176.processed: - @OPTION => @OPTIONS
   
         * src/: classes/op.C, include/pa_request.h: fixed: false 'endless          * src/main/: compile.y, compile.tab.C: - stuff for @OPTIONS\nappend
           recoursion' message with intensive throw-catches fixed: incorrect  
           name and line (one name upper then needed) in error message about          * src/main/compile_tools.h: - new methods for @OPTIONS\nappend
           problems inside try block  
           * src/types/pa_vmethod_frame.h: - ALL_VARS_LOCAL_NAME moved fo
 2003-10-10  paf            compile.y
   
         * src/include/pa_string.h, src/main/compile.tab.C,  2008-06-17  misha
           www/htdocs/.htaccess: CORD_chr does not check offset argument for  
           validity did that in String::Body::pos myself          * src/main/: compile.y, compile.tab.C: - bugfix in 'def'
           http://i2/tasks/edit/?id=4577425257580789777            compilation: ^if(default){true. it's incorrect. must be
             exception}
 2003-10-07  paf  
   2008-06-16  misha
         * src/main/: compile.tab.C, compile.y: ^if ( better error:  
           .html(1:4): parse error, expecting `'['' or `'{'' or `'(''  now          * tests/: 181.ent, 181.html, results/181.processed: - test for
             checking external reference loading with 'http://localhost'
 2003-10-03  paf            prefix while creating xdoc
   
         * parser3.sln, src/include/pa_dictionary.h,          * tests/180.html: - use ^inet:ntoa[] and ^inet:aton[] instead of
           src/main/pa_dictionary.C, src/main/pa_string.C,            ^math:long2ip[] and ^math:ip2long[]
           src/targets/cgi/parser3.vcproj, www/htdocs/.htaccess: dictionary  
           optimized by precalculating cstr&length          * src/types/: pa_vobject.C, pa_vobject.h: - get_scalar_value method
             added which use scalar stateless class method when user object
 2003-10-02  paf            used in scalar context - use get_scalar_value when user object
             requested in scalar context
         * src/classes/op.C, src/include/pa_request.h,  
           src/include/pa_stack.h, src/main/execute.C,          * src/main/pa_common.C: - size must be int but not size_t or we
           src/main/pa_request.C, src/main/pa_sql_driver_manager.C,            can't compare with 0 sprintf result
           src/main/pa_stylesheet_manager.C, www/htdocs/.htaccess: bugfix:  
           ^throw context were saved/restored incompletely          * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
           http://www.parser.ru/forum/?id=21484            main/execute.C, main/pa_request.C: - go back to one VMethodFrame
             with internal switch between local/global vars
 2003-09-30  paf  
           * src/types/pa_vclass.C: - register scalar if method @GET[] was
         * src/main/pa_string.C: string::replace bug fix [were ignoring            specified
           occurrances after lang-mismatched  
           * src/types/: pa_vstateless_class.C, pa_vstateless_class.h,
 2003-09-29  paf            pa_vstateless_object.h: - stateless class and object now has
             private scalar field and getter/setter for working with it
         * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: generated by  
           helper          * src/classes/math.C: - methods math:long2ip & math:ip2long were
             moved to inet static class
         * src/main/pa_string.C: string::serialize bug fix with  
           zero-terminator          * src/classes/: classes.vcproj, inet.C, Makefile.am: - inet static
             class added (^inet:aton[IP], ^inet:ntoa(number))
         * src/classes/table.C: ^nameless_table.save column row now has no  
           \t at the end          * tests/: 180.html, results/180.processed: - tests for
             ^math:long2ip(long) and ^math:ip2long[IP]
         * src/: include/pa_request.h, main/execute.C, main/pa_request.C:  
           @postprocess  now takes $response:body/download          * src/classes/math.C: - ^math:ip2long[IP] added
   
         * src/classes/form.C: better error message: MAX_POST_SIZE_NAME to  2008-06-11  misha
           error message  
           * src/main/pa_xml_io.C: - use file_read_text again because of we
         * src/classes/string.C: bugfix: s.right(>s.length) returned nothing            need cut BOM code and remove DOS newline chars. but don't
             transcode it anyway.
         * src/classes/table.C: bugfix: flip: must produce nameless  
           http://i2/tasks/edit/?id=4573405524674081244          * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
             main/pa_http.C: - option for disable transcoding while file_read
         * www/htdocs/: base.p, derived.p, font.gif, global.xsl, index.html,            and file_read_text added
           mailreceive.eml, mailreceive.html, operators.p,  
           parser-status.html, people.dtd, some.p: removing old tests  2008-06-10  misha
   
         * src/include/pa_charset.h, src/main/pa_charset.C,          * tests/: 179.html, 179.p, results/179.processed: - test for many
           src/main/pa_string.C, src/main/helpers/simple_folding.pl,            classes in 1 file
           www/htdocs/auto.p: utf-8 upper/lower  
           * src/main/: compile.C, compile_tools.h: - compile return list of
         * src/main/pa_common.C: bugfix: utf signature were not ignored due            classes now.
           to typo error http://i2/tasks/edit/?id=4573354650786434584  
           * src/main/: compile.y, compile.tab.C: - compile return list of
 2003-09-26  paf            classes now. internals.
   
         * src/main/untaint.C: removed needless field          * src/main/pa_request.C: - compile return list of classes now. try
             call @conf and @auto for each returned class
         * src/main/untaint.C: removed needless const  
           * src/include/pa_request.h: - compile return list of classes now
         * src/include/pa_string.h, src/main/pa_common.C,  
           src/main/pa_string.C, www/htdocs/.htaccess: String.for_each bug          * src/types/pa_vstateless_class.h: - typedef ArrayClass added (for
           fixed [omited one-char cases]            return list of classes when compile buf)
   
         * src/include/pa_stack.h: bugfix: before collecting garbage,  2008-06-07  misha
           runtime-executor stack were cleared... BADLY  
           * src/main/pa_request.C: - constructing VRequest object with 3rd
         * src/main/pa_string.C, www/htdocs/.htaccess, www/htdocs/auto.p:            param -- form
           ^stirng.replace code used old param-convention on langs.append,  
           fixed that search fo the like, found none          * src/types/: pa_vrequest.C, pa_vrequest.h: - constructor acceps
             3rd param: form. needed for get post_charset
         * src/classes/op.C, src/include/pa_string.h, src/main/pa_string.C,  
           www/htdocs/.htaccess: string::serialize/deserialize implemented          * src/types/: pa_vform.C, pa_vform.h: - VForm::get_post_charset()
           Language enum assigned meaningful letters [more convinient for            added
           debugging. read warning before adding/changing anything]  
           * src/: include/pa_common.h, main/pa_common.C, main/pa_http.C,
 2003-09-25  paf            types/pa_vform.C, types/pa_vform.h: - some polish
   
         * src/: include/pa_string.h, include/pa_version.h,  2008-06-06  misha
           main/pa_string.C, main/untaint.C: templates and anonymous unions  
           differences on unix          * src/types/: pa_vform.C, pa_vform.h: - if POST -- try detec
             charset and decode chars from it but not from response:charset
         * parser3.sln, src/classes/file.C, src/classes/image.C,  
           src/classes/mail.C, src/classes/op.C, src/classes/table.C,          * src/main/pa_http.C: - detect_charset moved out of here
           src/classes/xdoc.C, src/classes/xnode.C,  
           src/include/pa_cache_managers.h, src/include/pa_charset.h,          * src/: include/pa_common.h, main/pa_common.C: - more helpers
           src/include/pa_charsets.h, src/include/pa_common.h,            methods moved here - unescape_chars accepn one charset now
           src/include/pa_request.h, src/include/pa_sql_driver_manager.h,  
           src/include/pa_string.h, src/include/pa_stylesheet_manager.h,          * src/main/pa_http.C: - new constants used - don't allow
           src/include/pa_table.h, src/lib/cord/cordbscs.c,            $.content-type in ^file::load[;http://;$.method[POST]] - add
           src/lib/cord/cordprnt.c, src/lib/cord/cordxtra.c,            charset info while ^file::load[;http://;$.method[POST]] - option
           src/lib/cord/include/cord.h, src/main/compile.tab.C,            $.omit-post-charset(true) added to ^file::load[;http://] for
           src/main/compile_tools.h, src/main/pa_charset.C,            disabling charset during post
           src/main/pa_charsets.C, src/main/pa_common.C, src/main/pa_exec.C,  
           src/main/pa_request.C, src/main/pa_sql_driver_manager.C,          * src/types/pa_vform.C: - new constants used
           src/main/pa_string.C, src/main/pa_stylesheet_manager.C,  
           src/main/untaint.C, src/types/pa_value.h, src/types/pa_vimage.C,          * src/include/pa_common.h: - some constants were added
           src/types/pa_vmail.C, src/types/pa_vmath.C,  
           src/types/pa_vstateless_class.h, src/types/pa_vstatus.C,          * src/: classes/form.C, types/pa_vform.C: - use StrStartFromNC
           src/types/pa_vxnode.C, www/htdocs/.htaccess:            instead of StrEqNc
           string_fragments_to_cord merged to HEAD  
           * src/main/pa_common.C: - new method for caseless search
         * src/main/: compile.tab.C, pa_string.C: string: debug: .v()            c-substring in c-string - use isxdigit instead of is_hex_digit
           functions aligned to that of eeparser3 look  
           * src/include/pa_common.h: - new method for caseless search
         * src/lib/cord/cordprnt.c: removed warnings            c-substring in c-string
   
 2003-09-24  paf  2008-06-05  misha
   
         * src/: classes/file.C, classes/image.C, classes/mail.C,          * tests/results/178.processed: - test for testing default getter
           classes/op.C, classes/xdoc.C, classes/xnode.C,  
           include/pa_cache_managers.h, include/pa_charset.h,          * tests/178.html: - test for testing default getter
           include/pa_charsets.h, include/pa_common.h, include/pa_request.h,  
           include/pa_sql_driver_manager.h, include/pa_string.h,          * tests/178_dir/: 178a.p, 178b.p, 178c.p, 178d.p, 178e.p: - classes
           include/pa_stylesheet_manager.h, include/pa_table.h,            for test for testing default getter
           main/compile_tools.h, main/pa_charset.C, main/pa_charsets.C,  
           main/pa_common.C, main/pa_exec.C, main/pa_request.C,          * src/main/execute.C: - default getter soul
           main/pa_sql_driver_manager.C, main/pa_string.C,  
           main/pa_stylesheet_manager.C, main/untaint.C, types/pa_value.h,          * src/types/: pa_vobject.C, pa_vobject.h: - get default getter if
           types/pa_vimage.C, types/pa_vmail.C, types/pa_vmath.C,            requested objects' field not found
           types/pa_vstateless_class.h, types/pa_vstatus.C,  
           types/pa_vxnode.C: v() functions of String::Body,          * src/types/pa_vclass.C: - register default getter if defined - get
           String::Languages and String itself StringBody->String::Body            default getter if requested field not found
   
         * src/: include/pa_string.h, lib/cord/cordbscs.c,          * src/types/pa_vstateless_object.h: - method get_default_getter was
           lib/cord/include/cord.h: CORD_append_block showed no efficiency =            added
           never optimized anything.  todo: somehow speed up harder cases:  
           concatenationA+concatenationB when last block of A and first of B          * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
           contain same letters            pointer to default getter and methods for get/set it were added
   
         * src/: include/pa_string.h, lib/cord/cordbscs.c,          * src/types/: pa_junction.h, pa_vjunction.h: - junction has
           lib/cord/include/cord.h: langs: speed up by joining adjucent            auto_name field (for default getter)
           blocks of same char [CORD_append_block]  
   2008-06-04  misha
         * src/: include/pa_string.h, lib/cord/cordbscs.c,  
           lib/cord/include/cord.h, main/pa_string.C: aval/ works! todo:          * src/main/pa_xml_io.C: - load external xml in binary mode (no
           save space by extending blocks when appending block with c ==            transcoding, no cutting BOM code, no fixing line breaks) and get
           lastblock.c            it to libxml "as is"
   
         * src/: include/pa_string.h, main/pa_string.C: aval is not actually  2008-06-03  misha
           working yet :( but more working &understood :)  
           * src/main/pa_common.C: - use store_Char instead of
         * src/: classes/table.C, include/pa_string.h,            transcodeCharFromUTF8
           lib/cord/include/cord.h, main/pa_string.C: aval/ works!  
           * src/: include/pa_charset.h, main/pa_charset.C: - method
 2003-09-23  paf            store_Char added, transcodeCharFromUTF8 -- removed
   
         * src/main/untaint.C: $a[ok!] $a works!  2008-06-02  misha
   
         * src/main/untaint.C: something even more works :)          * tests/: results/177.processed, 177.html: - test for checking
             .[acm]date after local ^file::load[] was added
         * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:  
           something more works :)          * tests/: results/176.processed, 176.html: - test for checking
             @OPTION\locals + @method[vars][locals] added
         * src/: include/pa_string.h, lib/cord/cordbscs.c,  
           lib/cord/cordxtra.c: something already works :)          * tests/results/auto.p: - CLASS_PATH specified for checking use
   
         * src/: include/pa_string.h, main/untaint.C: just compiled todo:  2008-05-30  misha
           serialize&deserialize  
           * src/main/: compile.y, compile.tab.C: - changes in compiler:
         * src/: classes/table.C, include/pa_string.h, lib/cord/cordbscs.c,            @OPTION\nlocals + @method[vars][;locals;] were added
           lib/cord/cordxtra.c, lib/cord/include/cord.h, main/pa_string.C,  
           main/untaint.C: main idea implemented, details left          * src/main/execute.C: - code of OP_CALL and OP_CALL__WRITE was
             moved to separate method op_code - switch from VMethodFrame to
 2003-09-22  paf            VMethodFrameGlobal + VMethodFrameLocal
   
         * src/: classes/memory.C, include/pa_memory.h: #ifdef GC_DEBUG          * src/include/pa_request.h: - code of OP_CALL and OP_CALL__WRITE
             was moved to separate method op_code
         * src/classes/xnode.C: copy/paste comment bugfix  
           * src/main/pa_request.C: - use VMethodFrameGlobal instead of
         * src/: include/pa_memory.h, main/pa_globals.C: when xml memory            VMethodFrame now
           allocator returns 0, just die.  
           http://i2/tasks/edit/?id=4570798492410259445          * src/types/pa_vstateless_class.h: - stateless class have bool flag
             all_vars_local as well
         * src/classes/xdoc.C: copy/paste comment bugfix  
           * src/types/: pa_vmethod_frame.h, pa_vmethod_frame_global.h,
         * src/classes/: xdoc.C, xnode.C: new DOM2 methods from Alexandr            pa_vmethod_frame_local.h, Makefile.am: - who children for
           Egorov <egr> (all?) xdoc: createAttributeNS createElementNS            VMethodFrame were added: one (global) works as VMethodFrame
           xnode: getAttributeNS setAttributeNS removeAttributeNS            before and second (local) write all vars in self vars scope
           getAttributeNodeNS setAttributeNodeNS hasAttribute hasAttributeNS  
           * src/types/pa_method.h: - method has bool flag all_vars_local now
         * src/lib/cord/cordxtra.c: CORD_pos bugfix [failed to find 8bit  
           chars due to bitwise operation signed-char error]  2008-05-29  misha
   
 2003-09-19  paf          * tests/: 129.html, results/129.processed: - more tests for
             ^table.hash[]
         * src/types/pa_wcontext.C: output message: more practical  
           suggestion          * src/classes/hash.C: - ^hash::sql has a new option:
             $.type[hash|string|table] as ^table.hash[] one.
         * src/main/pa_common.C, operators.txt: merged  
           $f[^file::load[binary;http://...]] $f.tables          * src/classes/op.C: - ^try has 3rd param now: finally code which
             executed anyway after try or catch section
 2003-09-02  paf  
   2008-05-27  misha
         * src/main/pa_common.C: printf is buffered, write(1 is not. can't  
           flush stdout without referencing 'stdout' symbol. to hell with          * src/classes/table.C: - bugfix: ^table.hash[key][$.type[table]]
           non-ansi libraries without 'stdout' symbol            must not fail if $.distinct(1) wasn't specified
   
         * src/main/pa_common.C: got rid of 'stdout' symbol reference on  2008-05-26  misha
           unix (users reported problems with some old libc)  
           * src/classes/op.C: - allow ^throw[my type]
         * src/types/pa_vdate.h: forgot initializer  
   2008-05-22  misha
 2003-09-01  paf  
           * configure.in, configure: - version number updated to 3.2.4b
         * src/: classes/date.C, include/pa_common.h, main/compile.tab.C,  
           main/pa_common.C, types/pa_vdate.h: $date.TZ ^date.roll[TZ;new          * src/classes/: op.C, string.C: - trim format string before
           zone]            eval/format
   
         * src/classes/image.C: memory handling bugs [unpatched 'new' calls]          * tests/: results/175.processed, 175.html: - more tests for
             different format strings in .format[]
 2003-08-19  paf  
           * src/types/pa_vform.C: - while decoding get values decode %uXXXX
         * src/types/: pa_value.C, pa_value.h, pa_vdate.h, pa_vrequest.C,            as well (not only %XX)
           pa_vstring.h, pa_vxdoc.C, pa_vxnode.C: bark intefrace obsoleted,  
           simplified a little          * src/main/pa_common.C: - unescape_chars can decode %uXXXX if
             charset specified - checks for format before print number
         * src/types/: pa_vhash.C, pa_vhash.h: _default+foreach bug refix            (^d.format[>...<], ^eval($d)[>...<]) - formating with spaces
           [lost fix from 3.0.8]            (instead of tabs) removed
   
         * src/types/pa_vcookie.C: in VC7 if(type var=xxx){ }else{   now          * src/include/pa_common.h: - unescape_chars can decode %uXXXX if
           visible here }            charset specified
   
           bug fix          * src/: include/pa_charset.h, main/pa_charset.C: - method for get
             char in requested charset from utf code was added
         * src/: include/pa_memory.h, types/pa_value.h: -= few warnings  
   2008-05-19  misha
         * src/main/compile.tab.C: initialized couple of variables about  
           which user reported runtime problems when parser were compiled          * tests/: 174.html, results/174.processed: - test for
           with VC7, warning level4.  study shows that later in bison            ^hashfile.cleanup[] added
           they've fixed that. would migrate to latest bison someday  
           * src/classes/hashfile.C: - optimization: don't create any key or
         * src/types/pa_vmail.C: turned  off recoding in gmime (were still            value variable if it's name weren't specified
           recoding headers)            (^hf.foreach[;v]{...})
   
         * src/types/pa_vmail.C: works as before, same charset problems:  2008-05-16  misha
           gmime recodes to UTF-8 only headers, not body. so not recoding  
           anything for now          * src/classes/hash.C: - optimization: don't create any key variable
             if variable name wasn't specified (^h.foreach[;v]{...})
         * src/types/: pa_vmail.C, pa_vmail.h: parses headers, still  
           problems with body  2008-05-15  misha
   
         * src/types/pa_vmail.C: mail_receive just compiled          * src/classes/op.C: - small changes
   
 2003-08-18  paf          * src/classes/hashfile.C: - code reformating (as hash.foreach)
   
         * src/: classes/classes.vcproj, include/pa_config_fixed.h,          * src/classes/hash.C: - calculate var_context once before foreach
           main/main.vcproj, types/types.vcproj: win32: continued process  
           detaching from \parser3project directory  2008-05-14  misha
   
         * gnu.dsp, parser3.dsw, src/classes/classes.dsp,          * src/classes/hashfile.C: - incorrect vars context calculation for
           src/lib/cord/cord.dsp, src/lib/ltdl/libltdl.dsp,            ^hashfile.foreach[;]{} fixed
           src/lib/md5/md5.dsp, src/lib/pcre/pcre.dsp,  
           src/lib/pcre/pcre_dftables.dsp,          * src/classes/: hash.C, table.C: - little optimisation
           src/lib/pcre/pcre_parser_ctype.dsp, src/main/main.dsp,  
           src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,          * src/classes/file.C: - bugfix: double absolute path while loading
           src/types/types.dsp: moved to MSVC 7            file
   
         * gnu.vcproj.vspscc, parser3.vssscc,          * tests/: 174.html, results/174.processed: - tests for hashfile
           src/classes/classes.vcproj.vspscc,            were added
           src/lib/cord/cord.vcproj.vspscc,  
           src/lib/ltdl/libltdl.vcproj.vspscc,          * buildall-with-xml: - moving to libxslt 1.1.24
           src/lib/md5/md5.vcproj.vspscc,  
           src/lib/pcre/pcre_dftables.vcproj.vspscc,  2008-04-30  misha
           src/lib/pcre/pcre_parser_ctype.vcproj.vspscc,  
           src/lib/pcre/pcre.vcproj.vspscc, src/main/main.vcproj.vspscc,          * src/classes/file.C: - stat file while loading (local only) so
           src/targets/isapi/parser3isapi.vcproj.vspscc,            .adate, .mdate and .cdate available without additional ::stat
           src/types/types.vcproj.vspscc, src/targets/cgi/parser3.vcproj:  
           moved to MSVC 7  2008-04-28  misha
   
         * parser3.sln, gnu.vcproj, src/classes/classes.vcproj,          * src/classes/file.C: - $.name and $.content-type available for
           src/lib/cord/cord.vcproj, src/lib/ltdl/libltdl.vcproj,            stated file
           src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,  
           src/lib/pcre/pcre_dftables.vcproj,  2008-04-14  misha
           src/lib/pcre/pcre_parser_ctype.vcproj, src/main/main.vcproj,  
           src/targets/cgi/parser3.vcproj,          * src/targets/cgi/parser3.C: - new year in copyright %-)
           src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:  
           new VS project files          * src/include/pa_version.h: - new version number in head
   
         * ~sak5c961f3101c36563.tmp: Temporary file created by Visual Studio  2008-04-10  misha
           .NET to detect Jalindi Igloo capabilities.  
           * tests/: 080.html, results/080.processed: - cut '0' from
         * ChangeLog, configure, configure.in, src/classes/Makefile.am,            exponential part because of on diff OS it differ (20 or 020 for
           src/classes/classes.awk, src/doc/footer.htm,            ex)
           src/include/pa_config_fixed.h, src/include/pa_version.h,  
           src/lib/Makefile.am, src/main/compile.tab.C,          * tests/: 119.html, results/119.processed: - check for encoding
           src/main/pa_charset.C, src/main/pa_string.C, src/main/untaint.C,            while creating xdoc
           src/types/pa_vmail.C, www/htdocs/.htaccess, www/htdocs/auto.p:  
           merged 3.1.0 latest changes  2008-04-09  misha
   
 2003-08-15  paf          * buildall-with-xml: - move to libxml 2.6.32 and libxslt 1.1.23
   
         * src/main/untaint.C: email addresses in forms:   "non-ascii" <yyy>          * src/main/pa_common.C: - comment added
           non-ascii <yyy> now encoded correctly [kinda merge from 3.0.8]  
           * src/classes/date.C: - little refactoring
         * src/main/untaint.C: email addresses in forms:   "non-ascii" <yyy>  
           non-ascii <yyy> now encoded correctly  2008-04-07  misha
   
 2003-07-29  paf          * src/classes/table.C: - use NO_STRINGSTREAM for switch to old
             style of ^table.save[]: prepare one big string and sabe it at
         * src/classes/: Makefile.am, classes.awk: classes.awk added to make            once. it's safe on freebsd 4.x but use much more memory.
           dist  
           * buildall-with-xml, buildall-without-xml: - option
         * src/types/pa_vmail.C: just started --with-mail-receive            --disable-stringstream added (under comment. use it on freebsd
             4.x)
 2003-07-28  paf  
   2008-02-22  misha
         * src/: classes/Makefile.am, lib/Makefile.am: removed circular  
           dependence in src/classes, src/lib/gc now in dist          * src/main/pa_http.C: - exception if $.body[] and $.forms[]
             specified together in file::load[;http] - get back transcoding
         * src/main/pa_string.C: ^cache bug fix [were not working at all]            $.body[] in file::load[;http]
   
 2003-07-25  paf  2008-02-21  misha
   
         * src/doc/footer.htm: year          * src/classes/date.C: - ^date.gmt-string[] was added
   
 2003-07-24  paf          * src/types/pa_value.C: - method for output date in RFC 822 format
             moved to pa_common.h
         * src/: include/pa_config_fixed.h, main/pa_charset.C: bad #endif  
           fix          * src/include/pa_common.h: - method for output date in RFC 822
             format moved here from pa_value.C
         * src/include/pa_version.h: release  
           * src/types/pa_vmail.C: - fixed core in sending mail with
         * src/lib/gc/include/: Makefile.am, gc.h: moved tempate_gc to HEAD            attachment in simple mode ($.file[file here]) introduced in 3.2.2
   
         * ChangeLog, src/classes/classes.dsp, src/main/main.dsp,  2008-02-20  misha
           src/main/pa_globals.C, src/targets/cgi/parser3.dsp,  
           src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: cvs:          * src/main/pa_http.C: - transcode $.headers before escaping into
           getting rid of win32xml pseudo project            specified charset while ^file::load[...;http://...] (L_URI
             instead of L_HTTP_HEADER) - $.cookies param available in
         * src/main/: compile.tab.C, pa_memory.C: moved tempate_gc to HEAD            ^file::load[;http://...] now (but we don't parse set-cookies from
             response yet) (cookies not transcoded as common $cookies)
         * ChangeLog, INSTALL, Makefile.am, acsite.m4, configure,  
           configure.in, operators.txt, parser3.dsw,  2008-02-19  misha
           etc/parser3.charsets/koi8-r.cfg,  
           etc/parser3.charsets/windows-1251.cfg, src/classes/Makefile.am,          * src/main/pa_request.C: - rollback: we mustn't force taint
           src/classes/classes.C, src/classes/classes.awk,            $response:field values because in this case
           src/classes/classes.dsp, src/classes/classes.h,            $response:locateion[http://...] don't works.
           src/classes/date.C, src/classes/double.C, src/classes/file.C,  
           src/classes/form.C, src/classes/hash.C, src/classes/image.C,  2008-02-15  misha
           src/classes/int.C, src/classes/mail.C, src/classes/math.C,  
           src/classes/memory.C, src/classes/op.C, src/classes/response.C,          * src/classes/op.C: - little refactoring
           src/classes/string.C, src/classes/table.C, src/classes/void.C,  
           src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,          * src/main/pa_http.C: - taint names of $.headers for load[;http
           src/doc/exception.dox, src/doc/index.dox, src/doc/memory.dox,  
           src/doc/string.dox, src/include/Makefile.am,          * src/main/pa_request.C: - force taint values of $response:field
           src/include/pa_array.h, src/include/pa_cache_managers.h,  
           src/include/pa_charset.h, src/include/pa_charsets.h,  2008-02-14  misha
           src/include/pa_common.h, src/include/pa_config_auto.h.in,  
           src/include/pa_config_fixed.h, src/include/pa_config_includes.h,          * src/main/pa_request.C: - $response:field transcoded to
           src/include/pa_dictionary.h, src/include/pa_dir.h,            $response:charset before escaping now
           src/include/pa_exception.h, src/include/pa_exec.h,  
           src/include/pa_globals.h, src/include/pa_hash.h,          * src/main/pa_http.C: - some outdated comments removed
           src/include/pa_memory.h, src/include/pa_opcode.h,  
           src/include/pa_operation.h, src/include/pa_pool.h,          * src/classes/date.C: - lastdat -> last-day
           src/include/pa_pragma_pack_begin.h,  
           src/include/pa_pragma_pack_end.h, src/include/pa_request.h,          * src/classes/date.C: - ^date:lastday(year;month) and
           src/include/pa_request_charsets.h, src/include/pa_request_info.h,            ^date.lastday[] were added - little code refactoring - comments
           src/include/pa_sapi.h, src/include/pa_socks.h,            changes
           src/include/pa_sql_connection.h,  
           src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,          * tests/: 159.html, results/159.processed: - test for number of
           src/include/pa_string.h, src/include/pa_stylesheet_connection.h,            days in February
           src/include/pa_stylesheet_manager.h, src/include/pa_table.h,  
           src/include/pa_threads.h, src/include/pa_types.h,          * src/types/pa_value.C: - fixes in code formatting
           src/include/pa_uue.h, src/lib/Makefile.am,  
           src/lib/cord/Makefile.am, src/lib/cord/cord.dsp,          * src/classes/: file.C, op.C, table.C: - fixes in code formatting
           src/lib/cord/cordbscs.c, src/lib/cord/cordprnt.c,            and comments
           src/lib/cord/cordxtra.c, src/lib/cord/source.url,  
           src/lib/cord/include/Makefile.am, src/lib/cord/include/cord.h,  2008-02-13  misha
           src/lib/cord/include/ec.h,  
           src/lib/cord/include/private/Makefile.am,          * src/main/pa_common.C: - bugfix for february at leap year
           src/lib/cord/include/private/cord_pos.h, src/lib/gc/Makefile.am,  
           src/lib/ltdl/libltdl.dsp, src/lib/md5/pa_md5.h,  2008-01-28  misha
           src/lib/md5/pa_md5c.c, src/lib/pcre/pcre.h,  
           src/lib/pcre/pcre_parser_ctype.c, src/main/Makefile.am,          * tests/: 160.html, results/160.processed: - more test for cache
           src/main/compile.C, src/main/compile.tab.C, src/main/compile.y,            added
           src/main/compile_tools.C, src/main/compile_tools.h,  
           src/main/execute.C, src/main/main.dsp, src/main/pa_array.C,          * src/classes/op.C: - bugfix: cache body executed twice if contains
           src/main/pa_cache_managers.C, src/main/pa_charset.C,            unhandled exception
           src/main/pa_charsets.C, src/main/pa_common.C,  
           src/main/pa_dictionary.C, src/main/pa_dir.C,  2008-01-25  misha
           src/main/pa_exception.C, src/main/pa_exec.C,  
           src/main/pa_globals.C, src/main/pa_hash.C, src/main/pa_pool.C,          * src/lib/sdbm/sdbm.c: - use arp_malloc instead of malloc (fixed
           src/main/pa_request.C, src/main/pa_socks.C,            bug when hashfile became inavailable after memory:compact)
           src/main/pa_sql_driver_manager.C, src/main/pa_string.C,  
           src/main/pa_stylesheet_manager.C, src/main/pa_table.C,          * src/lib/sdbm/apr_strings.C: - +arp_malloc
           src/main/pa_uue.C, src/main/untaint.C, src/sql/pa_sql_driver.h,  
           src/targets/Makefile.am, src/targets/cgi/Makefile.am,  2008-01-22  misha
           src/targets/cgi/getopt.c, src/targets/cgi/getopt.h,  
           src/targets/cgi/pa_pool.C, src/targets/cgi/pa_threads.C,          * src/classes/table.C: - little refactiring and exception texts
           src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,            changes in method ^table.hash[]
           src/targets/cgi/pool_storage.h, src/targets/cgi/pp3.cmd,  
           src/targets/isapi/Makefile.am, src/targets/isapi/pa_pool.C,          * src/types/pa_vcookie.C: - link to cookie specification changed
           src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,  
           src/targets/isapi/parser3isapi.dsp,  2008-01-21  misha
           src/targets/isapi/pool_storage.h, src/types/Makefile.am,  
           src/types/pa_junction.h, src/types/pa_method.h,          * tests/: 171.html, cat.sh, results/171.processed: - more tests for
           src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,            file::exec/cgi
           src/types/pa_vclass.C, src/types/pa_vclass.h,  
           src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,          * src/classes/file.C: - bugfix: core while processing headers if
           src/types/pa_vcookie.h, src/types/pa_vdate.h,            executed cgi script don't return content
           src/types/pa_vdouble.h, src/types/pa_venv.h,  
           src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,  2008-01-18  misha
           src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,  
           src/types/pa_vimage.C, src/types/pa_vimage.h,          * buildall-with-xml: - move to libxml2 version 2.6.31
           src/types/pa_vint.h, src/types/pa_vjunction.h,  
           src/types/pa_vmail.C, src/types/pa_vmail.h, src/types/pa_vmath.C,          * src/include/pa_version.h, configure.in: - version number updated
           src/types/pa_vmath.h, src/types/pa_vmemory.h,            to '3.2.3b'
           src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,  
           src/types/pa_vobject.C, src/types/pa_vobject.h,  2007-12-28  misha
           src/types/pa_vrequest.C, src/types/pa_vrequest.h,  
           src/types/pa_vresponse.C, src/types/pa_vresponse.h,          * src/: classes/hash.C, include/pa_hash.h: - hash.contain =>
           src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,            hash.contains
           src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,  
           src/types/pa_vstatus.h, src/types/pa_vstring.C,  2007-12-27  misha
           src/types/pa_vstring.h, src/types/pa_vtable.C,  
           src/types/pa_vtable.h, src/types/pa_vvoid.h,          * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
           src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,            src/lib/cord/cord.vcproj, src/lib/gd/gd.vcproj,
           src/types/pa_vxnode.C, src/types/pa_vxnode.h,            src/lib/ltdl/ltdl.vcproj, src/lib/md5/md5.vcproj,
           src/types/pa_wcontext.C, src/types/pa_wcontext.h,            src/lib/pcre/pcre.vcproj, src/lib/pcre/pcre_dftables.vcproj,
           src/types/pa_wwrapper.h, src/types/types.dsp,            src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
           www/htdocs/.htaccess, www/htdocs/auto.p, www/htdocs/index.html:            src/lib/smtp/smtp.vcproj, src/main/main.vcproj,
           moved tempate_gc to HEAD            src/targets/cgi/parser3.vcproj,
             src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj: -
         * tests/: 001.html, 002.html, 003.html, 004.html, 005.html,            back to VS2003 because of Apache 1.3 module can't work if it was
           006.html, 007.html, 008.html, 009.html, 010.html, 011.html,            built in VS 2005.  with cgi all file so VS2003 project files can
           012.html, 013.html, 014.html, 015.html, 016.html, 017.html,            be easy converted to the new format.
           018.html, 019.html, 019paf2001.gif, 020.html, 021.html, 022.html,  
           023.html, 024.html, 025.html, 026.html, 027.html, 028.html,  2007-12-04  misha
           029.html, 030.html, 031.html, 032.html, 033.html, 034.html,  
           035.html, 036.html, 037.html, 038.html, 039.html, 040.html,          * src/types/pa_vcode_frame.h: - changes in comment
           041.html, 042.html, 043.html, 044.html, 045.html, 046.html,  
           047.html, 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p,  2007-11-29  misha
           052.html, 053.html, 054.html, 055.html, 056.html, 057.html,  
           058.html, 058_paf2000.png, 059.html, 060.html, 061.dat, 061.html,          * src/: types/pa_vcode_frame.h, main/execute.C: - code frame don't
           062.html, 063.html, 064.html, 065.html, 066.html, 067.html,            intercept strings any longer
           068.html, 069.html, 070.html, 071.html, 072.html, 073.html,  
           074.html, 075.html, 076.html, 077.html, 078.html, 079.html,          * tests/: 173.html, results/173.processed: - tests for
           080.html, 081.html, 082.html, 083.html, 084.html, 085.html,            $d[^date::now[]] $j{$d} $r[$j] -- must create date object in $r
           086.html, 087.html, 088.html, 089.html, 090.html, 091.html,            but not in main code frame
           092.html, 093.html, 094.html, 095.html, 096.html, 097.html,  
           098.html, 098font.gif, 099.html, 100.html, 101.html, 102.html,          * tests/: 172.html, results/172.processed: - more tests for pass
           103.html, 103mark.gif, 103paf2001.gif, 104.html, 105.html,            objects from code frames
           106.html, 107.html, 108.html, 108.xsl, 109.html, 110.html,  
           111.html, 112.html, 113.html, 114.html, 115.html, 116.html,  2007-11-27  misha
           117.html, 118.html, 119.html, 120.html, 121.html, 122.html,  
           123.html, 124.html, 125.html, 126.html, 127.html, 128.html,          * tests/: 152.html, results/152.processed: - tests for converting
           129.html, 130.html, 131.html, 132.html, 133.html, 134.html,            strings 'true'/'false' to bool were added
           135.html, 136.html, 137.html, 138.html, 139.html, 140.html,  
           141.html, Makefile, descript.ion, run_parser.sh, 022_dir/a.html,          * tests/152.html: - added checks for converting strings
           022_dir/b.txt, 022_dir/c.htm, 096_dir/163.jpg, 096_dir/188.jpg,            'true'/'false' to bool
           outputs/create-dir, results/001.processed, results/002.processed,  
           results/003.processed, results/004.processed,          * src/classes/string.C: - ^srting.bool[] now can convert to bool
           results/005.processed, results/006.processed,            not only strings with numbers but with values 'true'/'false' as
           results/007.processed, results/008.processed,            well
           results/009.processed, results/010.processed,  
           results/011.processed, results/012.processed,          * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: - buffer size
           results/013.processed, results/014.processed,            for parser3.log increased
           results/015.processed, results/016.processed,  
           results/017.processed, results/018.processed,          * src/main/pa_common.C: - remove_crlf optimize whitespaces now
           results/019.processed, results/020.processed,  
           results/021.processed, results/022.processed,          * src/include/pa_common.h: - remove_crlf return cstring size now
           results/023.processed, results/024.processed,  
           results/025.processed, results/026.processed,          * src/include/pa_types.h: - constant with buffer size for
           results/027.processed, results/028.processed,            parser3.log added
           results/029.processed, results/030.processed,  
           results/031.processed, results/032.processed,  2007-11-16  misha
           results/033.processed, results/034.processed,  
           results/035.processed, results/036.processed,          * tests/cat.sh: - script for tests for file::exec/cgi
           results/037.processed, results/038.processed,  
           results/039.processed, results/040.processed,          * tests/171.html: - tests for file::exec/cgi
           results/041.processed, results/042.processed,  
           results/043.processed, results/044.processed,          * tests/results/171.processed: - tests results for file::exec/cgi
           results/045.processed, results/046.processed,  
           results/047.processed, results/048.processed,  2007-11-15  misha
           results/049.processed, results/050.processed,  
           results/051.processed, results/052.processed,          * src/main/pa_exec.C: - fixed incorrect exec code for unix
           results/053.processed, results/054.processed,  
           results/055.processed, results/056.processed,          * src/classes/file.C: - .body must be set before analyzing cgi
           results/057.processed, results/058.processed,            headers
           results/059.processed, results/060.processed,  
           results/061.processed, results/062.processed,          * src/classes/file.C: - bugfix: we must transcode output fix EOLs
           results/063.processed, results/064.processed,            only if exec/cgi return anything.
           results/065.processed, results/066.processed,  
           results/067.processed, results/068.processed,  2007-11-14  misha
           results/069.processed, results/070.processed,  
           results/071.processed, results/072.processed,          * operators.txt: - info about new text|binary option for
           results/073.processed, results/074.processed,            file::exec/cgi was added
           results/075.processed, results/076.processed,  
           results/077.processed, results/078.processed,          * src/: include/pa_exec.h, main/pa_exec.C, classes/file.C: -
           results/079.processed, results/080.processed,            ^file:exec[[text|binary];script;...]
           results/081.processed, results/082.processed,  
           results/083.processed, results/084.processed,          * src/: include/pa_exception.h, classes/file.C, classes/image.C,
           results/085.processed, results/086.processed,            classes/string.C, classes/table.C: - more text strings moved to
           results/087.processed, results/088.processed,            the one place
           results/089.processed, results/090.processed,  
           results/091.processed, results/092.processed,  2007-11-09  misha
           results/093.processed, results/094.processed,  
           results/095.processed, results/096.processed,          * src/types/pa_vrequest.C: - $request:argv must be taint
           results/097.processed, results/098.processed,  
           results/099.processed, results/100.processed,          * ChangeLog: - $request:argv [patch from Sumo]
           results/101.processed, results/102.processed,  
           results/103.processed, results/104.processed,          * operators.txt: - $request:argv
           results/105.processed, results/106.processed,  
           results/107.processed, results/108.processed,          * src/: include/pa_request_info.h, types/pa_vrequest.C,
           results/109.processed, results/110.processed,            types/pa_vrequest.h, targets/cgi/parser3.C: - $request:argv
           results/111.processed, results/112.processed,  
           results/113.processed, results/114.processed,  2007-10-25  misha
           results/115.processed, results/116.processed,  
           results/117.processed, results/118.processed,          * buildall-with-xml, buildall-without-xml: - options preparations
           results/119.processed, results/120.processed,            for ./configure rewrited
           results/121.processed, results/122.processed,  
           results/123.processed, results/124.processed,          * src/main/: compile.tab.C, compile.y: - bug if parser.compile
           results/125.processed, results/126.processed,            error occure in unhandled_exception finally fixed
           results/127.processed, results/128.processed,  
           results/129.processed, results/130.processed,  2007-10-23  misha
           results/131.processed, results/132.processed,  
           results/133.processed, results/134.processed,          * tests/: 170.html, results/170.processed: - test for
           results/135.processed, results/136.processed,            @method[][result]
           results/137.processed, results/138.processed,  
           results/139.processed, results/140.processed,          * operators.txt: - added info about node.prefix and
           results/141.processed: merged(copied) to HEAD from template_gc            node.namespaceURI
   
         * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: more step          * src/classes/xnode.C: - xmlHasProp used instead of xmlGetProp
           towards \parser3project not having to be in root  
           * src/types/pa_vxnode.C: - DOM2 fields namespaceURI and prefix were
         * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c: apache            added for node and attribute
           module compiled [were minor unnecessary changes in lib/md5  
           interface]  2007-10-22  misha
   
         * src/include/pa_version.h: release          * src/types/pa_vmail.C: - content-transfer-encoding: 8bit added
   
         * parser3.dsw, src/main/pa_globals.C, www/htdocs/.htaccess:          * src/main/pa_request.C: - added const content-transfer-encoding
           relative paths to xml&gc libs  
           * src/include/pa_request.h: - added const content-transfer-encoding
         * src/classes/math.C: merged uuid bugfix            - ups. constants must be in lowercase (for search)
   
         * tests/: 141.html, results/141.processed: fixed bug with          * src/types/pa_vmail.C: - more constants used -
           too-small-a-buffer            content-transfer-encoding: 8bit added
   
         * src/classes/math.C: uuid bugfix          * src/main/pa_uue.C: - content-transfer-encoding moved out of here
   
         * tests/: 141.html, Makefile, results/005.processed,          * src/include/pa_request.h: - more constants
           results/030.processed, results/075.processed,  
           results/078.processed: to reflect date format change (were -          * src/types/pa_vmail.C: - constant renamed - $.content-id don't
           become ' ')            ommit anymore if $.content-disposition was specified - little
             refactoring
         * src/classes/math.C: uuid bugfix  
           * src/: include/pa_request.h, main/pa_request.C: - constant renamed
         * parser3.dsw, src/main/pa_globals.C, www/htdocs/.htaccess: few  
           paths for libxml debug/release changes  2007-10-17  misha
   
         * src/lib/md5/pa_md5c.c: PA_ -> pa_          * operators.txt: - info about
             table::create[nameless]{data}[>options<] was added
 2003-07-23  paf  
           * src/main/: compile.tab.C, compile.y: - if error occure while
         * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:            compile method don't put this method in methods table anymore.
           renamed a little [to move to comman naming conv]            in other case the parser coredumped if @unhandled_exception
             method can't be compiled because of parser.compile error.
         * src/targets/Makefile.am: apache13 splitted to simplify apache  
           build          * src/main/execute.C: - little code reformating
   
         * src/: include/pa_request.h, include/pa_stack.h, main/execute.C,          * src/main/pa_request.C: - little code reformating - comment
           main/pa_request.C, main/pa_sql_driver_manager.C,            changed
           main/pa_stylesheet_manager.C, targets/isapi/parser3isapi.dsp:  
           stack top_index() fixed  2007-10-16  misha
   
         * src/main/pa_globals.C: minor style changes          * tests/: 035.html, results/035.processed: - tests
             table::create[]{}[options] added
         * src/: classes/op.C, include/pa_sql_connection.h: connection  
           closing/caching fixed [connections were not closed/put to cache]          * src/classes/table.C: - table::create[]{} now accept 3rd param:
             options (only $.seperator[] yet)
 2003-07-22  paf  
   2007-10-10  misha
         * INSTALL: gc part updated stightly  
           * src/classes/table.C: - some contstants moved to pa_common.h -
         * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: updated to            some code changes
           new sapi interface  
   2007-10-02  misha
         * src/classes/file.C: comment on OS  
           * src/main/pa_uue.C: - memory usage during uuencode reduced more
         * src/main/pa_string.C: removed reduntant invariant check [there is            then three time as much. but base64 encoding method still use
           one deeper in cord lib]            less memory anyway.
   
         * src/main/pa_exec.C: on win32 bugfix in handling shbang  2007-09-17  misha
   
         * src/main/pa_memory.C: out of memory is no longer coredump          * operators.txt: - added info about $cookie:fields
   
         * INSTALL: disable-threads adviced          * src/types/pa_vcookie.C: - $cookie:fields available now
   
 2003-07-21  paf          * src/classes/hash.C: - some stuff for use with .for_each moved to
             common
         * src/classes/Makefile.am: removed circular dependency on classes.C  
           * src/include/pa_common.h: - some stuff for use with .for_each
         * src/classes/file.C: file::exec/cgi environment variables now must            moved here
           be UPPERCASE and A-Z 0-9 _-  
           * src/types/: pa_venv.C, pa_venv.h: - some strings moved to #define
         * src/classes/file.C: env passing fixed  
   2007-09-14  misha
         * src/main/pa_common.C: http:// CRLF now [merged from HEAD]  
           * buildall-with-xml: - new xml libs again =)
         * src/main/pa_common.C: http:// CRLF now  
   2007-08-28  misha
 2003-07-02  paf  
           * operators.txt: - texts about ^table.columns[[column name]]  and
         * operators.txt, src/types/pa_vstatus.C: renamed $memory:status            ^string.split[...][v][column name] were added
           fields to reflect their real meaning  
           * tests/: 168.html, 169.html, results/168.processed,
 2003-06-27  paf            results/169.processed: - tests for ^table.columns[[column name]]
             and ^string.split[...][v][column name] were added
         * src/: classes/file.C, include/pa_charset.h, include/pa_exec.h,  
           include/pa_hash.h, main/pa_charset.C: merged from HEAD          * src/classes/table.C: - new option ^table.columns[[column name]]
           file::exec/cgi .charset            was added
   
 2003-06-26  paf          * src/classes/string.C: - new option ^string.split[...;v;[column
             name]]
         * ChangeLog, src/classes/file.C, src/classes/hash.C,  
           src/classes/image.C, src/classes/op.C, src/classes/string.C,          * src/include/pa_exception.h: - error text message for
           src/classes/table.C, www/htdocs/.htaccess: fixed several            ^hash._keys[], ^table.columns[] and ^string.split[]
           uninitialized local structures.  notably ^hash.foreach now  
           inserts delimiters properly [were inserting it before first body]  2007-08-27  misha
   
 2003-06-24  paf          * src/main/untaint.C: - try to fix coredump on unix if print to
             body ^taint[sql][something] outside of connect
         * src/include/pa_hash.h: simplified HASH_ALLOCATES_COUNT  
           * tests/: 167.html, results/167.processed: - test for ^taint[sql]
 2003-06-20  paf            outside of connect
   
         * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,          * buildall-with-xml, buildall-without-xml: - strip parser3 was
           src/main/pa_globals.C: introducing            added (commented by default)
           $f[^file::load[binary;http://...]] $f.tables  
   2007-08-20  misha
 2003-06-06  paf  
           * operators.txt: - comment about new method ^node.hasAttributes[]
         * src/types/: pa_vhash.h: $hash.field lookup first now: along with            was added
           table. [were method lookup: inconsistent]  
           * src/classes/: file.C, math.C, op.C, string.C, xdoc.C: - more
 2003-06-02  paf            duplicated exception text strings were removed
   
         * src/include/pa_memory.h: empty string clone fixed to return          * src/include/pa_exception.h: - more exception text strings moved
           writable memory            here
   
         * src/main/pa_common.C: fix_line_breaks bug fix [terminating zero          * src/classes/table.C: - some duplicate exceptions' text strings
           were not appended] which violated string invariant            removed
   
 2003-05-30  paf          * src/classes/: file.C, hashfile.C, image.C, op.C, string.C,
             xdoc.C, xnode.C: - some duplicate exceptions' text strings
         * src/types/pa_value.C: date format now Sun, 06 Nov 1994 08:49:37            removed
           GMT  ; RFC 822, updated by RFC 1123 [as in HEAD]  
           * src/include/pa_exception.h: - some exception text strings movet
         * src/main/pa_common.C: date format now Sun, 06 Nov 1994 08:49:37            to pa_exception
           GMT  ; RFC 822, updated by RFC 1123  
           * tests/: 149.html, results/149.processed: - test for
         * src/: classes/file.C, classes/form.C, targets/cgi/parser3.C,            ^xnode.hasAttributes[] was added - some code changes
           targets/isapi/parser3isapi.C: initialized request_info properly  
           * src/classes/xnode.C: - DOM2 method ^xnode.hasAttributes[] was
         * src/classes/xnode.C: found minor bug, commended for future            added
   
 2003-05-28  paf  2007-08-17  misha
   
         * src/classes/form.C: request_info.content_length can't be <0,          * tests/: results/006.processed, results/059.processed, 006.html,
           size_t for some time            059.html: - more tests for match
   
 2003-05-26  paf          * tests/: 129.html, results/129.processed: - tests for
             ^table.hash[...][$.type[string|hash|table]] added
         * src/: classes/file.C, classes/string.C, main/pa_string.C: few  
           forgotten <0 changed to !=STRING_NOT_FOUND          * src/targets/cgi/parser3.C: - little syntax changes
   
         * src/classes/math.C: merged ffffu from HEAD          * src/: classes/math.C, targets/isapi/parser3isapi.C: - little
             syntax changes
 2003-05-11  paf  
           * src/targets/cgi/parser3.C, operators.txt: - annoying 'SIGPIPE'
         * src/main/pa_globals.C: xml memory debugging functions (ifdefed)            messages in parser3.log switched off by default. If someone
             really still need it: use $SIGPIPE(1)
         * src/types/: pa_vxdoc.h, pa_vxnode.h: think that found cause of  
           premature doc free.  transformed document had xmlDoc reference  2007-08-08  misha
           stored to non-gc-memory (libgdome) added holding-reference  
           * buildall-with-xml, buildall-without-xml: - remove libs source
 2003-04-29  paf            files by default since now
   
         * src/main/pa_globals.C: started digging on double free.  on win32  2007-08-07  misha
           found that that's perfectly normal.  
           * buildall-without-xml: - some option syntax changes
 2003-04-25  paf  
           * buildall-with-xml: - compile libxml2 without http support - some
         * src/classes/table.C: table.join bug fix  [bad limit check]            option syntax changes
   
         * src/classes/math.C: merged from HEAD: simpiler hash_string          * src/main/pa_xml_io.C: - will use parser file loader for xml needs
   
         * src/classes/math.C: snprintf(buf, 3) become (buf,2) and failed to  2007-08-06  misha
           print anything.  changed to quicker and simplier code  
           * buildall-with-xml: - moved to libxml2-2.6.29 and libxslt-1.1.21
         * src/classes/hash.C: allowed ^hash::create[^rem{xxx}]   [were to  
           strict a check]          * tests/: 160.html, results/160.processed: - cache test was
             rewrited
         * src/: classes/table.C, lib/md5/pa_md5c.c: minor compile errors  
   2007-07-06  misha
 2003-04-24  paf  
           * tests/: 153.html, results/153.processed: - added test for
         * src/include/pa_table.h: too strict assert loosened            ^math:sha1[string]
   
         * src/lib/: md5/pa_md5c.c, pcre/pcre.h: thanks to Ilia Soldis          * src/types/pa_vform.C: - bugfix: uploaded file name wasn't
           <soldis@infolio.ru> for reporing this ansi c fiolation syntax            transcoded
           report  
           * src/classes/math.C: - ^math:long2ip(long) and ^math:sha1[string]
 2003-04-21  paf            were added
   
         * src/targets/cgi/Makefile.am: pp3 added to .am  2007-06-28  misha
   
         * src/main/pa_globals.C: pcre memory management changed to use GC          * etc/parser3.charsets/windows-1251.cfg: - removed duplicated and
           memory            some incorrect chars
   
         * src/main/pa_globals.C: 2.5.6 version of libxml allows to install  2007-06-19  misha
           xmlMallocAtomic [author agreed to my suggestion], used that  
           * src/include/pa_hash.h: - methods generic_hash_code & hash_code
         * src/types/pa_vmail.C: ^mail:send[$.body backward compatibility            were moved on top because of gcc 4 had a problems during
             building.
         * src/: targets/cgi/parser3.C, types/pa_value.C, types/pa_value.h,  
           types/pa_vmail.C: attributed_meaning_to_string added  2007-06-18  misha
           L_UNSPECIFIED piece which was sortof OK, but violated string  
           invariant [assertion barked on that] changed to L_PASS_APPEND,          * tests/results/019.processed: - new image commited
           made that param obligatory  
   2007-06-09  misha
         * src/main/pa_string.C: String::ArrayFragment::append_positions bug  
           fixed [assert helped]          * src/classes/: op.C, table.C: - in while and table.select method
             as_expression used now
         * src/include/pa_string.h: assert added [looking for bug]  
           * src/types/pa_vmethod_frame.h: - method as_expression was added
         * src/main/pa_request.C: merged from HEAD: "x:..." and "\\..." file  
           names on Win32 considered disk-global  2007-06-08  misha
   
         * src/main/pa_request.C: "x:..." and "\\..." file names on Win32          * tests/: 166.html, results/166.processed: - test for
           considered disk-global            ^match[...][n]
   
 2003-04-18  paf          * tests/: 165.html, results/165.processed: - tests for loops
   
         * src/main/untaint.C: merged from HEAD: enabled '~' letter in          * src/lib/cord/include/private/cord_pos.h: - back to origin value
           filenames            because of no speed/memory optimisation but some proglems with
             long cycles occure
         * src/main/untaint.C: enabled '~' letter in filenames  
   2007-06-06  misha
 2003-04-16  paf  
           * src/classes/: op.C, table.C: - ^while(true){}, ^while(1){},
         * src/classes/file.C: small bug introduced in autoptr times fixed            ^table.select(true) and ^table.select(1) didn't works because of
             awaiting junction-param only. fixed.
         * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: merged from  
           HEAD  2007-05-24  misha
   
         * src/classes/table.C: fix: gcc reported tiny error          * src/: include/pa_os.h, main/pa_os.C: - 20 attempt to get lock
             with 0.5 secs interval
 2003-04-15  paf  
           * src/classes/op.C: - cache was rewrited. I hope it works with
         * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,            locking system now on unix
           src/lib/md5/pa_md5c.c, tests/141.html,  
           tests/results/141.processed, www/htdocs/.htaccess: merged from          * src/main/pa_os.C: - locks engines were rewrited: now we don't use
           head ^math:uuid[] ^math:uid64[] ^math:md5[string]            system locks which wait till other threads release it but try get
             lock, if fail wait 1 sec and make 10 attempts.
           test added: 141.html  
           * src/include/pa_os.h: - consts for blocking locks + some comments
         * operators.txt, src/classes/math.C: ^math:uid64[]            were added
   
         * src/classes/math.C: ^math:uuid[]          * src/lib/sdbm/apr_file_io.C: - wait till lock released while
             opening files
         * operators.txt, src/classes/math.C: ^math:uuid[]  
           * src/classes/table.C: - changes in includes. if unclude <sstream>
         * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,            after our classes on unix it can't be build
           src/lib/md5/pa_md5c.c: ^math:md5[string] 16-byte digest  
           * src/types/pa_vhashfile.C: - not needed code removed
         * operators.txt, src/classes/file.C, src/include/pa_common.h,  
           src/include/pa_config_fixed.h, src/main/pa_common.C:  2007-05-23  misha
           ^file::load[mode;name;     $.offset     $.limit  
           * src/: classes/file.C, classes/op.C, main/pa_common.C,
 2003-04-14  paf            include/pa_common.h: - cosmetic changes
   
         * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:  2007-05-18  misha
           started ^math:md5  
           * src/lib/cord/include/private/cord_pos.h: - rebalance tree not so
         * src/classes/table.C, src/include/pa_array.h,            often. it's give some speed increasing
           src/include/pa_table.h, src/main/pa_table.C, tests/140.html,  
           tests/results/140.processed: table $.reverse option works in          * tests/results/160.processed: - returned time corrected
           create&co table $.distinct[tables] bug fix merged  
           * tests/160.html: - time increased because on unix 1 mean nothing
         * src/: classes/table.C, include/pa_table.h: table            :(
           $.distinct[tables] bug fixed  
           * operators.txt: - added info about ^hash.contain[key]
         * src/classes/table.C: more warnings  
           * src/classes/hash.C: - added ^hash.contain[key]
         * src/include/pa_array.h, src/include/pa_table.h,  
           src/main/pa_table.C, www/htdocs/.htaccess: removed checks in          * src/include/pa_hash.h: - added method for checking key exists in
           table::set_current, moved them back to table::locate implemented            hash
           table::create/join ñ $.reverse  
   2007-05-07  misha
         * src/: include/pa_table.h, main/pa_array.C, main/pa_table.C:  
           removed checks in table::set_current, moved them back to          * src/include/pa_string.h: - was compilation error during build on
           table::locate            freebsd4
   
 2003-04-11  paf  2007-05-03  misha
   
         * operators.txt, src/classes/date.C, src/classes/table.C,          * src/classes/table.C: - option $.type[hash|string|table] was added
           src/include/pa_array.h, src/include/pa_common.h,            for ^table.hash[]
           src/include/pa_config_includes.h, src/include/pa_string.h,  
           src/include/pa_table.h, src/main/pa_request.C,          * src/classes/file.C: - comment removed
           src/main/pa_sql_driver_manager.C, src/main/pa_string.C,  
           src/main/pa_table.C, www/htdocs/.htaccess: merged from HEAD from  2007-04-26  misha
           before_append_array_limit_sense_change to  
           after_append_array_limit_sense_change          * src/types/: pa_vhashfile.C, pa_vhashfile.h: - while ::open the
             real files doesn't opened in place anymore
         * src/classes/table.C: typo  
   2007-04-24  misha
         * www/htdocs/.htaccess, operators.txt, src/classes/date.C,  
           src/classes/table.C, src/include/pa_array.h,          * src/classes/math.C: - I thought one more time and remove lg(N) :)
           src/include/pa_common.h, src/include/pa_config_includes.h,  
           src/include/pa_globals.h, src/include/pa_table.h,          * src/include/pa_exception.h: "static" removed
           src/main/pa_array.C, src/main/pa_globals.C,  
           src/main/pa_request.C, src/main/pa_sql_driver_manager.C,  2007-04-23  misha
           src/main/pa_string.C, src/main/pa_table.C:  
           append_array_limit_sense_change locate accepts options same as          * src/classes/math.C: ^math:lg(N) => ^math:log10(N)
           create new option: $.reverse(1)   [do not work in table::create]  
           * src/classes/math.C: added: - ^math:ln(N) (the same as
         * src/: include/pa_common.h, main/pa_common.C: gcc didn't like            ^math:log(N)) - ^math:lg(N)
           (stat xxx,  
           * tests/: 097.html, results/097.processed: - charsets converstion
         * src/classes/: table.C: typo            during ^file::load[text;http://...] added
   
         * tests/: 130.html, 131.html, 132.html, 133.html, 134.html,          * tests/: 164.html, results/164.processed: - check for set expires
           135.html, 136.html, 137.html, 138.html, 139.html, descript.ion,            as a date
           results/130.processed, results/131.processed,  
           results/132.processed, results/133.processed,          * tests/: 164.html, results/164.processed: - test for hashfile
           results/134.processed, results/135.processed,  
           results/136.processed, results/137.processed,          * src/classes/hashfile.C: - little comment changes
           results/138.processed, results/139.processed: added few mustfail  
           tests 130.html mustfail: empty regexp 131.html mustfail: invalid          * src/types/pa_vhashfile.C: - don't open hashfile files until 1st
           date/time 132.html mustfail: access to junction outside of            access
           context 133.html mustfail: access to junction outside of context,  
           case version 134.html mustfail: hash: adding a key inside of          * src/: classes/date.C, classes/double.C, classes/file.C,
           foreach 135.html mustfail: modifying system class 136.html            classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
           mustfail: $.name outside of $hash[here] 137.html mustfail:            classes/mail.C, classes/math.C, classes/op.C, classes/string.C,
           appendChild without import 138.html mustfail: invalid encoding            classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
           inside of xml 139.html mustfail: bad XPath            classes/xnode.h, include/pa_request.h, main/execute.C,
             main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
         * operators.txt, src/classes/table.C, tests/084.html,            main/pa_dictionary.C, main/pa_exec.C, main/pa_http.C,
           tests/125.html, tests/126.html, tests/127.html, tests/128.html,            main/pa_request.C, main/pa_sql_driver_manager.C, main/pa_table.C,
           tests/129.html, tests/results/125.processed,            types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
           tests/results/126.processed, tests/results/127.processed,            types/pa_vconsole.h, types/pa_vfile.h, types/pa_vhash.h,
           tests/results/128.processed, tests/results/129.processed: merged            types/pa_vimage.h, types/pa_vmail.C, types/pa_vmethod_frame.h,
           from HEAD ^table.hash[key][$.distinct[tables]]            types/pa_vstateless_class.C, types/pa_vstateless_class.h,
             types/pa_vtable.C, types/pa_vxdoc.h, types/pa_wcontext.C: -
           maked appropriate tests [changed one old nonconforming]            "parser.runtime" strings were removed
   
         * operators.txt, src/classes/table.C:          * src/classes/hashfile.C: - with .clear[] called files_delete()
           ^table.hash[key][$.distinct[tables]]            now.
   
         * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:          * src/types/: pa_vhashfile.C, pa_vhashfile.h: - .clear() removed.
           merged fix for found very old xml (dom) bug: were passing  
           domString objects and later ERROREOUSLY freed them          * src/include/pa_exception.h: - string constant with
             "parser.runtime" text was added
         * INSTALL, src/include/pa_charset.h, src/lib/Makefile.am,  
           src/main/pa_charset.C: re-added libgdome patch. regretfully  2007-04-20  misha
           libgdome bug can not be worked around  
           * operators.txt: - some comments changing
 2003-04-10  paf  
           * operators.txt: - added info about .^hashfile.release[],
         * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:            ^hashfile.clenaup[] and new ^string.match[][>N-option<]
           found very old xml (dom) bug: were passing domString objects and  
           later ERROREOUSLY freed them          * configure: =cheching for unsetenv
   
         * src/doc/string.dox, src/include/pa_memory.h,          * src/classes/hashfile.C: - ^hashfile.cleanup[],
           src/include/pa_string.h, src/lib/cord/cordbscs.c,            ^hashfile.release[] were added
           src/main/pa_string.C, src/types/pa_vform.C, src/types/pa_vform.h,  
           tests/123.html, tests/124.html, tests/results/001.processed,          * src/: main/pa_string.C, include/pa_string.h, classes/string.C: -
           tests/results/002.processed, tests/results/003.processed,            ^string.match[][] understand new option now: return number of
           tests/results/004.processed, tests/results/005.processed,            matches but not table wit results
           tests/results/006.processed, tests/results/008.processed,  
           tests/results/009.processed, tests/results/010.processed,          * src/types/: pa_vhashfile.C, pa_vhashfile.h: - hashfile can auto
           tests/results/011.processed, tests/results/012.processed,            reopen now
           tests/results/013.processed, tests/results/014.processed,  
           tests/results/015.processed, tests/results/016.processed,          * src/classes/op.C: - bug. must be false
           tests/results/017.processed, tests/results/018.processed,  
           tests/results/020.processed, tests/results/021.processed,          * configure.in: - checking for unsetenv was added
           tests/results/022.processed, tests/results/023.processed,  
           tests/results/024.processed, tests/results/025.processed,          * src/types/pa_vform.C: - some comments
           tests/results/026.processed, tests/results/027.processed,  
           tests/results/028.processed, tests/results/029.processed,  2007-04-18  misha
           tests/results/030.processed, tests/results/031.processed,  
           tests/results/032.processed, tests/results/033.processed,          * buildall-with-xml: moving to libxml2-2.6.28
           tests/results/034.processed, tests/results/035.processed,  
           tests/results/036.processed, tests/results/037.processed,          * buildall-with-xml, buildall-without-xml: added commented lines
           tests/results/038.processed, tests/results/039.processed,            with --disable-safe-mode option
           tests/results/040.processed, tests/results/041.processed,  
           tests/results/042.processed, tests/results/043.processed,          * operators.txt: - info about $form:files
           tests/results/044.processed, tests/results/045.processed,  
           tests/results/046.processed, tests/results/047.processed,  2007-04-17  misha
           tests/results/048.processed, tests/results/049.processed,  
           tests/results/050.processed, tests/results/051.processed,          * src/types/: pa_vform.C, pa_vform.h: - some code was modified -
           tests/results/052.processed, tests/results/053.processed,            $form:files was added
           tests/results/054.processed, tests/results/055.processed,  
           tests/results/056.processed, tests/results/057.processed,          * tests/: 163.html, results/163.processed: removing auto format
           tests/results/058.processed, tests/results/059.processed,  
           tests/results/060.processed, tests/results/061.processed,          * src/types/pa_vdate.h: - start adding unsetenv("TZ");
           tests/results/062.processed, tests/results/063.processed,  
           tests/results/064.processed, tests/results/065.processed,  2007-04-16  misha
           tests/results/066.processed, tests/results/067.processed,  
           tests/results/068.processed, tests/results/069.processed,          * tests/: 163.html, results/163.processed: - test for .int[],
           tests/results/070.processed, tests/results/071.processed,            floor, round, ceiling and .format[]
           tests/results/072.processed, tests/results/073.processed,  
           tests/results/074.processed, tests/results/075.processed,          * src/classes/file.C: - little optimization for getting args in
           tests/results/076.processed, tests/results/077.processed,            exec/cgi
           tests/results/078.processed, tests/results/079.processed,  
           tests/results/080.processed, tests/results/081.processed,  2007-04-13  misha
           tests/results/082.processed, tests/results/083.processed,  
           tests/results/084.processed, tests/results/085.processed,          * src/classes/file.C: - arguments for file::exec/cgi can be
           tests/results/086.processed, tests/results/087.processed,            specified now as s table with one column
           tests/results/088.processed, tests/results/089.processed,  
           tests/results/090.processed, tests/results/091.processed,  2007-03-27  misha
           tests/results/092.processed, tests/results/093.processed,  
           tests/results/094.processed, tests/results/095.processed,          * tests/: 162.html, results/162.processed: - test for
           tests/results/096.processed, tests/results/097.processed,            ^table.select(^condition[$t])
           tests/results/101.processed, tests/results/102.processed,  
           tests/results/104.processed, tests/results/105.processed,          * tests/results/auto.p: - load windows-1251 charset for some tests
           tests/results/106.processed, tests/results/107.processed,  
           tests/results/108.processed, tests/results/109.processed,          * tests/run_parser.sh: PARSER_CONFIG -> CGI_PARSER_CONFIG
           tests/results/110.processed, tests/results/111.processed,  
           tests/results/112.processed, tests/results/113.processed,          * tests/: results/161.processed, 161.html, 161_utf8.txt,
           tests/results/114.processed, tests/results/115.processed,            161_windows1251.txt: - added test for
           tests/results/116.processed, tests/results/117.processed,            ^file::load[text;/local/file.txt;$.charset[...]]
           tests/results/118.processed, tests/results/119.processed,  
           tests/results/120.processed, tests/results/121.processed,          * tests/: results/013.processed, 013.html: - added test for
           tests/results/122.processed, tests/results/123.processed,            checking $._default value while hash modifications
           tests/results/124.processed: new convention: char* never 0.  
           assert in cord on that          * tests/: 160.html, results/160.processed: - add test for
             ^cache[key](secs){code}, ^cache[] and ^cache(0)
         * src/main/pa_charset.C: couple more asserts  
   2007-03-22  misha
         * src/: main/pa_charset.C, include/pa_charset.h: little transcodes  
           speedup          * src/include/pa_common.h: - "charset" string defined for
             ^file::load[text;/local.txt] and ^table::load[/table.txt]
         * src/main/pa_charset.C: couple assertions on fantastic situations  
           added [may be those is the case now?]          * src/main/: pa_common.C, pa_http.C: - $.charset option for
             ^file::load[text;/local.txt] and ^table::load[/table.txt] was
         * src/main/pa_charset.C: bugfix on memory buffer overrun [but            added - not needed transcodes were removed from
           that's memory from gc_malloc, not from g_malloc :(, but would            ^file::load[...;http://...]
           hope]  
           * src/types/pa_vdate.h: - date.week was fixed - date.weekyear was
         * src/main/pa_charset.C: bugfix on memory buffer overrun [but            added
           that's memory from gc_malloc, not from g_malloc :(, but would  
           hope]          * src/classes/date.C: - date.week was fixed
   
         * src/main/pa_charset.C: checked custom malloc for returning 0          * operators.txt: - added info about date.weekyear
   
 2003-04-09  paf          * tests/: 159.html, results/159.processed: - tests for date.week
             and date.weekyear added
         * src/classes/date.C: merged ^date.roll changes  
   2007-03-15  misha
         * src/classes/date.C: ^date.roll bug fix  
           * src/classes/table.C: - enclose column numbers for nameless tables
         * src/classes/date.C: ^date.roll now throws less errors: month            as well
           shifts handles end of month situation by reducing day number  
           hour-hole shift reduces hour to recover  2007-03-14  misha
   
         * src/targets/cgi/pp3.cmd: custom profiling script: plist/ST <<          * src/targets/cgi/parser3.C: - bugxif. failed when request cgi
           Sort by function time  
           * src/classes/table.C: - table.save optimization: now required much
         * operators.txt, src/main/pa_charset.C, src/main/pa_common.C:            less memory
           http://   $.charset[] param done  
   2007-03-13  misha
         * tests/: 122.html, results/122.processed: 122 date test <= and ==  
           added [after volatile fix. passes on win&intel-solaris]          * tests/results/: 158.processed, 158.processes: - tests for
             table.save/table.load
 2003-04-08  paf  
           * tests/: 158.html, results/158.processes: - tests for
         * src/: classes/file.C, classes/op.C, classes/table.C,            table.save/table.load
           classes/xdoc.C, include/pa_charset.h, include/pa_charsets.h,  
           include/pa_common.h, include/pa_request_charsets.h,          * buildall-with-xml: libxml2: --without-ftp --without-docbook
           main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,  
           main/pa_exec.C, main/pa_request.C, main/untaint.C,          * buildall-with-xml: - pattern needed now for building
           types/pa_value.h, types/pa_vmail.C, types/pa_vrequest.C,  
           types/pa_vresponse.C: started http://   $.charset[] param and          * tests/results/097.processed: - added test results for xdoc::load
           http response charset detection just compiled.  todo:test            & xdoc::load[http://...]
   
         * src/main/pa_common.C: merged PA_USE_ALARM bugfix from HEAD          * tests/097.html: - added test for xdoc::load
   
         * src/: classes/string.C, include/pa_string.h, main/pa_string.C,  2007-03-12  misha
           main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vform.C,  
           types/pa_vmail.C: changed transcode param converntion  along with          * tests/: 107.html, results/107.processed: - added test for xpath
           string creating convention -- all strings are zero-terminated,            '//man'
           this allowed to fix one remaining String("123", 2) case  
   2007-03-01  misha
         * src/: classes/date.C, classes/file.C, classes/hash.C,  
           classes/op.C, classes/string.C, classes/table.C,          * tests/: 097.html, results/097.processed: - added test for
           include/pa_charset.h, include/pa_memory.h, include/pa_string.h,            creating xdoc from file
           main/compile.tab.C, main/pa_charset.C, main/pa_exec.C,  
           main/pa_request.C, main/pa_string.C, main/pa_uue.C,          * tests/: results/157.processed, 157.html: - added test for
           main/untaint.C, types/pa_vfile.C, types/pa_vfile.h,            file:move
           types/pa_vform.C, types/pa_vform.h, types/pa_vmail.C: pa_vform  
           violated String::invariant. started fixing [not compiled now]  2007-02-28  misha
   
         * src/classes/string.C, src/include/pa_string.h,          * src/classes/xdoc.C: - another attempt
           src/lib/cord/cordbscs.c, src/main/compile.tab.C,  
           src/main/compile.y, src/main/pa_string.C, src/main/untaint.C,          * src/classes/xdoc.C: - roll back last changes for a while
           src/targets/cgi/parser3.C, www/htdocs/.htaccess: number of string  
           style improvements & optimizations          * src/classes/xdoc.C, operators.txt: - ^xdoc::create[$file] added.
   
         * src/classes/xnode.C: =0 bug fix [left from autoptr default ctor          * src/classes/file.C: - under lock we create non-exist dir anyway
           :(]  
           * tests/results/099.processed: - ever send content-disposition to
         * src/main/untaint.C: removed redundant & in CORD_pos param passing            client with file
           [for it's a pointer really]  
           * tests/157.html: + test for file:copy
         * src/main/untaint.C: CORD_pos_advance turned out to have limit on  
           'n' param. worked that around  2007-02-26  misha
   
         * src/lib/cord/: Makefile.am, cordbscs.c, source.url: From: "Boehm,          * src/classes/file.C: - some similar strings moved to #define
           Hans" <hans_boehm@hp.com> To: "'Alexandr Petrosian (PAF)'"            instead of to be copy/pasted many times
           <PAF@design.ru>; "Boehm, Hans" <hans_boehm@hp.com> Sent: Tuesday,  
           April 08, 2003 2:16 AM Subject: RE: libgc 6.2.alpha4          * src/types/pa_vfile.h: - class name string ("file") moved to
           cord/cordbscs.c/CORD_cat bug [were: CORD__extend_path bug?            #define
   
           Thanks for the bug report and patch.  2007-02-20  misha
   
           I hadn't looked at this code in a while.  Reading it now, it          * configure.in: - added some strings for sqlite detection
           seems to me that the tests should also be ">= MAX_DEPTH" to  
           comply with the invariant, though that may not matter a lot.  I  2007-02-19  misha
           changed that, too.  
           * operators.txt: - some comments changes
           Hans  
           * buildall-with-xml, buildall-without-xml: - some modifications
 2003-04-07  paf  
   2007-02-17  misha
         * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:  
           merged from head:safe mode error message now includes numbers          * buildall-with-xml, buildall-without-xml: - moving to gc6.8
   
         * src/main/execute.C: n-th attempt to make a=a work with double.          * src/main/pa_request.C: - damn, i forgot to commit it while I
           problem: as_double returns it's result in fp-register compiler            change console behaviour
           optimizes access to that register after b->as_double, and just  
           compares ALREADY_STORED_VALUE with prev-calculated a->as_double  2007-02-12  misha
           from memory.  _SAME_ double values do not match here.  when  
           forced to REload fp-register, values do match.          * src/targets/cgi/parser3.C: - don't print headers if
             $console:line[data] was used during cgi execution.
           tried to make them volatile.  
           * src/types/pa_vconsole.h: - console class have bool flag now which
         * src/main/execute.C: n-th attempt to make a=a work with double.            marked as 'true' if class was used.
           problem: as_double returns it's result in fp-register compiler  
           optimizes access to that register after b->as_double, and just          * tests/: 152.html, results/152.processed: - more types was added
           compares ALREADY_STORED_VALUE with prev-calculated a->as_double            to test 152
           from memory.  _SAME_ double values do not match here.  when  
           forced to REload fp-register, values do match.          * src/types/: pa_vimage.C, pa_vimage.h: - fixed bug added while
             adding 'bool' (^if($image){} caused exception)
           tried to make them volatile.  
   2007-02-09  misha
         * src/types/pa_vobject.h: small style change  
           * tests/: 152.html, results/152.processed: - test alightly updated
         * src/: lib/cord/cordbscs.c, include/pa_string.h: CORD_cat bugfix  
           * tests/: 152.html, results/152.processed: - test rewrited
         * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C: safe  
           mode error message now includes numbers          * src/types/: pa_vxdoc.C, pa_vxdoc.h, pa_vxnode.C, pa_vxnode.h: -
             bugfix. I broke xdoc & xnode in expression
         * src/main/untaint.C, src/targets/cgi/parser3.C,  
           www/htdocs/.htaccess: unknown untaint lang now causes death  2007-02-08  misha
   
 2003-04-04  paf          * tests/: 152.html, results/152.processed: - add test for checking
             'def' for void, string, bool, int & double
         * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C:  
           incorportated pa_exec patch by From: "Victor Fedoseev"  2007-02-07  misha
           <vvf_ru@mail.ru> To: "Alexandr Petrosian (PAF)" <PAF@design.ru>  
           Sent: Thursday, January 23, 2003 9:14 AM          * operators.txt: - ^file:base64[filespec]  was added
   
           huge speedup on ^file::cgi with big result          * tests/results/153.processed: - result test for
             ^file:base64[filespec]  was updated
         * src/classes/table.C: sort table with 0 rows bug fixed  
           * tests/153.html: - test for ^file:base64[filespec]  was added
         * src/types/pa_vhash.h: $hash._default showed in foreach & co bug  
           fix http://i2/tasks/edit/?id=4493701604654042676          * src/types/pa_vconsole.h: - little optimization
   
           @main[] $with_default[  $.a[1]  $._default[default from          * src/classes/file.C: - ^file:base64[filespec]
           with_default] ] ^show[$with_default]  
           * src/main/pa_common.C: - definitions for ^file:base64[filespec]
           $to_add_to[     $.b[2] ] ^to_add_to.add[$with_default]  
           =$to_add_to.xxx=<br>          * src/include/pa_common.h: - declarations for
             ^file:base64[filespec]
           ^show[$to_add_to]  
           * src/types/pa_vcookie.C: - little optimization
           $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>  
           ^show[$cloned]  2007-02-06  misha
   
           @show[hash] ^hash.foreach[k;v]{         $k = $v <br>          * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: - some chars
             were temporary commented
           }  <hr>  
           * src/types/pa_vbool.h: - bugfix
         * src/classes/hash.C: $hash._default showed in foreach & co bug fix  
           http://i2/tasks/edit/?id=4493701604654042676          * tests/156.html: - added test for bool cookie
   
           @main[] $with_default[  $.a[1]  $._default[default from          * src/types/pa_vcookie.h: - not needed string "cookie" removed
           with_default] ] ^show[$with_default]  
           * tests/: 155.html, results/155.processed: - added test for check
           $to_add_to[     $.b[2] ] ^to_add_to.add[$with_default]            $.encloser[] option for table save/load
           =$to_add_to.xxx=<br>  
           * tests/: 153.html, 154.html, todo.txt: - two more tests added
           ^show[$to_add_to]  
   2007-02-05  misha
           $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>  
           ^show[$cloned]          * tests/results/152.processed: - newline at the end was missed
   
           @show[hash] ^hash.foreach[k;v]{         $k = $v <br>          * tests/results/141.processed: - math:md5 must be lowercased
   
           }  <hr>          * src/targets/cgi/parser3.C: - 2007 in help ;)
   
         * src/types/pa_vmail.C: mail receive: .txt attachemnts bug fix  2007-02-03  misha
           http://i2/tasks/edit/?id=4507350336410850921  
           * tests/results/: 150.processed, 151.processed, 152.processed: -
         * src/classes/xdoc.C: memory allocation func bugfix            test for bool added and some content length fixes
           http://i2/tasks/edit/?id=4499303470368629745  
           * tests/152.html: - test for bool added
         * src/classes/math.C: allowed random 1...  
           * buildall-with-xml: - moved to libxml2-2.6.27 and libxslt-1.1.20
         * src/classes/math.C: allowed random 0..  
           * operators.txt: - info bool class was added
         * src/main/pa_globals.C: exif mem leak  
           http://i2/tasks/edit/?id=4480590323629807263          * src/: classes/Makefile.am, classes/bool.C,
             classes/classes.vcproj, classes/double.C, classes/int.C,
         * src/: classes/classes.dsp, main/main.dsp,            classes/string.C, classes/void.C, classes/xnode.C,
           targets/cgi/parser3.dsp, types/pa_vmail.C, types/types.dsp: buf            include/pa_string.h, types/pa_vbool.h, types/pa_vclass.h,
           fix http://i2/tasks/edit/?id=4493946731322521294            types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
           $.to[billgates@microsoft.com BCc: send-spam-to@someemails.ru ]            types/pa_vjunction.h, types/pa_vproperty.C, types/pa_vproperty.h,
             types/pa_vstateless_class.C, types/pa_vstateless_class.h,
         * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,            types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h,
           lib/pcre/pcre.dsp, main/compile.tab.C, main/main.dsp,            types/types.vcproj: - bool class was added
           main/pa_globals.C, targets/cgi/parser3.dsp, types/types.dsp:  
           links to xml libs made relative, no need to unpack parser3project          * src/main/pa_request.C: - fix
           to /parser3project.  
   2007-01-18  misha
         * src/main/: compile.tab.C, compile.y, compile_tools.h: error  
           column more precise - tab handling bug fixed          * src/: main/pa_string.C, classes/string.C: - return table during
             ^string.match[][] even if no matched found.
         * src/main/: compile.tab.C, compile.y: more understandable error  
           message in case @CLASS with more then one line inside  2006-12-20  misha
   
         * src/targets/cgi/parser3.C: more understandable error message in          * src/types/: pa_method.h, pa_vfile.h: - some syntax changes [
           case of errors in @unhandled_exception            http://www.parser.ru/forum/?id=55598 ]
   
 2003-04-03  paf  2006-12-19  misha
   
         * INSTALL, src/include/pa_operation.h, src/include/pa_request.h,          * src/types/pa_vxdoc.C: - $xDoc is "xnode" == true now. more
           src/main/compile.tab.C, src/main/compile.y,            details: http://www.parser.ru/forum/?id=52359
           src/main/compile_tools.C, src/main/compile_tools.h,  
           src/main/execute.C, src/main/pa_request.C: debug info format          * src/main/pa_request.C: - always set content-disposition for
           simplified, now it's: OP_VALUE Operation::Origin << here value*            $response:body[hash here]. more details:
             http://www.parser.ru/forum/?id=52130
           higher limits:   file number (max: 255)   line number (max:  
           64535)   column number (max: 255)  2006-12-07  misha
   
         * src/classes/math.C: top limit          * operators.txt: - added info about bool params in cookie set
   
         * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:          * src/types/pa_vcookie.C: - bool param in cookies available now
           precise parse error position in case of            $cookie:name[   $.value[123]   $.secure(true)   $.httponly(true)
             ]
           ^bug ]  
           * src/types/: pa_value.C, pa_value.h, pa_vbool.h: - is_bool method
         * src/classes/op.C, src/main/pa_request.C, tests/042.html: test 042            was added
           changed to realities, and passed [bug fixed]  
   2006-12-02  misha
         * src/: classes/op.C, include/pa_request.h, main/compile.C,  
           main/compile.tab.C, main/compile.y, main/compile_tools.C,          * src/classes/file.C: - file_block_read used instead of native read
           main/compile_tools.h, main/pa_request.C: introducing  
           ^process...[main-method-alias]          * src/main/pa_common.C: - added file_block_read with read error
             detection - file_block_read used instead of native read
         * src/: classes/date.C, classes/image.C, classes/op.C,  
           classes/string.C, classes/table.C, classes/xdoc.C,          * src/include/pa_common.h: - added file_block_read declaration
           types/pa_vmethod_frame.h: MethodParams& now [methods without  
           params receive zero reference, but they are expected not to look  2006-12-01  misha
           there]  
           * operators.txt: - info about $var.CLASS_NAME was added
         * operators.txt, src/classes/date.C, src/classes/double.C,  
           src/classes/file.C, src/classes/hash.C, src/classes/image.C,          * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
           src/classes/int.C, src/classes/mail.C, src/classes/math.C,            $var.CLASS_NAME added
           src/classes/memory.C, src/classes/op.C, src/classes/response.C,  
           src/classes/string.C, src/classes/table.C, src/classes/void.C,          * operators.txt: - added info about ^file:copy[]
           src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,  
           src/main/execute.C, src/types/pa_method.h: MethodParams& now          * src/classes/file.C: - ^file:copy[from;fo] was added
           [methods without params receive zero reference, but they are  
           expected not to look there]  2006-11-20  misha
   
         * operators.txt, src/classes/op.C, src/include/pa_request.h,          * src/classes/date.C: - bug fix :)
           src/main/pa_request.C, src/types/pa_vmethod_frame.h:  
           ^process...[filename] useful for better error reporting  2006-11-17  misha
           [file/line/col]  
           * src/include/pa_common.h: - array in crc32 calculation was changed
         * src/: main/execute.C, types/pa_value.C, types/pa_value.h,            to static
           types/pa_vstring.h: slightly improved error messages text: 1. is  
           '%s', it 2. method undefined in case of ^void[]          * src/main/pa_common.C: - little optimization in getMonthDays -
             small changes in crc32 calculation
         * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,  
           include/pa_types.h, main/execute.C, main/pa_request.C: exception          * src/classes/date.C: - not needed code was removed
           handling done. now we have error columns todo: test it  
   2006-11-16  misha
         * src/: classes/op.C, include/pa_request.h: removed from trace 'a'  
           exception when ^try{    ^throw[a;1] }{    ^throw[b;2] }          * src/types/pa_vmail.C: - fix missed brakes
   
           this makes life easier: were: bad stack order -- were in          * src/types/pa_vmail.C: - mail:send now set content-type:
           exception catch unwind order, which didn't match execution order            multipart/related instead of multipart/mixed if file have
             $.content-id[]
           @main[] ^try{   ^first[] }{     ^throw[c;3] }  
   2006-11-15  misha
           @first[] ^throw[a;1]  
           * src/types/pa_vdouble.h: abs -> fabs
           showed throw a first throw b try  
   2006-11-14  misha
           which is no good  
           * operators.txt: - added info about ^file.md5[] and
         * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,            ^file:md5[file-name]
           main/compile.tab.C, main/execute.C, main/pa_request.C: strack  
           trace reset after handled exception [old bug fixed]          * src/classes/file.C: - ^file.md5[] and ^file:md5[file-name] were
             added
         * src/main/: compile.tab.C, compile.y: parse position old bug  
           fixed.  position reporting made precise [both, in parse erros and          * src/main/pa_common.C: - CRC32_MAX_BUFFER_SIZE was renamed to
           runtime errors]            FILE_BUFFER_SIZE
   
 2003-04-02  paf          * src/classes/math.C: - hex_string was moved to pa_common.h
   
         * src/: include/pa_operation.h, include/pa_request.h,          * src/include/pa_common.h: - hex_string was moved from math.C -
           main/compile.C, main/compile.tab.C, main/compile.y,            CRC32_MAX_BUFFER_SIZE was renamed to FILE_BUFFER_SIZE
           main/compile_tools.C, main/compile_tools.h, main/execute.C,  
           main/pa_exception.C, main/pa_request.C: debug info: started          * src/types/pa_vdouble.h: - incorrect frac detection with negative
           using.  todo:complete            values was fixed
   
         * src/classes/op.C, src/include/pa_operation.h,  2006-11-13  misha
           src/include/pa_request.h, src/main/compile.C,  
           src/main/compile.tab.C, src/main/compile.y,          * operators.txt: - added info about ^math:crc32[string],
           src/main/compile_tools.C, src/main/compile_tools.h,            ^file:crc32[file-name] & ^file.crc32[]
           src/main/execute.C, src/main/pa_request.C, www/htdocs/.htaccess:  
           prepared debug info todo:use it          * src/classes/math.C: - added ^math:crc32[string]
   
         * src/include/pa_operation.h: strange mistake fixed: forgot to          * src/classes/file.C: - some comments were changed - added
           return Operation class->union after switching from autoptrs.            ^file:crc32[file-name] and ^file.crc32[]
   
         * tests/: Makefile, results/108.processed, results/117.processed:          * src/: include/pa_common.h, main/pa_common.C: - some functions for
           meta considered OK [it's up to coder now to remove it not needed]            crc32 calculation added
   
         * src/main/pa_dictionary.C, tests/Makefile: replace bug fix [broke  2006-11-03  misha
           Dictionary constructor when moved to gc]  
           * src/include/pa_array.h: - not needed variable removed
         * src/main/pa_common.C: uncommented http:// file loading  
           * tests/: 150.html, 151.html, results/150.processed,
         * src/include/pa_array.h, src/main/execute.C,            results/151.processed: - 2 tests were added
           src/targets/cgi/parser3.C, tests/run_parser.sh: gif encoder bug  
           fix [gdGrowingBuf]          * src/include/: pa_array.h, pa_table.h: - table.locate & table.join
             with $.reverse(1) were fixed
         * configure.in, src/lib/Makefile.am, www/htdocs/.htaccess: removed  
           patches          * src/main/pa_http.C: - bug fix. now tainted data from $.form and
             query converted to $.charset during ^file::load[http://...]
         * configure, src/include/pa_config_auto.h.in,  
           src/main/pa_charset.C: --enable-assertions autoconf-ed  2006-11-02  misha
   
         * src/main/pa_common.C, www/htdocs/.htaccess: uncommented http://          * src/include/pa_table.h: ups. forget '=' char
           file loading  
           * src/include/pa_table.h: - one more fix in
         * src/: classes/xdoc.C, types/pa_vxdoc.h: removed ref leak in            .locate[...][$.reverse(1)]
           xdoc::create/load  
   2006-11-01  misha
         * src/: classes/form.C, classes/hash.C, classes/image.C,  
           classes/string.C, classes/table.C, classes/void.C,          * src/classes/math.C: - bug fix, details:
           include/pa_common.h, main/pa_common.C, main/pa_request.C,            http://www.parser.ru/forum/?id=53360
           main/pa_sql_driver_manager.C, main/pa_string.C: all calls to  
           String::String(str,helper_length) are checked.  found/fixed one          * src/include/pa_table.h: - bug fix during ^table.locate( condition
           place: $request:body now zero-terminated,            false for all records )[$.reverse(1)]
   
         * src/: classes/op.C, classes/table.C, include/pa_request.h,          * src/main/pa_http.C: - second param for this mid method is length
           main/compile_tools.C, main/execute.C, types/pa_value.h,            but not end_index so this method has error and can't detect
           types/pa_vbool.h, types/pa_vclass.h, types/pa_vdate.h,            charsets in next content-types: Content-type: text/html;
           types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,            charset="windows-1251" Content-type: text/html;
           types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,            charset="windows-1251"; Content-type: text/html;
           types/pa_vobject.C, types/pa_vobject.h, types/pa_vstring.h,            charset=windows-1251;
           types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,  
           types/pa_vxnode.h: more locally scoped vars in execute (more            only Content-type: text/html; charset=windows-1251 was fine
           easily optimizable)  
   2006-10-31  misha
         * src/: classes/table.C, include/pa_table.h, main/pa_table.C: few  
           for(size_t i=0...) -> for(Array_iterator... i(..); i.has_next()          * src/classes/file.C: - empty args in file::exec removed now
   
         * src/: include/pa_array.h, include/pa_stack.h,  2006-09-03  paf
           include/pa_string.h, main/compile_tools.C, main/main.dsp,  
           main/pa_table.C, types/pa_vmethod_frame.C: array get/put check          * src/classes/file.C: proper tainting of
           become assertion iterator in methodframe filler            ^file::exec/cgi[script;env;COMMAND;LINE;PARAMS]
   
         * src/: include/pa_array.h, include/pa_stack.h, main/main.dsp,  2006-06-09  paf
           targets/cgi/parser3.C: array::get/put inlined  
           * src/lib/pcre/pcre-2_08.tar.gz: one can easily find those
         * src/: lib/cord/cordbscs.c, main/pa_globals.C: globals.c:  
           gc_substitute_memory_management_functions +installed CORD_oom          * src/classes/table.C: formatting
           function  
           * src/classes/table.C: incorporated patch from misha: Sent:
         * configure.in, src/classes/xnode.C, src/include/pa_config_fixed.h,            Thursday, June 08, 2006 12:38 PM Subject: parser3: patch for
           src/include/pa_config_includes.h, src/include/pa_string.h,            ignoring string options for ^table.save[]
           src/lib/cord/cordbscs.c, src/main/pa_memory.C,  
           src/targets/cgi/parser3.C: converted debug hacks to ANSI          * src/classes/hash.C: incorporated patch from misha Sent:
           assertions started configure.in --enable-assertions            Wednesday, June 07, 2006 9:52 PM Subject: parser3: patch for
             $hash._default disappear while
 2003-04-01  paf  
           * operators.txt: ^mail:send[   $.file1[      $.value[file]
         * src/classes/xdoc.C, src/classes/xnode.h, src/include/pa_memory.h,            $.format[!uue|!base64] << new base64 option. default uue   ] ]
           src/main/pa_memory.C, src/targets/cgi/parser3.C,  
           src/types/pa_vxdoc.h, src/types/pa_vxnode.C,          * src/types/pa_vmail.C: misha: Sent: Wednesday, June 07, 2006 8:51
           src/types/pa_vxnode.h, www/htdocs/.htaccess: memory bug debugged            PM Subject: patch for base64 in ^mail:send[] %-)
           down: gdome uses glib memory, and stores last pointer to xmlDoc  
           there, gc misses that and collects valid memory fixed by  2006-04-09  paf
           remembering xmlDoc from dom object in xdoc.  todo: do something  
           with premature free of xdoc with xnodes/node values referring          * src/main/compile.tab.C: ` change compiled
           into it  
           * gnu.vcproj, operators.txt, parser3.sln,
         * src/classes/: mail.C: typo fix            src/classes/classes.vcproj, src/classes/file.C,
             src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
         * src/main/pa_memory.C: bug() to set bpt in (memory.c) some .am            src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
           changes            src/classes/xnode.C, src/include/pa_array.h,
             src/include/pa_config_fixed.h, src/include/pa_dir.h,
         * src/: include/pa_memory.h, main/pa_common.C, main/pa_globals.C,            src/include/pa_memory.h, src/include/pa_request.h,
           main/pa_memory.C: moved memory debugging to global level: to            src/include/pa_stack.h, src/lib/cord/cord.vcproj,
           pa_gc_malloc            src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
             src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
         * src/: main/pa_globals.C, targets/cgi/parser3.C: xml memory            src/lib/pcre/pcre_dftables.vcproj,
           debugging showed no errors. todo: debug parser memory            src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
             src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
         * src/targets/cgi/: parser3.C, parser3.dsp: more build            src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
           configurations            src/main/pa_cache_managers.C, src/main/pa_charset.C,
             src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
         * src/: classes/classes.dsp, include/pa_config_fixed.h,            src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
           main/compile.tab.C, main/main.dsp, main/pa_globals.C,            src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
           targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,            src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
           types/types.dsp: prepared xml-static configuration            src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
             src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
 2003-03-31  paf            src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
             src/types/pa_value.h, src/types/pa_vcookie.C,
         * INSTALL, src/classes/xdoc.C, src/main/pa_globals.C,            src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
           src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,            src/types/pa_vmail.C, src/types/pa_vresponse.C,
           www/htdocs/.htaccess: started xml lib memory debugging, simple            src/types/pa_vstatus.C, src/types/types.vcproj,
           checks failed: it seems that library does realloc(bad ptr), and            tests/descript.ion: + ^break[] ^continue[], in ^for, ^while,
           recording those ptrs in heap [for debugging] was bad: heap            ^menu, ^hash/hashfile.foreach
           situation changes = everything works fine  
           * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
         * src/: main/pa_charset.C, include/pa_charset.h: worked around            src/classes/file.C, src/classes/hash.C, src/classes/image.C,
           xmlRegisterCharEncodingHandler limitation [currently imposed            src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
           limit of 10 user-defined charsets]            src/classes/xnode.C, src/include/pa_array.h,
             src/include/pa_config_fixed.h, src/include/pa_dir.h,
 2003-03-28  paf            src/include/pa_memory.h, src/include/pa_request.h,
             src/include/pa_stack.h, src/lib/cord/cord.vcproj,
         * src/main/execute.C: execution stack copied to local register            src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
           variable, removed lots [~2e7) of memory accesses            src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
             src/lib/pcre/pcre_dftables.vcproj,
 2003-03-27  paf            src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
             src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
         * src/: classes/xdoc.C, main/pa_globals.C: XML memory funcs to GC            src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
           works in debug, but fails in release todo: fix that            src/main/pa_cache_managers.C, src/main/pa_charset.C,
             src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
         * src/: classes/xdoc.C, main/compile.tab.C, main/pa_globals.C,            src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
           targets/cgi/parser3.C: forgot to merge XML memory funcs            src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
           replacement from gc branch            src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
             src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
         * src/main/pa_exec.C: introducing append_help_length [radical            src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
           improvement here]            src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
             src/types/pa_value.h, src/types/pa_vcookie.C,
         * src/targets/cgi/parser3.C: GC_java_finalization turned off [was            src/types/pa_vmail.C, src/types/pa_vresponse.C,
           'not recommened' in gc.h, on win32 noticed no difference]            src/types/pa_vstatus.C, src/types/types.vcproj,
             tests/descript.ion: ! switched to VS2005 (projects and
         * src/include/pa_array.h: returned checked array get [were disabled            object<info explicitly typed>.for_each(, info)) +
           for debugging] result:not slower [don't understand that, it were            $response:field[] setting void means removing + grammar $name`
           INLINED] todo: find out a way of inlining it!            name stops now, for mysql `$field` + started ^break[]
             ^continue[], in ^for. TODO: to other iterators (while, menu,
         * src/: include/pa_string.h, lib/gc/include/gc.h,            foreach) + all log messages += [uri=, method=, cl=]
           lib/gc/include/gc_fake.h, main/compile.tab.C,  
           targets/cgi/parser3.C, main/pa_memory.C, targets/cgi/parser3.dsp:          * buildall-with-xml: merged . ftp paths update
           convention changed: all resulting strings are zero-terminated  
           * buildall-with-xml: . ftp paths update
         * src/: classes/date.C, classes/file.C, classes/hash.C,  
           classes/string.C, classes/table.C, classes/void.C,  2006-03-04  paf
           include/pa_string.h, lib/cord/cord.dsp, lib/cord/cordbscs.c,  
           lib/cord/include/cord.h, main/compile.tab.C, main/compile.y,          * src/main/: pa_string.C: merged from HEAD ! cache file curruption
           main/compile_tools.h, main/pa_common.C, main/pa_exec.C,            checks++ [thanks to Igor Zinkovsky for detailed report]
           main/pa_request.C, main/pa_string.C, main/pa_uue.C,  
           sql/pa_sql_driver.h, types/pa_value.C, types/pa_venv.h,          * src/main/pa_string.C: ! cache file curruption checks++ [thanks to
           types/pa_vfile.C, types/pa_vmail.C: introducing            Igor Zinkovsky for detailed report]
           append_help_length [radical improvement here]  
   2006-03-01  paf
         * src/: classes/memory.C, include/pa_array.h, include/pa_hash.h,  
           include/pa_memory.h, lib/cord/cord.dsp, lib/cord/cordxtra.c,          * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
           lib/gc/include/gc.h, main/pa_memory.C, targets/cgi/parser3.C,            \n to ' ' in
           targets/cgi/parser3.dsp, types/pa_vstatus.C: disabled gc, become  
           even slower  2006-02-18  paf
   
         * src/: classes/string.C, classes/table.C, include/pa_array.h,          * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
           include/pa_stack.h, include/pa_string.h, main/compile_tools.C,            \n to ' ' in
           main/pa_string.C, main/untaint.C, types/pa_vmethod_frame.C: fixed  
           clients of &get(): most to use non-ref version, some[in tight          * src/main/untaint.C: ! mail:send << changed \r or \n to ' ' in
           places] to get_unchecked_ref  
   2006-02-03  paf
         * src/doc/memory.dox: forgot to add  
           * src/main/pa_common.C: merged from HEAD ! bugfix: decoding from
         * src/classes/classes.dsp, src/classes/memory.C,            base64
           src/classes/xdoc.C, src/include/pa_array.h,  
           src/include/pa_request.h, src/include/pa_stack.h,          * src/main/pa_common.C: ! bugfix: decoding from base64
           src/include/pa_string.h, src/lib/cord/cord.dsp,  
           src/lib/ltdl/libltdl.dsp, src/lib/md5/md5.dsp,  2006-01-20  paf
           src/lib/pcre/pcre.dsp, src/main/compile.tab.C,  
           src/main/compile.y, src/main/compile_tools.C,          * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
           src/main/compile_tools.h, src/main/main.dsp,            economy fix
           src/main/pa_string.C, src/targets/cgi/parser3.C,  
           src/targets/cgi/parser3.dsp, src/types/pa_vmail.C,          * src/classes/: table.C: merged from HEAD ! bugfix
           src/types/pa_vmethod_frame.C, src/types/types.dsp,            ^table.save[$.encloser-s now handled properly
           www/htdocs/.htaccess: Array::put(index, T>>&<< removed after  
           Stack::pop wiping removed [moved to separate func] other Array &          * src/classes/table.C: ! bugfix ^table.save[$.encloser-s now
           removed            handled properly
   
 2003-03-26  paf  2006-01-19  paf
   
         * src/: classes/classes.dsp, classes/file.C, classes/op.C,          * buildall-with-xml, buildall-without-xml: merged from HEAD !
           classes/table.C, include/pa_array.h, include/pa_charset.h,            libgc:USE_MUNMAP activates merging of free memory blocks which
           include/pa_stack.h, include/pa_string.h, include/pa_table.h,            helps a lot in our case: after transform we want
           lib/cord/cord.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,            CORD(main.result)->cstr[big malloc]->transcode[big malloc]
           lib/pcre/pcre.dsp, main/compile.tab.C, main/compile.y,  
           main/main.dsp, main/pa_charset.C, main/pa_common.C,          * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
           main/pa_exec.C, main/pa_sql_driver_manager.C,            economy fix
           main/pa_stylesheet_manager.C, main/pa_table.C,  
           targets/cgi/parser3.C, targets/cgi/parser3.dsp,          * buildall-with-xml, buildall-without-xml: ! libgc:USE_MUNMAP
           types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,            activates merging of free memory blocks which helps a lot in our
           types/pa_vobject.C, types/pa_vobject.h, types/types.dsp:            case: after transform we want CORD(main.result)->cstr[big
           pre-evaluated .count() in some places            malloc]->transcode[big malloc]
   
         * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,  2006-01-17  paf
           lib/pcre/pcre.dsp, main/main.dsp, targets/cgi/parser3.dsp,  
           types/types.dsp: .dsp profiling updated          * src/types/pa_vhashfile.C: ! hashfile.foreach: counted pairs
             before reading them. got rid of reallocs = became quicker and
         * src/: classes/classes.dsp, lib/cord/cord.dsp,            less fragmentated
           lib/ltdl/libltdl.dsp, lib/md5/md5.dsp, main/main.dsp,  
           targets/cgi/parser3.dsp, types/types.dsp: started profiling  2005-12-29  paf
   
         * src/: classes/classes.dsp, lib/cord/cord.dsp, main/compile.tab.C,          * INSTALL, Makefile.am, buildall-with-xml, buildall-without-xml,
           main/compile_tools.h, main/main.dsp, targets/cgi/parser3.dsp,            configure, configure.in, src/include/pa_version.h,
           targets/isapi/parser3isapi.dsp, types/types.dsp: .dsp updated to            src/lib/ltdl/Makefile.am, src/lib/ltdl/acconfig.h,
           use lib/gc,lib/cord            src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
             src/lib/ltdl/config.sub, src/lib/ltdl/configure.in,
         * acsite.m4, src/classes/Makefile.am, src/classes/mail.C,            src/lib/ltdl/install-sh, src/lib/ltdl/ltmain.sh,
           src/classes/math.C, src/classes/op.C, src/include/pa_common.h,            src/lib/ltdl/missing: . merged from 3.2.1
           src/include/pa_config_auto.h.in, src/include/pa_config_fixed.h,  
           src/include/pa_config_includes.h, src/include/pa_request.h,          * Makefile.am, src/lib/ltdl/Makefile.am: . now site.m4 also
           src/include/pa_sql_driver_manager.h, src/include/pa_string.h,            packaged when 'make dist', so do configure companion files in
           src/include/pa_stylesheet_connection.h, src/include/pa_version.h,            src/lib/ltdl
           src/lib/Makefile.am, src/lib/cord/Makefile.am,  
           src/lib/cord/include/Makefile.am,          * src/lib/ltdl/: Makefile.am, acconfig.h, acinclude.m4,
           src/lib/cord/include/private/Makefile.am, src/main/Makefile.am,            config.guess, config.sub, configure.in, install-sh, ltmain.sh,
           src/main/pa_exec.C, src/main/pa_string.C, src/main/untaint.C,            missing: . now config_auto.h is created with configure [were
           src/targets/cgi/Makefile.am, src/types/Makefile.am,            constant]
           src/types/pa_vclass.h, src/types/pa_vcookie.h,  
           src/types/pa_vform.h, src/types/pa_vhash.h,          * INSTALL: . references to documentation and some clarification
           src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.h,  
           src/types/pa_vresponse.h, src/types/pa_vstateless_class.h,          * buildall-with-xml, buildall-without-xml: . farawell doc
           src/types/pa_vstatus.C, src/types/pa_vstatus.h,            indication
           src/types/pa_vtable.h, src/types/pa_vxdoc.h: configured math  
           funcs ported pa_exec          * Makefile.am: . dist+=buildall*
   
         * src/lib/: cord/include/gc.h, gc/include/gc.h: introducing lib/gc  2005-12-28  paf
   
         * src/lib/cord/include/: cord.h, ec.h, gc.h, private/cord_pos.h:          * configure: . 3.2.1
           bundled gc includes  
           * INSTALL, buildall-with-xml, buildall-without-xml: + started to
         * src/classes/op.C, src/include/pa_array.h,            simplify build process, see INSTALL
           src/include/pa_sql_connection.h, src/include/pa_string.h,  
           src/include/pa_version.h, src/main/compile.tab.C,  2005-12-26  paf
           src/main/compile.y, src/main/execute.C, src/main/pa_common.C,  
           src/main/pa_exception.C, src/main/pa_request.C,          * configure: ver
           src/main/pa_string.C, src/targets/cgi/parser3.C,  
           src/targets/cgi/parser3.dsp, www/htdocs/.htaccess: a number of          * configure.in, src/include/pa_version.h, src/main/compile.tab.C:
           bugfixes [while testing first real site (aval)]            version
   
 2003-03-25  paf  2005-12-21  paf
   
         * operators.txt, src/main/pa_sql_driver_manager.C,          * src/main/: compile.tab.C, main.vcproj: . win32: grammar is now
           src/types/pa_vstatus.C: $status.memory used free since_compact            compiled with bison 1.875b, it reports unexpected token names
           process  
   2005-12-19  paf
         * src/: include/pa_sql_connection.h, main/pa_globals.C,  
           main/untaint.C, sql/pa_sql_driver.h: untaint.C L_SQL          * src/: main/compile.tab.C, types/pa_vxnode.h: ! bugfix xnode now
             holds a link to xmlNode to prevent premature gc(xmlNode)
         * src/main/: pa_charset.C, untaint.C: untaint.C L_MAIL_HEADER  
           * src/classes/classes.vcproj, src/include/pa_config_fixed.h,
         * src/main/pa_request.C, src/main/untaint.C, src/types/pa_value.C,            src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
           src/types/pa_value.h, src/types/pa_vfile.h,            src/main/main.vcproj, src/main/pa_globals.C,
           src/types/pa_vobject.C, src/types/pa_vobject.h,            src/targets/cgi/parser3.vcproj,
           src/types/pa_vstring.C, src/types/pa_vstring.h, tests/121.html,            src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj,
           tests/results/121.processed: untaint.C L_URI            configure, configure.in, src/include/pa_version.h: . killing
             gdome [what a relief]
         * operators.txt, src/classes/Makefile.am, src/classes/classes.dsp,  
           src/classes/op.C, src/main/pa_request.C, src/types/Makefile.am,          * tests/: 097.html, 106.html, 108.html, 110.html, 112.html,
           src/types/pa_venv.h, src/types/types.dsp, www/htdocs/.htaccess,            113.html, 114.html, 115.html, 116.html, 117.html, Makefile,
           src/classes/memory.C, src/types/pa_vmemory.h: ^memory:compact[]            run_parser.sh, results/001.processed, results/002.processed,
             results/003.processed, results/004.processed,
         * tests/results/109.processed: it was a bug in parser. updated 109            results/005.processed, results/006.processed,
           test result            results/008.processed, results/009.processed,
             results/010.processed, results/011.processed,
         * src/classes/xdoc.C, tests/Makefile: fixed transform params2            results/012.processed, results/013.processed,
             results/014.processed, results/015.processed,
         * src/main/pa_charset.C, src/targets/cgi/parser3.C, tests/Makefile,            results/016.processed, results/017.processed,
           tests/results/107.processed: fixed dom language [values are now            results/018.processed, results/020.processed,
           considered tainted.  it was a bug in parser. updated 107 test            results/021.processed, results/022.processed,
           result            results/023.processed, results/024.processed,
             results/025.processed, results/026.processed,
         * src/classes/xdoc.C: fixed transform params            results/027.processed, results/028.processed,
             results/029.processed, results/030.processed,
         * src/: include/pa_stylesheet_manager.h,            results/031.processed, results/032.processed,
           main/pa_stylesheet_manager.C: fixed stylesheet caching            results/033.processed, results/034.processed,
             results/035.processed, results/036.processed,
         * src/: include/pa_memory.h, main/pa_charset.C: memory: new 'new'            results/037.processed, results/038.processed,
           overloads for structure handling            results/039.processed, results/040.processed,
             results/041.processed, results/042.processed,
         * src/: classes/image.C, classes/xdoc.C, classes/xnode.C,            results/043.processed, results/044.processed,
           include/pa_string.h, main/pa_string.C, types/pa_vxnode.C: removed            results/045.processed, results/046.processed,
           StringBody(0) ambiguilty, introducting static            results/047.processed, results/048.processed,
           StringBody::Format(int)            results/049.processed, results/050.processed,
             results/051.processed, results/052.processed,
         * src/: main/pa_request.C, types/pa_vxnode.C: vxnode compiled xml            results/053.processed, results/054.processed,
           linked            results/055.processed, results/056.processed,
             results/057.processed, results/058.processed,
         * src/types/pa_vxdoc.C: vxdoc compiled            results/059.processed, results/060.processed,
             results/061.processed, results/062.processed,
         * src/: classes/xnode.C, classes/xnode.h, include/pa_memory.h,            results/063.processed, results/064.processed,
           types/pa_vxdoc.h, types/pa_vxnode.h: xnode.C compiled, doc/node            results/065.processed, results/066.processed,
           finalizers isntalled            results/067.processed, results/068.processed,
             results/069.processed, results/070.processed,
         * src/: classes/image.C, classes/xdoc.C, classes/xnode.h,            results/071.processed, results/072.processed,
           doc/exception.dox, doc/index.dox, include/pa_charset.h,            results/073.processed, results/074.processed,
           include/pa_memory.h, include/pa_request.h, include/pa_string.h,            results/075.processed, results/076.processed,
           main/pa_charset.C, main/pa_memory.C, main/pa_string.C: xdoc.C            results/077.processed, results/078.processed,
           compiled todo: xnode.C / finalizers            results/079.processed, results/080.processed,
             results/081.processed, results/082.processed,
         * src/doc/string.dox: updated: new string internals            results/083.processed, results/084.processed,
             results/085.processed, results/086.processed,
 2003-03-24  paf            results/087.processed, results/088.processed,
             results/089.processed, results/090.processed,
         * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,            results/091.processed, results/092.processed,
           include/pa_charset.h, include/pa_config_fixed.h,            results/093.processed, results/094.processed,
           include/pa_request.h, include/pa_stylesheet_connection.h,            results/095.processed, results/096.processed,
           include/pa_stylesheet_manager.h, main/pa_charset.C,            results/097.processed, results/099.processed,
           main/pa_exception.C, main/pa_globals.C, main/pa_request.C,            results/100.processed, results/101.processed,
           main/pa_stylesheet_manager.C, types/pa_vxdoc.h,            results/102.processed, results/104.processed,
           types/pa_vxnode.h: started XML            results/105.processed, results/106.processed,
             results/107.processed, results/108.processed,
         * src/main/: pa_common.C, pa_sql_driver_manager.C: http://            results/109.processed, results/110.processed,
             results/111.processed, results/112.processed,
         * src/: classes/file.C, classes/image.C, classes/mail.C,            results/113.processed, results/114.processed,
           include/pa_string.h, main/pa_common.C,            results/115.processed, results/117.processed,
           main/pa_sql_driver_manager.C: introducing string[body]::pos(char)            results/119.processed, results/120.processed,
             results/121.processed, results/122.processed,
         * src/: classes/file.C, classes/image.C, classes/mail.C,            results/123.processed, results/124.processed,
           include/pa_memory.h, include/pa_string.h, main/pa_common.C,            results/125.processed, results/126.processed,
           main/pa_request.C, main/pa_sql_driver_manager.C,            results/127.processed, results/128.processed,
           types/pa_vimage.h: size_t pos everywhere checks changed to check            results/129.processed, results/130.processed,
           for eq STRING_NOT_FOUND            results/131.processed, results/132.processed,
             results/133.processed, results/134.processed,
         * src/main/pa_string.C, src/main/untaint.C, tests/Makefile: string            results/135.processed, results/136.processed,
           optimize bit implemented            results/138.processed, results/139.processed,
             results/140.processed, results/141.processed,
         * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:            results/142.processed, results/143.processed,
           String::ArrayFragment::append_positions fixed            results/144.processed, results/145.processed,
             results/146.processed, results/147.processed,
         * src/: classes/table.C, include/pa_string.h, main/pa_string.C:            results/148.processed, results/149.processed, results/auto.p: .
           String::this_starts fixed            now works if we turn off default auto.p
   
         * src/main/pa_string.C, tests/Makefile: string::pos fixed          * configure: . makes
   
         * src/: include/pa_hash.h, main/execute.C, main/pa_string.C:          * src/types/pa_vxnode.C: . less warnings
           hashcode implemented fully, including per-char callback [it can  
           be - substr CORD node]          * src/types/pa_vxnode.C, tests/142.html, tests/144.html,
             tests/145.html, tests/149.html, tests/descript.ion,
         * src/: include/pa_array.h, main/compile.tab.C: gif encoding            tests/outputs/d.cmd, tests/results/142.processed,
           rewritten to rewalloc with 100byte buf ahead            tests/results/143.processed, tests/results/144.processed,
             tests/results/145.processed, tests/results/146.processed,
         * src/classes/image.C, src/classes/op.C, src/classes/table.C,            tests/results/147.processed, tests/results/148.processed,
           src/include/pa_string.h, src/main/compile.tab.C,            tests/results/149.processed: . removed .nodeValue from all node
           src/main/compile.y, src/main/execute.C, src/main/pa_common.C,            types other than 5 (grabbed piece from gdome)
           src/main/untaint.C, tests/Makefile: attempt to do gif encoding to  
           CORD_ec [bad] would rewrite as realloc now          * tests/: 137.html, results/137.processed: . not handled this case
             yet. code does not hang from inserting parent into child,
         * src/: classes/date.C, classes/file.C, classes/form.C,            considering thing minor issue -- nodes are removed from source
           classes/image.C, classes/math.C, classes/op.C, classes/table.C,            anyway, don't know why shold that be an error after all
           include/pa_cache_managers.h, include/pa_charsets.h,  
           include/pa_common.h, include/pa_request.h,          * src/targets/cgi/parser3.C: . style
           include/pa_sql_driver_manager.h, include/pa_table.h,  
           main/pa_charset.C, main/pa_exception.C, main/pa_exec.C,          * src/classes/xnode.C: . "xml.dom" . xnode.select* now works on
           main/pa_globals.C, main/pa_request.C, main/pa_uue.C,            xdoc too [were barking "not element"]
           targets/isapi/parser3isapi.C, types/pa_value.C, types/pa_value.h,  
           types/pa_vmail.C, types/pa_vmethod_frame.C,  2005-12-16  paf
           types/pa_vstateless_class.h: 2*2 worked :)  
           * tests/: 146.html, 147.html, 148.html: . more tests
         * parser3.dsw, src/classes/date.C, src/classes/file.C,  
           src/include/pa_exec.h, src/include/pa_string.h,          * src/classes/xnode.C: . also bark on possible errors
           src/main/pa_exec.C, src/main/pa_sql_driver_manager.C: empty run  
           passed OK          * src/types/: pa_vxdoc.C, pa_vxnode.C, pa_vxnode.h: + xdoc DOM
             props
         * src/: classes/hash.C, classes/string.C, classes/table.C,  
           types/pa_value.C: all linked todo: debug          * src/: types/pa_value.h, types/pa_vvoid.h, main/compile.tab.C,
             main/compile.y: merged from HEAD ! fixed overoptimized
         * src/: classes/mail.C, main/pa_request.C, targets/cgi/parser3.C,            ^call(false) case. (confused it with ^call[] case)
           types/pa_vstateless_class.C: all compiled.  todo:link  
           * src/main/: compile.tab.C, compile.y: ! fixed overoptimized
         * src/types/pa_wcontext.C: pa_wcontext.C compiled            ^call(false) case. (confused it with ^call[] case)
   
         * src/types/pa_vtable.C: pa_vtable.C compiled          * tests/: 142.html, 143.html, 144.html, 145.html: . dom [part]
   
         * src/types/pa_vstring.C: pa_vstring.C compiled          * tests/: 006.html, 034.html, 057.html, Makefile, make_tests.cmd,
             results/001.processed, results/002.processed,
         * src/types/pa_vstatus.C: pa_vstatus.C compiled            results/003.processed, results/004.processed,
             results/005.processed, results/006.processed,
         * src/types/: pa_vmath.C, pa_vmethod_frame.C, pa_vmethod_frame.h,            results/008.processed, results/009.processed,
           pa_vobject.C, pa_vrequest.C, pa_vresponse.C,            results/010.processed, results/011.processed,
           pa_vstateless_class.C, pa_vstateless_class.h:            results/012.processed, results/013.processed,
           pa_vstateless_class.C compiled            results/014.processed, results/015.processed,
             results/016.processed, results/017.processed,
         * src/: classes/xdoc.C, types/pa_vmail.C, types/pa_vmail.h,            results/018.processed, results/019.processed,
           types/pa_vmath.C: pa_vmail.C compiled            results/020.processed, results/021.processed,
             results/022.processed, results/023.processed,
         * src/types/: pa_vhash.C, pa_vimage.C: pa_vimage.C compiled            results/024.processed, results/025.processed,
             results/026.processed, results/027.processed,
         * src/types/pa_vform.C: pa_vform.C compiled            results/028.processed, results/029.processed,
             results/030.processed, results/031.processed,
         * src/types/pa_vfile.C: pa_vfile.C compiled            results/032.processed, results/033.processed,
             results/034.processed, results/035.processed,
         * src/types/: pa_value.h, pa_vclass.C, pa_vcookie.C,            results/036.processed, results/037.processed,
           pa_vstateless_class.C: pa_vcookie.C compiled            results/038.processed, results/039.processed,
             results/040.processed, results/041.processed,
         * src/: classes/string.C, types/pa_value.C, types/pa_value.h,            results/042.processed, results/043.processed,
           types/pa_vhash.h: pa_value.C compiled            results/044.processed, results/045.processed,
             results/046.processed, results/047.processed,
         * src/: main/execute.C, main/pa_string.C, types/pa_wcontext.h:            results/048.processed, results/049.processed,
           classes.lib main.lib compiled            results/050.processed, results/051.processed,
             results/052.processed, results/053.processed,
         * src/classes/void.C: void.C compiled            results/054.processed, results/055.processed,
             results/056.processed, results/057.processed,
         * src/: classes/string.C, classes/table.C, include/pa_string.h,            results/058.processed, results/059.processed,
           main/pa_string.C, types/pa_vtable.C, types/pa_vtable.h: table.C            results/060.processed, results/061.processed,
           compiled            results/062.processed, results/063.processed,
             results/064.processed, results/065.processed,
         * src/: classes/string.C, include/pa_request.h,            results/066.processed, results/067.processed,
           include/pa_string.h, main/pa_string.C: string.C compiled            results/068.processed, results/069.processed,
             results/070.processed, results/071.processed,
         * src/: classes/op.C, classes/string.C, classes/table.C,            results/072.processed, results/073.processed,
           classes/void.C, include/pa_sql_connection.h, include/pa_string.h,            results/074.processed, results/075.processed,
           main/pa_request.C, main/pa_string.C: op.C compiled            results/076.processed, results/077.processed,
             results/078.processed, results/079.processed,
         * src/classes/: math.C, op.C: math.C compiled            results/080.processed, results/081.processed,
             results/082.processed, results/083.processed,
         * src/: classes/mail.C, classes/string.C, classes/table.C,            results/084.processed, results/085.processed,
           types/pa_vmail.h: mail.C compiled            results/086.processed, results/087.processed,
             results/088.processed, results/089.processed,
         * src/classes/: int.C, table.C: int.C compiled            results/090.processed, results/091.processed,
             results/092.processed, results/093.processed,
         * src/: classes/hash.C, classes/image.C, classes/string.C,            results/094.processed, results/095.processed,
           classes/table.C, include/pa_memory.h, include/pa_string.h,            results/096.processed, results/097.processed,
           main/pa_memory.C, types/pa_vimage.h, types/pa_vmail.C: image.C            results/099.processed, results/101.processed,
           compiled            results/102.processed, results/104.processed,
             results/105.processed, results/106.processed,
         * src/: classes/hash.C, classes/string.C, classes/table.C,            results/107.processed, results/108.processed,
           classes/void.C, classes/xdoc.C, include/pa_request.h,            results/109.processed, results/110.processed,
           include/pa_sql_connection.h: hash.C compiled            results/111.processed, results/112.processed,
             results/113.processed, results/114.processed,
         * src/: classes/classes.C, classes/classes.awk, classes/classes.h,            results/115.processed, results/116.processed,
           classes/date.C, classes/double.C, classes/file.C, classes/form.C,            results/117.processed, results/118.processed,
           classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,            results/119.processed, results/120.processed,
           classes/math.C, classes/op.C, classes/response.C,            results/121.processed, results/122.processed,
           classes/string.C, classes/table.C, classes/void.C,            results/123.processed, results/124.processed,
           classes/xdoc.C, classes/xnode.C, include/pa_memory.h,            results/125.processed, results/126.processed,
           include/pa_request.h, include/pa_sapi.h, include/pa_string.h,            results/127.processed, results/128.processed,
           main/pa_string.C, types/pa_vdate.h, types/pa_vmethod_frame.h:            results/129.processed, results/130.processed,
           file.C table.C compiled            results/131.processed, results/132.processed,
             results/133.processed, results/134.processed,
         * src/: include/pa_string.h, main/pa_string.C, main/pa_uue.C,            results/135.processed, results/136.processed,
           main/untaint.C: main.lib compiled            results/137.processed, results/138.processed,
             results/139.processed, results/140.processed,
 2003-03-21  paf            results/141.processed: . refreshed old tests, made them work
             without auto.p (in utf8) . things noted: . gif got encoded
         * src/: classes/op.C, include/pa_cache_managers.h,            differently . exif 0000:00:00 decoded now into 0000:00:00 (were
           include/pa_sql_connection.h, include/pa_sql_driver_manager.h,            some strange year)
           include/pa_stylesheet_manager.h, main/pa_exception.C,  
           main/pa_globals.C, main/pa_sql_driver_manager.C,          * INSTALL: . revived linux libgc fix
           sql/pa_sql_driver.h, types/pa_vimage.C: pa_sql_driver_manager.C  
           compiled          * INSTALL, configure.in, src/lib/Makefile.am: . sweetest part [no
             glib/gdome in INSTALL and patches]
         * src/: classes/hash.C, classes/image.C, classes/op.C,  
           classes/xdoc.C, classes/xnode.C, include/pa_common.h,          * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
           include/pa_hash.h, include/pa_request.h, include/pa_string.h,            include/pa_charset.h, include/pa_config_includes.h,
           main/compile.C, main/pa_common.C, main/pa_request.C,            include/pa_globals.h, include/pa_memory.h, include/pa_request.h,
           types/pa_vmail.C, types/pa_vresponse.C, types/pa_vxnode.C:            include/pa_xml_exception.h, lib/cord/Makefile.am,
           pa_request.C compiled            lib/cord/cord.vcproj, lib/cord/cordbscs.c, lib/cord/cordprnt.c,
             lib/cord/cordxtra.c, main/compile.tab.C, main/pa_charset.C,
         * src/: classes/hash.C, classes/mail.C, classes/op.C,            main/pa_globals.C, main/pa_memory.C, main/pa_request.C,
           include/pa_request.h, main/execute.C, main/pa_request.C,            main/pa_stylesheet_connection.C, main/pa_xml_exception.C,
           types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,            types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
           types/pa_vhash.h, types/pa_vimage.C, types/pa_vmethod_frame.h,            types/pa_vxnode.h: . started killing gdome
           types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,  
           types/pa_vresponse.h, types/pa_vtable.C: pa_request.C 50%  2005-12-13  paf
           compiled  
           * src/main/: pa_request.C: merged from HEAD ! when code in
         * src/: include/pa_exec.h, include/pa_string.h, main/pa_exec.C,            @unhandled_exception thrown another exception, print correct
           main/pa_string.C: pa_exec.C compiled [win32 only for now]  todo:            origin (earlier code in catch of exception inside of
           on unix            @unhandled_exception grabbed parent_frame(original_exception)
             origin and printed it, instead of true origin)
         * src/: include/pa_charset.h, include/pa_charsets.h,  
           include/pa_exec.h, main/compile.tab.C, main/pa_charset.C,          * src/main/pa_request.C: ! when code in @unhandled_exception thrown
           main/pa_charsets.C, main/pa_dictionary.C, main/pa_exec.C:            another exception, print correct origin (earlier code in catch of
           pa_charsets.C compiled            exception inside of @unhandled_exception grabbed
             parent_frame(original_exception) origin and printed it, instead
         * src/: classes/image.C, classes/mail.C, classes/op.C,            of true origin)
           include/pa_request.h, include/pa_string.h, main/compile.tab.C,  
           main/compile.y, main/execute.C, main/pa_common.C,  2005-12-09  paf
           main/pa_request.C, types/pa_junction.h, types/pa_method.h,  
           types/pa_vcode_frame.h, types/pa_vimage.h,          * INSTALL: . updated INSTALL doc to work around linux stack base
           types/pa_vmethod_frame.h: execute.C compiled            detection problem, due to change in gc6.4 code
   
         * src/: classes/classes.C, classes/classes.h, classes/date.C,          * src/main/: pa_string.C: merged from 3.1.5 ! regex tainting were
           classes/double.C, classes/file.C, classes/form.C, classes/hash.C,            ignored in ^string.matched :(
           classes/image.C, classes/int.C, classes/mail.C, classes/math.C,  
           classes/op.C, classes/string.C, classes/table.C, classes/void.C,          * src/main/pa_string.C: ! regex tainting were ignored in
           classes/xdoc.C, classes/xnode.C, classes/xnode.h,            ^string.matched :(
           include/pa_cache_managers.h, include/pa_charsets.h,  
           include/pa_common.h, include/pa_exec.h, include/pa_memory.h,          * ChangeLog, INSTALL, configure, configure.in, src/classes/date.C,
           include/pa_operation.h, include/pa_request.h, include/pa_sapi.h,            src/include/pa_config_fixed.h, src/include/pa_version.h,
           include/pa_sql_driver_manager.h, include/pa_string.h,            src/main/compile.y, src/main/compile_tools.h,
           include/pa_stylesheet_connection.h,            src/main/pa_charset.C, src/main/pa_common.C,
           include/pa_stylesheet_manager.h, include/pa_table.h,            src/main/pa_globals.C, src/main/pa_string.C,
           main/compile.C, main/compile.tab.C, main/compile.y,            src/targets/cgi/getopt.c, src/targets/isapi/parser3isapi.C,
           main/compile_tools.C, main/compile_tools.h, main/execute.C,            src/types/pa_vmail.C: . merged latest fixes from 3.2.0
           main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,  
           main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C,  2005-12-08  paf
           main/pa_string.C, main/pa_stylesheet_manager.C, main/untaint.C,  
           targets/cgi/parser3.C, targets/isapi/parser3isapi.C,          * src/types/pa_vmail.C: merged from 3.2.0 ! bcc line longer then
           types/pa_junction.h, types/pa_method.h, types/pa_value.C,            500 chars now handled OK [were wrapped on 500th char according to
           types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,            rfc, but sendmail failed to unwrap it properly]
           types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,  
           types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,          * src/types/pa_vmail.C: ! bcc line longer then 500 chars now
           types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,            handled OK [were wrapped on 500th char according to rfc, but
           types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,            sendmail failed to unwrap it properly]
           types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,  
           types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,          * src/targets/isapi/parser3isapi.C: . less warnings
           types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,  
           types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,          * src/targets/isapi/parser3isapi.C: . undone some strange change
           types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,            since 3.1.5
           types/pa_vresponse.h, types/pa_vstateless_class.C,  
           types/pa_vstateless_class.h, types/pa_vstateless_object.h,          * src/targets/isapi/parser3isapi.C: . merged from 3.1.5 release
           types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,            link fixes
           types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,  
           types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,          * src/: classes/date.C, include/pa_config_fixed.h,
           types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,            main/compile.tab.C, main/compile.y, main/compile_tools.h,
           types/pa_wcontext.h, types/pa_wwrapper.h: introducing StringBody            main/pa_charset.C, main/pa_common.C, main/pa_globals.C,
           [C++ CORD wrapper]            main/pa_string.C, targets/cgi/getopt.c: . less warnings
   
         * src/: lib/cord/cordbscs.c, main/pa_string.C: test14 [bug fixed]          * src/include/pa_config_fixed.h: . removed outdated string origins
             [in current storage scheme there's no place for them. someday we
         * src/: classes/file.C, include/pa_charset.h, main/pa_charset.C:            can add third CORD to store origins and special version of parser
           $file::exec/cgi[script;    $.charset[this is script's charset]            which stores origins there [separate binary]]
   
           command line, env values, input got transcoded before call  2005-12-07  paf
           stdout, stderr got transcoded after call  
           * src/targets/isapi/parser3isapi.C: . now links in release mode
         * src/classes/file.C: ^file::exec/cgi now does not pass post data  
           by default.  use: ^file::exec[...;$.stdin[$request.body]          * src/include/pa_version.h: makefiles
   
         * src/main/pa_common.C: } typo bug fix          * src/include/pa_version.h: . not beta
   
         * src/main/pa_common.C: } typo bug fix          * configure, configure.in, src/include/pa_version.h: not beta
   
 2003-03-20  paf  2005-12-06  paf
   
         * src/: include/pa_string.h, lib/cord/cordbscs.c, main/pa_string.C,          * src/types/: pa_wcontext.C, pa_wcontext.h: ! after long discussion
           main/untaint.C: cord bug fix, but still errors todo: clear out            [some details here http://i2/tasks/edit/?id=4869912143891354460]
             decided to undo the change ^call[$void] passes void. now it will
         * src/include/pa_string.h: more tests            pass empty string again.
   
         * src/main/pa_string.C: string.pos fixed          * src/main/: compile.tab.C, compile.y: . version readded
   
         * src/lib/: ltdl/config_fixed.h, ltdl/configure, ltdl/configure.in,          * src/classes/op.C: . in this version there is no ^switch[$nothing]
           ltdl/libltdl.dsp, ltdl/ltdl.c, ltdl/ltdl.h, pcre/dftables.c,            = ^switch[void] problem
           pcre/get.c, pcre/internal.h, pcre/maketables.c, pcre/pcre.c,  
           pcre/pcre.h, pcre/pcre_parser_ctype.c, pcre/study.c: undone bad  2005-12-01  paf
           replaces  
           * src/classes/op.C: mreged from HEAD . bugfix ^switch[$void_value]
         * src/: classes/image.C, include/pa_dictionary.h,            caused ^case[string] to be coerced to double since searching
           include/pa_string.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,            value were not string (it was vvoid)
           lib/pcre/internal.h, lib/pcre/pcre.c, lib/pcre/study.c,  
           main/compile.tab.C, main/pa_dictionary.C, main/pa_string.C,          * src/classes/op.C: . bugfix ^switch[$void_value] caused
           main/untaint.C, types/pa_vmail.C: more tests [bugs fixed]            ^case[string] to be coerced to double since searching value were
             not string (it was vvoid)
         * src/include/pa_string.h: warning  
           * INSTALL: . compiled with       libxml2 = 2.6.22       libxslt =
         * src/include/pa_string.h: this_starts fixed            1.1.15       glib = 1.2.10       gdome2 = 0.8.1
   
         * src/: include/pa_string.h, main/pa_string.C: added: assertion on  2005-11-30  paf
           new String ctor & append params convention  
           * src/types/pa_vdate.h: merged from HEAD: ! bugfix: to drop TZ on
         * src/: classes/file.C, classes/hash.C, classes/image.C,            win32 must putenv("TZ="), on unix works only putenv("TZ")
           classes/mail.C, classes/op.C, classes/string.C, classes/table.C,  
           classes/xdoc.C, include/pa_common.h, include/pa_memory.h,          * src/types/pa_vdate.h: ! bugfix: to drop TZ on win32 must
           include/pa_string.h, main/compile.tab.C, main/pa_common.C,            putenv("TZ="), on unix works only putenv("TZ")
           main/pa_exception.C, main/pa_exec.C,  
           main/pa_sql_driver_manager.C, main/pa_string.C,          * INSTALL: . xml libs versions updated
           main/pa_stylesheet_manager.C, main/untaint.C,  
           targets/isapi/parser3isapi.C, types/pa_vimage.C,          * src/main/pa_globals.C: //20051130 trying to remove this, author
           types/pa_vmail.C: more tests OK            claims that fixed a lot there // 20040920 for now both
             workarounds needed. wait for new libxml/xsl versions
         * src/: include/pa_array.h, include/pa_hash.h, include/pa_memory.h,  
           include/pa_string.h, main/pa_memory.C, main/pa_string.C: test:  2005-11-28  paf
           gc/exit runned OK  
           * src/classes/table.C: merged from HEAD: ! nameless table has
         * src/types/pa_vmail.C: another naming problem: should not name            columns==0
           vars like that: unpredictable close caused problems with later  
           sending mail: Mar 20 06:39:53 pt-6 sendmail[19044]: File          * src/classes/table.C: ! nameless table has columns==0
           descriptors missing on startup: stdin; Bad file number  
           * src/main/pa_http.C: merged from HEAD: ! status line check made
           todo: find out why so many filters(stream) here. probably wrong?            earlier [was totally wrong]
   
         * src/: include/pa_dictionary.h, include/pa_string.h,          * src/main/pa_http.C: ! status line check made earlier [was totally
           main/pa_common.C, main/pa_dictionary.C, main/pa_string.C,            wrong]
           main/untaint.C: test compiled  
   2005-11-25  paf
         * src/: classes/image.C, classes/mail.C, classes/math.C,  
           classes/string.C, include/pa_dictionary.h, include/pa_hash.h,          * src/include/pa_array.h: -this reduces speed(table::load) strange.
           include/pa_memory.h, include/pa_string.h, lib/cord/cordbscs.c,            undoing for now...
           lib/cord/cordxtra.c, lib/pcre/dftables.c, lib/pcre/get.c,  
           lib/pcre/maketables.c, lib/pcre/pcre.c, lib/pcre/pcre.h,          * src/include/pa_version.h: -this reduces speed(table::load),
           lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,            strange. undoing
           main/compile.tab.C, main/pa_common.C, main/pa_dictionary.C,  
           main/pa_exec.C, main/pa_memory.C, main/pa_request.C,          * src/classes/op.C: merged from HEAD + ^while(){}[SEPARATOR]
           main/pa_string.C, main/untaint.C, types/pa_vfile.h,  
           types/pa_vmail.C: untaint.C 99% [except mail&sql&optimize]          * src/classes/op.C: + ^while(){}[SEPARATOR]
   
         * parser3.dsw, src/classes/file.C, src/classes/image.C,          * src/include/pa_array.h: + optimistics added: all arrays (table
           src/classes/op.C, src/classes/string.C, src/classes/table.C,            rows) now grow size*=2, like in .NET ArrayList.EnsureCapacity,
           src/classes/xdoc.C, src/classes/xnode.C, src/include/pa_common.h,            this speeds things up and saves memory a LOT! (not noticed
           src/include/pa_memory.h, src/include/pa_request.h,            negative effect on syntetic tests, future will tell...)
           src/include/pa_request_charsets.h,  
           src/include/pa_sql_connection.h, src/include/pa_string.h,          * src/include/pa_memory.h: . removed GC_DEBUG for debug version, it
           src/main/compile.tab.C, src/main/execute.C,            changed gc_malloc implementation, which obscured profiling
           src/main/pa_charset.C, src/main/pa_common.C,  
           src/main/pa_exception.C, src/main/pa_exec.C,          * src/classes/table.C: merged from HEAD: + optimized
           src/main/pa_request.C, src/main/pa_sql_driver_manager.C,            table::load/sql, now row ArrayString-s allocated with
           src/main/pa_stylesheet_manager.C, src/main/untaint.C,            columns.count() elements and don't always grow from
           src/sql/pa_sql_driver.h, src/targets/cgi/parser3.C,            count=3[realloc,realloc]
           src/targets/isapi/parser3isapi.C, src/types/pa_value.C,  
           src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,          * src/classes/table.C: + optimized table::load/sql, now row
           src/types/pa_venv.h, src/types/pa_vform.C, src/types/pa_vmail.C,            ArrayString-s allocated with columns.count() elements and don't
           src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,            always grow from count=3[realloc,realloc]
           src/types/pa_vobject.C, src/types/pa_vresponse.C,  
           src/types/pa_vstatus.C, src/types/pa_vstring.C,          * src/classes/table.C: merged from HEAD: . ^table.save unused
           src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,            buffer after save
           src/types/pa_vxnode.C, src/types/pa_wcontext.h: untaint.C 30%,  
           pa_common.C [done, without http for now]          * src/classes/table.C: . ^table.save unused buffer after save
   
 2003-03-19  paf  2005-11-24  paf
   
         * src/: classes/date.C, classes/form.C, classes/hash.C,          * configure.in: . merged glib2-config patch
           classes/image.C, classes/mail.C, classes/op.C, classes/xdoc.C,  
           classes/xnode.C, include/pa_array.h, include/pa_config_fixed.h,          * configure.in: + trying to find glib2-config
           include/pa_exception.h, include/pa_memory.h, include/pa_sapi.h,  
           include/pa_string.h, include/pa_table.h, main/compile.C,          * src/: classes/file.C, include/pa_common.h, main/execute.C,
           main/compile_tools.C, main/execute.C, main/pa_charset.C,            main/pa_common.C, main/pa_request.C: merged from HEAD: ! changed
           main/pa_common.C, main/pa_exception.C, main/pa_request.C,            file/dir_readable to simple file/dir_exist, this would help in
           main/pa_socks.C, main/pa_string.C, main/pa_table.C,            situations "class not found because .p file has bad rights" << in
           main/untaint.C, targets/cgi/parser3.C, targets/cgi/parser3.dsp,            that case error would be explicit "access denied to 'this' file"
           types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.h,  
           types/pa_vform.C, types/pa_vmail.C, types/pa_vmethod_frame.h,          * aclocal.m4, configure, src/include/pa_config_auto.h.in: makefiles
           types/pa_vstateless_class.h, types/pa_vtable.C,  
           types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.C,          * src/: classes/file.C, include/pa_common.h, main/execute.C,
           types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,            main/pa_common.C, main/pa_request.C: ! changed file/dir_readable
           types/pa_wwrapper.h: started test            to simple file/dir_exist, this would help in situations "class
             not found because .p file has bad rights" << in that case error
         * src/lib/pcre/: dftables.c, get.c, maketables.c, pcre.c, pcre.dsp,            would be explicit "access denied to 'this' file"
           pcre.h, pcre_parser_ctype.c, study.c: restored bad replaces  
           * src/: classes/file.C, include/Makefile.am, include/pa_common.h,
         * src/: classes/op.C, include/pa_array.h, include/pa_memory.h,            include/pa_http.h, main/Makefile.am, main/main.vcproj,
           include/pa_string.h, main/pa_string.C: string compiled todo: test            main/pa_common.C, main/pa_http.C: merged from HEAD: +!
           it            ^file::exec/cgi[script;$.charset[changed]
             $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
         * src/: classes/classes.dsp, classes/string.C, classes/table.C,            encoded in $.charset charset
           include/pa_array.h, include/pa_common.h, include/pa_dictionary.h,  
           include/pa_exception.h, include/pa_string.h, include/pa_table.h,          * src/classes/file.C: +! ^file::exec/cgi[script;$.charset[changed]
           lib/cord/cord.dsp, main/compile.tab.C, main/main.dsp,            $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
           main/pa_common.C, main/pa_string.C, targets/cgi/parser3.dsp,            encoded in $.charset charset
           types/pa_method.h, types/pa_value.h, types/pa_vmethod_frame.C,  
           types/pa_vmethod_frame.h, types/types.dsp: string          * src/: include/Makefile.am, include/pa_common.h,
           reimplementation with cord+array<fragment>: 70%            include/pa_http.h, main/Makefile.am, main/main.vcproj,
             main/pa_common.C, main/pa_http.C: . extracted http:// into
 2003-03-18  paf            separate file [preparation for
             ^file::cgi[script;$.form[$.field1[]
         * src/: classes/date.C, classes/file.C, classes/form.C,  
           classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,  2005-11-22  paf
           classes/op.C, classes/string.C, classes/table.C, classes/xdoc.C,  
           classes/xnode.C, include/pa_hash.h, include/pa_string.h,          * src/: include/pa_version.h, main/compile.tab.C: makefiles
           main/pa_string.C, types/pa_vmail.C: lots of replacements, todo:we  
           can ignore lang in cmp and pos really,             but would          * acinclude.m4, configure.in: . merged underquting fixes
           split properly!  
           * src/include/pa_config_auto.h.in: configure+makes
         * src/lib/cord/: cord.dsp, cordbscs.c, cordprnt.c, cordxtra.c: gc:  
           cord part made parser/src/lib: it's not compiled into libgc by          * src/classes/op.C: . overmerged a little
           default  
           * src/main/compile.tab.C: Makefile
         * parser3.dsw, src/classes/classes.dsp, src/classes/classes.h,  
           src/classes/date.C, src/classes/double.C, src/classes/file.C,          * src/main/: pa_common.C: . less gcc warnings
           src/classes/form.C, src/classes/hash.C, src/classes/image.C,  
           src/classes/int.C, src/classes/mail.C, src/classes/math.C,          * src/classes/op.C: merged from HEAD: + $exception.handled[cache]
           src/classes/op.C, src/classes/response.C, src/classes/string.C,            now reports original exception if we have no old cache
           src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,  
           src/classes/xnode.C, src/classes/xnode.h,          * src/classes/op.C: + $exception.handled[cache] now reports
           src/include/Makefile.am, src/include/pa_cache_managers.h,            original exception if we have no old cache
           src/include/pa_charset.h, src/include/pa_charsets.h,  
           src/include/pa_common.h, src/include/pa_dictionary.h,          * src/: classes/op.C, include/pa_string.h, main/untaint.C: merged
           src/include/pa_exception.h, src/include/pa_exec.h,            from HEAD: + ^taint/untaint[regex] << escapes these:
           src/include/pa_globals.h, src/include/pa_hash.h,            \^$.[]|()?*+{}
           src/include/pa_memory.h, src/include/pa_pool.h,  
           src/include/pa_request.h, src/include/pa_request_charsets.h,          * src/: classes/op.C, include/pa_string.h, main/untaint.C: +
           src/include/pa_sapi.h, src/include/pa_sql_connection.h,            ^taint/untaint[regex] << escapes these: \^$.[]|()?*+{}
           src/include/pa_sql_driver_manager.h, src/include/pa_string.h,  
           src/include/pa_stylesheet_connection.h,          * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
           src/include/pa_stylesheet_manager.h, src/include/pa_table.h,            getenv-ed variable, which does not work both on win32&unix.
           src/include/pa_uue.h, src/lib/pcre/get.c, src/main/Makefile.am,            copied old TZ value now
           src/main/compile.C, src/main/compile.tab.C,  
           src/main/compile_tools.C, src/main/compile_tools.h,          * src/types/pa_vdate.h: merged from 3.1.5: ! date TZ save/restore
           src/main/execute.C, src/main/main.dsp, src/main/pa_charset.C,            stored pointer to getenv-ed variable, which does not work both on
           src/main/pa_charsets.C, src/main/pa_common.C,            win32&unix. copied old TZ value now
           src/main/pa_dictionary.C, src/main/pa_exception.C,  
           src/main/pa_exec.C, src/main/pa_globals.C, src/main/pa_memory.C,          * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
           src/main/pa_pool.C, src/main/pa_request.C,            getenv-ed variable, which does not work both on win32&unix.
           src/main/pa_sql_driver_manager.C, src/main/pa_string.C,            copied old TZ value now
           src/main/pa_stylesheet_manager.C, src/main/pa_table.C,  
           src/main/pa_uue.C, src/main/untaint.C, src/targets/cgi/parser3.C,          * src/types/pa_vresponse.C: merged from HEAD: + $response:headers
           src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,            access to internal hash
           src/types/pa_junction.h, src/types/pa_method.h,  
           src/types/pa_value.C, src/types/pa_value.h,          * src/types/pa_vresponse.C: + $response:headers access to internal
           src/types/pa_vclass.C, src/types/pa_vclass.h,            hash
           src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,  
           src/types/pa_vcookie.h, src/types/pa_vdate.h,          * src/targets/isapi/parser3isapi.C: merged from HEAD: +
           src/types/pa_vdouble.h, src/types/pa_venv.h,            GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
           src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,            isapi] this reduces number of "GC Warning: Repeated allocation of
           src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,            very large block" messages to only important onces
           src/types/pa_vimage.C, src/types/pa_vimage.h,  
           src/types/pa_vint.h, src/types/pa_vmail.C, src/types/pa_vmail.h,          * src/targets/isapi/parser3isapi.C: +
           src/types/pa_vmath.C, src/types/pa_vmath.h,            GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
           src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,            isapi] this reduces number of "GC Warning: Repeated allocation of
           src/types/pa_vobject.C, src/types/pa_vobject.h,            very large block" messages to only important onces
           src/types/pa_vrequest.C, src/types/pa_vrequest.h,  
           src/types/pa_vresponse.C, src/types/pa_vresponse.h,          * src/classes/string.C: merged from HEAD: + removed limitation on
           src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,            ^string/int/double:sql{}[$.default[({param style})] ]
           src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,  
           src/types/pa_vstatus.h, src/types/pa_vstring.C,          * src/classes/string.C: + removed limitation on
           src/types/pa_vstring.h, src/types/pa_vtable.C,            ^string/int/double:sql{}[$.default[({param style})] ]
           src/types/pa_vtable.h, src/types/pa_vvoid.h,  
           src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,          * src/main/pa_common.C: merged from HEAD: + removed "use either uri
           src/types/pa_vxnode.C, src/types/pa_vxnode.h,            with ?params or $.form option" limitation
           src/types/pa_wcontext.C, src/types/pa_wcontext.h,  
           src/types/pa_wwrapper.h, src/types/types.dsp: started porting to          * src/main/pa_common.C: + removed "use either uri with ?params or
           gc: PA_Object done lots of replacements also            $.form option" limitation
   
         * src/: include/pa_pool.h, main/execute.C, targets/cgi/pa_pool.C:          * src/: classes/file.C, classes/string.C, include/pa_common.h,
           gc logging            main/pa_common.C: merged from HEAD: + ^file.base64[] encode +
             ^file::base64[encoded] decode
 2003-03-17  paf  
           * src/: classes/file.C, classes/string.C, include/pa_common.h,
         * src/classes/date.C, src/classes/file.C, src/classes/form.C,            main/pa_common.C: + ^file.base64[] encode +
           src/classes/image.C, src/classes/mail.C, src/classes/op.C,            ^file::base64[encoded] decode
           src/classes/table.C, src/classes/xdoc.C, src/classes/xnode.C,  
           src/include/pa_pool.h, src/include/pa_pragma_pack_begin.h,          * src/classes/: file.C, string.C: + ^string.base64[] encode +
           src/include/pa_pragma_pack_end.h, src/include/pa_string.h,            ^string:base64[encoded] decode
           src/include/pa_types.h, src/main/compile.C,  
           src/main/compile.tab.C, src/main/execute.C,          * src/: classes/string.C, include/pa_common.h, main/pa_common.C: +
           src/main/pa_charset.C, src/main/pa_common.C,            ^string:base64[in] encode + ^string.base64[] decode
           src/main/pa_exception.C, src/main/pa_exec.C,  
           src/main/pa_globals.C, src/main/pa_pool.C, src/main/pa_request.C,  2005-11-21  paf
           src/main/pa_sql_driver_manager.C, src/main/pa_string.C,  
           src/main/pa_stylesheet_manager.C, src/main/pa_uue.C,          * src/classes/file.C: + merged from HEAD:
           src/main/untaint.C, src/targets/cgi/pa_pool.C,            ^file::create[text;file.xml;^untaint[xml]{data}]
           src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,  
           src/targets/cgi/pool_storage.h, src/types/pa_vcookie.C,          * src/classes/file.C: +
           src/types/pa_vdouble.h, src/types/pa_vfile.C,            ^file::create[text;file.xml;^untaint[xml]{data}]
           src/types/pa_vform.C, src/types/pa_vint.h, src/types/pa_vmail.C,  
           src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,          * src/main/pa_request.C: ! merged: $response:body[file] now
           src/types/pa_vxnode.C, src/types/pa_vxnode.h,            differes from :download, it does not return content-disposition
           www/htdocs/.htaccess, www/htdocs/auto.p: libgc attempt            at all now [previusely it returned valueless content-disposition]
   
 2003-03-13  paf          * src/main/pa_request.C: ! $response:body[file] now differes from
             :download, it does not return content-disposition at all now
         * src/: include/pa_sql_driver_manager.h,            [previusely it returned valueless content-disposition]
           main/pa_sql_driver_manager.C, targets/cgi/parser3.C: lt_dlexit  
           called          * src/main/: compile.tab.C, compile.y: ! overoptimized void
             literals, reverted to just vvod, recreating empty array with each
         * src/include/pa_request.h, src/lib/ltdl/libltdl.dsp,            void_value token. that's absolutely needed, since that array
           src/lib/md5/md5.dsp, src/main/compile.tab.C, src/main/execute.C,            grows
           src/main/pa_request.C, src/targets/cgi/parser3.C,  
           src/types/pa_value.C, src/types/pa_value.h,          * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
           src/types/pa_vobject.h, src/types/pa_vstateless_class.h,            types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
           src/types/pa_vstatus.C, src/types/types.dsp,            types/pa_vmethod_frame.h: + merged: expression literals:
           www/htdocs/.htaccess: set_base, set_derived simplified [counter            true/false. ^format[$.indent(true)]
           leaks fixed]  
           * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
         * ChangeLog, src/include/pa_config_fixed.h, src/types/pa_vstatus.C,            types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
           src/types/types.dsp: incorporated status class patch From:            types/pa_vmethod_frame.h: + expression literals: true/false.
           "Victor Fedoseev" <vvf_ru@mail.ru> Sent: Thursday, January 23,            ^format[$.indent(true)]
           2003 8:14 AM  
           * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
           now we have $status.rusage.maxrss,tv_sec,tv_usec un WIN32 [plus            merged: $env:PARSER_VERSION reports "3.1.5beta (compiled on
           Win32 specific: QuotaPeakNonPagedPoolUsage            i386-pc-win32)"
           QuotaPeakPagedPoolUsage PeakPagefileUsage]  
           * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
 2003-03-12  paf            $env:PARSER_VERSION reports "3.1.5beta (compiled on
             i386-pc-win32)"
         * configure, configure.in, src/lib/ltdl/configure,  
           src/lib/ltdl/configure.in, src/targets/cgi/Makefile.am:  2005-11-18  paf
           lib/ltdl/Makefile now created by /configure.in only [were by  
           lib/ltdl/configure.in OVERWRITE]          * src/classes/: double.C, int.C: ! ^int/double:sql{select
             null}[$.default(123)] will now return default value
         * configure, configure.in, src/targets/cgi/Makefile.am: libstdc++  
           linkage fixed for g++ 3.2.2          * src/classes/op.C: + merged ^cache[] << returns current cache
             expiration time
         * src/include/pa_stylesheet_manager.h: gcc 3.2 rightliy complained  
           on using privately declared class [fixed]          * src/classes/op.C: + ^cache[] << returns current cache expiration
             time
         * src/: include/pa_sql_driver_manager.h, main/compile.tab.C: gcc  
           3.2 rightliy complained on using privately declared class [fixed]          * src/classes/table.C: ! merged ^table::create[not'nameless';
             failed << Exception.problem_source pointed to local var!
         * src/targets/cgi/parser3.C: 1. more detailed log on signals.  2.  
           sigpipe before request constructor now causes death          * src/classes/table.C: ! ^table::create[not'nameless'; failed <<
             Exception.problem_source pointed to local var!
         * src/: include/pa_request.h, main/compile.tab.C, main/execute.C,  
           targets/cgi/parser3.C: SIGPIPE now can be intercepted and does          * src/main/pa_common.C: ! merged: file::load[binary;fileOfZeroSize]
           not cause exception in exception handler            now loads VFile.ptr!=0, so such files can be saved now
   
         * configure, configure.in, src/targets/cgi/Makefile.am: configure          * src/main/pa_common.C: ! file::load[binary;fileOfZeroSize] now
           now default links libstdc++ statically.  that can be overriden by            loads VFile.ptr!=0, so such files can be saved now
           --with-dynamic-stdcpp  
           * src/include/pa_dir.h: ! merged: file:list now sees .xxx files,
 2003-03-11  paf            only . and .. now removed from list [were removed all .*]
   
         * src/main/compile.tab.C, src/main/compile.y,          * src/include/pa_dir.h: ! file:list now sees .xxx files, only . and
           src/sql/pa_sql_driver.h, src/types/pa_vstateless_class.C,            .. now removed from list [were removed all .*]
           src/types/pa_vstateless_class.h, www/htdocs/.htaccess: removed  
           necessity of libstdc++          * src/lib/sdbm/apr_file_io.C: ! merged from 3.1.5: hashfile file
             open error now checked, were not :( [stole that piece from apache
         * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled            1.3 sources]
   
         * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled          * src/lib/sdbm/apr_file_io.C: ! hashfile file open error now
             checked, were not :( [stole that piece from apache 1.3 sources]
 2003-03-08  paf  
           * src/main/pa_request.C: ! merged from 3.1.5: ensured proper
         * tests/Makefile: make install & co            untainting of @main result if returned by $result or
             $response:body
         * src/: include/pa_request.h, classes/op.C: removing  
           vclass,object.h -> pa_request.h dependency          * src/main/pa_request.C: ! ensured proper untainting of @main
             result if returned by $result or $response:body
         * src/: classes/mail.C, classes/response.C, include/pa_request.h,  
           main/pa_request.C: removing vform,response,cookie.h ->          * src/main/pa_common.C: ! merged from 3.1.5: fixed file load memory
           pa_request.h dependency            issue: now tries to guess content-length and allocates one big
             piece if possible [regretfully gc_realloc works as malloc+free,
         * src/include/pa_request.h: removing vmail.h -> pa_request.h            leaving lots of holes behind]
           dependency [testing...]  
           * src/: classes/memory.C, main/compile.tab.C, main/pa_common.C: !
         * src/: include/pa_config_fixed.h, types/pa_vxdoc.C: yet another            fixed file load memory issue: now tries to guess content-length
           return 0; fixed            and allocates one big piece if possible [regretfully gc_realloc
             works as malloc+free, leaving lots of holes behind]
         * src/: include/pa_config_fixed.h, types/pa_vmail.C,  
           types/pa_vmail.h: vmail.C received just compiled [not tested]  2005-11-16  paf
   
         * src/classes/xdoc.C: forgotten: global xdoc when ndef XML          * src/: include/pa_common.h, classes/file.C, classes/table.C,
             main/compile.tab.C, main/pa_common.C: merged to HEAD: !
         * src/main/pa_request.C: forgotten: ifdef XML            table::save with enclosers now doubles them: "->"" !
             table::save/load do not remove elements from options hash
         * src/main/pa_request.C, www/htdocs/.htaccess: forgotten: ifdef XML  
           * src/main/compile.y: ! merged to HEAD: ^if(-f "...") now works
         * src/targets/cgi/parser3.C: todo: move to latest xml version on            [were overoptimized ^if(double_literal), compiler confused
           win32 and run memleak tests again            OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
   
         * src/targets/cgi/parser3.C: charsets: see some strange things with          * src/main/: compile.tab.C, compile.y: ! ^if(-f "...") now works
           old xml lib-- it's internal memory handling has faults            [were overoptimized ^if(double_literal), compiler confused
             OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
         * src/: include/pa_types.h, main/pa_charset.C: charsets: fixed  
           problems when transcode from charset A to A.          * src/: classes/file.C, classes/table.C, include/pa_common.h,
             main/pa_common.C: ! table::save with enclosers now doubles them:
         * src/: main/untaint.C, types/pa_vmail.C: mail: transcode fixed.            "->"" ! table::save/load do not remove elements from options hash
           todo: still problems when transcode from charset A to A.  
   2005-11-03  paf
         * src/classes/hash.C, src/classes/mail.C, src/classes/string.C,  
           src/classes/table.C, src/include/pa_array.h,          * src/main/: Makefile.am, compile.tab.C: removed $< from .y
           src/main/pa_sql_driver_manager.C, src/types/pa_vmail.C,            compilation, not all makefiles liked that
           src/types/pa_vmail.h, www/htdocs/.htaccess,  
           www/htdocs/index.html: started full-scale-site-test [~  2005-08-30  paf
           http://parser.ru sources]  
           * src/classes/op.C: merge . speedup check of [DEFAULT]
           some fixes  
           * src/classes/op.C: . speedup check of [DEFAULT]
         * tests/: 021.html, 031.html, 033.html, 109.html, 110.html,  
           111.html, 112.html, 113.html, 114.html, 115.html, 116.html,  2005-08-26  paf
           117.html, 118.html, 119.html, 120.html, results/109.processed,  
           results/110.processed, results/111.processed,          * src/: classes/date.C, types/pa_vdate.h: merged + date.week
           results/112.processed, results/113.processed,  
           results/114.processed, results/115.processed,          * src/: classes/date.C, types/pa_vdate.h: + date.week
           results/116.processed, results/117.processed,  
           results/118.processed, results/119.processed,          * src/classes/table.C: merged ! ^table::create[bad]{xxx} now
           results/120.processed: xml: tests 109 dom create/show 110 xpath            complains about bad!=nameless
           selectSingle 111 xdoc.create from tainted & 112  
           xdoc.create/output with russian attr value 113 xpath          * src/classes/table.C: ! ^table::create[bad]{xxx} now complains
           selectString/Number 114 dom attributes.count 115 xpath selectBool            about bad!=nameless
           116 output media-type change 117 transform by dom stylesheet 118  
           empty transform result 119 dom setAttribute 120 nbsp letter          * src/classes/: hash.C, string.C, table.C, void.C: merged !
           output            optional options were allowed to be empty. were checked
             if(is_string), changed to !defined||is_string to allow void
           =END OF PREPARED XML TESTS=  
           * src/: targets/isapi/parser3isapi.C, classes/hash.C,
 2003-03-07  paf            classes/string.C, classes/table.C, classes/void.C: ! optional
             options were allowed to be empty. were checked if(is_string),
         * src/classes/xdoc.C, src/include/pa_charset.h,            changed to !defined||is_string to allow void
           src/include/pa_stylesheet_connection.h, tests/108.html,  
           tests/108.xsl, tests/results/108.processed: xml: test 108          * src/types/pa_vmethod_frame.h: merged ! many classes/*  used
           transform with params [bugs fixed]            as_junction where they needed as_int/double, so failed with
             recent "(const) now no junction" optimization
         * src/: main/pa_charset.C, targets/cgi/parser3.C: fixed: mem leak  
           from copy/paste bug          * src/classes/: double.C, int.C, math.C, op.C, string.C, table.C:
             merged ! many classes/*  used as_junction where they needed
         * src/classes/xdoc.C, src/include/pa_charset.h,            as_int/double, so failed with recent "(const) now no junction"
           src/include/pa_request.h, src/main/execute.C,            optimization
           src/main/pa_charset.C, src/main/pa_exception.C,  
           src/main/pa_globals.C, src/main/pa_request.C,          * src/: classes/double.C, classes/int.C, classes/math.C,
           src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,            classes/op.C, classes/string.C, classes/table.C,
           src/types/pa_vxnode.C, tests/107.html,            main/compile.tab.C, types/pa_vmethod_frame.h: ! many classes/*
           tests/results/107.processed: xml: test: 107 bug fixes            used as_junction where they needed as_int/double, so failed with
             recent "(const) now no junction" optimization
         * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,  
           types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,  2005-08-24  paf
           types/pa_vxnode.C, types/pa_vxnode.h: test: 107 bug fixes  
           * src/targets/isapi/: parser3isapi.C, parser3isapi.vcproj: ! on
         * tests/: 106.html, results/106.processed: test: 106 xdoc create,            windows 2003 DllMain receivese \\?\ prefix to fullspec of .dll,
           string            stripped it
   
         * src/include/pa_charset.h, src/main/pa_charset.C,  2005-08-09  paf
           www/htdocs/.htaccess: xml: charset two mem alloc functions used  
           for different cases [libxml, libxsl]          * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
             not cleared
         * src/classes/classes.C: fixed: prevent system classes from  
           modification to lock ALL the classes, not only directly used          * src/: classes/classes.C, classes/classes.h, classes/date.C,
             classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
         * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h: xml:            classes/hashfile.C, classes/image.C, classes/int.C,
           linked            classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
             classes/response.C, classes/string.C, classes/table.C,
         * src/: classes/xdoc.C, types/pa_vxdoc.h: xdoc.C compiled            classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
             include/pa_array.h, include/pa_cache_managers.h,
 2003-03-06  paf            include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
             include/pa_config_fixed.h, include/pa_config_includes.h,
         * src/classes/xdoc.C: xdoc.C 50%            include/pa_dictionary.h, include/pa_dir.h,
             include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
         * src/: classes/xnode.C, classes/xnode.h, include/pa_charset.h,            include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
           include/pa_memory.h, include/pa_request.h, include/pa_string.h,            include/pa_operation.h, include/pa_os.h, include/pa_request.h,
           main/pa_globals.C, main/pa_request.C,            include/pa_request_charsets.h, include/pa_request_info.h,
           main/pa_stylesheet_manager.C: xnode.C compiled            include/pa_sapi.h, include/pa_socks.h,
             include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
         * src/: include/pa_stylesheet_connection.h,            include/pa_stack.h, include/pa_string.h,
           include/pa_stylesheet_manager.h, main/pa_sql_driver_manager.C,            include/pa_stylesheet_connection.h,
           main/pa_stylesheet_manager.C: xml: stylesheet&manager done            include/pa_stylesheet_manager.h, include/pa_table.h,
             include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
         * src/: include/pa_memory.h, include/pa_stylesheet_connection.h,            include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
           include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:            lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
           xml: stylesheet&manager STARTED            lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
             lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
         * src/: include/pa_globals.h, main/pa_charset.C,            main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
           main/pa_exception.C, main/pa_globals.C: xml: exceptions            main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
             main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
         * src/: include/pa_charset.h, include/pa_config_fixed.h,            main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
           include/pa_memory.h, include/pa_pool.h, main/pa_charset.C,            main/pa_os.C, main/pa_request.C, main/pa_socks.C,
           main/pa_memory.C, main/pa_pool.C, types/pa_vxdoc.C,            main/pa_sql_driver_manager.C, main/pa_string.C,
           types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: xml:            main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
           charsets            main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
             main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
         * tests/023.html: in some cases it rounded up badly. postponing            targets/cgi/pa_threads.C, targets/cgi/parser3.C,
           solution of that problem, making more simple test            targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
             types/pa_junction.h, types/pa_method.h, types/pa_property.h,
         * tests/: 058_paf2000.png, results/058.processed: .png added with            types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
           -kb now            types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
             types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
         * src/include/pa_charset.h, src/include/pa_charsets.h,            types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
           src/main/pa_charset.C, src/main/pa_charsets.C,            types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
           www/htdocs/.htaccess: charset_utf8 declaration moved to            types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
           charsets.C            types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
             types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
 2003-03-05  paf            types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
             types/pa_vmemory.h, types/pa_vmethod_frame.C,
         * src/classes/string.C, src/include/pa_string.h,            types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
           src/main/pa_string.C, tests/105.html,            types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
           tests/results/105.processed: String::match bug fixed            types/pa_vresponse.C, types/pa_vresponse.h,
             types/pa_vstateless_class.C, types/pa_vstateless_class.h,
         * src/classes/op.C, src/main/main.dsp, tests/104.html,            types/pa_vstateless_object.h, types/pa_vstatus.C,
           tests/results/104.processed, www/htdocs/.htaccess: ^bpt operator            types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
           added [does int3 in debug build on win32]            types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
             types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
         * tests/: 057.html, results/057.processed: test bug fixed            types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
             types/pa_wcontext.h, types/pa_wwrapper.h: 2005
         * www/htdocs/: auto.p, autoptr.html, base.p, derived.p, font.gif,  
           global.xsl, index.html, mailreceive.eml, mailreceive.html,          * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
           operators.p, parser-status.html, people.dtd, some.p: removed old            pa_vmethod_frame.h: merged from HEAD ! simplified (double)
           tests            speedup consequent checks in vmethod_frame
   
         * src/targets/cgi/Makefile.am: linker needed more tricks to link OK          * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
             not cleared
         * src/classes/math.C: can be: crypt in -lcrypt OK, but crypt.h be  
           missing          * src/: classes/file.C, main/pa_exec.C: merged +file::cgi/exec now
             params: 50 max (were 10)
         * src/: include/Makefile.am, main/Makefile.am, types/Makefile.am:  
           forgotten files added to Makes          * src/: classes/file.C, main/pa_exec.C: + file::cgi/exec now
             params: 50 max (were 10)
         * ltmain.sh: ltmain.sh added  
           * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
         * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name            pa_vmethod_frame.h, pa_vvoid.C, pa_vvoid.h, pa_wcontext.C,
           change undone ;(            pa_wcontext.h: + ^call[$void] param inside now is void (were:
             empty string) ! simplified (double) speedup consequent checks in
         * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name            vmethod_frame
           made static  
           * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: merged +
         * src/: classes/math.C, classes/op.C, classes/string.C,            optimized constants in expressions vstring->vdouble + optimized
           main/pa_exec.C, targets/cgi/Makefile.am: gcc more happy.            ^call(vdouble), no junction creation, no calls later
           todo:make linker happy  
   2005-08-08  paf
         * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C: pa_exec  
           env param made optional          * src/main/: compile.tab.C, compile.y, compile_tools.C,
             compile_tools.h: merged + optimized constants in expressions
 2003-03-04  paf            vstring->vdouble + optimized ^call(vdouble), no junction
             creation, no calls later
         * src/: classes/image.C, include/pa_request.h, include/pa_stack.h,  
           types/pa_vimage.h: number of gcc compiler bugs fixed          * src/types/pa_vdouble.h: merged . double values without fractional
             part now default printed as %.0f instead of %g
         * tests/: 103.html, 103mark.gif, 103paf2001.gif,  
           results/103.processed: tests: 103 image.copy transparence test          * src/types/pa_vdouble.h: . double values without fractional part
             now default printed as %.0f instead of %g
         * src/main/execute.C, tests/101.html, tests/102.html,  
           tests/results/101.processed, tests/results/102.processed: tests:          * src/classes/hashfile.C: . merged ! second hashfile::open would
           101 method/variable name conflict test 102 form fields change            cause an exception
           should not not change anything [bug fix]  
           * src/classes/hashfile.C: ! second hashfile::open would cause an
         * tests/: 057.html, 099.html, 100.html, results/057.processed,            exception
           results/099.processed, results/100.processed: tests: 57 date  
           create 2002: added 99,100 response:body/download          * src/: classes/classes.h, main/execute.C, types/pa_junction.h,
             types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
         * src/classes/image.C, tests/098.html, tests/098font.gif,            types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
           tests/results/098.processed: test: 98 image font text [bug fixed]            types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
             types/pa_vimage.C, types/pa_vimage.h, types/pa_vjunction.h,
         * src/main/pa_common.C, src/targets/cgi/parser3.C, tests/097.html,            types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
           tests/results/097.processed: test: 97 file::load http://  [bugs            types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
           fixed]            types/pa_vresponse.h, types/pa_vstateless_class.C,
             types/pa_vstateless_object.h, types/pa_vvoid.h,
         * src/classes/hash.C, src/classes/image.C, src/classes/table.C,            types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
           src/include/pa_memory.h, tests/096.html, tests/096_dir/163.jpg,            merged VJunction(new Junction) optimization from 3.1.4
           tests/096_dir/188.jpg, tests/results/096.processed: tests: 96  
           image EXIF  [bug fixed]          * src/: main/execute.C, types/pa_junction.h, types/pa_vjunction.h,
             types/pa_vstateless_class.C: + optimized new VJunction(new
         * src/classes/table.C, src/main/execute.C, tests/061.dat,            Junction(params)) to new VJunction(params), thousands of mallocs
           tests/061.html, tests/062.html, tests/063.html, tests/064.html,            removed
           tests/065.html, tests/066.html, tests/067.html, tests/068.html,  
           tests/069.html, tests/070.html, tests/071.html, tests/072.html,  2005-08-05  paf
           tests/073.html, tests/074.html, tests/075.html, tests/076.html,  
           tests/077.html, tests/078.html, tests/080.html, tests/081.html,          * src/: include/pa_memory.h, main/compile.tab.C, main/compile.y,
           tests/082.html, tests/083.html, tests/084.html, tests/085.html,            types/pa_vdouble.h, types/pa_vmethod_frame.C,
           tests/086.html, tests/087.html, tests/088.html, tests/089.html,            types/pa_vmethod_frame.h: + optimized ^call(vdouble), no junction
           tests/090.html, tests/091.html, tests/092.html, tests/093.html,            creation, no calls later
           tests/094.html, tests/095.html, tests/results/061.processed,  
           tests/results/062.processed, tests/results/063.processed,          * src/: classes/classes.C, classes/classes.h, classes/date.C,
           tests/results/064.processed, tests/results/065.processed,            classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
           tests/results/066.processed, tests/results/067.processed,            classes/hashfile.C, classes/image.C, classes/int.C,
           tests/results/068.processed, tests/results/069.processed,            classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
           tests/results/070.processed, tests/results/071.processed,            classes/response.C, classes/string.C, classes/table.C,
           tests/results/072.processed, tests/results/073.processed,            classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
           tests/results/074.processed, tests/results/075.processed,            include/pa_array.h, include/pa_cache_managers.h,
           tests/results/076.processed, tests/results/077.processed,            include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
           tests/results/078.processed, tests/results/080.processed,            include/pa_config_fixed.h, include/pa_config_includes.h,
           tests/results/081.processed, tests/results/082.processed,            include/pa_dictionary.h, include/pa_dir.h,
           tests/results/083.processed, tests/results/084.processed,            include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
           tests/results/085.processed, tests/results/086.processed,            include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
           tests/results/087.processed, tests/results/088.processed,            include/pa_operation.h, include/pa_os.h, include/pa_request.h,
           tests/results/089.processed, tests/results/090.processed,            include/pa_request_charsets.h, include/pa_request_info.h,
           tests/results/091.processed, tests/results/092.processed,            include/pa_sapi.h, include/pa_socks.h,
           tests/results/093.processed, tests/results/094.processed,            include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
           tests/results/095.processed, tests/079.html,            include/pa_stack.h, include/pa_string.h,
           tests/results/079.processed: tests: 61 file::stat size 62            include/pa_stylesheet_connection.h,
           string->int autoconvert 63 double .int,dec,div,mul 64 date            include/pa_stylesheet_manager.h, include/pa_table.h,
           compare 65 file: basename,justname,justext 66 math:crypt 67            include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
           string.match simple on long 68 string.match normalized simple on            include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
           long 69 string.int 70 file::stat content-type 71 table.join 72            lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
           hash parameter conditional pass 73 date daylightsaving,yearday 74            lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
           date arithmetics 75 response date values/attributes 76 string.pos            lib/smtp/smtp.h, main/compile.C, main/compile.y,
           of void, void.pos 77 syntax parsing 78 cookie tainting 79 switch            main/compile_tools.C, main/compile_tools.h, main/execute.C,
           with local 80 scientific numeric literal in string autoconvert 81            main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
           xor: logical and numerical 82 for delims 83 menu delims 84            main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
           table.hash distinct 85 long string  replace 86 throw+catch            main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
           current language preserve 87 bit shifts 88 junction tests +            main/pa_memory.C, main/pa_os.C, main/pa_request.C,
           $caller test 89 hash.foreach selfmodification 90 int/void to int            main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
           91 $caller test 92 junction is + def junction tests 93 $caller            main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
           test 94 syntax test 95 table.hash(keygenerator)  [bug fixed]            main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
             main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
         * src/main/: execute.C, pa_table.C: test: 59 table.locate [bug            targets/cgi/pa_threads.C, targets/cgi/parser3.C,
           fixed] 60 string eq string [bug fixed]            targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
             types/pa_junction.h, types/pa_method.h, types/pa_value.C,
         * tests/: 053.html, 054.html, 055.html, 056.html, 057.html,            types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
           058.html, 058_paf2000.png, 059.html, 060.html,            types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
           results/053.processed, results/054.processed,            types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
           results/055.processed, results/056.processed,            types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
           results/057.processed, results/058.processed,            types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
           results/059.processed, results/060.processed: test: 53            types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.h,
           string.replace 54 junctions 55 table.hash 56 call indirect 57            types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
           date.create[string] 58 image.measure[png]            types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
             types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemory.h,
         * tests/: 052.html, outputs/049.processed, outputs/050.processed,            types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
           outputs/051.processed, results/052.processed: test: 52            types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
           pre/match/post test: passed AS-IT-WERE, but wrong :) separate            types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
           task: fix that            types/pa_vstateless_class.C, types/pa_vstateless_class.h,
             types/pa_vstateless_object.h, types/pa_vstatus.C,
 2003-03-03  paf            types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
             types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
         * tests/: 043.html, 044.html, 045.html, 046.html, 047.html,            types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
           048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p, Makefile,            types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
           parser-cygwin.sh, parser-unix.sh, run_parser.sh,            types/pa_wcontext.h, types/pa_wwrapper.h: . 2005 ;)
           outputs/049.processed, outputs/050.processed,  
           outputs/051.processed, results/001.processed,          * src/: lib/cord/cord.vcproj, lib/gd/gd.vcproj,
           results/002.processed, results/003.processed,            lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/pcre.vcproj,
           results/005.processed, results/006.processed,            lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
           results/008.processed, results/009.processed,            lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/compile.tab.C,
           results/011.processed, results/012.processed,            main/compile.y, main/compile_tools.C, main/compile_tools.h,
           results/013.processed, results/014.processed,            targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj: +
           results/015.processed, results/016.processed,            optimized constants in expressions vstring->vdouble
           results/017.processed, results/020.processed,  
           results/021.processed, results/022.processed,  2005-07-29  paf
           results/024.processed, results/025.processed,  
           results/026.processed, results/027.processed,          * src/types/pa_vclass.C: . shaped up error messages a bit
           results/028.processed, results/029.processed,  
           results/030.processed, results/031.processed,          * src/types/pa_vclass.C: + property getter can now be overridden
           results/049.processed, results/050.processed,  
           results/051.processed, results/043.processed,          * src/: main/execute.C, types/pa_vclass.C, types/pa_vobject.C: !
           results/044.processed, results/045.processed,            bug fix: static parent fields were not replaced in case
           results/046.processed, results/047.processed,            $derived:field[put] + property setter can now be overridden
           results/048.processed: tests: 43,44,45 date rolls 46  
           autoevaluating junction 47 table.select 48 name with subvar 49  2005-07-28  paf
           hash-creating switch 50 process 51 started parent/child, works as  
           it were but it were NOT GOOD, created separate task  to fix that          * configure, configure.in, src/classes/classes.h,
             src/classes/date.C, src/classes/file.C, src/classes/hash.C,
         * tests/: 042.html, results/042.processed: test: 42            src/classes/hashfile.C, src/classes/image.C, src/classes/op.C,
           exception.handled            src/classes/table.C, src/classes/xdoc.C, src/classes/xnode.C,
             src/classes/xnode.h, src/include/pa_hash.h,
         * tests/: 041.html, results/041.processed: test: 41 table.locate by            src/include/pa_version.h, src/main/execute.C,
           expression            src/types/Makefile.am, src/types/pa_method.h,
             src/types/pa_value.h, src/types/pa_vclass.C,
         * tests/: 040.html, results/040.processed: test: 39 method result            src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
           of type table 40 method param junction auto evaluate            src/types/pa_vconsole.h, src/types/pa_vcookie.C,
             src/types/pa_vcookie.h, src/types/pa_vhash.h,
         * tests/: 039.html, results/039.processed: test: 37 method result            src/types/pa_vhashfile.h, src/types/pa_vimage.C,
           of type table            src/types/pa_vimage.h, src/types/pa_vmethod_frame.h,
             src/types/pa_vobject.C, src/types/pa_vobject.h,
         * src/main/pa_request.C, src/types/pa_vmath.C, tests/033.html,            src/types/pa_vproperty.h, src/types/pa_vrequest.C,
           tests/034.html, tests/035.html, tests/036.html, tests/037.html,            src/types/pa_vrequest.h, src/types/pa_vresponse.C,
           tests/038.html, tests/results/033.processed,            src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
           tests/results/034.processed, tests/results/035.processed,            src/types/pa_vstateless_class.h,
           tests/results/036.processed, tests/results/037.processed,            src/types/pa_vstateless_object.h, src/types/pa_vvoid.h,
           tests/results/038.processed: tests: 33 string.replace 34            src/types/pa_vxnode.C, src/types/pa_vxnode.h,
           string.upper 35 table created 36 local/global vars with juntions            src/types/pa_wwrapper.h: + 3.2.0 beta: merged from
           37 table clone 38 math PI & number formatting            dynamic_fields_join
   
           math class registring typo fixed          * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
             classes/xnode.C, include/pa_hash.h, main/execute.C,
         * src/classes/op.C, src/include/pa_request.h,            types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
           src/include/pa_string.h, src/main/execute.C,            types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
           src/main/pa_request.C, src/main/pa_string.C, src/main/untaint.C,            types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
           src/types/pa_vcode_frame.h, src/types/pa_wcontext.h,            types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
           tests/032.html, tests/results/032.processed: uchar changed to            types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
           String_UL in all places [was not everywhere] untaint test: 032            types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
             types/pa_vresponse.h, types/pa_vstateless_object.h,
         * src/targets/cgi/parser3.C, tests/004.html, tests/Makefile,            types/pa_vvoid.h, types/pa_vxnode.C, types/pa_vxnode.h,
           tests/results/004.processed, www/htdocs/.htaccess,            types/pa_wwrapper.h: ! restored put_element('replace' param), and
           tests/parser-cygwin.sh, tests/parser-unix.sh: removed -H command            restored its checks in vobject.put_element->static fields |
           line key, now testing using .sh file with SERVER_SOFTWARE=xxx            dynamic properties
   
 2003-02-26  paf  2005-07-27  paf
   
         * src/main/execute.C, src/types/pa_vstateless_class.h,          * src/types/pa_vclass.C: ! changed to GET_ SET_ prefixes. for there
           tests/024.html, tests/025.html, tests/026.html, tests/027.html,            is some old code containing @set_name $name
           tests/028.html, tests/029.html, tests/030.html, tests/031.html,  
           tests/results/024.processed, tests/results/025.processed,          * src/types/pa_vobject.h: . fixed warning
           tests/results/026.processed, tests/results/027.processed,  
           tests/results/028.processed, tests/results/029.processed,          * configure, configure.in, src/include/pa_version.h,
           tests/results/030.processed, tests/results/031.processed: fixed            src/types/Makefile.am: 3.2.0beta started
           bug with name_cstr mutable CharPtr more tests  
           * src/: classes/xnode.C, include/pa_hash.h,
         * src/: include/pa_sapi.h, main/pa_globals.C, main/pa_memory.C,            types/pa_vstateless_class.C: ! new asserts were all false.
           targets/cgi/parser3.C, targets/isapi/parser3isapi.C: SAPI::abort            regretfully reverted them all to checks
           << abort.  die now just exits  
           * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
         * src/classes/classes.awk, src/classes/classes.h,            classes/op.C, main/execute.C, types/pa_method.h,
           src/classes/date.C, src/classes/double.C, src/classes/file.C,            types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
           src/classes/form.C, src/classes/hash.C, src/classes/image.C,            types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
           src/classes/int.C, src/classes/mail.C, src/classes/math.C,            types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
           src/classes/op.C, src/classes/response.C, src/classes/string.C,            types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
           src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,            types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
           src/classes/xnode.C, src/include/pa_memory.h,            types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
           src/include/pa_sapi.h, src/targets/cgi/parser3.C,            types/pa_vstateless_object.h, types/pa_vvoid.h,
           src/targets/isapi/parser3isapi.C, src/types/pa_venv.h,            types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
           src/types/pa_vform.C, tests/015.html, tests/016.html,            joined_dynamic_fields: removed unused param from put_method
           tests/017.html, tests/018.html, tests/019.html,            (returned to 3 params)
           tests/019paf2001.gif, tests/020.html, tests/021.html,  
           tests/022.html, tests/023.html, tests/022_dir/a.html,          * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vclass.h:
           tests/022_dir/b.txt, tests/022_dir/c.htm,            joined_dynamic_fields: dynamic get/set works with overriding
           tests/results/015.processed, tests/results/016.processed,            props [alpha2]
           tests/results/017.processed, tests/results/018.processed,  
           tests/results/019.processed, tests/results/020.processed,          * src/types/pa_vclass.C: joined_dynamic_fields: dynamic get/set
           tests/results/021.processed, tests/results/022.processed,            works [alfa]
           tests/results/023.processed: methoded_array now contains all Mxxx  
           classes SAPI::get_env now returns info on pool more tests          * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
             classes/op.C, include/pa_hash.h, main/execute.C,
         * src/include/pa_array.h, src/include/pa_hash.h,            types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
           src/include/pa_memory.h, src/main/pa_charset.C, tests/001.html,            types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
           tests/002.html, tests/003.html, tests/004.html, tests/005.html,            types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
           tests/006.html, tests/007.html, tests/008.html, tests/009.html,            types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
           tests/010.html, tests/011.html, tests/012.html, tests/013.html,            types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
           tests/014.html, tests/Makefile, tests/outputs/create-dir,            types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
           tests/results/001.processed, tests/results/002.processed,            types/pa_vresponse.h, types/pa_vstateless_class.C,
           tests/results/003.processed, tests/results/004.processed,            types/pa_vstateless_object.h, types/pa_vvoid.h,
           tests/results/005.processed, tests/results/006.processed,            types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
           tests/results/007.processed, tests/results/008.processed,            joined_dynamic_fields: just compiled
           tests/results/009.processed, tests/results/010.processed,  
           tests/results/011.processed, tests/results/012.processed,          * src/: classes/date.C, classes/file.C, classes/hash.C,
           tests/results/013.processed, tests/results/014.processed: hash            classes/hashfile.C, classes/image.C, classes/table.C,
           cloning fixed            classes/xdoc.C, classes/xnode.h, main/execute.C,
             types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
 2003-02-25  paf            types/pa_vstateless_class.h: joined_dynamic_fields: started
   
         * src/main/pa_common.C: typo fixed          * src/types/pa_vobject.C: . object setters [only started, does not
             work yet]
 2003-02-24  paf  
           * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vobject.C: .
         * src/types/pa_vcookie.C: fixed all places with bad get_string(0)            object setters [only started, does not work yet]
           [one remained]  
   2005-07-26  paf
         * src/: include/pa_request.h, main/execute.C: few bad get_string(0)  
           [should have been get_string(&pool)] todo: check other such calls          * src/: include/pa_request.h, main/execute.C: . properties: set
             works [alpha2]. for classes. todo: for objects
         * src/: main/compile.tab.C, main/execute.C, types/pa_vfile.h:  
           test10, bad lookups          * src/: classes/classes.h, include/pa_hash.h, main/execute.C,
             types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
           xxx* xxx=smartptr.get(); << is bad style, after ";" original            types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
           object got destructed, and xxx points to sky            types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
             types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
         * ChangeLog, src/classes/string.C: match bug fixed            types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
             types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
         * src/types/pa_vmail.C: body [text/html] transcoded to            types/pa_vstateless_object.h, types/pa_vvoid.h,
           $.charset[specified] now            types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
             properties: set works [alpha1]
         * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code  
           which failed to handle sigsetjmp+throw: crashed inside of  2005-07-25  paf
           pre-throw code.  rewritten simplier [though duplicating  
           closesocket code]          * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h,
             types/pa_vstateless_class.C, types/pa_vstateless_class.h: .
         * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code            properties: started, get works [alpha1, other approach]
           which failed to handle sigsetjmp+throw: crashed inside of  
           pre-throw code.  rewritten simplier [though duplicating          * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h: .
           closesocket code]            properties: started, get works [alpha2]
   
 2003-02-21  paf          * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
             pa_vstateless_class.h: . properties: started, get works [alpha]
         * operators.txt, src/targets/cgi/parser3.C, src/types/pa_vcookie.C:  
           $cookie:name[$.expires[date << can be now]]  2005-07-15  paf
   
           written makefile with regression tests [raw]          * src/: classes/classes.h, classes/op.C, main/execute.C,
             types/pa_junction.h, types/pa_property.h, types/pa_value.h,
         * src/targets/cgi/parser3.C: MAKE_TEST must be used inside of 'make            types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
           tests' only [it's not forcing CGI mode now] now use -H to output            types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
           CGI header when parser used in command line [useful for tests            types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
           also]            types/pa_vimage.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
             types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
         * src/targets/cgi/parser3.C: MAKE_TEST environment variable            types/pa_vresponse.C, types/pa_vresponse.h,
           switches on CGI mode, and is used in regression tests            types/pa_vstateless_class.C, types/pa_vstateless_class.h,
             types/pa_vstateless_object.h, types/pa_vvoid.h,
         * src/: include/pa_request.h, main/pa_request.C,            types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.h,
           targets/cgi/parser3.C, types/pa_vcookie.h, types/pa_venv.h: env            types/pa_wwrapper.h, types/types.vcproj: + started property
           fixed            [getters work but think of changing them too to precaching]
   
         * src/: include/pa_memory.h, main/pa_memory.C: inlined memory  2005-07-08  paf
           handling pa_*  
           * src/main/pa_request.C: ! bugfix: $response:body[nonfile] caused
         * src/: include/pa_memory.h, main/pa_memory.C, include/pa_array.h,            gpf
           include/pa_exception.h, include/pa_pool.h, main/Makefile.am,  
           main/main.dsp, main/pa_array.C, main/pa_pool.C: reorganized  2005-06-28  paf
           memory handling files  
           * src/: classes/file.C, main/untaint.C: ! string invariant violated
         * src/main/pa_array.C: pool::format_integer terminator fixed            in passing empty strings to file::exec/cgi environment
   
         * src/main/execute.C, src/targets/cgi/parser3.C,  2005-06-06  paf
           www/htdocs/autoptr.html: release mode now compiles OK test to  
           show benefits of free          * src/classes/: hash.C, string.C, table.C: ! bugfix ^string:sql
             ^table:sql ^hash:sql now DO process $.bind option
         * src/: classes/file.C, classes/image.C, classes/mail.C,  
           classes/op.C, classes/xdoc.C, main/pa_charset.C, main/pa_exec.C,  2005-05-24  paf
           main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,  
           types/pa_vimage.C, types/pa_vxdoc.h: fixed all cstr's that must          * src/classes/file.C: ! bugfix ^file::load[mode;name;$.offset
           use pool [as the one in ^process]            $.limit] now work again [support was broken in 3.1.4]
   
         * src/classes/op.C: fixed process.  sould now check for all cstr's          * src/: main/pa_string.C, classes/op.C: . steps toward removing
           -- some must use pool [as the one in ^process]            ALL_INTERIOR_POINTERS
   
 2003-02-20  paf  2005-05-12  paf
   
         * src/classes/date.C, src/classes/double.C, src/classes/file.C,          * configure: 3.1.5beta
           src/classes/hash.C, src/classes/image.C, src/classes/int.C,  
           src/classes/mail.C, src/classes/math.C, src/classes/op.C,          * src/main/pa_common.C: ! bugfix -- recv()==0 is not an error
           src/classes/response.C, src/classes/string.C,  
           src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,          * src/main/pa_common.C: ! bugfix ^file::load[mode;name;$.offset
           src/classes/xnode.C, src/main/pa_string.C, src/types/pa_method.h,            $.limit] now work again [support was broken in 3.1.4]
           src/types/pa_value.C, src/types/pa_vmethod_frame.h,  
           www/htdocs/autoptr.html: string cmp fixed          * src/lib/gd/gif.C: ! fixed image.fill, not it does not depend on
             line-width  [was refusing to fill if line-width >1, thanks to
         * src/: include/pa_config_fixed.h, targets/cgi/parser3.C: form            Seras <seras@pinxit.lt> for repro case
           values passed OK now  
   2005-04-25  paf
 2003-02-19  paf  
           * src/types/pa_vdate.h: ! getenv("TZ")==0? TZ environment restored
         * src/: classes/form.C, include/pa_charset.h, include/pa_pool.h,            correctly
           main/pa_charset.C, main/pa_exception.C, main/pa_request.C,  
           main/pa_stylesheet_manager.C, targets/cgi/parser3.C,  2005-04-19  paf
           targets/isapi/parser3isapi.dsp, types/pa_vcookie.C,  
           types/pa_vform.C, types/pa_vmail.C, types/pa_vxnode.C: found&kill          * src/types/pa_vdate.h: bugfix: initial $date.TZ is 0, that results
           all remaning leaks resulted from pooled::malloc calls [excluding            in VString violating invariant!!
           in gd -- planning complete rewrite extremely ugly code]  
           * src/types/pa_vdate.h: bugfix: TZ now restored after roll if were
         * src/targets/isapi/: pa_pool.C, pool_storage.h: removed unneeded            getenv("TZ")==null
           files  
   2005-04-08  paf
 2003-02-17  paf  
           * src/main/pa_charset.C: bugfix: UTF8->one-byte-per-char-encoding
         * src/: classes/date.C, classes/double.C, classes/file.C,            bugfix: when there is no char in charset one byte produces 6
           classes/image.C, classes/int.C, classes/mail.C, classes/math.C,            (&#255; <<max). increased buffer size!
           classes/response.C, classes/string.C, classes/table.C,  
           classes/xdoc.C, classes/xnode.h, include/pa_stack.h,  2005-03-23  paf
           include/pa_stylesheet_connection.h,  
           include/pa_stylesheet_manager.h, sql/pa_sql_driver.h,          * src/: types/pa_vdate.h, classes/date.C: ! bugfix:
           types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,            ^date.sql-string now takes TZ into account
           types/pa_vform.C, types/pa_vform.h, types/pa_vimage.h,  
           types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,  2005-03-16  paf
           types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,  
           types/pa_wcontext.h, types/pa_wwrapper.h: fixed all remained bugs          * INSTALL, src/include/pa_stack.h: . compiled on freebsd 5.3 with
           of unitialized simple-typed field            gcc 3.4
   
         * src/: classes/classes.C, classes/classes.h, main/execute.C,          * src/types/pa_vhash.C: . warning about eof eol
           main/pa_charset.C, main/pa_request.C: another bug of unitialized  
           simple-typed field fixed.  todo: find&kill all like that one  2005-02-17  paf
   
         * src/: main/execute.C, targets/cgi/pa_pool.C,          * operators.txt, src/classes/op.C: + operator ^sleep(double
           targets/cgi/parser3.C, targets/cgi/pool_storage.h: few bugs in            seconds)
           debug output fixed  
   2005-02-02  paf
         * src/: include/pa_stack.h, main/compile.C, main/execute.C,  
           main/pa_request.C: stack-stored items need extra .ref to prevent          * src/classes/xnode.C: beauty: removed needless includes
           object_ptr from delete[them]  
   2005-01-31  paf
         * src/: classes/date.C, classes/op.C, classes/table.C,  
           classes/xdoc.C, classes/xnode.C, include/pa_array.h,          * src/types/pa_vmail.C: change: $.partX now always 1...  change:
           include/pa_charset.h, main/Makefile.am, main/main.dsp,            $.partNoNumber now alias to $.part1
           main/pa_charset.C, main/pa_common.C,  
           main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,          * src/types/pa_vmail.C: change: incoming letter part contains
           targets/cgi/parser3.C, targets/isapi/parser3isapi.C,            "content-disposition" header with any value? now considering that
           types/pa_vmail.C: fixed more leaks resulted from pooled::malloc            part to be "file#" [for text/plain text/html were $.text#
           calls            $.html#]
   
         * src/: main/pa_request.C, targets/cgi/parser3.C, types/pa_vfile.C:          * INSTALL: updatet to latest working versions available
           couple mem leaks rusulted from old pooled::malloc usage.  
           todo:find more like those  2005-01-20  paf
   
         * src/main/: compile.C, compile_tools.C: 2*2!          * configure.in, src/include/pa_version.h: version
   
         * src/: include/pa_array.h, include/pa_request.h, main/execute.C:  2005-01-19  paf
           stackItem fixed [there were no string on stack before]  
           * src/: lib/gd/Makefile.am, lib/ltdl/Makefile.am,
         * src/: main/execute.C, main/pa_request.C,            targets/cgi/parser3.C, types/Makefile.am: forgotten makefiles.
           types/pa_vmethod_frame.C: first letters out OK            couple warnings in parser3.C
   
         * src/: classes/classes.C, include/pa_array.h, include/pa_hash.h,  2004-12-23  paf
           include/pa_pool.h, include/pa_request.h, main/pa_request.C,  
           main/pa_string.C, main/untaint.C, types/pa_value.h,          * src/main/pa_sql_driver_manager.C: sql connect string, rsplit @
           types/pa_vint.h, types/pa_vstateless_class.h, types/pa_vstring.h,  
           types/pa_vvoid.h, types/pa_wcontext.h: class fields of simple          * src/main/pa_exec.C: win32: bugfix: file::cgi/exec now set current
           type not initialized with zeros :( while class fields of class            dir to directory of script (when shbang used), not to directory
           types initialized with default constructors.  learn C++            of its interpreter
   
         * src/: classes/classes.awk, classes/double.C, classes/file.C,          * src/include/pa_version.h: compiled on win32...
           classes/form.C, classes/image.C, classes/int.C, classes/mail.C,  
           classes/math.C, classes/xdoc.C, classes/xnode.C,          * src/targets/cgi/parser3.C: now, when version (compiled on HOST),
           include/pa_array.h, include/pa_string.h, main/pa_exec.C,            we need more hspace
           types/pa_vmail.C: parser3.exe - 0 error(s), 0 warning(s)  
           * configure, configure.in, src/include/pa_version.h: configured
 2003-02-14  paf            host to pa_version. will be displayed everywhere
   
         * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:          * src/main/pa_request.C: new: @unhandled_exception can prevent
           13 link errors            exception from being logged by setting $exception.handled(1)
   
         * src/: classes/file.C, include/pa_request.h, main/pa_request.C,          * operators.txt, src/classes/file.C: change:
           main/pa_sql_driver_manager.C, targets/cgi/parser3.C,            ^file::sql{query}[[options]] options: $.name[file name]
           types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,            $.content-type[application/what]
           types/pa_vimage.C, types/pa_vtable.C: all compiled, only 14 link  
           errors :)          * src/: include/pa_common.h, main/pa_common.C,
             types/pa_vhashfile.C: beauty: hashfile::open now creates dir for
         * src/: classes/classes.C, classes/classes.awk, classes/file.C,            new file
           classes/hash.C, classes/mail.C, classes/op.C,  
           include/pa_common.h, include/pa_request.h, include/pa_sapi.h,          * src/: classes/table.C, types/pa_vhash.C, types/pa_vhash.h:
           main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C,            bugfix: table->hash now regards _default
           targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C:  
           classes.lib - 0 error(s), 0 warning(s) parser.C compiled          * src/types/pa_vmethod_frame.h: bugfix: when method junction was
             created by accessing $name_of_method it acquired bad self=closest
         * src/: classes/classes.dsp, classes/op.C, classes/string.C,            methodframe; instead of proper self (current class)
           classes/table.C, include/pa_common.h, include/pa_globals.h,  
           include/pa_pool.h, include/pa_request.h, main/pa_globals.C,          * src/types/pa_vhashfile.C: bugfix: reading empty string from
           main/pa_request.C, types/pa_value.h, types/pa_vhash.h,            hashfile produced bad cord
           types/pa_vint.h, types/types.dsp: op compiled  
   2004-12-10  paf
         * src/: classes/classes.dsp, classes/response.C, classes/string.C,  
           include/pa_dictionary.h, include/pa_string.h, main/pa_string.C,          * src/: lib/smtp/comms.C, main/pa_common.C: DONT_LINGER can cause
           main/untaint.C, types/pa_vtable.h: string, response compiled            subsequent failures though defined in .h
   
 2003-02-07  paf          * src/main/pa_common.C: comment on volatile
   
         * src/: classes/table.C, types/pa_vtable.h: table compiled          * src/: include/pa_config_auto.h.in, main/pa_common.C: http: unix:
             alarm function were not used since the beginning due to stupid
 2003-02-06  paf            error [setsigjmp were not checked in configure.in]
   
         * src/: classes/mail.C, include/pa_request.h, main/pa_request.C:          * src/main/pa_common.C: http: timeout setsockopt [if possible] on
           mail compiled            unix too
   
         * src/: classes/image.C, classes/string.C, classes/xdoc.C,          * src/main/pa_common.C: http: exception status of send/recv errors
           include/pa_common.h, include/pa_hash.h, main/pa_common.C,            change to most probable http.timeout
           types/pa_vfile.h, types/pa_vimage.h: image compiled  
           * src/main/pa_common.C: win32: http connection $.timeout option now
         * src/classes/: file.C, form.C: form compiled            works [setsockopt on send/receive]
   
         * src/: classes/classes.dsp, classes/file.C, include/pa_common.h,  2004-12-08  paf
           include/pa_exec.h, main/pa_common.C, main/pa_exec.C,  
           types/pa_vfile.C, types/pa_vfile.h: file compiled          * src/: classes/mail.C, types/pa_vmail.C: bugfix: mail body now
             cstr-ed knowing mail charset, and untainting uri lang now knows
         * src/: classes/hash.C, classes/math.C, types/pa_vmath.C,            proper charset
           types/pa_vmath.h: math compiled [win32]  
   2004-11-24  paf
         * src/: classes/hash.C, include/pa_hash.h, include/pa_table.h,  
           types/pa_vstring.h: hash compiled          * src/classes/hash.C: hash: adding/cloning adds/clones _default now
   
 2003-02-04  paf            $hash[  $.a[1]  $._default[def] ] #$hash2[^hash::create[$hash]]
             $hash2[^hash::create[]] ^hash2.add[$hash] $hash2.shit
         * src/: classes/date.C, classes/hash.C, include/pa_exec.h,  
           include/pa_hash.h, include/pa_request.h, include/pa_string.h,  2004-11-12  paf
           include/pa_table.h, main/pa_common.C, main/pa_exec.C,  
           main/pa_string.C, types/pa_method.h, types/pa_vform.C,          * src/types/pa_vmail.C: bugfix: mail:send[$.date[]] were ignored
           types/pa_vhash.h: hash 50% compiled            [since 3.0.4]
   
         * src/: classes/date.C, classes/file.C, classes/hash.C,  2004-11-09  paf
           classes/image.C, classes/mail.C, classes/math.C, classes/op.C,  
           classes/string.C, classes/table.C, classes/xdoc.C,          * src/targets/cgi/parser3.C: debug: PA_DEBUG_CGI_ENTRY_EXIT if on,
           classes/xnode.C, include/pa_request.h, main/pa_globals.C,            writes basics to c:\parser3.log
           main/pa_string.C: date compiled  
   2004-10-21  paf
         * src/classes/: classes.dsp, double.C: double compiled  
           * src/classes/xnode.C: bugfix: xnode.getAttribute[NS] now return
         * src/: classes/date.C, classes/double.C, classes/file.C,            tainted strings [were returning clean onces]
           classes/form.C, classes/hash.C, classes/image.C, classes/int.C,  
           classes/mail.C, classes/math.C, classes/op.C, classes/response.C,  2004-10-15  paf
           classes/string.C, classes/table.C, classes/void.C,  
           classes/xdoc.C, classes/xnode.C, types/pa_vdouble.h,          * src/types/pa_vdouble.h: bugfix: ^for[i](1;1.5){} << did two
           types/pa_vhash.h, types/pa_vint.h, types/pa_vstring.h,            cycles(i=1; i=2), which was wrong, now does ONE
           types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.h: int  
           compiled  2004-10-12  paf
   
         * src/: classes/date.C, classes/double.C, classes/file.C,          * etc/parser3.charsets/windows-1251.cfg: euro promille +/-
           classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,  
           classes/math.C, classes/op.C, classes/response.C,  2004-10-07  paf
           classes/string.C, classes/table.C, classes/void.C,  
           classes/xdoc.C, classes/xnode.C, classes/xnode.h,          * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
           types/pa_vvoid.h: void  compiled :)            main/pa_globals.C: debugger help: PA_RELEASE_ASSERTS enables
             release asserts
         * src/: include/pa_globals.h, main/pa_cache_managers.C,  
           main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,          * src/: main/pa_string.C, include/pa_string.h: debugger help:
           main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,            String.dump() to stdout in detailed form  [were String.v() in
           main/pa_globals.C, main/pa_pool.C, main/pa_sql_driver_manager.C,            short form]
           main/pa_string.C, main/pa_uue.C, main/untaint.C,  
           types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.C,          * src/lib/cord/cordbscs.c: debugger help: CORD_dump now dumpts
           types/pa_vimage.C, types/pa_vmath.C, types/pa_vrequest.C,            \t\r\n as @#| and truncates long char sequences less
           types/pa_vresponse.C, types/pa_vstateless_class.C,  
           types/pa_vstatus.C, types/pa_vstring.C, types/pa_vtable.C,  2004-10-06  paf
           types/pa_wcontext.C, types/types.dsp: removed stupid  
           value_includes.h          * src/: include/pa_socks.h, main/pa_common.C, main/pa_socks.C:
             win32 beauty: socket errors properly decoded
         * src/types/: pa_value.C, pa_value_includes.h, pa_vrequest.C:  
           trying to remove stupid value_includes.h  2004-10-05  paf
   
         * src/main/pa_exec.C: pa_exec compiled on win32          * src/: include/pa_request.h, main/pa_request.C: bugfix:
             request::configure_user/admin done always, even if no
         * src/main/pa_exec.C: libmain.a compiled on six [unix]            file-to-process useful in @unhandled_exception [say, if they
             would want to mail by SMTP something]
         * src/: include/pa_globals.h, include/pa_request.h,  
           types/pa_value.C, types/pa_value.h, types/pa_vclass.C,          * src/main/pa_request.C: bugfix: cookie(and mail:recieved) fills
           types/pa_vcookie.C, types/pa_vdate.h, types/pa_vfile.C,            now performed prior to file loading [and @auto executing] thus
           types/pa_vfile.h, types/pa_vmail.C, types/pa_vobject.C,            making $cookie:value available in @auto and in
           types/pa_vrequest.C, types/pa_vstateless_class.C,            @unhandled_exception when IIS is configured to run interpreter
           types/pa_vstatus.C, types/pa_vtable.C: libtypes.a compiled gcc            even if no file exist
   
         * src/: include/pa_config_includes.h, include/pa_dictionary.h,  2004-09-20  paf
           main/pa_common.C, main/pa_dictionary.C, main/pa_exec.C,  
           main/pa_socks.C: libmain.a gcc and mail.lib msvc++ compiled          * src/main/pa_globals.C: libxml has bugs: it calls xmlMallocAtomic
             somewhere where it should have called xmlMalloc and it calls
         * src/: include/pa_array.h, include/pa_config_includes.h,            xmlFree when it should have not called it.  inserted two
           include/pa_dictionary.h, main/pa_dictionary.C, main/pa_exec.C,            workarounds: xmlMallocAtomic implemented as xmlMalloc, and
           main/pa_socks.C, main/pa_sql_driver_manager.C: gcc libmain.a            xmlFree just ignored.  put away a testcase, maybe someday libxml
           compiled            author would fix all that.  until that day: we have SLOW garbage
             collecting when many xml objects are alive hint: do
         * src/main/pa_globals.C: merged changes from 1.149-1.150 (stupid            ^memory:compact[] before xdoc::create
           name conflicts)  
   2004-09-17  paf
         * src/: main/compile_tools.h, main/execute.C, main/pa_table.C,  
           types/pa_vmethod_frame.h, types/pa_vvoid.h: yuk: gcc on cygwin          * src/classes/file.C: bugfix: file::cgi headers were lost [typo
           yelds "virtual memory exhausted" while trying to compile            error from 3.0.8 version]
           execute.C [eating up to 127MB]  
   2004-09-14  paf
 2003-02-03  paf  
           * src/types/pa_vhashfile.C: bugfix: hashfile.clear deleted only
         * src/: include/pa_config_includes.h, include/pa_hash.h,            part bugfix: hashfile.foreach iterated only part if hashfile were
           include/pa_operation.h, include/pa_pool.h, include/pa_string.h,            modified inside
           main/pa_common.C, types/pa_value.C, types/pa_value.h,  
           types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,  2004-09-13  paf
           types/pa_vint.h, types/pa_vjunction.h,  
           types/pa_vstateless_class.h, types/pa_vstring.h, types/types.dsp:          * src/main/pa_string.C: bugfix: $s[+008] ^eval($s) now parsed OK
           started gcc compiling pa_common compiled            [were as octal]
   
         * src/: include/pa_exception.h, include/pa_pool.h,          * src/types/pa_vhashfile.C: beauty: not reproduced
           main/pa_exception.C: exception gcc change #1            $hashfile.key[$novalue] bug [reported by motorin], inserted
             safety-check
         * src/include/: Makefile.am, pa_hash.h, pa_pool.h: gcc refused to  
           compile _P identifier. it replaced it to some strange 0x0000040          * src/types/pa_vhashfile.C: change: empty keys now error in parser
             [not something obscure from sdbm lib]
         * src/types/: pa_vmath.C, pa_vmethod_frame.C: vmath compiled  
           * src/types/pa_vhashfile.C: bugfix: error numbers now from errno.h
         * src/types/pa_vtable.C: vtable compiled            = strerror now returnes something and we can properly report that
             to client
         * src/types/: pa_vstring.C, pa_vstring.h: vstring compiled  
           * src/lib/sdbm/sdbm_private.h: change: limit on length(key+value)
         * src/: include/pa_cache_managers.h, main/pa_request.C,            now 8008 bytes, were 1008. perl sdbm compatibility now ruined
           types/pa_vstatus.C, types/pa_vstatus.h: vstatus compiled  
           * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
         * src/types/pa_vstateless_class.C: vstateless_class compiled            [tainted as-is] this helps //[space][newline] to remain as-is and
             not be unnecessary optimized away [ruining javascript]
         * src/types/: pa_vresponse.C, pa_vresponse.h: vresponse compiled  
           * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
         * src/types/pa_vrequest.C: vrequest compiled            [tainted as-is]
   
         * src/types/: pa_value.C, pa_value.h, pa_vclass.C, pa_vclass.h,          * src/classes/mail.C: bugfix: typo error
           pa_vobject.C, pa_vobject.h: vobject compiled  
   2004-09-09  paf
         * src/: classes/form.C, classes/mail.C, include/pa_request.h,  
           main/pa_globals.C, main/pa_request.C, types/pa_value.h,          * src/main/pa_common.C: bugfix: loads headers with both \r\n and \n
           types/pa_vform.C, types/pa_vmail.C, types/pa_vmail.h: vmail            separators bugfix: loads header with endings \r\n\r\n and \n\n
           compiled            (bloody yandex.server)
   
         * src/types/: pa_vimage.C, pa_vimage.h: vimage compiled  2004-09-06  paf
   
         * src/: include/pa_pool.h, main/pa_request.C, types/pa_value.C,          * src/main/pa_charset.C: bugfix: two-bytes invalid chars in
           types/pa_vclass.C, types/pa_vcookie.C, types/pa_vcookie.h,            TranscodeFromUTF8 considered valid. only >2bytes-long now %HH
           types/pa_vform.C, types/pa_vform.h, types/pa_vobject.h: vform            encoded
           compiled  
   2004-09-01  paf
         * src/: include/pa_request.h, main/execute.C, main/pa_request.C:  
           main.lib - 0 error(s), 0 warning(s)          * src/types/pa_vmail.C: change: multipart/mixed changed to
             multipart/related outlook express have no problems showing
         * src/: include/pa_request.h, main/execute.C, main/pa_request.C,            unrelated attachments.  todo: someday figure out a way of
           types/pa_value.h, types/pa_vmethod_frame.h: execute compiled            multipart/mixed    multipart/related       text/html
             image/xxx application/octet-stream << true attachments
 2003-01-31  paf  
           * src/types/pa_vmail.C: new:
         * src/: include/pa_array.h, include/pa_operation.h,            ^mail:send[$.file[$.content-disposition can be overriden new:
           include/pa_request.h, main/execute.C, main/main.dsp,            empty mail header fields removed from letter
           types/pa_vjunction.h: started last file from main library:  
           execute          * src/: classes/mail.C, include/pa_config_fixed.h,
             types/pa_value.C, types/pa_value.h, types/pa_vmail.C: new:
         * src/: include/pa_request.h, include/pa_sapi.h,            ^mail:send[    $.file[       $.any[header]
           main/compile.tab.C, main/compile.y, main/compile_tools.h,  
           main/pa_request.C, targets/cgi/parser3.C,  2004-08-30  paf
           targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vfile.h,  
           types/pa_vhash.h: pa_request compiled          * src/: include/pa_config_fixed.h, main/pa_common.C: beauty: less
             warnings
         * src/: classes/op.C, classes/string.C, include/pa_common.h,  
           include/pa_globals.h, include/pa_request.h,          * src/main/pa_common.C: beauty: do not bother with charset
           include/pa_sql_connection.h, main/compile.tab.C, main/compile.y,            detection when ^file::load[binary
           main/execute.C, main/main.dsp, main/pa_common.C,  
           main/pa_globals.C, main/pa_request.C, types/pa_value.h,  2004-08-27  paf
           types/pa_vcode_frame.h, types/pa_vcookie.h, types/pa_vform.h,  
           types/pa_vmail.C, types/pa_vmail.h, types/pa_vresponse.h,          * src/main/pa_common.C: hack: for yandex.server http server
           types/pa_vtable.h, types/pa_wcontext.C, types/pa_wcontext.h,  
           types/types.dsp: most pa_request compiled  2004-08-18  paf
   
         * src/: classes/classes.C, classes/classes.h, classes/date.C,          * src/main/pa_request.C: bugfix: Accept-Ranges: bytes  when sending
           classes/double.C, classes/file.C, classes/form.C, classes/hash.C,            possibly-chunked response
           classes/image.C, classes/int.C, classes/mail.C, classes/math.C,  
           classes/op.C, classes/response.C, classes/string.C,  2004-08-17  paf
           classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,  
           classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,          * src/classes/file.C: bugfix: $f[^file::load[;http://]]
           include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,            $f.content-type now = that of http response
           include/pa_config_fixed.h, include/pa_config_includes.h,  
           include/pa_dictionary.h, include/pa_dir.h,          * src/classes/file.C: bugfix: $f[^file::load[;http://]]
           include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,            $f.content-type now = that of http response
           include/pa_hash.h, include/pa_opcode.h, include/pa_operation.h,  
           include/pa_pool.h, include/pa_request.h,  2004-07-30  paf
           include/pa_request_charsets.h, include/pa_request_info.h,  
           include/pa_sapi.h, include/pa_socks.h,          * src/: include/pa_request.h, main/pa_request.C,
           include/pa_sql_connection.h, include/pa_sql_driver_manager.h,            targets/cgi/parser3.C, targets/isapi/parser3isapi.C: bugfix:
           include/pa_stack.h, include/pa_string.h,            win32: system&parser exceptions in release mode reported properly
           include/pa_stylesheet_connection.h,            parser exception in exception handler WERE mistakenly reported as
           include/pa_stylesheet_manager.h, include/pa_table.h,            system exception, without details [in apache & isapi] +some
           include/pa_threads.h, include/pa_types.h, include/pa_uue.h,            beauty in exception text
           lib/ltdl/config_fixed.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,  
           lib/md5/pa_md5.h, lib/md5/pa_md5c.c, lib/pcre/dftables.c,          * src/: include/pa_exception.h, main/pa_request.C,
           lib/pcre/get.c, lib/pcre/maketables.c, lib/pcre/pcre.c,            targets/cgi/parser3.C: bugfix: win32: system&parser exceptions in
           lib/pcre/pcre.h, lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,            release mode reported properly parser exception in exception
           main/compile.C, main/compile.tab.C, main/compile.y,            handler WERE mistakenly reported as system exception, without
           main/compile_tools.C, main/compile_tools.h, main/execute.C,            details
           main/main.dsp, main/pa_cache_managers.C, main/pa_charset.C,  
           main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,          * src/main/execute.C: beauty: simplified system exception handling
           main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,  
           main/pa_globals.C, main/pa_pool.C, main/pa_request.C,  2004-07-29  paf
           main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,  
           main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,          * src/classes/table.C: bugfix:
           main/untaint.C, sql/pa_sql_driver.h, targets/cgi/getopt.c,            ^table.save[export.csv;$.separator[^;]] now works fine [separator
           targets/cgi/getopt.h, targets/cgi/pa_pool.C,            were ignored, and \t used unconditionally]
           targets/cgi/pa_threads.C, targets/cgi/parser3.C,  
           targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,          * src/types/Makefile.am: added vhash.c
           targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,  
           targets/isapi/pool_storage.h, types/pa_value.C, types/pa_value.h,  2004-07-28  paf
           types/pa_value_includes.h, types/pa_vbool.h, types/pa_vclass.C,  
           types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,          * src/: classes/date.C, classes/image.C, classes/math.C,
           types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,            lib/ltdl/ltdl.c, lib/pcre/pcre_parser_ctype.c, lib/smtp/comms.C,
           types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,            main/pa_common.C, targets/cgi/parser3.C, types/pa_vform.C,
           types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,            types/pa_vmail.C: bugfix: isspace((unsigned char)c) everywhere.
           types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,            failed on russian letters
           types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,  
           types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,          * src/: main/pa_string.C, types/pa_vmail.C, main/pa_common.C:
           types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,            bugfix: isspace((unsigned char)c) everywhere. failed on russian
           types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,            letters
           types/pa_vresponse.h, types/pa_vstateless_class.C,  
           types/pa_vstateless_class.h, types/pa_vstateless_object.h,          * src/main/pa_exec.C: bugfix: win32: chdir not needed, dir passwed
           types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,            as 'currentDirectory' parameter to CreateProcess
           types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,  
           types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,  2004-07-27  paf
           types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,  
           types/pa_wcontext.h, types/pa_wwrapper.h: grammar compiled          * src/targets/cgi/parser3.vcproj: beauty: win32:
             globaloptimizations ON, release:mapfile ON todo: copy .mapfile
         * ChangeLog, src/classes/classes.h, src/classes/op.C,            from release somewhere [to help searching for unhandled system
           src/include/pa_cache_managers.h, src/include/pa_charset.h,            exceptions]
           src/include/pa_charsets.h, src/include/pa_common.h,  
           src/include/pa_dictionary.h, src/include/pa_exception.h,          * src/types/pa_vdate.h: check: for invalid datetime after temporary
           src/include/pa_exec.h, src/include/pa_pool.h,            TZ shift
           src/include/pa_request.h, src/include/pa_sapi.h,  
           src/include/pa_sql_connection.h,          * src/types/pa_vdate.h: bugfix: time checked not only at set_time
           src/include/pa_sql_driver_manager.h, src/include/pa_string.h,            but also in ctor
           src/include/pa_table.h, src/include/pa_uue.h, src/main/compile.C,  
           src/main/compile.tab.C, src/main/compile_tools.C,  2004-07-26  paf
           src/main/compile_tools.h, src/main/main.dsp,  
           src/main/pa_charset.C, src/main/pa_charsets.C,          * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
           src/main/pa_common.C, src/main/pa_dictionary.C,            src/main/pa_request.C, src/types/pa_vfile.h,
           src/main/pa_exception.C, src/main/pa_exec.C,            src/types/pa_vhash.C, src/types/pa_vhash.h,
           src/main/pa_request.C, src/main/pa_sql_driver_manager.C,            src/types/types.vcproj: new: $response:body/download[
           src/main/pa_string.C, src/main/pa_table.C, src/main/pa_uue.C,            $.file[name on disk]    $.name[of file for user]
           src/main/untaint.C, src/types/pa_value.C, src/types/pa_value.h,            $.mdate[date of last-modified. default from directory] ]
           src/types/pa_vclass.h, src/types/pa_vcookie.C,  
           src/types/pa_vcookie.h, src/types/pa_vdate.h,          * src/classes/file.C: moving file:send somewhere else..
           src/types/pa_vdouble.h, src/types/pa_venv.h,  
           src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.h,          * src/: classes/file.C, include/pa_sapi.h, main/pa_common.C,
           src/types/pa_vhash.h, src/types/pa_vimage.C,            targets/cgi/parser3.C, targets/isapi/parser3isapi.C: patched:
           src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.C,            ^file:send by Victor Fedoseev <vvf_ru@mail.ru> todo: turn it to
           src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,            $response:download[ $.filename[filename] $.option[] ,, ]
           src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,  
           src/types/pa_vobject.C, src/types/pa_vobject.h,          * src/classes/file.C: beauty: invalid mode thoroughly reported
           src/types/pa_vrequest.C, src/types/pa_vrequest.h,  
           src/types/pa_vresponse.C, src/types/pa_vresponse.h,  2004-07-21  paf
           src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,  
           src/types/pa_vstateless_object.h, src/types/pa_vstatus.h,          * src/types/pa_vmail.C: bugfix: too long header values now splitted
           src/types/pa_vstring.h, src/types/pa_vtable.h,            to several lines
           src/types/pa_vvoid.h, src/types/pa_wcontext.C,  
           src/types/pa_wcontext.h, src/types/pa_wwrapper.h,            were: header: vaaaaaaaaaaaalue now: header: vaaaaaa  aaalue
           www/htdocs/.htaccess: ConstStringPtr died, long live StringPtr  
             note: ms outlook[!express] shows only first 255 characters of
 2003-01-30  paf            subject
   
         * src/: include/pa_charset.h, include/pa_request.h,  2004-07-15  paf
           include/pa_sql_driver_manager.h, main/compile.tab.C,  
           main/compile.y, main/compile_tools.h, main/pa_request.C,          * src/main/pa_os.C: bugfix: locks now compiled in [were mistakenly
           types/pa_vobject.h, types/pa_vstatus.h: grammar compiled            off]
   
         * src/: classes/classes.h, include/pa_pool.h, main/compile.C,  2004-07-14  paf
           main/compile.tab.C, types/pa_value.h, types/pa_vfile.h,  
           types/pa_vhash.h, types/pa_vmethod_frame.h,          * src/classes/table.C: bugfix: $.bind values now got untainted
           types/pa_vstateless_class.C, types/pa_vstateless_class.h,            according to lang  [were: as-is]
           types/types.dsp: vstateless_class compiled  
   2004-07-07  paf
         * src/main/compile.C: compile compiled  
           * src/classes/op.C: bugfix: cache with 2 params caused assertion,
         * src/: include/pa_array.h, include/pa_operation.h,            checked that
           include/pa_table.h, main/compile_tools.C, main/compile_tools.h,  
           main/pa_table.C: compile_tools compiled          * src/main/pa_exec.C: bufix: on unix AND win32 environment string
             now untainted according to their languages.  were: as-is.
         * src/: include/pa_operation.h, main/compile.y,            EVERYWHERE
           main/compile_tools.C, main/compile_tools.h: started  
           compile_tools. vagues ideas of how to free compiled code          * src/: classes/file.C, main/pa_exec.C: bufix: on unix AND win32
             environment string now untainted according to their languages.
         * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C,            were: as-is. EVERYWHERE
           main/main.dsp, types/pa_value.C, types/pa_value.h,  
           types/pa_vmethod_frame.h, types/pa_vstateless_class.h: value          * src/main/pa_exec.C: bufix: on unix environment string now
           compiled            untainted according to their languages.  were: as-is. on win32:
             ok
 2003-01-29  paf  
           * parser3.vssscc: ...would not go unnoticed
         * src/: include/pa_globals.h, include/pa_request.h,  
           main/pa_globals.C, main/pa_request.C, types/pa_value.h,          * src/main/pa_charset.C: convinience: transcodeFromUTF8 now never
           types/pa_vmethod_frame.h, types/pa_vstateless_class.h,            fails. in case on input appears nonutf, those bytes will be
           types/pa_wcontext.h, types/types.dsp: vmethodframe, pa_request.h            printed in %HH form. that can be easily decoded/recovered.
           compiled  
             this form is quite noticable, and hopefully would not go noticed
         * src/lib/ltdl/config_fixed.h: libltdl compiled without warnings  
           now  2004-07-06  paf
   
         * src/: include/pa_array.h, include/pa_exception.h,          * src/main/pa_exec.C: bufix: on unix environment string now
           include/pa_pool.h, main/pa_exception.C: gd compiled            untainted according to their languages.  were: as-is. on win32:
             ok
         * src/types/: pa_vfile.C, pa_vfile.h, pa_vimage.C, pa_vimage.h: gd  
           compiled  2004-07-01  paf
   
         * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,          * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
           types/pa_value.C, types/pa_value.h, types/pa_vfile.C,            lib/gd/gd.vcproj, lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
           types/pa_vfile.h: vfile compiled            lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
             lib/pcre/pcre_parser_ctype.vcproj, lib/smtp/smtp.vcproj,
         * src/: include/pa_common.h, include/pa_globals.h,            main/main.vcproj, targets/cgi/parser3.vcproj,
           include/pa_string.h, main/pa_globals.C, types/pa_value.C,            targets/isapi/parser3isapi.vcproj, types/types.vcproj: win32:
           types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,            option: global optimization ON
           types/pa_vform.C, types/pa_vform.h: vcookie compiled  
           * src/main/untaint.C: workaround kinda bug in libxml: life requires
         * src/: include/pa_exception.h, main/pa_cache_managers.C,            to do xdoc::create{invalid chars} standard disables chars less
           main/pa_charsets.C, main/pa_common.C, main/pa_dir.C,            then \x20, except tab, cr, lf.
           main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,  
           main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,            changed tainting so that those become '!'
           main/pa_uue.C: #include "pa_value_includes.h" everywhere in main  
   2004-06-25  paf
         * src/: include/pa_request_charsets.h, include/pa_request_info.h,  
           main/main.dsp, main/untaint.C: more compiled          * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
             int on odd address [prev bugfix failed due to superwize
         * src/: include/pa_charsets.h, include/pa_request.h,            optimizer, which turned memcpy into same 'ld' asm command]
           include/pa_request_info.h, include/pa_string.h,  
           main/pa_charsets.C, types/pa_vrequest.C, types/pa_vresponse.C,          * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
           types/pa_vresponse.h: vrequest compiled            int on odd address
   
         * src/types/: pa_value.h, pa_vdate.h, pa_vform.h, pa_vhash.h,  2004-06-22  paf
           pa_vobject.C, pa_vobject.h, pa_vrequest.C, pa_vresponse.C,  
           pa_vresponse.h, pa_wcontext.h: vrequest compiled          * src/sql/pa_sql_driver.h: note: about possible optimization
   
         * src/: classes/classes.h, include/pa_charset.h,          * operators.txt, src/classes/hash.C, src/classes/memory.C,
           include/pa_charsets.h, include/pa_globals.h, include/pa_pool.h,            src/classes/string.C, src/classes/table.C, src/classes/void.C,
           include/pa_request.h, include/pa_string.h, main/main.dsp,            src/include/pa_config_includes.h: new:        ^void:sql{call
           main/pa_charset.C, main/pa_charsets.C, main/pa_globals.C,            paf(:a)}[                $.bind[                         $.a[2]
           main/untaint.C, types/pa_value.h, types/pa_vdouble.h,                   ]       ] output variables work.  todo: check in out
           types/pa_vfile.h, types/pa_vint.h, types/pa_vmath.C,            variables
           types/pa_vrequest.C, types/pa_vrequest.h,  
           types/pa_vstateless_class.h, types/pa_vstring.h,  2004-06-18  paf
           types/pa_vvoid.h: vrequest,vdouble,vint compiled  
           * src/: classes/file.C, classes/hash.C, classes/string.C,
         * src/: classes/classes.h, classes/math.C, include/pa_pool.h,            classes/table.C, classes/void.C, include/pa_globals.h,
           include/pa_request.h, include/pa_sapi.h, include/pa_string.h,            include/pa_sql_connection.h, main/compile.tab.C,
           main/main.dsp, types/pa_value.h, types/pa_vbool.h,            sql/pa_sql_driver.h: started:         ^void:sql{call paf(:a)}[
           types/pa_vclass.h, types/pa_vdouble.h, types/pa_venv.h,                        $.bind[                         $.a[2]          ]
           types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,            ] input variables work.  todo:output
           types/pa_vjunction.h, types/pa_vmath.C, types/pa_vmath.h,  
           types/pa_vobject.h, types/pa_vstateless_class.h,          * src/targets/cgi/parser3.C: bugfix: iis specific
           types/pa_vstateless_object.h, types/pa_vstatus.h,            http://parser3/_bug.html?404;http://hpsv/test/ now $request:uri
           types/pa_vstring.h, types/types.dsp: vmath compiled            /_bug.html?404;http://hpsv/test/
             --------------------------------------------------------------------------------
 2003-01-28  paf            $request:query IIS-STATUS=404&IIS-DOCUMENT=http://hpsv/test/
             --------------------------------------------------------------------------------
         * src/: classes/classes.h, classes/date.C, classes/file.C,            IIS-STATUS="404" IIS-DOCUMENT="http://hpsv/test/"
           classes/hash.C, classes/image.C, classes/table.C, classes/xdoc.C,  
           classes/xnode.h, main/execute.C, main/main.dsp, types/pa_value.h,  2004-06-16  paf
           types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C,  
           types/pa_vobject.h, types/pa_vstateless_class.h: started main:          * src/targets/cgi/parser3.C: new: iis specific
           compile_tools            http://parser3/_bug.html?404;http://server/_bug.html?f=v now
             $request:query
         * src/: include/pa_charset.h, include/pa_exception.h,            IIS-STATUS=404&IIS-DOCUMENT=http://server/_bug.html&f=v
           include/pa_request.h, include/pa_string.h, main/untaint.C:            $form:fields IIS-STATUS="404"
           untaint compiled            IIS-DOCUMENT="http://server/_bug.html" f="v"
   
         * ChangeLog, src/include/pa_array.h, src/include/pa_string.h,            todo: isapi too
           src/main/execute.C, src/main/untaint.C, src/types/pa_vmail.C:  
           more compiled.  struck with string::store_to needing to know  2004-05-26  paf
           source/client charsets  
           * src/include/pa_version.h: 3.1.3
         * src/: include/pa_exception.h, include/pa_uue.h, main/pa_uue.C,  
           types/pa_vfile.h: uue compiled          * operators.txt: beauty: removed outdated level 'table'
   
         * src/: include/pa_table.h, main/pa_string.C, main/pa_table.C:          * etc/parser3.charsets/x-mac-cyrillic.cfg: added: thanks to konst
           table compiled  
           * src/main/pa_string.C: beauty: removed 3 warnings
         * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,  
           main/pa_globals.C, main/pa_sql_driver_manager.C: globals compiled          * src/: include/pa_string.h, classes/table.C, main/untaint.C,
             classes/op.C: beauty: removed outdated level 'table'
         * src/: include/pa_charset.h, main/pa_charset.C,  
           main/pa_charsets.C: charset/s simplified [charset::pool_for_load  2004-05-25  paf
           introduced]  
           * src/lib/sdbm/apr_file_io.C: bugfix: bad seek wrapper
         * src/: classes/date.C, include/pa_charset.h,            implementation. mistery: how anything worked
           include/pa_charsets.h, include/pa_globals.h, main/pa_charset.C,  
           main/pa_charsets.C, main/pa_globals.C, main/pa_request.C:          * src/sql/pa_sql_driver.h: beauty: param renamed and comment
           pa_charsets compiled            changed, it is now safe to use url if pointers to it are stored
             to gc mem
         * src/: include/pa_array.h, include/pa_exec.h, include/pa_hash.h,  
           include/pa_pool.h, main/pa_exec.C: pa_exec win32 compiled          * src/: main/pa_exec.C, types/pa_vhashfile.C: bugfix: hashfile
             unknown errors reported and not cause SIGSEGV now
         * src/: include/pa_pool.h, main/pa_common.C, types/pa_vdouble.h:  
           common compiled  2004-05-24  paf
   
         * src/: include/pa_charsets.h, main/pa_charsets.C,          * src/: include/pa_string.h, lib/cord/cordbscs.c,
           main/pa_sql_driver_manager.C: pa_charsets compiled            lib/cord/include/cord.h, lib/cord/cordxtra.c: cancel: more speed,
             less memory: CORD_chars_block originally intended to ...  it was
         * src/: include/pa_array.h, include/pa_charset.h,            good that CORD_chars_block were not used: it consumes more memory
           include/pa_charsets.h, include/pa_pool.h,            [and, might be slow too] undoing that. [and removed that func so
           include/pa_sql_connection.h, include/pa_sql_driver_manager.h,            that it would not confuse parser developer in future]
           include/pa_stack.h, include/pa_string.h,  
           main/pa_sql_driver_manager.C, types/pa_vhash.h, types/pa_vint.h:          * src/: include/pa_string.h, lib/cord/include/cord.h: more speed,
           sql_driver_manager compiled            less memory: CORD_chars_block originally intended to
             speedup/reduce mem usage were forgotten, and were used stupid
         * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: ukranian            CORD_chars
           letter i with two dots added to koi, all ukranian letters added  
           to win1251.          * src/include/pa_config_auto.h.in: bugfix: bigendian check added
   
           typographic simbol 0xb9 deleted from win1251 [strange one & were          * src/include/: pa_config_fixed.h, pa_string.h: bugfix: on
           abscent from koi]            BIGENDIAN processors space-conserving mech failed, causing
             SIGSEGV/SIGBUS and SAPI::abort("unknown untaint lang#%d",
 2003-01-27  paf            (1|2|3));
   
         * src/: include/pa_exception.h, include/pa_sql_connection.h,  2004-05-14  paf
           include/pa_sql_driver_manager.h, include/pa_string.h,  
           main/pa_common.C, main/pa_exec.C, main/pa_sql_driver_manager.C,          * src/types/: Makefile.am, pa_vvoid.C, pa_vvoid.h, types.vcproj:
           sql/pa_sql_driver.h: paused on sql_manager            bugfix: void now has vfile value, and $response:body[] works OK
   
         * src/: include/pa_cache_managers.h, include/pa_pool.h,  2004-05-12  paf
           include/pa_sql_connection.h, include/pa_sql_driver_manager.h,  
           include/pa_stack.h, main/pa_sql_driver_manager.C,          * src/types/: pa_vbool.h, pa_vhash.h, pa_vhashfile.h, pa_vtable.h:
           types/pa_vtable.h, types/pa_vvoid.h: vtable compiled            beauty: ^if(def $bool) now equals ^if($bool) and shaped up other
             sources to use is_defined() {return as_bool();} along VBool
         * src/: classes/op.C, include/pa_globals.h, include/pa_hash.h,  
           include/pa_sql_connection.h, include/pa_sql_driver_manager.h,  2004-05-11  paf
           include/pa_table.h, main/pa_sql_driver_manager.C,  
           main/pa_table.C: table compiled          * src/include/pa_exec.h: bugfix: gpf on file::exec/cgi because of
             referencing to local objects
         * src/: include/pa_cache_managers.h, main/pa_cache_managers.C:  
           cache_managers compiled          * src/: classes/mail.C, include/pa_exec.h, main/compile.tab.C,
             types/pa_vmail.C, types/pa_vmail.h: bugfix: bcc with sendmail now
         * src/: include/pa_array.h, include/pa_charset.h,            left intact
           include/pa_pool.h, main/pa_charset.C: charset compiled  
   2004-04-15  paf
         * src/: include/pa_pool.h, main/pa_common.C: common compiled  
           * src/classes/date.C: merged: beauty: unused var removed
         * src/: include/pa_array.h, include/pa_common.h, include/pa_hash.h,  
           include/pa_pool.h, include/pa_string.h, main/pa_common.C,          * src/classes/date.C: beauty: unused var removed
           main/pa_string.C, types/pa_value.C, types/pa_value.h,  
           types/pa_vhash.h, types/pa_vint.h, types/pa_vstateless_class.h,          * src/include/: pa_exec.h: bugfix: interface without pointer
           types/pa_wcontext.C, types/pa_wcontext.h: wcontext compiled            provoked bug
   
 2003-01-24  paf  2004-04-09  paf
   
         * src/: classes/classes.C, classes/classes.h, include/pa_array.h,          * src/types/pa_vform.C: merge: bugfix: form:imap were incorrect
           include/pa_common.h, include/pa_globals.h, include/pa_hash.h,  
           include/pa_pool.h, include/pa_string.h, main/pa_common.C,          * src/types/pa_vform.C: bugfix: form:imap were incorrect
           main/pa_globals.C, main/pa_string.C, types/pa_value.h,  
           types/pa_vbool.h, types/pa_vdouble.h, types/pa_vhash.h,  2004-04-08  paf
           types/pa_vint.h, types/pa_vjunction.h,  
           types/pa_vstateless_class.h, types/pa_vstateless_object.h,          * src/classes/date.C: new: ^date::create[y-m-d
           types/pa_vstatus.h, types/pa_vstring.h: more patched            h-M-s>>.milliseconds<<] now allowed, ignored so far
   
         * src/: classes/op.C, include/pa_array.h, include/pa_exception.h,          * src/main/pa_xml_io.C: merged: bugfix /etc/xml/catalog
           include/pa_hash.h, include/pa_pool.h, include/pa_string.h,  
           include/pa_table.h, main/pa_dictionary.C, main/pa_exception.C,          * src/main/pa_xml_io.C: bugfix: in safe mode -- disabled attempts
           main/pa_string.C, main/pa_table.C: string compiled            to consult default catalog [usually, that file belongs to other
             user/group]
         * src/: include/pa_array.h, include/pa_common.h,  
           include/pa_dictionary.h, include/pa_exception.h,  2004-04-06  paf
           include/pa_pool.h, include/pa_string.h, include/pa_table.h,  
           main/pa_common.C, main/pa_dictionary.C, main/pa_exception.C,          * src/main/pa_common.C: beauty: gcc warning removed
           main/pa_string.C: dictionary compiled  
           * src/main/: compile.tab.C, compile.y: bugfix: gcc refused to
 2003-01-23  paf            accept that trick, trying other
   
         * src/: include/pa_array.h, include/pa_common.h,          * src/main/: compile.tab.C, compile.y: bugfix: step3 to fix
           include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,            explicit result problem
           include/pa_request.h, include/pa_string.h, main/pa_common.C,  
           main/pa_exception.C, main/pa_globals.C, types/pa_value.C,          * src/main/: compile.tab.C, compile.y: bugfix: step2 to fix
           types/pa_value.h: resurrected pool in new sense: now it's            explicit result problem
           factory, producing&accounting memory chunks for read[autofree]  
           buffers          * src/main/: compile.tab.C, compile.y: bugfix: step1 to fix
             explicit result problem
         * src/: include/pa_array.h, include/pa_exception.h,  
           include/pa_hash.h, include/pa_pool.h, include/pa_table.h,          * operators.txt, src/classes/string.C: new: ^string.append[string]
           main/pa_exception.C, main/pa_table.C: table compiled  
           * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
         * src/: classes/image.C, classes/op.C, include/pa_array.h,            main/execute.C: attempt_check_call_in_explicit_result_mode:
           include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,            failed
           include/pa_pool.h, include/pa_pragma_pack_begin.h,  
           include/pa_pragma_pack_end.h, include/pa_sapi.h,          * src/main/pa_common.C: bugfix: of 1.175 bugfix:
           include/pa_string.h, include/pa_table.h, include/pa_types.h,            http://i.p.a.ddress gethostbyaddr added [on some platforms
           main/pa_exception.C, main/pa_globals.C, main/pa_string.C,            gethostbyname failed with such 'domains'] now checked properly,
           main/pa_table.C: aint that easy            were: needless reverse/forward dns lookup
   
         * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,          * src/main/pa_common.C: bugfix: of 1.175 bugfix:
           main/main.dsp: continued with Hash            http://i.p.a.ddress gethostbyaddr added [on some platforms
             gethostbyname failed with such 'domains'] now checked properly,
         * src/main/pa_common.C: connect_string allocated on heap[wes on            were: needless reverse/forward dns lookup
           stack] now. and exception can be reported OK now [can be reported  
           outside of pro c with that stack]          * src/main/: compile.C, compile.tab.C, compile.y: reimplemented:
             @method[][result] means "no string output here" moved to lexical
 2003-01-22  paf            level [on grammar level it were too difficult]
   
         * src/: include/pa_array.h, include/pa_charset.h,          * operators.txt, src/include/pa_string.h, src/main/compile.tab.C,
           include/pa_dictionary.h, include/pa_hash.h, include/pa_pool.h,            src/main/compile.y, src/main/compile_tools.h,
           include/pa_string.h, main/pa_array.C, main/pa_hash.C,            src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h: new:
           main/pa_pool.C, main/pa_string.C: started auto_ptr.  PA_Object is            @method[][result] means "no string output here", implemented part
           base: contains references_count.  auto_ptr template calls            of that idea: compiler throws away string literal generation
           add_ref/release            code. and barks nonwhitespace chars
   
 2003-01-21  paf          * operators.txt: truth: removed comment about $ORIGIN
   
         * src/: classes/classes.C, classes/classes.h, classes/date.C,  2004-04-05  paf
           classes/double.C, classes/file.C, classes/form.C, classes/hash.C,  
           classes/image.C, classes/int.C, classes/mail.C, classes/math.C,          * configure.in, src/doc/html2chm.cmd, src/doc/sources2html.cmd,
           classes/op.C, classes/response.C, classes/string.C,            src/include/pa_version.h, src/main/pa_common.C,
           classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,            src/targets/isapi/parser3isapi.C: merged with 3.1.3
           classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,  
           include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,          * etc/parser3.charsets/x-mac-cyrillic.cfg: added: donated by
           include/pa_config_fixed.h, include/pa_config_includes.h,            Konstantin Tomashevitch [mailto:konst@design.ru]
           include/pa_dictionary.h, include/pa_dir.h,  
           include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,          * src/doc/html2chm.cmd: beauty: no need in bg here
           include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,  
           include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,          * src/doc/sources2html.cmd: beauty: same window, in bg it
           include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,            interfered with FAR console
           include/pa_sql_connection.h, include/pa_sql_driver_manager.h,  
           include/pa_stack.h, include/pa_string.h,          * configure, configure.in: 3.1.3
           include/pa_stylesheet_connection.h,  
           include/pa_stylesheet_manager.h, include/pa_table.h,          * src/targets/isapi/parser3isapi.C: beauty: removed some warnings
           include/pa_threads.h, include/pa_types.h, include/pa_uue.h,  
           lib/md5/pa_md5.h, lib/md5/pa_md5c.c,          * src/main/pa_common.C: removed warning
           lib/pcre/pcre_parser_ctype.c, main/compile.C,  
           main/compile_tools.C, main/compile_tools.h, main/execute.C,          * src/include/pa_version.h: 3.1.3
           main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,  
           main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,  2004-04-02  paf
           main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,  
           main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,          * src/main/pa_string.C: bugfix: $s[009] ^s.int[] now 9, were error
           main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,  
           main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,          * src/targets/cgi/parser3.C: new: CGI_PARSER_LOG env variable
           main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,            allows to specify where to put parser log file
           targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,  
           targets/cgi/parser3.C, targets/cgi/pool_storage.h,  2004-04-01  paf
           targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,  
           targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,          * src/classes/table.C: bugfix: bugfix: table::load last line
           types/pa_value.C, types/pa_value.h, types/pa_vbool.h,            without tab and enter were ignored
           types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,  
           types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,          * src/: include/pa_cache_managers.h, include/pa_globals.h,
           types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,            include/pa_socks.h, main/pa_cache_managers.C, main/pa_globals.C,
           types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,            main/pa_socks.C, targets/cgi/parser3.C,
           types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,            targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.def:
           types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,            bugfix: sql connections now are disconnected
           types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,  
           types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,  2004-03-30  paf
           types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,  
           types/pa_vstateless_class.C, types/pa_vstateless_class.h,          * src/classes/table.C: bugfix: table::load last line without tab
           types/pa_vstateless_object.h, types/pa_vstatus.C,            and enter were ignored
           types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,  
           types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,          * src/classes/table.C: bufix: if last table lines were commented,
           types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,            gpfed
           types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,  
           types/pa_wwrapper.h, main/compile.tab.C, main/compile.y:          * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
           2002->2003            doc/ClassExample3.dox, doc/chmhelper.pl, doc/class.dox,
             doc/compiler.dox, doc/doxygen.cfg, doc/exception.dox,
 2003-01-16  paf            doc/executor.dox, doc/footer.htm, doc/index.dox, doc/memory.dox,
             doc/methoded.dox, doc/object.dox, doc/string.dox,
         * www/htdocs/index.html: image.copy fixed transparent resampling            doc/targets.dox, doc/value.dox, include/pa_version.h,
             main/pa_cache_managers.C, main/pa_stylesheet_connection.C,
         * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,            targets/isapi/parser3isapi.vcproj, types/pa_vform.C: merged
           src/main/pa_globals.C, www/htdocs/index.html: http:// introducing            bugfixes from 3.1.2, changed version to 3.1.3beta
           $.any-status(1)  
   2004-03-29  paf
         * operators.txt, src/include/pa_config_fixed.h,  
           src/main/pa_common.C, www/htdocs/index.html: http request now          * src/types/pa_vhashfile.C: bugfix: empty key on hashfile.get
           return status. and not fail on status!=200            causes gpf
   
 2003-01-15  paf          * src/doc/: ClassExample1.dox, ClassExample2.dox,
             ClassExample3.dox, chmhelper.pl, class.dox, compiler.dox,
         * src/main/pa_globals.C: localized pa_xmlFileRead/Close            doxygen.cfg, exception.dox, executor.dox, footer.htm, index.dox,
             memory.dox, methoded.dox, object.dox, string.dox, targets.dox,
 2003-01-14  paf            value.dox: translated to english
   
         * src/lib/ltdl/: config.guess, config.sub, install-sh, missing,  2004-03-25  paf
           mkinstalldirs: removed some ancient files [they in / really]  
           * src/targets/isapi/parser3isapi.vcproj: beauty: one more
         * src/lib/ltdl/: config_fixed.h, libltdl.dsp, ltdl.c: ltdl.c            parser3project dependency removed
           regretfully needed patch in two places.  in config_fixed.h made  
           stubs for lib to compile in MSVC          * src/main/: pa_cache_managers.C, pa_stylesheet_connection.C:
             bugfix: refused to compile without xml
 2003-01-13  paf  
           * src/types/pa_vform.C: beauty: removed warning
         * config.guess, config.sub, ltmain.sh: removed last piece of  
           configure.in(libtool) hacks          * src/classes/classes.vcproj: merged bugfix: now all compiles in
             any folder [removed last ;) folder dependency]
         * src/lib/ltdl/: COPYING.LIB, acinclude.m4, config.h,  
           config_auto.h.in, configure, configure.in, libltdl.dsp, ltdl.c,          * src/classes/classes.vcproj: bugfix: now all compiles in any
           ltdl.h: moved to latest libtool (1.4.3)            folder [removed last ;) folder dependency]
   
 2003-01-10  paf          * src/include/pa_version.h: release
   
         * src/lib/ltdl/: configure, configure.in: PROG_NM          * src/lib/gd/gif.C: new: ^image.pixel(outof;bounds) now returns -1
   
         * src/main/pa_globals.C: moved to latest xml lib versions, changed          * src/classes/table.C: beauty: comment& more meaningful error
           patches.        libxml2 >= 2.5.1            message
           [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz]        libxslt >= 1.0.23  
           [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz]        gdome2 >= 0.7.2          * src/classes/hash.C: bugfix: ^hash::sql{one column} now produces
           [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]            $.hash[$.column_value1(true) ... ] [were producing some strang
             thing]
         * INSTALL: moved to latest versions of xml libs       libxml2 >=  
           2.5.1 [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz]       libxslt >=  2004-03-23  paf
           1.0.23 [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz]       gdome2 >=  
           0.7.2 [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]          * src/: classes/image.C, main/pa_common.C: bugfix: ^image.polyline
             and http status line parsing checked number of columns in table
 2003-01-09  paf            [user reported an assert]
   
         * INSTALL: xml,xslt,gdome lib urls updated          * operators.txt: example: on hashfile
   
         * config.guess, config.sub, missing, mkinstalldirs,          * src/: classes/op.C, types/pa_value.C, types/pa_wcontext.C:
           src/include/pa_config_auto.h.in, src/lib/ltdl/config_auto.h.in,            bugfix: junction reattach now actually reattaches a junction to
           src/lib/ltdl/configure, src/lib/ltdl/configure.in,            new wcontext [were only assigning it to junction, which caused
           src/targets/cgi/Makefile.am: moved to autoconf 2.57 & automake            junction tracking to loose junction, and it's context were not
           1.7.2            killed, and it tried to process in invalid context, gpf]
   
         * depcomp: moving to automake 1.7.2          * src/targets/cgi/parser3.C: debug helper added
   
 2002-12-27  paf  2004-03-19  paf
   
         * src/include/pa_version.h: 0007          * src/types/pa_wcontext.C: beauty: error messages removed duplicate
             "type(type)" in braces
         * src/doc/aliased.dox, src/doc/index.dox, src/doc/module.dox,  
           src/doc/pooled.dox, www/htdocs/index.html: removed outdated  2004-03-10  paf
           parts, made links to language docs  
           * operators.txt, src/classes/xdoc.C, src/classes/xnode.C,
         * src/include/pa_config_auto.h.in: comment            src/classes/xnode.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
             src/types/pa_vxnode.C, src/types/pa_vxnode.h: new: refined
 2002-12-26  paf            solution to search-in-namespaces problem:
             $xdoc.search-namespaces.x[http://pif.design.ru/]
         * src/classes/file.C: ^file:fullpath[a.gif] when document root did            $nodes[^xdoc.select[//x:second]]
           not contain trailing / fixed.  
           * operators.txt, src/classes/xnode.C: new: xnode.select*[xpath
         * INSTALL: changing SAFE_MODE politics            expression][[NAMESPACES HASH]] allows to search for info in
             namespaces
         * src/include/pa_config_auto.h.in: changing SAFE_MODE politics  
             $nodes[^xdoc.select[//x:second][
         * src/main/: pa_common.C, pa_exec.C: changing SAFE_MODE politics            $.x[http://pif.design.ru/] ]]
   
 2002-12-25  paf  2004-03-09  paf
   
         * src/main/pa_globals.C: optimized-xml          * operators.txt, src/main/pa_common.C: new:
             ^file::load[...][options]         $.form[
         * src/main/pa_globals.C: optimized-as-is            !$.field1[string]
             !$.field2[^table::create{one_column_only^#0Avalue1^#0Avalue2}]
 2002-12-24  paf                 ]         !$.body[string]
   
         * src/main/: pa_common.C, pa_pool.C: pool::copy on zero size|ptr            GET ?here notGET(POST, HEAD, others) in content-type:
           fixed [were really called with zero size when .html?a=&b=]            application/x-www-form-urlencoded
   
         * src/classes/mail.C: $MAIL in @conf now invalid when configured            todo: upload files ability
           with --with-sendmail  
           * src/lib/cord/cordxtra.c: bugfix: CORD_pos were not fixed
         * src/main/pa_exec.C, www/htdocs/index.html: fork/pipe error now            properly, done
           [old always-pipe-error fixed]  
   2004-03-05  paf
 2002-12-23  paf  
           * operators.txt, src/main/pa_common.C: new: file::load[;http://
         * src/types/pa_vcookie.C: $cookie:field[put value] fixed [were            GET/POST $.form[$.fields started, not tested yet
           ignoring parameters & were storing only string with default            todo:$.field[table] for multiple values
           expires  
           * operators.txt: new: http:// options $.user $.password basic
         * src/main/pa_charset.C: From: "Victor Fedoseev" <vvf_ru@mail.ru>            authorization
           To: "Alexandr Petrosian (PAF)" <PAF@design.ru> Sent: Monday,  
           December 23, 2002 4:22 AM Subject: bug â          * src/main/pa_common.C: beauty: link to rtf added
           Charset::transcode_buf2xchar  
           * operators.txt, src/include/pa_common.h, src/main/pa_common.C:
 2002-12-20  paf            new: http:// options $.user $.password basic authorization
   
         * src/targets/cgi/parser3.C: removed last \n appending in non-win32          * src/main/pa_common.C: beauty: removed needless vars
           non-cgi [script] runs  
           * operators.txt: new: pgsql option [like that recently added to
 2002-12-19  paf            oracle driver]             ClientCharset=parser-charset <<
             charset in which parser thinks client works
         * INSTALL: --without-iconv recommended [it crashes on some systems  
           [tested on elik]] moreover, it's not needed there [parser          * operators.txt: new: odbc option [like that recently added to
           registers charsets itself]            oracle driver]             ClientCharset=parser-charset <<
             charset in which parser thinks client works
         * INSTALL: --without-iconv recommended [it crashes on some systems  
           [tested on elik]]          * src/sql/pa_sql_driver.h: beauty: important warning added
   
         * operators.txt, src/include/pa_globals.h,          * etc/parser3.charsets/koi8-r.cfg: there's special code for grad
           src/include/pa_request.h, src/main/pa_globals.C,            char!
           src/main/pa_request.C, www/htdocs/index.html: $response:download  
           * etc/parser3.charsets/windows-1251.cfg: typo
         * src/classes/mail.C: 'to' check bugfix [now checked only on ms  
           compiler [win32]].  2004-03-04  paf
   
 2002-12-18  paf          * src/main/pa_sql_driver_manager.C: speedup: charset lookups
             cached, sql transcoding now goes faster
         * src/classes/xdoc.C: doc->URL on xdoc.load set correctly now  
           * operators.txt: new: mysql option [like that recently added to
 2002-12-17  paf            oracle driver]             ClientCharset=parser-charset <<
             charset in which parser thinks client works
         * src/targets/cgi/parser3.C: merged die&iis changes  
           * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: keyboard
         * src/targets/cgi/parser3.C: 1. on win32 in die: abort() reverted            typo error
           to exit(1) 2. more flexible iilegal call check  
           * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: typograph
 2002-12-16  paf            chars commented
   
         * ltmain.sh: some automakes silly insist on having this handy  2004-03-03  paf
   
         * src/main/untaint.C: filespec russian small 'r' changed to latin          * INSTALL: note: added on libgc on FreeBSD, thanks to Andrey N.
           'p' bug fix            Pazychev <135@ugtel.ru> and Goor <goor@hotbox.ru>
   
 2002-12-15  paf  2004-03-02  paf
   
         * src/main/untaint.C: filespec russian small 'r' changed to latin          * operators.txt: new[update typo]:     !^void.left(n)
           'p'            nothing     !^void.right(n)        nothing     !^void.mid(p[;n])
                   nothing
         * configure.in, src/include/pa_config_auto.h.in,  
           src/main/compile.C, src/main/pa_common.C: merged small changes          * operators.txt, src/classes/void.C: new:     !^void.left(n)
           from branch 6 to HEAD            nothing     !^void.right(n)        nothing     !^void.pos(p[;n])
                   nothing
         * src/main/compile.C: removed warning  
           * operators.txt, src/classes/file.C, src/include/pa_string.h: new:
         * src/main/pa_common.C: ftruncate having checked            ^file::sql[[name_to_become_$.name]]{} query result must be one
             row with columns:   first: data   second: file name   third:
         * configure.in, src/include/pa_version.h: new version            content-type
   
 2002-12-14  paf          * operators.txt, src/classes/file.C: ^file.sql-string[] inside
             ^connect gets properly escaped string, which can be passed to
         * www/htdocs/index.html: exception type fixed            request now this for mysql only. it's up to parser sql driver to
             fix zeros properly
         * src/classes/table.C: removed unnecessary code  
           * INSTALL: note: added on building apache with this option:
         * src/sql/pa_sql_driver.h: exception type fixed            --enable-shared=max thanks to Victor Fedoseev <vvf_ru@mail.ru>
   
 2002-12-09  paf  2004-03-01  paf
   
         * src/types/pa_vvoid.h, www/htdocs/index.html: $void.store[now]          * src/targets/isapi/parser3isapi.C: new: apache module & isapi
           error            extension memory:compact befor processingrequest
   
         * src/targets/cgi/parser3.C: ::die now tries to write core dump          * operators.txt, src/classes/hash.C: new: ^hash._keys[>>name<<] to
             call sole column of result
         * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: ::die now  
           tries to write core dump          * operators.txt, src/classes/image.C, src/lib/gd/gif.C,
             src/lib/gd/gif.h: new: ^image.pixel(x;y)[(color)]         get/set
         * src/targets/cgi/parser3.C: ::die now tries to write core dump            pixel color
   
         * src/: classes/hash.C, classes/string.C, classes/table.C,          * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
           classes/void.C, main/pa_sql_driver_manager.C,            beauty: image -- less checks [were ugly impl]
           sql/pa_sql_driver.h: changed exception handling mech in sql  
           handlers #2          * src/classes/string.C: bugfix: ^string.left/right/mid with
             negative values now considered bad
         * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: changed  
           exception handling mech in sql handlers          * src/main/pa_common.C: bugfix: INADDR_NONE not everywhere defined
   
         * src/sql/pa_sql_driver.h: changed exception handling mech in sql          * src/: classes/xdoc.C, types/pa_vxdoc.h: bugfix: boolean output
           handlers            options now have unified defaults [after transform
             indent/omit-xml-declaration/standalone 'default' erroreously
         * src/: classes/hash.C, classes/string.C, classes/table.C,            meant 'true']
           classes/void.C, main/pa_sql_driver_manager.C,  
           sql/pa_sql_driver.h: changed exception handling mech in sql          * src/main/pa_common.C: bugfix: http://i.p.a.ddress gethostbyaddr
           handlers            added [on some platforms gethostbyname failed with such
             'domains']
         * configure.in: removed configure.in:AC_LIBTOOL, it caused automake  
           to write makefile which used libtool to install things, which is          * src/include/pa_config_auto.h.in: no select check, no define
           not needed  
           * src/classes/string.C: feature: ^string.trim both parameters may
 2002-12-06  paf            be empty-strings, meaning kind=both chars=whitespaces
   
         * operators.txt, src/main/compile.tab.C, src/types/pa_vhash.h:          * src/lib/smtp/comms.C: bugfix: use SO_LINGER if no SO_DONTLINGER
           $hash.fields -- pseudo field to make 'hash' more like 'table'            exist
   
 2002-12-05  paf          * src/classes/string.C: check: trim 'chars' must not be empty,
             exception if it is
         * src/classes/mail.C, src/types/pa_vmail.C, src/types/pa_vmail.h,  
           www/htdocs/index.html: smtp cc/bcc OK now          * src/classes/string.C: changed: ^string.trim [] << both,
             whitespaces [start|both|end] << kind, whitespaces
         * src/main/untaint.C, www/htdocs/index.html: mail header closed            [start|both|end;chars]  full
           properly  
   2004-02-27  paf
         * src/main/pa_common.C, src/main/untaint.C, src/types/pa_vmail.C,  
           www/htdocs/index.html: mail header ',' allowed.  still bugs in          * operators.txt, src/classes/string.C, src/main/pa_string.C: new
           smtp [only one receiptient works, cc, bcc ignored now, and MAILED            method: ^string.trim[start|both|end[;chars]]        default
           ;)]            'chars' -- whitespace chars finished
   
           [strncpy killed, memnchr used]          * operators.txt, src/classes/string.C, src/include/pa_string.h,
             src/main/pa_string.C: new method:
         * src/main/pa_table.C: table-copy now current=0            ^string.trim[start|both|end[;chars]]        default 'chars' --
             whitespace chars   started, only start works
         * src/main/pa_array.C, src/main/pa_table.C, www/htdocs/index.html:  
           wow! found/fixed bug in lowlevel proc          * src/main/compile.C: bugfix: line numbers after
             ^process{}[$.line(-10]] can be negative, allowed to print they as
         * src/targets/cgi/parser3.C: more checks on            signed
           http://domain/parser.cgi start [maybe some getenv returns "",  
           checked that now          * src/main/untaint.C: speed: there's no \n chars in output
             [normally], so no need to optimize them they could be retrived
         * src/targets/cgi/parser3.C: more checks on            from databases, though. but 1. should be replaced 2. if not
           http://domain/parser.cgi start [maybe some getenv returns "",            optimized, no harm done
           checked that now  
           * src/main/pa_exec.C: bugfix: waitpid could be interrupted --
         * src/targets/cgi/parser3.C, www/htdocs/index.html: error logging            ^file::exec/cgi could return invalid status & zombie child can
           made unbuffered [so that out-of-mem errors reached log]            remain for short period until process exists [very bad in
             mod_parser3] http://i2/tasks/edit/?id=4629451867179521923
         * src/classes/mail.C, src/targets/cgi/parser3.C,  
           src/types/pa_vmail.C, www/htdocs/index.html: mail:send          * src/lib/smtp/smtp.h: bugfix: SMTP buffer overflow could allow
           MIME-Version default            malicious SMTP server to attack as by returning too long status
             responses http://i2/tasks/edit/?id=4629448401140924947
         * src/main/main.dsp: pa_version included into main.dsp  
   2004-02-26  paf
         * www/htdocs/index.html: smtp line ends fixed. now \r\n [not \r].  
           some smtp servers [win32] leave \n intact, and some clients [bat]          * operators.txt: feature: ^process...{CODE}[now has options] which
           fail to show letter correctly            are         $.main[to what to rename @main]         $.file[file,
             from which (user says) goes that CODE]         $.lineno(line
 2002-12-04  paf            number in that file, where CODE starts. may be negative)
   
         * src/types/pa_vform.C: $form:field string value cut by premature 0          * operators.txt, src/classes/op.C, src/include/pa_request.h,
             src/main/compile.C, src/main/compile_tools.h,
         * parser3.dsw, src/main/compile.tab.C, src/main/main.dsp,            src/main/pa_request.C: feature: ^process...{CODE}[now has
           www/htdocs/.htaccess, www/htdocs/index.html: lib/libltdl ->            options] which are         $.main[to what to rename @main]
           lib/ltdl Win32 changes. s            $.file[file, from which (user says) goes that CODE]
             $.lineno(line number in that file, where CODE starts. may be
         * src/classes/classes.awk: more strict *.C$            negative)
   
         * gnu.dsp: restored  2004-02-25  paf
   
         * configure.in, gnu.dsp, src/lib/Makefile.am,          * etc/parser3.charsets/Makefile.am: bugfix: @sysconfdir@ used [were
           src/lib/ltdl/Makefile.am, src/lib/ltdl/README,            old @charsetsdir@ recently erased from configure.in]
           src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,  
           src/lib/ltdl/config.h, src/lib/ltdl/config.sub,          * src/classes/hash.C: feature: ^hash::sql{one colum result} now
           src/lib/ltdl/config_auto.h.in, src/lib/ltdl/config_fixed.h,            produces hash of column=>1
           src/lib/ltdl/configure, src/lib/ltdl/configure.in,  
           src/lib/ltdl/install-sh, src/lib/ltdl/libltdl.dsp,          * src/lib/smtp/smtp.h: beauty: couple of #ifdef-s to compile even
           src/lib/ltdl/ltdl.c, src/lib/ltdl/ltdl.h: src/lib/ltdl/Makefile            with incomplete errno constants set
           now created with /configure, not ltdl/configure, so it does have  
           no problems with automake.  ltdl/configure  2004-02-24  paf
           AC_OUTPUT(Makefile<<removed)  
           * src/lib/smtp/smtp.C: smtp on unix: authors of lib/smtp never read
 2002-12-02  paf            "man select"
   
         * operators.txt: removed outdated status:db          * src/main/pa_os.C: beauty: <0 better then ==-1
   
         * ChangeLog, src/classes/mail.C, src/include/pa_common.h,          * src/lib/smtp/comms.C: smtp on unix: steps to work on unix
           src/main/pa_common.C, src/main/pa_request.C,  
           src/types/pa_vcookie.C, src/types/pa_vmail.C,          * src/lib/smtp/: smtp.C: smtp on unix: steps to work on unix
           www/htdocs/index.html: http header lang of tainted parts becomes  
           http-header          * src/classes/Makefile.am: smtp on unix: steps to work on unix
   
 2002-11-29  paf          * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp on
             unix: steps to work on unix [extracted 'to']
         * src/classes/date.C, src/classes/image.C, www/htdocs/index.html,  
           operators.txt: exif dates now objects of type date          * src/classes/mail.C: smtp on unix: steps to work on unix
   
         * src/classes/image.C: file.seek removed [it were used in image.C          * src/lib/smtp/smtp.C: smtp on unix: compiled on win32
           only, and for parser user this  means that jpeg image has bad  
           size in fragment's header] now used image.format          * src/: lib/smtp/Makefile.am, lib/smtp/comms.C, lib/smtp/smtp.C,
             lib/smtp/smtp.h, targets/cgi/Makefile.am: started porting smtp to
         * src/include/pa_common.h, src/main/pa_common.C,            unix [testing on solaris]
           src/types/pa_vresponse.C, src/types/pa_vresponse.h,  
           www/htdocs/index.html: http:// param values now handled exactly  2004-02-20  paf
           like $response:header values.  e.g. can be hash [can have  
           subattributes] & contain date values.          * src/classes/xdoc.C: beauty: ugly code removed, thanks to egr for
             pointing that out
         * src/main/pa_common.C, www/htdocs/index.html: http:// param values  
           lang forced URI          * src/classes/xdoc.C: bugfix: <tag attr="&#digital_entity;" bug
             fixed again [same solution, mistanenly removed one line]
         * src/main/pa_common.C, www/htdocs/index.html: http:// tainted  
           partes now %xx  2004-02-19  paf
   
 2002-11-28  paf          * src/: classes/date.C, classes/image.C, types/pa_vdate.h: feature:
             date::create from bad datetime in spring daylightsaving hole now
         * www/htdocs/index.html: doc samples            OK for all platforms [on some platforms it failed]
   
         * operators.txt: http.timeout          * src/classes/: date.C, image.C: beauty: date::create[bad date time
             in daylightsaving hole] now throws error
         * src/classes/image.C, www/htdocs/index.html: ^image.length now  
           counts interchar space. plus space after last char          * src/classes/date.C: comment: mistake fixed
   
         * www/htdocs/index.html: regexp syntax xxx$ speed-up  experiments  2004-02-18  paf
   
         * src/main/pa_string.C: PCRE_DOLLAR_ENDONLY          * src/: classes/xdoc.C, include/pa_charset.h: beauty: xdoc.string
             now renderes in $request:charset, but in header puts
         * src/classes/image.C: ^image.font width measurer now scans full            $response:charset todo: make that default only so that coder
           height [were -1]            could override that
   
         * configure.in: stopped double libltdl/Makefile generation          * src/classes/xdoc.C: beauty: xhtml doctype-public/system forcly
             turns off omit-xml-declaration
         * src/classes/image.C, www/htdocs/index.html: ^image.text now  
           outputs one pixel HIGHER chars [one top horizontal line of 1pixel          * src/classes/xdoc.C: feature: reimplemented xhtml output, see
           height were missing]            /.xsl for sample
   
         * src/classes/op.C, www/htdocs/index.html: ^cache bug fixed.  2004-02-17  paf
           stupid compiler allowed 'false' to go into (Hash *) parameter  
           * src/classes/xdoc.C: beauty: needless helper class removed
 2002-11-27  paf  
           * src/classes/xdoc.C: beauty: method=html outputxmlbuffer not
         * src/include/pa_globals.h, src/main/pa_globals.C,            copied extra time
           src/main/pa_request.C, src/types/pa_vmail.C,  
           www/htdocs/index.html: response:body[file]  if file nows it's          * src/classes/xdoc.C: bugfound: meta again, now somewhere in xhtml
           name now returns content-disposition: >>attachment<<            part of libxml
   
         * src/classes/image.C, www/htdocs/index.html: ^image.font << bad          * src/classes/xdoc.C: new: xhtml now works [libxslt prevented
           font file-size now properly reported            libxml to do the work] <xsl:output        method="html"
             doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
 2002-11-26  paf            doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
             />
         * src/main/pa_request.C: fixed lang in reponse header  
           * src/classes/xdoc.C: beauty: no <meta ... charset generated
         * src/main/pa_common.C, www/htdocs/.htaccess: utf8 prefix ignored  
           @read text          * src/types/pa_vxdoc.h: bugfix: ^xdoc::transform [note double :]
             caused assertion
         * operators.txt, src/main/pa_common.C, www/htdocs/index.html:  
           http:// response status!=200 made exception: http.status with          * src/classes/hash.C: bugfix: ^hash.add[$hash] ^hash.sub[$hash]
           source=bad status#            could hang. now such add does nothing, sub clears $hash
   
 2002-11-25  paf          * src/main/untaint.C: bugfix: one last char prior to "spaces<" were
             not made quoted-printable
         * configure.in, src/classes/image.C,  
           src/include/pa_config_auto.h.in,          * src/main/pa_uue.C: bugfix: uuencoded finish char adding violated
           src/include/pa_config_includes.h, src/main/Makefile.am,            string invariant
           src/main/pa_common.C, src/main/pa_globals.C: http:// and image  
           const void related probs fixed  2004-02-16  paf
   
         * operators.txt, src/main/pa_common.C, www/htdocs/index.html: http          * src/main/pa_globals.C: bugfix: xml errors copy from library now
           fields now UPPERCASE            cleared [were not cleared properly]
   
           $file[^file::load[http://there]] $file.SERVER  2004-02-13  paf
   
         * src/classes/file.C, src/classes/image.C, src/classes/xdoc.C,          * src/include/pa_version.h: prerelease
           src/include/pa_common.h, src/main/pa_common.C,  
           src/main/pa_request.C, www/htdocs/index.html: checked http          * src/main/pa_stylesheet_connection.C: change: .xsl.stamp now not
           options [invalid onces now reported] made default user-agent: paf            used, introducing dependencies timestamp check
   
         * operators.txt, src/classes/file.C, src/classes/table.C,          * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
           src/classes/xdoc.C, src/include/pa_common.h,            include/pa_xml_io.h, main/Makefile.am, main/compile.tab.C,
           src/include/pa_globals.h, src/main/pa_common.C,            main/main.vcproj, main/pa_globals.C, main/pa_xml_io.C: change:
           src/main/pa_globals.C, src/main/pa_request.C,            .xsl.stamp now not used, introducing dependencies timestamp check
           src/types/pa_vfile.C, src/types/pa_vfile.h,  
           www/htdocs/index.html: table/xdoc/file::load now understand          * configure.in: auto.p: @conf made relative
           http:// prefix and additional params, sample:  
           $rates[^xdoc::load[http://www.cbr.ru/scripts/XML_daily.asp?date_req=02/03/2002;  2004-02-12  paf
           $.USER-AGENT[parser3] ]]  
           * src/types/pa_vform.C: bugfix: empty values[recently allowed]
 2002-11-22  paf            ruined empty <input type=file> submits. parser thought there were
             nameless empty file and $form:field got value of type 'file'
         * src/classes/image.C, src/include/pa_globals.h,  
           src/main/execute.C, src/main/pa_globals.C, src/types/pa_vimage.C,          * INSTALL: --without-threads
           src/types/pa_vimage.h, www/htdocs/.htaccess,  
           www/htdocs/index.html, operators.txt: $image.exif support          * src/include/pa_sapi.h: 2004
           $image.exif.DateTime & co  
   2004-02-11  paf
 2002-11-21  paf  
           * src/: classes/classes.C, classes/classes.h, classes/date.C,
         * src/main/: pa_exec.C, untaint.C: cstr(UL_UNSPECIFIED) [not            classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
           _PASS_APPENDED)            classes/hashfile.C, classes/image.C, classes/int.C,
             classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
         * src/classes/image.C: jpeg size measure fixed: were badly skipping            classes/response.C, classes/string.C, classes/table.C,
           EXIF information [were big block and it's size were considered            classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
           negative :(]            include/pa_array.h, include/pa_cache_managers.h,
             include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
         * operators.txt, src/classes/image.C, src/include/pa_common.h,            include/pa_config_fixed.h, include/pa_config_includes.h,
           src/main/pa_common.C, src/types/pa_vmail.C,            include/pa_dictionary.h, include/pa_dir.h,
           www/htdocs/index.html: image.measure internals rewritten. no            include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
           there's reader.seek, and all's ready for EXIF extraction [now we            include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
           fail to measure files with EXIF info]            include/pa_operation.h, include/pa_os.h, include/pa_request.h,
             include/pa_request_charsets.h, include/pa_request_info.h,
         * src/main/pa_common.C: O_TRUNCATE killed, ftruncate  used instead:            include/pa_socks.h, include/pa_sql_connection.h,
           O_TRUNC truncates even exclusevely write-locked file [thanks to            include/pa_sql_driver_manager.h, include/pa_stack.h,
           Igor Milyakov <virtan@rotabanner.com> for discovering]            include/pa_string.h, include/pa_stylesheet_connection.h,
             include/pa_stylesheet_manager.h, include/pa_table.h,
 2002-11-20  paf            include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
             include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
         * src/targets/cgi/parser3.C: logging @signal += query_string            lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
             lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
         * configure.in, src/include/pa_config_auto.h.in,            lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
           src/include/pa_config_includes.h, src/targets/cgi/parser3.C:            main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
           comment            main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
             main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
         * src/targets/cgi/parser3.C: SIGNALS overriden @ main top            main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
             main/pa_os.C, main/pa_request.C, main/pa_socks.C,
         * src/: include/pa_request.h, main/execute.C, main/pa_request.C,            main/pa_sql_driver_manager.C, main/pa_string.C,
           targets/cgi/parser3.C: SIGUSR1 >> writes to error_log uri of            main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
           currently processed document SIGPIPE >> interrupts request            main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
           processing [exception = DB rollback]            sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
             targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
         * src/main/pa_exec.C: comment            types/pa_junction.h, types/pa_method.h, types/pa_value.C,
             types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
         * src/main/pa_exec.C: pa_exec: data written only if size>0            types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
             types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
         * operators.txt, src/classes/file.C: ^file::exec/cgi[file;$.stdin[]            types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
           << disable HTTP-POST repassing            types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
             types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
         * src/: include/pa_config_fixed.h, main/pa_common.C,            types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
           main/pa_exec.C, targets/cgi/parser3.C: ^file:exec/cgi [pa_exec]            types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
           pipe read errors now checked            types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
             types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
 2002-11-19  paf            types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
             types/pa_vresponse.h, types/pa_vstateless_class.C,
         * src/targets/cgi/parser3.C: removed #ifdef WIN32 around check of            types/pa_vstateless_class.h, types/pa_vstateless_object.h,
           CGI: Illegal call            types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
             types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
 2002-11-01  paf            types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
             types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
         * src/main/execute.C: comment            types/pa_wcontext.h, types/pa_wwrapper.h: 2004
   
 2002-10-31  paf          * src/main/pa_globals.C: beauty: typo caused gc.log warnings with
             debug version of gc.dll
         * src/main/execute.C: found out why, checked that for now.  todo:  
           find out a way for that user could do that          * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
             lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
         * www/htdocs/: base.p, derived.p, index.html: this example creates            lib/pcre/pcre_parser_ctype.vcproj, lib/sdbm/sdbm.vcproj,
           base object, which is wrong, todo: find out why            lib/smtp/smtp.vcproj, main/main.vcproj, main/pa_globals.C,
             targets/cgi/parser3.C, targets/cgi/parser3.vcproj,
         * src/types/pa_vstateless_object.h: object put replaces static            targets/isapi/parser3isapi.vcproj, types/types.vcproj: migrated
           parent if any            to latest libxml[2.6.5] and libgdome[1.1.2] simplified lib build
             processes
         * src/types/pa_vobject.C: object put replaces static parent if any  
           * src/: classes/classes.vcproj, lib/gd/gd.vcproj, main/main.vcproj,
         * src/classes/form.C, src/classes/mail.C, src/classes/op.C,            main/pa_globals.C, targets/cgi/parser3.vcproj,
           src/classes/xnode.h, src/main/compile.tab.C, src/main/execute.C,            targets/isapi/parser3isapi.vcproj, types/types.vcproj: continued
           src/main/pa_request.C, src/types/pa_value.h,            changes to reflect libxml xsl new folders
           src/types/pa_vclass.C, src/types/pa_vclass.h,  
           src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,          * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
           src/types/pa_vcookie.h, src/types/pa_vdate.h,            lib/smtp/smtp.vcproj, main/main.vcproj,
           src/types/pa_venv.h, src/types/pa_vfile.h, src/types/pa_vform.C,            targets/cgi/parser3.vcproj, types/types.vcproj: continued changes
           src/types/pa_vform.h, src/types/pa_vhash.h,            to reflect libxml xsl new folders
           src/types/pa_vimage.h, src/types/pa_vmail.C,  
           src/types/pa_vmail.h, src/types/pa_vmath.h,          * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
           src/types/pa_vmethod_frame.h, src/types/pa_vobject.C,            lib/smtp/smtp.vcproj, main/main.vcproj,
           src/types/pa_vobject.h, src/types/pa_vrequest.C,            targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
           src/types/pa_vrequest.h, src/types/pa_vresponse.C,            types/types.vcproj: started changes to reflect libxml xsl new
           src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,            folders
           src/types/pa_vstateless_class.h,  
           src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,          * ChangeLog, parser3.sln, src/classes/classes.vcproj,
           src/types/pa_vstatus.h, src/types/pa_vstring.h,            src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
           src/types/pa_vtable.C, src/types/pa_vtable.h,            src/main/compile.tab.C, src/main/main.vcproj,
           src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,            src/main/pa_globals.C, src/targets/cgi/parser3.vcproj,
           src/types/pa_vxnode.C, src/types/pa_vxnode.h,            src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
           src/types/pa_wwrapper.h, www/htdocs/base.p, www/htdocs/derived.p,            started changes to reflect libxml xsl new folders
           www/htdocs/index.html: static fix merged  
   2004-02-10  paf
         * src/: main/compile.tab.C, types/pa_vobject.C: killed  
           $virtual_fields in dynamic, but one can reach derived          * INSTALL: critical: libxslt1.1.2 wanted at least libxml2.6.3 to
           static[class] variable from base            compile. recommened latest libxml up to date
   
         * src/: classes/op.C, types/pa_value.h, types/pa_vmethod_frame.h,          * INSTALL: critical: prior to 1.0.30 had bug: "a segfault on
           types/pa_vobject.C, types/pa_vobject.h,            pattern compilation errors", on which spent 4 hours worktime. use
           types/pa_vstateless_class.C, types/pa_vstateless_class.h: fixed            versions higher than that. recommended now latest up to date
           statics, left $virtual_fields in dynamic  
   2004-02-06  paf
         * src/types/: pa_vobject.C, pa_vstateless_class.C: realized that  
           one can't remember derivates in base class: there's so many of          * src/main/: pa_sql_driver_manager.C, pa_stylesheet_manager.C:
           them.  also there can be no virtual method calls in static            beauty: unified destructing style
           classes  
           * src/main/untaint.C: beauty: removed old def/ifdef
         * src/classes/form.C, src/classes/mail.C, src/classes/op.C,  
           src/classes/xnode.h, src/main/execute.C, src/main/pa_request.C,          * src/main/untaint.C: beauty: coredump @unknown untaint language
           src/types/pa_value.h, src/types/pa_vclass.C,            now
           src/types/pa_vclass.h, src/types/pa_vcode_frame.h,  
           src/types/pa_vcookie.C, src/types/pa_vcookie.h,  2004-02-03  paf
           src/types/pa_vdate.h, src/types/pa_venv.h, src/types/pa_vfile.h,  
           src/types/pa_vform.C, src/types/pa_vform.h, src/types/pa_vhash.h,          * src/: classes/image.C, main/pa_exec.C, main/pa_memory.C,
           src/types/pa_vimage.h, src/types/pa_vmail.C,            targets/isapi/parser3isapi.C, types/pa_value.C,
           src/types/pa_vmail.h, src/types/pa_vmath.h,            types/pa_vcookie.C: beauty: %u is more simple=proper for size_t
           src/types/pa_vmethod_frame.h, src/types/pa_vobject.C,            then %ld/%lu
           src/types/pa_vobject.h, src/types/pa_vrequest.C,  
           src/types/pa_vrequest.h, src/types/pa_vresponse.C,          * src/main/pa_common.C: typo: %l -> %u
           src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,  
           src/types/pa_vstateless_class.h,          * src/classes/xdoc.C: bugfix: libxml: FOR UTF-8 TOO russian letters
           src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,            in attributes or documents-results of transform now not &#04xx;
           src/types/pa_vstatus.h, src/types/pa_vstring.h,  
           src/types/pa_vtable.C, src/types/pa_vtable.h,          * src/classes/xnode.C: memleaks found: not fixed yet. todo
           src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,  
           src/types/pa_vxnode.C, src/types/pa_vxnode.h,          * src/main/pa_charset.C: bugfix: forgot to undo some
           src/types/pa_wwrapper.h, www/htdocs/base.p, www/htdocs/derived.p,  
           www/htdocs/index.html: static call $self fixed          * src/main/pa_charset.C: beauty: uncomment
             PA_PATCHED_LIBXML_BACKWARD to link with old patched libxml
         * src/main/execute.C: comment            libraries
   
         * src/classes/op.C, src/types/pa_value.h, src/types/pa_vobject.h,  2004-02-02  paf
           www/htdocs/base.p, www/htdocs/derived.p, www/htdocs/index.html,  
           www/htdocs/operators.p, www/htdocs/some.p:          * src/types/pa_vcookie.C: bugfix: erasing cookie: params now output
           ^process[$caller.self]{...} now compiles to last derived object            $cookie:example[    $.value[value]  $.path[/there/] ]
           part of that 'self'  
             $cookie:example[        $.value[]       $.expires[session]
 2002-10-30  paf            $.path[/there/]         $.domain[test.com] ]
   
         * www/htdocs/: derived.p, some.p: include method overriding tested          * src/types/pa_vform.C: bugfix: empty values with
           OK            enctype=multipart/form-data now produce entries in $form:tables
             <form method=post enctype=multipart/form-data> <input type=hidden
 2002-10-29  paf            name=a> <input type=hidden name=b>
   
         * src/targets/isapi/parser3isapi.C: comment on 404 bad status            <input type=submit> </form> $k[^form:fields._keys[]] ^eval($k)
           re-passing [iis to blame]            <hr> <pre>$request:body
   
         * src/classes/string.C: changed string.save to pass current sql  2004-01-30  paf
           connection to cstr thus one can ^connect[some server]{  
           $s[insert into table x (x) values (^taint[sql]{value})]          * src/classes/xdoc.C: bugfix: libxml: russian letters in attributes
           ^s.save[some.sql] } and he'd get in some.sql file code with            or documents-results of transform now not &#04xx;
           properly escaped.  [tried in mssql->mysql export->import of  
           binary data]          * src/classes/date.C: bugfix: ^date::create[invalid fields now
             produce exception.
 2002-10-28  paf  
           * src/: classes/date.C, include/pa_string.h, main/pa_string.C:
         * www/htdocs/: index.html: bad email handling test            bugfix: ^date::create[invalid fields now produce exception.
   
 2002-10-25  paf          * ChangeLog, src/classes/date.C: bugfix: ^date::create[invalid
             year] now produces exception. todo: check other fields
         * src/types/pa_vresponse.C: case insensitive response user fields  
           get/put  2004-01-29  paf
   
         * src/: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,          * src/include/pa_memory.h: typo error
           types/pa_vresponse.C: saving for maybe-future  
           * src/include/pa_memory.h: bugfix: [potential] strdup copied one
 2002-10-23  paf            more byte then specified, then zeroed it << useless and
             potentially harmful(could gpf)
         * operators.txt, src/classes/table.C: ^table.hash{code}...  
           ^table.hash(expr)...  2004-01-22  paf
   
         * src/types/pa_vmail.C, www/htdocs/index.html: email whitespace          * src/classes/xdoc.C: bugfix: when stylesheet contains error, gpf
           trimBoth-ed  
           * src/main/untaint.C: merged: bugfix from 3.1.1 on whitespace
 2002-10-22  paf            optimization
   
         * src/types/: pa_vform.C, pa_vform.h: removed needless          * src/main/untaint.C: bugfix: whitespace now optimized properly
           VForm::Append...(...Value)            [were bug: ^taint[1 & 2]="1 &2"
   
         * src/main/execute.C: $.name outside of $name[...] checked          * src/main/pa_globals.C: beauty: bigger buffer for xml-related
             errors
         * src/main/: compile.tab.C, compile.y: lexer changed to fix  
           ^call[]^#HH bug [that situation yelded no EON, which whas wrong]          * src/main/pa_common.C: merged: bugfix from 3.1.1 on memory
             overflow
 2002-10-21  paf  
           * src/main/pa_common.C: bugfix: buffer overflow * in libxml&xsl
         * operators.txt, src/types/pa_vform.C, src/types/pa_vform.h:            error-reporting code * in parser-error reporting code [when no
           $form:qtail $form:imap.x/y            @unhandled_exception defined]
   
         * operators.txt, src/types/pa_vform.C: $form:nameless =            fixed in one place: my *snprintf override
           "?value&...", "...&value&...", "...&value"  
   2004-01-13  paf
         * operators.txt, src/types/pa_vform.C: $form:image-map  
           * operators.txt: typo erro
         * operators.txt, src/classes/file.C, www/htdocs/index.html:  
           /some/page.html: ^file:fullpath[a.gif] => /some/a.gif  2003-12-25  paf
   
 2002-10-17  paf          * src/main/pa_common.C: bugfix: ^file::load[binary;http:// now not
             garbled  [pieces after zero bytes were removed]
         * src/main/: compile.tab.C, compile.y: operators precedence changed  
           a little: logical not and bitwise negation precedence made  2003-12-22  paf
           highest, << and >> bitshits precedence made equal [were << higher  
           than >>]          * src/include/Makefile.am: bugfix: removed from dist:
             src/include/pa_config_auto.h which were configured for
         * src/classes/op.C: exception handling fixed [were bad with            make-dist-platform and badly updated proper config file in target
           contexts]            [when .tar used for updating existing source tree]
   
 2002-10-16  paf          * ChangeLog, operators.txt, src/classes/op.C,
             src/include/pa_sql_connection.h,
         * www/htdocs/index.html: bad compile to system class test            src/include/pa_sql_driver_manager.h,
             src/main/pa_sql_driver_manager.C, src/sql/pa_sql_driver.h:
         * src/classes/op.C, src/include/pa_request.h, src/main/execute.C,            feature: sql introducing ability to transcode charsets
           src/main/pa_request.C, www/htdocs/index.html,  
           www/htdocs/derived.p: Request::self considered equal to  2003-12-19  paf
           VMethodFrame::self, and removed, Request::get_self() mapped to  
           VMethodFrame.self()          * src/main/pa_sql_driver_manager.C: beauty: more straighforward
             error message
         * src/: classes/op.C, main/pa_request.C: VMainClass now has name =  
           $hash in open field now gives old good error meesage          * src/main/pa_charset.C: bugfix: memory for charsethandler
             structure for libxml now allocated properly
 2002-10-15  paf  
   2003-12-17  paf
         * src/types/pa_vjunction.h, www/htdocs/index.html: ^if(def  
           $junction){was true}{now false} use ^if($junction is          * src/types/pa_vfile.C: beauty: removed outdated cast
           junction){was and now true}  
           * src/main/pa_common.C: bugfix: empty http response caused gpf
         * src/classes/xdoc.C, src/classes/xnode.C,  
           src/include/pa_charset.h, src/include/pa_pool.h,          * src/include/pa_string.h: bugfix: removed too strong a assert
           src/main/pa_charset.C, src/main/pa_pool.C, src/types/pa_vxnode.C,  
           www/htdocs/index.html: xml->parser strings now have origin, which          * src/main/pa_globals.C: bugfix: removed false warning [warning:
           points to place where value left xml library and came to parser:            unreported xmlGenericErrors]
           place of dom field extraction/call  
   2003-12-15  paf
         * src/classes/op.C, src/include/pa_opcode.h,  
           src/include/pa_request.h, src/main/compile.tab.C,          * src/classes/xdoc.C: bugfix: taint uri under ^xdoc::create{now
           src/main/compile.y, src/main/execute.C,            works}
           src/types/pa_vmethod_frame.h, www/htdocs/derived.p: removed last  
           pieces of old code allowing $junction.xxx at compile time  2003-12-11  paf
   
         * ChangeLog, src/classes/op.C, src/main/compile.tab.C,          * operators.txt, src/types/pa_vstatus.C:     !$status:pid process
           src/main/compile.y, src/types/pa_vmethod_frame.h: process[self]            id
           objects also considered [were only classes]                !$status:tid thread id
   
         * ChangeLog, src/classes/op.C, src/include/pa_request.h,          * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
           src/types/pa_vmethod_frame.h, www/htdocs/derived.p,            main/pa_globals.C, main/pa_request.C, types/pa_vstatus.C:
           www/htdocs/index.html: ^process[CLASS]{body} now executed with            bugfix(solaris): removed dependency on object initialization
           CLASS self.  [   (request&method_frame).self temporarily changed            order [one more place]
           ]  
           * src/: classes/file.C, classes/mail.C, classes/op.C,
         * src/classes/hash.C, src/classes/op.C, www/htdocs/index.html,            classes/xdoc.C, main/pa_request.C, types/pa_vimage.C,
           www/htdocs/operators.p: method_frame now always changed, with no            types/pa_vmath.C, types/pa_vstatus.C: beauty cancel: gcc does not
           exception to native calls.  for&foreach changed to use            understand that
           method_frame.caller for their var's name context  
           * src/: classes/file.C, classes/mail.C, classes/op.C,
         * src/main/execute.C, src/targets/cgi/parser3.C,            classes/xdoc.C, include/pa_cache_managers.h,
           src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,            include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
           www/htdocs/operators.p: compiling to system classes disabled            include/pa_stylesheet_manager.h, main/pa_request.C,
             main/pa_stylesheet_manager.C, types/pa_vimage.C,
         * www/htdocs/: derived.p, index.html: test of ^process from            types/pa_vmath.C, types/pa_vstatus.C: beauty: removed redundant
           operator called from user class            ctor call [relying on implicit String::Body(cstr) call]
   
         * operators.txt, src/classes/op.C, www/htdocs/operators.p:          * src/main/: pa_cache_managers.C, pa_sql_driver_manager.C,
           ^process[$caller.CLASS]{code-string} added            pa_stylesheet_manager.C: bugfix(solaris): removed dependency on
             object initialization order [two places]
         * operators.txt, src/classes/op.C, src/main/compile.tab.C,  
           src/main/compile.y, src/main/execute.C, src/main/pa_request.C,  2003-12-10  paf
           src/types/Makefile.am, src/types/pa_vjunction.C,  
           src/types/pa_vjunction.h, src/types/pa_vmethod_frame.h,          * src/include/pa_sql_connection.h: bugfix: $status:sql.cache back
           src/types/types.dsp, www/htdocs/operators.p: removed            << time now ok
           $junction.get $junction.set[] introducing $caller  
           * operators.txt, src/main/pa_sql_driver_manager.C,
         * src/types/pa_value.h: removed outdated comments. doxygen would            src/main/pa_stylesheet_manager.C: $status:stylesheet.cache back
           find them lower by inheritance tree            operational
   
         * src/types/pa_vjunction.C: ident          * ChangeLog, operators.txt, src/classes/xdoc.C,
             src/include/pa_charset.h, src/include/pa_sql_connection.h,
 2002-10-14  paf            src/main/pa_charset.C, src/main/pa_sql_driver_manager.C,
             src/main/pa_string.C, src/types/pa_vxdoc.h: $status:sql.cache
         * src/classes/op.C: process compiles to code's class class            back operational
   
         * src/classes/form.C, src/classes/mail.C, src/classes/op.C,  2003-12-02  paf
           src/include/pa_request.h, src/main/compile.C,  
           src/main/compile.tab.C, src/main/compile.y, src/main/execute.C,          * src/types/pa_vmail.C: bugfix:
           src/main/pa_request.C, src/types/pa_vstateless_class.h,            ^mail:send[$.file[$.value[>>xxxx<<]] now untaints properly [were:
           www/htdocs/index.html: operators now main-class-methods            as-is forced]
   
         * src/classes/op.C, src/include/pa_request.h,          * src/main/pa_xml_io.C: bugfix: on some platforms one can't throw
           www/htdocs/index.html, www/htdocs/operators.p: ^try{^call{}} now            exceptions out of libxml callbacks: reimplemented error handling
           has better stack trace [has "call" & co there]            of http://localhost, parser://method and safemode check callbacks
   
         * src/: include/pa_request.h, main/execute.C, main/pa_request.C:          * src/main/pa_string.C: bugfix: SPARC gpf on %4!=0 address int ref
           operators @auto now executed in MAIN context            [merged from HEAD]
   
         * src/main/execute.C: operator execution context now = MAIN, not          * src/classes/image.C: nothing: comment removed
           closest stack frame  
           * src/main/pa_string.C: bugfix: sparc gpf on reading %4!=0
           @touchit[] $i[after]            addresses to int
   
           ----t.html $i[before] << local ^touchit[] $i << now 'before',  2003-12-01  paf
           were 'after'  
           * src/main/pa_xml_io.C: bugfix: typo
           ---t.html $i[before] << notlocal [main] ^touchit[] $i << now  
           'after'          * src/main/pa_globals.C: bugfix: win32: compile prob
   
         * src/main/execute.C: comment          * src/classes/xdoc.C: bugfix: typo
   
         * src/types/pa_vclass.C, src/types/pa_vobject.h,          * src/main/pa_xml_io.C: todo: safe mode check not to throw
           src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,            exception
           www/htdocs/index.html, www/htdocs/operators.p: $form:CLASS  
           resurrected [wes killed in action]          * src/main/pa_xml_io.C: bugfix: http://localhost typo error
   
         * src/types/pa_vxnode.C: misreplace fixed  2003-11-28  paf
   
         * configure, configure.in, src/include/pa_config_auto.h.in,          * src/main/pa_xml_io.C: installed safe-mode checker as filter of
           src/types/pa_vstatus.C, operators.txt, www/htdocs/index.html:            all xml documents read
           $status:rusage.tv_secs/usecs introduced  
           * src/main/pa_xml_io.C: http://localhost/ now checked for safe mode
 2002-10-09  paf  
           * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
         * src/classes/double.C, src/classes/int.C, src/classes/string.C,            include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
           www/htdocs/derived.p, www/htdocs/index.html: ^string.int[] now            replaced original open mech of xdoc::create & co to use libxml
           failes on empty string [or uses (default)]            open, so that this would work for root document todo: safe mode
             checks to libxml: ideally to some 1 point
 2002-10-08  paf  
           * src/main/pa_xml_io.C: comment
         * src/main/untaint.C: mail header quoted printable changed after  
           RFC reread          * operators.txt, src/main/pa_xml_io.C: leading / in
             http://parser[abscent params]
         * operators.txt: plan on ^if(method  
           * operators.txt, src/include/pa_request.h, src/main/pa_xml_io.C:
         * src/types/pa_vxnode.C: misreplace            works.  todo: maybe replace original open mech of xdoc::create &
             co to use libxml open, so that this would work for root document
 2002-09-24  paf  
             $xdoc[^xdoc::create{<?xml version="1.0"?> <!DOCTYPE test SYSTEM
         * src/targets/cgi/Makefile.am: LIBS were bad name in .am            "parser://method/params/here"> <test>   &test^; </test> }]
   
         * src/types/pa_vmail.C: HAVE_TIMEZONE & co now checked and            ^taint[^xdoc.string[]]
           mailreceive would compile on freebsd now  
             @method[param] <!ENTITY test
         * src/include/pa_config_fixed.h, src/types/pa_vmail.C, acconfig.h,            "test-entity-value+$form:user+$param!">
           configure, configure.in, src/include/pa_config_auto.h.in,  
           src/targets/cgi/Makefile.am: HAVE_TIMEZONE & co now checked and  2003-11-27  paf
           mailreceive would compile on freebsd now  
           * src/main/pa_xml_io.C: libxml: started parser://methodcall/params
         * src/classes/file.C, src/main/untaint.C, www/htdocs/index.html: 1.  
            file spec language changed: now there are only few chars are          * src/classes/date.C: bugfix: typo error
           untainted: * ? ' " < > | and, on unix, : \ ~ [russian letters and  
           SPACES now enabled, one should use ^untaint[uri]{...} now]  2003-11-26  paf
   
           2.  $list[^file:list[dir]] now returns simply tainted names in          * operators.txt, src/include/Makefile.am, src/include/pa_globals.h,
           $list.name, not tainted as filespec            src/main/Makefile.am, src/main/main.vcproj,
             src/main/pa_globals.C, src/main/pa_request.C,
           @russianindex[] #dir with files with russian-lang names            src/include/pa_xml_io.h, src/main/pa_xml_io.C: simplification:
           $where[dir]            xml errors to hash<thread_id,error> reorganization: xml io moved
             to pa_xml_io.C/h
           $dir[^file:list[$where;\.txt^$]] ^dir.menu{     <a  
           href=$where/^untaint[uri]{$dir.name}>$dir.name</a><br> }          * src/types/pa_value.h: warnings: --
   
 2002-09-23  paf  2003-11-25  paf
   
         * src/types/pa_vdouble.h: double->int round added          * src/classes/table.C: bugfix: wrong sequence. [sadly no waring
             whatever)
         * src/classes/date.C: date bug fix, now  
           round(floatDays*secondsPerDay)          * src/classes/table.C: bugfix: a, c?x:y, z in gcc considered(?) as
             a, (c?x:y, z)
         * src/classes/date.C: date bug fix, now  
           round(floatDays*secondsPerDay)          * src/main/untaint.C: bugfix: consequences of not reading this
             comment: CORD_pos_chars_left /* Number of characters in cache.
 2002-09-20  paf            <= 0 ==> none    */
   
         * src/main/execute.C, www/htdocs/index.html: code junction calls          * src/include/pa_array.h: removed needless checks
           disabled [before: code was compiled in such a way, that there  
           were no code-junctions in OP_CALL]  2003-11-24  paf
   
           this now error: @badjunctioncall[] ^badjunctioncallinside{code}          * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
             removed limit: now $form:xxx can be accessed anytime, even in
           @badjunctioncallinside[code] ^code[]            @auto/conf [and request/response:charset still can be changed
             anytime]
         * src/main/compile.tab.C, src/main/compile.y,  
           www/htdocs/index.html: changed grammer on junction expanding to          * src/main/pa_common.C: bugfix: ^file::load[binary;http://...]
           include ^junction.method            now not transcodes response body
   
         * src/main/pa_common.C: -d "DIR/" now true          * operators.txt, src/types/pa_vxnode.C, src/types/pa_vxnode.h:
             $xdoc[^xdoc::create[test]] $tn[^xdoc.createTextNode[text node
         * src/classes/xdoc.C, www/htdocs/index.html: xdoc::create[name] now            value]] $dummy[^xdoc.firstChild.appendChild[$tn]]
           sets $request:charset as internal xdoc encoding, and after            $xdoc.firstChild.firstChild.nodeValue[different]
           decoding attributes set by dom functions now encoded OK, not as            ^taint[^xdoc.string[]]
           digital entities  
           * src/: include/pa_hash.h, types/types.vcproj: linker HPUX nongnu
         * src/classes/xdoc.C: empty transform result, being taken as file            workaround: static Hash::allocates -> static Hash_allocates
           now returns empty file, not raises stupid error about "stat-ed  
           file"  2003-11-21  paf
   
         * src/types/pa_vhash.h, www/htdocs/operators.p: hash.foreach          * Makefile.am, configure, configure.in, src/classes/Makefile.am,
           modification of existing keys allowed            src/include/pa_config_auto.h.in, src/targets/cgi/Makefile.am,
             src/types/Makefile.am: rearrange: gd&smtp moved to src/lib
         * src/types/types.dsp: introducing $junction.get/put(1) one can  
           write iterators now:          * src/classes/classes.vcproj: rearrange: gd&smtp moved to src/lib
   
           ^user-foreach[key;value]{$key=$value<br>}          * src/classes/mail.C: bugfix: typo
   
           @user-foreach[key;value;code] ^for[i](1;10){    $code.key($i)          * parser3.sln, src/classes/Makefile.am, src/lib/Makefile.am,
           $code.value($i*2)       $code }            src/lib/gd/Makefile.am, src/lib/gd/gd.vcproj, src/lib/gd/gif.C,
             src/lib/gd/gif.h, src/lib/gd/gifio.C, src/lib/gd/mtables.h,
         * src/main/compile_tools.h: mistype            src/lib/smtp/Makefile.am, src/lib/smtp/comms.C,
             src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
         * src/targets/cgi/Makefile.am: binaries now depend on makefiles,            src/lib/smtp/smtp.vcproj: rearrange: gd&smtp moved to src/lib
           thus taking linking options configure changes into account [were:  
           ignoring]          * src/main/pa_exec.C: bug in safe mode
   
         * src/types/: pa_vjunction.C, Makefile.am: introducing          * src/include/Makefile.am: pa_xml_exception.h
           $junction.get/put(1) one can write iterators now:  
           * src/targets/isapi/parser3isapi.C: more warnings --
           ^user-foreach[key;value]{$key=$value<br>}  
   2003-11-20  paf
           @user-foreach[key;value;code] ^for[i](1;10){    $code.key($i)  
           $code.value($i*2)       $code }          * src/: classes/math.C, classes/op.C, classes/string.C,
             main/pa_charset.C, main/pa_dictionary.C, main/pa_string.C,
         * src/include/pa_opcode.h, src/include/pa_request.h,            types/pa_value.C, main/pa_dir.C, main/pa_table.C: more warnings
           src/main/compile.tab.C, src/main/compile.y, src/main/execute.C,            --
           src/main/main.dsp, src/targets/cgi/parser3.dsp,  
           src/types/pa_vjunction.h, www/htdocs/.htaccess,          * src/: main/pa_charset.C, main/pa_string.C, types/pa_vxnode.C:
           www/htdocs/index.html: introducing $junction.get/put(1) one can            more warnings --
           write iterators now:  
           * src/classes/xdoc.C: more warnings --
           ^user-foreach[key;value]{$key=$value<br>}  
           * src/classes/: date.C, image.C, xdoc.C: more warnings --
           @user-foreach[key;value;code] ^for[i](1;10){    $code.key($i)  
           $code.value($i*2)       $code }          * src/: main/pa_sql_driver_manager.C, main/untaint.C,
             types/pa_vcookie.C, types/pa_vmail.C: more warnings --
 2002-09-19  paf  
           * src/: classes/date.C, classes/file.C, classes/hash.C,
         * Makefile.am: new: make commit            classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
             classes/table.C, include/pa_cache_managers.h,
         * aclocal.m4: forced to be older            include/pa_stylesheet_connection.h, main/pa_request.C,
             types/pa_vdate.h, types/pa_vhashfile.C, types/pa_vimage.h,
 2002-09-18  paf            types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: more warnings
             --
         * parser3.dsw, src/include/pa_opcode.h, src/main/compile.tab.C,  
           src/main/compile.y, src/main/execute.C, www/htdocs/index.html: <<          * src/main/: execute.C, pa_request.C: old forgotten todo: when
           >> int shifts            can't report problem (undefined @unhandled_exception) problem
             source string were not reported
         * src/: include/pa_common.h, include/pa_request.h,  
           main/pa_common.C, main/pa_request.C: auto.p exists but unreadable          * src/: classes/classes.C, classes/classes.h, classes/date.C,
           - now this - fatal error            classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
             classes/hashfile.C, classes/image.C, classes/int.C,
         * src/classes/file.C, www/htdocs/index.html,            classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
           www/htdocs/mailreceive.eml: ^file::exec/cgi $.stdin[can be file            classes/response.C, classes/string.C, classes/table.C,
           now] so that one can pass binary data there            classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
             include/pa_array.h, include/pa_cache_managers.h,
         * src/classes/date.C, src/classes/double.C, src/classes/file.C,            include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
           src/classes/hash.C, src/classes/image.C, src/classes/int.C,            include/pa_config_fixed.h, include/pa_dictionary.h,
           src/classes/mail.C, src/classes/op.C, src/classes/response.C,            include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
           src/classes/string.C, src/classes/table.C, src/classes/void.C,            include/pa_globals.h, include/pa_hash.h, include/pa_memory.h,
           src/classes/xdoc.C, src/classes/xnode.C,            include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
           src/include/pa_request.h, www/htdocs/index.html: pa_request            include/pa_request.h, include/pa_request_charsets.h,
           contexts made privated, plus get_{self/method_frame} to read.            include/pa_request_info.h, include/pa_sapi.h, include/pa_socks.h,
           Request_context_saver used in ^try to save flang too.  [were not            include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
           saved]            include/pa_stack.h, include/pa_string.h,
             include/pa_stylesheet_connection.h,
         * src/types/pa_vresponse.C: header value chains joined before            include/pa_stylesheet_manager.h, include/pa_table.h,
           output, this should help $.subject[$var $var] from being            include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
           converted to subject: ?koi8-r?Q?...?= ?koi8-r?Q?...?=            include/pa_xml_exception.h, lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
             lib/sdbm/apr_file_io.C, lib/sdbm/apr_strings.C, main/compile.C,
 2002-09-17  paf            main/compile_tools.C, main/compile_tools.h, main/execute.C,
             main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
         * src/: main/execute.C, types/pa_value.h, types/pa_vmethod_frame.h:            main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
           removed changes, operators executed with calling self.  lots of            main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
           code with ^include code relies on defined/defining self variables            main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
             main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
           $a[1] ^include[print_a.p] print_a.p: $a            main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
             main/pa_uue.C, main/pa_xml_exception.C, main/untaint.C,
           ^include[set_a.p] a=$a set_a.p: $a[1]            sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
             targets/cgi/parser3.C, targets/isapi/pa_threads.C,
         * src/classes/op.C, src/main/execute.C, src/main/pa_request.C,            targets/isapi/parser3isapi.C, types/pa_junction.h,
           src/types/pa_value.C, src/types/pa_value.h,            types/pa_method.h, types/pa_value.C, types/pa_value.h,
           src/types/pa_vmethod_frame.h, src/types/pa_vstateless_class.h,            types/pa_vbool.h, types/pa_vclass.C, types/pa_vclass.h,
           www/htdocs/operators.p: operators now executed with MAIN self.            types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
           it's for ^include sake, too strong a change            types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
             types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
         * src/classes/op.C, www/htdocs/index.html, www/htdocs/operators.p:            types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
           made place for ^process to compile it's code to in case of no            types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
           self            types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
             types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
         * src/main/execute.C, www/htdocs/index.html: found ancient param to            types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
           Junction, removed.  allowed passing self to native_code_operators            types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
           [for ^process to work, she needs self]            types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
             types/pa_vresponse.h, types/pa_vstateless_class.C,
         * src/: main/execute.C, types/pa_value.C, types/pa_value.h,            types/pa_vstateless_class.h, types/pa_vstateless_object.h,
           types/pa_vstateless_class.h: found ancient param to Junction,            types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
           removed.  allowed passing self to native_code_operators [for            types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
           ^process to work, she needs self]            types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
             types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
         * src/main/execute.C, src/main/pa_request.C, src/types/pa_value.C,            types/pa_wcontext.h, types/pa_wwrapper.h: static const char *
           src/types/pa_value.h, src/types/pa_vmethod_frame.h,            const IDENT
           src/types/pa_vstateless_class.h, www/htdocs/index.html,  
           www/htdocs/operators.p: allowed Request.self to be 0, checked          * src/: include/pa_array.h, include/pa_pool.h,
           that in VMethodFrame get/put and $self.            include/pa_request.h, include/pa_string.h, include/pa_table.h,
             main/compile_tools.h, main/pa_common.C, types/pa_vhash.h,
         * src/classes/table.C, src/classes/xdoc.C, www/htdocs/index.html:            types/pa_wcontext.h: more warnings --
           table::sql  options table::create  copy options options checked,  
           wrong option now fatal error          * src/: classes/classes.vcproj, classes/date.C, classes/double.C,
             classes/file.C, classes/hash.C, classes/hashfile.C,
         * src/main/pa_string.C, www/htdocs/index.html: string.replace fixed            classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
           [were missing words on pieces boundaries]            classes/memory.C, classes/op.C, classes/string.C,
             classes/table.C, classes/xdoc.C, classes/xnode.C,
         * bin/auto.p.dist.in: strange \n            include/pa_config_includes.h, include/pa_operation.h,
             include/pa_sql_connection.h, include/pa_table.h,
         * configure, configure.in: .so now detected [can be .sl on hpux,            include/pa_types.h, lib/ltdl/config_fixed.h,
           .dll on cygwin, .so in other cases)            lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/maketables.c,
             lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
         * configure, configure.in, bin/auto.p.dist.in: .so now detected            lib/sdbm/apr_file_io.C, main/compile.tab.C, main/execute.C,
           [can be .sl on hpux, .dll on cygwin, .so in other cases)            main/main.vcproj, main/pa_cache_managers.C, main/pa_charset.C,
             main/pa_common.C, main/pa_dir.C, main/pa_exec.C,
         * operators.txt, src/classes/hash.C, src/classes/table.C,            main/pa_globals.C, main/pa_os.C, main/pa_request.C,
           src/include/pa_globals.h, src/main/pa_globals.C,            main/pa_string.C, main/pa_table.C, targets/cgi/parser3.vcproj,
           www/htdocs/index.html: table.sql hash::sql flag to allow            targets/isapi/parser3isapi.vcproj, types/pa_value.h,
           duplicate keys [$.distinct(1/0)] first record taken [were last]            types/pa_vconsole.h, types/pa_vdate.h, types/pa_vfile.h,
             types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vimage.h,
         * src/classes/hash.C, src/classes/table.C,            types/pa_vmail.C, types/pa_vobject.C,
           src/include/pa_sql_connection.h, www/htdocs/index.html: table.sql            types/pa_vstateless_class.h, types/pa_vtable.C,
           hash::sql duplicate keys now errors            types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
             types/pa_vxnode.h, types/types.vcproj: turned on warnings level4
         * src/classes/hash.C: foreach delims bug fixed [were ,2,3]            on all projects (except libltdl=off & libsdbm=level3) found
             several unitialized vars
         * src/classes/op.C, src/classes/table.C, www/htdocs/index.html:  
           menu/for delims bug fixed [were ,2,3]  2003-11-19  paf
   
 2002-09-16  paf          * src/classes/op.C: more ansi C++ comp
   
         * src/classes/file.C, www/htdocs/index.html: file::cgi line ends          * operators.txt, src/classes/op.C, src/include/pa_request.h,
           can be both unix & dos. and they can be unix [\n\n] on win when            src/main/pa_request.C: ^cache[...]{body}{catch block with
           'use CGI' used, it causes stdout to be binary.  now detected            $exception.handled[cache] meaning "get expired cache, if any.
           closest header break.            else error"}
   
         * src/: main/untaint.C, types/pa_vmail.C: mail:send closing ?=  now          * src/: classes/op.C, include/pa_os.h, include/pa_request.h,
           closed right            main/pa_common.C: cache: ^cache[] fallback todo: kinda ^try:
             ^cache[...]{body}{catch code with $exception.cache field}
 2002-09-13  paf  
   2003-11-12  paf
         * operators.txt, src/main/compile.tab.C, src/main/compile.y,  
           src/main/compile_tools.h, www/htdocs/index.html: (expression          * src/classes/xnode.C: replaceChild: 2nd param now named oldChild
           #comment)            [copy/paste bug]
   
           (multiline expression #comment  line2  #comment )  2003-11-11  paf
   
           (expression #comment with (brackets) comment) << OK          * src/types/: pa_value.h, pa_vfile.h: more C++ compatible [HP C++
             failed]
         * operators.txt, src/main/compile.tab.C, src/main/compile.y,  
           www/htdocs/index.html: !| bitwise !|| numerical xor now  2003-11-10  paf
           [preparing for expression #comments]  
           * src/types/pa_vconsole.h: flush
         * src/main/compile.tab.C, src/main/compile.y,  
           www/htdocs/index.html: @method[$name] now parse error          * operators.txt, src/main/pa_request.C, src/types/Makefile.am,
             src/types/types.vcproj, src/types/pa_vconsole.h: $console:line
         * src/: include/pa_config_fixed.h, main/pa_socks.C: HAVE_WINSOCK_H            read/write  [for nntp]
           cheched in pa_socks.C  
           * operators.txt: mysql: transaction support: ?autocommit=0
         * configure, configure.in, src/include/pa_config_auto.h.in:  
           HAVE_WINSOCK_H created in configure.in          * operators.txt: comment: updated
   
         * src/main/compile.tab.C, src/main/compile.y,          * src/types/: pa_vhashfile.C, pa_vhashfile.h: add: hashfile old
           src/types/pa_vresponse.C, www/htdocs/index.html: cookie date now            serialize version and exipire now removes entries
           clean [were mistakenly tainted & that worked bad with opera --  
           'happily' that worked OK with msie]          * operators.txt: ^hashfile.delete[] removes files altogether [and
             dir, if could]
 2002-09-12  paf  
           * src/: classes/hashfile.C, include/pa_common.h, main/pa_common.C,
         * src/types/: pa_vclass.C, pa_vmail.C, pa_vobject.C: VObject &            types/pa_vhashfile.C, types/pa_vhashfile.h: ^hashfile.delete[]
           VClass get_element now first looks to fields, next to methods &            removes files altogether [and dir, if could]
           co todo: the rest reason: more speed  
           * src/lib/sdbm/sdbm.c: bugfix: sdbm: .h said it's OK to remove
         * src/main/untaint.C: quoted printable encoding stops before            nonexistent pair. .c coded that that was error. fixed
           \s*<...>$  
           * src/types/pa_vhashfile.C: sdbm: exception type change to
         * src/main/untaint.C, www/htdocs/index.html: quoted printable ' '            file.access [regretfull can't split it to different exceptions
           now =20 and encoding stops before <...>$            without modifying sdbm source wich would prefer not to]
   
 2002-09-11  paf  2003-11-07  paf
   
         * src/main/pa_charset.C, src/targets/cgi/parser3.dsp,          * src/: classes/date.C, classes/file.C, classes/hash.C,
           www/htdocs/index.html: while fixing (            classes/hashfile.C, classes/image.C, classes/table.C,
           xmlCharEncodingInput/OutputFunc callbacks returned bad value )            classes/xdoc.C, include/Makefile.am, include/pa_array.h,
           forgot to check users of those funcs. not all were using that            include/pa_pool.h, include/pa_request.h, main/Makefile.am,
           return value convention            main/execute.C, main/main.vcproj, main/pa_pool.C,
             main/pa_request.C, targets/cgi/parser3.C, types/pa_vclass.C,
         * src/lib/pcre/ibm-1254.ucm, etc/parser3.charsets/windows-1254.cfg:            types/pa_vclass.h, types/pa_vhashfile.h, types/pa_vobject.h,
           windows-1254 added            types/pa_vstateless_class.h: resurrected: pool idea. now only for
             destructing objects at request processing end
 2002-09-10  paf  
   2003-11-06  paf
         * src/: classes/op.C, main/execute.C, types/pa_wcontext.h:  
           VCodeFrame parent param were specified badly          * src/: classes/Makefile.am, types/Makefile.am: .am sdbm INCLUDES
             updates
         * src/: main/execute.C, types/pa_value.h, types/pa_wwrapper.h:  
           WWrapper which used in constructing objects(second param to sql          * parser3.sln, src/targets/cgi/Makefile.am: .vcproj & .am updated
           method) ^...sql{}[$.default{code}] now has parent, wich helps            to include sdbm
           code in hash to survivi  
           * src/include/: pa_config_includes.h, pa_version.h: our
         * src/: include/pa_request.h, main/execute.C: removed redundant            replacements of max& co only for cpp
           param to execute [stack said 'thanks']  
           * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C: move to
         * src/: classes/op.C, main/execute.C, types/pa_value.C,            upper dir, .am updated
           types/pa_value.h, types/pa_vcode_frame.h,  
           types/pa_vmethod_frame.h, types/pa_wcontext.C,          * tests/todo.txt: hashfile: done
           types/pa_wcontext.h, types/pa_wwrapper.h: moved junction kill  
           responsibility to wcontext          * operators.txt, src/types/pa_vhashfile.C: hashfile: clear &
             expiration [time in value. todo: move time to key]
         * src/classes/file.C: decided not to log exec's with stderr, that  
           could be warnings, and it's up to scritper to log/show them          * src/types/pa_vhashfile.C: hashfile: foreach body can bodify $self
   
         * src/classes/double.C, src/main/execute.C, www/htdocs/index.html:          * src/types/pa_vhashfile.C: hashfile: clear now works [were trying
           double:sql badly called write_assign_lang, not write_no_lang,            to do that in foreach, no errors, but surely wrong]
           thus doing unnecessary double/string converstion, which were  
           loosing time&precesion          * operators.txt, src/types/pa_vhashfile.C,
             src/types/pa_vhashfile.h: hashfile: clear and proper locking
         * src/main/pa_charset.C, src/types/pa_vmail.C,  
           www/htdocs/index.html: xmlCharEncodingInput/OutputFunc callbacks          * operators.txt, src/classes/hash.C, src/classes/hashfile.C,
           returned bad value in case of unfinished in buffer processing,            src/types/pa_vhashfile.C, src/types/pa_vhashfile.h: hashfile:
           causing accidental transcode stop [in case that source enc !=            foreach
           utf-8 & there is incomplete utf-8 sequence at the end of  
           16000block iside of libxml lib] tfm readed & code updated          * src/classes/hashfile.C, src/types/pa_vhashfile.C,
             src/types/pa_vhashfile.h, operators.txt: hashfile: hash
 2002-09-04  paf  
           * operators.txt, src/classes/hashfile.C, src/types/pa_vhashfile.C,
         * configure: makes with sjlj            src/types/pa_vhashfile.h, tests/todo.txt: hashfile: delete
   
         * INSTALL, src/include/pa_config_fixed.h,          * src/: include/pa_memory.h, targets/cgi/parser3.C,
           src/include/pa_sql_connection.h,            types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
           src/main/pa_sql_driver_manager.C, www/htdocs/index.html:            types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile implemented
           -with-sjlj-exceptions define checked.  on win32 it made default            get/put [raw]
   
         * src/include/pa_config_auto.h.in: sjlj define          * src/: classes/op.C, main/pa_os.C: just linked
   
         * configure, configure.in: introducing --with-sjlj-exceptions [hpux          * src/: classes/xdoc.C, classes/xnode.C, types/pa_vxnode.h:
           can not work with longjump/throw pair, and one must switch that            XmlException changes
           on there.  todo: detect that automatically]  
           * src/: include/pa_charset.h, include/pa_globals.h,
         * src/types/pa_vxnode.C, www/htdocs/index.html: removed too strong            include/pa_stylesheet_connection.h, main/pa_exception.C:
           checks of xnode.elements.  now, for instance, if element does not            XmlException changes
           have any attributes, $xnode.attributes is void, not error  
           * src/lib/sdbm/: sdbm.c, sdbm.vcproj: just compiled
 2002-09-02  paf  
           * src/: include/pa_common.h, include/pa_exception.h,
         * operators.txt, src/main/execute.C, src/targets/cgi/parser3.dsp,            main/main.vcproj, main/pa_common.C, include/pa_os.h,
           www/htdocs/index.html: removed double_result, didn't help            include/pa_xml_exception.h, main/pa_os.C, lib/sdbm/sdbm.vcproj,
             main/pa_xml_exception.C: locking move to pa_os [along with
         * src/main/execute.C: double_result made to move that var away from            pa_sleep] apr-impl locking done
           hungry g++ optimizer (-O2), before: it were optimized and  
           comparison operators worked badly          * configure, configure.in, operators.txt, parser3.sln,
             src/classes/classes.vcproj, src/classes/hashfile.C,
         * src/types/pa_vdate.h: removed debug            src/classes/xdoc.C, src/include/pa_config_fixed.h,
             src/include/pa_exception.h, src/include/pa_globals.h,
         * Makefile.am, src/types/pa_vdate.h: happy now only install-exec            src/include/pa_memory.h, src/include/pa_version.h,
             src/lib/ltdl/libltdl.vcproj, src/lib/ltdl/libltdl.vcproj.vspscc,
         * src/main/execute.C: fixed numeric < & co so that thay now use            src/lib/ltdl/ltdl.vcproj, src/lib/ltdl/ltdl.vcproj.vspscc,
           c=a-b, c OPERATOR 0.  this works fine on solaris/intel for still            src/main/compile.tab.C, src/main/main.vcproj,
           unknown reason.            src/main/pa_charset.C, src/targets/cgi/parser3.vcproj,
             src/types/Makefile.am, src/types/pa_vhash.C,
 2002-08-29  paf            src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
             src/types/pa_vxnode.h, src/types/types.vcproj: hashfile: started
         * parser3.dsw, src/classes/classes.dsp, src/classes/hash.C,            again with sdbm from apache
           src/classes/op.C, src/classes/string.C, src/include/pa_request.h,  
           src/lib/md5/md5.dsp, src/main/execute.C, src/main/main.dsp,  2003-11-05  paf
           src/main/pa_request.C, src/targets/cgi/parser3.dsp,  
           src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vmail.C,          * src/: classes/classes.vcproj, include/pa_config_fixed.h,
           src/types/pa_vmethod_frame.h, src/types/pa_wcontext.h,            main/main.vcproj, targets/cgi/parser3.vcproj: not has to be in
           src/types/types.dsp, www/htdocs/index.html: junction_cleaner            \parser3project dir anymore
           moved to auto VMethodFrame [called less frequent, allowed to  
           remove ugly Junction.change_context-s from many places, switch,          * src/main/pa_charset.C: bugfix: had broken binary search [copied
           mail:send..html{}, ..] request.root renamed to method_frame [more            thoughtlessly from xalan]
           easyreading] ancient {...PUSH/POPs...} changed to stack vars  
           [speed up]          * src/lib/sdbm/: Makefile.am, sdbm.c, sdbm_hash.c, sdbm_lock.c,
             sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h: original
 2002-08-28  paf            from httpd-2.0.43\srclib\apr-util\dbm\sdbm
   
         * src/types/pa_vcookie.C, www/htdocs/index.html: $cookie:name[&]          * src/main/helpers/CaseFolding.txt:
           $cookie:name << now tainted            http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
   
         * src/types/pa_vcookie.C, www/htdocs/index.html: fixed cookie  2003-11-04  paf
           delete when $cookie:name[$.value[]]  
           * operators.txt: comment: ^mail:send[$.options[
         * operators.txt, src/classes/string.C, www/htdocs/derived.p,  
           www/htdocs/index.html: ^string.split[delim[;options]]          * src/classes/table.C: compiled on unix
   
 2002-08-27  paf          * src/classes/Makefile.am: classes.C to rebuild last
   
         * etc/parser3.charsets/Makefile.am: merged from 3.0.0005          * src/classes/mail.C: compiled on unix
   
         * operators.txt, src/main/compile.tab.C, src/main/compile.y,          * operators.txt, src/classes/mail.C, src/types/pa_vmail.C,
           www/htdocs/index.html, www/htdocs/mailreceive.eml: # now            src/types/pa_vmail.h:     !^mail:send[
           delimiter                    $.options[unix: string to append to sendmail command
             line]
         * INSTALL: recommended latest gmime 1.0.5  
           * operators.txt, src/classes/table.C, src/main/pa_string.C,
 2002-08-26  paf            tests/todo.txt: ^table.save[...          $.separator[^#09]
             $.encloser["] <nothing> by default
         * configure, configure.in: apache13/hook added to make dist.  
           * operators.txt, src/classes/table.C, tests/todo.txt: ^table::load
 2002-08-23  paf                   !$.separator[^#09]         !$.encloser["] <nothing> by
             default
         * src/include/pa_common.h, src/main/pa_common.C,  
           src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,  2003-11-03  paf
           www/htdocs/index.html: when auto.p beside binary [cgi, isapi] not  
           accessible [due to bad rights or whatever] it's error now          * operators.txt, src/classes/table.C, src/main/pa_common.C:
             ^table::load[; options:         !$.column-separator[^#09]
 2002-08-21  paf            !$.column-encloser["]
   
         * www/htdocs/derived.p: "BASE:" "BASE::" syntax allowed, means          * operators.txt, src/include/pa_config_fixed.h,
           "base class".  compiled as if here they named base class            src/types/pa_vrequest.C: $request:document-root
   
         * Makefile.am: can use: make happy equals to make update install          * src/targets/cgi/parser3.C: beauty: SIGUSRX removed qs= printing
             [already included into uri=xxx]
         * src/main/compile.tab.C, src/main/compile.y,  
           src/main/compile_tools.C, src/main/compile_tools.h,          * operators.txt, src/classes/image.C, tests/todo.txt:
           www/htdocs/derived.p: "BASE:" "BASE::" syntax allowed, means            ^image.gif[filename] for $response:download
           "base class".  compiled as if here they named base class  
           * src/classes/date.C: minor precaution
         * src/main/pa_string.C, www/htdocs/index.html: fixed bad language  
           bug, [were wrong string cloning constructor]          * operators.txt, src/classes/date.C:     !^date::unix-timestamp()
                 !^date.unix-timestamp[]
         * src/main/execute.C, src/types/pa_vobject.h, www/htdocs/base.p,  
           www/htdocs/derived.p, www/htdocs/index.html: fixed virtual calls  2003-10-30  paf
   
         * bin/auto.p.dist.in, src/targets/cgi/parser3.C,          * operators.txt, src/classes/date.C, src/types/pa_vdate.h: merged
           src/types/pa_vfile.C, src/types/pa_vmail.C,            from 3.0.8: ^date.roll[TZ;GMT] $date.hour
           www/htdocs/mailreceive.eml, www/htdocs/mailreceive.html:  
           $mail.received.file.value.content-type fixed          * src/classes/: date.C, image.C: improvement diagnostics:
             $now[^date::create[$undefined]] now is error
 2002-08-20  paf  
           * src/main/pa_common.C: read errors would now be reported 'actually
         * src/classes/file.C, www/htdocs/index.html: fixed language of            read -1 bytes'
           file:file result  
   2003-10-24  paf
         * operators.txt, src/classes/void.C, www/htdocs/index.html:  
           ^void.pos[...] = -1 merged from 3.0.0005          * Makefile.am, src/classes/Makefile.am, src/lib/cord/Makefile.am,
             src/lib/md5/Makefile.am, src/lib/pcre/Makefile.am,
         * operators.txt, src/classes/void.C: ^void.pos[...] = -1            src/main/Makefile.am, src/targets/cgi/Makefile.am,
             src/targets/isapi/Makefile.am: .dsp/w -> .vcproj/sln
         * operators.txt, src/classes/void.C, www/htdocs/index.html:  
           ^void.length[] = 0 merged from 3.0.0005  2003-10-22  paf
   
         * src/classes/void.C, operators.txt: ^void.length[] = 0          * src/include/pa_request.h: fixed: $h[^hash::create[]] $$h[1]
   
 2002-08-19  paf  2003-10-21  paf
   
         * src/classes/xdoc.C: xdoc getElementsByTagName, ...NS overriden,          * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
           work now            fixed: string.match[g] without <'> option produced columns with
             NULL's, which gpf'ed at table.save time
         * src/: classes/xnode.C, types/pa_vxdoc.C: xdoc.fields fixed [were  
           error in xnode, which were not catched in xdoc]          * src/: classes/op.C, include/pa_request.h: fixed: false 'endless
             recoursion' message with intensive throw-catches fixed: incorrect
         * src/: include/pa_stylesheet_connection.h, main/pa_globals.C:            name and line (one name upper then needed) in error message about
           prepared:        // validate each document after load/create (?)            problems inside try block
                  //xmlDoValidityCheckingDefaultValue = 1;  
   2003-10-10  paf
 2002-08-15  paf  
           * src/: include/pa_string.h, main/compile.tab.C: CORD_chr does not
         * src/classes/classes.h, www/htdocs/index.html: write to static var            check offset argument for validity did that in String::Body::pos
           caused useless Exception, introduced Methoded::put_element wich            myself http://i2/tasks/edit/?id=4577425257580789777
           consumes those  
   2003-10-07  paf
         * operators.txt, src/include/pa_common.h, src/main/pa_common.C,  
           src/types/pa_vcookie.C, src/types/pa_vdate.h,          * src/main/: compile.tab.C, compile.y: ^if ( better error:
           src/types/pa_vresponse.C, src/types/pa_vresponse.h,            .html(1:4): parse error, expecting `'['' or `'{'' or `'(''  now
           www/htdocs/index.html: $response:field[date]  
           $response:field[$.xxx[date]]  2003-10-03  paf
   
         * src/classes/hash.C, src/classes/string.C, src/classes/table.C,          * parser3.sln, src/include/pa_dictionary.h,
           src/classes/void.C, src/include/pa_sql_connection.h,            src/main/pa_dictionary.C, src/main/pa_string.C,
           www/htdocs/index.html: fixed source of ^hash::sql{bad}            src/targets/cgi/parser3.vcproj: dictionary optimized by
             precalculating cstr&length
         * operators.txt: $request:body unprecessed POST request body  
   2003-10-02  paf
         * src/types/pa_vrequest.C, www/htdocs/index.html: $request:body  
           unprecessed POST request          * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
             main/execute.C, main/pa_request.C, main/pa_sql_driver_manager.C,
         * src/types/pa_value.h, src/types/pa_vdate.h,            main/pa_stylesheet_manager.C: bugfix: ^throw context were
           src/types/pa_vrequest.C, src/types/pa_vxdoc.C,            saved/restored incompletely http://www.parser.ru/forum/?id=21484
           src/types/pa_vxnode.C, www/htdocs/index.html: few barks: bark("%s  
           field not found", 0, &aname)  2003-09-30  paf
   
         * operators.txt, src/classes/form.C, src/include/pa_pool.h,          * src/main/pa_string.C: string::replace bug fix [were ignoring
           src/include/pa_request.h, src/main/pa_pool.C,            occurrances after lang-mismatched
           src/types/pa_vform.C, src/types/pa_vform.h, www/htdocs/.htaccess:  
           planning/preparing_to $request:body r.post_data now const  2003-09-29  paf
   
         * src/classes/image.C, src/classes/op.C, src/classes/xdoc.C,          * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: generated by
           src/classes/xnode.C, src/main/execute.C, src/types/pa_value.h,            helper
           src/types/pa_vhash.h, src/types/pa_vobject.C,  
           src/types/pa_vobject.h, src/types/pa_vtable.h,          * src/main/pa_string.C: string::serialize bug fix with
           www/htdocs/index.html: instead of type() checking everywhere used            zero-terminator
           Value.as now user descendants can be used in params.  
           * src/classes/table.C: ^nameless_table.save column row now has no
           VObject::as_*, is_defined now taken from bases.  xtable(table)            \t at the end
           ^if($xtable) now OK  
           * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
         * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,            @postprocess  now takes $response:body/download
           types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,  
           types/pa_vxdoc.C, types/pa_vxdoc.h: is->as          * src/classes/form.C: better error message: MAX_POST_SIZE_NAME to
             error message
 2002-08-14  paf  
           * src/classes/string.C: bugfix: s.right(>s.length) returned nothing
         * src/classes/xnode.h, src/main/execute.C,  
           src/targets/cgi/parser3.dsp, src/types/pa_value.h,          * src/classes/table.C: bugfix: flip: must produce nameless
           src/types/pa_vclass.C, src/types/pa_vclass.h,            http://i2/tasks/edit/?id=4573405524674081244
           src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,  
           src/types/pa_vcookie.h, src/types/pa_vdate.h,          * src/: include/pa_charset.h, main/pa_charset.C, main/pa_string.C,
           src/types/pa_venv.h, src/types/pa_vfile.h, src/types/pa_vform.C,            main/helpers/simple_folding.pl: utf-8 upper/lower
           src/types/pa_vform.h, src/types/pa_vhash.h,  
           src/types/pa_vimage.h, src/types/pa_vmail.C,          * src/main/pa_common.C: bugfix: utf signature were not ignored due
           src/types/pa_vmail.h, src/types/pa_vmath.h,            to typo error http://i2/tasks/edit/?id=4573354650786434584
           src/types/pa_vmethod_frame.h, src/types/pa_vobject.C,  
           src/types/pa_vobject.h, src/types/pa_vrequest.C,  2003-09-26  paf
           src/types/pa_vrequest.h, src/types/pa_vresponse.C,  
           src/types/pa_vresponse.h, src/types/pa_vstateless_class.h,          * src/main/untaint.C: removed needless field
           src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,  
           src/types/pa_vstatus.h, src/types/pa_vstring.h,          * src/main/untaint.C: removed needless const
           src/types/pa_vtable.C, src/types/pa_vtable.h,  
           src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,          * src/: include/pa_string.h, main/pa_common.C, main/pa_string.C:
           src/types/pa_vxnode.C, src/types/pa_vxnode.h,            String.for_each bug fixed [omited one-char cases]
           src/types/pa_wwrapper.h, www/htdocs/index.html: is now works with  
           VObject & VClass          * src/include/pa_stack.h: bugfix: before collecting garbage,
             runtime-executor stack were cleared... BADLY
         * src/types/pa_vmail.C: mail: turned off utf8 to source transcoding  
           * src/main/pa_string.C: ^stirng.replace code used old
         * src/targets/cgi/: fixopt.C, fixopt.h, parser3.C, Makefile.am:            param-convention on langs.append, fixed that search fo the like,
           removed fixopt stupidity. on stupid linux use cd /document/root            found none
           ../cgi/parser3 script  
           * src/: classes/op.C, include/pa_string.h, main/pa_string.C:
         * src/targets/cgi/fixopt.C: fixopt now preprocesses command line            string::serialize/deserialize implemented Language enum assigned
           params, splitting them by space, excluding argv[0], argv[argc-1]            meaningful letters [more convinient for debugging. read warning
             before adding/changing anything]
         * src/targets/cgi/: Makefile.am, parser3.C, parser3.dsp, fixopt.C,  
           fixopt.h: fixopt now preprocesses command line params, splitting  2003-09-25  paf
           them by space, excluding argv[0], argv[argc-1]  
           * src/: include/pa_string.h, include/pa_version.h,
         * src/targets/cgi/parser3.C: -f config file            main/pa_string.C, main/untaint.C: templates and anonymous unions
             differences on unix
         * src/targets/cgi/parser3.C, www/htdocs/auto.p,  
           www/htdocs/derived.p, www/htdocs/index.html: fixed .log file dir          * parser3.sln, src/classes/file.C, src/classes/image.C,
             src/classes/mail.C, src/classes/op.C, src/classes/table.C,
 2002-08-13  paf            src/classes/xdoc.C, src/classes/xnode.C,
             src/include/pa_cache_managers.h, src/include/pa_charset.h,
         * src/types/pa_vobject.C, www/htdocs/derived.p,            src/include/pa_charsets.h, src/include/pa_common.h,
           www/htdocs/index.html: allow override parent variables, useful            src/include/pa_request.h, src/include/pa_sql_driver_manager.h,
           for form descendants [in vobject too, were in vclass]            src/include/pa_string.h, src/include/pa_stylesheet_manager.h,
             src/include/pa_table.h, src/lib/cord/cordbscs.c,
         * src/types/pa_vclass.C, www/htdocs/index.html: allow override            src/lib/cord/cordprnt.c, src/lib/cord/cordxtra.c,
           parent variables, useful for form descendants            src/lib/cord/include/cord.h, src/main/compile.tab.C,
             src/main/compile_tools.h, src/main/pa_charset.C,
         * src/types/pa_vclass.C, www/htdocs/derived.p: checked:            src/main/pa_charsets.C, src/main/pa_common.C, src/main/pa_exec.C,
           form[vclass]fields can be overwritten in derived(table)            src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
             src/main/pa_string.C, src/main/pa_stylesheet_manager.C,
         * src/: classes/form.C, classes/mail.C, classes/op.C,            src/main/untaint.C, src/types/pa_value.h, src/types/pa_vimage.C,
           classes/xnode.h, include/pa_request.h, main/execute.C,            src/types/pa_vmail.C, src/types/pa_vmath.C,
           main/pa_request.C, types/pa_value.h, types/pa_vclass.C,            src/types/pa_vstateless_class.h, src/types/pa_vstatus.C,
           types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,            src/types/pa_vxnode.C: string_fragments_to_cord merged to HEAD
           types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,  
           types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,          * src/main/: compile.tab.C, pa_string.C: string: debug: .v()
           types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,            functions aligned to that of eeparser3 look
           types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,  
           types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,          * src/lib/cord/cordprnt.c: removed warnings
           types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,  
           types/pa_vstateless_class.h, types/pa_vstateless_object.h,  2003-09-24  paf
           types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,  
           types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,          * src/: classes/file.C, classes/image.C, classes/mail.C,
           types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,            classes/op.C, classes/xdoc.C, classes/xnode.C,
           types/pa_vxnode.h, types/pa_wwrapper.h: introduced            include/pa_cache_managers.h, include/pa_charset.h,
           Value::get_element(..., bool looking_down) [needed to exclude            include/pa_charsets.h, include/pa_common.h, include/pa_request.h,
           endless recoursion]            include/pa_sql_driver_manager.h, include/pa_string.h,
             include/pa_stylesheet_manager.h, include/pa_table.h,
         * src/types/: pa_vclass.C, pa_vobject.C: reorganized modules todo:            main/compile_tools.h, main/pa_charset.C, main/pa_charsets.C,
           fix bug with put endless recoursion todo: check 'as'            main/pa_common.C, main/pa_exec.C, main/pa_request.C,
             main/pa_sql_driver_manager.C, main/pa_string.C,
         * src/types/: Makefile.am, pa_vclass.h, pa_vobject.h, types.dsp:            main/pa_stylesheet_manager.C, main/untaint.C, types/pa_value.h,
           reorganized modules todo: fix bug with put endless recoursion            types/pa_vimage.C, types/pa_vmail.C, types/pa_vmath.C,
           todo: check 'as'            types/pa_vstateless_class.h, types/pa_vstatus.C,
             types/pa_vxnode.C: v() functions of String::Body,
         * src/types/pa_vobject.h, www/htdocs/derived.p: checked: table            String::Languages and String itself StringBody->String::Body
           fields can be overwritten in derived(table)  
           * src/: include/pa_string.h, lib/cord/cordbscs.c,
         * www/htdocs/derived.p: sample: dont convinient that table fields            lib/cord/include/cord.h: CORD_append_block showed no efficiency =
           can be overridden            never optimized anything.  todo: somehow speed up harder cases:
             concatenationA+concatenationB when last block of A and first of B
         * src/types/pa_vobject.h, www/htdocs/derived.p,            contain same letters
           www/htdocs/index.html: derived classes can have fields of their  
           own now          * src/: include/pa_string.h, lib/cord/cordbscs.c,
             lib/cord/include/cord.h: langs: speed up by joining adjucent
         * src/classes/table.C, src/types/pa_vtable.C,            blocks of same char [CORD_append_block]
           src/types/pa_vtable.h, www/htdocs/derived.p: fixed error message  
           on using non-created table          * src/: include/pa_string.h, lib/cord/cordbscs.c,
             lib/cord/include/cord.h, main/pa_string.C: aval/ works! todo:
         * src/classes/form.C, src/classes/hash.C, src/classes/mail.C,            save space by extending blocks when appending block with c ==
           src/classes/op.C, src/classes/xnode.h, src/include/pa_request.h,            lastblock.c
           src/main/compile.C, src/main/compile.tab.C, src/main/execute.C,  
           src/main/pa_request.C, src/types/pa_value.h,          * src/: include/pa_string.h, main/pa_string.C: aval is not actually
           src/types/pa_vclass.h, src/types/pa_vcode_frame.h,            working yet :( but more working &understood :)
           src/types/pa_vcookie.C, src/types/pa_vcookie.h,  
           src/types/pa_vdate.h, src/types/pa_venv.h, src/types/pa_vfile.h,          * src/: classes/table.C, include/pa_string.h,
           src/types/pa_vform.C, src/types/pa_vform.h, src/types/pa_vhash.h,            lib/cord/include/cord.h, main/pa_string.C: aval/ works!
           src/types/pa_vimage.C, src/types/pa_vimage.h,  
           src/types/pa_vmail.C, src/types/pa_vmail.h, src/types/pa_vmath.h,  2003-09-23  paf
           src/types/pa_vmethod_frame.h, src/types/pa_vobject.h,  
           src/types/pa_vrequest.C, src/types/pa_vrequest.h,          * src/main/untaint.C: $a[ok!] $a works!
           src/types/pa_vresponse.C, src/types/pa_vresponse.h,  
           src/types/pa_vstateless_class.h,          * src/main/untaint.C: something even more works :)
           src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,  
           src/types/pa_vstatus.h, src/types/pa_vstring.h,          * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
           src/types/pa_vtable.C, src/types/pa_vtable.h,            something more works :)
           src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,  
           src/types/pa_vxnode.C, src/types/pa_vxnode.h,          * src/: include/pa_string.h, lib/cord/cordbscs.c,
           src/types/pa_wwrapper.h, www/htdocs/derived.p: VObject.get/out            lib/cord/cordxtra.c: something already works :)
           now looking down/up tree todo: fix error message on  
           non-constructed parents          * src/: include/pa_string.h, main/untaint.C: just compiled todo:
             serialize&deserialize
 2002-08-12  paf  
           * src/: classes/table.C, include/pa_string.h, lib/cord/cordbscs.c,
         * src/types/pa_vstateless_class.h,            lib/cord/cordxtra.c, lib/cord/include/cord.h, main/pa_string.C,
           src/types/pa_vstateless_object.h, www/htdocs/derived.p: table            main/untaint.C: main idea implemented, details left
           derived OK  
   2003-09-22  paf
         * src/main/execute.C: ^base:create[] dynamic call rewritten todo:  
           thorough testing          * src/: classes/memory.C, include/pa_memory.h: #ifdef GC_DEBUG
   
         * src/: main/compile.tab.C, main/compile.y, main/execute.C,          * src/classes/xnode.C: copy/paste comment bugfix
           main/pa_request.C, types/pa_value.h, types/pa_vclass.h,  
           types/pa_vobject.h, types/pa_vstateless_class.h,          * src/: include/pa_memory.h, main/pa_globals.C: when xml memory
           types/pa_vstateless_object.h, types/pa_wcontext.h,            allocator returns 0, just die.
           types/pa_valiased.C, types/pa_valiased.h, types/Makefile.am:            http://i2/tasks/edit/?id=4570798492410259445
           ^base:create[] dynamic call rewritten todo: thorough testing  
           * src/classes/xdoc.C: copy/paste comment bugfix
         * www/htdocs/: base.p, derived.p: not good - along upward-virtual  
           call self eq child          * src/classes/: xdoc.C, xnode.C: new DOM2 methods from Alexandr
             Egorov <egr> (all?) xdoc: createAttributeNS createElementNS
         * src/types/pa_value.h, src/types/pa_vclass.h,            xnode: getAttributeNS setAttributeNS removeAttributeNS
           src/types/pa_vobject.h, www/htdocs/base.p, www/htdocs/derived.p:            getAttributeNodeNS setAttributeNodeNS hasAttribute hasAttributeNS
           VObject ctor now instantates base class, remembers it and saves  
           child in parent VObject.get_class now returns last child =          * src/lib/cord/cordxtra.c: CORD_pos bugfix [failed to find 8bit
           downward virtual calls OK            chars due to bitwise operation signed-char error]
   
         * src/main/execute.C, src/types/pa_value.h, src/types/pa_vclass.h,  2003-09-19  paf
           src/types/pa_vdate.h, src/types/pa_vdouble.h,  
           src/types/pa_vfile.h, src/types/pa_vimage.h, src/types/pa_vint.h,          * src/types/pa_wcontext.C: output message: more practical
           src/types/pa_vmethod_frame.h, src/types/pa_vobject.h,            suggestion
           src/types/pa_vresponse.h, src/types/pa_vstateless_class.h,  
           src/types/pa_vstateless_object.h, src/types/pa_vstring.h,          * src/main/pa_common.C, operators.txt: merged
           src/types/pa_vtable.h, src/types/pa_vxdoc.h,            $f[^file::load[binary;http://...]] $f.tables
           src/types/pa_vxnode.h, src/types/pa_wcontext.h,  
           src/types/types.dsp, www/htdocs/index.html: killed VAliased  2003-09-02  paf
           [redundant], moved $CLASS to VObject only [parser class instance]  
           * src/main/pa_common.C: printf is buffered, write(1 is not. can't
         * bin/auto.p.dist.in: more like in dist on parser.ru            flush stdout without referencing 'stdout' symbol. to hell with
             non-ansi libraries without 'stdout' symbol
         * bin/auto.p.dist.in: fixed sendmail default comment  
           * src/main/pa_common.C: got rid of 'stdout' symbol reference on
         * src/main/pa_request.C: $response:body[file] content-type check            unix (users reported problems with some old libc)
           fixed [were bad when content-type is hash]  
           * src/types/pa_vdate.h: forgot initializer
 2002-08-09  paf  
   2003-09-01  paf
         * src/main/execute.C, src/types/pa_value.h, src/types/pa_vclass.h,  
           src/types/pa_vobject.h, src/types/pa_vxdoc.h,          * src/: classes/date.C, include/pa_common.h, main/compile.tab.C,
           www/htdocs/index.html: started as()            main/pa_common.C, types/pa_vdate.h: $date.TZ ^date.roll[TZ;new
             zone]
 2002-08-08  paf  
           * src/classes/image.C: memory handling bugs [unpatched 'new' calls]
         * operators.txt, src/classes/date.C, src/include/pa_globals.h,  
           src/main/pa_globals.C, www/htdocs/index.html: year column in  2003-08-19  paf
           month calendar [week year]  
           * src/types/: pa_value.C, pa_value.h, pa_vdate.h, pa_vrequest.C,
         * src/main/execute.C, www/htdocs/index.html: error reporting on            pa_vstring.h, pa_vxdoc.C, pa_vxnode.C: bark intefrace obsoleted,
           object writes to MAIN improved [were ruind with fixing            simplified a little
           $obj[^if(1){$obj}] ]  
           * src/types/: pa_vhash.C, pa_vhash.h: _default+foreach bug refix
         * operators.txt, src/types/pa_vdate.h, www/htdocs/index.html:            [lost fix from 3.0.8]
           $date.yearday $date.daylightsaving  
           * src/types/pa_vcookie.C: in VC7 if(type var=xxx){ }else{   now
         * src/classes/mail.C, src/types/pa_vmail.C, www/htdocs/auto.p,            visible here }
           www/htdocs/index.html: in letter texts one can use tainted data  
           now. only she must specify the language.            bug fix
   
           ^mail:send[     $.from[paf@mail.design.ru]          * src/: include/pa_memory.h, types/pa_value.h: -= few warnings
           $.to[paf@mail.design.ru]        $.subject[^taint[uri][ìîñêâà]=2]  
                 $.text[^taint[uri][ìîñêâà]=] ]          * src/main/compile.tab.C: initialized couple of variables about
             which user reported runtime problems when parser were compiled
         * www/htdocs/index.html: ^process now prints more precise origin            with VC7, warning level4.  study shows that later in bison
             they've fixed that. would migrate to latest bison someday
         * src/classes/file.C, src/classes/op.C, src/types/pa_vfile.C,  
           www/htdocs/index.html: ^process now prints more precise origin          * src/types/pa_vmail.C: turned  off recoding in gmime (were still
             recoding headers)
         * src/include/pa_string.h, www/htdocs/index.html:  
           String::first_char now not fails on empty strings ^if(-f '') now          * src/types/pa_vmail.C: works as before, same charset problems:
           ok and in 3 other places.            gmime recodes to UTF-8 only headers, not body. so not recoding
             anything for now
         * operators.txt, src/include/pa_string.h, src/main/pa_string.C:  
           String::first_char now not fails on empty strings ^if(-f '') now          * src/types/: pa_vmail.C, pa_vmail.h: parses headers, still
           ok and in 3 other places.            problems with body
   
 2002-08-07  paf          * src/types/pa_vmail.C: mail_receive just compiled
   
         * src/classes/string.C, src/main/pa_string.C,  2003-08-18  paf
           www/htdocs/index.html: ^string.mid(0;bad) fixed  
           * src/: classes/classes.vcproj, include/pa_config_fixed.h,
         * src/main/pa_string.C, www/htdocs/index.html: ^string.mid(0;bad)            main/main.vcproj, types/types.vcproj: win32: continued process
           fixed            detaching from \parser3project directory
   
         * src/main/execute.C, src/types/pa_vcode_frame.h,          * gnu.dsp, parser3.dsw, src/classes/classes.dsp,
           src/types/pa_vmethod_frame.h, src/types/pa_wcontext.C,            src/lib/cord/cord.dsp, src/lib/ltdl/libltdl.dsp,
           src/types/pa_wcontext.h, src/types/pa_wwrapper.h,            src/lib/md5/md5.dsp, src/lib/pcre/pcre.dsp,
           www/htdocs/index.html: vcodeframe were mistakenly not completely            src/lib/pcre/pcre_dftables.dsp,
           transparent to object writes.  $hash[^if(1){$hash}] now works            src/lib/pcre/pcre_parser_ctype.dsp, src/main/main.dsp,
             src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
         * operators.txt, src/classes/op.C: ^cache...{...^cache<<to past...}            src/types/types.dsp: moved to MSVC 7
           now erasing cache file [there were bad check on that]  
           * gnu.vcproj.vspscc, parser3.vssscc,
         * src/classes/classes.dsp, src/classes/table.C,            src/classes/classes.vcproj.vspscc,
           src/lib/pcre/pcre_parser_ctype.dsp, src/main/pa_array.C,            src/lib/cord/cord.vcproj.vspscc,
           src/types/types.dsp, www/htdocs/index.html: all Debug dirs in            src/lib/ltdl/libltdl.vcproj.vspscc,
           .dsp now named 'Debug'            src/lib/md5/md5.vcproj.vspscc,
             src/lib/pcre/pcre_dftables.vcproj.vspscc,
         * etc/parser3.charsets/Makefile.am: all included into dist            src/lib/pcre/pcre_parser_ctype.vcproj.vspscc,
             src/lib/pcre/pcre.vcproj.vspscc, src/main/main.vcproj.vspscc,
         * operators.txt, src/classes/mail.C: exception_type  email.send            src/targets/isapi/parser3isapi.vcproj.vspscc,
             src/types/types.vcproj.vspscc, src/targets/cgi/parser3.vcproj:
         * operators.txt, src/types/pa_vmail.C, www/htdocs/index.html:            moved to MSVC 7
           exception_type  email.format  
           * parser3.sln, gnu.vcproj, src/classes/classes.vcproj,
         * src/types/pa_vmail.C, www/htdocs/global.xsl,            src/lib/cord/cord.vcproj, src/lib/ltdl/libltdl.vcproj,
           www/htdocs/index.html: mail:send empty  email checked            src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
             src/lib/pcre/pcre_dftables.vcproj,
 2002-08-06  paf            src/lib/pcre/pcre_parser_ctype.vcproj, src/main/main.vcproj,
             src/targets/cgi/parser3.vcproj,
         * operators.txt, src/classes/table.C, src/include/pa_array.h,            src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
           src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C,            new VS project files
           www/htdocs/index.html: ^table::create[$source;$.options]  
           ^table::join[$source;$.options]          * ~sak5c961f3101c36563.tmp: Temporary file created by Visual Studio
             .NET to detect Jalindi Igloo capabilities.
         * operators.txt, src/classes/hash.C, src/classes/string.C,  
           src/classes/table.C, www/htdocs/index.html: sql options can be          * ChangeLog, configure, configure.in, src/classes/Makefile.am,
           string now ^xxx:sql{...}[ #  $.default() }            src/classes/classes.awk, src/doc/footer.htm,
             src/include/pa_config_fixed.h, src/include/pa_version.h,
         * src/classes/file.C, www/htdocs/index.html: $f[file::cgi] $f.UPPER            src/lib/Makefile.am, src/main/compile.tab.C,
           case fields            src/main/pa_charset.C, src/main/pa_string.C, src/main/untaint.C,
             src/types/pa_vmail.C: merged 3.1.0 latest changes
         * src/classes/file.C, src/include/pa_globals.h,  
           src/main/pa_globals.C, src/main/pa_request.C,  2003-08-15  paf
           src/types/pa_vfile.C, src/types/pa_vfile.h,  
           www/htdocs/index.html: $file.content-type [instead of .mime-type]          * src/main/untaint.C: email addresses in forms:   "non-ascii" <yyy>
           now works for file::stat also            non-ascii <yyy> now encoded correctly [kinda merge from 3.0.8]
   
         * src/main/pa_request.C, www/htdocs/index.html: case insensitive          * src/main/untaint.C: email addresses in forms:   "non-ascii" <yyy>
           mime_type_of            non-ascii <yyy> now encoded correctly
   
         * bin/auto.p.dist.in: jpeg  2003-07-29  paf
   
 2002-08-05  paf          * src/classes/: Makefile.am, classes.awk: classes.awk added to make
             dist
         * src/types/pa_vxnode.C: xnode.childNodes  now 0... [were 1...]  
           * src/types/pa_vmail.C: just started --with-mail-receive
         * src/types/pa_vmail.C: file buffer relocated to parser heap  
   2003-07-28  paf
         * operators.txt: comment on date:calendar week column  
           * src/: classes/Makefile.am, lib/Makefile.am: removed circular
         * src/main/pa_common.C: write checked            dependence in src/classes, src/lib/gc now in dist
   
         * src/main/: pa_common.C: write checked          * src/main/pa_string.C: ^cache bug fix [were not working at all]
   
         * src/classes/date.C: +1 buf size for stupid snprintfs  2003-07-25  paf
   
         * src/: classes/date.C, include/pa_globals.h, main/pa_globals.C:          * src/doc/footer.htm: year
           month calendar week column [ISO 8601 Week Numbers]  
   2003-07-24  paf
 2002-08-02  paf  
           * src/: include/pa_config_fixed.h, main/pa_charset.C: bad #endif
         * src/: include/pa_config_fixed.h, main/pa_string.C,            fix
           targets/cgi/getopt.c, targets/cgi/parser3.C: removed #define  
           DEBUG*          * src/include/pa_version.h: release
   
         * configure, configure.in, src/include/pa_version.h: release          * src/lib/gc/include/: Makefile.am, gc.h: moved tempate_gc to HEAD
           3_0_0005  
           * ChangeLog, src/classes/classes.dsp, src/main/main.dsp,
         * bin/auto.p.dist.in: unhandled_exception comments            src/main/pa_globals.C, src/targets/cgi/parser3.dsp,
             src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: cvs:
         * src/types/: pa_vclass.h, pa_vform.C, pa_vobject.h: opera            getting rid of win32xml pseudo project
           multipart post fixed  
           * src/main/: compile.tab.C, pa_memory.C: moved tempate_gc to HEAD
         * operators.txt, src/main/pa_request.C, www/htdocs/index.html,  
           src/types/pa_vform.C: response transcoded source->client only          * ChangeLog, INSTALL, Makefile.am, acsite.m4, configure,
           when text/* or simple onoverridden $response:body            configure.in, operators.txt, parser3.dsw,
             etc/parser3.charsets/koi8-r.cfg,
 2002-08-01  paf            etc/parser3.charsets/windows-1251.cfg, src/classes/Makefile.am,
             src/classes/classes.C, src/classes/classes.awk,
         * src/: classes/classes.C, classes/classes.h, classes/date.C,            src/classes/classes.dsp, src/classes/classes.h,
           classes/double.C, classes/file.C, classes/form.C, classes/hash.C,            src/classes/date.C, src/classes/double.C, src/classes/file.C,
           classes/image.C, classes/int.C, classes/mail.C, classes/math.C,            src/classes/form.C, src/classes/hash.C, src/classes/image.C,
           classes/op.C, classes/response.C, classes/string.C,            src/classes/int.C, src/classes/mail.C, src/classes/math.C,
           classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,            src/classes/memory.C, src/classes/op.C, src/classes/response.C,
           classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,            src/classes/string.C, src/classes/table.C, src/classes/void.C,
           include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,            src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
           include/pa_config_fixed.h, include/pa_dictionary.h,            src/doc/exception.dox, src/doc/index.dox, src/doc/memory.dox,
           include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,            src/doc/string.dox, src/include/Makefile.am,
           include/pa_globals.h, include/pa_hash.h, include/pa_opcode.h,            src/include/pa_array.h, src/include/pa_cache_managers.h,
           include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,            src/include/pa_charset.h, src/include/pa_charsets.h,
           include/pa_socks.h, include/pa_sql_connection.h,            src/include/pa_common.h, src/include/pa_config_auto.h.in,
           include/pa_sql_driver_manager.h, include/pa_stack.h,            src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
           include/pa_string.h, include/pa_stylesheet_connection.h,            src/include/pa_dictionary.h, src/include/pa_dir.h,
           include/pa_stylesheet_manager.h, include/pa_table.h,            src/include/pa_exception.h, src/include/pa_exec.h,
           include/pa_threads.h, include/pa_types.h, include/pa_uue.h,            src/include/pa_globals.h, src/include/pa_hash.h,
           lib/md5/pa_md5.h, lib/md5/pa_md5c.c,            src/include/pa_memory.h, src/include/pa_opcode.h,
           lib/pcre/pcre_parser_ctype.c, main/compile.C, main/compile.tab.C,            src/include/pa_operation.h, src/include/pa_pool.h,
           main/compile_tools.C, main/compile_tools.h, main/execute.C,            src/include/pa_pragma_pack_begin.h,
           main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,            src/include/pa_pragma_pack_end.h, src/include/pa_request.h,
           main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,            src/include/pa_request_charsets.h, src/include/pa_request_info.h,
           main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,            src/include/pa_sapi.h, src/include/pa_socks.h,
           main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,            src/include/pa_sql_connection.h,
           main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,            src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
           main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,            src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
           main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,            src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
           targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,            src/include/pa_threads.h, src/include/pa_types.h,
           targets/cgi/parser3.C, targets/cgi/pool_storage.h,            src/include/pa_uue.h, src/lib/Makefile.am,
           targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,            src/lib/cord/Makefile.am, src/lib/cord/cord.dsp,
           targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,            src/lib/cord/cordbscs.c, src/lib/cord/cordprnt.c,
           types/pa_valiased.C, types/pa_valiased.h, types/pa_value.C,            src/lib/cord/cordxtra.c, src/lib/cord/source.url,
           types/pa_value.h, types/pa_vbool.h, types/pa_vclass.h,            src/lib/cord/include/Makefile.am, src/lib/cord/include/cord.h,
           types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,            src/lib/cord/include/ec.h,
           types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,            src/lib/cord/include/private/Makefile.am,
           types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,            src/lib/cord/include/private/cord_pos.h, src/lib/gc/Makefile.am,
           types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,            src/lib/ltdl/libltdl.dsp, src/lib/md5/pa_md5.h,
           types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,            src/lib/md5/pa_md5c.c, src/lib/pcre/pcre.h,
           types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,            src/lib/pcre/pcre_parser_ctype.c, src/main/Makefile.am,
           types/pa_vmethod_frame.h, types/pa_vobject.h,            src/main/compile.C, src/main/compile.tab.C, src/main/compile.y,
           types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,            src/main/compile_tools.C, src/main/compile_tools.h,
           types/pa_vresponse.h, types/pa_vstateless_class.C,            src/main/execute.C, src/main/main.dsp, src/main/pa_array.C,
           types/pa_vstateless_class.h, types/pa_vstateless_object.h,            src/main/pa_cache_managers.C, src/main/pa_charset.C,
           types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,            src/main/pa_charsets.C, src/main/pa_common.C,
           types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,            src/main/pa_dictionary.C, src/main/pa_dir.C,
           types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,            src/main/pa_exception.C, src/main/pa_exec.C,
           types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,            src/main/pa_globals.C, src/main/pa_hash.C, src/main/pa_pool.C,
           types/pa_wcontext.h, types/pa_wwrapper.h: $Date$            src/main/pa_request.C, src/main/pa_socks.C,
             src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
         * src/: classes/classes.C, classes/classes.dsp, classes/classes.h,            src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
           classes/date.C, classes/double.C, classes/file.C, classes/form.C,            src/main/pa_uue.C, src/main/untaint.C, src/sql/pa_sql_driver.h,
           classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,            src/targets/Makefile.am, src/targets/cgi/Makefile.am,
           classes/math.C, classes/op.C, classes/response.C,            src/targets/cgi/getopt.c, src/targets/cgi/getopt.h,
           classes/string.C, classes/table.C, classes/void.C,            src/targets/cgi/pa_pool.C, src/targets/cgi/pa_threads.C,
           classes/xdoc.C, classes/xnode.C, classes/xnode.h,            src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
           include/pa_array.h, include/pa_cache_managers.h,            src/targets/cgi/pool_storage.h, src/targets/cgi/pp3.cmd,
           include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,            src/targets/isapi/Makefile.am, src/targets/isapi/pa_pool.C,
           include/pa_config_fixed.h, include/pa_config_includes.h,            src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
           include/pa_dictionary.h, include/pa_dir.h,            src/targets/isapi/parser3isapi.dsp,
           include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,            src/targets/isapi/pool_storage.h, src/types/Makefile.am,
           include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,            src/types/pa_junction.h, src/types/pa_method.h,
           include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,            src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
           include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,            src/types/pa_vclass.C, src/types/pa_vclass.h,
           include/pa_sql_connection.h, include/pa_sql_driver_manager.h,            src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
           include/pa_stack.h, include/pa_string.h,            src/types/pa_vcookie.h, src/types/pa_vdate.h,
           include/pa_stylesheet_connection.h,            src/types/pa_vdouble.h, src/types/pa_venv.h,
           include/pa_stylesheet_manager.h, include/pa_table.h,            src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
           include/pa_threads.h, include/pa_types.h, include/pa_uue.h,            src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
           lib/md5/pa_md5.h, lib/md5/pa_md5c.c, main/compile.C,            src/types/pa_vimage.C, src/types/pa_vimage.h,
           main/compile_tools.C, main/compile_tools.h, main/execute.C,            src/types/pa_vint.h, src/types/pa_vjunction.h,
           main/main.dsp, main/pa_array.C, main/pa_cache_managers.C,            src/types/pa_vmail.C, src/types/pa_vmail.h, src/types/pa_vmath.C,
           main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,            src/types/pa_vmath.h, src/types/pa_vmemory.h,
           main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,            src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
           main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,            src/types/pa_vobject.C, src/types/pa_vobject.h,
           main/pa_pool.C, main/pa_request.C, main/pa_socks.C,            src/types/pa_vrequest.C, src/types/pa_vrequest.h,
           main/pa_sql_driver_manager.C, main/pa_string.C,            src/types/pa_vresponse.C, src/types/pa_vresponse.h,
           main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,            src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
           main/untaint.C, sql/pa_sql_driver.h, targets/cgi/pa_pool.C,            src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
           targets/cgi/pa_threads.C, targets/cgi/parser3.C,            src/types/pa_vstatus.h, src/types/pa_vstring.C,
           targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,            src/types/pa_vstring.h, src/types/pa_vtable.C,
           targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,            src/types/pa_vtable.h, src/types/pa_vvoid.h,
           targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,            src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
           targets/isapi/pool_storage.h, types/pa_valiased.C,            src/types/pa_vxnode.C, src/types/pa_vxnode.h,
           types/pa_valiased.h, types/pa_value.C, types/pa_value.h,            src/types/pa_wcontext.C, src/types/pa_wcontext.h,
           types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,            src/types/pa_wwrapper.h, src/types/types.dsp: moved tempate_gc to
           types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,            HEAD
           types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,  
           types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,          * tests/: 001.html, 002.html, 003.html, 004.html, 005.html,
           types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,            006.html, 007.html, 008.html, 009.html, 010.html, 011.html,
           types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,            012.html, 013.html, 014.html, 015.html, 016.html, 017.html,
           types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,            018.html, 019.html, 019paf2001.gif, 020.html, 021.html, 022.html,
           types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,            023.html, 024.html, 025.html, 026.html, 027.html, 028.html,
           types/pa_vresponse.C, types/pa_vresponse.h,            029.html, 030.html, 031.html, 032.html, 033.html, 034.html,
           types/pa_vstateless_class.C, types/pa_vstateless_class.h,            035.html, 036.html, 037.html, 038.html, 039.html, 040.html,
           types/pa_vstateless_object.h, types/pa_vstatus.C,            041.html, 042.html, 043.html, 044.html, 045.html, 046.html,
           types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,            047.html, 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p,
           types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,            052.html, 053.html, 054.html, 055.html, 056.html, 057.html,
           types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,            058.html, 058_paf2000.png, 059.html, 060.html, 061.dat, 061.html,
           types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,            062.html, 063.html, 064.html, 065.html, 066.html, 067.html,
           types/pa_wwrapper.h, types/types.dsp, Makefile.am,            068.html, 069.html, 070.html, 071.html, 072.html, 073.html,
           classes/Makefile.am, main/Makefile.am, targets/cgi/Makefile.am,            074.html, 075.html, 076.html, 077.html, 078.html, 079.html,
           types/Makefile.am: ident.C* removed            080.html, 081.html, 082.html, 083.html, 084.html, 085.html,
             086.html, 087.html, 088.html, 089.html, 090.html, 091.html,
         * operators.txt, src/classes/file.C, src/main/pa_request.C:            092.html, 093.html, 094.html, 095.html, 096.html, 097.html,
           file:find[/can/do/this/now.txt]            098.html, 098font.gif, 099.html, 100.html, 101.html, 102.html,
             103.html, 103mark.gif, 103paf2001.gif, 104.html, 105.html,
         * src/targets/cgi/parser3.C: usage to stdout now            106.html, 107.html, 108.html, 108.xsl, 109.html, 110.html,
             111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
 2002-07-31  paf            117.html, 118.html, 119.html, 120.html, 121.html, 122.html,
             123.html, 124.html, 125.html, 126.html, 127.html, 128.html,
         * src/types/pa_vmail.C: mail: errors-to: now default "postmaster"            129.html, 130.html, 131.html, 132.html, 133.html, 134.html,
             135.html, 136.html, 137.html, 138.html, 139.html, 140.html,
         * src/: classes/mail.C, types/pa_vmail.C: mail: errors-to: now            141.html, Makefile, descript.ion, run_parser.sh, 022_dir/a.html,
           default "postmaster"            022_dir/b.txt, 022_dir/c.htm, 096_dir/163.jpg, 096_dir/188.jpg,
             outputs/create-dir, results/001.processed, results/002.processed,
         * src/: classes/mail.C, types/pa_vmail.C: mail from/to now must be.            results/003.processed, results/004.processed,
           -f postmaster now default sendmail key word "postmaster"            results/005.processed, results/006.processed,
           replaced to $.from            results/007.processed, results/008.processed,
             results/009.processed, results/010.processed,
 2002-07-30  paf            results/011.processed, results/012.processed,
             results/013.processed, results/014.processed,
         * configure, configure.in, src/targets/cgi/pa_config_paths.h.in,            results/015.processed, results/016.processed,
           src/targets/cgi/parser3.C: removed pa_config_paths.h            results/017.processed, results/018.processed,
             results/019.processed, results/020.processed,
         * src/main/pa_charset.C: comment            results/021.processed, results/022.processed,
             results/023.processed, results/024.processed,
         * src/main/pa_charset.C, www/htdocs/auto.p: UTF-8 to 1byte charset            results/025.processed, results/026.processed,
           convert, no char in table, &#decimal;            results/027.processed, results/028.processed,
             results/029.processed, results/030.processed,
         * src/main/pa_request.C: comment            results/031.processed, results/032.processed,
             results/033.processed, results/034.processed,
         * etc/parser3.charsets/windows-1251.cfg: section sign [russian            results/035.processed, results/036.processed,
           paragraf]            results/037.processed, results/038.processed,
             results/039.processed, results/040.processed,
 2002-07-11  paf            results/041.processed, results/042.processed,
             results/043.processed, results/044.processed,
         * src/main/pa_exec.C: build command line badly added params twice            results/045.processed, results/046.processed,
           [and first time without ' ']. double wrong. fixed.            results/047.processed, results/048.processed,
             results/049.processed, results/050.processed,
         * src/main/pa_exec.C: invalid .exe caused error message with params            results/051.processed, results/052.processed,
           wich parser did not provide = reported badly.  fixed that.            results/053.processed, results/054.processed,
             results/055.processed, results/056.processed,
         * src/classes/mail.C: $MAIL[ # xxx ]            results/057.processed, results/058.processed,
             results/059.processed, results/060.processed,
           now ok            results/061.processed, results/062.processed,
             results/063.processed, results/064.processed,
         * operators.txt: plan: sql detailed exception            results/065.processed, results/066.processed,
             results/067.processed, results/068.processed,
 2002-07-01  paf            results/069.processed, results/070.processed,
             results/071.processed, results/072.processed,
         * src/: classes/form.C, main/pa_request.C: @conf bug fixed            results/073.processed, results/074.processed,
           [MForm.configure_admin were called when request.main_class ==0            results/075.processed, results/076.processed,
             results/077.processed, results/078.processed,
         * src/classes/form.C: 10*0x400*400 bug fix [4M not 10M]            results/079.processed, results/080.processed,
             results/081.processed, results/082.processed,
         * src/classes/form.C: content_length type fix            results/083.processed, results/084.processed,
             results/085.processed, results/086.processed,
 2002-06-30  paf            results/087.processed, results/088.processed,
             results/089.processed, results/090.processed,
         * src/classes/mail.C: merged from 4            results/091.processed, results/092.processed,
             results/093.processed, results/094.processed,
         * src/classes/mail.C: restored $MAIL            results/095.processed, results/096.processed,
             results/097.processed, results/098.processed,
 2002-06-28  paf            results/099.processed, results/100.processed,
             results/101.processed, results/102.processed,
         * configure, configure.in: removed paths.h            results/103.processed, results/104.processed,
             results/105.processed, results/106.processed,
         * configure, src/include/pa_version.h,            results/107.processed, results/108.processed,
           src/targets/cgi/pa_config_paths.h.in: lates changes from 4 build            results/109.processed, results/110.processed,
           merged, makes updated            results/111.processed, results/112.processed,
             results/113.processed, results/114.processed,
         * ChangeLog, configure, operators.txt, src/classes/xdoc.C,            results/115.processed, results/116.processed,
           src/include/pa_charset.h, src/include/pa_config_fixed.h,            results/117.processed, results/118.processed,
           src/include/pa_pool.h, src/include/pa_version.h,            results/119.processed, results/120.processed,
           src/main/pa_charset.C, src/main/pa_pool.C,            results/121.processed, results/122.processed,
           src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,            results/123.processed, results/124.processed,
           src/types/pa_vmail.C, www/htdocs/index.html: merged latest            results/125.processed, results/126.processed,
           updates to head            results/127.processed, results/128.processed,
             results/129.processed, results/130.processed,
 2002-06-27  paf            results/131.processed, results/132.processed,
             results/133.processed, results/134.processed,
         * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: post-build            results/135.processed, results/136.processed,
           not error now            results/137.processed, results/138.processed,
             results/139.processed, results/140.processed,
         * operators.txt, src/classes/xdoc.C, src/include/pa_charset.h,            results/141.processed: merged(copied) to HEAD from template_gc
           src/include/pa_config_fixed.h, src/include/pa_pool.h,  
           src/main/pa_charset.C, src/main/pa_pool.C, www/htdocs/index.html:          * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: more step
           ^xdoc::create[[uri]]... base uri for document being created,            towards \parser3project not having to be in root
           imports and other relative file names would be relative to this  
           uri default uri=path_translated          * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c: apache
             module compiled [were minor unnecessary changes in lib/md5
         * src/classes/xdoc.C, www/htdocs/index.html: xsltParseStylesheetDoc            interface]
           bug workaround  
           * src/include/pa_version.h: release
 2002-06-26  paf  
           * parser3.dsw, src/main/pa_globals.C: relative paths to xml&gc libs
         * configure, configure.in, src/include/pa_version.h:  
           release_3_0_0004          * src/classes/math.C: merged uuid bugfix
   
         * src/main/pa_string.C: blank string '', ' <whitespace>' considered          * tests/: 141.html, results/141.processed: fixed bug with
           0 now            too-small-a-buffer
   
         * src/targets/cgi/parser3.C: /cgi-bin/parser empty filename checked          * src/classes/math.C: uuid bugfix
   
 2002-06-25  paf          * tests/: 141.html, Makefile, results/005.processed,
             results/030.processed, results/075.processed,
         * www/htdocs/index.html, src/main/pa_string.C: emtpy string, or            results/078.processed: to reflect date format change (were -
           string of whitespaces considered bad number now            become ' ')
   
         * www/htdocs/index.html: ^xdoc.transform[xdoc <<can be now          * src/classes/math.C: uuid bugfix
   
         * operators.txt, src/classes/xdoc.C, www/htdocs/index.html:          * parser3.dsw, src/main/pa_globals.C: few paths for libxml
           ^xdoc.transform[xdoc <<can be now            debug/release changes
   
         * operators.txt, src/classes/string.C, www/htdocs/index.html:          * src/lib/md5/pa_md5c.c: PA_ -> pa_
           ^string.normalize  [old name: optimize  
   2003-07-23  paf
         * configure, configure.in, src/include/pa_config_auto.h.in: crypt  
           library configured          * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
             renamed a little [to move to comman naming conv]
         * src/main/pa_request.C: configure_admin forced if no @conf  
           * src/targets/Makefile.am: apache13 splitted to simplify apache
         * operators.txt, bin/auto.p.dist.in, src/classes/math.C,            build
           src/types/pa_vmail.C, www/htdocs/index.html: ^math:crypt updated  
           to generate random salt when needed and to call system crypt() if          * src/: include/pa_request.h, include/pa_stack.h, main/execute.C,
           not $apr1$ prefix            main/pa_request.C, main/pa_sql_driver_manager.C,
             main/pa_stylesheet_manager.C, targets/isapi/parser3isapi.dsp:
 2002-06-24  paf            stack top_index() fixed
   
         * INSTALL: --with-static/shared-mailreceive described          * src/main/pa_globals.C: minor style changes
   
         * src/include/pa_config_fixed.h: ssize_t fixed          * src/: classes/op.C, include/pa_sql_connection.h: connection
             closing/caching fixed [connections were not closed/put to cache]
         * configure, configure.in, src/include/pa_config_auto.h.in,  
           src/targets/cgi/Makefile.am, src/types/Makefile.am,  2003-07-22  paf
           src/types/pa_vmail.C: $mail:received makes update  
           * INSTALL: gc part updated stightly
         * src/: include/pa_config_fixed.h, types/pa_vmail.C: #ifdef  
           WITH_MAILRECEIVE          * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: updated to
             new sapi interface
         * src/targets/cgi/parser3.C: #ifdef WITH_MAILRECEIVE  
           * src/classes/file.C: comment on OS
         * src/targets/cgi/: getopt.c, getopt.h: introducing parser -m  
           option, for $mail:receive          * src/main/pa_string.C: removed reduntant invariant check [there is
             one deeper in cord lib]
         * src/types/: pa_vmail.C, pa_vmail.h: uue to separate file  
           introducting $message:received ^mail:send rewritten with backward          * src/main/pa_exec.C: on win32 bugfix in handling shbang
           comp  
           * src/main/pa_memory.C: out of memory is no longer coredump
         * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,  
           targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,          * INSTALL: disable-threads adviced
           types/types.dsp: win32xml win32mailreceive pseudomodules paths  
           now  2003-07-21  paf
   
         * operators.txt, src/classes/mail.C, src/include/Makefile.am,          * src/classes/Makefile.am: removed circular dependency on classes.C
           src/include/pa_charset.h, src/include/pa_config_fixed.h,  
           src/include/pa_request.h, src/include/pa_string.h,          * src/classes/file.C: file::exec/cgi environment variables now must
           src/include/pa_uue.h, src/main/Makefile.am, src/main/main.dsp,            be UPPERCASE and A-Z 0-9 _-
           src/main/pa_globals.C, src/main/pa_request.C,  
           src/main/pa_string.C, src/main/pa_uue.C,          * src/classes/file.C: env passing fixed
           src/targets/cgi/Makefile.am, src/targets/cgi/parser3.C,  
           src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,          * src/main/pa_common.C: http:// CRLF now [merged from HEAD]
           src/types/pa_vform.C, src/types/pa_vform.h, src/types/types.dsp,  
           www/htdocs/index.html: uue to separate file introducting          * src/main/pa_common.C: http:// CRLF now
           $message:received ^mail:send rewritten with backward comp  
   2003-07-02  paf
 2002-06-21  paf  
           * operators.txt, src/types/pa_vstatus.C: renamed $memory:status
         * src/lib/: Makefile.am, md5/pa_md5.h: lib restructure apache .am &            fields to reflect their real meaning
           co changes  
   2003-06-27  paf
         * configure, configure.in, src/lib/md5/Makefile.am,  
           src/lib/md5/pa_md5c.c, src/targets/cgi/Makefile.am: lib          * src/: classes/file.C, include/pa_charset.h, include/pa_exec.h,
           restructure .in and .am files appropriate changes            include/pa_hash.h, main/pa_charset.C: merged from HEAD
             file::exec/cgi .charset
         * src/lib/md5/: md5.dsp, pa_md5.h, pa_md5c.c: moved libltdl and  
           pcre to libs/ added libs/md5 which is linked to non-apache  2003-06-26  paf
           targets ^math:crypt[password;$apr1$salt]  
           * ChangeLog, src/classes/file.C, src/classes/hash.C,
         * INSTALL, configure.in, operators.txt, parser3.dsw,            src/classes/image.C, src/classes/op.C, src/classes/string.C,
           src/Makefile.am, src/classes/Makefile.am,            src/classes/table.C: fixed several uninitialized local
           src/classes/classes.dsp, src/classes/math.C,            structures.  notably ^hash.foreach now inserts delimiters
           src/lib/md5/Makefile.am, src/lib/pcre/LICENCE,            properly [were inserting it before first body]
           src/lib/pcre/Makefile.am, src/lib/pcre/README,  
           src/lib/pcre/Tech.Notes, src/lib/pcre/dftables.c,  2003-06-24  paf
           src/lib/pcre/get.c, src/lib/pcre/ibm-1250.ucm,  
           src/lib/pcre/ibm-1251.ucm, src/lib/pcre/ibm-1257.ucm,          * src/include/pa_hash.h: simplified HASH_ALLOCATES_COUNT
           src/lib/pcre/internal.h, src/lib/pcre/maketables.c,  
           src/lib/pcre/pcre-2_08.tar.gz, src/lib/pcre/pcre.3,  2003-06-20  paf
           src/lib/pcre/pcre.3.html, src/lib/pcre/pcre.3.txt,  
           src/lib/pcre/pcre.c, src/lib/pcre/pcre.dsp, src/lib/pcre/pcre.h,          * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
           src/lib/pcre/pcre_dftables.dsp, src/lib/pcre/pcre_parser_ctype.c,            src/main/pa_globals.C: introducing
           src/lib/pcre/pcre_parser_ctype.dsp,            $f[^file::load[binary;http://...]] $f.tables
           src/lib/pcre/ruspart_win2koi.pl, src/lib/pcre/study.c,  
           src/lib/pcre/win-koi.tab, src/main/Makefile.am,  2003-06-06  paf
           src/main/compile.tab.C, src/main/main.dsp,  
           src/targets/cgi/Makefile.am, src/targets/cgi/parser3.dsp,          * src/types/: pa_vhash.h: $hash.field lookup first now: along with
           src/targets/isapi/parser3isapi.dsp, src/types/Makefile.am,            table. [were method lookup: inconsistent]
           src/types/types.dsp, www/htdocs/.htaccess, www/htdocs/index.html,  
           src/lib/Makefile.am: moved libltdl and pcre to libs/ added  2003-06-02  paf
           libs/md5 which is linked to non-apache targets  
           ^math:crypt[password;$apr1$salt]          * src/include/pa_memory.h: empty string clone fixed to return
             writable memory
 2002-06-20  paf  
           * src/main/pa_common.C: fix_line_breaks bug fix [terminating zero
         * INSTALL, configure, configure.in, operators.txt, bin/Makefile.am,            were not appended] which violated string invariant
           bin/auto.p.dist.in, src/classes/file.C, src/classes/op.C,  
           src/doc/doxygen.cfg, src/include/pa_globals.h,  2003-05-30  paf
           src/include/pa_request.h, src/main/execute.C,  
           src/main/pa_request.C, src/targets/cgi/parser3.C,          * src/types/pa_value.C: date format now Sun, 06 Nov 1994 08:49:37
           src/targets/isapi/parser3isapi.C, src/types/pa_vmethod_frame.h,            GMT  ; RFC 822, updated by RFC 1123 [as in HEAD]
           www/htdocs/auto.p, www/htdocs/index.html: marged latest HEAD  
           updates, mainly file:justname&co & @auto/conf[filespec          * src/main/pa_common.C: date format now Sun, 06 Nov 1994 08:49:37
             GMT  ; RFC 822, updated by RFC 1123
         * operators.txt, src/classes/file.C, www/htdocs/auto.p,  
           www/htdocs/index.html:     !^file:dirname[/a/some.tar.gz]=/a          * src/: classes/file.C, classes/form.C, targets/cgi/parser3.C,
               !^file:dirname[/a/b/]=/a            targets/isapi/parser3isapi.C: initialized request_info properly
               !^file:basename[/a/some.tar.gz]=some.tar.gz  
               !^file:justname[/a/some.tar.gz]=some.tar          * src/classes/xnode.C: found minor bug, commended for future
               !^file:justext[/a/some.tar.gz]=gz  
   2003-05-28  paf
         * src/classes/op.C, src/include/pa_request.h, src/main/execute.C,  
           src/main/pa_request.C, src/types/pa_vmethod_frame.h,          * src/classes/form.C: request_info.content_length can't be <0,
           www/htdocs/auto.p, www/htdocs/index.html: introducing            size_t for some time
           @conf/auto[filespec]  
   2003-05-26  paf
         * bin/auto.p.dist.in: <noindex>  
           * src/: classes/file.C, classes/string.C, main/pa_string.C: few
         * configure: parser3.conf renamed to auto.p autoconf changes            forgotten <0 changed to !=STRING_NOT_FOUND
   
         * INSTALL, configure.in, operators.txt, bin/Makefile.am,          * src/classes/math.C: merged ffffu from HEAD
           bin/auto.p.dist.in, src/doc/doxygen.cfg,  
           src/include/pa_globals.h, src/targets/cgi/parser3.C,  2003-05-11  paf
           src/targets/isapi/parser3isapi.C, www/htdocs/auto.p,  
           www/htdocs/index.html: parser3.conf renamed to auto.p          * src/main/pa_globals.C: xml memory debugging functions (ifdefed)
   
 2002-06-18  paf          * src/types/: pa_vxdoc.h, pa_vxnode.h: think that found cause of
             premature doc free.  transformed document had xmlDoc reference
         * configure, configure.in, src/include/pa_version.h: version to            stored to non-gc-memory (libgdome) added holding-reference
           configure.in  
   2003-04-29  paf
         * INSTALL: reflected .conf.dist dir change  
           * src/main/pa_globals.C: started digging on double free.  on win32
         * Makefile.am, configure, configure.in, bin/Makefile.am,            found that that's perfectly normal.
           etc/parser3.charsets/Makefile.am: parser3.conf.dist moved to bin,  
           .in & *.am updated  2003-04-25  paf
   
         * src/classes/file.C: strncasecmp          * src/classes/table.C: table.join bug fix  [bad limit check]
   
         * src/classes/file.C: strcasecmp          * src/classes/math.C: merged from HEAD: simpiler hash_string
   
         * bin/Makefile.am, etc/Makefile.am, www/htdocs/index.html:          * src/classes/math.C: snprintf(buf, 3) become (buf,2) and failed to
           bin/parser3.conf.dist [moved from etc            print anything.  changed to quicker and simplier code
   
         * src/classes/file.C: ^file::exec[script;$.bad error case          * src/classes/hash.C: allowed ^hash::create[^rem{xxx}]   [were to
           insensitive check now            strict a check]
   
         * src/classes/file.C, www/htdocs/index.html:          * src/: classes/table.C, lib/md5/pa_md5c.c: minor compile errors
           ^file::exec[script;$.bad now error, not skip  
   2003-04-24  paf
         * configure, configure.in, src/include/pa_pool.h,  
           src/include/pa_types.h: pack configure.in detection simplified.          * src/include/pa_table.h: too strict assert loosened
           figured out that gcc on sparc not that stupid as thought  
           previously: on sparc: when it sees packed class it modifies it's          * src/lib/: md5/pa_md5c.c, pcre/pcre.h: thanks to Ilia Soldis
           field-access-code to byte operations [stb, ldub] instead of 4byte            <soldis@infolio.ru> for reporing this ansi c fiolation syntax
           operations [st, lduh] so packed must be all parts of packed            report
           class, i.e. it's parents&fields(classes).  for now it's only  
           String that packed and what was wrong is that it's parent -  2003-04-21  paf
           Pooled, were not packed. fixed that.  
           * src/targets/cgi/Makefile.am: pp3 added to .am
 2002-06-14  paf  
           * src/main/pa_globals.C: pcre memory management changed to use GC
         * operators.txt: more precise xml-to-text options            memory
   
         * operators.txt, src/types/pa_vxnode.C: xnode          * src/main/pa_globals.C: 2.5.6 version of libxml allows to install
           attribute_node.name/value xnode pi.node.data            xmlMallocAtomic [author agreed to my suggestion], used that
   
 2002-06-12  paf          * src/types/pa_vmail.C: ^mail:send[$.body backward compatibility
   
         * configure, configure.in, src/targets/cgi/Makefile.am,          * src/: targets/cgi/parser3.C, types/pa_value.C, types/pa_value.h,
           src/targets/cgi/parser3.C: removed root conf define creation            types/pa_vmail.C: attributed_meaning_to_string added
             L_UNSPECIFIED piece which was sortof OK, but violated string
         * INSTALL, configure.in, operators.txt, etc/Makefile.am,            invariant [assertion barked on that] changed to L_PASS_APPEND,
           src/include/pa_globals.h, src/include/pa_request.h,            made that param obligatory
           src/main/compile.tab.C, src/main/pa_globals.C,  
           src/main/pa_request.C, src/targets/cgi/parser3.C,          * src/main/pa_string.C: String::ArrayFragment::append_positions bug
           src/targets/isapi/parser3isapi.C: parser3.conf now one and only            fixed [assert helped]
   
         * src/classes/mail.C: sendmail -ti [default now]          * src/include/pa_string.h: assert added [looking for bug]
   
         * src/: classes/mail.C, main/pa_request.C: $MAIL $CHARSETS allowed          * src/main/pa_request.C: merged from HEAD: "x:..." and "\\..." file
           to be strings. for convinient #ing            names on Win32 considered disk-global
   
         * src/: include/pa_globals.h, include/pa_request.h, main/execute.C,          * src/main/pa_request.C: "x:..." and "\\..." file names on Win32
           main/pa_globals.C, main/pa_request.C: @rootconf [were @conf]            considered disk-global
   
         * src/: include/pa_globals.h, include/pa_request.h, main/main.dsp,  2003-04-18  paf
           main/pa_globals.C, main/pa_request.C: @conf  
           * src/main/untaint.C: merged from HEAD: enabled '~' letter in
 2002-06-11  paf            filenames
   
         * src/classes/file.C: check simplified          * src/main/untaint.C: enabled '~' letter in filenames
   
         * src/classes/file.C, src/targets/cgi/parser3.dsp,  2003-04-16  paf
           src/targets/isapi/parser3isapi.C, www/htdocs/.htaccess,  
           www/htdocs/index.html: suexec env keys filter plus CGI_ as valid          * src/classes/file.C: small bug introduced in autoptr times fixed
           prefix  
           * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: merged from
         * src/classes/file.C, src/include/pa_request.h,            HEAD
           src/include/pa_sapi.h, src/targets/cgi/parser3.C,  
           src/targets/isapi/parser3isapi.C, www/htdocs/index.html:          * src/classes/table.C: fix: gcc reported tiny error
           file::exec/cgi to pass HTTP_ vars introducing SAPI::environment  
   2003-04-15  paf
 2002-06-10  paf  
           * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
         * operators.txt, src/classes/op.C, src/include/pa_common.h,            src/lib/md5/pa_md5c.c, tests/141.html,
           src/main/pa_common.C: lock failures reported now            tests/results/141.processed: merged from head ^math:uuid[]
             ^math:uid64[] ^math:md5[string]
         * src/main/compile_tools.C, www/htdocs/index.html: ^if(" 1 "){y}  
           bug fixed optimization string->double @ compile time were            test added: 141.html
           not-enough-checking...  
           * operators.txt, src/classes/math.C: ^math:uid64[]
         * src/main/compile.tab.C, src/main/pa_string.C,  
           www/htdocs/index.html: whitespace after number in autoconvert now          * src/classes/math.C: ^math:uuid[]
           ignored  
           * operators.txt, src/classes/math.C: ^math:uuid[]
         * src/types/pa_vform.C, src/types/pa_vform.h,  
           www/htdocs/index.html: $form: not determined yet check          * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
             src/lib/md5/pa_md5c.c: ^math:md5[string] 16-byte digest
         * src/classes/mail.C: mail netscape attachment name fixed. todo:  
           $response:body content-type:name          * operators.txt, src/classes/file.C, src/include/pa_common.h,
             src/include/pa_config_fixed.h, src/main/pa_common.C:
         * configure, configure.in: hpux check, nsl link, no socket            ^file::load[mode;name;     $.offset     $.limit
   
         * operators.txt: old merge conflict removed  2003-04-14  paf
   
         * configure, configure.in: pack even address access on sparc&co          * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
           arch checked in configure            started ^math:md5
   
         * configure, src/include/pa_version.h: makes          * src/classes/table.C, src/include/pa_array.h,
             src/include/pa_table.h, src/main/pa_table.C, tests/140.html,
         * configure, configure.in, src/include/pa_version.h: makes            tests/results/140.processed: table $.reverse option works in
             create&co table $.distinct[tables] bug fix merged
         * src/main/untaint.C: (bug#2) mail subject got always prepended  
           with charset even when all letters were 7bit one          * src/: classes/table.C, include/pa_table.h: table
             $.distinct[tables] bug fixed
         * src/main/pa_common.C: merged fixed -d (bug)  
           * src/classes/table.C: more warnings
         * src/main/pa_common.C: fixed -d (bug)  
           * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C:
 2002-06-03  paf            removed checks in table::set_current, moved them back to
             table::locate implemented table::create/join ñ $.reverse
         * ChangeLog, operators.txt, etc/parser3.charsets/windows-1251.cfg,  
           src/classes/classes.dsp, src/main/compile.tab.C,          * src/: include/pa_table.h, main/pa_array.C, main/pa_table.C:
           src/main/main.dsp, src/main/pa_globals.C,            removed checks in table::set_current, moved them back to
           src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,            table::locate
           src/targets/isapi/parser3isapi.dsp, src/types/types.dsp,  
           www/htdocs/index.html: fixed .dsp-s along with reorganized cvs  2003-04-11  paf
           modules dirs structure  
           * operators.txt, src/classes/date.C, src/classes/table.C,
         * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,            src/include/pa_array.h, src/include/pa_common.h,
           main/pa_globals.C, targets/cgi/parser3.dsp,            src/include/pa_config_includes.h, src/include/pa_string.h,
           targets/isapi/parser3isapi.dsp, types/types.dsp: reorganized cvs            src/include/pa_table.h, src/main/pa_request.C,
           modules            src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
             src/main/pa_table.C: merged from HEAD from
 2002-05-28  paf            before_append_array_limit_sense_change to
             after_append_array_limit_sense_change
         * src/targets/cgi/parser3.C: info.uri now ""  
           * src/classes/table.C: typo
 2002-05-17  paf  
           * operators.txt, src/classes/date.C, src/classes/table.C,
         * src/classes/: table.C: ^table.save << checked empty            src/include/pa_array.h, src/include/pa_common.h,
           pre/match/post columns            src/include/pa_config_includes.h, src/include/pa_globals.h,
             src/include/pa_table.h, src/main/pa_array.C,
 2002-05-16  paf            src/main/pa_globals.C, src/main/pa_request.C,
             src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
         * src/classes/image.C, www/htdocs/index.html: image::measure can            src/main/pa_table.C: append_array_limit_sense_change locate
           png now            accepts options same as create new option: $.reverse(1)   [do not
             work in table::create]
 2002-05-15  paf  
           * src/: include/pa_common.h, main/pa_common.C: gcc didn't like
         * operators.txt, src/classes/date.C, www/htdocs/index.html:            (stat xxx,
           ^date::create[%H:%M[:%S]] added  
           * src/classes/: table.C: typo
         * etc/parser3.charsets/windows-1251.cfg: 0x forgot, fixed  
           * tests/: 130.html, 131.html, 132.html, 133.html, 134.html,
         * operators.txt, src/classes/date.C, www/htdocs/.htaccess,            135.html, 136.html, 137.html, 138.html, 139.html, descript.ion,
           www/htdocs/auto.p, www/htdocs/index.html:            results/130.processed, results/131.processed,
           ^date::create[%Y[-%m[-%d[ %H[:%M[:%S]]]]]] [-%m now            results/132.processed, results/133.processed,
             results/134.processed, results/135.processed,
 2002-05-14  paf            results/136.processed, results/137.processed,
             results/138.processed, results/139.processed: added few mustfail
         * etc/parser3.charsets/: windows-1251.cfg: added 3 quotes            tests 130.html mustfail: empty regexp 131.html mustfail: invalid
             date/time 132.html mustfail: access to junction outside of
 2002-05-07  paf            context 133.html mustfail: access to junction outside of context,
             case version 134.html mustfail: hash: adding a key inside of
         * ChangeLog, src/classes/classes.dsp, src/classes/op.C,            foreach 135.html mustfail: modifying system class 136.html
           src/include/pa_globals.h, src/include/pa_request.h,            mustfail: $.name outside of $hash[here] 137.html mustfail:
           src/include/pa_table.h, src/main/compile.tab.C,            appendChild without import 138.html mustfail: invalid encoding
           src/main/compile.y, src/main/main.dsp, src/main/pa_globals.C,            inside of xml 139.html mustfail: bad XPath
           src/main/pa_request.C, src/main/pa_table.C,  
           src/targets/isapi/pa_pool.C, src/targets/isapi/parser3isapi.C,          * operators.txt, src/classes/table.C, tests/084.html,
           src/targets/isapi/parser3isapi.dsp,            tests/125.html, tests/126.html, tests/127.html, tests/128.html,
           src/targets/isapi/pool_storage.h, src/types/types.dsp,            tests/129.html, tests/results/125.processed,
           www/htdocs/parser-status.html: Table name2number field now &.            tests/results/126.processed, tests/results/127.processed,
           main_method_name now on Request pool rather on global_pool            tests/results/128.processed, tests/results/129.processed: merged
           [Junction+VJunction created on same pool as name = were created            from HEAD ^table.hash[key][$.distinct[tables]]
           on global pool, causing mem leaks]  
             maked appropriate tests [changed one old nonconforming]
         * src/classes/classes.dsp, src/classes/op.C,  
           src/include/pa_globals.h, src/include/pa_request.h,          * operators.txt, src/classes/table.C:
           src/include/pa_table.h, src/main/compile.tab.C,            ^table.hash[key][$.distinct[tables]]
           src/main/compile.y, src/main/main.dsp, src/main/pa_globals.C,  
           src/main/pa_request.C, src/main/pa_table.C,          * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
           src/targets/isapi/pa_pool.C, src/targets/isapi/parser3isapi.C,            merged fix for found very old xml (dom) bug: were passing
           src/targets/isapi/parser3isapi.dsp,            domString objects and later ERROREOUSLY freed them
           src/targets/isapi/pool_storage.h, src/types/types.dsp,  
           www/htdocs/parser-status.html: Table name2number field now &.          * INSTALL, src/include/pa_charset.h, src/lib/Makefile.am,
           main_method_name now on Request pool rather on global_pool            src/main/pa_charset.C: re-added libgdome patch. regretfully
           [Junction+VJunction created on same pool as name = were created            libgdome bug can not be worked around
           on global pool, causing mem leaks]  
   2003-04-10  paf
 2002-05-06  paf  
           * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
         * src/: main/pa_globals.C, targets/cgi/parser3.C,            found very old xml (dom) bug: were passing domString objects and
           targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed            later ERROREOUSLY freed them
           100*40 bytes per request memory leak [nonpool malloc in globals]  
           * src/doc/string.dox, src/include/pa_memory.h,
         * src/: main/pa_globals.C, targets/cgi/parser3.C,            src/include/pa_string.h, src/lib/cord/cordbscs.c,
           targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed            src/main/pa_string.C, src/types/pa_vform.C, src/types/pa_vform.h,
           100*40 bytes per request memory leak [nonpool malloc in globals]            tests/123.html, tests/124.html, tests/results/001.processed,
             tests/results/002.processed, tests/results/003.processed,
 2002-04-30  paf            tests/results/004.processed, tests/results/005.processed,
             tests/results/006.processed, tests/results/008.processed,
         * configure, src/include/pa_version.h: version now not b            tests/results/009.processed, tests/results/010.processed,
             tests/results/011.processed, tests/results/012.processed,
         * src/targets/cgi/parser3.C, www/htdocs/global.xsl,            tests/results/013.processed, tests/results/014.processed,
           www/htdocs/index.html: request.uri now never 0            tests/results/015.processed, tests/results/016.processed,
             tests/results/017.processed, tests/results/018.processed,
 2002-04-29  paf            tests/results/020.processed, tests/results/021.processed,
             tests/results/022.processed, tests/results/023.processed,
         * configure.in: removed b            tests/results/024.processed, tests/results/025.processed,
             tests/results/026.processed, tests/results/027.processed,
         * src/: classes/op.C, include/pa_exception.h, main/pa_request.C:            tests/results/028.processed, tests/results/029.processed,
           Exception::comment/type checked in (), no there's no empty            tests/results/030.processed, tests/results/031.processed,
           type/comment by default            tests/results/032.processed, tests/results/033.processed,
             tests/results/034.processed, tests/results/035.processed,
         * ChangeLog, src/doc/ClassExample1.dox, src/doc/ClassExample3.dox,            tests/results/036.processed, tests/results/037.processed,
           src/doc/aliased.dox, src/doc/methoded.dox, src/doc/string.dox,            tests/results/038.processed, tests/results/039.processed,
           src/doc/value.dox, src/include/pa_exception.h,            tests/results/040.processed, tests/results/041.processed,
           src/main/pa_request.C, src/targets/cgi/parser3.C: merged from            tests/results/042.processed, tests/results/043.processed,
           0001            tests/results/044.processed, tests/results/045.processed,
             tests/results/046.processed, tests/results/047.processed,
 2002-04-26  paf            tests/results/048.processed, tests/results/049.processed,
             tests/results/050.processed, tests/results/051.processed,
         * src/doc/doxygen.cfg, src/targets/cgi/parser3.dsp,            tests/results/052.processed, tests/results/053.processed,
           www/htdocs/index.html: doxygen dot image size reduced            tests/results/054.processed, tests/results/055.processed,
             tests/results/056.processed, tests/results/057.processed,
 2002-04-25  paf            tests/results/058.processed, tests/results/059.processed,
             tests/results/060.processed, tests/results/061.processed,
         * src/targets/cgi/: parser3.C: setenv in .htaccess when cgi is not            tests/results/062.processed, tests/results/063.processed,
           under that dir got REDIRECT_ prefix before HTTP_PARSER_x_CONFIG,            tests/results/064.processed, tests/results/065.processed,
           now that took into account            tests/results/066.processed, tests/results/067.processed,
             tests/results/068.processed, tests/results/069.processed,
         * operators.txt, src/classes/date.C: ^date::create[2002-12-33            tests/results/070.processed, tests/results/071.processed,
           01:03:04]            tests/results/072.processed, tests/results/073.processed,
             tests/results/074.processed, tests/results/075.processed,
         * ChangeLog, operators.txt, src/classes/date.C,            tests/results/076.processed, tests/results/077.processed,
           www/htdocs/index.html: ^date::create[2002-12-33 01:03:04]            tests/results/078.processed, tests/results/079.processed,
             tests/results/080.processed, tests/results/081.processed,
         * ChangeLog: updated changelog            tests/results/082.processed, tests/results/083.processed,
             tests/results/084.processed, tests/results/085.processed,
         * www/htdocs/index.html: sample of 'using junction out of context'            tests/results/086.processed, tests/results/087.processed,
             tests/results/088.processed, tests/results/089.processed,
         * src/classes/table.C, www/htdocs/.htaccess, www/htdocs/index.html:            tests/results/090.processed, tests/results/091.processed,
           removed restriction on column count to ^table.hash to work, now            tests/results/092.processed, tests/results/093.processed,
           must be >0 [were >1]            tests/results/094.processed, tests/results/095.processed,
             tests/results/096.processed, tests/results/097.processed,
 2002-04-24  paf            tests/results/101.processed, tests/results/102.processed,
             tests/results/104.processed, tests/results/105.processed,
         * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,            tests/results/106.processed, tests/results/107.processed,
           targets/cgi/parser3.C, targets/cgi/parser3.dsp,            tests/results/108.processed, tests/results/109.processed,
           targets/isapi/parser3isapi.dsp, types/types.dsp: MSVC profile            tests/results/110.processed, tests/results/111.processed,
           targets            tests/results/112.processed, tests/results/113.processed,
             tests/results/114.processed, tests/results/115.processed,
 2002-04-23  paf            tests/results/116.processed, tests/results/117.processed,
             tests/results/118.processed, tests/results/119.processed,
         * operators.txt, src/classes/string.C, www/htdocs/index.html:            tests/results/120.processed, tests/results/121.processed,
           int/double/string:sql{}[$.default{code}] fixed [were barking:            tests/results/122.processed, tests/results/123.processed,
           "junction used outside of context"]            tests/results/124.processed: new convention: char* never 0.
             assert in cord on that
 2002-04-22  paf  
           * src/main/pa_charset.C: couple more asserts
         * types.txt, src/classes/string.C, src/include/pa_string.h,  
           src/main/pa_string.C, src/types/pa_vstring.C,          * src/: main/pa_charset.C, include/pa_charset.h: little transcodes
           src/types/pa_vstring.h: ^string.optimize[]            speedup
   
         * src/: include/pa_globals.h, include/pa_table.h,          * src/main/pa_charset.C: couple assertions on fantastic situations
           main/pa_globals.C, main/pa_string.C, main/pa_table.C: fixed match            added [may be those is the case now?]
           table template  
           * src/main/pa_charset.C: bugfix on memory buffer overrun [but
         * src/classes/: string.C: optimize removed from string            that's memory from gc_malloc, not from g_malloc :(, but would
           .left/right/pos            hope]
   
         * src/main/execute.C: rolled back to          * src/main/pa_charset.C: bugfix on memory buffer overrun [but
           before_killing_userjunction_contexts            that's memory from gc_malloc, not from g_malloc :(, but would
             hope]
         * src/main/execute.C, www/htdocs/index.html: user junctions context  
           killed          * src/main/pa_charset.C: checked custom malloc for returning 0
   
         * src/main/execute.C, www/htdocs/index.html: junctions to local  2003-04-09  paf
           contexts got cleanized&checked later  
           * src/classes/date.C: merged ^date.roll changes
 2002-04-19  paf  
           * src/classes/date.C: ^date.roll bug fix
         * src/classes/string.C, src/include/pa_request.h,  
           src/include/pa_string.h, src/main/pa_request.C,          * src/classes/date.C: ^date.roll now throws less errors: month
           src/main/pa_string.C, src/types/pa_vstring.C,            shifts handles end of month situation by reducing day number
           src/types/pa_vstring.h, www/htdocs/index.html: string now            hour-hole shift reduces hour to recover
           optimized prior to .left .right .mid .pos .match when that is  
           profitable, and always before .replace when $ORIGINS(1)          * src/targets/cgi/pp3.cmd: custom profiling script: plist/ST <<
           optimization disabled economy from not wasting mem on lots of            Sort by function time
           strings which occur by lots of String:mid calls to get parts of  
           source string between found_occurances          * operators.txt, src/main/pa_charset.C, src/main/pa_common.C:
             http://   $.charset[] param done
         * src/classes/file.C: ovector now local economy: 16 bytes per  
           ^file:list          * tests/: 122.html, results/122.processed: 122 date test <= and ==
             added [after volatile fix. passes on win&intel-solaris]
         * src/: include/pa_globals.h, include/pa_table.h,  
           main/pa_globals.C, main/pa_string.C: String::match table columns  2003-04-08  paf
           globalized, not created @ each ^match anymore economy:  
           sizeof(Array)+space on 3+x cells=24+ bytes per ^match          * src/: classes/file.C, classes/op.C, classes/table.C,
             classes/xdoc.C, include/pa_charset.h, include/pa_charsets.h,
         * src/: classes/op.C, classes/string.C, types/pa_value.h: VTable            include/pa_common.h, include/pa_request_charsets.h,
           removed from each String::match replace iteration, and made            main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
           stacked sizeof(VTable)=12bytes economy on each replace code            main/pa_exec.C, main/pa_request.C, main/untaint.C,
             types/pa_value.h, types/pa_vmail.C, types/pa_vrequest.C,
         * src/doc/footer.htm: 2001,            types/pa_vresponse.C: started http://   $.charset[] param and
             http response charset detection just compiled.  todo:test
         * src/classes/string.C, src/include/pa_string.h,  
           src/main/pa_string.C, www/htdocs/index.html: string.match[][']          * src/main/pa_common.C: merged PA_USE_ALARM bugfix from HEAD
           option enables generation of $match.prematch .match .postmatch  
           columns          * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
             main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vform.C,
         * src/main/pa_string.C: String::match options analized without            types/pa_vmail.C: changed transcode param converntion  along with
           cstr-ing them now            string creating convention -- all strings are zero-terminated,
             this allowed to fix one remaining String("123", 2) case
         * src/doc/: doxygen.cfg, footer.htm, html2chm.cmd, postbuild.txt,  
           sources2html.cmd, view_chm.cmd, view_html.cmd, chmhelper.pl:          * src/: classes/date.C, classes/file.C, classes/hash.C,
           config updated to doxygen 1.2.15, created helper which fixes            classes/op.C, classes/string.C, classes/table.C,
           minor bugs in chm project files & htm tree.  changed extension to            include/pa_charset.h, include/pa_memory.h, include/pa_string.h,
           .htm            main/compile.tab.C, main/pa_charset.C, main/pa_exec.C,
             main/pa_request.C, main/pa_string.C, main/pa_uue.C,
 2002-04-18  paf            main/untaint.C, types/pa_vfile.C, types/pa_vfile.h,
             types/pa_vform.C, types/pa_vform.h, types/pa_vmail.C: pa_vform
         * src/doc/doxygen.cfg: .chi generation disabled            violated String::invariant. started fixing [not compiled now]
   
         * src/classes/classes.h, src/classes/xdoc.C, src/classes/xnode.C,          * src/: classes/string.C, include/pa_string.h, lib/cord/cordbscs.c,
           src/classes/xnode.h, src/types/pa_vxdoc.C, www/htdocs/index.html:            main/compile.tab.C, main/compile.y, main/pa_string.C,
           xdoc(xnode) now fully - fields&methods            main/untaint.C, targets/cgi/parser3.C: number of string style
             improvements & optimizations
         * src/: classes/classes.h, classes/hash.C, types/pa_value.h,  
           types/pa_vbool.h, types/pa_vcookie.h, types/pa_vdate.h,          * src/classes/xnode.C: =0 bug fix [left from autoptr default ctor
           types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.h,            :(]
           types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,  
           types/pa_vjunction.h, types/pa_vobject.h, types/pa_vrequest.h,          * src/main/untaint.C: removed redundant & in CORD_pos param passing
           types/pa_vresponse.h, types/pa_vstateless_class.h,            [for it's a pointer really]
           types/pa_vstateless_object.h, types/pa_vstatus.h,  
           types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h,          * src/main/untaint.C: CORD_pos_advance turned out to have limit on
           types/pa_vxdoc.h, types/pa_vxnode.h: fclass_real lowered from            'n' param. worked that around
           VStateless_class to VObject  
           * src/lib/cord/: Makefile.am, cordbscs.c, source.url: From: "Boehm,
         * src/main/pa_request.C, src/types/pa_valiased.h,            Hans" <hans_boehm@hp.com> To: "'Alexandr Petrosian (PAF)'"
           src/types/pa_vstateless_class.h,            <PAF@design.ru>; "Boehm, Hans" <hans_boehm@hp.com> Sent: Tuesday,
           src/types/pa_vstateless_object.h, src/types/pa_vstring.h,            April 08, 2003 2:16 AM Subject: RE: libgc 6.2.alpha4
           www/htdocs/index.html: VStateless_string_object speicalized light            cord/cordbscs.c/CORD_cat bug [were: CORD__extend_path bug?
           version of VStateless_object  
             Thanks for the bug report and patch.
         * src/classes/op.C: ^throw comment param made optional  
             I hadn't looked at this code in a while.  Reading it now, it
         * src/types/pa_valiased.C, src/types/pa_valiased.h,            seems to me that the tests should also be ">= MAX_DEPTH" to
           src/types/pa_vclass.h, src/types/pa_vobject.h,            comply with the invariant, though that may not matter a lot.  I
           src/types/pa_wcontext.C, www/htdocs/index.html: VAliased get/set            changed that, too.
           alias now virtual and implemented down in VClass, fclass_alias  
           removed,            Hans
   
         * src/types/pa_value.C: forced to cut that from .h because of  2003-04-07  paf
           VStateless_class usage [undefined in .h]  
           * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
         * src/include/pa_opcode.h, src/main/compile.tab.C,            merged from head:safe mode error message now includes numbers
           src/main/compile.y, src/main/compile_tools.C,  
           src/main/compile_tools.h, src/main/execute.C,          * src/main/execute.C: n-th attempt to make a=a work with double.
           src/main/pa_request.C, src/types/pa_vmethod_frame.h,            problem: as_double returns it's result in fp-register compiler
           www/htdocs/index.html: OP_GET_METHOD_FRAME merged with OP_CALL,            optimizes access to that register after b->as_double, and just
           VCodeFrame move to stack [no more heap waste on each CALL]            compares ALREADY_STORED_VALUE with prev-calculated a->as_double
             from memory.  _SAME_ double values do not match here.  when
         * src/classes/classes.h, src/classes/date.C, src/classes/double.C,            forced to REload fp-register, values do match.
           src/classes/file.C, src/classes/form.C, src/classes/hash.C,  
           src/classes/image.C, src/classes/int.C, src/classes/mail.C,            tried to make them volatile.
           src/classes/math.C, src/classes/op.C, src/classes/response.C,  
           src/classes/string.C, src/classes/table.C, src/classes/void.C,          * src/main/execute.C: n-th attempt to make a=a work with double.
           src/classes/xnode.C, src/include/pa_globals.h,            problem: as_double returns it's result in fp-register compiler
           src/include/pa_request.h, src/main/execute.C,            optimizes access to that register after b->as_double, and just
           src/main/pa_globals.C, src/main/pa_request.C,            compares ALREADY_STORED_VALUE with prev-calculated a->as_double
           src/types/Makefile.am, src/types/pa_value.h,            from memory.  _SAME_ double values do not match here.  when
           src/types/pa_vdouble.h, src/types/pa_vform.C,            forced to REload fp-register, values do match.
           src/types/pa_vhash.h, src/types/pa_vint.h, src/types/pa_vmath.h,  
           src/types/pa_vmethod_frame.h, src/types/pa_vstateless_class.h,            tried to make them volatile.
           src/types/pa_wcontext.C, src/types/pa_wcontext.h,  
           src/types/pa_wwrapper.h, src/types/types.dsp,          * src/types/pa_vobject.h: small style change
           www/htdocs/index.html: removed Value::fname  
           * src/: lib/cord/cordbscs.c, include/pa_string.h: CORD_cat bugfix
 2002-04-17  paf  
           * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C: safe
         * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,            mode error message now includes numbers
           doc/ClassExample3.dox, doc/compiler.dox, doc/module.dox,  
           doc/pooled.dox, doc/string.dox, doc/targets.dox,          * src/: main/untaint.C, targets/cgi/parser3.C: unknown untaint lang
           include/pa_pool.h, include/pa_types.h: dox updated to current            now causes death
           state, PTHROW freshen to throw & co  
   2003-04-04  paf
         * src/types/pa_vhash.h: vstring wrong parent fixed  
           * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C:
         * src/classes/op.C: taint local result var bug fixed            incorportated pa_exec patch by From: "Victor Fedoseev"
             <vvf_ru@mail.ru> To: "Alexandr Petrosian (PAF)" <PAF@design.ru>
 2002-04-16  paf            Sent: Thursday, January 23, 2003 9:14 AM
   
         * asm.txt, form.txt, lang.txt, sql.txt: removed outdated. see in            huge speedup on ^file::cgi with big result
           Attic asm.txt as most interesting  
           * src/classes/table.C: sort table with 0 rows bug fixed
         * src/main/pa_request.C, src/targets/isapi/parser3isapi.C,  
           www/htdocs/index.html: removed check, preventing content-length:          * src/types/pa_vhash.h: $hash._default showed in foreach & co bug
           0 from appearing            fix http://i2/tasks/edit/?id=4493701604654042676
   
         * src/main/execute.C, www/htdocs/index.html: $result in @main now            @main[] $with_default[  $.a[1]  $._default[default from
           taken into account as in usual functions            with_default] ] ^show[$with_default]
   
         * src/doc/postbuild.txt, src/main/execute.C, www/htdocs/index.html:            $to_add_to[     $.b[2] ] ^to_add_to.add[$with_default]
           $result in @postprocess & @unhandled_exception now taken into            =$to_add_to.xxx=<br>
           account as in usual functions  
             ^show[$to_add_to]
         * src/doc/postbuild.txt: instructions on post .html build  
             $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
         * src/doc/: doxygen.cfg, html2chm.cmd: .chm file only now, no .chi            ^show[$cloned]
   
         * src/classes/file.C, src/main/pa_exec.C, www/htdocs/index.html:            @show[hash] ^hash.foreach[k;v]{         $k = $v <br>
           stderr of execs mark as tainted  
             }  <hr>
         * src/main/pa_request.C: uri in error log  
           * src/classes/hash.C: $hash._default showed in foreach & co bug fix
         * src/: classes/date.C, main/compile.tab.C, targets/cgi/parser3.C:            http://i2/tasks/edit/?id=4493701604654042676
           cheched date:create(days) param for validity [later were assumed  
           valid and crashed on invalid onces]            @main[] $with_default[  $.a[1]  $._default[default from
             with_default] ] ^show[$with_default]
         * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,  
           main/execute.C, targets/cgi/parser3.C: OP_CALL -> OP_CALL__WRITE            $to_add_to[     $.b[2] ] ^to_add_to.add[$with_default]
           and used that for removing VString wrapper            =$to_add_to.xxx=<br>
   
         * src/classes/op.C: exception2vhash file now tainted            ^show[$to_add_to]
   
         * src/classes/op.C: _process pseudo origin copied from local var to            $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
           heap            ^show[$cloned]
   
         * src/classes/op.C, www/htdocs/auto.p: extra check on empty file in            @show[hash] ^hash.foreach[k;v]{         $k = $v <br>
           origin in _execute  
             }  <hr>
 2002-04-15  paf  
           * src/types/pa_vmail.C: mail receive: .txt attachemnts bug fix
         * src/: main/execute.C, types/pa_value.h: fixed name update            http://i2/tasks/edit/?id=4507350336410850921
   
         * src/classes/: file.C, op.C, table.C: finished dual write_xxx_lang          * src/classes/xdoc.C: memory allocation func bugfix
           functions            http://i2/tasks/edit/?id=4499303470368629745
   
         * src/: classes/file.C, classes/hash.C, classes/op.C,          * src/classes/math.C: allowed random 1...
           include/pa_request.h, main/execute.C, types/pa_wcontext.h:  
           started dual write_xxx_lang functions, if checked & works          * src/classes/math.C: allowed random 0..
   
         * src/: classes/date.C, classes/file.C, classes/mail.C,          * src/main/pa_globals.C: exif mem leak
           classes/string.C, classes/xnode.C, include/pa_request.h,            http://i2/tasks/edit/?id=4480590323629807263
           types/pa_value.h, types/pa_wcontext.h: removed absolutely  
           unnecessary VString shells          * src/: classes/classes.dsp, main/main.dsp,
             targets/cgi/parser3.dsp, types/pa_vmail.C, types/types.dsp: buf
         * src/main/execute.C: CodeFrame soul fixed [mistakenly killed by            fix http://i2/tasks/edit/?id=4493946731322521294
           prev changes]            $.to[billgates@microsoft.com BCc: send-spam-to@someemails.ru ]
   
         * src/: classes/image.C, classes/op.C, classes/string.C,          * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
           classes/table.C, include/pa_request.h, main/execute.C,            lib/pcre/pcre.dsp, main/compile.tab.C, main/main.dsp,
           types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:            main/pa_globals.C, targets/cgi/parser3.dsp, types/types.dsp:
           StringOrValue wcontext result, now ready for dual writes            links to xml libs made relative, no need to unpack parser3project
             to /parser3project.
         * src/targets/cgi/parser3.C: ctime sometimes can be just "",  
           checked that          * src/main/: compile.tab.C, compile.y, compile_tools.h: error
             column more precise - tab handling bug fixed
         * src/main/: compile.tab.C, compile.y, compile_tools.C,  
           compile_tools.h, execute.C: OP_GET_ELEMENT+OP_GET_ELEMENT__WRITE          * src/main/: compile.tab.C, compile.y: more understandable error
           changed to OP_WRITE_VALUE in var get cases            message in case @CLASS with more then one line inside
   
         * src/classes/op.C, src/include/pa_globals.h,          * src/targets/cgi/parser3.C: more understandable error message in
           src/include/pa_opcode.h, src/include/pa_request.h,            case of errors in @unhandled_exception
           src/main/compile.tab.C, src/main/compile.y,  
           src/main/compile_tools.C, src/main/compile_tools.h,  2003-04-03  paf
           src/main/execute.C, src/main/pa_globals.C, src/main/pa_request.C,  
           src/targets/cgi/parser3.C, www/htdocs/index.html: switch in hash          * INSTALL, src/include/pa_operation.h, src/include/pa_request.h,
           constructor fixed [were problems with using of stacked wwrapper            src/main/compile.tab.C, src/main/compile.y,
           after it's death]            src/main/compile_tools.C, src/main/compile_tools.h,
             src/main/execute.C, src/main/pa_request.C: debug info format
 2002-04-12  paf            simplified, now it's: OP_VALUE Operation::Origin << here value*
   
         * operators.txt, src/classes/table.C, www/htdocs/index.html:            higher limits:   file number (max: 255)   line number (max:
           table.select(expression) 0            64535)   column number (max: 255)
   
 2002-04-11  paf          * src/classes/math.C: top limit
   
         * src/: classes/string.C, include/pa_request.h, main/execute.C:          * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
           Request::process_internal codeFrame & wwrapper stacked [not            precise parse error position in case of
           wasting  heap anymore]  
             ^bug ]
 2002-04-10  paf  
           * src/classes/op.C, src/main/pa_request.C, tests/042.html: test 042
         * src/: classes/double.C, classes/file.C, classes/hash.C,            changed to realities, and passed [bug fixed]
           classes/image.C, classes/int.C, classes/math.C, classes/op.C,  
           classes/string.C, classes/table.C, classes/void.C,          * src/: classes/op.C, include/pa_request.h, main/compile.C,
           classes/xdoc.C, include/pa_request.h, main/execute.C,            main/compile.tab.C, main/compile.y, main/compile_tools.C,
           main/pa_string.C: killed Request::process() wrapping            main/compile_tools.h, main/pa_request.C: introducing
           VString(String) in case we need only String            ^process...[main-method-alias]
   
         * src/include/pa_string.h, src/main/pa_string.C,          * src/: classes/date.C, classes/image.C, classes/op.C,
           src/main/untaint.C, www/htdocs/index.html: killed 8 bytes from            classes/string.C, classes/table.C, classes/xdoc.C,
           String.head            types/pa_vmethod_frame.h: MethodParams& now [methods without
             params receive zero reference, but they are expected not to look
 2002-04-09  paf            there]
   
         * src/: main/compile.tab.C, targets/cgi/parser3.C,          * operators.txt, src/classes/date.C, src/classes/double.C,
           targets/isapi/parser3isapi.C: removed {   char *a;   {      /*sub            src/classes/file.C, src/classes/hash.C, src/classes/image.C,
           local*/char b[...];      a=b; situations            src/classes/int.C, src/classes/mail.C, src/classes/math.C,
             src/classes/memory.C, src/classes/op.C, src/classes/response.C,
         * operators.txt, src/classes/xdoc.C: xslt params made literal            src/classes/string.C, src/classes/table.C, src/classes/void.C,
             src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
         * src/classes/xdoc.C, www/htdocs/global.xsl, www/htdocs/index.html:            src/main/execute.C, src/types/pa_method.h: MethodParams& now
           xslt params fixed            [methods without params receive zero reference, but they are
             expected not to look there]
         * src/: main/pa_common.C, targets/cgi/parser3.C,  
           types/pa_vdouble.h, types/pa_vint.h: int/double get_string now          * operators.txt, src/classes/op.C, src/include/pa_request.h,
           not pool.malloc(MAX_NUMBER) but really neaded            src/main/pa_request.C, src/types/pa_vmethod_frame.h:
             ^process...[filename] useful for better error reporting
         * operators.txt, src/classes/double.C, src/classes/int.C,            [file/line/col]
           www/htdocs/global.xsl: int/double.int/double(default)  
           * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
 2002-04-04  paf            types/pa_vstring.h: slightly improved error messages text: 1. is
             '%s', it 2. method undefined in case of ^void[]
         * src/include/pa_string.h, src/main/pa_string.C,  
           www/htdocs/index.html: fixed string.replace [when reconstructing          * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
           pieces were split by max_integral(piece.size), thus some strings            include/pa_types.h, main/execute.C, main/pa_request.C: exception
           to replace happen to be split into two = not replaced)            handling done. now we have error columns todo: test it
   
         * src/targets/cgi/: parser3.C, parser3.dsp: document root in          * src/: classes/op.C, include/pa_request.h: removed from trace 'a'
           standalone version = current dir            exception when ^try{    ^throw[a;1] }{    ^throw[b;2] }
   
         * src/targets/cgi/parser3.C: document root in standalone version =            this makes life easier: were: bad stack order -- were in
           current dir            exception catch unwind order, which didn't match execution order
   
 2002-04-03  paf            @main[] ^try{   ^first[] }{     ^throw[c;3] }
   
         * configure, configure.in: more checks on nonexistent charset            @first[] ^throw[a;1]
   
         * INSTALL, configure, configure.in: root config configure options            showed throw a first throw b try
   
 2002-04-02  paf            which is no good
   
         * src/main/compile.C: parser.compile [exception name more like in          * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
           doc]            main/compile.tab.C, main/execute.C, main/pa_request.C: strack
             trace reset after handled exception [old bug fixed]
 2002-04-01  paf  
           * src/main/: compile.tab.C, compile.y: parse position old bug
         * src/: classes/mail.C, include/pa_string.h, main/untaint.C,            fixed.  position reporting made precise [both, in parse erros and
           targets/isapi/parser3isapi.dsp: mail subject encoding taken from            runtime errors]
           .content-type.charset, not .charset  
   2003-04-02  paf
 2002-03-29  paf  
           * src/: include/pa_operation.h, include/pa_request.h,
         * etc/parser3.charsets/koi8-r.cfg: koi8-r += ukranian letters            main/compile.C, main/compile.tab.C, main/compile.y,
             main/compile_tools.C, main/compile_tools.h, main/execute.C,
         * operators.txt, src/classes/date.C, www/htdocs/index.html:            main/pa_exception.C, main/pa_request.C: debug info: started
           ^date::create now may not supply day, default 1.  checked 29.03            using.  todo:complete
           -> 29.02 roll on non 366 days' year.  | 31.05->31.04   roll  
           * src/: classes/op.C, include/pa_operation.h, include/pa_request.h,
 2002-03-28  paf            main/compile.C, main/compile.tab.C, main/compile.y,
             main/compile_tools.C, main/compile_tools.h, main/execute.C,
         * operators.txt, src/classes/date.C, src/classes/op.C,            main/pa_request.C: prepared debug info todo:use it
           src/include/pa_globals.h, src/include/pa_hash.h,  
           src/main/pa_globals.C, src/types/pa_vdate.h,          * src/include/pa_operation.h: strange mistake fixed: forgot to
           www/htdocs/index.html: ^cache[file][date]{    ^cache(seconds)            return Operation class->union after switching from autoptrs.
           ^cache[date] }  
           * tests/: Makefile, results/108.processed, results/117.processed:
         * src/classes/: xdoc.C, xnode.C, xnode.h: removed redundant pool            meta considered OK [it's up to coder now to remove it not needed]
           param  
           * src/main/pa_dictionary.C, tests/Makefile: replace bug fix [broke
 2002-03-27  paf            Dictionary constructor when moved to gc]
   
         * operators.txt, src/classes/date.C, src/classes/double.C,          * src/main/pa_common.C: uncommented http:// file loading
           src/classes/file.C, src/classes/form.C, src/classes/hash.C,  
           src/classes/image.C, src/classes/int.C, src/classes/mail.C,          * src/include/pa_array.h, src/main/execute.C,
           src/classes/math.C, src/classes/op.C, src/classes/string.C,            src/targets/cgi/parser3.C, tests/run_parser.sh: gif encoder bug
           src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,            fix [gdGrowingBuf]
           src/classes/xnode.C, src/include/pa_exception.h,  
           src/include/pa_request.h, src/include/pa_stylesheet_connection.h,          * configure.in, src/lib/Makefile.am: removed patches
           src/main/compile.C, src/main/compile_tools.C, src/main/execute.C,  
           src/main/pa_array.C, src/main/pa_charset.C,          * configure, src/include/pa_config_auto.h.in,
           src/main/pa_charsets.C, src/main/pa_common.C,            src/main/pa_charset.C: --enable-assertions autoconf-ed
           src/main/pa_dictionary.C, src/main/pa_exception.C,  
           src/main/pa_exec.C, src/main/pa_pool.C, src/main/pa_request.C,          * src/main/pa_common.C: uncommented http:// file loading
           src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,  
           src/main/pa_string.C, src/main/pa_table.C, src/main/untaint.C,          * src/: classes/xdoc.C, types/pa_vxdoc.h: removed ref leak in
           src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,            xdoc::create/load
           src/types/pa_value.h, src/types/pa_vcookie.C,  
           src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vhash.h,          * src/: classes/form.C, classes/hash.C, classes/image.C,
           src/types/pa_vmethod_frame.h, src/types/pa_vstatus.C,            classes/string.C, classes/table.C, classes/void.C,
           src/types/pa_vtable.C, src/types/pa_vxdoc.h,            include/pa_common.h, main/pa_common.C, main/pa_request.C,
           src/types/pa_vxnode.h, src/types/pa_wcontext.C,            main/pa_sql_driver_manager.C, main/pa_string.C: all calls to
           src/types/pa_wwrapper.h, www/htdocs/index.html: assigned            String::String(str,helper_length) are checked.  found/fixed one
           exception types            place: $request:body now zero-terminated,
   
         * operators.txt, src/classes/op.C, src/include/pa_config_fixed.h,          * src/: classes/op.C, classes/table.C, include/pa_request.h,
           src/include/pa_request.h, src/main/execute.C,            main/compile_tools.C, main/execute.C, types/pa_value.h,
           src/main/pa_request.C: decided agains resetting exception_trace,            types/pa_vbool.h, types/pa_vclass.h, types/pa_vdate.h,
           just changed name            types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
             types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
 2002-03-26  paf            types/pa_vobject.C, types/pa_vobject.h, types/pa_vstring.h,
             types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
         * src/: include/pa_common.h, main/pa_exec.C: windows exec chdir            types/pa_vxnode.h: more locally scoped vars in execute (more
           fixed            easily optimizable)
   
         * src/classes/op.C, www/htdocs/index.html: forced language of          * src/: classes/table.C, include/pa_table.h, main/pa_table.C: few
           $source field of exception to 'tainted', so that sql-langed-frags            for(size_t i=0...) -> for(Array_iterator... i(..); i.has_next()
           could be outputed outside of connect  
           * src/: include/pa_array.h, include/pa_stack.h,
         * operators.txt: removed date.roll limit of +-1 offset            include/pa_string.h, main/compile_tools.C, main/main.dsp,
             main/pa_table.C, types/pa_vmethod_frame.C: array get/put check
         * src/classes/date.C, www/htdocs/index.html: removed date.roll            become assertion iterator in methodframe filler
           limit of +-1 offset  
           * src/: include/pa_array.h, include/pa_stack.h, main/main.dsp,
         * operators.txt, src/classes/date.C, www/htdocs/index.html: fixed            targets/cgi/parser3.C: array::get/put inlined
           date roll on daylightsaving days mktime took into account  
           tm_isdst flag, which remained from BEFORE roll, but should have          * src/: lib/cord/cordbscs.c, main/pa_globals.C: globals.c:
           been reset            gc_substitute_memory_management_functions +installed CORD_oom
             function
 2002-03-25  paf  
           * configure.in, src/classes/xnode.C, src/include/pa_config_fixed.h,
         * operators.txt, src/targets/cgi/parser3.C:            src/include/pa_config_includes.h, src/include/pa_string.h,
           http_site_config_filespec            src/lib/cord/cordbscs.c, src/main/pa_memory.C,
             src/targets/cgi/parser3.C: converted debug hacks to ANSI
         * src/: classes/file.C, classes/mail.C, include/pa_exec.h,            assertions started configure.in --enable-assertions
           main/pa_exec.C: f(!forced_allow) to allow --with-sendmail to work  
           with any/both --disable-foreign-group-files --disable-execs  2003-04-01  paf
   
         * INSTALL: "--with=sendmail=COMMAND" comment          * src/: classes/xdoc.C, classes/xnode.h, include/pa_memory.h,
             main/pa_memory.C, targets/cgi/parser3.C, types/pa_vxdoc.h,
         * INSTALL, configure, configure.in, src/classes/mail.C,            types/pa_vxnode.C, types/pa_vxnode.h: memory bug debugged down:
           src/include/pa_config_auto.h.in, src/main/pa_exec.C,            gdome uses glib memory, and stores last pointer to xmlDoc there,
           src/targets/cgi/Makefile.am: --disable-foreign-group-files now            gc misses that and collects valid memory fixed by remembering
           disables execs also.  introducing --sendmail            xmlDoc from dom object in xdoc.  todo: do something with
             premature free of xdoc with xnodes/node values referring into it
         * operators.txt: pgsql options comment  
           * src/classes/: mail.C: typo fix
         * INSTALL: comment on --disable-link-stdcpp  
           * src/main/pa_memory.C: bug() to set bpt in (memory.c) some .am
         * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:            changes
           libstdc++ link skipping configure option  
           * src/: include/pa_memory.h, main/pa_common.C, main/pa_globals.C,
         * src/: classes/op.C, include/pa_sql_connection.h: sql connection            main/pa_memory.C: moved memory debugging to global level: to
           with error were put to cache with 'marked_to_rollback' flag, all            pa_gc_malloc
           consequent even OK requests rolled back  
           * src/: main/pa_globals.C, targets/cgi/parser3.C: xml memory
 2002-03-22  paf            debugging showed no errors. todo: debug parser memory
   
         * src/main/pa_exec.C: createprocess nowindow flag check on readfile          * src/targets/cgi/: parser3.C, parser3.dsp: more build
           false return            configurations
   
         * operators.txt: few comments on sets          * src/: classes/classes.dsp, include/pa_config_fixed.h,
             main/compile.tab.C, main/main.dsp, main/pa_globals.C,
 2002-03-18  paf            targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
             types/types.dsp: prepared xml-static configuration
         * operators.txt, src/classes/op.C, src/include/pa_exception.h,  
           src/include/pa_globals.h, src/include/pa_request.h,  2003-03-31  paf
           src/include/pa_stack.h, src/main/pa_globals.C,  
           src/main/pa_request.C, www/htdocs/index.html: introducing ^try          * INSTALL, src/classes/xdoc.C, src/main/pa_globals.C,
             src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp: started
         * src/: main/pa_charset.C, targets/isapi/pa_threads.C,            xml lib memory debugging, simple checks failed: it seems that
           types/pa_vdouble.h: removed some tested @tests            library does realloc(bad ptr), and recording those ptrs in heap
             [for debugging] was bad: heap situation changes = everything
 2002-03-15  paf            works fine
   
         * operators.txt, src/classes/table.C, www/htdocs/index.html:          * src/: main/pa_charset.C, include/pa_charset.h: worked around
           ^table.locate(logical expr)            xmlRegisterCharEncodingHandler limitation [currently imposed
             limit of 10 user-defined charsets]
 2002-03-13  paf  
   2003-03-28  paf
         * src/main/pa_exception.C: checked not-pooled malloc  
           * src/main/execute.C: execution stack copied to local register
 2002-03-11  paf            variable, removed lots [~2e7) of memory accesses
   
         * INSTALL, configure, configure.in,  2003-03-27  paf
           src/include/pa_config_auto.h.in: --disable-foreign-group-files  
           * src/: classes/xdoc.C, main/pa_globals.C: XML memory funcs to GC
         * src/main/pa_common.C: --disable-foreign-group-files            works in debug, but fails in release todo: fix that
   
         * INSTALL, www/htdocs/index.html: --disable-execs          * src/: classes/xdoc.C, main/compile.tab.C, main/pa_globals.C,
             targets/cgi/parser3.C: forgot to merge XML memory funcs
         * src/main/pa_exec.C, www/htdocs/index.html: --disable-execs            replacement from gc branch
   
         * configure, configure.in, src/include/pa_config_auto.h.in:          * src/main/pa_exec.C: introducing append_help_length [radical
           --disable-execs            improvement here]
   
         * src/include/pa_config_fixed.h, src/main/pa_exec.C,          * src/targets/cgi/parser3.C: GC_java_finalization turned off [was
           www/htdocs/index.html: --disable-execs            'not recommened' in gc.h, on win32 noticed no difference]
   
         * src/types/pa_vfile.C: $file.text now 0A linebreaks,          * src/include/pa_array.h: returned checked array get [were disabled
           file::exec/cgi linebreaks "0D0A" changed to 0A onces            for debugging] result:not slower [don't understand that, it were
             INLINED] todo: find out a way of inlining it!
 2002-03-05  paf  
           * src/: include/pa_string.h, lib/gc/include/gc.h,
         * operators.txt, src/classes/date.C: date week calendar columns            lib/gc/include/gc_fake.h, main/compile.tab.C,
           named            targets/cgi/parser3.C, main/pa_memory.C, targets/cgi/parser3.dsp:
             convention changed: all resulting strings are zero-terminated
         * operators.txt, src/classes/date.C: date week calendar columns  
           named          * src/: classes/date.C, classes/file.C, classes/hash.C,
             classes/string.C, classes/table.C, classes/void.C,
         * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: iis5 now            include/pa_string.h, lib/cord/cord.dsp, lib/cord/cordbscs.c,
           requires headers to be terminated with \r\n manually [refuses to            lib/cord/include/cord.h, main/compile.tab.C, main/compile.y,
           separate header/body itself]            main/compile_tools.h, main/pa_common.C, main/pa_exec.C,
             main/pa_request.C, main/pa_string.C, main/pa_uue.C,
         * src/main/pa_globals.C, src/targets/cgi/parser3.C,            sql/pa_sql_driver.h, types/pa_value.C, types/pa_venv.h,
           src/targets/isapi/parser3isapi.C, www/htdocs/index.html: isapi            types/pa_vfile.C, types/pa_vmail.C: introducing
           site config beside .dll            append_help_length [radical improvement here]
   
 2002-03-04  paf          * src/: classes/memory.C, include/pa_array.h, include/pa_hash.h,
             include/pa_memory.h, lib/cord/cord.dsp, lib/cord/cordxtra.c,
         * src/classes/op.C, src/types/pa_vfile.C, www/htdocs/index.html:            lib/gc/include/gc.h, main/pa_memory.C, targets/cgi/parser3.C,
           process body now evaluated in PASS language            targets/cgi/parser3.dsp, types/pa_vstatus.C: disabled gc, become
             even slower
         * src/: classes/op.C, include/pa_string.h, main/pa_string.C: string  
           deserialize checks on broken file          * src/: classes/string.C, classes/table.C, include/pa_array.h,
             include/pa_stack.h, include/pa_string.h, main/compile_tools.C,
         * src/targets/isapi/: pa_threads.C, parser3isapi.C,            main/pa_string.C, main/untaint.C, types/pa_vmethod_frame.C: fixed
           parser3isapi.dsp: isapi updated            clients of &get(): most to use non-ref version, some[in tight
             places] to get_unchecked_ref
 2002-03-01  paf  
           * src/doc/memory.dox: forgot to add
         * src/main/pa_exec.C: execle -> execve, now argc OK  
           * src/: classes/classes.dsp, classes/memory.C, classes/xdoc.C,
 2002-02-28  paf            include/pa_array.h, include/pa_request.h, include/pa_stack.h,
             include/pa_string.h, lib/cord/cord.dsp, lib/ltdl/libltdl.dsp,
         * src/main/untaint.C: removed some debug comments            lib/md5/md5.dsp, lib/pcre/pcre.dsp, main/compile.tab.C,
             main/compile.y, main/compile_tools.C, main/compile_tools.h,
         * src/main/pa_charsets.C: when placing charset to cache using            main/main.dsp, main/pa_string.C, targets/cgi/parser3.C,
           global name now [were request]            targets/cgi/parser3.dsp, types/pa_vmail.C,
             types/pa_vmethod_frame.C, types/types.dsp: Array::put(index,
         * configure, configure.in: apache module updated            T>>&<< removed after Stack::pop wiping removed [moved to separate
             func] other Array & removed
         * www/htdocs/auto.p: apache module updated  
   2003-03-26  paf
         * src/main/pa_string.C: origin by first piece preferred before last  
           piece          * src/: classes/classes.dsp, classes/file.C, classes/op.C,
             classes/table.C, include/pa_array.h, include/pa_charset.h,
 2002-02-27  paf            include/pa_stack.h, include/pa_string.h, include/pa_table.h,
             lib/cord/cord.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
         * src/main/pa_charset.C: size_t            lib/pcre/pcre.dsp, main/compile.tab.C, main/compile.y,
             main/main.dsp, main/pa_charset.C, main/pa_common.C,
         * INSTALL: shared/static-xml with-pathlink            main/pa_exec.C, main/pa_sql_driver_manager.C,
             main/pa_stylesheet_manager.C, main/pa_table.C,
         * operators.txt: SMTP comment            targets/cgi/parser3.C, targets/cgi/parser3.dsp,
             types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
 2002-02-26  paf            types/pa_vobject.C, types/pa_vobject.h, types/types.dsp:
             pre-evaluated .count() in some places
         * src/main/pa_exec.C: more precise names for vars, cosmetic  
           * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
         * src/classes/xnode.C, www/htdocs/auto.p, www/htdocs/global.xsl,            lib/pcre/pcre.dsp, main/main.dsp, targets/cgi/parser3.dsp,
           www/htdocs/index.html: in some situation, xpath query returned            types/types.dsp: .dsp profiling updated
           result with type NODESET, but empty nodeset member field, checked  
           that          * src/: classes/classes.dsp, lib/cord/cord.dsp,
             lib/ltdl/libltdl.dsp, lib/md5/md5.dsp, main/main.dsp,
 2002-02-22  paf            targets/cgi/parser3.dsp, types/types.dsp: started profiling
   
         * INSTALL: without-zlib comment          * src/: classes/classes.dsp, lib/cord/cord.dsp, main/compile.tab.C,
             main/compile_tools.h, main/main.dsp, targets/cgi/parser3.dsp,
         * etc/parser3.charsets/windows-1251.cfg: &deg;            targets/isapi/parser3isapi.dsp, types/types.dsp: .dsp updated to
             use lib/gc,lib/cord
         * configure, configure.in: glib###.a detection fixed  
           * acsite.m4, src/classes/Makefile.am, src/classes/mail.C,
         * INSTALL: hashfile removed from INSTALL            src/classes/math.C, src/classes/op.C, src/include/pa_common.h,
             src/include/pa_config_auto.h.in, src/include/pa_config_fixed.h,
         * Makefile.am: make update            src/include/pa_config_includes.h, src/include/pa_request.h,
             src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
         * src/main/pa_string.C: string iterators fixed again, so were            src/include/pa_stylesheet_connection.h, src/include/pa_version.h,
           String::join_chain            src/lib/Makefile.am, src/lib/cord/Makefile.am,
             src/lib/cord/include/Makefile.am,
         * src/main/pa_string.C: string iterators fixed again, so were            src/lib/cord/include/private/Makefile.am, src/main/Makefile.am,
           String::join_chain            src/main/pa_exec.C, src/main/pa_string.C, src/main/untaint.C,
             src/targets/cgi/Makefile.am, src/types/Makefile.am,
         * src/include/pa_string.h, src/main/pa_string.C, www/htdocs/auto.p,            src/types/pa_vclass.h, src/types/pa_vcookie.h,
           www/htdocs/index.html: string iterators fixed again, so were            src/types/pa_vform.h, src/types/pa_vhash.h,
           String::join_chain            src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.h,
             src/types/pa_vresponse.h, src/types/pa_vstateless_class.h,
         * src/types/pa_vcookie.C: cookie "expires=0" =  "session"            src/types/pa_vstatus.C, src/types/pa_vstatus.h,
             src/types/pa_vtable.h, src/types/pa_vxdoc.h: configured math
         * operators.txt, src/types/pa_vcookie.C: cookie "expires=0" =            funcs ported pa_exec
           "session"  
           * src/lib/: cord/include/gc.h, gc/include/gc.h: introducing lib/gc
         * configure, configure.in, src/include/pa_config_auto.h.in:  
           --with-shared-xml --with-static-xml          * src/lib/cord/include/: cord.h, ec.h, gc.h, private/cord_pos.h:
             bundled gc includes
         * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,  
           targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,          * src/: classes/op.C, include/pa_array.h,
           types/types.dsp: *.dsp: removed refereces to win32db & ancient            include/pa_sql_connection.h, include/pa_string.h,
           xalan&xml            include/pa_version.h, main/compile.tab.C, main/compile.y,
             main/execute.C, main/pa_common.C, main/pa_exception.C,
         * acconfig.h: acconfig move in cvs[from src/libltdl to /]            main/pa_request.C, main/pa_string.C, targets/cgi/parser3.C,
             targets/cgi/parser3.dsp: a number of bugfixes [while testing
         * operators.txt, src/classes/classes.dsp, src/main/main.dsp,            first real site (aval)]
           src/types/types.dsp: removed hashfile support from sources for  
           now  2003-03-25  paf
   
         * configure, configure.in, src/classes/Makefile.am,          * operators.txt, src/main/pa_sql_driver_manager.C,
           src/classes/hashfile.C, src/include/Makefile.am,            src/types/pa_vstatus.C: $status.memory used free since_compact
           src/include/pa_config_auto.h.in, src/include/pa_db_connection.h,            process
           src/include/pa_db_manager.h, src/include/pa_db_table.h,  
           src/main/Makefile.am, src/main/pa_db_connection.C,          * src/: include/pa_sql_connection.h, main/pa_globals.C,
           src/main/pa_db_manager.C, src/main/pa_db_table.C,            main/untaint.C, sql/pa_sql_driver.h: untaint.C L_SQL
           src/main/pa_globals.C, src/targets/cgi/Makefile.am,  
           src/types/Makefile.am, src/types/pa_vhashfile.C,          * src/main/: pa_charset.C, untaint.C: untaint.C L_MAIL_HEADER
           src/types/pa_vhashfile.h: removed hashfile support for now  
           * src/main/pa_request.C, src/main/untaint.C, src/types/pa_value.C,
 2002-02-21  paf            src/types/pa_value.h, src/types/pa_vfile.h,
             src/types/pa_vobject.C, src/types/pa_vobject.h,
         * src/main/untaint.C: removed debug code, activated commented-for            src/types/pa_vstring.C, src/types/pa_vstring.h, tests/121.html,
           debug parts            tests/results/121.processed: untaint.C L_URI
   
         * Makefile.am: make cvsupdate          * operators.txt, src/classes/Makefile.am, src/classes/classes.dsp,
             src/classes/op.C, src/main/pa_request.C, src/types/Makefile.am,
         * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,            src/types/pa_venv.h, src/types/types.dsp, src/classes/memory.C,
           main/untaint.C: STRING_*FOREACH_ROW changed to stop at            src/types/pa_vmemory.h: ^memory:compact[]
           append_row, not at link zero now string to string appending works  
           * tests/results/109.processed: it was a bug in parser. updated 109
 2002-02-20  paf            test result
   
         * src/include/pa_string.h, src/main/execute.C, src/main/untaint.C,          * src/classes/xdoc.C, tests/Makefile: fixed transform params2
           src/targets/cgi/pa_pool.C, src/targets/cgi/parser3.C,  
           www/htdocs/index.html: //#define DEBUG_STRING_APPENDS_VS_EXPANDS          * src/main/pa_charset.C, src/targets/cgi/parser3.C, tests/Makefile,
             tests/results/107.processed: fixed dom language [values are now
         * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:            considered tainted.  it was a bug in parser. updated 107 test
           economy: 22%            result
   
         * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:          * src/classes/xdoc.C: fixed transform params
           space uptimized: string::link_row removed  
           * src/: include/pa_stylesheet_manager.h,
         * src/include/pa_string.h, src/include/pa_stylesheet_connection.h,            main/pa_stylesheet_manager.C: fixed stylesheet caching
           src/main/pa_db_manager.C, src/main/pa_dictionary.C,  
           src/main/pa_string.C, src/main/untaint.C,          * src/: include/pa_memory.h, main/pa_charset.C: memory: new 'new'
           src/targets/cgi/parser3.C, src/types/pa_vcookie.C,            overloads for structure handling
           src/types/pa_vstring.h, www/htdocs/index.html: speed uptimized:  
           string::is_empty          * src/: classes/image.C, classes/xdoc.C, classes/xnode.C,
             include/pa_string.h, main/pa_string.C, types/pa_vxnode.C: removed
         * operators.txt, src/include/pa_common.h,            StringBody(0) ambiguilty, introducting static
           src/include/pa_config_fixed.h, src/include/pa_string.h,            StringBody::Format(int)
           src/include/pa_types.h, src/main/compile.tab.C,  
           src/main/execute.C, src/main/pa_string.C, src/main/untaint.C,          * src/: main/pa_request.C, types/pa_vxnode.C: vxnode compiled xml
           src/targets/cgi/pa_pool.C, src/targets/cgi/parser3.C,            linked
           www/htdocs/auto.p, www/htdocs/global.xsl, www/htdocs/index.html:  
           strign to string append optimiziation idea and estimates          * src/types/pa_vxdoc.C: vxdoc compiled
   
 2002-02-19  paf          * src/: classes/xnode.C, classes/xnode.h, include/pa_memory.h,
             types/pa_vxdoc.h, types/pa_vxnode.h: xnode.C compiled, doc/node
         * src/classes/math.C: not used directly [but erroreously reported            finalizers isntalled
           that 'is', thus registering twice&other probs]  
           * src/: classes/image.C, classes/xdoc.C, classes/xnode.h,
         * src/classes/: xdoc.C, xnode.C: getElementsByTagName and *NS moved            doc/exception.dox, doc/index.dox, include/pa_charset.h,
           to node [element]            include/pa_memory.h, include/pa_request.h, include/pa_string.h,
             main/pa_charset.C, main/pa_memory.C, main/pa_string.C: xdoc.C
         * src/main/compile.C: without string_origins parse error            compiled todo: xnode.C / finalizers
           file+line+col possible  
           * src/doc/string.dox: updated: new string internals
         * src/main/: compile.C: without string_origins not worked  
   2003-03-24  paf
 2002-02-18  paf  
           * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
         * src/types/pa_vdouble.h: since we have in_expression removed that            include/pa_charset.h, include/pa_config_fixed.h,
           trick i've installed into double::as_string            include/pa_request.h, include/pa_stylesheet_connection.h,
             include/pa_stylesheet_manager.h, main/pa_charset.C,
         * src/main/pa_globals.C: extern "C" was removed too fast            main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
             main/pa_stylesheet_manager.C, types/pa_vxdoc.h,
         * src/include/pa_opcode.h, src/include/pa_request.h,            types/pa_vxnode.h: started XML
           src/main/compile.tab.C, src/main/compile.y, src/main/execute.C,  
           src/types/pa_wcontext.h, www/htdocs/index.html: in_expression          * src/main/: pa_common.C, pa_sql_driver_manager.C: http://
           aimed to solve old problem with string/nonstring values, now in  
           expressions double/int values are passed as-is, without stupid          * src/: classes/file.C, classes/image.C, classes/mail.C,
           tostring/fromstring conversions            include/pa_string.h, main/pa_common.C,
             main/pa_sql_driver_manager.C: introducing string[body]::pos(char)
         * src/main/: main.dsp, pa_globals.C: removed unneded #ifdef  
           __cplusplus } #endif          * src/: classes/file.C, classes/image.C, classes/mail.C,
             include/pa_memory.h, include/pa_string.h, main/pa_common.C,
         * src/main/compile.tab.C: bison env set so one could compile            main/pa_request.C, main/pa_sql_driver_manager.C,
           without cygwin installed            types/pa_vimage.h: size_t pos everywhere checks changed to check
             for eq STRING_NOT_FOUND
         * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,  
           targets/cgi/parser3.dsp, types/types.dsp: win32xml now contains          * src/main/pa_string.C, src/main/untaint.C, tests/Makefile: string
           gnome xml libs parser .dsp-s changed accordingly            optimize bit implemented
   
         * operators.txt, src/targets/cgi/parser3.C: PARSER_ROOT_CONFIG          * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
             String::ArrayFragment::append_positions fixed
         * operators.txt, src/classes/date.C: date::create [were date::set,  
           with backward comp          * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
             String::this_starts fixed
         * src/classes/math.C, www/htdocs/index.html: math:random range  
           check fixed          * src/main/pa_string.C, tests/Makefile: string::pos fixed
   
         * src/main/compile.tab.C, src/main/compile.y,          * src/: include/pa_hash.h, main/execute.C, main/pa_string.C:
           www/htdocs/global.xsl, www/htdocs/index.html: integer  division            hashcode implemented fully, including per-char callback [it can
           stops name            be - substr CORD node]
   
         * INSTALL: local install comment          * src/: include/pa_array.h, main/compile.tab.C: gif encoding
             rewritten to rewalloc with 100byte buf ahead
         * ltconfig, ltmain.sh: removed libtool subpart files  
           * src/classes/image.C, src/classes/op.C, src/classes/table.C,
         * acinclude.m4, aclocal.m4, configure, configure.in,            src/include/pa_string.h, src/main/compile.tab.C,
           src/include/pa_config_auto.h.in,            src/main/compile.y, src/main/execute.C, src/main/pa_common.C,
           src/include/pa_config_includes.h, src/targets/cgi/Makefile.am,            src/main/untaint.C, tests/Makefile: attempt to do gif encoding to
           src/targets/cgi/parser3.C: removed libtool usage from build mech            CORD_ec [bad] would rewrite as realloc now
   
         * operators.txt: \ comment          * src/: classes/date.C, classes/file.C, classes/form.C,
             classes/image.C, classes/math.C, classes/op.C, classes/table.C,
 2002-02-13  paf            include/pa_cache_managers.h, include/pa_charsets.h,
             include/pa_common.h, include/pa_request.h,
         * src/include/pa_config_includes.h: sys/time time both included            include/pa_sql_driver_manager.h, include/pa_table.h,
           now.  vaguely remember confilicts on this on some system [not on            main/pa_charset.C, main/pa_exception.C, main/pa_exec.C,
           six|ablv] so when would see them again would think up proper            main/pa_globals.C, main/pa_request.C, main/pa_uue.C,
           check            targets/isapi/parser3isapi.C, types/pa_value.C, types/pa_value.h,
             types/pa_vmail.C, types/pa_vmethod_frame.C,
         * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:            types/pa_vstateless_class.h: 2*2 worked :)
           --with-glib-config CXXLINK=$(CC) for targets/cgi/parser3  
           * parser3.dsw, src/classes/date.C, src/classes/file.C,
         * src/main/pa_common.C: truncation never occured when writing files            src/include/pa_exec.h, src/include/pa_string.h,
           on unix [since i've changed cache mech] fix            src/main/pa_exec.C, src/main/pa_sql_driver_manager.C: empty run
             passed OK
         * src/main/pa_common.C: strnchr: sanity check added  
           * src/: classes/hash.C, classes/string.C, classes/table.C,
         * etc/parser3.charsets/windows-1257.cfg: id added            types/pa_value.C: all linked todo: debug
   
         * etc/parser3.charsets/windows-1257.cfg, src/targets/cgi/parser3.C:          * src/: classes/mail.C, main/pa_request.C, targets/cgi/parser3.C,
           baltic charset file generated, in generation script ispunct check            types/pa_vstateless_class.C: all compiled.  todo:link
           added  
           * src/types/pa_wcontext.C: pa_wcontext.C compiled
 2002-02-08  paf  
           * src/types/pa_vtable.C: pa_vtable.C compiled
         * src/: include/Makefile.am, sql/Makefile.am,  
           targets/isapi/Makefile.am: forgotten makes          * src/types/pa_vstring.C: pa_vstring.C compiled
   
         * src/types/: pa_vcookie.C: VCookie::fill_fields one check          * src/types/pa_vstatus.C: pa_vstatus.C compiled
           forgotten  
           * src/types/: pa_vmath.C, pa_vmethod_frame.C, pa_vmethod_frame.h,
         * src/types/pa_vcookie.C: VCookie::fill_fields one check forgotten            pa_vobject.C, pa_vrequest.C, pa_vresponse.C,
             pa_vstateless_class.C, pa_vstateless_class.h:
         * INSTALL, README: install&others updated            pa_vstateless_class.C compiled
   
         * AUTHORS, COPYING, ChangeLog, INSTALL: install&others updated          * src/: classes/xdoc.C, types/pa_vmail.C, types/pa_vmail.h,
             types/pa_vmath.C: pa_vmail.C compiled
         * Makefile.am, configure, configure.in,  
           etc/parser3.charsets/Makefile.am, src/Makefile.am,          * src/types/: pa_vhash.C, pa_vimage.C: pa_vimage.C compiled
           src/classes/Makefile.am, src/main/Makefile.am,  
           src/main/pa_status_provider.C, src/targets/Makefile.am,          * src/types/pa_vform.C: pa_vform.C compiled
           src/targets/cgi/Makefile.am, src/types/Makefile.am: 'make dist'  
           works          * src/types/pa_vfile.C: pa_vfile.C compiled
   
         * src/: classes/classes.C, classes/classes.h, classes/date.C,          * src/types/: pa_value.h, pa_vclass.C, pa_vcookie.C,
           classes/double.C, classes/file.C, classes/form.C, classes/hash.C,            pa_vstateless_class.C: pa_vcookie.C compiled
           classes/hashfile.C, classes/int.C, classes/mail.C,  
           classes/math.C, classes/op.C, classes/response.C,          * src/: classes/string.C, types/pa_value.C, types/pa_value.h,
           classes/string.C, classes/table.C, classes/void.C,            types/pa_vhash.h: pa_value.C compiled
           classes/xdoc.C, classes/xnode.C, classes/xnode.h,  
           include/pa_array.h, include/pa_cache_managers.h,          * src/: main/execute.C, main/pa_string.C, types/pa_wcontext.h:
           include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,            classes.lib main.lib compiled
           include/pa_config_fixed.h, include/pa_config_includes.h,  
           include/pa_db_connection.h, include/pa_db_manager.h,          * src/classes/void.C: void.C compiled
           include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,  
           include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,          * src/: classes/string.C, classes/table.C, include/pa_string.h,
           include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,            main/pa_string.C, types/pa_vtable.C, types/pa_vtable.h: table.C
           include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,            compiled
           include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,  
           include/pa_sql_connection.h, include/pa_sql_driver_manager.h,          * src/: classes/string.C, include/pa_request.h,
           include/pa_stack.h, include/pa_string.h,            include/pa_string.h, main/pa_string.C: string.C compiled
           include/pa_stylesheet_connection.h,  
           include/pa_stylesheet_manager.h, include/pa_table.h,          * src/: classes/op.C, classes/string.C, classes/table.C,
           include/pa_threads.h, include/pa_types.h, main/compile.C,            classes/void.C, include/pa_sql_connection.h, include/pa_string.h,
           main/compile_tools.C, main/compile_tools.h, main/execute.C,            main/pa_request.C, main/pa_string.C: op.C compiled
           main/pa_array.C, main/pa_cache_managers.C, main/pa_charsets.C,  
           main/pa_db_connection.C, main/pa_db_manager.C,          * src/classes/: math.C, op.C: math.C compiled
           main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,  
           main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,          * src/: classes/mail.C, classes/string.C, classes/table.C,
           main/pa_pool.C, main/pa_request.C, main/pa_socks.C,            types/pa_vmail.h: mail.C compiled
           main/pa_sql_driver_manager.C, main/pa_status_provider.C,  
           main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,          * src/classes/: int.C, table.C: int.C compiled
           sql/pa_sql_driver.h, targets/cgi/pa_pool.C,  
           targets/cgi/pa_threads.C, targets/cgi/pool_storage.h,          * src/: classes/hash.C, classes/image.C, classes/string.C,
           targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,            classes/table.C, include/pa_memory.h, include/pa_string.h,
           targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,            main/pa_memory.C, types/pa_vimage.h, types/pa_vmail.C: image.C
           types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,            compiled
           types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,  
           types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,          * src/: classes/hash.C, classes/string.C, classes/table.C,
           types/pa_venv.h, types/pa_vfile.h, types/pa_vform.h,            classes/void.C, classes/xdoc.C, include/pa_request.h,
           types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.h,            include/pa_sql_connection.h: hash.C compiled
           types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,  
           types/pa_vmethod_frame.h, types/pa_vobject.h,          * src/: classes/classes.C, classes/classes.awk, classes/classes.h,
           types/pa_vrequest.h, types/pa_vresponse.h,            classes/date.C, classes/double.C, classes/file.C, classes/form.C,
           types/pa_vstateless_class.C, types/pa_vstateless_class.h,            classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
           types/pa_vstateless_object.h, types/pa_vstatus.C,            classes/math.C, classes/op.C, classes/response.C,
           types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,            classes/string.C, classes/table.C, classes/void.C,
           types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,            classes/xdoc.C, classes/xnode.C, include/pa_memory.h,
           types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h,            include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
           classes/image.C, main/pa_common.C, main/pa_exec.C,            main/pa_string.C, types/pa_vdate.h, types/pa_vmethod_frame.h:
           main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,            file.C table.C compiled
           types/pa_vfile.C, types/pa_vform.C, types/pa_vhashfile.C,  
           types/pa_vimage.C, types/pa_vrequest.C, types/pa_vresponse.C,          * src/: include/pa_string.h, main/pa_string.C, main/pa_uue.C,
           types/pa_vstring.C, types/pa_vtable.C, types/pa_vxdoc.C,            main/untaint.C: main.lib compiled
           types/pa_vxnode.C, main/pa_charset.C: name spelling  
   2003-03-21  paf
         * src/: classes/classes.C, classes/classes.h, classes/date.C,  
           classes/double.C, classes/file.C, classes/form.C, classes/hash.C,          * src/: classes/op.C, include/pa_cache_managers.h,
           classes/hashfile.C, classes/image.C, classes/int.C,            include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
           classes/mail.C, classes/math.C, classes/op.C, classes/response.C,            include/pa_stylesheet_manager.h, main/pa_exception.C,
           classes/string.C, classes/table.C, classes/void.C,            main/pa_globals.C, main/pa_sql_driver_manager.C,
           classes/xdoc.C, classes/xnode.C, classes/xnode.h,            sql/pa_sql_driver.h, types/pa_vimage.C: pa_sql_driver_manager.C
           include/pa_array.h, include/pa_cache_managers.h,            compiled
           include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,  
           include/pa_config_fixed.h, include/pa_config_includes.h,          * src/: classes/hash.C, classes/image.C, classes/op.C,
           include/pa_db_connection.h, include/pa_db_manager.h,            classes/xdoc.C, classes/xnode.C, include/pa_common.h,
           include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,            include/pa_hash.h, include/pa_request.h, include/pa_string.h,
           include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,            main/compile.C, main/pa_common.C, main/pa_request.C,
           include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,            types/pa_vmail.C, types/pa_vresponse.C, types/pa_vxnode.C:
           include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,            pa_request.C compiled
           include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,  
           include/pa_sql_connection.h, include/pa_sql_driver_manager.h,          * src/: classes/hash.C, classes/mail.C, classes/op.C,
           include/pa_stack.h, include/pa_string.h,            include/pa_request.h, main/execute.C, main/pa_request.C,
           include/pa_stylesheet_connection.h,            types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
           include/pa_stylesheet_manager.h, include/pa_table.h,            types/pa_vhash.h, types/pa_vimage.C, types/pa_vmethod_frame.h,
           include/pa_threads.h, include/pa_types.h, main/compile.C,            types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
           main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,            types/pa_vresponse.h, types/pa_vtable.C: pa_request.C 50%
           main/execute.C, main/pa_array.C, main/pa_cache_managers.C,            compiled
           main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,  
           main/pa_db_connection.C, main/pa_db_manager.C,          * src/: include/pa_exec.h, include/pa_string.h, main/pa_exec.C,
           main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,            main/pa_string.C: pa_exec.C compiled [win32 only for now]  todo:
           main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,            on unix
           main/pa_hash.C, main/pa_pool.C, main/pa_request.C,  
           main/pa_socks.C, main/pa_sql_driver_manager.C,          * src/: include/pa_charset.h, include/pa_charsets.h,
           main/pa_status_provider.C, main/pa_string.C,            include/pa_exec.h, main/compile.tab.C, main/pa_charset.C,
           main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,            main/pa_charsets.C, main/pa_dictionary.C, main/pa_exec.C:
           sql/pa_sql_driver.h, targets/cgi/pa_pool.C,            pa_charsets.C compiled
           targets/cgi/pa_threads.C, targets/cgi/parser3.C,  
           targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,          * src/: classes/image.C, classes/mail.C, classes/op.C,
           targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,            include/pa_request.h, include/pa_string.h, main/compile.tab.C,
           targets/isapi/pool_storage.h, types/pa_valiased.C,            main/compile.y, main/execute.C, main/pa_common.C,
           types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,            main/pa_request.C, types/pa_junction.h, types/pa_method.h,
           types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,            types/pa_vcode_frame.h, types/pa_vimage.h,
           types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,            types/pa_vmethod_frame.h: execute.C compiled
           types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,  
           types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,          * src/: classes/classes.C, classes/classes.h, classes/date.C,
           types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,            classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
           types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,            classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
           types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,            classes/op.C, classes/string.C, classes/table.C, classes/void.C,
           types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,            classes/xdoc.C, classes/xnode.C, classes/xnode.h,
           types/pa_vresponse.h, types/pa_vstateless_class.C,            include/pa_cache_managers.h, include/pa_charsets.h,
           types/pa_vstateless_class.h, types/pa_vstateless_object.h,            include/pa_common.h, include/pa_exec.h, include/pa_memory.h,
           types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,            include/pa_operation.h, include/pa_request.h, include/pa_sapi.h,
           types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,            include/pa_sql_driver_manager.h, include/pa_string.h,
           types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,            include/pa_stylesheet_connection.h,
           types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,            include/pa_stylesheet_manager.h, include/pa_table.h,
           types/pa_wcontext.h, types/pa_wwrapper.h: 2002            main/compile.C, main/compile.tab.C, main/compile.y,
             main/compile_tools.C, main/compile_tools.h, main/execute.C,
 2002-02-07  paf            main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
             main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C,
         * src/main/pa_socks.C: swapped headers to avoid compiler warnings            main/pa_string.C, main/pa_stylesheet_manager.C, main/untaint.C,
             targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
         * configure, configure.in, src/include/pa_config_auto.h.in,            types/pa_junction.h, types/pa_method.h, types/pa_value.C,
           src/main/pa_common.C, src/main/pa_socks.C: compiled under cygwin            types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
           added yet another locking function: fcntl            types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
             types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
         * config.sub: on cygwin configure passes it with strange i1586            types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
           const, hacked it to mean i586            types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
             types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
         * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:            types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
           disabled $if reference due to conflicts with local variables            types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
             types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
         * operators.txt, src/classes/xdoc.C, src/include/pa_config_fixed.h:            types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
           xdoc::set obsolete now, now xdoc::create, with both sences            types/pa_vresponse.h, types/pa_vstateless_class.C,
             types/pa_vstateless_class.h, types/pa_vstateless_object.h,
         * operators.txt, src/classes/table.C, src/include/pa_array.h,            types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
           src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C,            types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
           www/htdocs/auto.p, www/htdocs/index.html: table::create now //            types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
           'set' name obsolete now table clone.            types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
             types/pa_wcontext.h, types/pa_wwrapper.h: introducing StringBody
         * operators.txt, src/classes/string.C,            [C++ CORD wrapper]
           src/include/pa_config_fixed.h, src/main/compile.tab.C:  
           ^int/double/string.format now can be called with normal []          * src/: lib/cord/cordbscs.c, main/pa_string.C: test14 [bug fixed]
           brackets, not stupid {} as it were implemented for some strange  
           reason.  retaining backward compatibility due to some          * src/: classes/file.C, include/pa_charset.h, main/pa_charset.C:
           already-implemented servers            $file::exec/cgi[script;    $.charset[this is script's charset]
   
         * src/: include/pa_array.h, main/compile.C, main/compile.tab.C,            command line, env values, input got transcoded before call
           main/compile.y, main/compile_tools.C, main/compile_tools.h:            stdout, stderr got transcoded after call
           operators now detected by check at name_without_curly_rdive_read  
           rule whether diving code constists only of          * src/classes/file.C: ^file::exec/cgi now does not pass post data
           OP_VALUE+string+OP_GET_ELEMENT.  and last op code substituted            by default.  use: ^file::exec[...;$.stdin[$request.body]
           with OP_GET_ELEMENT_OR_OPERATOR to form  
           OP_VALUE+string+OP_GET_ELEMENT_OR_OPERATOR.  code          * src/main/pa_common.C: } typo bug fix
   
 2002-02-06  paf          * src/main/pa_common.C: } typo bug fix
   
         * configure, configure.in: prefix expanded, grr  2003-03-20  paf
   
         * operators.txt, src/classes/mail.C: mail:send config changed          * src/: include/pa_string.h, lib/cord/cordbscs.c, main/pa_string.C,
             main/untaint.C: cord bug fix, but still errors todo: clear out
 2002-02-05  paf  
           * src/include/pa_string.h: more tests
         * operators.txt: regex options commented  
           * src/main/pa_string.C: string.pos fixed
         * src/main/: pa_exec.C: argv0 now correct  
           * src/lib/: ltdl/config_fixed.h, ltdl/configure, ltdl/configure.in,
         * src/types/pa_vstatus.C: status:rusage 3            ltdl/libltdl.dsp, ltdl/ltdl.c, ltdl/ltdl.h, pcre/dftables.c,
             pcre/get.c, pcre/internal.h, pcre/maketables.c, pcre/pcre.c,
         * src/types/pa_vstatus.C: status:rusage 2            pcre/pcre.h, pcre/pcre_parser_ctype.c, pcre/study.c: undone bad
             replaces
         * operators.txt: status:rusage described int operators  
           * src/: classes/image.C, include/pa_dictionary.h,
         * src/types/pa_vstatus.C: status:rusage 1            include/pa_string.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
             lib/pcre/internal.h, lib/pcre/pcre.c, lib/pcre/study.c,
         * configure.in, src/types/Makefile.am, src/types/pa_vstatus.h,            main/compile.tab.C, main/pa_dictionary.C, main/pa_string.C,
           src/types/types.dsp: status:rusage            main/untaint.C, types/pa_vmail.C: more tests [bugs fixed]
   
         * configure.in, operators.txt, src/classes/file.C,          * src/include/pa_string.h: warning
           src/classes/op.C, src/include/pa_common.h,  
           src/include/pa_config_includes.h, src/main/compile.tab.C,          * src/include/pa_string.h: this_starts fixed
           src/main/pa_common.C, www/htdocs/index.html: rewritten ^cache to  
           use non-blocking-exclusive-caches          * src/: include/pa_string.h, main/pa_string.C: added: assertion on
             new String ctor & append params convention
         * src/main/pa_common.C: text file read mode on win32 adjusted  
           [speed impact. was off for debugging purpose, but forgotten          * src/: classes/file.C, classes/hash.C, classes/image.C,
           afterwards]            classes/mail.C, classes/op.C, classes/string.C, classes/table.C,
             classes/xdoc.C, include/pa_common.h, include/pa_memory.h,
 2002-02-01  paf            include/pa_string.h, main/compile.tab.C, main/pa_common.C,
             main/pa_exception.C, main/pa_exec.C,
         * src/classes/op.C: file_write does EX lock after create, while            main/pa_sql_driver_manager.C, main/pa_string.C,
           file_read does SH after open, so there's a moment after create            main/pa_stylesheet_manager.C, main/untaint.C,
           but before EX lock when read can sneak into, and read            targets/isapi/parser3isapi.C, types/pa_vimage.C,
           just-created-for-writing-and-not-yet-locked file, added a check            types/pa_vmail.C: more tests OK
           for that in ^cache...read  
           * src/: include/pa_array.h, include/pa_hash.h, include/pa_memory.h,
 2002-01-31  paf            include/pa_string.h, main/pa_memory.C, main/pa_string.C: test:
             gc/exit runned OK
         * src/main/: compile.y, compile.tab.C: disabled operator call after  
           ^xxx:          * src/types/pa_vmail.C: another naming problem: should not name
             vars like that: unpredictable close caused problems with later
         * src/main/: compile.tab.C, execute.C: made operators lookup first            sending mail: Mar 20 06:39:53 pt-6 sendmail[19044]: File
           in ^xxx situation.  so that one could not do $if[1] ^if[xxx]            descriptors missing on startup: stdin; Bad file number
   
         * src/: include/pa_opcode.h, include/pa_request.h, main/compile.C,            todo: find out why so many filters(stream) here. probably wrong?
           main/compile.tab.C, main/compile.y, main/compile_tools.C,  
           main/compile_tools.h, main/execute.C, types/pa_wcontext.h:          * src/: include/pa_dictionary.h, include/pa_string.h,
           operators check 6.1 rewritten. now check is done at compile time            main/pa_common.C, main/pa_dictionary.C, main/pa_string.C,
             main/untaint.C: test compiled
         * src/main/execute.C: operators check 5 floated up old error of  
           staying in 'entered class/object' state after $a($a..) it          * src/: classes/image.C, classes/mail.C, classes/math.C,
           prevented operators from being called thereafter            classes/string.C, include/pa_dictionary.h, include/pa_hash.h,
             include/pa_memory.h, include/pa_string.h, lib/cord/cordbscs.c,
         * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,            lib/cord/cordxtra.c, lib/pcre/dftables.c, lib/pcre/get.c,
           main/execute.C: operators check 4 floated up old error of staying            lib/pcre/maketables.c, lib/pcre/pcre.c, lib/pcre/pcre.h,
           in 'entered object' state after ^a.a(a) it prevented operators            lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
           from being called thereafter            main/compile.tab.C, main/pa_common.C, main/pa_dictionary.C,
             main/pa_exec.C, main/pa_memory.C, main/pa_request.C,
         * src/main/execute.C: operators check 3 floated up old error of            main/pa_string.C, main/untaint.C, types/pa_vfile.h,
           staying in 'entered class' state after $a:a(a) it prevented            types/pa_vmail.C: untaint.C 99% [except mail&sql&optimize]
           operators from being called thereafter  
           * parser3.dsw, src/classes/file.C, src/classes/image.C,
         * src/main/execute.C, src/types/pa_wcontext.h, www/htdocs/auto.p,            src/classes/op.C, src/classes/string.C, src/classes/table.C,
           www/htdocs/index.html: operators check 2 floated up old error of            src/classes/xdoc.C, src/classes/xnode.C, src/include/pa_common.h,
           staying in 'entered class' state after $a:a[a] it prevented            src/include/pa_memory.h, src/include/pa_request.h,
           operators from being called thereafter            src/include/pa_request_charsets.h,
             src/include/pa_sql_connection.h, src/include/pa_string.h,
         * src/main/execute.C, www/htdocs/index.html: operators check, thay            src/main/compile.tab.C, src/main/execute.C,
           mistakenly seen in   $class:operator   $object.operators contexts            src/main/pa_charset.C, src/main/pa_common.C,
             src/main/pa_exception.C, src/main/pa_exec.C,
         * src/classes/xdoc.C, src/targets/cgi/parser3.dsp,            src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
           www/htdocs/index.html: now compiles under win32            src/main/pa_stylesheet_manager.C, src/main/untaint.C,
             src/sql/pa_sql_driver.h, src/targets/cgi/parser3.C,
         * INSTALL, configure, configure.in, ident.awk, etc/Makefile.am,            src/targets/isapi/parser3isapi.C, src/types/pa_value.C,
           src/classes/Makefile.am, src/main/Makefile.am,            src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
           src/targets/cgi/Makefile.am,            src/types/pa_venv.h, src/types/pa_vform.C, src/types/pa_vmail.C,
           src/targets/cgi/pa_config_paths.h.in, src/targets/cgi/parser3.C,            src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
           src/types/Makefile.am: lowered indent.awk back to src/            src/types/pa_vobject.C, src/types/pa_vresponse.C,
             src/types/pa_vstatus.C, src/types/pa_vstring.C,
         * AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, NEWS, README,            src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
           acinclude.m4, aclocal.m4, asm.txt, config.guess, config.sub,            src/types/pa_vxnode.C, src/types/pa_wcontext.h: untaint.C 30%,
           configure, configure.in, form.txt, ident.awk, install-sh,            pa_common.C [done, without http for now]
           lang.txt, ltconfig, ltmain.sh, missing, mkinstalldirs,  
           operators.txt, parser3.dsw, sql.txt, types.txt, etc/Makefile.am,  2003-03-19  paf
           etc/parser3.charsets/Makefile.am,  
           etc/parser3.charsets/koi8-r.cfg,          * src/: classes/date.C, classes/form.C, classes/hash.C,
           etc/parser3.charsets/windows-1250.cfg,            classes/image.C, classes/mail.C, classes/op.C, classes/xdoc.C,
           etc/parser3.charsets/windows-1251.cfg, src/Makefile.am,            classes/xnode.C, include/pa_array.h, include/pa_config_fixed.h,
           src/classes/Makefile.am, src/include/pa_config_auto.h.in,            include/pa_exception.h, include/pa_memory.h, include/pa_sapi.h,
           src/main/Makefile.am, src/targets/cgi/Makefile.am,            include/pa_string.h, include/pa_table.h, main/compile.C,
           src/targets/cgi/parser3.C, src/types/Makefile.am,            main/compile_tools.C, main/execute.C, main/pa_charset.C,
           www/Makefile.am, www/htdocs/auto.p, www/htdocs/global.xsl,            main/pa_common.C, main/pa_exception.C, main/pa_request.C,
           www/htdocs/index.html, www/htdocs/parser-status.html,            main/pa_socks.C, main/pa_string.C, main/pa_table.C,
           www/htdocs/people.dtd: moved etc&www out of src, moved            main/untaint.C, targets/cgi/parser3.C, targets/cgi/parser3.dsp,
           configure&co out of src added windows-1250.cfg straightened            types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.h,
           installation scripts procedure made targets/cgi/parser3.C be            types/pa_vform.C, types/pa_vmail.C, types/pa_vmethod_frame.h,
           dependant on ./configure --sysconfdir change            types/pa_vstateless_class.h, types/pa_vtable.C,
             types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.C,
 2002-01-30  paf            types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
             types/pa_wwrapper.h: started test
         * src/classes/xdoc.C: acconfig.h changed [comments before #undefs  
           removed] those comments were a mistake, and prevented libltdl          * src/lib/pcre/: dftables.c, get.c, maketables.c, pcre.c, pcre.dsp,
           from function properly            pcre.h, pcre_parser_ctype.c, study.c: restored bad replaces
   
 2002-01-29  paf          * src/: classes/op.C, include/pa_array.h, include/pa_memory.h,
             include/pa_string.h, main/pa_string.C: string compiled todo: test
         * src/: Makefile.am, classes/Makefile.am: removed libltdl/libtool            it
           creation [modified acinclude.m4 which were creating int into just  
           assignment LIBTOOL=../libtool] added default system          * src/: classes/classes.dsp, classes/string.C, classes/table.C,
           config&charsetts prepared 'make install', now it installs            include/pa_array.h, include/pa_common.h, include/pa_dictionary.h,
           targets/cgi/parser3 into bin directory etc/parser3.conf &            include/pa_exception.h, include/pa_string.h, include/pa_table.h,
           etc/parser3.charsets/* into $sysconfdir and            lib/cord/cord.dsp, main/compile.tab.C, main/main.dsp,
           $sysconfdir/parser3.charsets respectively            main/pa_common.C, main/pa_string.C, targets/cgi/parser3.dsp,
             types/pa_method.h, types/pa_value.h, types/pa_vmethod_frame.C,
         * src/: classes/xdoc.C, include/pa_charset.h, include/pa_globals.h,            types/pa_vmethod_frame.h, types/types.dsp: string
           main/pa_globals.C: few forgotten ifdef XML added            reimplementation with cord+array<fragment>: 70%
   
 2002-01-28  paf  2003-03-18  paf
   
         * src/: classes/Makefile.am, targets/cgi/Makefile.am: xalan-patch          * src/: classes/date.C, classes/file.C, classes/form.C,
           removed            classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
             classes/op.C, classes/string.C, classes/table.C, classes/xdoc.C,
         * src/main/pa_exception.C: dom|generic error output fix            classes/xnode.C, include/pa_hash.h, include/pa_string.h,
             main/pa_string.C, types/pa_vmail.C: lots of replacements, todo:we
         * src/classes/xnode.C: xdoc.importNode 3 [check err]            can ignore lang in cmp and pos really,             but would
             split properly!
         * src/classes/xnode.C: xdoc.importNode 2 [mistype err]  
           * src/lib/cord/: cord.dsp, cordbscs.c, cordprnt.c, cordxtra.c: gc:
         * src/: classes/xnode.C, types/pa_vxdoc.h: xdoc.importNode 1            cord part made parser/src/lib: it's not compiled into libgc by
           [fixed as_node helper func to accept docs]            default
   
         * src/: classes/xdoc.C, classes/xnode.h, main/pa_exception.C:          * parser3.dsw, src/classes/classes.dsp, src/classes/classes.h,
           xdoc.importNode 0            src/classes/date.C, src/classes/double.C, src/classes/file.C,
             src/classes/form.C, src/classes/hash.C, src/classes/image.C,
         * src/classes/xdoc.C: xdoc::set now untaints OK            src/classes/int.C, src/classes/mail.C, src/classes/math.C,
             src/classes/op.C, src/classes/response.C, src/classes/string.C,
 2002-01-25  paf            src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
             src/classes/xnode.C, src/classes/xnode.h,
         * src/main/: compile.tab.C, compile.y: #comment  before @ after            src/include/Makefile.am, src/include/pa_cache_managers.h,
           @SPECIAL now works OK            src/include/pa_charset.h, src/include/pa_charsets.h,
             src/include/pa_common.h, src/include/pa_dictionary.h,
         * src/main/: pa_exec.C: unix: exec now does chdir to script dir            src/include/pa_exception.h, src/include/pa_exec.h,
             src/include/pa_globals.h, src/include/pa_hash.h,
         * src/main/pa_exec.C: max arg count now 10, and proper message on            src/include/pa_memory.h, src/include/pa_pool.h,
           violation that added            src/include/pa_request.h, src/include/pa_request_charsets.h,
             src/include/pa_sapi.h, src/include/pa_sql_connection.h,
         * src/classes/hash.C: unified  hash::sql, now            src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
           ^hash::sql{query}[[$.limit(2) $.offset(4)]]            src/include/pa_stylesheet_connection.h,
             src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
         * src/: classes/file.C, include/pa_common.h, main/pa_common.C:            src/include/pa_uue.h, src/lib/pcre/get.c, src/main/Makefile.am,
           ^file:lock[filename]{code}            src/main/compile.C, src/main/compile.tab.C,
             src/main/compile_tools.C, src/main/compile_tools.h,
         * src/: classes/file.C, classes/op.C, classes/string.C,            src/main/execute.C, src/main/main.dsp, src/main/pa_charset.C,
           classes/table.C, classes/xdoc.C, include/pa_common.h,            src/main/pa_charsets.C, src/main/pa_common.C,
           main/pa_common.C, types/pa_vfile.h: removed redundant pool param            src/main/pa_dictionary.C, src/main/pa_exception.C,
           to some pa_common funcs            src/main/pa_exec.C, src/main/pa_globals.C, src/main/pa_memory.C,
             src/main/pa_pool.C, src/main/pa_request.C,
         * src/: include/pa_charset.h, main/pa_globals.C:            src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
           http://localhost/abc -> $ENV{DOCUMENT_ROOT}/abc | ./abc            src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
             src/main/pa_uue.C, src/main/untaint.C, src/targets/cgi/parser3.C,
         * src/: include/pa_charset.h, main/pa_charset.C,            src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
           include/pa_config_fixed.h, main/compile.tab.C: typedef XMLCh...            src/types/pa_junction.h, src/types/pa_method.h,
           not stupid illegal define            src/types/pa_value.C, src/types/pa_value.h,
             src/types/pa_vclass.C, src/types/pa_vclass.h,
 2002-01-24  paf            src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
             src/types/pa_vcookie.h, src/types/pa_vdate.h,
         * src/include/pa_version.h: changed version number            src/types/pa_vdouble.h, src/types/pa_venv.h,
             src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
         * src/: classes/hashfile.C, include/pa_db_table.h,            src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
           include/pa_opcode.h, main/compile.tab.C, main/compile.y,            src/types/pa_vimage.C, src/types/pa_vimage.h,
           main/compile_tools.C, main/compile_tools.h, main/execute.C,            src/types/pa_vint.h, src/types/pa_vmail.C, src/types/pa_vmail.h,
           main/pa_db_connection.C, main/pa_db_table.C,            src/types/pa_vmath.C, src/types/pa_vmath.h,
           types/pa_vhashfile.C, types/pa_vhashfile.h: merged from r17 -            src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
           hashfile without logfiles            src/types/pa_vobject.C, src/types/pa_vobject.h,
             src/types/pa_vrequest.C, src/types/pa_vrequest.h,
         * src/: classes/hashfile.C, include/pa_db_table.h,            src/types/pa_vresponse.C, src/types/pa_vresponse.h,
           main/compile.tab.C, main/pa_db_connection.C, main/pa_db_table.C,            src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
           types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile: removed use            src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
           of transactions [libdb removed DB_INIT_LOCK, DB_INIT_LOG,            src/types/pa_vstatus.h, src/types/pa_vstring.C,
           DB_INIT_TXN init bits, thus got rid of huge log files, which            src/types/pa_vstring.h, src/types/pa_vtable.C,
           cluttered disk without huge need]            src/types/pa_vtable.h, src/types/pa_vvoid.h,
             src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
         * src/classes/: xdoc.C, xnode.C, xnode.h: gdome_xml_doc_get_xmlDoc            src/types/pa_vxnode.C, src/types/pa_vxnode.h,
           handy macro, which is strangly abscent in dome lib            src/types/pa_wcontext.C, src/types/pa_wcontext.h,
             src/types/pa_wwrapper.h, src/types/types.dsp: started porting to
         * src/classes/xdoc.C: xsltSaveResultTo checked <0 response            gc: PA_Object done lots of replacements also
   
         * src/classes/xdoc.C: checked empty response          * src/: include/pa_pool.h, main/execute.C, targets/cgi/pa_pool.C:
             gc logging
         * src/classes/xnode.C: xdoc.select fixed context node [were always  
           /, not self node]  2003-03-17  paf
   
         * src/classes/xnode.C: xnode.select returns array always now, in          * src/: classes/date.C, classes/file.C, classes/form.C,
           case 'nothing found' returns empty array            classes/image.C, classes/mail.C, classes/op.C, classes/table.C,
             classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
         * src/classes/xnode.C: xpath nodes select bug [0] instead of [i],            include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
           be more tender with ctrl/c/v            include/pa_string.h, include/pa_types.h, main/compile.C,
             main/compile.tab.C, main/execute.C, main/pa_charset.C,
 2002-01-23  paf            main/pa_common.C, main/pa_exception.C, main/pa_exec.C,
             main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
         * src/: classes/xdoc.C, main/pa_globals.C: xdoc::load/set entities            main/pa_sql_driver_manager.C, main/pa_string.C,
           substituted.         // 2. when dom tree with entites goes under            main/pa_stylesheet_manager.C, main/pa_uue.C, main/untaint.C,
           transform text nodes        // got [erroreosly] cut on first            targets/cgi/pa_pool.C, targets/cgi/parser3.C,
           entity occurance            targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
             types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.C,
         * src/types/pa_vdouble.h: double prec. todo: get rid of            types/pa_vform.C, types/pa_vint.h, types/pa_vmail.C,
           twice-converting            types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
             types/pa_vxnode.h: libgc attempt
         * src/types/pa_vdouble.h: %.20E now float format when %g produced  
           'e' in output this is for regretful twice-converting here:  2003-03-13  paf
           $a(double value) when they write double falue  they convert it to  
           string first, thus %g were losing precesion.          * src/: include/pa_sql_driver_manager.h,
             main/pa_sql_driver_manager.C, targets/cgi/parser3.C: lt_dlexit
           todo: think up some way to remove double->string string->double            called
           twice-converting  
           * src/: include/pa_request.h, lib/ltdl/libltdl.dsp,
         * src/: classes/xdoc.C, main/pa_globals.C, types/pa_vdouble.h:            lib/md5/md5.dsp, main/compile.tab.C, main/execute.C,
           %.20E now default float format this is for regretful            main/pa_request.C, targets/cgi/parser3.C, types/pa_value.C,
           twice-converting here: $a(double value) when they write double            types/pa_value.h, types/pa_vobject.h,
           falue  they convert it to string first, thus %g were losing            types/pa_vstateless_class.h, types/pa_vstatus.C, types/types.dsp:
           precesion.            set_base, set_derived simplified [counter leaks fixed]
   
           todo: think up some way to remove double->string string->double          * ChangeLog, src/include/pa_config_fixed.h, src/types/pa_vstatus.C,
           twice-converting            src/types/types.dsp: incorporated status class patch From:
             "Victor Fedoseev" <vvf_ru@mail.ru> Sent: Thursday, January 23,
         * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,            2003 8:14 AM
           main/pa_globals.C: xmlSubstituteEntitiesDefault(1) now global,  
           reasons in comment inside            now we have $status.rusage.maxrss,tv_sec,tv_usec un WIN32 [plus
             Win32 specific: QuotaPeakNonPagedPoolUsage
         * src/main/pa_globals.C: xslt linked dynamically. [mistekenly were            QuotaPeakPagedPoolUsage PeakPagefileUsage]
           statically linked]  
   2003-03-12  paf
         * src/: include/pa_exception.h, main/compile.tab.C,  
           main/pa_exception.C: removed exception va_list constructor.  1.          * configure, configure.in, src/lib/ltdl/configure,
           not needed anymore 2. there were a conflict[causing errors]            src/lib/ltdl/configure.in, src/targets/cgi/Makefile.am:
           between ctor(, va_list) ctor(, ...) compiler[both msvc and gcc]            lib/ltdl/Makefile now created by /configure.in only [were by
           never detected an ambiguilty here, compiling ctor(, "hello") into            lib/ltdl/configure.in OVERWRITE]
           ctor(, va_list) which, of course, caused gpf  
           * configure, configure.in, src/targets/cgi/Makefile.am: libstdc++
         * src/main/pa_globals.C: removed debug xslt messages            linkage fixed for g++ 3.2.2
   
 2002-01-22  paf          * src/include/pa_stylesheet_manager.h: gcc 3.2 rightliy complained
             on using privately declared class [fixed]
         * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,  
           main/pa_globals.C: xsl stylesheet load: parsed entities, this          * src/: include/pa_sql_driver_manager.h, main/compile.tab.C: gcc
           helps compiling stylesheet properly.  example: this refused to            3.2 rightliy complained on using privately declared class [fixed]
           work,             <b>&laquo;<xsl:value-of select="@title"  
           />&raquo;</b> stranly worked only this way:          * src/targets/cgi/parser3.C: 1. more detailed log on signals.  2.
           <b>&#171;<xsl:value-of select="@title" />&raquo;</b>            sigpipe before request constructor now causes death
   
           docs says "set it to 1", never going into details, so I decided          * src/: include/pa_request.h, main/compile.tab.C, main/execute.C,
           to try NOT to do that            targets/cgi/parser3.C: SIGPIPE now can be intercepted and does
             not cause exception in exception handler
         * src/classes/table.C: join behaived badly in case named tables  
           structure mismatched: 0 strings sneaked into dest failing          * configure, configure.in, src/targets/cgi/Makefile.am: configure
           afterwards.  replaced them with empty strings            now default links libstdc++ statically.  that can be overriden by
             --with-dynamic-stdcpp
 2002-01-21  paf  
   2003-03-11  paf
         * src/main/pa_charset.C: checked empty transcoders in  
           transcode_cstr|buf          * src/: main/compile.tab.C, main/compile.y, sql/pa_sql_driver.h,
             types/pa_vstateless_class.C, types/pa_vstateless_class.h: removed
         * src/classes/xdoc.C: xdoc::load error source = filespec            necessity of libstdc++
   
         * src/classes/xdoc.C: transform error source now          * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
           stylesheet_filespec  
           * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
         * src/: classes/xdoc.C, classes/xnode.C,  
           include/pa_stylesheet_connection.h, main/pa_charset.C,  2003-03-08  paf
           main/pa_globals.C, main/pa_sql_driver_manager.C,  
           main/pa_stylesheet_manager.C, targets/cgi/Makefile.am: autoconf          * tests/Makefile: make install & co
           gnome  
           * src/: include/pa_request.h, classes/op.C: removing
         * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,            vclass,object.h -> pa_request.h dependency
           include/pa_globals.h, include/pa_stylesheet_connection.h,  
           main/pa_exception.C, main/pa_globals.C, targets/cgi/pa_threads.C:          * src/: classes/mail.C, classes/response.C, include/pa_request.h,
           xslt generic error 1            main/pa_request.C: removing vform,response,cookie.h ->
             pa_request.h dependency
         * src/: include/pa_stylesheet_connection.h, main/pa_exception.C:  
           xml generic message 1          * src/include/pa_request.h: removing vmail.h -> pa_request.h
             dependency [testing...]
         * src/classes/table.C: ^table::load empty lines or #comments before  
           headline          * src/: include/pa_config_fixed.h, types/pa_vxdoc.C: yet another
             return 0; fixed
         * src/: include/pa_array.h, include/pa_globals.h,  
           include/pa_request.h, include/pa_threads.h, main/pa_array.C,          * src/: include/pa_config_fixed.h, types/pa_vmail.C,
           main/pa_exception.C, main/pa_globals.C, main/pa_request.C,            types/pa_vmail.h: vmail.C received just compiled [not tested]
           targets/cgi/pa_threads.C, targets/isapi/pa_threads.C: xml generic  
           errors 0          * src/classes/xdoc.C: forgotten: global xdoc when ndef XML
   
 2002-01-16  paf          * src/main/pa_request.C: forgotten: ifdef XML
   
         * src/: classes/hash.C, classes/op.C, classes/string.C,          * src/main/pa_request.C: forgotten: ifdef XML
           classes/table.C, classes/void.C, classes/xdoc.C,  
           include/pa_db_connection.h, include/pa_request.h,          * src/targets/cgi/parser3.C: todo: move to latest xml version on
           include/pa_sql_connection.h, include/pa_sql_driver_manager.h,            win32 and run memleak tests again
           include/pa_stylesheet_connection.h,  
           include/pa_stylesheet_manager.h, main/pa_request.C,          * src/targets/cgi/parser3.C: charsets: see some strange things with
           main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,            old xml lib-- it's internal memory handling has faults
           targets/cgi/pool_storage.h: auto closers to sql_connection,  
           stylesheet_connection auto destroyers to remaining gnome objects          * src/: include/pa_types.h, main/pa_charset.C: charsets: fixed
             problems when transcode from charset A to A.
         * src/classes/xdoc.C: few comments  
           * src/: main/untaint.C, types/pa_vmail.C: mail: transcode fixed.
 2002-01-15  paf            todo: still problems when transcode from charset A to A.
   
         * src/classes/xdoc.C: xdoc   file   save   string          * src/: classes/hash.C, classes/mail.C, classes/string.C,
             classes/table.C, include/pa_array.h,
           ready.  todo: error handling            main/pa_sql_driver_manager.C, types/pa_vmail.C, types/pa_vmail.h:
             started full-scale-site-test [~ http://parser.ru sources]
         * src/classes/xdoc.C: xdoc save rewritten using  
           xmlAllocOutputBuffer less mallocs, more reallocs. less fragmented            some fixes
           result  
           * tests/: 021.html, 031.html, 033.html, 109.html, 110.html,
         * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C:            111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
           started output options parsing            117.html, 118.html, 119.html, 120.html, results/109.processed,
             results/110.processed, results/111.processed,
 2002-01-14  paf            results/112.processed, results/113.processed,
             results/114.processed, results/115.processed,
         * src/classes/xdoc.C: method            results/116.processed, results/117.processed,
             results/118.processed, results/119.processed,
         * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,            results/120.processed: xml: tests 109 dom create/show 110 xpath
           include/pa_pool.h, include/pa_stylesheet_connection.h,            selectSingle 111 xdoc.create from tainted & 112
           main/main.dsp, main/pa_charset.C, main/pa_globals.C,            xdoc.create/output with russian attr value 113 xpath
           main/pa_pool.C, main/pa_stylesheet_manager.C, types/pa_vxdoc.h:            selectString/Number 114 dom attributes.count 115 xpath selectBool
           xslt transform0.  TODO:   use output options   handle errors            116 output media-type change 117 transform by dom stylesheet 118
             empty transform result 119 dom setAttribute 120 nbsp letter
         * src/classes/: xdoc.C, xnode.C: ^xdoc.file            output
   
 2002-01-11  paf            =END OF PREPARED XML TESTS=
   
         * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,  2003-03-07  paf
           main/compile_tools.C, main/compile_tools.h, main/execute.C:  
           partial logical && || evaluation          * src/classes/xdoc.C, src/include/pa_charset.h,
             src/include/pa_stylesheet_connection.h, tests/108.html,
         * src/classes/xnode.C: xpath selectNodes            tests/108.xsl, tests/results/108.processed: xml: test 108
             transform with params [bugs fixed]
         * src/: classes/xnode.C, include/pa_charset.h: xpath selectNode 3:  
           string/number/bool          * src/: main/pa_charset.C, targets/cgi/parser3.C: fixed: mem leak
             from copy/paste bug
         * src/classes/xnode.C: xpath selectNode 2  
           * src/classes/xdoc.C, src/include/pa_charset.h,
         * src/: classes/xnode.C, include/pa_charset.h, main/pa_charset.C:            src/include/pa_request.h, src/main/execute.C,
           xpath selectNode 1            src/main/pa_charset.C, src/main/pa_exception.C,
             src/main/pa_globals.C, src/main/pa_request.C,
 2002-01-10  paf            src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
             src/types/pa_vxnode.C, tests/107.html,
         * src/classes/xnode.C: xpath selectNode -100 [just written]            tests/results/107.processed: xml: test: 107 bug fixes
   
         * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,          * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
           include/pa_exception.h, include/pa_pool.h, main/pa_charset.C,            types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
           main/pa_pool.C: GdomeDOMString_auto_ptr  c++ wrapper [calls            types/pa_vxnode.C, types/pa_vxnode.h: test: 107 bug fixes
           refcounter]  
           * tests/: 106.html, results/106.processed: test: 106 xdoc create,
 2001-12-29  paf            string
   
         * src/: classes/xdoc.C, include/pa_exception.h, main/pa_charset.C,          * src/: include/pa_charset.h, main/pa_charset.C: xml: charset two
           main/pa_exception.C, main/pa_globals.C: xdoc ^set ^string with            mem alloc functions used for different cases [libxml, libxsl]
           glib works 0  
           * src/classes/classes.C: fixed: prevent system classes from
 2001-12-28  paf            modification to lock ALL the classes, not only directly used
   
         * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C,          * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h: xml:
           main/pa_exception.C: started glib transcoders            linked
   
         * src/main/pa_globals.C: renamed gdome to libgdome.dll          * src/: classes/xdoc.C, types/pa_vxdoc.h: xdoc.C compiled
   
         * src/: classes/classes.dsp, classes/mail.C, classes/xdoc.C,  2003-03-06  paf
           classes/xnode.C, classes/xnode.h, include/pa_exception.h,  
           include/pa_globals.h, main/compile.tab.C, main/main.dsp,          * src/classes/xdoc.C: xdoc.C 50%
           main/pa_charset.C, main/pa_dir.C, main/pa_exception.C,  
           main/pa_exec.C, main/pa_globals.C, main/pa_socks.C,          * src/: classes/xnode.C, classes/xnode.h, include/pa_charset.h,
           targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vxdoc.C,            include/pa_memory.h, include/pa_request.h, include/pa_string.h,
           types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: gnome            main/pa_globals.C, main/pa_request.C,
           libs just compiled in.  no refcounting no xpath no xslt   yet            main/pa_stylesheet_manager.C: xnode.C compiled
   
 2001-12-27  paf          * src/: include/pa_stylesheet_connection.h,
             include/pa_stylesheet_manager.h, main/pa_sql_driver_manager.C,
         * src/: include/pa_charset.h, include/pa_common.h,            main/pa_stylesheet_manager.C: xml: stylesheet&manager done
           include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,  
           main/main.dsp, main/pa_charset.C, main/pa_charsets.C,          * src/: include/pa_memory.h, include/pa_stylesheet_connection.h,
           main/pa_globals.C, main/pa_pool.C, targets/cgi/parser3.C,            include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
           targets/cgi/parser3.dsp, types/pa_vxdoc.C, types/pa_vxdoc.h,            xml: stylesheet&manager STARTED
           types/pa_vxnode.C, types/pa_vxnode.h, types/types.dsp: going away  
           from xalan&xerces, started the process.  globals [initialization          * src/: include/pa_globals.h, main/pa_charset.C,
           pool [charset update charset [transcodings vxnode vxdoc [DOM            main/pa_exception.C, main/pa_globals.C: xml: exceptions
           calls  
           * src/: include/pa_charset.h, include/pa_config_fixed.h,
         * src/classes/Makefile.am: going away from xalan&xerces, not needed            include/pa_memory.h, include/pa_pool.h, main/pa_charset.C,
           anymore            main/pa_memory.C, main/pa_pool.C, types/pa_vxdoc.C,
             types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: xml:
 2001-12-26  paf            charsets
   
         * src/: include/pa_charset.h, include/pa_charsets.h,          * tests/023.html: in some cases it rounded up badly. postponing
           main/pa_charset.C, main/pa_charsets.C, main/pa_request.C: charset            solution of that problem, making more simple test
           key globalized [bug]  
           * tests/: 058_paf2000.png, results/058.processed: .png added with
 2001-12-25  paf            -kb now
   
         * src/: classes/mail.C, classes/table.C, include/pa_string.h,          * src/: include/pa_charset.h, include/pa_charsets.h,
           main/pa_string.C: table set & append changed splitting languages,            main/pa_charset.C, main/pa_charsets.C: charset_utf8 declaration
           separators now can be clean AND as-is same to mail command line            moved to charsets.C
           $MAIN:MAIL.progX arguments  
   2003-03-05  paf
 2001-12-24  paf  
           * src/classes/string.C, src/include/pa_string.h,
         * src/classes/mail.C: one parted text messages - no multipart            src/main/pa_string.C, tests/105.html,
           mime-type anymore.  for convinient if $.attach-ments            tests/results/105.processed: String::match bug fixed
   
         * src/: classes/hashfile.C, classes/op.C, main/pa_db_table.C,          * src/classes/op.C, src/main/main.dsp, tests/104.html,
           main/pa_string.C: read from cache size check updated            tests/results/104.processed: ^bpt operator added [does int3 in
             debug build on win32]
         * src/main/: pa_string.C: String::join_chain another ugly bug :(  
           * tests/: 057.html, results/057.processed: test bug fixed
 2001-12-21  paf  
           * src/targets/cgi/Makefile.am: linker needed more tricks to link OK
         * src/classes/date.C: date:sql-string now returns localtime  
           * src/classes/math.C: can be: crypt in -lcrypt OK, but crypt.h be
         * src/main/pa_request.C: $result in @main actually not working, to            missing
           hell with it for now  
           * src/: include/Makefile.am, main/Makefile.am, types/Makefile.am:
         * src/: include/pa_request.h, main/execute.C, main/pa_request.C,            forgotten files added to Makes
           types/pa_vmethod_frame.h, types/pa_wcontext.h: $result in @main  
           @postprocess @exception          * ltmain.sh: ltmain.sh added
   
         * src/main/execute.C: junction evaluation canceled - endless          * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
           recursion detected            change undone ;(
   
 2001-12-19  paf          * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
             made static
         * src/main/pa_charset.C: charset->charset transcoding via unicode  
           intermediate          * src/: classes/math.C, classes/op.C, classes/string.C,
             main/pa_exec.C, targets/cgi/Makefile.am: gcc more happy.
         * src/main/pa_request.C: CLASS_PATH now / = DOCUMENT_ROOT            todo:make linker happy
   
         * src/classes/hashfile.C: ^hashfile.open DB_HOME now relative          * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C: pa_exec
             env param made optional
         * src/classes/op.C: ^cache keypath now relative  
   2003-03-04  paf
         * src/classes/mail.C: changed weighting prior to sort  
           * src/: classes/image.C, include/pa_request.h, include/pa_stack.h,
         * src/: classes/mail.C, include/pa_config_fixed.h: to/from 0 check            types/pa_vimage.h: number of gcc compiler bugs fixed
           were missing  
           * tests/: 103.html, 103mark.gif, 103paf2001.gif,
 2001-12-17  paf            results/103.processed: tests: 103 image.copy transparence test
   
         * src/main/pa_charset.C: ifndef XML were bad type          * src/main/execute.C, tests/101.html, tests/102.html,
             tests/results/101.processed, tests/results/102.processed: tests:
         * src/: include/pa_db_table.h, main/pa_db_table.C: db_table used            101 method/variable name conflict test 102 form fields change
           outdated unset services_pool            should not not change anything [bug fix]
   
         * src/: classes/mail.C, include/pa_charsets.h, include/pa_string.h,          * tests/: 057.html, 099.html, 100.html, results/057.processed,
           main/pa_charsets.C, main/untaint.C, types/pa_vrequest.C,            results/099.processed, results/100.processed: tests: 57 date
           types/pa_vresponse.C: ^mail:send[    $.charset[zzz] addded            create 2002: added 99,100 response:body/download
   
         * src/main/untaint.C: allowed space in filespec          * src/classes/image.C, tests/098.html, tests/098font.gif,
             tests/results/098.processed: test: 98 image font text [bug fixed]
         * src/main/pa_charset.C: empty bufs transcode [forgot check :(]  
           * src/main/pa_common.C, src/targets/cgi/parser3.C, tests/097.html,
         * src/classes/image.C: no govno            tests/results/097.processed: test: 97 file::load http://  [bugs
             fixed]
         * src/classes/image.C: govno  
           * src/classes/hash.C, src/classes/image.C, src/classes/table.C,
 2001-12-16  paf            src/include/pa_memory.h, tests/096.html, tests/096_dir/163.jpg,
             tests/096_dir/188.jpg, tests/results/096.processed: tests: 96
         * src/include/: pa_charset.h, pa_charsets.h: forgot to add            image EXIF  [bug fixed]
   
         * src/: main/Makefile.am, main/pa_charset.C, types/Makefile.am:          * src/classes/table.C, src/main/execute.C, tests/061.dat,
           charset_connection&manager replaced by charset&charsets            tests/061.html, tests/062.html, tests/063.html, tests/064.html,
             tests/065.html, tests/066.html, tests/067.html, tests/068.html,
         * src/main/pa_charset.C: name_cstr 0            tests/069.html, tests/070.html, tests/071.html, tests/072.html,
             tests/073.html, tests/074.html, tests/075.html, tests/076.html,
         * src/main/untaint.C: uri lang now knows about client/source            tests/077.html, tests/078.html, tests/080.html, tests/081.html,
           charsets            tests/082.html, tests/083.html, tests/084.html, tests/085.html,
             tests/086.html, tests/087.html, tests/088.html, tests/089.html,
         * src/: classes/file.C, classes/math.C, classes/op.C,            tests/090.html, tests/091.html, tests/092.html, tests/093.html,
           classes/string.C, classes/table.C, classes/xdoc.C,            tests/094.html, tests/095.html, tests/results/061.processed,
           include/pa_array.h, include/pa_cache_managers.h,            tests/results/062.processed, tests/results/063.processed,
           include/pa_charset_connection.h, include/pa_charset_manager.h,            tests/results/064.processed, tests/results/065.processed,
           include/pa_common.h, include/pa_db_connection.h,            tests/results/066.processed, tests/results/067.processed,
           include/pa_db_manager.h, include/pa_db_table.h,            tests/results/068.processed, tests/results/069.processed,
           include/pa_dictionary.h, include/pa_exception.h,            tests/results/070.processed, tests/results/071.processed,
           include/pa_exec.h, include/pa_globals.h, include/pa_hash.h,            tests/results/072.processed, tests/results/073.processed,
           include/pa_opcode.h, include/pa_pool.h, include/pa_request.h,            tests/results/074.processed, tests/results/075.processed,
           include/pa_sapi.h, include/pa_socks.h,            tests/results/076.processed, tests/results/077.processed,
           include/pa_sql_connection.h, include/pa_sql_driver_manager.h,            tests/results/078.processed, tests/results/080.processed,
           include/pa_string.h, include/pa_stylesheet_connection.h,            tests/results/081.processed, tests/results/082.processed,
           include/pa_stylesheet_manager.h, include/pa_table.h,            tests/results/083.processed, tests/results/084.processed,
           include/pa_transcoder.h, main/compile_tools.h, main/main.dsp,            tests/results/085.processed, tests/results/086.processed,
           main/pa_charset.C, main/pa_charset_connection.C,            tests/results/087.processed, tests/results/088.processed,
           main/pa_charset_manager.C, main/pa_charsets.C, main/pa_globals.C,            tests/results/089.processed, tests/results/090.processed,
           main/pa_pool.C, main/pa_request.C, main/pa_string.C,            tests/results/091.processed, tests/results/092.processed,
           main/pa_transcoder.C, main/untaint.C, types/pa_vfile.C,            tests/results/093.processed, tests/results/094.processed,
           types/pa_vform.C, types/pa_vform.h, types/pa_vrequest.C,            tests/results/095.processed, tests/079.html,
           types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,            tests/results/079.processed: tests: 61 file::stat size 62
           types/types.dsp: introducing Charset            string->int autoconvert 63 double .int,dec,div,mul 64 date
             compare 65 file: basename,justname,justext 66 math:crypt 67
 2001-12-14  paf            string.match simple on long 68 string.match normalized simple on
             long 69 string.int 70 file::stat content-type 71 table.join 72
         * src/: include/pa_request.h, include/pa_transcoder.h,            hash parameter conditional pass 73 date daylightsaving,yearday 74
           main/pa_request.C, main/pa_transcoder.C, types/pa_vform.C,            date arithmetics 75 response date values/attributes 76 string.pos
           types/pa_vform.h: transcodeToUTF8[were FromUTF8] for forms todo:            of void, void.pos 77 syntax parsing 78 cookie tainting 79 switch
           uri lang            with local 80 scientific numeric literal in string autoconvert 81
             xor: logical and numerical 82 for delims 83 menu delims 84
         * src/main/pa_transcoder.C: transcodeToUTF8, now form&uri lang            table.hash distinct 85 long string  replace 86 throw+catch
             current language preserve 87 bit shifts 88 junction tests +
         * src/targets/cgi/Makefile.am: -I../../pcre  to .am            $caller test 89 hash.foreach selfmodification 90 int/void to int
             91 $caller test 92 junction is + def junction tests 93 $caller
         * src/: include/pa_globals.h, main/pa_globals.C: removed unused            test 94 syntax test 95 table.hash(keygenerator)  [bug fixed]
           defalts_name global  
           * src/main/: execute.C, pa_table.C: test: 59 table.locate [bug
         * src/: include/pa_charset_connection.h, include/pa_pool.h,            fixed] 60 string eq string [bug fixed]
           include/pa_request.h, main/main.dsp,  
           main/pa_charset_connection.C, main/pa_charset_manager.C,          * tests/: 053.html, 054.html, 055.html, 056.html, 057.html,
           main/pa_request.C, types/Makefile.am, types/pa_vrequest.C,            058.html, 058_paf2000.png, 059.html, 060.html,
           types/pa_vrequest.h, types/pa_vresponse.h, types/types.dsp,            results/053.processed, results/054.processed,
           include/pa_transcoder.h, main/pa_transcoder.C, main/Makefile.am:            results/055.processed, results/056.processed,
           changed charset model.  now important: $request:charset            results/057.processed, results/058.processed,
           $response:charset while $response:content-type.charset become            results/059.processed, results/060.processed: test: 53
           unimportant [informational]            string.replace 54 junctions 55 table.hash 56 call indirect 57
             date.create[string] 58 image.measure[png]
 2001-12-13  paf  
           * tests/: 052.html, outputs/049.processed, outputs/050.processed,
         * src/targets/: cgi/pa_pool.C, isapi/pa_pool.C: EOL@EOF            outputs/051.processed, results/052.processed: test: 52
             pre/match/post test: passed AS-IT-WERE, but wrong :) separate
         * src/classes/xdoc.C: rewritten auto_ptr part other way2, because            task: fix that
           of stupid gcc 2.96 /usr/include/g++-3/memory:40: candidates are:  
           auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with  2003-03-03  paf
           _Tp = FormatterListener] /usr/include/g++-3/memory:48:  
           auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &)          * tests/: 043.html, 044.html, 045.html, 046.html, 047.html,
           [with _Tp1 = FormatterListener, _Tp = FormatterListener]            048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p, Makefile,
             parser-cygwin.sh, parser-unix.sh, run_parser.sh,
         * src/: classes/xdoc.C, main/pa_sql_driver_manager.C: rewritten            outputs/049.processed, outputs/050.processed,
           auto_ptr part other way, because of stupid gcc 2.96            outputs/051.processed, results/001.processed,
           /usr/include/g++-3/memory:40: candidates are: auto_ptr<_Tp>            results/002.processed, results/003.processed,
           &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with _Tp =            results/005.processed, results/006.processed,
           FormatterListener] /usr/include/g++-3/memory:48:            results/008.processed, results/009.processed,
           auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &) [with            results/011.processed, results/012.processed,
           _Tp1 = FormatterListener, _Tp = FormatterListener]            results/013.processed, results/014.processed,
             results/015.processed, results/016.processed,
         * src/classes/xdoc.C: removed extra inc            results/017.processed, results/020.processed,
             results/021.processed, results/022.processed,
         * src/targets/cgi/: pa_pool.C, parser3.C: msvc heap debugging flag            results/024.processed, results/025.processed,
             results/026.processed, results/027.processed,
         * src/include/pa_types.h: msvc head debugging flag            results/028.processed, results/029.processed,
             results/030.processed, results/031.processed,
         * src/classes/xdoc.C: freed up listener            results/049.processed, results/050.processed,
             results/051.processed, results/043.processed,
         * src/classes/string.C: change msg '... code is not code'            results/044.processed, results/045.processed,
             results/046.processed, results/047.processed,
         * src/: main/pa_db_connection.C, main/pa_db_manager.C,            results/048.processed: tests: 43,44,45 date rolls 46
           main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,            autoevaluating junction 47 table.select 48 name with subvar 49
           targets/cgi/pool_storage.h: couple cache expiratiors were wrong            hash-creating switch 50 process 51 started parent/child, works as
           [past/future prob]            it were but it were NOT GOOD, created separate task  to fix that
   
         * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,          * tests/: 042.html, results/042.processed: test: 42
           include/pa_config_fixed.h, include/pa_db_manager.h,            exception.handled
           include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,  
           main/pa_cache_managers.C, main/pa_globals.C: ~Cache_managers          * tests/: 041.html, results/041.processed: test: 41 table.locate by
             expression
         * src/: include/pa_config_fixed.h, main/pa_common.C,  
           main/pa_string.C: removed signed mismatch warnings          * tests/: 040.html, results/040.processed: test: 39 method result
             of type table 40 method param junction auto evaluate
         * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: removed  
           'expires' from header outputs          * tests/: 039.html, results/039.processed: test: 37 method result
             of type table
         * src/main/pa_string.C: string::recustruct erroreusly used outdated  
           row ptr          * src/main/pa_request.C, src/types/pa_vmath.C, tests/033.html,
             tests/034.html, tests/035.html, tests/036.html, tests/037.html,
         * src/classes/file.C: file::cgi bug, request_method were passed to            tests/038.html, tests/results/033.processed,
           SERVER_PROTOCOL but SERVER_PROTOCOL were forgotten            tests/results/034.processed, tests/results/035.processed,
             tests/results/036.processed, tests/results/037.processed,
         * src/classes/xdoc.C: lang list updated            tests/results/038.processed: tests: 33 string.replace 34
             string.upper 35 table created 36 local/global vars with juntions
 2001-12-10  paf            37 table clone 38 math PI & number formatting
   
         * src/classes/math.C: ^math:random(n) now yields[0;n) not [0;n]            math class registring typo fixed
   
         * src/main/untaint.C: FILE_SPEC untainting changed so that one can          * src/classes/op.C, src/include/pa_request.h,
           erase files like that, knowing their full name introducing   //            src/include/pa_string.h, src/main/execute.C,
           theoretical problem with, for instance, "_2B" and "." fragments,            src/main/pa_request.C, src/main/pa_string.C, src/main/untaint.C,
           // they would yield the same    // because            src/types/pa_vcode_frame.h, src/types/pa_wcontext.h,
           need_file_encode('_')=false  // but we need to delete such files            tests/032.html, tests/results/032.processed: uchar changed to
           somehow, getting names from ^index            String_UL in all places [was not everywhere] untaint test: 032
   
         * src/main/pa_string.C: ^string.replace bug fixed [bad          * src/targets/cgi/parser3.C, tests/004.html, tests/Makefile,
           string::join_chank break]            tests/results/004.processed, tests/parser-cygwin.sh,
             tests/parser-unix.sh: removed -H command line key, now testing
 2001-12-07  paf            using .sh file with SERVER_SOFTWARE=xxx
   
         * src/: classes/hashfile.C, classes/op.C, classes/table.C,  2003-02-26  paf
           include/pa_common.h, include/pa_config_auto.h.in,  
           include/pa_config_fixed.h, include/pa_config_includes.h,          * src/main/execute.C, src/types/pa_vstateless_class.h,
           include/pa_db_table.h, include/pa_request.h, main/pa_common.C,            tests/024.html, tests/025.html, tests/026.html, tests/027.html,
           main/pa_db_table.C, main/pa_request.C, main/pa_string.C,            tests/028.html, tests/029.html, tests/030.html, tests/031.html,
           types/pa_vhashfile.C: merged from r14_simple_cache            tests/results/024.processed, tests/results/025.processed,
             tests/results/026.processed, tests/results/027.processed,
         * src/main/pa_string.C: stupid sparc architecture failed to access            tests/results/028.processed, tests/results/029.processed,
           short at odd address 0x311f0 <deserialize__6StringUiPvUiPCc+16>:            tests/results/030.processed, tests/results/031.processed: fixed
              lduh  [ %i2 + 1 ], %l0            bug with name_cstr mutable CharPtr more tests
   
           bus error, fixed that          * src/: include/pa_sapi.h, main/pa_globals.C, main/pa_memory.C,
             targets/cgi/parser3.C, targets/isapi/parser3isapi.C: SAPI::abort
         * src/main/pa_string.C: strange string deserialize bug on            << abort.  die now just exits
           client[pmts], a bit shortened,  
           * src/classes/classes.awk, src/classes/classes.h,
         * src/include/pa_config_auto.h.in: makes            src/classes/date.C, src/classes/double.C, src/classes/file.C,
             src/classes/form.C, src/classes/hash.C, src/classes/image.C,
         * src/: include/pa_common.h, include/pa_config_fixed.h,            src/classes/int.C, src/classes/mail.C, src/classes/math.C,
           include/pa_config_includes.h, main/pa_common.C: exclusive lock            src/classes/op.C, src/classes/response.C, src/classes/string.C,
           file write shared lock file read            src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
             src/classes/xnode.C, src/include/pa_memory.h,
         * src/: classes/op.C, include/pa_common.h,            src/include/pa_sapi.h, src/targets/cgi/parser3.C,
           include/pa_config_fixed.h, main/pa_common.C: ^cache operator            src/targets/isapi/parser3isapi.C, src/types/pa_venv.h,
             src/types/pa_vform.C, tests/015.html, tests/016.html,
 2001-12-06  paf            tests/017.html, tests/018.html, tests/019.html,
             tests/019paf2001.gif, tests/020.html, tests/021.html,
         * src/: classes/op.C, classes/table.C, include/pa_request.h,            tests/022.html, tests/023.html, tests/022_dir/a.html,
           main/pa_request.C: #ifdef RESOURCES_DEBUG            tests/022_dir/b.txt, tests/022_dir/c.htm,
             tests/results/015.processed, tests/results/016.processed,
         * src/: main/compile.tab.C, targets/cgi/parser3.C: removed debug            tests/results/017.processed, tests/results/018.processed,
           info            tests/results/019.processed, tests/results/020.processed,
             tests/results/021.processed, tests/results/022.processed,
         * src/classes/hashfile.C: removed transaction from ^cache            tests/results/023.processed: methoded_array now contains all Mxxx
             classes SAPI::get_env now returns info on pool more tests
 2001-12-05  paf  
           * src/include/pa_array.h, src/include/pa_hash.h,
         * src/targets/cgi/: parser3.C: fatal error reporting fixed.  in            src/include/pa_memory.h, src/main/pa_charset.C, tests/001.html,
           IIS5 there were a prob with illegal call check            tests/002.html, tests/003.html, tests/004.html, tests/005.html,
             tests/006.html, tests/007.html, tests/008.html, tests/009.html,
 2001-12-04  paf            tests/010.html, tests/011.html, tests/012.html, tests/013.html,
             tests/014.html, tests/Makefile, tests/outputs/create-dir,
         * src/: classes/op.C, classes/table.C, include/pa_request.h,            tests/results/001.processed, tests/results/002.processed,
           main/pa_request.C: measures to log            tests/results/003.processed, tests/results/004.processed,
             tests/results/005.processed, tests/results/006.processed,
 2001-11-23  paf            tests/results/007.processed, tests/results/008.processed,
             tests/results/009.processed, tests/results/010.processed,
         * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,            tests/results/011.processed, tests/results/012.processed,
           main/pa_common.C, main/pa_db_table.C, main/pa_string.C,            tests/results/013.processed, tests/results/014.processed: hash
           types/pa_vhashfile.C: merged from _0014, 1            cloning fixed
   
         * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,  2003-02-25  paf
           main/pa_common.C, main/pa_db_table.C, types/pa_vhashfile.C:  
           hashfile bugfix2 more wrong sizes.  ^cache behaviour changed: if          * src/main/pa_common.C: typo fixed
           ^cache(33) would change  
   2003-02-24  paf
           0660 bits in file_write & hashfile create  
           * src/types/pa_vcookie.C: fixed all places with bad get_string(0)
         * src/main/: pa_db_table.C, pa_string.C: cache bugfix [wrong types            [one remained]
           after pa_string optimization]  
           * src/: include/pa_request.h, main/execute.C: few bad get_string(0)
 2001-11-22  paf            [should have been get_string(&pool)] todo: check other such calls
   
         * src/: classes/table.C, include/pa_table.h, main/pa_table.C:          * src/: main/compile.tab.C, main/execute.C, types/pa_vfile.h:
           table.offset[whence]            test10, bad lookups
   
         * src/classes/op.C: process cstr(,connection)            xxx* xxx=smartptr.get(); << is bad style, after ";" original
             object got destructed, and xxx points to sky
         * src/classes/op.C: process now gets its body on current language,  
           not as-is          * ChangeLog, src/classes/string.C: match bug fixed
   
         * src/main/untaint.C: ORIGINS mode removed UHTML          * src/types/pa_vmail.C: body [text/html] transcoded to
             $.charset[specified] now
         * src/main/untaint.C: ORIGINS mode was bad - forgot about optimize  
           bit          * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
             which failed to handle sigsetjmp+throw: crashed inside of
         * src/classes/xdoc.C: cached xslt [removed nocache forcing]            pre-throw code.  rewritten simplier [though duplicating
             closesocket code]
 2001-11-21  paf  
           * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
         * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h:            which failed to handle sigsetjmp+throw: crashed inside of
           <xsl:output output options made identical to xsl:output            pre-throw code.  rewritten simplier [though duplicating
           attributes exclusion:    cdata-section-elements what xalan can do            closesocket code]
           but that not used now:    it can escape and remove CDATA sections  
   2003-02-21  paf
         * src/: main/untaint.C, targets/cgi/parser3.C: optimized \r  
           produced by xslt          * operators.txt, src/targets/cgi/parser3.C, src/types/pa_vcookie.C:
             $cookie:name[$.expires[date << can be now]]
         * src/targets/cgi/parser3.C: removed debug cgi||1  
             written makefile with regression tests [raw]
         * src/main/: pa_string.C, untaint.C: cached some string::size() es  
           * src/targets/cgi/parser3.C: MAKE_TEST must be used inside of 'make
         * src/: classes/table.C, main/pa_string.C, main/untaint.C,            tests' only [it's not forcing CGI mode now] now use -H to output
           targets/cgi/parser3.C: table.append bug fixed: forgot to switch            CGI header when parser used in command line [useful for tests
           default language for {code}, it happen to change it's language            also]
           from CLEAN, so later refused to split by CLEAN \t  
           * src/targets/cgi/parser3.C: MAKE_TEST environment variable
 2001-11-20  paf            switches on CGI mode, and is used in regression tests
   
         * src/: classes/Makefile.am, classes/table.C, main/Makefile.am,          * src/: include/pa_request.h, main/pa_request.C,
           main/pa_exception.C, types/Makefile.am: moved ident.C & co to            targets/cgi/parser3.C, types/pa_vcookie.h, types/pa_venv.h: env
           bottom of dependeces, so that errors would popup quicklier, fixed            fixed
           line numbering in table::sql  
           * src/: include/pa_memory.h, main/pa_memory.C: inlined memory
 2001-11-19  paf            handling pa_*
   
         * src/: classes/op.C, include/pa_request.h, include/pa_string.h,          * src/: include/pa_memory.h, main/pa_memory.C, include/pa_array.h,
           include/pa_types.h, main/pa_globals.C, main/pa_request.C,            include/pa_exception.h, include/pa_pool.h, main/Makefile.am,
           main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,            main/main.dsp, main/pa_array.C, main/pa_pool.C: reorganized
           targets/isapi/parser3isapi.C, types/pa_wcontext.C,            memory handling files
           types/pa_wcontext.h: UL_CLEAN pieces now inherit UL_OPTIMIZED_BIT  
           at wcontext.write          * src/main/pa_array.C: pool::format_integer terminator fixed
   
         * src/targets/: Makefile.am, cgi/parser3.C: #if _MSC_VER          * src/: main/execute.C, targets/cgi/parser3.C: release mode now
           _set_new_handler            compiles OK test to show benefits of free
   
         * src/targets/: cgi/parser3.C, isapi/parser3isapi.C:          * src/: classes/file.C, classes/image.C, classes/mail.C,
           set_new_handler in apache&isapi            classes/op.C, classes/xdoc.C, main/pa_charset.C, main/pa_exec.C,
             main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
 2001-11-16  paf            types/pa_vimage.C, types/pa_vxdoc.h: fixed all cstr's that must
             use pool [as the one in ^process]
         * src/targets/cgi/parser3.C: pool debug @ die  
           * src/classes/op.C: fixed process.  sould now check for all cstr's
         * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:            -- some must use pool [as the one in ^process]
           removed 8 bytes from String, 2 bytes from  
           string::chunk::row::item  2003-02-20  paf
   
         * src/main/pa_string.C: removed 1+4 bytes from String          * src/: classes/date.C, classes/double.C, classes/file.C,
             classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
         * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,            classes/math.C, classes/op.C, classes/response.C,
           types/pa_vstring.C: removed 1+4 bytes from String            classes/string.C, classes/table.C, classes/void.C,
             classes/xdoc.C, classes/xnode.C, main/pa_string.C,
         * src/main/pa_pool.C: introducing estimating String::cstr_bufsize,            types/pa_method.h, types/pa_value.C, types/pa_vmethod_frame.h:
           0            string cmp fixed
   
         * src/: include/pa_globals.h, include/pa_string.h,          * src/: include/pa_config_fixed.h, targets/cgi/parser3.C: form
           include/pa_types.h, main/pa_globals.C, main/pa_pool.C,            values passed OK now
           main/pa_request.C, main/untaint.C, sql/pa_sql_driver.h,  
           targets/cgi/parser3.C: introducing estimating  2003-02-19  paf
           String::cstr_bufsize, 0  
           * src/: classes/form.C, include/pa_charset.h, include/pa_pool.h,
         * src/: main/pa_pool.C, include/pa_pool.h: die in pool::fail            main/pa_charset.C, main/pa_exception.C, main/pa_request.C,
             main/pa_stylesheet_manager.C, targets/cgi/parser3.C,
         * src/: targets/cgi/parser3.C, main/pa_pool.C: die in pool::fail            targets/isapi/parser3isapi.dsp, types/pa_vcookie.C,
             types/pa_vform.C, types/pa_vmail.C, types/pa_vxnode.C: found&kill
         * src/: main/execute.C, main/pa_pool.C, targets/cgi/parser3.C,            all remaning leaks resulted from pooled::malloc calls [excluding
           include/pa_pool.h: die in pool::fail            in gd -- planning complete rewrite extremely ugly code]
   
 2001-11-15  paf          * src/targets/isapi/: pa_pool.C, pool_storage.h: removed unneeded
             files
         * src/: include/pa_exception.h, main/execute.C, main/main.dsp,  
           main/pa_exception.C, targets/cgi/parser3.C: exception with  2003-02-17  paf
           dynamic buffer re-back now with counter  
           * src/: classes/date.C, classes/double.C, classes/file.C,
         * src/: include/pa_exception.h, main/pa_exception.C: exception with            classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
           static buffer back            classes/response.C, classes/string.C, classes/table.C,
             classes/xdoc.C, classes/xnode.h, include/pa_stack.h,
         * src/targets/cgi/parser3.C: std::            include/pa_stylesheet_connection.h,
             include/pa_stylesheet_manager.h, sql/pa_sql_driver.h,
         * src/: classes/classes.awk, include/pa_config_auto.h.in,            types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
           include/pa_config_includes.h: setnewhandler check            types/pa_vform.C, types/pa_vform.h, types/pa_vimage.h,
             types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
         * src/include/pa_config_auto.h.in: makes            types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
             types/pa_wcontext.h, types/pa_wwrapper.h: fixed all remained bugs
         * src/targets/cgi/parser3.C: set_new_handler started            of unitialized simple-typed field
   
 2001-11-14  paf          * src/: classes/classes.C, classes/classes.h, main/execute.C,
             main/pa_charset.C, main/pa_request.C: another bug of unitialized
         * src/: include/pa_common.h, main/pa_common.C: snprintf replacement            simple-typed field fixed.  todo: find&kill all like that one
           was wrong  
           * src/: main/execute.C, targets/cgi/pa_pool.C,
         * src/: include/pa_common.h, main/pa_common.C: snprintf replacement            targets/cgi/parser3.C, targets/cgi/pool_storage.h: few bugs in
           was wrong            debug output fixed
   
         * src/main/pa_request.C: z          * src/: include/pa_stack.h, main/compile.C, main/execute.C,
             main/pa_request.C: stack-stored items need extra .ref to prevent
         * src/: include/pa_common.h, main/pa_common.C: snprintf on buffer            object_ptr from delete[them]
           full returns win32 -1 solaris >buffer_size  
           * src/: classes/date.C, classes/op.C, classes/table.C,
           checked all that            classes/xdoc.C, classes/xnode.C, include/pa_array.h,
             include/pa_charset.h, main/Makefile.am, main/main.dsp,
         * src/classes/op.C: ^untaint{body} as-is default now            main/pa_charset.C, main/pa_common.C,
             main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
         * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,            targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
           types/pa_vstateless_class.h, types/pa_vstateless_object.h: merged            types/pa_vmail.C: fixed more leaks resulted from pooled::malloc
           with no_bad_constructors_try            calls
   
         * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,          * src/: main/pa_request.C, targets/cgi/parser3.C, types/pa_vfile.C:
           types/pa_vstateless_class.h, types/pa_vstateless_object.h: fixed            couple mem leaks rusulted from old pooled::malloc usage.
           this: $bred[^string::length[]] $bred[^response::clear[]]            todo:find more like those
           $bred[^int::int[]]  
           * src/main/: compile.C, compile_tools.C: 2*2!
           now VObject creation moved into overriden  
           VClass::create_new_value, thus 0 from create_new_value means that          * src/: include/pa_array.h, include/pa_request.h, main/execute.C:
           class has no ctors            stackItem fixed [there were no string on stack before]
   
 2001-11-13  paf          * src/: main/execute.C, main/pa_request.C,
             types/pa_vmethod_frame.C: first letters out OK
         * src/classes/classes.C: returned accedently removed if in foreach  
           callbacks [when hash no-0-restructure]          * src/: classes/classes.C, include/pa_array.h, include/pa_hash.h,
             include/pa_pool.h, include/pa_request.h, main/pa_request.C,
 2001-11-12  paf            main/pa_string.C, main/untaint.C, types/pa_value.h,
             types/pa_vint.h, types/pa_vstateless_class.h, types/pa_vstring.h,
         * src/main/pa_pool.C: changed xdoc createXXX politics, now string            types/pa_vvoid.h, types/pa_wcontext.h: class fields of simple
           passed as-is to method, xalan makes & into &amp; itself            type not initialized with zeros :( while class fields of class
             types initialized with default constructors.  learn C++
         * src/classes/date.C: date.roll parser2 alg used  
           * src/: classes/classes.awk, classes/double.C, classes/file.C,
         * src/: classes/classes.C, classes/hash.C, classes/xdoc.C,            classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
           include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,            classes/math.C, classes/xdoc.C, classes/xnode.C,
           main/pa_dictionary.C, main/pa_hash.C,            include/pa_array.h, include/pa_string.h, main/pa_exec.C,
           main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C: hash            types/pa_vmail.C: parser3.exe - 0 error(s), 0 warning(s)
           now does not containt 0 values. put 0 actullay removes.  no check  
           on 0 value in foreach now required  2003-02-14  paf
   
 2001-11-11  paf          * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
             13 link errors
         * src/sql/pa_sql_driver.h: removed extra constructor, doc  
           * src/: classes/file.C, include/pa_request.h, main/pa_request.C,
         * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: CRLF            main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
             types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
         * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql            types/pa_vimage.C, types/pa_vtable.C: all compiled, only 14 link
           driver initialize not const            errors :)
   
 2001-11-10  paf          * src/: classes/classes.C, classes/classes.awk, classes/file.C,
             classes/hash.C, classes/mail.C, classes/op.C,
         * src/main/pa_exec.C: doc            include/pa_common.h, include/pa_request.h, include/pa_sapi.h,
             main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C,
 2001-11-09  paf            targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C:
             classes.lib - 0 error(s), 0 warning(s) parser.C compiled
         * src/classes/: string.C, xdoc.C: xdoc::set{code} now untaints  
           param properly          * src/: classes/classes.dsp, classes/op.C, classes/string.C,
             classes/table.C, include/pa_common.h, include/pa_globals.h,
         * src/classes/string.C: string.save now does untainting before            include/pa_pool.h, include/pa_request.h, main/pa_globals.C,
           saving            main/pa_request.C, types/pa_value.h, types/pa_vhash.h,
             types/pa_vint.h, types/types.dsp: op compiled
         * src/main/pa_common.C: line endings fixing fixed last piece[was  
           still cstr oriented]          * src/: classes/classes.dsp, classes/response.C, classes/string.C,
             include/pa_dictionary.h, include/pa_string.h, main/pa_string.C,
         * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:            main/untaint.C, types/pa_vtable.h: string, response compiled
           line endings fixing got rid of cstr, now must work ok with post  
           multipart  2003-02-07  paf
   
         * src/types/pa_vform.C: line endings fixed at post / multipart /          * src/: classes/table.C, types/pa_vtable.h: table compiled
           not file  also now  
   2003-02-06  paf
 2001-11-08  paf  
           * src/: classes/mail.C, include/pa_request.h, main/pa_request.C:
         * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,            mail compiled
           include/pa_db_manager.h, include/pa_sql_driver_manager.h,  
           include/pa_stylesheet_manager.h, main/pa_charset_manager.C,          * src/: classes/image.C, classes/string.C, classes/xdoc.C,
           main/pa_db_manager.C, main/pa_sql_driver_manager.C,            include/pa_common.h, include/pa_hash.h, main/pa_common.C,
           main/pa_stylesheet_manager.C: restructured Cache manager to be            types/pa_vfile.h, types/pa_vimage.h: image compiled
           simple parent, not second parent [gcc 2.96 strangly refused to  
           call virtual from second parent]          * src/classes/: file.C, form.C: form compiled
   
         * src/: include/pa_common.h, main/Makefile.am,          * src/: classes/classes.dsp, classes/file.C, include/pa_common.h,
           targets/cgi/pa_pool.C: makes            include/pa_exec.h, main/pa_common.C, main/pa_exec.C,
             types/pa_vfile.C, types/pa_vfile.h: file compiled
         * src/: include/pa_request.h, main/pa_request.C,  
           targets/cgi/parser3.C, targets/isapi/parser3isapi.C: apache          * src/: classes/hash.C, classes/math.C, types/pa_vmath.C,
           'status' class enabler            types/pa_vmath.h: math compiled [win32]
   
           <Location /parser-status.html> ParserStatusAllowed </Location>          * src/: classes/hash.C, include/pa_hash.h, include/pa_table.h,
             types/pa_vstring.h: hash compiled
         * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,  
           include/pa_db_manager.h, include/pa_sql_driver_manager.h,  2003-02-04  paf
           include/pa_stylesheet_manager.h, main/main.dsp,  
           main/pa_cache_managers.C, main/pa_charset_manager.C,          * src/: classes/date.C, classes/hash.C, include/pa_exec.h,
           main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,            include/pa_hash.h, include/pa_request.h, include/pa_string.h,
           main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,            include/pa_table.h, main/pa_common.C, main/pa_exec.C,
           types/pa_vstatus.h: cache_managers, maybe-expiring every request            main/pa_string.C, types/pa_method.h, types/pa_vform.C,
           todo: apache 'status' class enabler            types/pa_vhash.h: hash 50% compiled
   
 2001-11-05  paf          * src/: classes/date.C, classes/file.C, classes/hash.C,
             classes/image.C, classes/mail.C, classes/math.C, classes/op.C,
         * src/main/: pa_db_connection.C, pa_db_manager.C: expiration from            classes/string.C, classes/table.C, classes/xdoc.C,
           debug to normal            classes/xnode.C, include/pa_request.h, main/pa_globals.C,
             main/pa_string.C: date compiled
         * src/main/: pa_db_connection.C, pa_db_manager.C, pa_request.C:  
           hence i removed skipping 0 values in hash::for_each-es we need to          * src/classes/: classes.dsp, double.C: double compiled
           check cleaned cache items manually. few more checks.  
           * src/: classes/date.C, classes/double.C, classes/file.C,
           expiring to 0 time was wrong, changed to 'now' time            classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
             classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
         * src/targets/cgi/parser3.C: read can return 0, that means sort of            classes/string.C, classes/table.C, classes/void.C,
           sig_pipe on freebsd [moko's experiments].   checked that in cgi,            classes/xdoc.C, classes/xnode.C, types/pa_vdouble.h,
           on apache already done :)            types/pa_vhash.h, types/pa_vint.h, types/pa_vstring.h,
             types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.h: int
         * src/main/: pa_db_connection.C, pa_db_manager.C: hence i removed            compiled
           skipping 0 values in hash::for_each-es we need to check cleaned  
           cache items manually          * src/: classes/date.C, classes/double.C, classes/file.C,
             classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
         * src/main/: pa_db_connection.C, pa_db_table.C:            classes/math.C, classes/op.C, classes/response.C,
           parser_multithreaded check was wrong            classes/string.C, classes/table.C, classes/void.C,
             classes/xdoc.C, classes/xnode.C, classes/xnode.h,
         * src/: classes/classes.C, classes/classes.h, classes/date.C,            types/pa_vvoid.h: void  compiled :)
           classes/double.C, classes/file.C, classes/form.C, classes/hash.C,  
           classes/hashfile.C, classes/image.C, classes/int.C,          * src/: include/pa_globals.h, main/pa_cache_managers.C,
           classes/mail.C, classes/math.C, classes/op.C, classes/response.C,            main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
           classes/string.C, classes/table.C, classes/void.C,            main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
           classes/xdoc.C, classes/xnode.C, classes/xnode.h,            main/pa_globals.C, main/pa_pool.C, main/pa_sql_driver_manager.C,
           include/pa_array.h, include/pa_charset_connection.h,            main/pa_string.C, main/pa_uue.C, main/untaint.C,
           include/pa_charset_manager.h, include/pa_common.h,            types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.C,
           include/pa_config_fixed.h, include/pa_config_includes.h,            types/pa_vimage.C, types/pa_vmath.C, types/pa_vrequest.C,
           include/pa_db_connection.h, include/pa_db_manager.h,            types/pa_vresponse.C, types/pa_vstateless_class.C,
           include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,            types/pa_vstatus.C, types/pa_vstring.C, types/pa_vtable.C,
           include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,            types/pa_wcontext.C, types/types.dsp: removed stupid
           include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,            value_includes.h
           include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,  
           include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,          * src/types/: pa_value.C, pa_value_includes.h, pa_vrequest.C:
           include/pa_sql_connection.h, include/pa_sql_driver_manager.h,            trying to remove stupid value_includes.h
           include/pa_stack.h, include/pa_string.h,  
           include/pa_stylesheet_connection.h,          * src/main/pa_exec.C: pa_exec compiled on win32
           include/pa_stylesheet_manager.h, include/pa_table.h,  
           include/pa_threads.h, include/pa_types.h, main/compile.C,          * src/main/pa_exec.C: libmain.a compiled on six [unix]
           main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,  
           main/execute.C, main/pa_array.C, main/pa_charset_connection.C,          * src/: include/pa_globals.h, include/pa_request.h,
           main/pa_charset_manager.C, main/pa_common.C,            types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
           main/pa_db_connection.C, main/pa_db_manager.C,            types/pa_vcookie.C, types/pa_vdate.h, types/pa_vfile.C,
           main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,            types/pa_vfile.h, types/pa_vmail.C, types/pa_vobject.C,
           main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,            types/pa_vrequest.C, types/pa_vstateless_class.C,
           main/pa_hash.C, main/pa_pool.C, main/pa_request.C,            types/pa_vstatus.C, types/pa_vtable.C: libtypes.a compiled gcc
           main/pa_socks.C, main/pa_sql_driver_manager.C,  
           main/pa_status_provider.C, main/pa_string.C,          * src/: include/pa_config_includes.h, include/pa_dictionary.h,
           main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,            main/pa_common.C, main/pa_dictionary.C, main/pa_exec.C,
           sql/pa_sql_driver.h, targets/cgi/pa_pool.C,            main/pa_socks.C: libmain.a gcc and mail.lib msvc++ compiled
           targets/cgi/pa_threads.C, targets/cgi/parser3.C,  
           targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,          * src/: include/pa_array.h, include/pa_config_includes.h,
           targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,            include/pa_dictionary.h, main/pa_dictionary.C, main/pa_exec.C,
           targets/isapi/pool_storage.h, types/pa_valiased.C,            main/pa_socks.C, main/pa_sql_driver_manager.C: gcc libmain.a
           types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,            compiled
           types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,  
           types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,          * src/main/pa_globals.C: merged changes from 1.149-1.150 (stupid
           types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,            name conflicts)
           types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,  
           types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,          * src/: main/compile_tools.h, main/execute.C, main/pa_table.C,
           types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,            types/pa_vmethod_frame.h, types/pa_vvoid.h: yuk: gcc on cygwin
           types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,            yelds "virtual memory exhausted" while trying to compile
           types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,            execute.C [eating up to 127MB]
           types/pa_vstateless_class.C, types/pa_vstateless_class.h,  
           types/pa_vstateless_object.h, types/pa_vstatus.h,  2003-02-03  paf
           types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.C,  
           types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,          * src/: include/pa_config_includes.h, include/pa_hash.h,
           types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,            include/pa_operation.h, include/pa_pool.h, include/pa_string.h,
           types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:            main/pa_common.C, types/pa_value.C, types/pa_value.h,
           $status:db fixed used not initialized in db_connection & db_table            types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
             types/pa_vint.h, types/pa_vjunction.h,
         * src/: include/pa_charset_connection.h, main/pa_charset_manager.C:            types/pa_vstateless_class.h, types/pa_vstring.h, types/types.dsp:
           $status:charset            started gcc compiling pa_common compiled
   
         * src/: classes/xdoc.C, include/pa_db_connection.h,          * src/: include/pa_exception.h, include/pa_pool.h,
           include/pa_stylesheet_connection.h,            main/pa_exception.C: exception gcc change #1
           include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C,  
           types/pa_vstatus.h: $status:stylesheet          * src/include/: Makefile.am, pa_hash.h, pa_pool.h: gcc refused to
             compile _P identifier. it replaced it to some strange 0x0000040
         * src/: include/pa_charset_manager.h, include/pa_db_manager.h,  
           include/pa_request.h, include/pa_sql_connection.h,          * src/types/: pa_vmath.C, pa_vmethod_frame.C: vmath compiled
           include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,  
           main/main.dsp, main/pa_charset_manager.C, main/pa_common.C,          * src/types/pa_vtable.C: vtable compiled
           main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,  
           main/pa_sql_driver_manager.C, main/pa_status_provider.C,          * src/types/: pa_vstring.C, pa_vstring.h: vstring compiled
           main/pa_stylesheet_manager.C, types/pa_vstatus.h,  
           types/pa_vxnode.C, types/types.dsp: started status parser class          * src/: include/pa_cache_managers.h, main/pa_request.C,
             types/pa_vstatus.C, types/pa_vstatus.h: vstatus compiled
 2001-11-01  paf  
           * src/types/pa_vstateless_class.C: vstateless_class compiled
         * src/include/pa_config_auto.h.in: makes  
           * src/types/: pa_vresponse.C, pa_vresponse.h: vresponse compiled
         * src/main/pa_hash.C: removed old extra include  
           * src/types/pa_vrequest.C: vrequest compiled
         * src/: classes/math.C, include/pa_common.h: HAVE_TRUNC HAVE_ROUND  
           checks [for hp, there are such in math.h]          * src/types/: pa_value.C, pa_value.h, pa_vclass.C, pa_vclass.h,
             pa_vobject.C, pa_vobject.h: vobject compiled
         * src/classes/op.C: ^for endless loop check strightened  
           * src/: classes/form.C, classes/mail.C, include/pa_request.h,
         * src/: classes/hash.C, classes/op.C, main/execute.C: changed root            main/pa_globals.C, main/pa_request.C, types/pa_value.h,
           behavior in native calls.  it left unchanged, so ^for ^foreach &            types/pa_vform.C, types/pa_vmail.C, types/pa_vmail.h: vmail
           co can use r.root to write their i & key,value there            compiled
   
         * src/classes/op.C: detected for var storage bug, fixed.          * src/types/: pa_vimage.C, pa_vimage.h: vimage compiled
           todo:foreach  
           * src/: include/pa_pool.h, main/pa_request.C, types/pa_value.C,
         * src/: classes/hash.C, classes/xdoc.C, classes/xnode.C,            types/pa_vclass.C, types/pa_vcookie.C, types/pa_vcookie.h,
           include/pa_hash.h, main/pa_hash.C, main/pa_request.C,            types/pa_vform.C, types/pa_vform.h, types/pa_vobject.h: vform
           types/pa_vhash.h, types/pa_vxnode.C: hash locking disabled            compiled
           changing of hash inside of foreach  
           * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
         * src/: classes/hash.C, classes/hashfile.C, types/pa_vhashfile.C:            main.lib - 0 error(s), 0 warning(s)
           ^hashfile.foreach[key|value]{body}[[separator]|{separator}] prev  
           were hash.foreach          * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
             types/pa_value.h, types/pa_vmethod_frame.h: execute compiled
         * src/: classes/hash.C, classes/op.C, types/pa_vmethod_frame.h,  
           types/pa_vstring.C, types/pa_vstring.h:  2003-01-31  paf
           ^foreach[key|value]{body}[[separator]|{separator}]  
           * src/: include/pa_array.h, include/pa_operation.h,
         * src/: classes/hash.C, include/pa_hash.h, main/pa_hash.C,            include/pa_request.h, main/execute.C, main/main.dsp,
           types/pa_vcookie.C: ^hash.delete[key]            types/pa_vjunction.h: started last file from main library:
             execute
 2001-10-31  paf  
           * src/: include/pa_request.h, include/pa_sapi.h,
         * src/main/: compile.C, pa_common.C: completely empty file now            main/compile.tab.C, main/compile.y, main/compile_tools.h,
           considered "read", not ignored [not perfect trick used]            main/pa_request.C, targets/cgi/parser3.C,
             targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vfile.h,
         * src/main/pa_common.C: simplier common ifdefs            types/pa_vhash.h: pa_request compiled
   
         * src/main/pa_common.C: typing bug in common - bad ifdeff          * src/: classes/op.C, classes/string.C, include/pa_common.h,
             include/pa_globals.h, include/pa_request.h,
         * src/main/pa_db_connection.C: z            include/pa_sql_connection.h, main/compile.tab.C, main/compile.y,
             main/execute.C, main/main.dsp, main/pa_common.C,
         * src/main/: pa_db_connection.C, pa_sql_driver_manager.C:       //            main/pa_globals.C, main/pa_request.C, types/pa_value.h,
           lockdetector flags            types/pa_vcode_frame.h, types/pa_vcookie.h, types/pa_vform.h,
                   dbenv.lk_detect=DB_LOCK_RANDOM;            types/pa_vmail.C, types/pa_vmail.h, types/pa_vresponse.h,
             types/pa_vtable.h, types/pa_wcontext.C, types/pa_wcontext.h,
         * src/main/pa_sql_driver_manager.C: hiding passwords and addresses            types/types.dsp: most pa_request compiled
           from accidental show [imagine user forgot @exception]  
           * src/: classes/classes.C, classes/classes.h, classes/date.C,
         * src/classes/table.C: ^table.save[[nameless|+append;]path]            classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
             classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
         * src/: classes/file.C, classes/image.C, classes/mail.C,            classes/op.C, classes/response.C, classes/string.C,
           classes/string.C, classes/xnode.C, include/pa_common.h,            classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
           main/pa_common.C: ^string.save[[append;]path]            classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
             include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
         * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,            include/pa_config_fixed.h, include/pa_config_includes.h,
           main/execute.C: \ in expression: int divide 10/3=3            include/pa_dictionary.h, include/pa_dir.h,
             include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
         * src/types/pa_vhashfile.h: hashfile  ^delete to do something only            include/pa_hash.h, include/pa_opcode.h, include/pa_operation.h,
           inside of ^cache            include/pa_pool.h, include/pa_request.h,
             include/pa_request_charsets.h, include/pa_request_info.h,
         * src/: include/pa_threads.h, main/pa_db_connection.C,            include/pa_sapi.h, include/pa_socks.h,
           main/pa_db_table.C, targets/cgi/pa_threads.C,            include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
           targets/isapi/pa_threads.C: libdb DB_THREAD flag only when really            include/pa_stack.h, include/pa_string.h,
           needed            include/pa_stylesheet_connection.h,
             include/pa_stylesheet_manager.h, include/pa_table.h,
 2001-10-30  paf            include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
             lib/ltdl/config_fixed.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
         * src/: classes/classes.dsp, main/main.dsp,            lib/md5/pa_md5.h, lib/md5/pa_md5c.c, lib/pcre/dftables.c,
           targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,            lib/pcre/get.c, lib/pcre/maketables.c, lib/pcre/pcre.c,
           types/types.dsp: enabled debug incremental compile            lib/pcre/pcre.h, lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
             main/compile.C, main/compile.tab.C, main/compile.y,
         * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:            main/compile_tools.C, main/compile_tools.h, main/execute.C,
           form post data line endings not reformatted now.            main/main.dsp, main/pa_cache_managers.C, main/pa_charset.C,
             main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
         * src/types/: pa_vform.C, pa_vform.h: AppendFormEntry length param            main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
           now required [had bug when file= has no value]            main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
             main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
         * src/main/: pa_db_connection.C, pa_db_manager.C, pa_db_table.C,            main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
           pa_exec.C, pa_request.C, pa_sql_driver_manager.C, pa_string.C:            main/untaint.C, sql/pa_sql_driver.h, targets/cgi/getopt.c,
           cstr(asis) default param removed            targets/cgi/getopt.h, targets/cgi/pa_pool.C,
             targets/cgi/pa_threads.C, targets/cgi/parser3.C,
         * src/classes/xdoc.C: rolled back {} in xdoc.createTextNode for now            targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
             targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
         * src/classes/xdoc.C: rolled back {} in xdoc.createElement for now            targets/isapi/pool_storage.h, types/pa_value.C, types/pa_value.h,
             types/pa_value_includes.h, types/pa_vbool.h, types/pa_vclass.C,
         * src/include/pa_dir.h: LOAD_DIR fixed            types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
             types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
         * src/types/pa_vform.C: VForm::AppendFormEntry {length convention            types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
           was broken} fix_line_breaks            types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
             types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
         * src/include/: pa_config_fixed.h, pa_pragma_pack_begin.h,            types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
           pa_pragma_pack_end.h, pa_string.h, pa_types.h: String & Origin            types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
           packed with #pragma pack            types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
             types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
         * src/include/pa_config_auto.h.in: pragma detection            types/pa_vresponse.h, types/pa_vstateless_class.C,
             types/pa_vstateless_class.h, types/pa_vstateless_object.h,
 2001-10-29  paf            types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
             types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
         * src/types/pa_wcontext.h: bitfield syntax stricter            types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
             types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
         * src/: classes/file.C, types/pa_vimage.C: image&file couple stack            types/pa_wcontext.h, types/pa_wwrapper.h: grammar compiled
           string hash.puts  
           * ChangeLog, src/classes/classes.h, src/classes/op.C,
         * src/include/pa_sql_connection.h: SQL_CONNECTION_FUNC_GUARDED name            src/include/pa_cache_managers.h, src/include/pa_charset.h,
             src/include/pa_charsets.h, src/include/pa_common.h,
         * src/include/pa_sql_connection.h: there were one wrong            src/include/pa_dictionary.h, src/include/pa_exception.h,
           SQL_CONNECTION_FUNC_GUARDED [failed]            src/include/pa_exec.h, src/include/pa_pool.h,
             src/include/pa_request.h, src/include/pa_sapi.h,
         * src/targets/isapi/pa_pool.C: added isapi&apache real_malloc debug            src/include/pa_sql_connection.h,
           param.someday either ifdef or remove it            src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
             src/include/pa_table.h, src/include/pa_uue.h, src/main/compile.C,
         * src/targets/cgi/: pa_pool.C, parser3.C: removed debug defines            src/main/compile.tab.C, src/main/compile_tools.C,
             src/main/compile_tools.h, src/main/main.dsp,
         * src/main/untaint.C: optimizing returned after debugging            src/main/pa_charset.C, src/main/pa_charsets.C,
             src/main/pa_common.C, src/main/pa_dictionary.C,
         * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,            src/main/pa_exception.C, src/main/pa_exec.C,
           main/untaint.C: memory hunging #pragma pack(1)            src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
             src/main/pa_string.C, src/main/pa_table.C, src/main/pa_uue.C,
           16 419 844 13 169 394            src/main/untaint.C, src/types/pa_value.C, src/types/pa_value.h,
             src/types/pa_vclass.h, src/types/pa_vcookie.C,
         * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,            src/types/pa_vcookie.h, src/types/pa_vdate.h,
           targets/cgi/pa_pool.C: String size_t replace to uint in proper            src/types/pa_vdouble.h, src/types/pa_venv.h,
           places [todo:Array]            src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.h,
             src/types/pa_vhash.h, src/types/pa_vimage.C,
         * src/: main/execute.C, targets/cgi/pa_pool.C,            src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.C,
           targets/cgi/parser3.dsp, types/pa_wcontext.h,            src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
           types/pa_wwrapper.h: debugging memory WContext flags to bits            src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
             src/types/pa_vobject.C, src/types/pa_vobject.h,
           total 5 652 652/158731 total 5 469 332/158731            src/types/pa_vrequest.C, src/types/pa_vrequest.h,
             src/types/pa_vresponse.C, src/types/pa_vresponse.h,
         * src/: include/pa_array.h, main/pa_array.C: debugging memory            src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
           Array:: without cache in get/put now            src/types/pa_vstateless_object.h, src/types/pa_vstatus.h,
             src/types/pa_vstring.h, src/types/pa_vtable.h,
           [Mon Oct 29 18:23:02 2001] total 5 796 092/158731 [Mon Oct 29            src/types/pa_vvoid.h, src/types/pa_wcontext.C,
           18:25:27 2001] total 5 652 652/158731            src/types/pa_wcontext.h, src/types/pa_wwrapper.h: ConstStringPtr
             died, long live StringPtr
         * src/: include/pa_string.h, main/pa_string.C,  
           targets/cgi/pa_pool.C: debugging memory String::fused_rows func  2003-01-30  paf
           now  
           * src/: include/pa_charset.h, include/pa_request.h,
           [Mon Oct 29 17:55:45 2001] total 5917436/158731 [Mon Oct 29            include/pa_sql_driver_manager.h, main/compile.tab.C,
           18:11:53 2001] total 5796092/158731            main/compile.y, main/compile_tools.h, main/pa_request.C,
             types/pa_vobject.h, types/pa_vstatus.h: grammar compiled
         * src/: classes/file.C, include/pa_hash.h, include/pa_string.h,  
           main/pa_globals.C, targets/cgi/pa_pool.C: debugging memory hash          * src/: classes/classes.h, include/pa_pool.h, main/compile.C,
           key ref now            main/compile.tab.C, types/pa_value.h, types/pa_vfile.h,
             types/pa_vhash.h, types/pa_vmethod_frame.h,
           [Mon Oct 29 16:01:17 2001] total 17050496/202647 [Mon Oct 29            types/pa_vstateless_class.C, types/pa_vstateless_class.h,
           17:11:17 2001] total 16867948/202658            types/types.dsp: vstateless_class compiled
   
         * src/: classes/file.C, classes/image.C, classes/string.C,          * src/main/compile.C: compile compiled
           classes/xdoc.C, include/pa_pool.h, include/pa_string.h,  
           main/execute.C, main/pa_array.C, main/pa_common.C,          * src/: include/pa_array.h, include/pa_operation.h,
           main/pa_hash.C, main/pa_sql_driver_manager.C, main/pa_string.C,            include/pa_table.h, main/compile_tools.C, main/compile_tools.h,
           main/untaint.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C,            main/pa_table.C: compile_tools compiled
           types/pa_vcookie.C, types/pa_vstring.h: debuggging memory.  
           string::as_int/double now usually uses stack, not heap [200K out          * src/: include/pa_operation.h, main/compile.y,
           of 17M :)] VString(String&) not copies reference [29M -> 17M]            main/compile_tools.C, main/compile_tools.h: started
             compile_tools. vagues ideas of how to free compiled code
         * src/main/pa_sql_driver_manager.C: ping to have services [old  
           hiding bug]          * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C,
             main/main.dsp, types/pa_value.C, types/pa_value.h,
         * src/Makefile.am: .am order            types/pa_vmethod_frame.h, types/pa_vstateless_class.h: value
             compiled
         * src/: include/pa_array.h, include/pa_charset_manager.h,  
           include/pa_db_connection.h, include/pa_db_manager.h,  2003-01-29  paf
           include/pa_db_table.h, include/pa_hash.h, include/pa_request.h,  
           include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,          * src/: include/pa_globals.h, include/pa_request.h,
           include/pa_threads.h, types/pa_valiased.h, types/pa_vhashfile.h,            main/pa_globals.C, main/pa_request.C, types/pa_value.h,
           types/pa_vstateless_class.h, types/pa_wcontext.h: gcc 3.0.1            types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
           required "friend class"            types/pa_wcontext.h, types/types.dsp: vmethodframe, pa_request.h
             compiled
           ../include/pa_request.h:51: friend declaration requires  
           class-key, i.e. `friend    class Temp_lang'          * src/lib/ltdl/config_fixed.h: libltdl compiled without warnings
             now
         * src/: include/pa_exception.h, include/pa_sql_connection.h,  
           main/pa_exception.C, main/pa_sql_driver_manager.C,          * src/: include/pa_array.h, include/pa_exception.h,
           sql/pa_sql_driver.h: sql driver impl changed in _throw part.            include/pa_pool.h, main/pa_exception.C: gd compiled
   
           the idea is to #1 jump to C++ some function to main body, where          * src/types/: pa_vfile.C, pa_vfile.h, pa_vimage.C, pa_vimage.h: gd
           every function stack frame has exception unwind information and            compiled
           from there... #2 propagate_exception()  
           * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
 2001-10-28  paf            types/pa_value.C, types/pa_value.h, types/pa_vfile.C,
             types/pa_vfile.h: vfile compiled
         * src/main/pa_db_connection.C: removed old consts  
           * src/: include/pa_common.h, include/pa_globals.h,
         * src/main/pa_db_connection.C: expire table [was accidently pasted            include/pa_string.h, main/pa_globals.C, types/pa_value.C,
           with wrong type/cast]            types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
             types/pa_vform.C, types/pa_vform.h: vcookie compiled
         * src/main/: pa_db_connection.C, pa_db_table.C: exception  
           translation          * src/: include/pa_exception.h, main/pa_cache_managers.C,
             main/pa_charsets.C, main/pa_common.C, main/pa_dir.C,
         * src/: classes/Makefile.am, targets/cgi/Makefile.am: db makes.            main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
           remember to build DB2 with -fexceptions!!!            main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
             main/pa_uue.C: #include "pa_value_includes.h" everywhere in main
         * src/main/pa_db_table.C: DB_RMW defed  
           * src/: include/pa_request_charsets.h, include/pa_request_info.h,
         * src/: include/pa_config_auto.h.in, include/pa_config_fixed.h,            main/main.dsp, main/untaint.C: more compiled
           include/pa_db_connection.h, include/pa_db_manager.h,  
           include/pa_db_table.h, main/pa_db_connection.C,          * src/: include/pa_charsets.h, include/pa_request.h,
           main/pa_db_table.C: db2 on linux with DB 2.4.14: (6/2/98)            include/pa_request_info.h, include/pa_string.h,
             main/pa_charsets.C, types/pa_vrequest.C, types/pa_vresponse.C,
 2001-10-27  paf            types/pa_vresponse.h: vrequest compiled
   
         * src/: classes/hashfile.C, include/pa_db_connection.h,          * src/types/: pa_value.h, pa_vdate.h, pa_vform.h, pa_vhash.h,
           include/pa_db_table.h, main/pa_db_connection.C,            pa_vobject.C, pa_vobject.h, pa_vrequest.C, pa_vresponse.C,
           main/pa_db_manager.C, main/pa_db_table.C, main/pa_globals.C,            pa_vresponse.h, pa_wcontext.h: vrequest compiled
           types/pa_vhashfile.C: DB2 ifdefs  
           * src/: classes/classes.h, include/pa_charset.h,
         * src/: classes/Makefile.am, include/pa_config_fixed.h,            include/pa_charsets.h, include/pa_globals.h, include/pa_pool.h,
           main/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:            include/pa_request.h, include/pa_string.h, main/main.dsp,
           makes with DB2            main/pa_charset.C, main/pa_charsets.C, main/pa_globals.C,
             main/untaint.C, types/pa_value.h, types/pa_vdouble.h,
         * src/: include/pa_config_auto.h.in, main/Makefile.am,            types/pa_vfile.h, types/pa_vint.h, types/pa_vmath.C,
           types/Makefile.am: makes db            types/pa_vrequest.C, types/pa_vrequest.h,
             types/pa_vstateless_class.h, types/pa_vstring.h,
         * src/: main/pa_globals.C, targets/cgi/parser3.dsp,            types/pa_vvoid.h: vrequest,vdouble,vint compiled
           targets/isapi/parser3isapi.dsp: vc projects libdb ifdefed into  
           globals.C          * src/: classes/classes.h, classes/math.C, include/pa_pool.h,
             include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
         * src/: classes/hashfile.C, include/pa_db_connection.h,            main/main.dsp, types/pa_value.h, types/pa_vbool.h,
           include/pa_db_table.h, main/pa_db_connection.C,            types/pa_vclass.h, types/pa_vdouble.h, types/pa_venv.h,
           main/pa_db_table.C: ^hashfile.clear[]            types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
             types/pa_vjunction.h, types/pa_vmath.C, types/pa_vmath.h,
         * src/classes/classes.awk: no $ in var names            types/pa_vobject.h, types/pa_vstateless_class.h,
             types/pa_vstateless_object.h, types/pa_vstatus.h,
         * src/main/: pa_db_connection.C, pa_db_manager.C: db expiration            types/pa_vstring.h, types/types.dsp: vmath compiled
           connection&table [forgotten calls]  
   2003-01-28  paf
 2001-10-26  paf  
           * src/: classes/classes.h, classes/date.C, classes/file.C,
         * src/main/pa_db_connection.C: db checkpoints            classes/hash.C, classes/image.C, classes/table.C, classes/xdoc.C,
             classes/xnode.h, main/execute.C, main/main.dsp, types/pa_value.h,
         * src/: include/pa_db_connection.h, main/pa_db_connection.C: db            types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C,
           checkpoints            types/pa_vobject.h, types/pa_vstateless_class.h: started main:
             compile_tools
         * src/classes/xdoc.C: xdoc createTextNode createElement UL_XML  
           default. but entities still reparsed. todo: tothink          * src/: include/pa_charset.h, include/pa_exception.h,
             include/pa_request.h, include/pa_string.h, main/untaint.C:
         * src/main/pa_db_connection.C: db recover mech 2            untaint compiled
   
         * src/: classes/hashfile.C, include/pa_db_connection.h,          * ChangeLog, src/include/pa_array.h, src/include/pa_string.h,
           include/pa_db_manager.h, include/pa_db_table.h,            src/main/execute.C, src/main/untaint.C, src/types/pa_vmail.C:
           include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,            more compiled.  struck with string::store_to needing to know
           main/pa_db_table.C, main/pa_hash.C, types/pa_vhashfile.C,            source/client charsets
           types/pa_vhashfile.h: db connections & tables now cached at  
           create time & multithreaded          * src/: include/pa_exception.h, include/pa_uue.h, main/pa_uue.C,
             types/pa_vfile.h: uue compiled
         * src/: classes/xdoc.C, types/pa_vxdoc.h: transform2 for  
           parsed_source          * src/: include/pa_table.h, main/pa_string.C, main/pa_table.C:
             table compiled
         * src/main/pa_db_connection.C: about to remove connection from  
           vhashfile          * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
             main/pa_globals.C, main/pa_sql_driver_manager.C: globals compiled
         * src/: main/pa_db_table.C, classes/hashfile.C: db: child  
           transaction commit/rollback responsibility left to parent [as it          * src/: include/pa_charset.h, main/pa_charset.C,
           sould - else there were a bug with double free]            main/pa_charsets.C: charset/s simplified [charset::pool_for_load
             introduced]
         * src/include/pa_db_table.h: db: child transaction commit/rollback  
           responsibility left to parent [as it sould - else there were a          * src/: classes/date.C, include/pa_charset.h,
           bug with double free]            include/pa_charsets.h, include/pa_globals.h, main/pa_charset.C,
             main/pa_charsets.C, main/pa_globals.C, main/pa_request.C:
 2001-10-25  paf            pa_charsets compiled
   
         * src/: classes/hashfile.C, include/pa_common.h,          * src/: include/pa_array.h, include/pa_exec.h, include/pa_hash.h,
           include/pa_db_connection.h, include/pa_db_manager.h,            include/pa_pool.h, main/pa_exec.C: pa_exec win32 compiled
           main/main.dsp, main/pa_db_connection.C, main/pa_db_manager.C,  
           types/pa_vhashfile.C, types/pa_vhashfile.h,          * src/: include/pa_pool.h, main/pa_common.C, types/pa_vdouble.h:
           include/pa_db_table.h, main/pa_db_table.C: started db_home            common compiled
           [multiple, cached] todo: autorecover [tried, but not succeded,  
           yet]          * src/: include/pa_charsets.h, main/pa_charsets.C,
             main/pa_sql_driver_manager.C: pa_charsets compiled
         * src/include/pa_dir.h: ancient gpf on dir not found fixed  
           * src/: include/pa_array.h, include/pa_charset.h,
         * src/: include/pa_db_connection.h, main/pa_db_manager.C:            include/pa_charsets.h, include/pa_pool.h,
           transaction parent passed            include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
             include/pa_stack.h, include/pa_string.h,
 2001-10-24  parser            main/pa_sql_driver_manager.C, types/pa_vhash.h, types/pa_vint.h:
             sql_driver_manager compiled
         * src/classes/Makefile.am: makes  
           * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: ukranian
         * src/targets/: cgi/pool_storage.h, isapi/parser3isapi.C,            letter i with two dots added to koi, all ukranian letters added
           isapi/pool_storage.h: pool_storage fixed            to win1251.
   
         * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C,            typographic simbol 0xb9 deleted from win1251 [strange one & were
           types/pa_vform.h: form fix_line_breaks            abscent from koi]
   
         * src/targets/cgi/pool_storage.h: makes  2003-01-27  paf
   
         * src/: classes/Makefile.am, targets/cgi/Makefile.am,          * src/: include/pa_exception.h, include/pa_sql_connection.h,
           targets/cgi/pool_storage.h: makes            include/pa_sql_driver_manager.h, include/pa_string.h,
             main/pa_common.C, main/pa_exec.C, main/pa_sql_driver_manager.C,
         * src/sql/pa_sql_driver.h: version            sql/pa_sql_driver.h: paused on sql_manager
   
         * src/: include/pa_common.h, main/Makefile.am, main/pa_common.C,          * src/: include/pa_cache_managers.h, include/pa_pool.h,
           types/pa_vform.C, types/pa_vform.h: .am            include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
             include/pa_stack.h, main/pa_sql_driver_manager.C,
         * src/main/: pa_db_connection.C, pa_db_manager.C: hashfile setted            types/pa_vtable.h, types/pa_vvoid.h: vtable compiled
           this: DB_RMW Acquire write locks instead of read locks when doing  
           the retrieval. Setting this flag may decrease the likelihood of          * src/: classes/op.C, include/pa_globals.h, include/pa_hash.h,
           deadlock during a read-modify-write cycle by immediately            include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
           acquiring the write lock during the read part of the cycle so            include/pa_table.h, main/pa_sql_driver_manager.C,
           that another thread of control acquiring a read lock for the same            main/pa_table.C: table compiled
           item, in its own read-modify-write cycle, will not result in  
           deadlock          * src/: include/pa_cache_managers.h, main/pa_cache_managers.C:
             cache_managers compiled
         * src/targets/isapi/parser3isapi.dsp: doc  
           * src/: include/pa_array.h, include/pa_charset.h,
         * src/: classes/hashfile.C, types/pa_vhashfile.h: hashfile 1            include/pa_pool.h, main/pa_charset.C: charset compiled
   
         * src/: classes/hashfile.C, include/pa_request.h: hashfile.cache 0          * src/: include/pa_pool.h, main/pa_common.C: common compiled
   
         * src/: classes/hashfile.C, include/pa_db_connection.h,          * src/: include/pa_array.h, include/pa_common.h, include/pa_hash.h,
           main/pa_db_connection.C: hashfile expired deleted from db when            include/pa_pool.h, include/pa_string.h, main/pa_common.C,
           get & iterate            main/pa_string.C, types/pa_value.C, types/pa_value.h,
             types/pa_vhash.h, types/pa_vint.h, types/pa_vstateless_class.h,
         * src/: main/pa_db_connection.C, types/pa_vhashfile.C: hashfile            types/pa_wcontext.C, types/pa_wcontext.h: wcontext compiled
           expiring 1  
   2003-01-24  paf
         * src/types/: pa_vhashfile.C, pa_vhashfile.h: hashfile expiring 0  
           * src/: classes/classes.C, classes/classes.h, include/pa_array.h,
         * src/: main/pa_db_connection.C, types/pa_vhashfile.C:            include/pa_common.h, include/pa_globals.h, include/pa_hash.h,
           db_connection not bothers with key when not returning expired            include/pa_pool.h, include/pa_string.h, main/pa_common.C,
           data            main/pa_globals.C, main/pa_string.C, types/pa_value.h,
             types/pa_vbool.h, types/pa_vdouble.h, types/pa_vhash.h,
         * src/: include/pa_db_connection.h, main/pa_db_connection.C,            types/pa_vint.h, types/pa_vjunction.h,
           types/pa_vhashfile.C: db_cursor constructor public now            types/pa_vstateless_class.h, types/pa_vstateless_object.h,
             types/pa_vstatus.h, types/pa_vstring.h: more patched
         * src/: include/pa_db_connection.h, main/pa_db_connection.C,  
           types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile data          * src/: classes/op.C, include/pa_array.h, include/pa_exception.h,
           stamped, todo: put_element analize            include/pa_hash.h, include/pa_pool.h, include/pa_string.h,
             include/pa_table.h, main/pa_dictionary.C, main/pa_exception.C,
         * src/: include/pa_db_connection.h, include/pa_string.h,            main/pa_string.C, main/pa_table.C: string compiled
           main/pa_db_connection.C, main/pa_string.C: hashfile pieced  
           serialize. todo stamp          * src/: include/pa_array.h, include/pa_common.h,
             include/pa_dictionary.h, include/pa_exception.h,
 2001-10-23  parser            include/pa_pool.h, include/pa_string.h, include/pa_table.h,
             main/pa_common.C, main/pa_dictionary.C, main/pa_exception.C,
         * src/: classes/file.C, classes/hash.C, classes/hashfile.C,            main/pa_string.C: dictionary compiled
           classes/image.C, classes/mail.C, classes/response.C,  
           classes/string.C, classes/table.C, classes/xdoc.C,  2003-01-23  paf
           include/pa_config_fixed.h, include/pa_db_connection.h,  
           main/pa_common.C, main/pa_db_connection.C, main/pa_request.C,          * src/: include/pa_array.h, include/pa_common.h,
           types/pa_value.h, types/pa_vcookie.C, types/pa_vhash.h,            include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
           types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vresponse.h,            include/pa_request.h, include/pa_string.h, main/pa_common.C,
           types/pa_vtable.C: ^hashfile.hash[]            main/pa_exception.C, main/pa_globals.C, types/pa_value.C,
             types/pa_value.h: resurrected pool in new sense: now it's
         * src/: classes/hashfile.C, classes/xdoc.C,            factory, producing&accounting memory chunks for read[autofree]
           include/pa_config_fixed.h, main/pa_db_manager.C,            buffers
           main/pa_globals.C: ifdefs so it compiled without db  
           * src/: include/pa_array.h, include/pa_exception.h,
         * src/: classes/hashfile.C, include/pa_db_connection.h,            include/pa_hash.h, include/pa_pool.h, include/pa_table.h,
           include/pa_db_manager.h, main/pa_db_connection.C,            main/pa_exception.C, main/pa_table.C: table compiled
           main/pa_db_manager.C, types/pa_vhashfile.h:  
           ^hashfile.transaction{code} ^hashfile:clear[filename]          * src/: classes/image.C, classes/op.C, include/pa_array.h,
           ^hashfile.delete[key]            include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
             include/pa_pool.h, include/pa_pragma_pack_begin.h,
 2001-10-22  parser            include/pa_pragma_pack_end.h, include/pa_sapi.h,
             include/pa_string.h, include/pa_table.h, include/pa_types.h,
         * src/targets/: cgi/pa_pool.C, cgi/parser3.C, cgi/parser3.dsp,            main/pa_exception.C, main/pa_globals.C, main/pa_string.C,
           cgi/pool_storage.h, isapi/pool_storage.h: cgi += pool cleanups            main/pa_table.C: aint that easy
   
         * src/: classes/classes.dsp, classes/hashfile.C, classes/xdoc.C,          * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
           classes/xnode.C, include/pa_charset_connection.h,            main/main.dsp: continued with Hash
           include/pa_db_connection.h, include/pa_db_manager.h,  
           include/pa_exception.h, include/pa_sapi.h,          * src/main/pa_common.C: connect_string allocated on heap[wes on
           include/pa_sql_connection.h, include/pa_sql_driver_manager.h,            stack] now. and exception can be reported OK now [can be reported
           include/pa_stylesheet_connection.h,            outside of pro c with that stack]
           include/pa_stylesheet_manager.h,  
           include/pa_xslt_stylesheet_manager.h, main/main.dsp,  2003-01-22  paf
           main/pa_db_connection.C, main/pa_db_manager.C,  
           main/pa_exception.C, main/pa_globals.C, main/pa_pool.C,          * src/: include/pa_array.h, include/pa_charset.h,
           main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,            include/pa_dictionary.h, include/pa_hash.h, include/pa_pool.h,
           main/pa_xslt_stylesheet_manager.C, targets/cgi/parser3.C,            include/pa_string.h, main/pa_array.C, main/pa_hash.C,
           targets/isapi/parser3isapi.C, types/pa_vhashfile.C,            main/pa_pool.C, main/pa_string.C: started auto_ptr.  PA_Object is
           types/pa_vhashfile.h, types/pa_vxdoc.C, types/pa_vxnode.C,            base: contains references_count.  auto_ptr template calls
           types/types.dsp: hashfile 0            add_ref/release
   
         * src/types/pa_vhashfile.C: z  2003-01-21  paf
   
         * src/: classes/classes.dsp, classes/hashfile.C,          * src/: classes/classes.C, classes/classes.h, classes/date.C,
           include/pa_config_fixed.h, main/execute.C,            classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
           targets/cgi/parser3.dsp, types/pa_vhashfile.C,            classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
           types/pa_vhashfile.h, types/types.dsp: hashfile -100            classes/op.C, classes/response.C, classes/string.C,
             classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
         * src/targets/isapi/parser3isapi.C: SEH minor ifdef changes            classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
             include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
         * src/: include/pa_exception.h, include/pa_request.h,            include/pa_config_fixed.h, include/pa_config_includes.h,
           main/execute.C, main/pa_exception.C, main/pa_request.C,            include/pa_dictionary.h, include/pa_dir.h,
           targets/cgi/parser3.C, targets/cgi/parser3.dsp,            include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
           types/pa_vclass.h, types/pa_vobject.h: stack backtrace            include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
             include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
 2001-10-19  parser            include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
             include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
         * src/include/pa_pool.h: header            include/pa_stack.h, include/pa_string.h,
             include/pa_stylesheet_connection.h,
         * src/main/pa_pool.C: auto compiled on gcc            include/pa_stylesheet_manager.h, include/pa_table.h,
             include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
         * src/classes/image.C: comment            lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
             lib/pcre/pcre_parser_ctype.c, main/compile.C,
         * src/: include/pa_pool.h, main/pa_common.C: makes            main/compile_tools.C, main/compile_tools.h, main/execute.C,
             main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
         * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,            main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
           types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,            main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
           types/pa_vxnode.h: xnode clone got freed            main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
             main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
         * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,            main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
           include/pa_types.h, main/pa_pool.C: first c++ exceptions result:            main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
           can free up xalandomstring resulting from pool::transcode            targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
             targets/cgi/parser3.C, targets/cgi/pool_storage.h,
         * src/: classes/Makefile.am, classes/xdoc.C, classes/xnode.C,            targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
           include/pa_config_fixed.h, include/pa_exception.h,            targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
           include/pa_stylesheet_connection.h, main/pa_charset_connection.C,            types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
           main/pa_exception.C, main/pa_pool.C, types/pa_vxdoc.C,            types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
           types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: switched            types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
           to c++ exceptions 1xml configure fixed to exclude xalan-patch            types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
           from non-xml compile            types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
             types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
         * src/main/pa_request.C: pool:: context - get_context            types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
             types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
         * src/: classes/classes.h, classes/date.C, classes/double.C,            types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
           classes/file.C, classes/form.C, classes/hash.C, classes/image.C,            types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
           classes/int.C, classes/mail.C, classes/math.C, classes/op.C,            types/pa_vstateless_class.C, types/pa_vstateless_class.h,
           classes/string.C, classes/table.C, classes/void.C,            types/pa_vstateless_object.h, types/pa_vstatus.C,
           include/pa_config_fixed.h, include/pa_exception.h,            types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
           include/pa_pool.h, include/pa_request.h, include/pa_types.h,            types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
           main/compile.C, main/compile_tools.C, main/execute.C,            types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
           main/pa_array.C, main/pa_common.C, main/pa_dictionary.C,            types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
           main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,            types/pa_wwrapper.h, main/compile.tab.C, main/compile.y:
           main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,            2002->2003
           main/pa_string.C, main/pa_table.C, main/untaint.C,  
           targets/cgi/parser3.C, targets/isapi/parser3isapi.C,  2003-01-16  paf
           types/pa_value.h, types/pa_vbool.h, types/pa_vdouble.h,  
           types/pa_vfile.h, types/pa_vform.C, types/pa_vhash.h,          * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
           types/pa_vint.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,            src/main/pa_globals.C: http:// introducing     $.any-status(1)
           types/pa_vstateless_class.h, types/pa_vtable.C,  
           types/pa_wcontext.C, types/pa_wwrapper.h: switched to c++          * operators.txt, src/include/pa_config_fixed.h,
           exceptions 0            src/main/pa_common.C: http request now return status. and not
             fail on status!=200
         * src/classes/classes.awk: $ removed  
   2003-01-15  paf
 2001-10-18  parser  
           * src/main/pa_globals.C: localized pa_xmlFileRead/Close
         * src/types/pa_vcookie.C: cookie:CLASS  
   2003-01-14  paf
         * src/main/main.dsp: project  
           * src/lib/ltdl/: config.guess, config.sub, install-sh, missing,
         * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C: vxdoc            mkinstalldirs: removed some ancient files [they in / really]
           set_document & ctor question "who owns document" solved  
           * src/lib/ltdl/: config_fixed.h, libltdl.dsp, ltdl.c: ltdl.c
         * src/: classes/xdoc.C, main/pa_pool.C: extra free removed            regretfully needed patch in two places.  in config_fixed.h made
             stubs for lib to compile in MSVC
         * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,  
           main/pa_pool.C: encoding in dom creating funcs  2003-01-13  paf
   
         * src/: classes/xdoc.C, types/pa_vxdoc.h: dom created by create can          * config.guess, config.sub, ltmain.sh: removed last piece of
           be transformed now            configure.in(libtool) hacks
   
         * src/classes/xdoc.C: dom created by create can be transformed now          * src/lib/ltdl/: COPYING.LIB, acinclude.m4, config.h,
             config_auto.h.in, configure, configure.in, libltdl.dsp, ltdl.c,
         * src/classes/xdoc.C: z            ltdl.h: moved to latest libtool (1.4.3)
   
         * src/classes/xdoc.C: comment  2003-01-10  paf
   
         * src/: classes/xdoc.C, classes/xnode.C, main/compile.tab.C: xdoc          * src/lib/ltdl/: configure, configure.in: PROG_NM
           create now uses XercesDocumentBridge, appendChild&co now works  
           * src/main/pa_globals.C: moved to latest xml lib versions, changed
         * src/include/pa_stylesheet_connection.h: prev stylesheet destroyed            patches.        libxml2 >= 2.5.1
           @ recompile            [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz]        libxslt >= 1.0.23
             [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz]        gdome2 >= 0.7.2
         * src/main/: compile.tab.C, compile.y, pa_request.C: ^: no colon in            [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
           $origin @exception[  
           * INSTALL: moved to latest versions of xml libs       libxml2 >=
         * src/classes/: xdoc.C, xnode.C: xdoc::create[] now. and all dom            2.5.1 [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz]       libxslt >=
           tag names forced to XML lang            1.0.23 [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz]       gdome2 >=
             0.7.2 [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
         * src/: classes/classes.dsp, classes/xdoc.C, types/types.dsp: fiew  
           leechy-found bugs in code&doc fixed  2003-01-09  paf
   
 2001-10-17  parser          * INSTALL: xml,xslt,gdome lib urls updated
   
         * src/: classes/classes.dsp, classes/string.C, main/pa_string.C,          * config.guess, config.sub, missing, mkinstalldirs,
           types/pa_vxnode.h, types/types.dsp: string::mid fixed, string.mid            src/include/pa_config_auto.h.in, src/lib/ltdl/config_auto.h.in,
           n functionality preserved            src/lib/ltdl/configure, src/lib/ltdl/configure.in,
             src/targets/cgi/Makefile.am: moved to autoconf 2.57 & automake
         * src/types/pa_vimage.h: removed unused vimage::save            1.7.2
   
 2001-10-16  parser          * depcomp: moving to automake 1.7.2
   
         * src/: classes/string.C, main/pa_string.C: $string.mid(p[;n])  2002-12-27  paf
   
         * src/classes/: xnode.C: removed few dom returns & changed op.txt          * src/include/pa_version.h: 0007
   
         * src/types/: pa_vhash.h, pa_vtable.h: hash can be used as boolean          * src/doc/: aliased.dox, index.dox, module.dox, pooled.dox: removed
             outdated parts, made links to language docs
         * src/classes/image.C: image.copy tolerance  
           * src/include/pa_config_auto.h.in: comment
         * src/classes/image.C: ::CopyResampled made gd2beta+my hands, very  
           ineffective, but works for small paleted image  2002-12-26  paf
   
         * src/types/pa_vimage.C: comment          * src/classes/file.C: ^file:fullpath[a.gif] when document root did
             not contain trailing / fixed.
         * src/classes/image.C: gd size/resize bugfix  
           * INSTALL: changing SAFE_MODE politics
         * src/: classes/classes.dsp, main/main.dsp,  
           targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,          * src/include/pa_config_auto.h.in: changing SAFE_MODE politics
           types/types.dsp: ident >nul 2>&1  
           * src/main/: pa_common.C, pa_exec.C: changing SAFE_MODE politics
         * src/main/pa_common.C: \r\n -> \n   DOS \r -> \n Macintosh on all  
           systems  2002-12-25  paf
   
         * src/: classes/image.C, types/pa_vimage.h: ^image.copy[source](src          * src/main/pa_globals.C: optimized-xml
           x;src y;src w;src h;dst x;dst y[;dest w[;dest h]])  
           * src/main/pa_globals.C: optimized-as-is
 2001-10-15  parser  
   2002-12-24  paf
         * src/main/execute.C: z  
           * src/main/: pa_common.C, pa_pool.C: pool::copy on zero size|ptr
         * src/classes/: xdoc.C:     !::create{qualifiedName}            fixed [were really called with zero size when .html?a=&b=]
   
         * src/types/pa_vxnode.C:     document_type_node.          * src/classes/mail.C: $MAIL in @conf now invalid when configured
                   !readonly attribute DOMString name            with --with-sendmail
               !notation_node.  
                   !readonly attribute DOMString publicId          * src/main/pa_exec.C: fork/pipe error now [old always-pipe-error
                   !readonly attribute DOMString systemId            fixed]
   
         * src/types/: pa_vcode_frame.h, pa_wcontext.C: code_frame fixed -  2002-12-23  paf
           ::write badly passed string too transparently [failed to  
           intercept it]          * src/types/pa_vcookie.C: $cookie:field[put value] fixed [were
             ignoring parameters & were storing only string with default
         * src/: classes/xdoc.C, classes/xnode.C, include/pa_config_fixed.h,            expires
           include/pa_request.h, main/pa_sql_driver_manager.C,  
           types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,          * src/main/pa_charset.C: From: "Victor Fedoseev" <vvf_ru@mail.ru>
           types/pa_vxnode.h: DOM1 major addtion, only few            To: "Alexandr Petrosian (PAF)" <PAF@design.ru> Sent: Monday,
           attributes/methods left            December 23, 2002 4:22 AM Subject: bug â
             Charset::transcode_buf2xchar
 2001-10-13  parser  
   2002-12-20  paf
         * src/: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,  
           targets/isapi/parser3isapi.C: isapi&cgi couple non-pooled mallocs          * src/targets/cgi/parser3.C: removed last \n appending in non-win32
           in main handler            non-cgi [script] runs
   
         * src/targets/isapi/pool_storage.h: isapi pool storage reverse  2002-12-19  paf
           cleanups & frees order  
           * INSTALL: --without-iconv recommended [it crashes on some systems
         * src/types/pa_vcode_frame.h: couple comments            [tested on elik]] moreover, it's not needed there [parser
             registers charsets itself]
         * src/: main/execute.C, types/pa_vcode_frame.h: vcodeframe made  
           transparent enough to handle hash if creation&passing          * INSTALL: --without-iconv recommended [it crashes on some systems
             [tested on elik]]
         * src/: include/pa_config_fixed.h, main/execute.C,  
           main/pa_exception.C: noticed that vcodeframe not transparent          * operators.txt, src/include/pa_globals.h,
           enough, would change now            src/include/pa_request.h, src/main/pa_globals.C,
             src/main/pa_request.C: $response:download
 2001-10-12  parser  
           * src/classes/mail.C: 'to' check bugfix [now checked only on ms
         * src/targets/isapi/parser3isapi.C: xalan&xerces multithread bug            compiler [win32]].
           fixed. initialization&free on each thread!  
   2002-12-18  paf
         * src/classes/: double.C, int.C, string.C: sql{}[$.default[({})]]  
           handling changed: now type of default param analized always, not          * src/classes/xdoc.C: doc->URL on xdoc.load set correctly now
           only at problem time, thus helping early problem spotting  
   2002-12-17  paf
         * src/: classes/classes.dsp, classes/xdoc.C, main/compile.tab.C,  
           main/main.dsp, main/pa_globals.C, targets/cgi/parser3.C,          * src/targets/cgi/parser3.C: merged die&iis changes
           targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,  
           targets/isapi/parser3isapi.dsp, types/types.dsp: xalan&xerces          * src/targets/cgi/parser3.C: 1. on win32 in die: abort() reverted
           multithread bug fixed. initialization&free on each thread!            to exit(1) 2. more flexible iilegal call check
   
 2001-10-11  parser  2002-12-16  paf
   
         * src/classes/xnode.C: xnode.selectSingle now          * ltmain.sh: some automakes silly insist on having this handy
   
         * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,          * src/main/untaint.C: filespec russian small 'r' changed to latin
           include/pa_pool.h, include/pa_stylesheet_connection.h,            'p' bug fix
           main/pa_exception.C, main/pa_pool.C: moved xslt exceptions  
           convertors out of Pool into Exception  2002-12-15  paf
   
         * src/main/pa_string.C: const          * src/main/untaint.C: filespec russian small 'r' changed to latin
             'p'
         * src/: include/pa_string.h, main/pa_string.C: restructured string:  
           linked pieces of same language together prior to String::replace          * configure.in, src/include/pa_config_auto.h.in,
             src/main/compile.C, src/main/pa_common.C: merged small changes
         * src/classes/hash.C:     !^hash.add[addme]            from branch 6 to HEAD
               !^hash.sub[subme]  
               !^a.union[b] = new          * src/main/compile.C: removed warning
               !^a.intersection[b] = new  
               !^a.intersects[b] = bool          * src/main/pa_common.C: ftruncate having checked
   
         * src/classes/hash.C:     !^hash::append[append_from]          * configure.in, src/include/pa_version.h: new version
   
         * src/: classes/hash.C, types/pa_vhash.h:  2002-12-14  paf
           !^hash::create[[copy_from]]  
           * src/classes/table.C: removed unnecessary code
         * src/: classes/string.C, classes/table.C, include/pa_globals.h,  
           include/pa_string.h, main/pa_globals.C, main/pa_string.C,          * src/sql/pa_sql_driver.h: exception type fixed
           main/untaint.C, types/pa_vvoid.h: untaint lang origins table  
           fixed.  got rid of empty_string, which caused errors - it hasnt  2002-12-09  paf
           exception but somebody[value.bark] tried to throw it on it's pool  
           * src/types/pa_vvoid.h: $void.store[now] error
         * src/include/pa_config_auto.h.in: makes  
           * src/targets/cgi/parser3.C: ::die now tries to write core dump
 2001-10-10  parser  
           * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: ::die now
         * src/: classes/op.C, main/compile.tab.C: ^error[msg]            tries to write core dump
   
         * src/main/: compile.tab.C, compile.y: ^a[          * src/targets/cgi/parser3.C: ::die now tries to write core dump
   
           @next_method  << now unclosed ] would be reported here          * src/: classes/hash.C, classes/string.C, classes/table.C,
             classes/void.C, main/pa_sql_driver_manager.C,
         * src/main/: compile.tab.C, compile.y: ^a[^b] more informative            sql/pa_sql_driver.h: changed exception handling mech in sql
           compile error            handlers #2
   
 2001-10-09  parser          * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: changed
             exception handling mech in sql handlers
         * src/: classes/Makefile.am, main/Makefile.am,  
           targets/cgi/Makefile.am, types/Makefile.am: makes          * src/sql/pa_sql_driver.h: changed exception handling mech in sql
             handlers
         * src/classes/Makefile.am: makes  
           * src/: classes/hash.C, classes/string.C, classes/table.C,
         * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: xml transform            classes/void.C, main/pa_sql_driver_manager.C,
           win32 errors intercepted [xalan transformer patched and            sql/pa_sql_driver.h: changed exception handling mech in sql
           incorporated]            handlers
   
         * src/: classes/classes.dsp, classes/xdoc.C,          * configure.in: removed configure.in:AC_LIBTOOL, it caused automake
           include/pa_stylesheet_connection.h, main/main.dsp,            to write makefile which used libtool to install things, which is
           targets/cgi/parser3.C, targets/isapi/parser3isapi.C,            not needed
           types/pa_vxdoc.h, types/pa_vxnode.h, types/types.dsp: xalan  
           patches starting  2002-12-06  paf
   
         * src/classes/: string.C, table.C: ^string.save[file]          * operators.txt, src/main/compile.tab.C, src/types/pa_vhash.h:
             $hash.fields -- pseudo field to make 'hash' more like 'table'
         * src/classes/: date.C, table.C: calendar moved to date  
   2002-12-05  paf
         * src/classes/: op.C, table.C: table.hash[key field;value field(s)  
           string/table]  now          * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp
             cc/bcc OK now
         * src/classes/: op.C, table.C: z  
           * src/main/untaint.C: mail header closed properly
         * src/: classes/op.C, classes/table.C, types/pa_vfile.h,  
           types/pa_vimage.h, types/pa_vjunction.h, types/pa_vxdoc.h,          * src/: main/pa_common.C, main/untaint.C, types/pa_vmail.C: mail
           types/pa_vxnode.h: table:menu & op for delims made allowed not to            header ',' allowed.  still bugs in smtp [only one receiptient
           be code [be string..]            works, cc, bcc ignored now, and MAILED ;)]
   
         * src/classes/: double.C, file.C, image.C, int.C, op.C, string.C,            [strncpy killed, memnchr used]
           table.C: lots of  
           params->as_int/double/as_string/as_junction/as_no_junction          * src/main/pa_table.C: table-copy now current=0
           messages added  
           * src/main/: pa_array.C, pa_table.C: wow! found/fixed bug in
 2001-10-08  parser            lowlevel proc
   
         * src/: classes/date.C, classes/image.C, classes/string.C,          * src/targets/cgi/parser3.C: more checks on
           classes/table.C, classes/void.C, include/pa_request.h:            http://domain/parser.cgi start [maybe some getenv returns "",
           params->as_int/double message added            checked that now
   
         * src/classes/image.C: image:circle [and round arc] uses Bresenham          * src/targets/cgi/parser3.C: more checks on
             http://domain/parser.cgi start [maybe some getenv returns "",
         * src/: classes/image.C, types/pa_vcookie.C, types/pa_vimage.C:            checked that now
           image:sector removed image:html internal "line-*" attribs  
           * src/targets/cgi/parser3.C: error logging made unbuffered [so that
         * src/: classes/image.C, include/pa_common.h, main/pa_common.C,            out-of-mem errors reached log]
           types/pa_vcookie.C: cookie urlencoded [netscape doc reread]  
           * src/: classes/mail.C, targets/cgi/parser3.C, types/pa_vmail.C:
         * src/types/pa_vcookie.C: removing cookie made more netscape-like            mail:send MIME-Version default
           way  
           * src/main/main.dsp: pa_version included into main.dsp
         * src/: classes/file.C, classes/form.C, main/pa_common.C,  
           main/untaint.C: header untainting to UL_HTTP_HEADER,  2002-12-04  paf
           UL_MAIL_HEADER made nonforced [only tainted pieces]  
           * src/types/pa_vform.C: $form:field string value cut by premature 0
         * src/: include/pa_common.h, main/pa_common.C, main/untaint.C,  
           targets/cgi/parser3.C, targets/isapi/parser3isapi.C: remove_crlf          * parser3.dsw, src/main/compile.tab.C, src/main/main.dsp:
           @ SAPI::log            lib/libltdl -> lib/ltdl Win32 changes. s
   
         * src/main/untaint.C: \r to ' ' in origins mode          * src/classes/classes.awk: more strict *.C$
   
         * src/classes/xdoc.C: xdoc:load exceptions intercepted [like in          * gnu.dsp: restored
           set]  
           * configure.in, gnu.dsp, src/lib/Makefile.am,
         * src/: classes/xdoc.C, include/pa_config_fixed.h,            src/lib/ltdl/Makefile.am, src/lib/ltdl/README,
           main/compile.tab.C, types/pa_vxdoc.h: parsedSource produced by            src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
           nonstandard liaison freed up            src/lib/ltdl/config.h, src/lib/ltdl/config.sub,
             src/lib/ltdl/config_auto.h.in, src/lib/ltdl/config_fixed.h,
 2001-10-07  parser            src/lib/ltdl/configure, src/lib/ltdl/configure.in,
             src/lib/ltdl/install-sh, src/lib/ltdl/libltdl.dsp,
         * src/: include/pa_config_fixed.h, main/compile.tab.C: restored            src/lib/ltdl/ltdl.c, src/lib/ltdl/ltdl.h: src/lib/ltdl/Makefile
           project            now created with /configure, not ltdl/configure, so it does have
             no problems with automake.  ltdl/configure
 2001-10-05  parser            AC_OUTPUT(Makefile<<removed)
   
         * src/: classes/xdoc.C, include/pa_pool.h, main/main.dsp,  2002-12-02  paf
           main/pa_pool.C: changed xdoc:set to prevent SAXParseException  
           from outputing to cerr.  lots of "todos"          * operators.txt: removed outdated status:db
   
         * src/main/untaint.C: http_header tainting more gentle with          * ChangeLog, src/classes/mail.C, src/include/pa_common.h,
           enquoting now            src/main/pa_common.C, src/main/pa_request.C,
             src/types/pa_vcookie.C, src/types/pa_vmail.C: http header lang of
         * src/: classes/xdoc.C, include/pa_dictionary.h, main/main.dsp,            tainted parts becomes http-header
           main/pa_dictionary.C, main/pa_string.C, types/pa_vxdoc.h: started  
           xml errorhandler.  fixed string.replace a little, read @test  2002-11-29  paf
   
         * src/main/pa_string.C: found replace bug - first_that_starts(char          * src/classes/date.C, src/classes/image.C, operators.txt: exif
           *) does not have limit, and looks further eos, fixing....            dates now objects of type date
   
         * src/doc/: doxygen.cfg, html2chm.cmd, sources2html.cmd: paths          * src/classes/image.C: file.seek removed [it were used in image.C
             only, and for parser user this  means that jpeg image has bad
         * src/: classes/xdoc.C, main/compile.tab.C: xdoc.transform now            size in fragment's header] now used image.format
   
         * src/main/: pa_charset_connection.C: ctype another mem clear          * src/: include/pa_common.h, main/pa_common.C,
           bugfix            types/pa_vresponse.C, types/pa_vresponse.h: http:// param values
             now handled exactly like $response:header values.  e.g. can be
         * src/main/: compile.tab.C, compile.y: disabled ^literals in names            hash [can have subattributes] & contain date values.
           $result[^[$p^]z] now works fine  
           * src/main/pa_common.C: http:// param values lang forced URI
         * src/: include/pa_hash.h, main/pa_hash.C: Hash::size() calculated  
           wrong. fixed it          * src/main/pa_common.C: http:// tainted partes now %xx
   
         * src/main/pa_charset_connection.C: unicode zero pair at the beging  2002-11-28  paf
           of totable appered to be vital  
           * operators.txt: http.timeout
 2001-10-04  parser  
           * src/classes/image.C: ^image.length now counts interchar space.
         * src/classes/image.C: ^image.length[text]            plus space after last char
   
 2001-10-03  parser          * src/main/pa_string.C: PCRE_DOLLAR_ENDONLY
   
         * src/main/pa_request.C: DEFAULT...charset was ignored when !XML          * src/classes/image.C: ^image.font width measurer now scans full
             height [were -1]
         * src/main/pa_request.C: restored pcre defaulting in request  
           [mindlessly "optimized" yesterday] comment left          * configure.in: stopped double libltdl/Makefile generation
   
 2001-10-02  parser          * src/classes/image.C: ^image.text now outputs one pixel HIGHER
             chars [one top horizontal line of 1pixel height were missing]
         * src/: main/pa_charset_manager.C,  
           include/pa_stylesheet_connection.h: forgot non-xml pool.*charset          * src/classes/op.C: ^cache bug fixed.  stupid compiler allowed
           needed            'false' to go into (Hash *) parameter
   
         * src/: include/pa_pool.h, main/pa_pool.C, types/pa_vresponse.h:  2002-11-27  paf
           forgot non-xml pool.*charset needed  
           * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
         * src/classes/table.C: # config comments fixed            types/pa_vmail.C: response:body[file]  if file nows it's name now
             returns content-disposition: >>attachment<<
         * src/: classes/table.C, main/pa_charset_connection.C: table:load &  
           charset_connection #comment now          * src/classes/image.C: ^image.font << bad font file-size now
             properly reported
         * src/: classes/classes.dsp, types/types.dsp: release projects  
           options fixed to use release msvcrt lib  2002-11-26  paf
   
         * src/main/pa_charset_connection.C: pcre tables now const inside          * src/main/pa_request.C: fixed lang in reponse header
           removed default - pcre handles that internally fixed bug on  
           not-cleaning tables [previously was calloced, now member]          * src/main/pa_common.C: utf8 prefix ignored @read text
   
         * src/: include/pa_request.h, main/pa_charset_connection.C,          * operators.txt, src/main/pa_common.C: http:// response status!=200
           main/pa_request.C, types/pa_vstring.h: pcre tables now const            made exception: http.status with source=bad status#
           inside removed default - pcre handles that internally fixed bug  
           on not-cleaning tables [previously was calloced, now member]  2002-11-25  paf
   
         * src/: include/pa_config_fixed.h, main/pa_charset_connection.C:          * configure.in, src/classes/image.C,
           tested charset reload on file change @ apache version = OK tested            src/include/pa_config_auto.h.in,
           freeing up prev encoding on adding new = OK            src/include/pa_config_includes.h, src/main/Makefile.am,
             src/main/pa_common.C, src/main/pa_globals.C: http:// and image
 2001-10-01  parser            const void related probs fixed
   
         * src/main/pa_charset_connection.C: removed entitify external hack          * operators.txt, src/main/pa_common.C: http fields now UPPERCASE
           [internal installed]  
             $file[^file::load[http://there]] $file.SERVER
         * src/main/Makefile.am: makes+removed dtd  
           * src/: classes/file.C, classes/image.C, classes/xdoc.C,
         * src/: include/pa_charset_connection.h,            include/pa_common.h, main/pa_common.C, main/pa_request.C: checked
           include/pa_charset_manager.h,            http options [invalid onces now reported] made default
           include/pa_xslt_stylesheet_manager.h, main/main.dsp,            user-agent: paf
           main/pa_charset_connection.C, main/pa_charset_manager.C,  
           main/pa_request.C: charset loading & caching mech 0          * operators.txt, src/classes/file.C, src/classes/table.C,
             src/classes/xdoc.C, src/include/pa_common.h,
         * src/: include/pa_stylesheet_connection.h,            src/include/pa_globals.h, src/main/pa_common.C,
           include/pa_xslt_stylesheet_manager.h, main/main.dsp,            src/main/pa_globals.C, src/main/pa_request.C,
           main/pa_globals.C, main/pa_request.C: would make charset loading            src/types/pa_vfile.C, src/types/pa_vfile.h: table/xdoc/file::load
           & caching mech now            now understand http:// prefix and additional params, sample:
             $rates[^xdoc::load[http://www.cbr.ru/scripts/XML_daily.asp?date_req=02/03/2002;
 2001-09-30  parser            $.USER-AGENT[parser3] ]]
   
         * src/main/pa_request.C: forgot to fill toTable  2002-11-22  paf
   
         * src/: include/pa_config_fixed.h, main/pa_request.C: started          * src/classes/image.C, src/include/pa_globals.h,
           hack_s_maximumCharacterValues to XALAN_HACK_DIGITAL_ENTITIES but            src/main/execute.C, src/main/pa_globals.C, src/types/pa_vimage.C,
           failed on win32 for now..            src/types/pa_vimage.h, operators.txt: $image.exif support
             $image.exif.DateTime & co
         * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:  
           now charsets table configuration variable is: CHARSETS  2002-11-21  paf
   
         * src/: classes/xdoc.C, include/pa_request.h, main/pa_request.C:          * src/main/: pa_exec.C, untaint.C: cstr(UL_UNSPECIFIED) [not
           ctype with unicode 1. todo: no &#1055; entities on output somehow            _PASS_APPENDED)
   
         * src/: classes/file.C, classes/op.C, classes/string.C,          * src/classes/image.C: jpeg size measure fixed: were badly skipping
           include/pa_request.h, main/pa_request.C: started ctype with            EXIF information [were big block and it's size were considered
           unicode values            negative :(]
   
 2001-09-28  parser          * operators.txt, src/classes/image.C, src/include/pa_common.h,
             src/main/pa_common.C, src/types/pa_vmail.C: image.measure
         * src/: main/pa_request.C, classes/mail.C, classes/op.C,            internals rewritten. no there's reader.seek, and all's ready for
           classes/xdoc.C, include/pa_stylesheet_connection.h: letter body            EXIF extraction [now we fail to measure files with EXIF info]
           string passed AS-IS now  
           * src/main/pa_common.C: O_TRUNCATE killed, ftruncate  used instead:
         * src/classes/: xdoc.C, xnode.C: xdoc addencoding works! invented a            O_TRUNC truncates even exclusevely write-locked file [thanks to
           way of user-configuring... todo: implement            Igor Milyakov <virtan@rotabanner.com> for discovering]
   
 2001-09-27  parser  2002-11-20  paf
   
         * src/classes/table.C: table.sort changed to sort table itself          * src/targets/cgi/parser3.C: logging @signal += query_string
   
         * src/: classes/xdoc.C, targets/isapi/parser3isapi.dsp:          * configure.in, src/include/pa_config_auto.h.in,
           X^.getElementsByTagName[tagname] = array of xnode            src/include/pa_config_includes.h, src/targets/cgi/parser3.C:
           X^.getElementsByTagNameNS[namespaceURI;localName] = array of            comment
           nodes removed - regretfully not supported @ xalan. maybe someday  
           would reimplement, if needed.          * src/targets/cgi/parser3.C: SIGNALS overriden @ main top
   
           win32build system: solved long waiting anti-non-started-apache          * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
           problem            targets/cgi/parser3.C: SIGUSR1 >> writes to error_log uri of
             currently processed document SIGPIPE >> interrupts request
         * src/: classes/classes.dsp, classes/xdoc.C, main/main.dsp,            processing [exception = DB rollback]
           targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,  
           types/types.dsp: win32 ident make system so not to rebuild          * src/main/pa_exec.C: comment
           library [ident.C.new]  
           * src/main/pa_exec.C: pa_exec: data written only if size>0
 2001-09-26  parser  
           * operators.txt, src/classes/file.C: ^file::exec/cgi[file;$.stdin[]
         * src/: classes/classes.dsp, classes/xdoc.C, classes/xnode.C,            << disable HTTP-POST repassing
           classes/xnode.h, include/pa_config_fixed.h, main/main.dsp,  
           targets/cgi/parser3.C, targets/isapi/parser3isapi.C,          * src/: include/pa_config_fixed.h, main/pa_common.C,
           types/pa_vxnode.C, types/types.dsp: z            main/pa_exec.C, targets/cgi/parser3.C: ^file:exec/cgi [pa_exec]
             pipe read errors now checked
         * src/classes/classes.C: forgot one non-xml check  
   2002-11-19  paf
         * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,  
           targets/cgi/Makefile.am, types/Makefile.am: makes with clases.awk          * src/targets/cgi/parser3.C: removed #ifdef WIN32 around check of
             CGI: Illegal call
         * src/targets/cgi/parser3.C: z  
   2002-11-01  paf
         * src/: include/pa_config_fixed.h, targets/cgi/parser3.C,  
           targets/isapi/parser3isapi.C: #ifdef SMTP          * src/main/execute.C: comment
   
         * src/: classes/classes.dsp, classes/dnode.C, classes/dnode.h,  2002-10-31  paf
           classes/dom.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,  
           main/compile.tab.C, types/pa_vdnode.C, types/pa_vdnode.h,          * src/main/execute.C: found out why, checked that for now.  todo:
           types/pa_vdom.C, types/pa_vdom.h, types/pa_vxdoc.C,            find out a way for that user could do that
           types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,  
           types/types.dsp: xdoc&xnode now          * src/types/pa_vstateless_object.h: object put replaces static
             parent if any
         * src/: classes/classes.C, classes/classes.awk,  
           classes/classes.dsp, classes/classes.h, classes/date.C,          * src/types/pa_vobject.C: object put replaces static parent if any
           classes/dnode.C, classes/dnode.h, classes/dom.C,  
           classes/double.C, classes/file.C, classes/form.C, classes/hash.C,          * src/: classes/form.C, classes/mail.C, classes/op.C,
           classes/image.C, classes/int.C, classes/mail.C, classes/math.C,            classes/xnode.h, main/compile.tab.C, main/execute.C,
           classes/op.C, classes/response.C, classes/string.C,            main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
           classes/table.C, classes/void.C, include/pa_array.h,            types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
           include/pa_common.h, include/pa_config_fixed.h,            types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
           include/pa_config_includes.h, include/pa_dictionary.h,            types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
           include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,            types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
           include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,            types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
           include/pa_socks.h, include/pa_sql_connection.h,            types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
           include/pa_sql_driver_manager.h, include/pa_stack.h,            types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
           include/pa_string.h, include/pa_stylesheet_connection.h,            types/pa_vstateless_class.C, types/pa_vstateless_class.h,
           include/pa_table.h, include/pa_threads.h, include/pa_types.h,            types/pa_vstateless_object.h, types/pa_vstatus.C,
           include/pa_xslt_stylesheet_manager.h, main/compile.C,            types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
           main/compile.y, main/compile_tools.C, main/compile_tools.h,            types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
           main/execute.C, main/main.dsp, main/pa_array.C, main/pa_common.C,            types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
           main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,            types/pa_wwrapper.h: static fix merged
           main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,  
           main/pa_pool.C, main/pa_request.C, main/pa_socks.C,          * src/: main/compile.tab.C, types/pa_vobject.C: killed
           main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,            $virtual_fields in dynamic, but one can reach derived
           main/pa_xslt_stylesheet_manager.C, main/untaint.C,            static[class] variable from base
           sql/pa_sql_driver.h, targets/cgi/pa_pool.C,  
           targets/cgi/pa_threads.C, targets/cgi/parser3.C,          * src/: classes/op.C, types/pa_value.h, types/pa_vmethod_frame.h,
           targets/cgi/parser3.dsp, targets/isapi/pa_pool.C,            types/pa_vobject.C, types/pa_vobject.h,
           targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,            types/pa_vstateless_class.C, types/pa_vstateless_class.h: fixed
           targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h,            statics, left $virtual_fields in dynamic
           types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,  
           types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,          * src/types/: pa_vobject.C, pa_vstateless_class.C: realized that
           types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,            one can't remember derivates in base class: there's so many of
           types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vdom.C,            them.  also there can be no virtual method calls in static
           types/pa_vdom.h, types/pa_vdouble.h, types/pa_venv.h,            classes
           types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,  
           types/pa_vform.h, types/pa_vimage.C, types/pa_vimage.h,          * src/: classes/form.C, classes/mail.C, classes/op.C,
           types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,            classes/xnode.h, main/execute.C, main/pa_request.C,
           types/pa_vmethod_frame.h, types/pa_vobject.h,            types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
           types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,            types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
           types/pa_vstateless_class.C, types/pa_vstateless_class.h,            types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
           types/pa_vstateless_object.h, types/pa_vstring.C,            types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
           types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,            types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
           types/pa_vvoid.h, types/pa_wcontext.C, types/pa_wcontext.h,            types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
           types/pa_wwrapper.h, types/types.dsp: added ident.awk and            types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
           main.dsp splitted to main+classes+types along to .am            types/pa_vresponse.C, types/pa_vresponse.h,
             types/pa_vstateless_class.C, types/pa_vstateless_class.h,
         * src/classes/Makefile.am: removed useless var            types/pa_vstateless_object.h, types/pa_vstatus.C,
             types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
         * src/: classes/classes.cmd, main/main.dsp,            types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
           targets/cgi/parser3.dsp: moved classes.inc generation on win32 to            types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
           main.dsp            types/pa_wwrapper.h: static call $self fixed
   
 2001-09-25  parser          * src/main/execute.C: comment
   
         * src/include/pa_config_auto.h.in: xml on linux[elik] works! no          * src/: classes/op.C, types/pa_value.h, types/pa_vobject.h:
           1251 though, todo ICU            ^process[$caller.self]{...} now compiles to last derived object
             part of that 'self'
         * src/: Makefile.am, classes/Makefile.am, classes/dom.C,  
           include/pa_stylesheet_connection.h, main/Makefile.am,  2002-10-29  paf
           main/pa_pool.C, targets/cgi/Makefile.am, types/Makefile.am,  
           types/pa_vdom.h: xml configure makes          * src/targets/isapi/parser3isapi.C: comment on 404 bad status
             re-passing [iis to blame]
 2001-09-24  parser  
           * src/classes/string.C: changed string.save to pass current sql
         * src/: classes/Makefile.am, include/pa_config_auto.h.in,            connection to cstr thus one can ^connect[some server]{
           types/Makefile.am: makes            $s[insert into table x (x) values (^taint[sql]{value})]
             ^s.save[some.sql] } and he'd get in some.sql file code with
         * src/targets/cgi/Makefile.am: makefiles            properly escaped.  [tried in mssql->mysql export->import of
             binary data]
         * src/: Makefile.am, targets/Makefile.am, targets/cgi/pa_pool.C:  
           started unix makes update  2002-10-25  paf
   
         * src/: Makefile.am, main/Makefile.am, targets/cgi/Makefile.am:          * src/types/pa_vresponse.C: case insensitive response user fields
           started unix makes update            get/put
   
         * src/types/: pa_vdnode.C, pa_vvoid.h, pa_vtable.C: z          * src/: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
             types/pa_vresponse.C: saving for maybe-future
         * src/types/pa_value.h: z  
   2002-10-23  paf
         * src/types/: pa_vhash.h, pa_vtable.h, pa_vclass.h: fixed small  
           bugs with usinge hash/table in expressions          * operators.txt, src/classes/table.C: ^table.hash{code}...
             ^table.hash(expr)...
         * src/types/: pa_vfile.h, pa_vimage.h, pa_vstring.h: fiew wrong  
           resolved conflicts fixed [const]          * src/types/pa_vmail.C: email whitespace trimBoth-ed
   
         * src/: classes/classes.cmd, classes/image.C, classes/op.C,  2002-10-22  paf
           classes/table.C, include/pa_request.h, include/pa_sapi.h,  
           main/compile.C, main/compile.tab.C, main/compile.y,          * src/types/: pa_vform.C, pa_vform.h: removed needless
           main/compile_tools.h, main/main.dsp, main/pa_common.C,            VForm::Append...(...Value)
           main/pa_sql_driver_manager.C, targets/cgi/parser3.C,  
           targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vbool.h,          * src/main/execute.C: $.name outside of $name[...] checked
           types/pa_vdate.h, types/pa_vdouble.h, types/pa_vform.C,  
           types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,          * src/main/: compile.tab.C, compile.y: lexer changed to fix
           types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h: merged3            ^call[]^#HH bug [that situation yelded no EON, which whas wrong]
           with before_xml [merge2 actually didn't happen - i've created  
           tags on wrong branch. so this merge is in fact re-merge]  2002-10-21  paf
   
 2001-09-21  parser          * operators.txt, src/types/pa_vform.C, src/types/pa_vform.h:
             $form:qtail $form:imap.x/y
         * src/: main/main.dsp, targets/cgi/parser3.dsp,  
           targets/isapi/parser3isapi.dsp: updated project files [/ sadly          * operators.txt, src/types/pa_vform.C: $form:nameless =
           produced "" in make file and sadly wrong interpreted on load]            "?value&...", "...&value&...", "...&value"
   
         * src/: classes/classes.h, classes/hash.C, classes/op.C,          * operators.txt, src/types/pa_vform.C: $form:image-map
           classes/table.C, doc/doxygen.cfg, include/pa_common.h,  
           include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,          * operators.txt, src/classes/file.C: /some/page.html:
           include/pa_sql_driver_manager.h, include/pa_string.h,            ^file:fullpath[a.gif] => /some/a.gif
           main/compile.tab.C, main/main.dsp, main/pa_common.C,  
           main/pa_exec.C, main/pa_globals.C, targets/cgi/parser3.dsp,  2002-10-17  paf
           targets/isapi/parser3isapi.dsp: merged with before_xml  
           * src/main/: compile.tab.C, compile.y: operators precedence changed
         * src/: classes/classes.C, classes/date.C, classes/dnode.C,            a little: logical not and bitwise negation precedence made
           classes/dom.C, classes/file.C, classes/form.C, classes/int.C,            highest, << and >> bitshits precedence made equal [were << higher
           classes/mail.C, doc/doxygen.cfg, include/pa_config_fixed.h,            than >>]
           include/pa_pool.h, main/main.dsp, main/pa_globals.C,  
           main/pa_pool.C, main/pa_request.C,          * src/classes/op.C: exception handling fixed [were bad with
           main/pa_xslt_stylesheet_manager.C, targets/cgi/pa_pool.C,            contexts]
           targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,  
           targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,  2002-10-16  paf
           targets/isapi/parser3isapi.dsp, types/pa_valiased.C,  
           types/pa_vcookie.C, types/pa_vdnode.C, types/pa_vdom.C,          * src/: classes/op.C, include/pa_request.h, main/execute.C,
           types/pa_vfile.C, types/pa_vform.C, types/pa_vimage.C,            main/pa_request.C: Request::self considered equal to
           types/pa_vrequest.C, types/pa_vresponse.h,            VMethodFrame::self, and removed, Request::get_self() mapped to
           types/pa_vstateless_class.C, types/pa_vstring.C,            VMethodFrame.self()
           types/pa_vtable.C, types/pa_wcontext.C: zillions of #ifdef XML  
           created new projects for sql drivers [planning to remove sql          * src/: classes/op.C, main/pa_request.C: VMainClass now has name =
           drivers from main cvs project] first, will join latest changes            $hash in open field now gives old good error meesage
   
         * src/classes/: dom.C: defaulted dom writing methods encoding to  2002-10-15  paf
           pool.get_charset  
           * src/types/pa_vjunction.h: ^if(def $junction){was true}{now false}
         * src/classes/dom.C: defaulted dom writing methods encoding to            use ^if($junction is junction){was and now true}
           pool.get_charset  
           * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
         * src/include/pa_pool.h: defaulted dom writing methods encoding to            include/pa_pool.h, main/pa_charset.C, main/pa_pool.C,
           pool.get_charset            types/pa_vxnode.C: xml->parser strings now have origin, which
             points to place where value left xml library and came to parser:
         * src/: classes/dom.C, include/pa_pool.h, main/pa_pool.C,            place of dom field extraction/call
           types/pa_vdnode.C, types/pa_vresponse.h: defaulted dom writing  
           methods encoding to pool.get_charset          * src/: classes/op.C, include/pa_opcode.h, include/pa_request.h,
             main/compile.tab.C, main/compile.y, main/execute.C,
         * src/: include/pa_pool.h, main/pa_pool.C: checked whether            types/pa_vmethod_frame.h: removed last pieces of old code
           transcoder were created right "unsupported encoding" message.            allowing $junction.xxx at compile time
           not @ set time, but @ use time, so until xml output functions  
           .string, .file, .save used - no encoding name check occur          * ChangeLog, src/classes/op.C, src/main/compile.tab.C,
             src/main/compile.y, src/types/pa_vmethod_frame.h: process[self]
           reduced transcode buffer size to 60 fixed pool cleanup - no            objects also considered [were only classes]
           registration needed, pools are officially destructured  
           * ChangeLog, src/classes/op.C, src/include/pa_request.h,
 2001-09-20  parser            src/types/pa_vmethod_frame.h: ^process[CLASS]{body} now executed
             with CLASS self.  [   (request&method_frame).self temporarily
         * src/classes/image.C: 20K preload on jpg measure [image::measure]            changed   ]
   
         * src/main/: pa_pool.C, pa_request.C: Pool::transcode defaults from          * src/classes/: hash.C, op.C: method_frame now always changed, with
           $MAIN:DEFAULTS.content-type[$.charset[here]]            no exception to native calls.  for&foreach changed to use
             method_frame.caller for their var's name context
         * src/: classes/dnode.C, classes/dom.C,  
           include/pa_config_includes.h, include/pa_globals.h,          * src/: main/execute.C, targets/cgi/parser3.C,
           include/pa_pool.h, main/main.dsp, main/pa_globals.C,            types/pa_vstateless_class.C, types/pa_vstateless_class.h:
           main/pa_pool.C, targets/cgi/parser3.dsp,            compiling to system classes disabled
           targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,  
           types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vresponse.h:          * operators.txt, src/classes/op.C:
           Pool::transcode 0            ^process[$caller.CLASS]{code-string} added
   
         * src/classes/dom.C: dom. string save file moved output xml options          * operators.txt, src/classes/op.C, src/main/compile.tab.C,
           to last param and made it optional            src/main/compile.y, src/main/execute.C, src/main/pa_request.C,
             src/types/Makefile.am, src/types/pa_vjunction.C,
         * src/types/pa_vdnode.C:     !$elementnode.attributes = hash of            src/types/pa_vjunction.h, src/types/pa_vmethod_frame.h,
           dnodes            src/types/types.dsp: removed $junction.get $junction.set[]
               !$attributenode.specified = boolean            introducing $caller
                       true if the attribute received its value explicitly  
           in the XML document,          * src/types/pa_value.h: removed outdated comments. doxygen would
                       or if a value was assigned programatically with the            find them lower by inheritance tree
           setValue function.  
                   false if the attribute value came from the default value          * src/types/pa_vjunction.C: ident
           declared in the document's DTD.  
               !$pinode.target = target of this processing instruction  2002-10-14  paf
                   XML defines this as being the first token following the  
           markup          * src/classes/op.C: process compiles to code's class class
                   that begins the processing instruction.  
                   XPath:          * src/: classes/form.C, classes/mail.C, classes/op.C,
               !^node.select[xpath/query/expression] = hash of 0->node0            include/pa_request.h, main/compile.C, main/compile.tab.C,
           1->node1            main/compile.y, main/execute.C, main/pa_request.C,
               !^node.select-single[xpath/query/expression] = first node if            types/pa_vstateless_class.h: operators now main-class-methods
           any  
           * src/: classes/op.C, include/pa_request.h: ^try{^call{}} now has
         * src/types/: pa_value.h, pa_vbool.h, pa_vdate.h, pa_vdouble.h,            better stack trace [has "call" & co there]
           pa_vhash.h, pa_vint.h, pa_vstring.h, pa_vtable.h, pa_vvoid.h:  
           some 'const's added          * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
             operators @auto now executed in MAIN context
         * src/types/: pa_vhash.h, pa_vtable.h: table/hash  can be used in  
           expression context now, there value = size and boolean value          * src/main/execute.C: operator execution context now = MAIN, not
           size!=0            closest stack frame
   
         * src/types/: pa_vhash.h, pa_vstring.h, pa_vtable.h: table/hash            @touchit[] $i[after]
           can be used in expression context now, there value = size and  
           boolean value size!=0            ----t.html $i[before] << local ^touchit[] $i << now 'before',
             were 'after'
         * src/: classes/dnode.C, classes/dom.C, targets/cgi/parser3.dsp,  
           types/pa_vstring.h: dnode .file .string .save moved back to dom            ---t.html $i[before] << notlocal [main] ^touchit[] $i << now
           due to strange xalan bug            'after'
   
 2001-09-18  parser          * src/main/execute.C: comment
   
         * src/: classes/dnode.C, classes/dom.C, classes/hash.C,          * src/types/: pa_vclass.C, pa_vobject.h, pa_vstateless_class.C,
           classes/image.C, classes/op.C, classes/table.C,            pa_vstateless_class.h: $form:CLASS resurrected [wes killed in
           include/pa_common.h, include/pa_globals.h, include/pa_request.h,            action]
           include/pa_sql_driver_manager.h, main/compile.C,  
           main/compile.tab.C, main/compile.y, main/compile_tools.h,          * src/types/pa_vxnode.C: misreplace fixed
           main/execute.C, main/pa_common.C, main/pa_request.C,  
           main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,          * configure, configure.in, src/include/pa_config_auto.h.in,
           targets/cgi/parser3.C, targets/cgi/parser3.dsp,            src/types/pa_vstatus.C, operators.txt:
           targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vform.C,            $status:rusage.tv_secs/usecs introduced
           types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,  
           types/pa_vimage.h, types/pa_vtable.h: merged latest bugfixes from  2002-10-09  paf
           before_xml branch ^if(def $hash) now true only when  
           ^hash:_count[]!=0 moved .string .save .file from dom to dnode          * src/classes/: double.C, int.C, string.C: ^string.int[] now failes
             on empty string [or uses (default)]
         * src/: classes/op.C, main/execute.C: operators self changed to  
           root ^for variable context changed to self  2002-10-08  paf
   
         * src/types/: pa_vdnode.C, pa_vdom.h, pa_vhash.h, pa_vtable.h: dom,          * src/main/untaint.C: mail header quoted printable changed after
           dnode 1            RFC reread
   
         * src/: classes/dnode.C, classes/dnode.h, main/main.dsp,          * operators.txt: plan on ^if(method
           types/pa_vdnode.C, types/pa_vdnode.h: dom, dnode 0  
           * src/types/pa_vxnode.C: misreplace
         * src/: classes/image.C, main/pa_string.C, main/pa_table.C: image:  
           poly* fixed  2002-09-24  paf
   
 2001-09-17  parser          * src/targets/cgi/Makefile.am: LIBS were bad name in .am
   
         * src/: classes/dom.C, main/main.dsp, main/pa_globals.C,          * src/types/pa_vmail.C: HAVE_TIMEZONE & co now checked and
           types/pa_vdom.h: started dnode+dom            mailreceive would compile on freebsd now
   
           dnode     DOM methods:     $node.name     $node.value          * src/include/pa_config_fixed.h, src/types/pa_vmail.C, acconfig.h,
           ...others...            configure, configure.in, src/include/pa_config_auto.h.in,
             src/targets/cgi/Makefile.am: HAVE_TIMEZONE & co now checked and
               ^node.xpath[/rates/USD] = hash            mailreceive would compile on freebsd now
                   $hash[  
                           $.0[node0]          * src/: classes/file.C, main/untaint.C: 1.  file spec language
                           $.1[node1]            changed: now there are only few chars are untainted: * ? ' " < >
                   ]            | and, on unix, : \ ~ [russian letters and SPACES now enabled,
             one should use ^untaint[uri]{...} now]
         * src/: classes/image.C, types/pa_vimage.C: $image.line-style now  
           applies to all linear primitives            2.  $list[^file:list[dir]] now returns simply tainted names in
             $list.name, not tainted as filespec
         * src/: classes/classes.h, classes/dom.C, classes/hash.C,  
           include/pa_stylesheet_connection.h, main/main.dsp,            @russianindex[] #dir with files with russian-lang names
           targets/cgi/pa_pool.C, types/pa_vdom.h, types/pa_vfile.h,            $where[dir]
           types/pa_vimage.h: started dnode     DOM:     $node.name  
           $node.value     ...others...      ^node.xpath[/rates/USD] = hash            $dir[^file:list[$where;\.txt^$]] ^dir.menu{     <a
           dom(dnode)            href=$where/^untaint[uri]{$dir.name}>$dir.name</a><br> }
   
         * src/: classes/hash.C, main/compile.C, main/compile.tab.C,  2002-09-23  paf
           main/compile.y, main/compile_tools.h, main/execute.C,  
           targets/cgi/parser3.C: expressions unary+ ^hash.count[] bugfix:          * src/types/pa_vdouble.h: double->int round added
           in expression compound($aa.zz.xx) names now can have minus '-' in  
           name after '.'          * src/classes/date.C: date bug fix, now
             round(floatDays*secondsPerDay)
 2001-09-15  parser  
           * src/classes/date.C: date bug fix, now
         * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:            round(floatDays*secondsPerDay)
           image: $line-width ^line(...)[****   style]  
   2002-09-20  paf
         * src/: classes/dom.C, targets/isapi/parser3isapi.C,  
           targets/isapi/pool_storage.h, types/pa_vdom.h: fixed bug in isapi          * src/main/execute.C: code junction calls disabled [before: code
           pool_storage - cleanups first, allocations second.  apache wisely            was compiled in such a way, that there were no code-junctions in
           does just like that            OP_CALL]
   
         * src/targets/isapi/: parser3isapi.C, pool_storage.h: pool_storage            this now error: @badjunctioncall[] ^badjunctioncallinside{code}
           rewritten using template, no bugs now  
             @badjunctioncallinside[code] ^code[]
         * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/pa_pool.C,  
           targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,          * src/main/: compile.tab.C, compile.y: changed grammer on junction
           targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h:            expanding to include ^junction.method
           poorly started isapi pool_storage, would rewrite using template  
           now          * src/main/pa_common.C: -d "DIR/" now true
   
         * src/: classes/dom.C, classes/image.C, include/pa_pool.h,          * src/classes/xdoc.C: xdoc::create[name] now sets $request:charset
           include/pa_stylesheet_connection.h, main/main.dsp,            as internal xdoc encoding, and after decoding attributes set by
           targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,            dom functions now encoded OK, not as digital entities
           targets/isapi/pool_storage.h, types/pa_vdom.C, types/pa_vdom.h:  
           xalan objects freed up [introducing Pool::register_cleanup]          * src/classes/xdoc.C: empty transform result, being taken as file
             now returns empty file, not raises stupid error about "stat-ed
         * src/: doc/doxygen.cfg, include/pa_sapi.h, types/pa_vdom.h:            file"
           comments  
           * src/types/pa_vhash.h: hash.foreach modification of existing keys
 2001-09-14  parser            allowed
   
         * src/main/: pa_sql_driver_manager.C, pa_xslt_stylesheet_manager.C:          * src/types/types.dsp: introducing $junction.get/put(1) one can
           z            write iterators now:
   
         * src/: classes/dom.C, classes/file.C, classes/image.C,            ^user-foreach[key;value]{$key=$value<br>}
           classes/mail.C, include/pa_common.h,  
           include/pa_sql_driver_manager.h, include/pa_string.h,            @user-foreach[key;value;code] ^for[i](1;10){    $code.key($i)
           include/pa_stylesheet_connection.h,            $code.value($i*2)       $code }
           include/pa_xslt_stylesheet_manager.h, main/main.dsp,  
           main/pa_common.C, main/pa_exec.C, main/pa_globals.C,          * src/main/compile_tools.h: mistype
           main/pa_sql_driver_manager.C, main/pa_xslt_stylesheet_manager.C,  
           main/untaint.C, types/pa_vfile.C: dom.xslt  stylesheet          * src/targets/cgi/Makefile.am: binaries now depend on makefiles,
           compiled&cached            thus taking linking options configure changes into account [were:
             ignoring]
 2001-09-13  parser  
           * src/types/: pa_vjunction.C, Makefile.am: introducing
         * src/: classes/dom.C, classes/file.C, classes/image.C,            $junction.get/put(1) one can write iterators now:
           types/pa_vfile.C, types/pa_vfile.h: ^dom.file[] charset  
             ^user-foreach[key;value]{$key=$value<br>}
         * src/classes/dom.C: dom:file content-type(.method)  
             @user-foreach[key;value;code] ^for[i](1;10){    $code.key($i)
         * src/: include/pa_common.h, include/pa_globals.h,            $code.value($i*2)       $code }
           main/pa_common.C, main/pa_request.C: $MAIN:CLASS_PATH now can be  
           string now more informative error messages          * src/: include/pa_opcode.h, include/pa_request.h,
             main/compile.tab.C, main/compile.y, main/execute.C,
         * src/: include/pa_globals.h, include/pa_request.h,            main/main.dsp, targets/cgi/parser3.dsp, types/pa_vjunction.h:
           main/pa_request.C, targets/cgi/parser3.C,            introducing $junction.get/put(1) one can write iterators now:
           targets/isapi/parser3isapi.C: ParserRootConfig .../parser3.conf  
           ParserSiteConfig .../parser3.conf            ^user-foreach[key;value]{$key=$value<br>}
   
           cgi&isapi looks for {configure|c:\windows}/parser3.conf            @user-foreach[key;value;code] ^for[i](1;10){    $code.key($i)
             $code.value($i*2)       $code }
 2001-09-12  parser  
   2002-09-19  paf
         * src/: classes/op.C, include/pa_sql_driver_manager.h,  
           main/pa_sql_driver_manager.C: ^connect[] ^connect[aaa] more          * Makefile.am: new: make commit
           precise error reporting: "connection string must start with  
           protocol://" now          * aclocal.m4: forced to be older
   
         * src/main/compile.tab.C: fixed - subname code parts actually []  2002-09-18  paf
           braced  
           * parser3.dsw, src/include/pa_opcode.h, src/main/compile.tab.C,
         * src/main/: compile.y, compile_tools.h: name.[part].xxx syntax            src/main/compile.y, src/main/execute.C: << >> int shifts
           lexer on LS_USER level did [] matching without setting nestage,  
           introduced special LS_NAME_SQUARE_PART state          * src/: include/pa_common.h, include/pa_request.h,
             main/pa_common.C, main/pa_request.C: auto.p exists but unreadable
 2001-09-11  parser            - now this - fatal error
   
         * src/: classes/dom.C, include/pa_string.h, main/pa_globals.C,          * src/classes/file.C: ^file::exec/cgi $.stdin[can be file now] so
           main/untaint.C: ^dom:set{<some>xml</some>} default language XML            that one can pass binary data there
           languages+=xml  
           * src/: classes/date.C, classes/double.C, classes/file.C,
         * src/: classes/dom.C, types/pa_vdom.h: ^dom:set[<some>xml</some>]            classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
             classes/op.C, classes/response.C, classes/string.C,
         * src/classes/dom.C: ^dom:save/string/file[output options] output            classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
           options:     $.method[xml|html|text] detection fixed            include/pa_request.h: pa_request contexts made privated, plus
             get_{self/method_frame} to read.  Request_context_saver used in
         * src/types/pa_vdom.h: messages            ^try to save flang too.  [were not saved]
   
         * src/classes/dom.C: ^dom:save/string/file[output options] output          * src/types/pa_vresponse.C: header value chains joined before
           options:     $.method[xml|html|text] detection fixed            output, this should help $.subject[$var $var] from being
             converted to subject: ?koi8-r?Q?...?= ?koi8-r?Q?...?=
 2001-09-10  parser  
   2002-09-17  paf
         * src/classes/dom.C: ^dom:save/string/file[output options] output  
           options:     $.method[xml|html|text] $.encoding[windows-1251|...]          * src/: main/execute.C, types/pa_value.h, types/pa_vmethod_frame.h:
             removed changes, operators executed with calling self.  lots of
         * src/classes/dom.C: ^dom.xslt[stylesheet filename][params hash            code with ^include code relies on defined/defining self variables
           added]  
             $a[1] ^include[print_a.p] print_a.p: $a
         * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:  
           ^dom.xslt[stylesheet filename] 0            ^include[set_a.p] a=$a set_a.p: $a[1]
   
         * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:          * src/: classes/op.C, main/execute.C, main/pa_request.C,
           ^dom.xslt[stylesheet filename] -1 doc is lying            types/pa_value.C, types/pa_value.h, types/pa_vmethod_frame.h,
             types/pa_vstateless_class.h: operators now executed with MAIN
         * src/classes/dom.C: ^dom.file[encoding] = file            self.  it's for ^include sake, too strong a change
   
         * src/classes/: dom.C: ^dom.string[encoding] 1          * src/classes/op.C: made place for ^process to compile it's code to
           ^dom.save[encoding;filename]            in case of no self
   
         * src/classes/dom.C: ^dom.string[] 0          * src/main/execute.C: found ancient param to Junction, removed.
             allowed passing self to native_code_operators [for ^process to
         * src/classes/dom.C: ^dom.save[b.xml] 1:error handling            work, she needs self]
   
         * src/: classes/dom.C, main/main.dsp, types/pa_vform.C,          * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
           types/pa_vform.h: ^dom.save[b.xml] 0            types/pa_vstateless_class.h: found ancient param to Junction,
             removed.  allowed passing self to native_code_operators [for
 2001-09-08  parser            ^process to work, she needs self]
   
         * src/types/pa_vform.C: $form:tables.name.field          * src/: main/execute.C, main/pa_request.C, types/pa_value.C,
             types/pa_value.h, types/pa_vmethod_frame.h,
 2001-09-07  parser            types/pa_vstateless_class.h: allowed Request.self to be 0,
             checked that in VMethodFrame get/put and $self.
         * src/classes/table.C: table:empty removed, superceded by ^if(def  
           $table)...          * src/classes/: table.C, xdoc.C: table::sql  options table::create
             copy options options checked, wrong option now fatal error
         * src/targets/cgi/parser3.C: z  
           * src/main/pa_string.C: string.replace fixed [were missing words on
         * src/main/pa_string.C: $a[] ^if($a){y;n} is 'n' now  [conversion            pieces boundaries]
           from '' to int/double is 0]  
           * configure, configure.in: .so now detected [can be .sl on hpux,
         * src/: classes/dom.C, types/pa_value.h, types/pa_vtable.h: (def            .dll on cygwin, .so in other cases)
           $table) is false when table is empty  
           * configure, configure.in: .so now detected [can be .sl on hpux,
         * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:            .dll on cygwin, .so in other cases)
           !$form:tables $atable[$form:tables.a]  
           ^atable.menu{a=$atable.element}[,]          * operators.txt, src/classes/hash.C, src/classes/table.C,
             src/include/pa_globals.h, src/main/pa_globals.C: table.sql
         * src/: targets/cgi/parser3.dsp, types/pa_vform.C,            hash::sql flag to allow duplicate keys [$.distinct(1/0)] first
           types/pa_vform.h, types/pa_vhash.h: !$form:fields            record taken [were last]
   
         * src/: classes/dom.C, classes/table.C, main/main.dsp,          * src/: classes/hash.C, classes/table.C,
           types/pa_vdom.h, types/pa_vform.C: merged with successful start            include/pa_sql_connection.h: table.sql hash::sql duplicate keys
           of dom            now errors
   
         * src/: include/pa_hash.h, main/pa_hash.C, types/pa_vfile.h,          * src/classes/hash.C: foreach delims bug fixed [were ,2,3]
           types/pa_vform.C, types/pa_vform.h: z  
           * src/classes/: op.C, table.C: menu/for delims bug fixed [were
         * src/: main/pa_exception.C, types/pa_vform.C: getting FIRST form            ,2,3]
           element [not last]  
   2002-09-16  paf
         * src/: classes/dom.C, classes/table.C, main/main.dsp,  
           types/pa_vdom.h: introducing dom. dom:load[a.xml]          * src/classes/file.C: file::cgi line ends can be both unix & dos.
             and they can be unix [\n\n] on win when 'use CGI' used, it causes
 2001-09-06  parser            stdout to be binary.  now detected closest header break.
   
         * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a          * src/: main/untaint.C, types/pa_vmail.C: mail:send closing ?=  now
           table with one column 'element' and two rows: 1 and 2            closed right
   
         * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a  2002-09-13  paf
           table with one column 'element' and two rows: 1 and 2  
           * operators.txt, src/main/compile.tab.C, src/main/compile.y,
         * src/: classes/void.C, main/pa_string.C, main/pa_table.C: fixed up            src/main/compile_tools.h: (expression #comment)
           bad int/double conversions, and now $form:nonexistent.int(88)  
           would return 88            (multiline expression #comment  line2  #comment )
   
         * src/: classes/hash.C, include/pa_globals.h, main/pa_globals.C,            (expression #comment with (brackets) comment) << OK
           types/pa_vhash.h: now there's special hash key '_default'  
           [instead of ^_default method] $hash[         $.a[1]  $.b[2]          * operators.txt, src/main/compile.tab.C, src/main/compile.y: !|
           $._default[xx] ] $hash.c            bitwise !|| numerical xor now [preparing for expression
             #comments]
         * src/main/: compile.tab.C, compile.y: ^if(0){}{ ^if(1){}^; } bug  
           fixed [thanks, fif], ^; were treated there non-literally          * src/main/: compile.tab.C, compile.y: @method[$name] now parse
             error
         * src/doc/doxygen.cfg: merged new default options from 1.2.10  
           doxygen          * src/: include/pa_config_fixed.h, main/pa_socks.C: HAVE_WINSOCK_H
             cheched in pa_socks.C
         * src/: classes/image.C, classes/op.C, classes/string.C,  
           classes/table.C, doc/doxygen.cfg, targets/isapi/parser3isapi.C,          * configure, configure.in, src/include/pa_config_auto.h.in:
           types/pa_vtable.C: few #ifndef DOXYGEN            HAVE_WINSOCK_H created in configure.in
   
 2001-09-05  parser          * src/: main/compile.tab.C, main/compile.y, types/pa_vresponse.C:
             cookie date now clean [were mistakenly tainted & that worked bad
         * src/classes/: string.C, table.C: sql options can be void [same as            with opera -- 'happily' that worked OK with msie]
           image:html the other day]  
   2002-09-12  paf
         * src/targets/cgi/Makefile.am: .am undo  
           * src/types/: pa_vclass.C, pa_vmail.C, pa_vobject.C: VObject &
         * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,            VClass get_element now first looks to fields, next to methods &
           targets/cgi/parser3.C: #define STRINGIZE(name) #name does not            co todo: the rest reason: more speed
           macro expantion on param, simply qoutes whatever passed, undone  
           * src/main/untaint.C: quoted printable encoding stops before
         * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,            \s*<...>$
           targets/cgi/Makefile.am, targets/cgi/parser3.C: #define  
           STRINGIZE(name) #name invented          * src/main/untaint.C: quoted printable ' ' now =20 and encoding
             stops before <...>$
         * src/: classes/op.C, include/pa_sql_driver_manager.h,  
           main/pa_sql_driver_manager.C: #define MAIN_SQL_NAME "SQL" #define  2002-09-11  paf
           MAIN_SQL_DRIVERS_NAME "drivers"  
           * src/: main/pa_charset.C, targets/cgi/parser3.dsp: while fixing (
           moved to be availible to all users            xmlCharEncodingInput/OutputFunc callbacks returned bad value )
             forgot to check users of those funcs. not all were using that
         * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h:            return value convention
           SQL_DRIVER_CREATE_FUNC_NAME  
           * src/lib/pcre/ibm-1254.ucm, etc/parser3.charsets/windows-1254.cfg:
         * src/classes/mail.C: MAIN:MAIL check fixed            windows-1254 added
   
 2001-09-04  parser  2002-09-10  paf
   
         * src/classes/image.C: image.html now can accept void params          * src/: classes/op.C, main/execute.C, types/pa_wcontext.h:
             VCodeFrame parent param were specified badly
         * src/targets/isapi/parser3isapi.C: z  
           * src/: main/execute.C, types/pa_value.h, types/pa_wwrapper.h:
         * src/targets/cgi/parser3.C: full_file_spec bug            WWrapper which used in constructing objects(second param to sql
             method) ^...sql{}[$.default{code}] now has parent, wich helps
         * src/targets/cgi/parser3.C: getenvcheck            code in hash to survivi
   
         * src/targets/cgi/parser3.C: zz          * src/: include/pa_request.h, main/execute.C: removed redundant
             param to execute [stack said 'thanks']
         * src/targets/cgi/parser3.C: zzz  
           * src/: classes/op.C, main/execute.C, types/pa_value.C,
         * src/classes/date.C: date            types/pa_value.h, types/pa_vcode_frame.h,
             types/pa_vmethod_frame.h, types/pa_wcontext.C,
         * src/classes/date.C: date:sql-string is now without ''            types/pa_wcontext.h, types/pa_wwrapper.h: moved junction kill
             responsibility to wcontext
         * src/: include/pa_config_auto.h.in, targets/cgi/Makefile.am,  
           targets/cgi/parser3.C: configure --sysconfdir=sysadmin-controlled          * src/classes/file.C: decided not to log exec's with stderr, that
           auto.p location for targets/cgi/parser3, default[/usr/local/etc]            could be warnings, and it's up to scritper to log/show them
   
         * src/include/pa_config_auto.h.in: makes          * src/: classes/double.C, main/execute.C: double:sql badly called
             write_assign_lang, not write_no_lang, thus doing unnecessary
 2001-09-03  parser            double/string converstion, which were loosing time&precesion
   
         * src/targets/cgi/parser3.C: /configure cgi SYSCONFDIR          * src/: main/pa_charset.C, types/pa_vmail.C:
             xmlCharEncodingInput/OutputFunc callbacks returned bad value in
 2001-09-01  parser            case of unfinished in buffer processing, causing accidental
             transcode stop [in case that source enc != utf-8 & there is
         * src/classes/image.C: letter_spacing            incomplete utf-8 sequence at the end of 16000block iside of
             libxml lib] tfm readed & code updated
         * src/classes/image.C: image: font params changed  
   2002-09-04  paf
         * src/classes/image.C: image: as_int as_string used  
           * configure: makes with sjlj
         * src/types/pa_vmethod_frame.h: $result[] now gets properly  
           analized          * INSTALL, src/include/pa_config_fixed.h,
             src/include/pa_sql_connection.h,
 2001-08-31  parser            src/main/pa_sql_driver_manager.C: -with-sjlj-exceptions define
             checked.  on win32 it made default
         * src/targets/cgi/parser3.C: z  
           * src/include/pa_config_auto.h.in: sjlj define
         * src/: include/pa_dir.h, targets/cgi/parser3.C: compiled under  
           cygwin          * configure, configure.in: introducing --with-sjlj-exceptions [hpux
             can not work with longjump/throw pair, and one must switch that
         * src/classes/void.C: void:int/double += (default)            on there.  todo: detect that automatically]
   
         * src/classes/image.C: image:font added space param image:font          * src/types/pa_vxnode.C: removed too strong checks of
           changed charwidth alg, added kerning const[for now]            xnode.elements.  now, for instance, if element does not have any
             attributes, $xnode.attributes is void, not error
         * src/classes/: string.C, table.C: string:int/double (defaults)  
   2002-09-02  paf
 2001-08-29  parser  
           * operators.txt, src/main/execute.C, src/targets/cgi/parser3.dsp:
         * src/main/pa_exception.C: exception redundant debug info            removed double_result, didn't help
   
 2001-08-28  parser          * src/main/execute.C: double_result made to move that var away from
             hungry g++ optimizer (-O2), before: it were optimized and
         * src/classes/image.C: image error msgs            comparison operators worked badly
   
         * src/classes/image.C: image: gifsize little endian          * src/types/pa_vdate.h: removed debug
   
         * src/doc/doxygen.cfg: doxygen conf removed some garbage from under          * Makefile.am, src/types/pa_vdate.h: happy now only install-exec
           doxygeneration  
           * src/main/execute.C: fixed numeric < & co so that thay now use
         * src/: classes/Makefile.am, main/Makefile.am,            c=a-b, c OPERATOR 0.  this works fine on solaris/intel for still
           targets/cgi/Makefile.am, types/Makefile.am: .am-s            unknown reason.
   
         * src/: include/pa_dictionary.h, main/pa_dictionary.C,  2002-08-29  paf
           main/pa_sql_driver_manager.C: NO_STRING_ORIGIN check3  
           * parser3.dsw, src/classes/classes.dsp, src/classes/hash.C,
         * src/main/compile.C: NO_STRING_ORIGIN check2            src/classes/op.C, src/classes/string.C, src/include/pa_request.h,
             src/lib/md5/md5.dsp, src/main/execute.C, src/main/main.dsp,
         * src/classes/table.C: NO_STRING_ORIGIN check            src/main/pa_request.C, src/targets/cgi/parser3.dsp,
             src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vmail.C,
         * src/include/pa_dictionary.h: gcc: ../include/pa_dictionary.h:19:            src/types/pa_vmethod_frame.h, src/types/pa_wcontext.h,
           storage class specifiers invalid in friend function declarations            src/types/types.dsp: junction_cleaner moved to auto VMethodFrame
             [called less frequent, allowed to remove ugly
         * src/: classes/op.C, main/compile.tab.C, main/pa_dir.C,            Junction.change_context-s from many places, switch,
           main/untaint.C, targets/cgi/parser3.C,            mail:send..html{}, ..] request.root renamed to method_frame [more
           targets/isapi/parser3isapi.C: strncpy forced with zero ending in            easyreading] ancient {...PUSH/POPs...} changed to stack vars
           case of limit            [speed up]
   
         * src/: classes/file.C, main/pa_common.C: file:move  2002-08-28  paf
           autocreate/remove dest/src dir  
           * src/types/pa_vcookie.C: $cookie:name[&] $cookie:name << now
         * src/: classes/string.C, include/pa_dictionary.h,            tainted
           include/pa_string.h, main/pa_dictionary.C, main/pa_string.C,  
           main/untaint.C: pa_directory speeded up. moved zero 'from' check          * src/types/pa_vcookie.C: fixed cookie delete when
           to directory constructor.  string:replace            $cookie:name[$.value[]]
   
 2001-08-27  parser          * operators.txt, src/classes/string.C:
             ^string.split[delim[;options]]
         * src/classes/image.C: fixed jpgsize alg  
   2002-08-27  paf
         * src/classes/image.C: fixed jpgsize alg  
           * etc/parser3.charsets/Makefile.am: merged from 3.0.0005
         * src/main/pa_exception.C: z  
           * operators.txt, src/main/compile.tab.C, src/main/compile.y: # now
         * src/main/pa_common.C: removed debug info from pa_common            delimiter
   
         * src/: main/pa_request.C, targets/cgi/parser3.C: parser3 test.html          * INSTALL: recommended latest gmime 1.0.5
           [auto.p from current dir loading]  
   2002-08-26  paf
         * src/: main/pa_common.C, main/pa_exception.C,  
           main/pa_sql_driver_manager.C, targets/cgi/Makefile.am: configure          * configure, configure.in: apache13/hook added to make dist.
           for solaris -lsocket  
   2002-08-23  paf
 2001-08-24  parser  
           * src/: include/pa_common.h, main/pa_common.C,
         * src/targets/cgi/parser3.C: not cgi extra \n 3            targets/cgi/parser3.C, targets/isapi/parser3isapi.C: when auto.p
             beside binary [cgi, isapi] not accessible [due to bad rights or
         * src/targets/cgi/parser3.C: not cgi extra \n 2            whatever] it's error now
   
         * src/targets/cgi/parser3.C: not cgi extra \n  2002-08-21  paf
   
         * src/main/pa_sql_driver_manager.C: z          * Makefile.am: can use: make happy equals to make update install
   
         * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C:          * src/main/: compile.tab.C, compile.y, compile_tools.C,
           sql* removed services from disconnect - cross-request ideological            compile_tools.h: "BASE:" "BASE::" syntax allowed, means "base
           probs.            class".  compiled as if here they named base class
   
         * src/sql/pa_sql_driver.h: sql* removed services from disconnect -          * src/main/pa_string.C: fixed bad language bug, [were wrong string
           cross-request ideological probs.  oracle - fixed bug: cs            cloning constructor]
           allocated on request.pool and got freed before disconnect  
           * src/: main/execute.C, types/pa_vobject.h: fixed virtual calls
         * src/classes/: file.C, form.C, mail.C, table.C: fiew non-pool  
           mallocs fixed          * src/: targets/cgi/parser3.C, types/pa_vfile.C, types/pa_vmail.C:
             $mail.received.file.value.content-type fixed
 2001-08-23  parser  
   2002-08-20  paf
         * src/classes/file.C: minor bug in file:save fixed  
           * src/classes/file.C: fixed language of file:file result
         * src/main/pa_sql_driver_manager.C: oracle: dlink  
           * operators.txt, src/classes/void.C: ^void.pos[...] = -1 merged
 2001-08-22  parser            from 3.0.0005
   
         * src/: classes/file.C, main/compile.tab.C, types/pa_vfile.C,          * operators.txt, src/classes/void.C: ^void.pos[...] = -1
           types/pa_vfile.h: file:load|save[text|binary;  
           * operators.txt, src/classes/void.C: ^void.length[] = 0 merged from
         * src/main/: compile.tab.C, compile.y: ^method[]^[^] literals []            3.0.0005
   
 2001-08-21  parser          * src/classes/void.C, operators.txt: ^void.length[] = 0
   
         * src/classes/: file.C, table.C: ^file:list  2002-08-19  paf
   
 2001-08-20  parser          * src/classes/xdoc.C: xdoc getElementsByTagName, ...NS overriden,
             work now
         * src/: main/compile.tab.C, main/compile.y,  
           main/pa_sql_driver_manager.C, types/pa_value.h, types/pa_vbool.h,          * src/: classes/xnode.C, types/pa_vxdoc.C: xdoc.fields fixed [were
           types/pa_vdouble.h, types/pa_vint.h: $var(123) ^var.inc[]            error in xnode, which were not catched in xdoc]
           recousively caused problems: inc incremeted 123 literal!! fixed  
           * src/: include/pa_stylesheet_connection.h, main/pa_globals.C:
 2001-08-10  parser            prepared:        // validate each document after load/create (?)
                    //xmlDoValidityCheckingDefaultValue = 1;
         * src/main/: compile.tab.C, compile.y: [codes] name part syntax now  
   2002-08-15  paf
         * src/main/: compile.tab.C, compile.y: (codes) name part syntax  
           added          * src/classes/classes.h: write to static var caused useless
             Exception, introduced Methoded::put_element wich consumes those
         * src/main/: compile.tab.C, compile.y: (codes) name part syntax  
           added          * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
             src/types/pa_vcookie.C, src/types/pa_vdate.h,
         * src/classes/table.C: table:sort restored [it was bad test :(]            src/types/pa_vresponse.C, src/types/pa_vresponse.h:
             $response:field[date] $response:field[$.xxx[date]]
         * src/types/: pa_value.h, pa_vstring.h: string now def only when ne  
           ''          * src/: classes/hash.C, classes/string.C, classes/table.C,
             classes/void.C, include/pa_sql_connection.h: fixed source of
         * src/main/: pa_request.C: wanted to make const int            ^hash::sql{bad}
           MAX_EXECUTE_SECONDS=1;  
           * operators.txt: $request:body unprecessed POST request body
           but couldnt, set_callback_and_alarm appeared to be not exported  
           :(          * src/types/pa_vrequest.C: $request:body unprecessed POST request
   
         * src/main/pa_string.C: string.match hanged on. there were a hang          * src/types/: pa_value.h, pa_vdate.h, pa_vrequest.C, pa_vxdoc.C,
           check but it weren't wise enough            pa_vxnode.C: few barks: bark("%s field not found", 0, &aname)
   
           @parse[dateString][tmp]          * operators.txt, src/classes/form.C, src/include/pa_pool.h,
           $tmp[^dateString.match[(\d\d\d\d-)?(\d\d-)?][g]] $tmp.1 $tmp.2            src/include/pa_request.h, src/main/pa_pool.C,
           #end            src/types/pa_vform.C, src/types/pa_vform.h: planning/preparing_to
             $request:body r.post_data now const
           @main[] ^parse[2001-02-03]  
           * src/: classes/image.C, classes/op.C, classes/xdoc.C,
         * src/classes/: table.C: table:sort now default desc            classes/xnode.C, main/execute.C, types/pa_value.h,
             types/pa_vhash.h, types/pa_vobject.C, types/pa_vobject.h,
         * src/: classes/table.C, include/pa_table.h, main/pa_table.C:            types/pa_vtable.h: instead of type() checking everywhere used
           table.sort now creates new sorted table            Value.as now user descendants can be used in params.
   
 2001-08-09  parser            VObject::as_*, is_defined now taken from bases.  xtable(table)
             ^if($xtable) now OK
         * src/main/pa_string.C: $a[010] now ^if($a==10){true} were octal  
           * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
         * src/classes/hash.C: hash:_default now [was hash:default]            types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
             types/pa_vxdoc.C, types/pa_vxdoc.h: is->as
         * src/classes/op.C: case without switch check added  
   2002-08-14  paf
         * src/types/pa_vcookie.C: cookie name&value origins added, more  
           precise $ORIGINS(1)          * src/: classes/xnode.h, main/execute.C, targets/cgi/parser3.dsp,
             types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
         * src/main/Makefile.am: .am            types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
             types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
         * src/classes/void.C: void: int double  copy/paste from int: bug            types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
           fixed            types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
             types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
         * src/classes/void.C: void: int double  copy/paste from int: bug            types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
           fixed            types/pa_vresponse.C, types/pa_vresponse.h,
             types/pa_vstateless_class.h, types/pa_vstateless_object.h,
 2001-08-07  parser            types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
             types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
         * src/: classes/double.C, classes/int.C, classes/string.C,            types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
           classes/table.C, include/pa_globals.h, main/pa_globals.C:            types/pa_vxnode.h, types/pa_wwrapper.h: is now works with VObject
           !^int/double:sql{query}[[$.limit(2) $.offset(4) $.default(0)]]            & VClass
           string, table  
           * src/types/pa_vmail.C: mail: turned off utf8 to source transcoding
         * src/: classes/math.C, main/pa_request.C: math:random fixed. win32  
           srand made working          * src/targets/cgi/: fixopt.C, fixopt.h, parser3.C, Makefile.am:
             removed fixopt stupidity. on stupid linux use cd /document/root
 2001-08-06  parser            ../cgi/parser3 script
   
         * src/: classes/mail.C, classes/op.C, include/pa_array.h,          * src/targets/cgi/fixopt.C: fixopt now preprocesses command line
           include/pa_globals.h, include/pa_hash.h, include/pa_request.h,            params, splitting them by space, excluding argv[0], argv[argc-1]
           main/compile.tab.C, main/compile.y, main/pa_array.C,  
           main/pa_dictionary.C, main/pa_exec.C, main/pa_globals.C,          * src/targets/cgi/: Makefile.am, parser3.C, parser3.dsp, fixopt.C,
           main/pa_hash.C, main/pa_request.C, main/pa_string.C: class_path            fixopt.h: fixopt now preprocesses command line params, splitting
             them by space, excluding argv[0], argv[argc-1]
         * src/main/pa_exec.C: exec win32 real filename  
           * src/targets/cgi/parser3.C: -f config file
         * src/classes/file.C: exec stderr out  
           * src/targets/cgi/parser3.C: fixed .log file dir
         * src/classes/hash.C: hash:keys renamed to hash:_keys :(  
   2002-08-13  paf
 2001-08-03  parser  
           * src/types/pa_vobject.C: allow override parent variables, useful
         * src/: classes/table.C, types/pa_vtable.h: vtable.locks killed            for form descendants [in vobject too, were in vclass]
   
 2001-08-02  parser          * src/types/pa_vclass.C: allow override parent variables, useful
             for form descendants
         * src/: classes/string.C, classes/table.C, include/pa_array.h,  
           main/execute.C, main/pa_exec.C: introducing Array_iter          * src/types/pa_vclass.C: checked: form[vclass]fields can be
             overwritten in derived(table)
         * src/main/execute.C: detected quick_get recursion bug. changed to  
           get@execute, but needs array iterator, separate from array to          * src/: classes/form.C, classes/mail.C, classes/op.C,
           avoid it & use caching            classes/xnode.h, include/pa_request.h, main/execute.C,
             main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
         * src/main/: pa_dictionary.C, pa_globals.C: memset dictionary minor            types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
           bug fixed            types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
             types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
         * src/: classes/classes.h, classes/op.C, include/pa_globals.h,            types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
           main/execute.C, main/pa_globals.C: found another multithread bug            types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
           in op.C (last, last global var killed) :)            types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
             types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
 2001-08-01  parser            types/pa_vstateless_class.h, types/pa_vstateless_object.h,
             types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
         * src/: include/pa_dictionary.h, include/pa_globals.h,            types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
           include/pa_string.h, main/main.dsp, main/pa_dictionary.C,            types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
           main/pa_globals.C, main/pa_request.C, main/pa_string.C,            types/pa_vxnode.h, types/pa_wwrapper.h: introduced
           main/untaint.C: speeded up typo-html replacements. introducing            Value::get_element(..., bool looking_down) [needed to exclude
           Dictionary with first-char caching            endless recoursion]
   
 2001-07-31  parser          * src/types/: pa_vclass.C, pa_vobject.C: reorganized modules todo:
             fix bug with put endless recoursion todo: check 'as'
         * src/types/Makefile.am: pa_vtable.C added to .am  
           * src/types/: Makefile.am, pa_vclass.h, pa_vobject.h, types.dsp:
         * src/main/compile.tab.C: added, so that could be compiled even on            reorganized modules todo: fix bug with put endless recoursion
           non-bison-enabled platforms            todo: check 'as'
   
 2001-07-28  parser          * src/types/pa_vobject.h: checked: table fields can be overwritten
             in derived(table)
         * src/classes/table.C: table:hash always produces hash, when can't  
           - empty          * src/types/pa_vobject.h: derived classes can have fields of their
             own now
         * src/main/: compile.y, untaint.C: bug fix @ untaint when \r  
           skipped \n          * src/: classes/table.C, types/pa_vtable.C, types/pa_vtable.h:
             fixed error message on using non-created table
 2001-07-27  parser  
           * src/: classes/form.C, classes/hash.C, classes/mail.C,
         * src/classes/: double.C, int.C, string.C: provided meaningful msg            classes/op.C, classes/xnode.h, include/pa_request.h,
           on int/double/string :sql without result and default            main/compile.C, main/compile.tab.C, main/execute.C,
             main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
 2001-07-26  parser            types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
             types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
         * src/classes/op.C: fixed bad multithread bug with strangly global            types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
           OP            types/pa_vimage.C, types/pa_vimage.h, types/pa_vmail.C,
             types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
         * src/main/compile.y: $man[$.age[zzz]]  0            types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
             types/pa_vresponse.C, types/pa_vresponse.h,
         * src/: include/pa_opcode.h, main/compile.y, main/execute.C: hash            types/pa_vstateless_class.h, types/pa_vstateless_object.h,
           creation syntax problem persists. restored $: for a while.            types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
           thinking of $man[$.age[zzz]] syntax now            types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
             types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
         * src/: classes/double.C, classes/int.C, classes/string.C,            types/pa_vxnode.h, types/pa_wwrapper.h: VObject.get/out now
           include/pa_opcode.h, main/compile.C, main/compile.y,            looking down/up tree todo: fix error message on non-constructed
           main/compile_tools.h, main/execute.C, types/pa_vcode_frame.h,            parents
           types/pa_vmethod_frame.h, types/pa_wcontext.h,  
           types/pa_wwrapper.h: fixing :: realization #1  2002-08-12  paf
   
         * src/: include/pa_opcode.h, main/compile.C, main/compile.y,          * src/types/: pa_vstateless_class.h, pa_vstateless_object.h: table
           main/compile_tools.h, main/execute.C, main/pa_request.C,            derived OK
           types/pa_vmethod_frame.h: introducing :: this is constructor call  
           prefix.  ordinary : remains for static accesses          * src/main/execute.C: ^base:create[] dynamic call rewritten todo:
             thorough testing
 2001-07-25  parser  
           * src/: main/compile.tab.C, main/compile.y, main/execute.C,
         * src/types/pa_vtable.C: table: get_element order changeed. now: 1.            main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
           fields 2. methods 3. columns            types/pa_vobject.h, types/pa_vstateless_class.h,
             types/pa_vstateless_object.h, types/pa_wcontext.h,
         * src/types/: pa_vdouble.h, pa_vint.h: odbc: no result queries;            types/pa_valiased.C, types/pa_valiased.h, types/Makefile.am:
           quote.  optimized double&int tostring-s            ^base:create[] dynamic call rewritten todo: thorough testing
   
         * src/main/: compile.C, compile.y, compile_tools.h: allowed          * src/types/: pa_value.h, pa_vclass.h, pa_vobject.h: VObject ctor
           whitespace before first method decl            now instantates base class, remembers it and saves child in
             parent VObject.get_class now returns last child = downward
         * src/classes/table.C: allowed nontable result in table:sql,            virtual calls OK
           results in empty table  
           * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
         * src/main/: compile.C, compile.y, compile_tools.h: allowed empty            types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
           lines before first method decl            types/pa_vimage.h, types/pa_vint.h, types/pa_vmethod_frame.h,
             types/pa_vobject.h, types/pa_vresponse.h,
         * src/: classes/table.C, main/main.dsp, types/pa_vtable.C,            types/pa_vstateless_class.h, types/pa_vstateless_object.h,
           types/pa_vtable.h: ^table.record[] now $table.fields            types/pa_vstring.h, types/pa_vtable.h, types/pa_vxdoc.h,
             types/pa_vxnode.h, types/pa_wcontext.h, types/types.dsp: killed
         * src/main/compile.y: $var[] is now empty string, not void            VAliased [redundant], moved $CLASS to VObject only [parser class
             instance]
         * src/main/: compile.y, execute.C: $var[] is now empty string, not  
           void          * src/main/pa_request.C: $response:body[file] content-type check
             fixed [were bad when content-type is hash]
         * src/: classes/string.C, include/pa_globals.h, main/execute.C,  
           main/pa_globals.C: match replace code context moved to implicit  2002-08-09  paf
           $match context  
           * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
         * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,            types/pa_vobject.h, types/pa_vxdoc.h: started as()
           main/compile_tools.h, main/execute.C: with killed, code storage  
           introduced with former 'with' syntax  2002-08-08  paf
   
 2001-07-24  parser          * operators.txt, src/classes/date.C, src/include/pa_globals.h,
             src/main/pa_globals.C: year column in month calendar [week year]
         * src/: main/compile.C, main/execute.C, main/pa_string.C,  
           types/pa_value.h: first get_element, next get operator          * src/main/execute.C: error reporting on object writes to MAIN
             improved [were ruind with fixing $obj[^if(1){$obj}] ]
         * src/main/compile.y: removed @end handling  
           * operators.txt, src/types/pa_vdate.h: $date.yearday
         * src/main/: compile.C, compile.y: @end handling method2            $date.daylightsaving
   
         * src/: classes/file.C, include/pa_common.h, main/pa_common.C:          * src/: classes/mail.C, types/pa_vmail.C: in letter texts one can
           file:move            use tainted data now. only she must specify the language.
   
         * src/main/pa_common.C: file_read close @ eof when imgsize bug            ^mail:send[     $.from[paf@mail.design.ru]
           fixed            $.to[paf@mail.design.ru]        $.subject[^taint[uri][ìîñêâà]=2]
                   $.text[^taint[uri][ìîñêâà]=] ]
 2001-07-23  parser  
           * src/: classes/file.C, classes/op.C, types/pa_vfile.C: ^process
         * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql odbc            now prints more precise origin
           driver  
           * src/include/pa_string.h: String::first_char now not fails on
         * src/classes/hash.C: changed sql driver query interface            empty strings ^if(-f '') now ok and in 3 other places.
   
         * src/: classes/hash.C, classes/string.C, classes/table.C,          * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
           classes/void.C, include/pa_sql_connection.h, sql/pa_sql_driver.h:            String::first_char now not fails on empty strings ^if(-f '') now
           changed sql driver query interface            ok and in 3 other places.
   
 2001-07-20  parser  2002-08-07  paf
   
         * src/types/pa_vrequest.C: X!$browser:type          * src/: classes/string.C, main/pa_string.C: ^string.mid(0;bad)
             fixed
         * src/: classes/file.C, classes/string.C, include/pa_string.h,  
           main/execute.C, main/pa_string.C, types/pa_valiased.C,          * src/main/pa_string.C: ^string.mid(0;bad) fixed
           types/pa_valiased.h, types/pa_value.h, types/pa_vclass.h,  
           types/pa_vcookie.h, types/pa_vdate.h, types/pa_vfile.h,          * src/: main/execute.C, types/pa_vcode_frame.h,
           types/pa_vform.h, types/pa_vhash.h, types/pa_vmath.h,            types/pa_vmethod_frame.h, types/pa_wcontext.C,
           types/pa_vobject.h, types/pa_vrequest.C,            types/pa_wcontext.h, types/pa_wwrapper.h: vcodeframe were
           types/pa_vstateless_class.h, types/pa_vstateless_object.h: only            mistakenly not completely transparent to object writes.
           ^class:method dynamic calls allowed.  ^BASE.method call disabled.            $hash[^if(1){$hash}] now works
           BASE element globally removed  
           * operators.txt, src/classes/op.C: ^cache...{...^cache<<to past...}
 2001-07-18  parser            now erasing cache file [there were bad check on that]
   
         * src/classes/file.C: file:exec/cgi msg          * src/: classes/classes.dsp, classes/table.C,
             lib/pcre/pcre_parser_ctype.dsp, main/pa_array.C, types/types.dsp:
         * src/classes/file.C: $file:exit-code renamed to 'status'            all Debug dirs in .dsp now named 'Debug'
   
         * src/: classes/file.C, main/pa_exec.C: file:exec          * etc/parser3.charsets/Makefile.am: all included into dist
   
         * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,          * operators.txt, src/classes/mail.C: exception_type  email.send
           targets/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:  
           removed $id from *.in *.am          * operators.txt, src/types/pa_vmail.C: exception_type  email.format
   
         * src/main/: pa_request.C, untaint.C: ORIGINS langs name          * src/types/pa_vmail.C: mail:send empty  email checked
           abbrevations  
   2002-08-06  paf
         * src/: classes/date.C, classes/mail.C, classes/math.C,  
           classes/string.C, classes/table.C, include/pa_globals.h,          * operators.txt, src/classes/table.C, src/include/pa_array.h,
           include/pa_string.h, main/execute.C, main/pa_globals.C,            src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
           main/pa_request.C, main/pa_string.C, main/untaint.C,            ^table::create[$source;$.options] ^table::join[$source;$.options]
           types/pa_value.h, types/pa_vdouble.h, types/pa_vfile.h,  
           types/pa_vint.h, types/pa_vstring.C, types/pa_vstring.h:          * operators.txt, src/classes/hash.C, src/classes/string.C,
           $ORIGINS(1) output tracing mode            src/classes/table.C: sql options can be string now ^xxx:sql{...}[
             #  $.default() }
 2001-07-13  parser  
           * src/classes/file.C: $f[file::cgi] $f.UPPER case fields
         * src/: classes/double.C, classes/int.C, classes/string.C,  
           include/pa_request.h, main/execute.C, main/pa_request.C:          * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
           auto.p[@auto], /news/auto.p[no @auto], so that initializing            main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h:
           second would not call first @auto            $file.content-type [instead of .mime-type] now works for
             file::stat also
         * src/main/: execute.C, pa_request.C: order of MAIN parents was  
           wrong, fixed          * src/main/pa_request.C: case insensitive mime_type_of
   
 2001-07-12  parser  2002-08-05  paf
   
         * src/types/pa_value.h: pa_value.putelement modification of system          * src/types/pa_vxnode.C: xnode.childNodes  now 0... [were 1...]
           classes prevented  
           * src/types/pa_vmail.C: file buffer relocated to parser heap
 2001-07-11  parser  
           * operators.txt: comment on date:calendar week column
         * src/: classes/string.C, doc/sources2html.cmd: lr split now yelds  
           table $piece          * src/main/pa_common.C: write checked
   
         * src/: classes/file.C, include/pa_common.h, main/pa_common.C,          * src/main/: pa_common.C: write checked
           types/pa_vstateless_class.h: $file created by file:state +=  
           .atime .mtime .ctime +found&fixed bug with exceptions on          * src/classes/date.C: +1 buf size for stupid snprintfs
           get_junction-created objects [they were on wrong pool]  
           * src/: classes/date.C, include/pa_globals.h, main/pa_globals.C:
 2001-07-09  parser            month calendar week column [ISO 8601 Week Numbers]
   
         * src/main/untaint.C: qp wrong name  2002-08-02  paf
   
         * src/: classes/date.C, classes/string.C, classes/table.C,          * src/: include/pa_config_fixed.h, main/pa_string.C,
           main/compile.y: date format 0            targets/cgi/getopt.c, targets/cgi/parser3.C: removed #define
             DEBUG*
 2001-07-07  parser  
           * configure, configure.in, src/include/pa_version.h: release
         * src/: classes/date.C, classes/table.C, include/pa_common.h,            3_0_0005
           include/pa_string.h, main/pa_common.C, types/pa_vdate.h: date  
           roll table calendar          * src/types/: pa_vclass.h, pa_vform.C, pa_vobject.h: opera
             multipart post fixed
         * src/: classes/Makefile.am, classes/date.C, classes/file.C,  
           classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,          * operators.txt, src/main/pa_request.C, src/types/pa_vform.C:
           classes/op.C, classes/string.C, classes/table.C, classes/void.C,            response transcoded source->client only when text/* or simple
           include/pa_request.h, main/main.dsp, types/pa_value.h,            onoverridden $response:body
           types/pa_vdate.h, types/pa_wcontext.C: date  now set $fields roll  
           string.  todo: sql, calendar  2002-08-01  paf
   
 2001-07-06  parser          * src/: classes/classes.C, classes/classes.h, classes/date.C,
             classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
         * src/: classes/math.C, include/pa_request.h, main/execute.C,            classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
           main/main.dsp, main/pa_request.C, types/pa_vmath.h: math 0            classes/op.C, classes/response.C, classes/string.C,
             classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
 2001-07-03  parser            classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
             include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
         * src/: classes/Makefile.am, classes/math.C, classes/op.C,            include/pa_config_fixed.h, include/pa_dictionary.h,
           classes/random.C, main/main.dsp: class random renamed to math,            include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
           operators became methods            include/pa_globals.h, include/pa_hash.h, include/pa_opcode.h,
             include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
         * src/classes/op.C:  pow sqrt            include/pa_socks.h, include/pa_sql_connection.h,
             include/pa_sql_driver_manager.h, include/pa_stack.h,
         * src/: classes/op.C, main/execute.C:  sin asin cos acos tan atan            include/pa_string.h, include/pa_stylesheet_connection.h,
             include/pa_stylesheet_manager.h, include/pa_table.h,
 2001-07-02  parser            include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
             lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
         * src/classes/table.C: ^table.columns column renamed from 'name' to            lib/pcre/pcre_parser_ctype.c, main/compile.C, main/compile.tab.C,
           'column'            main/compile_tools.C, main/compile_tools.h, main/execute.C,
             main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
         * src/classes/hash.C: ^hash.keys[]            main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
             main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
         * src/: classes/table.C, main/pa_table.C: ^table:columns[]            main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
             main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
         * src/main/: compile.y, compile_tools.h: in expressions now allowed            main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
           'strings'            main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
             targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
 2001-06-29  parser            targets/cgi/parser3.C, targets/cgi/pool_storage.h,
             targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
         * src/main/: execute.C: /0  %0 checkes ver 2            targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
             types/pa_valiased.C, types/pa_valiased.h, types/pa_value.C,
         * src/main/execute.C: /0  %0 checke            types/pa_value.h, types/pa_vbool.h, types/pa_vclass.h,
             types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
         * src/classes/Makefile.am: nothing - void            types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
             types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
         * src/classes/table.C: empty strings @ sql            types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
             types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
 2001-06-28  parser            types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
             types/pa_vmethod_frame.h, types/pa_vobject.h,
         * src/: classes/double.C, classes/file.C, classes/form.C,            types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
           classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,            types/pa_vresponse.h, types/pa_vstateless_class.C,
           classes/op.C, classes/random.C, classes/response.C,            types/pa_vstateless_class.h, types/pa_vstateless_object.h,
           classes/string.C, classes/table.C, classes/void.C,            types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
           main/compile.C, main/compile_tools.C, main/execute.C,            types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
           main/pa_array.C, main/pa_common.C, main/pa_dir.C,            types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
           main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,            types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
           main/pa_hash.C, main/pa_pool.C, main/pa_request.C,            types/pa_wcontext.h, types/pa_wwrapper.h: Date: now
           main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,  
           main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,          * src/: classes/classes.C, classes/classes.dsp, classes/classes.h,
           targets/isapi/parser3isapi.C, main/compile.y: */ static const            classes/date.C, classes/double.C, classes/file.C, classes/form.C,
           char *RCSId=" double.C,v 1.31 2001/06/28 07:41:59 parser Exp            classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
           $";            classes/math.C, classes/op.C, classes/response.C,
             classes/string.C, classes/table.C, classes/void.C,
         * src/: classes/double.C, classes/file.C, classes/form.C,            classes/xdoc.C, classes/xnode.C, classes/xnode.h,
           classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,            include/pa_array.h, include/pa_cache_managers.h,
           classes/op.C, classes/random.C, classes/response.C,            include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
           classes/string.C, classes/table.C, classes/void.C,            include/pa_config_fixed.h, include/pa_config_includes.h,
           main/compile.C, main/compile.y, main/compile_tools.C,            include/pa_dictionary.h, include/pa_dir.h,
           main/execute.C, main/pa_array.C, main/pa_common.C, main/pa_dir.C,            include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
           main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,            include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
           main/pa_hash.C, main/pa_pool.C, main/pa_request.C,            include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
           main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,            include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
           main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,            include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
           targets/isapi/parser3isapi.C: static char *RCSId="$Id$";            include/pa_stack.h, include/pa_string.h,
             include/pa_stylesheet_connection.h,
         * src/main/: compile.y, compile_tools.h: $:name: == ${name}:            include/pa_stylesheet_manager.h, include/pa_table.h,
           $class:name: == ${class:name}:            include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
             lib/md5/pa_md5.h, lib/md5/pa_md5c.c, main/compile.C,
         * src/classes/string.C: exactly one            main/compile_tools.C, main/compile_tools.h, main/execute.C,
             main/main.dsp, main/pa_array.C, main/pa_cache_managers.C,
 2001-06-27  parser            main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
             main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
         * src/: classes/nothing.C, classes/void.C, types/pa_vnothing.h,            main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
           types/pa_vvoid.h: nothing renamed to void            main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
             main/pa_sql_driver_manager.C, main/pa_string.C,
         * src/classes/op.C: ^switch ^case            main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
             main/untaint.C, sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
         * src/main/compile.y: nothing renamed to void            targets/cgi/pa_threads.C, targets/cgi/parser3.C,
             targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
         * src/: classes/hash.C, classes/table.C, main/compile.y,            targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
           main/execute.C, main/main.dsp, main/pa_request.C,            targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
           targets/cgi/pa_pool.C, types/pa_value.h, types/pa_vcode_frame.h,            targets/isapi/pool_storage.h, types/pa_valiased.C,
           types/pa_vmethod_frame.h, types/pa_vtable.h: nothing renamed to            types/pa_valiased.h, types/pa_value.C, types/pa_value.h,
           void            types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
             types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
         * src/main/compile.y: lexer: $zzzz^zzzz were name part            types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
             types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
 2001-05-28  parser            types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
             types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
         * src/doc/html2chm.cmd: removed >a            types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
             types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
         * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: release            types/pa_vresponse.C, types/pa_vresponse.h,
           project options [some bugs]            types/pa_vstateless_class.C, types/pa_vstateless_class.h,
             types/pa_vstateless_object.h, types/pa_vstatus.C,
         * src/doc/sources2html.cmd: z            types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
             types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
         * src/: classes/classes.C, main/compile.C, main/compile.y,            types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
           main/execute.C: operators are not in root class again            types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
             types/pa_wwrapper.h, types/types.dsp, Makefile.am,
 2001-05-24  parser            classes/Makefile.am, main/Makefile.am, targets/cgi/Makefile.am,
             types/Makefile.am: ident.C* removed
         * src/targets/cgi/parser3.dsp: project file  
           * operators.txt, src/classes/file.C, src/main/pa_request.C:
         * src/: classes/op.C, main/pa_request.C, targets/cgi/parser3.C:            file:find[/can/do/this/now.txt]
           ^log ^exp  
           * src/targets/cgi/parser3.C: usage to stdout now
         * src/: main/pa_request.C, targets/cgi/parser3.C: // no _  
           conversions in @exception[params]  2002-07-31  paf
   
         * src/main/pa_request.C: // no _ conversions in @exception[params]          * src/types/pa_vmail.C: mail: errors-to: now default "postmaster"
   
 2001-05-23  parser          * src/: classes/mail.C, types/pa_vmail.C: mail: errors-to: now
             default "postmaster"
         * src/main/pa_string.C: string cmp bug  
           * src/: classes/mail.C, types/pa_vmail.C: mail from/to now must be.
         * src/classes/: mail.C, op.C: rem max 1000            -f postmaster now default sendmail key word "postmaster"
             replaced to $.from
         * src/: classes/op.C, main/compile.y: allow one empty line before  
           LS_DEF_NAME  2002-07-30  paf
   
 2001-05-22  parser          * configure, configure.in, src/targets/cgi/pa_config_paths.h.in,
             src/targets/cgi/parser3.C: removed pa_config_paths.h
         * src/classes/op.C: if params code-required  
           * src/main/pa_charset.C: comment
 2001-05-21  parser  
           * src/main/pa_charset.C: UTF-8 to 1byte charset convert, no char in
         * src/types/pa_vstring.C: eoleof            table, &#decimal;
   
         * src/classes/Makefile.am: .AM          * src/main/pa_request.C: comment
   
         * src/classes/nothing.C: resultless ^sql  moved to nothing:          * etc/parser3.charsets/windows-1251.cfg: section sign [russian
             paragraf]
         * src/classes/: nothing.C, op.C: 'unknown' renamed to 'nothing'  
   2002-07-11  paf
         * src/: classes/double.C, classes/nothing.C, classes/string.C,  
           classes/unknown.C, main/main.dsp, types/pa_vnothing.h,          * src/main/pa_exec.C: build command line badly added params twice
           types/pa_vunknown.h, classes/hash.C, main/compile.y,            [and first time without ' ']. double wrong. fixed.
           main/execute.C, targets/cgi/pa_pool.C, types/pa_vcode_frame.h,  
           types/pa_vmethod_frame.h, types/pa_vtable.h, classes/table.C,          * src/main/pa_exec.C: invalid .exe caused error message with params
           main/pa_request.C, types/pa_value.h: 'unknown' renamed to            wich parser did not provide = reported badly.  fixed that.
           'nothing'  
           * src/classes/mail.C: $MAIL[ # xxx ]
         * src/types/: pa_vstring.C, pa_vstring.h: removed unnecessary  
           vstring::set_string            now ok
   
         * src/classes/: double.C, int.C, string.C: int,double;sql          * operators.txt: plan: sql detailed exception
   
         * src/: classes/hash.C, classes/int.C, classes/string.C,  2002-07-01  paf
           classes/table.C, include/pa_string.h, main/pa_string.C,  
           types/pa_vstring.C, types/pa_vstring.h: started int:sql          * src/: classes/form.C, main/pa_request.C: @conf bug fixed
             [MForm.configure_admin were called when request.main_class ==0
         * src/: classes/classes.C, classes/hash.C, classes/op.C,  
           classes/table.C, main/compile.C, main/compile.y, main/execute.C:          * src/classes/form.C: 10*0x400*400 bug fix [4M not 10M]
           hash:sql moved to main trunc. operators.txt updated  
           * src/classes/form.C: content_length type fix
         * src/classes/: hash.C, op.C, table.C: hash:sql  
   2002-06-30  paf
         * src/classes/op.C: z  
           * src/classes/mail.C: merged from 4
         * src/: main/compile.C, classes/classes.C: 1  
           * src/classes/mail.C: restored $MAIL
         * src/: classes/classes.C, main/compile.C, main/compile.y,  
           main/execute.C: 0  2002-06-28  paf
   
         * src/main/execute.C: z          * configure, configure.in: removed paths.h
   
         * src/targets/cgi/parser3.C: z          * configure, src/include/pa_version.h,
             src/targets/cgi/pa_config_paths.h.in: lates changes from 4 build
         * src/targets/cgi/parser3.C: argv can be just "parser3". made            merged, makes updated
           site_auto_path "." in that case  
           * ChangeLog, configure, operators.txt, src/classes/xdoc.C,
         * src/targets/cgi/: parser3.C: z            src/include/pa_charset.h, src/include/pa_config_fixed.h,
             src/include/pa_pool.h, src/include/pa_version.h,
         * src/main/pa_request.C: .am            src/main/pa_charset.C, src/main/pa_pool.C,
             src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
         * src/: main/pa_request.C, targets/cgi/parser3.C:            src/types/pa_vmail.C: merged latest updates to head
           pcre_tables=pcre_default_tables;  
   2002-06-27  paf
 2001-05-19  parser  
           * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: post-build
         * src/main/pa_string.C: z            not error now
   
         * src/: include/pa_string.h, main/untaint.C, targets/cgi/pa_pool.C:          * operators.txt, src/classes/xdoc.C, src/include/pa_charset.h,
           introducing String::cstr_bufsize, returns just size+1 for as_is            src/include/pa_config_fixed.h, src/include/pa_pool.h,
           target.            src/main/pa_charset.C, src/main/pa_pool.C:
             ^xdoc::create[[uri]]... base uri for document being created,
         * src/: main/untaint.C, targets/cgi/pa_pool.C,            imports and other relative file names would be relative to this
           targets/cgi/parser3.C: fixed bug in pre html untaint, wrong size            uri default uri=path_translated
           used, 4* mem wasted  
           * src/classes/xdoc.C: xsltParseStylesheetDoc bug workaround
         * src/classes/string.C: root context in match replace body now  
           unchanged  2002-06-26  paf
   
         * src/types/pa_value.h: parameter # 1 based          * configure, configure.in, src/include/pa_version.h:
             release_3_0_0004
         * src/main/pa_common.C: common:  actual filename '%s'  
           * src/main/pa_string.C: blank string '', ' <whitespace>' considered
         * src/classes/string.C: z            0 now
   
         * src/classes/Makefile.am: classes/.am          * src/targets/cgi/parser3.C: /cgi-bin/parser empty filename checked
   
         * src/classes/: Makefile.am: classes/.am  2002-06-25  paf
   
         * src/: classes/Makefile.am, main/pa_sql_driver_manager.C,          * src/main/pa_string.C: emtpy string, or string of whitespaces
           targets/cgi/pa_pool.C: classes/.am            considered bad number now
   
 2001-05-18  parser          * operators.txt, src/classes/xdoc.C: ^xdoc.transform[xdoc <<can be
             now
         * src/: include/pa_config_auto.h.in, targets/cgi/pa_pool.C: .am  
           pa_threads.C ins          * operators.txt, src/classes/string.C: ^string.normalize  [old
             name: optimize
         * src/targets/cgi/Makefile.am: .am pa_threads.C added  
           * configure, configure.in, src/include/pa_config_auto.h.in: crypt
 2001-05-17  parser            library configured
   
         * src/: classes/string.C, include/pa_config_fixed.h,          * src/main/pa_request.C: configure_admin forced if no @conf
           include/pa_config_includes.h, main/compile.y,  
           main/compile_tools.h, main/execute.C, main/pa_array.C,          * operators.txt, src/classes/math.C, src/types/pa_vmail.C:
           main/pa_common.C, main/pa_dir.C, main/pa_hash.C, main/pa_pool.C,            ^math:crypt updated to generate random salt when needed and to
           main/untaint.C, types/pa_vcookie.C, types/pa_vfile.C,            call system crypt() if not $apr1$ prefix
           types/pa_vform.C: #include "pa_config_includes.h" removed from  
           most .C  2002-06-24  paf
   
         * src/doc/html2chm.cmd: z          * INSTALL: --with-static/shared-mailreceive described
   
         * src/doc/: chm.cmd, doxygen.cmd, html2chm.cmd, sources2html.cmd,          * src/include/pa_config_fixed.h: ssize_t fixed
           view.cmd, view_chm.cmd, view_html.cmd: doc cmds  
           * configure, configure.in, src/include/pa_config_auto.h.in,
         * src/main/pa_sql_driver_manager.C: moved expiration to            src/targets/cgi/Makefile.am, src/types/Makefile.am,
           get_connection_from_cache            src/types/pa_vmail.C: $mail:received makes update
   
         * src/main/pa_sql_driver_manager.C: cache expiration bf          * src/: include/pa_config_fixed.h, types/pa_vmail.C: #ifdef
             WITH_MAILRECEIVE
         * src/: classes/classes.h, include/pa_sql_connection.h,  
           include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C:          * src/targets/cgi/parser3.C: #ifdef WITH_MAILRECEIVE
           cache expiration[use SQL_Driver::disconnect]  
           * src/targets/cgi/: getopt.c, getopt.h: introducing parser -m
         * src/main/pa_table.C: table.locate current restored on "not found"            option, for $mail:receive
   
         * src/: main/execute.C, types/pa_vmethod_frame.h: endless recursion          * src/types/: pa_vmail.C, pa_vmail.h: uue to separate file
           line no            introducting $message:received ^mail:send rewritten with backward
             comp
         * src/: include/pa_request.h, main/execute.C, main/pa_request.C:  
           ANTI_ENDLESS_EXECUTE_RECOURSION          * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
             targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
         * src/: classes/op.C, include/pa_sql_connection.h,            types/types.dsp: win32xml win32mailreceive pseudomodules paths
           include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C,            now
           sql/pa_sql_driver.h: fixed problem at last: 2connections own  
           1driver and set_services fight for driver::fservices. before fix          * operators.txt, src/classes/mail.C, src/include/Makefile.am,
             src/include/pa_charset.h, src/include/pa_config_fixed.h,
         * src/: classes/op.C, include/pa_config_fixed.h,            src/include/pa_request.h, src/include/pa_string.h,
           include/pa_sql_connection.h, include/pa_sql_driver_manager.h,            src/include/pa_uue.h, src/main/Makefile.am, src/main/main.dsp,
           main/pa_sql_driver_manager.C: found problem at last: 2connections            src/main/pa_globals.C, src/main/pa_request.C,
           own 1driver and set_services fight for driver::fservices. before            src/main/pa_string.C, src/main/pa_uue.C,
           fix            src/targets/cgi/Makefile.am, src/targets/cgi/parser3.C,
             src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
         * src/: include/pa_config_fixed.h, include/pa_threads.h,            src/types/pa_vform.C, src/types/pa_vform.h, src/types/types.dsp:
           targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,            uue to separate file introducting $message:received ^mail:send
           targets/isapi/pa_threads.C, targets/isapi/parser3isapi.dsp: added            rewritten with backward comp
           pa_threads.C  
   2002-06-21  paf
         * src/include/pa_threads.h: removed targets/parser  
           * src/lib/: Makefile.am, md5/pa_md5.h: lib restructure apache .am &
         * src/include/: pa_array.h, pa_common.h, pa_config_fixed.h,            co changes
           pa_config_includes.h, pa_exception.h, pa_exec.h, pa_globals.h,  
           pa_hash.h, pa_opcode.h, pa_pool.h, pa_request.h, pa_sapi.h,          * configure, configure.in, src/lib/md5/Makefile.am,
           pa_socks.h, pa_sql_connection.h, pa_stack.h, pa_string.h,            src/lib/md5/pa_md5c.c, src/targets/cgi/Makefile.am: lib
           pa_table.h, pa_threads.h: #include "pa_config_includes.h" in all            restructure .in and .am files appropriate changes
           headers  
           * src/lib/md5/: md5.dsp, pa_md5.h, pa_md5c.c: moved libltdl and
         * src/: classes/image.C, include/pa_sql_driver_manager.h,            pcre to libs/ added libs/md5 which is linked to non-apache
           main/pa_sql_driver_manager.C, main/pa_string.C: wrong includes            targets ^math:crypt[password;$apr1$salt]
           order prevented sqlmanager to see MULTYTHREAD define  
           * INSTALL, configure.in, operators.txt, parser3.dsw,
         * src/: include/pa_config_fixed.h, include/pa_threads.h,            src/Makefile.am, src/classes/Makefile.am,
           main/pa_sql_driver_manager.C: SYNCHRONIZED moved closer to caches            src/classes/classes.dsp, src/classes/math.C,
           put/gets            src/lib/md5/Makefile.am, src/lib/pcre/LICENCE,
             src/lib/pcre/Makefile.am, src/lib/pcre/README,
         * src/: include/pa_hash.h, main/execute.C: removed /*SYNCHRONIZED*/            src/lib/pcre/Tech.Notes, src/lib/pcre/dftables.c,
           from hash.h            src/lib/pcre/get.c, src/lib/pcre/ibm-1250.ucm,
             src/lib/pcre/ibm-1251.ucm, src/lib/pcre/ibm-1257.ucm,
         * src/: classes/op.C, include/pa_sql_connection.h,            src/lib/pcre/internal.h, src/lib/pcre/maketables.c,
           main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: connection            src/lib/pcre/pcre-2_08.tar.gz, src/lib/pcre/pcre.3,
           from cache ->set_services(&services);            src/lib/pcre/pcre.3.html, src/lib/pcre/pcre.3.txt,
             src/lib/pcre/pcre.c, src/lib/pcre/pcre.dsp, src/lib/pcre/pcre.h,
 2001-05-16  parser            src/lib/pcre/pcre_dftables.dsp, src/lib/pcre/pcre_parser_ctype.c,
             src/lib/pcre/pcre_parser_ctype.dsp,
         * src/targets/cgi/parser3.C: z            src/lib/pcre/ruspart_win2koi.pl, src/lib/pcre/study.c,
             src/lib/pcre/win-koi.tab, src/main/Makefile.am,
         * src/: include/pa_pool.h, targets/cgi/pa_pool.C: removed pool            src/main/compile.tab.C, src/main/main.dsp,
           debug, #ifdefed some.  would debug later, on more precise sample            src/targets/cgi/Makefile.am, src/targets/cgi/parser3.dsp,
           than stupid: @main[] $name[$z[]] ^for[i](0;10000-2){ $tail[9994]            src/targets/isapi/parser3isapi.dsp, src/types/Makefile.am,
           $name.$tail[$tail!] $name.$tail } ok3            src/types/types.dsp, src/lib/Makefile.am: moved libltdl and pcre
             to libs/ added libs/md5 which is linked to non-apache targets
         * src/: include/pa_array.h, main/pa_array.C, targets/cgi/parser3.C:            ^math:crypt[password;$apr1$salt]
           removed array debug. before vstring rebasing  
   2002-06-20  paf
         * src/: include/pa_array.h, include/pa_string.h, main/execute.C,  
           main/pa_array.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C:          * INSTALL, configure, configure.in, operators.txt,
           array debugged; adjusted            src/classes/file.C, src/classes/op.C, src/doc/doxygen.cfg,
             src/include/pa_globals.h, src/include/pa_request.h,
         * src/main/: pa_sql_driver_manager.C, pa_string.C:            src/main/execute.C, src/main/pa_request.C,
           SQL_Driver_manager line no for connect/charset errors            src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
             src/types/pa_vmethod_frame.h: marged latest HEAD updates, mainly
 2001-05-15  parser            file:justname&co & @auto/conf[filespec
   
         * src/: include/pa_array.h, include/pa_string.h, main/pa_array.C,          * operators.txt, src/classes/file.C:
           main/pa_string.C: string+array made linear grows            !^file:dirname[/a/some.tar.gz]=/a
                 !^file:dirname[/a/b/]=/a
         * src/: include/pa_string.h, main/pa_string.C,                !^file:basename[/a/some.tar.gz]=some.tar.gz
           targets/cgi/pa_pool.C, targets/cgi/parser3.C: think that all must                !^file:justname[/a/some.tar.gz]=some.tar
           grow lineary, not exponentialy                !^file:justext[/a/some.tar.gz]=gz
   
         * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C,          * src/: classes/op.C, include/pa_request.h, main/execute.C,
           targets/cgi/pa_pool.C, targets/cgi/parser3.C: string fixed bug            main/pa_request.C, types/pa_vmethod_frame.h: introducing
           with fullchunk cmps            @conf/auto[filespec]
   
         * src/targets/cgi/: pa_pool.C, parser3.C: main loss here: 5673321/          * configure: parser3.conf renamed to auto.p autoconf changes
           70041=           81  
           * INSTALL, configure.in, operators.txt, src/doc/doxygen.cfg,
         * src/: include/pa_string.h, targets/cgi/pa_pool.C,            src/include/pa_globals.h, src/targets/cgi/parser3.C,
           targets/cgi/parser3.C: detected huge mem allocation: size/times            src/targets/isapi/parser3isapi.C: parser3.conf renamed to auto.p
           malloc 27809390/368771, calloc 3232/83. would test now  
   2002-06-18  paf
         * src/: classes/random.C, main/compile.y, main/execute.C,  
           main/pa_request.C, types/pa_value.h, types/pa_vmethod_frame.h:          * configure, configure.in, src/include/pa_version.h: version to
           numbered params had wrong name - for instance: bad error message            configure.in
           in ^for[] bad body type. fixed  
           * INSTALL: reflected .conf.dist dir change
 2001-05-14  parser  
           * Makefile.am, configure, configure.in,
         * src/: classes/string.C, include/pa_string.h, main/pa_string.C,            etc/parser3.charsets/Makefile.am: parser3.conf.dist moved to bin,
           main/untaint.C: ^string.upper|lower[]            .in & *.am updated
   
 2001-05-11  parser          * src/classes/file.C: strncasecmp
   
         * src/: classes/double.C, classes/image.C, classes/op.C,          * src/classes/file.C: strcasecmp
           classes/string.C, classes/table.C, classes/unknown.C,  
           main/execute.C, types/pa_value.h, types/pa_vbool.h,          * etc/Makefile.am: bin/parser3.conf.dist [moved from etc
           types/pa_vdouble.h, types/pa_vint.h, types/pa_vstring.h,  
           types/pa_vunknown.h: op: MAX_LOOPS as_int          * src/classes/file.C: ^file::exec[script;$.bad error case
             insensitive check now
         * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: fixed some  
           .dsp for win32tools          * src/classes/file.C: ^file::exec[script;$.bad now error, not skip
   
 2001-05-11  paf          * configure, configure.in, src/include/pa_pool.h,
             src/include/pa_types.h: pack configure.in detection simplified.
         * src/: classes/classes.cmd, classes/gawk.exe, classes/ls.exe,            figured out that gcc on sparc not that stupid as thought
           main/bison.exe, targets/isapi/KILL.EXE, targets/isapi/PSTAT.EXE,            previously: on sparc: when it sees packed class it modifies it's
           targets/isapi/istart.cmd, targets/isapi/istop.cmd,            field-access-code to byte operations [stb, ldub] instead of 4byte
           targets/isapi/kill.pl: moved win32 helpers to /win32tools            operations [st, lduh] so packed must be all parts of packed
             class, i.e. it's parents&fields(classes).  for now it's only
 2001-05-10  paf            String that packed and what was wrong is that it's parent -
             Pooled, were not packed. fixed that.
         * src/include/: pa_common.h, pa_config_includes.h: inline undefed  
           for C++, that's all  2002-06-14  paf
   
         * src/include/: pa_config_auto.h.in, pa_config_fixed.h,          * operators.txt: more precise xml-to-text options
           pa_config_includes.h: inline wonders  
           * operators.txt, src/types/pa_vxnode.C: xnode
         * src/: classes/Makefile.am, classes/hash.C, doc/doxygen.cfg,            attribute_node.name/value xnode pi.node.data
           doc/doxygen.cmd: hash.C added  
   2002-06-12  paf
         * src/: main/pa_request.C, types/pa_vrequest.C: op configured  
           * configure, configure.in, src/targets/cgi/Makefile.am,
         * src/main/compile.y: @end grammar: allowed zero strings in control            src/targets/cgi/parser3.C: removed root conf define creation
           menthod  
           * INSTALL, configure.in, operators.txt, etc/Makefile.am,
         * src/types/: pa_value.h, pa_vclass.h, pa_vstateless_class.h,            src/include/pa_globals.h, src/include/pa_request.h,
           pa_vstateless_object.h: changed priority: field before method            src/main/compile.tab.C, src/main/pa_globals.C,
           lookup in vclass & vobject            src/main/pa_request.C, src/targets/cgi/parser3.C,
             src/targets/isapi/parser3isapi.C: parser3.conf now one and only
         * src/: doc/doxygen.cmd, main/compile.y, types/pa_vobject.h:  
           grammar: priorities changes [lowerd && prior] vobject: now first          * src/classes/mail.C: sendmail -ti [default now]
           fields, next methods  
           * src/: classes/mail.C, main/pa_request.C: $MAIL $CHARSETS allowed
 2001-05-08  paf            to be strings. for convinient #ing
   
         * src/main/pa_table.C: table columnname2item on nameless ignored          * src/: include/pa_globals.h, include/pa_request.h, main/execute.C,
           bark=false. fixed            main/pa_globals.C, main/pa_request.C: @rootconf [were @conf]
   
         * src/: classes/table.C, types/pa_value.h, types/pa_vhash.h,          * src/: include/pa_globals.h, include/pa_request.h, main/main.dsp,
           types/pa_vmethod_frame.h: hash:default works at last!            main/pa_globals.C, main/pa_request.C: @conf
   
         * src/: classes/mail.C, classes/table.C, doc/doxygen.cmd,  2002-06-11  paf
           main/main.dsp, types/pa_vhash.h, types/pa_vstateless_class.h:  
           hash:default          * src/classes/file.C: check simplified
   
         * src/classes/table.C: z          * src/: classes/file.C, targets/cgi/parser3.dsp,
             targets/isapi/parser3isapi.C: suexec env keys filter plus CGI_ as
         * src/classes/table.C: table:hash always hash of hash now            valid prefix
   
         * src/classes/table.C: table:empty return bool now          * src/: classes/file.C, include/pa_request.h, include/pa_sapi.h,
             targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
         * src/: classes/table.C, doc/chm.cmd, include/pa_array.h,            file::exec/cgi to pass HTTP_ vars introducing SAPI::environment
           include/pa_table.h, main/pa_table.C, types/pa_value.h,  
           types/pa_vtable.h: table:hash  2002-06-10  paf
   
         * src/classes/table.C: table:record have name          * operators.txt, src/classes/op.C, src/include/pa_common.h,
             src/main/pa_common.C: lock failures reported now
         * src/: classes/op.C, types/pa_vtable.h: allowed $table.2342734  
           returns vunknown          * src/main/compile_tools.C: ^if(" 1 "){y} bug fixed optimization
             string->double @ compile time were not-enough-checking...
         * src/classes/: double.C, int.C, op.C, string.C:  
           int,double,string:int[] double[] string:length[] results now have          * src/main/: compile.tab.C, pa_string.C: whitespace after number in
           hames            autoconvert now ignored
   
         * src/: classes/op.C, classes/table.C, main/main.dsp,          * src/types/: pa_vform.C, pa_vform.h: $form: not determined yet
           types/pa_vtable.h: removed table:find. table:locate and op:eval            check
           now return bool  
           * src/classes/mail.C: mail netscape attachment name fixed. todo:
         * src/: doc/chm.cmd, main/execute.C, types/pa_value.h: wrong pool            $response:body content-type:name
           in method checkparams again. fixed  
           * configure, configure.in: hpux check, nsl link, no socket
 2001-05-07  paf  
           * operators.txt: old merge conflict removed
         * src/doc/chm.cmd: cmd  
           * configure, configure.in: pack even address access on sparc&co
         * src/: classes/image.C, classes/mail.C, classes/string.C,            arch checked in configure
           doc/chm.cmd, include/pa_table.h, main/pa_table.C,  
           types/pa_value.h: method reported errors on wrong pool          * configure, src/include/pa_version.h: makes
   
         * src/main/execute.C: ^var[^class:var.method[]] is not constructor          * configure, configure.in, src/include/pa_version.h: makes
           now  
           * src/main/untaint.C: (bug#2) mail subject got always prepended
         * src/: doc/ClassExample2.dox, doc/aliased.dox, doc/chm.cmd,            with charset even when all letters were 7bit one
           include/code.h, include/pa_opcode.h, main/compile.C,  
           main/compile_tools.h, main/execute.C, types/pa_value.h,          * src/main/pa_common.C: merged fixed -d (bug)
           types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,  
           types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,          * src/main/pa_common.C: fixed -d (bug)
           types/pa_vfile.h, types/pa_vform.h, types/pa_vhash.h,  
           types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,  2002-06-03  paf
           types/pa_vmethod_frame.h, types/pa_vobject.h,  
           types/pa_vrequest.h, types/pa_vresponse.h,          * ChangeLog, operators.txt, etc/parser3.charsets/windows-1251.cfg,
           types/pa_vstateless_class.h, types/pa_vstring.h,            src/classes/classes.dsp, src/main/compile.tab.C,
           types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,            src/main/main.dsp, src/main/pa_globals.C,
           types/pa_wwrapper.h: pa_code.h            src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
             src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: fixed
         * src/doc/: chm.cmd, doxygen.cmd, view.cmd: dox cmd            .dsp-s along with reorganized cvs modules dirs structure
   
         * src/: classes/string.C, classes/table.C, doc/ClassExample1.dox,          * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
           doc/ClassExample2.dox, doc/ClassExample3.dox, doc/aliased.dox,            main/pa_globals.C, targets/cgi/parser3.dsp,
           doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,            targets/isapi/parser3isapi.dsp, types/types.dsp: reorganized cvs
           doc/doxygen.cmd, doc/executor.dox, doc/index.dox,            modules
           doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,  
           doc/string.dox, doc/targets.dox, doc/value.dox, include/code.h,  2002-05-28  paf
           include/pa_hash.h, include/pa_string.h, main/pa_request.C,  
           main/pa_sql_driver_manager.C, types/pa_vjunction.h,          * src/targets/cgi/parser3.C: info.uri now ""
           types/pa_vtable.h: dox, split by not clean parts also  
   2002-05-17  paf
         * src/: include/pa_table.h, main/pa_table.C, types/pa_value.h,  
           types/pa_vtable.h: table: fields, then methods.  so to enable          * src/classes/: table.C: ^table.save << checked empty
           'dir' fields & co. more            pre/match/post columns
   
         * src/types/: pa_value.h, pa_vtable.h: table: fields, then methods.  2002-05-16  paf
           so to enable 'dir' fields & co.  
           * src/classes/image.C: image::measure can png now
         * src/main/compile.y: grammar: @end  
   2002-05-15  paf
 2001-05-04  paf  
           * operators.txt, src/classes/date.C: ^date::create[%H:%M[:%S]]
         * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,            added
           doc/ClassExample3.dox, main/execute.C: dox: example1 updated  
           * etc/parser3.charsets/windows-1251.cfg: 0x forgot, fixed
         * src/: classes/classes.h, classes/double.C, classes/file.C,  
           classes/form.C, classes/image.C, classes/int.C, classes/mail.C,          * operators.txt, src/classes/date.C: ^date::create[%Y[-%m[-%d[
           classes/op.C, classes/random.C, classes/response.C,            %H[:%M[:%S]]]]]] [-%m now
           classes/string.C, classes/table.C, classes/unknown.C,  
           doc/doxygen.cfg, doc/index.dox, main/pa_string.C: removed m-  2002-05-14  paf
           method dox  
           * etc/parser3.charsets/: windows-1251.cfg: added 3 quotes
 2001-05-03  paf  
   2002-05-07  paf
         * src/: classes/classes.h, classes/double.C, doc/aliased.dox,  
           doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,          * ChangeLog, src/classes/classes.dsp, src/classes/op.C,
           doc/doxygen.txt, doc/executor.dox, doc/index.dox,            src/include/pa_globals.h, src/include/pa_request.h,
           doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,            src/include/pa_table.h, src/main/compile.tab.C,
           doc/string.dox, doc/targets.dox, doc/value.dox,            src/main/compile.y, src/main/main.dsp, src/main/pa_globals.C,
           main/pa_request.C: dox splitted .dox files and added some            src/main/pa_request.C, src/main/pa_table.C,
             src/targets/isapi/pa_pool.C, src/targets/isapi/parser3isapi.C,
         * src/: classes/Makefile.am, doc/doxygen.txt: classes/am            src/targets/isapi/parser3isapi.dsp,
             src/targets/isapi/pool_storage.h, src/types/types.dsp: Table
 2001-05-02  paf            name2number field now &.  main_method_name now on Request pool
             rather on global_pool [Junction+VJunction created on same pool as
         * src/classes/: image.C, table.C: table:dir result are not tainted            name = were created on global pool, causing mem leaks]
           by file_name  language now  
           * src/: classes/classes.dsp, classes/op.C, include/pa_globals.h,
 2001-04-28  paf            include/pa_request.h, include/pa_table.h, main/compile.tab.C,
             main/compile.y, main/main.dsp, main/pa_globals.C,
         * src/classes/classes.inc: removed classes.inc            main/pa_request.C, main/pa_table.C, targets/isapi/pa_pool.C,
             targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
         * src/: classes/classes.inc, main/Makefile.am: removed pa_methoded            targets/isapi/pool_storage.h, types/types.dsp: Table name2number
           from .am            field now &.  main_method_name now on Request pool rather on
             global_pool [Junction+VJunction created on same pool as name =
         * src/classes/classes.awk: skipped classes in .awk            were created on global pool, causing mem leaks]
   
         * src/: classes/Makefile.am, classes/classes.C, classes/classes.h,  2002-05-06  paf
           classes/classes.inc, classes/double.C, classes/file.C,  
           classes/form.C, classes/int.C, classes/op.C, classes/response.C,          * src/: main/pa_globals.C, targets/cgi/parser3.C,
           classes/string.C, classes/table.C, classes/unknown.C,            targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
           include/pa_methoded.h, main/main.dsp, main/pa_methoded.C,            100*40 bytes per request memory leak [nonpool malloc in globals]
           targets/cgi/parser3.C, types/pa_vdouble.h, types/pa_vfile.h,  
           types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h: renamed          * src/: main/pa_globals.C, targets/cgi/parser3.C,
           pa_methoded back to classes/classes.h            targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
             100*40 bytes per request memory leak [nonpool malloc in globals]
         * src/: classes/Makefile.am, main/main.dsp: classes/Makefile.am  
   2002-04-30  paf
         * src/: classes/Makefile.am, classes/classes.awk,  
           classes/classes.cmd, classes/classes.inc, classes/gawk.exe,          * configure, src/include/pa_version.h: version now not b
           classes/ls.exe, main/bison.exe: classes.inc autogenerator  
           * src/targets/cgi/parser3.C: request.uri now never 0
         * src/: classes/classes.C, classes/classes.h, classes/double.C,  
           classes/file.C, classes/form.C, classes/int.C, classes/op.C,  2002-04-29  paf
           classes/response.C, classes/string.C, classes/table.C,  
           classes/unknown.C, include/pa_methoded.h, main/Makefile.am,          * configure.in: removed b
           main/main.dsp, main/pa_methoded.C, targets/cgi/parser3.C,  
           types/pa_vdouble.h, types/pa_vfile.h, types/pa_vform.h,          * src/: classes/op.C, include/pa_exception.h, main/pa_request.C:
           types/pa_vimage.h, types/pa_vint.h: classes/classes renamet to            Exception::comment/type checked in (), no there's no empty
           include|main/pa_methoded            type/comment by default
   
         * src/: include/pa_string.h, main/pa_globals.C, main/untaint.C,          * ChangeLog, src/doc/ClassExample1.dox, src/doc/ClassExample3.dox,
           targets/cgi/parser3.C, targets/isapi/parser3isapi.C: z            src/doc/aliased.dox, src/doc/methoded.dox, src/doc/string.dox,
             src/doc/value.dox, src/include/pa_exception.h,
         * src/: classes/form.C, include/pa_globals.h, main/pa_globals.C:            src/main/pa_request.C, src/targets/cgi/parser3.C: merged from
           moved some configured data to request::classes_conf moved some            0001
           string crations from globals to M...  [works]  
   2002-04-26  paf
         * src/: classes/form.C, classes/mail.C, classes/op.C,  
           include/pa_globals.h, include/pa_request.h, main/pa_globals.C,          * src/: doc/doxygen.cfg, targets/cgi/parser3.dsp: doxygen dot image
           main/pa_request.C: moved some configured data to            size reduced
           request::classes_conf moved some string crations from globals to  
           M...  2002-04-25  paf
   
         * src/: classes/form.C, include/pa_request.h, main/pa_request.C:          * src/targets/cgi/: parser3.C: setenv in .htaccess when cgi is not
           about to move configured data to special request hash            under that dir got REDIRECT_ prefix before HTTP_PARSER_x_CONFIG,
             now that took into account
         * src/: classes/classes.C, classes/classes.h, classes/file.C,  
           classes/form.C, classes/mail.C, include/pa_request.h,          * operators.txt, src/classes/date.C: ^date::create[2002-12-33
           main/pa_request.C: configure started            01:03:04]
   
         * src/: main/execute.C, types/pa_wcontext.h: Methoded reorganized          * ChangeLog, operators.txt, src/classes/date.C:
           2. todo: methoded-configure            ^date::create[2002-12-33 01:03:04]
   
         * src/: classes/_double.h, classes/_file.h, classes/_form.h,          * ChangeLog: updated changelog
           classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,  
           classes/_random.h, classes/_response.h, classes/_string.h,          * src/classes/table.C: removed restriction on column count to
           classes/_table.h, classes/_unknown.h, classes/classes.inc,            ^table.hash to work, now must be >0 [were >1]
           classes/double.C, classes/exec.C, classes/file.C, classes/form.C,  
           classes/image.C, classes/int.C, classes/mail.C, classes/op.C,  2002-04-24  paf
           classes/random.C, classes/response.C, classes/string.C,  
           classes/table.C, classes/unknown.C, include/pa_globals.h,          * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
           include/pa_request.h, main/compile.y, main/execute.C,            targets/cgi/parser3.C, targets/cgi/parser3.dsp,
           main/main.dsp, main/pa_globals.C, main/pa_request.C,            targets/isapi/parser3isapi.dsp, types/types.dsp: MSVC profile
           targets/cgi/parser3.C, targets/isapi/parser3isapi.C,            targets
           types/pa_value.h, types/pa_vcookie.h, types/pa_vdouble.h,  
           types/pa_venv.h, types/pa_vfile.h, types/pa_vform.C,  2002-04-23  paf
           types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,  
           types/pa_vrequest.h, types/pa_vresponse.h,          * operators.txt, src/classes/string.C:
           types/pa_vstateless_class.h, types/pa_vstring.h,            int/double/string:sql{}[$.default{code}] fixed [were barking:
           types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,            "junction used outside of context"]
           classes/classes.C, classes/classes.h: Methoded reorganized. todo:  
           methoded-configure  2002-04-22  paf
   
         * src/: classes/file.C, classes/table.C, main/compile.y,          * types.txt, src/classes/string.C, src/include/pa_string.h,
           main/execute.C, main/pa_request.C, targets/cgi/parser3.C,            src/main/pa_string.C, src/types/pa_vstring.C,
           types/pa_vtable.h, types/pa_wcontext.h: removed ^a.menu{$name}            src/types/pa_vstring.h: ^string.optimize[]
           ability. now $a{^menu{$name}} or ^a.menu{$a.name}  
           * src/: include/pa_globals.h, include/pa_table.h,
         * src/: classes/_string.h, classes/classes.C, classes/classes.h,            main/pa_globals.C, main/pa_string.C, main/pa_table.C: fixed match
           classes/double.C, classes/exec.C, classes/file.C, classes/form.C,            table template
           classes/image.C, classes/int.C, classes/mail.C, classes/op.C,  
           classes/random.C, classes/response.C, classes/string.C,          * src/classes/: string.C: optimize removed from string
           classes/table.C, classes/unknown.C, include/pa_request.h,            .left/right/pos
           main/compile.y, main/execute.C, main/pa_globals.C,  
           main/pa_request.C, types/pa_value.h, types/pa_vdouble.h,          * src/main/execute.C: rolled back to
           types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,            before_killing_userjunction_contexts
           types/pa_vimage.h, types/pa_vint.h, types/pa_vresponse.h,  
           types/pa_vstring.h, types/pa_vtable.h, types/pa_vunknown.h:          * src/main/execute.C: user junctions context killed
           beautifying just compiled. todo: debug, configure  
           * src/main/execute.C: junctions to local contexts got
 2001-04-27  paf            cleanized&checked later
   
         * src/: classes/file.C, classes/image.C, classes/table.C,  2002-04-19  paf
           main/execute.C, main/pa_request.C, types/pa_vstateless_class.h:  
           beautifying -99          * src/: classes/string.C, include/pa_request.h,
             include/pa_string.h, main/pa_request.C, main/pa_string.C,
         * src/: classes/_double.h, classes/_form.h, classes/_int.h,            types/pa_vstring.C, types/pa_vstring.h: string now optimized
           classes/_response.h, classes/_unknown.h, classes/classes.C,            prior to .left .right .mid .pos .match when that is profitable,
           classes/classes.h, classes/double.C, classes/file.C,            and always before .replace when $ORIGINS(1) optimization disabled
           classes/form.C, classes/image.C, classes/int.C, classes/mail.C,            economy from not wasting mem on lots of strings which occur by
           classes/op.C, classes/random.C, classes/response.C,            lots of String:mid calls to get parts of source string between
           classes/string.C, include/pa_globals.h, main/main.dsp,            found_occurances
           main/pa_globals.C, types/pa_vdouble.h, types/pa_vfile.h,  
           types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,          * src/classes/file.C: ovector now local economy: 16 bytes per
           types/pa_vresponse.h, types/pa_vstring.h, types/pa_vtable.h,            ^file:list
           types/pa_vunknown.h: beautifying -100  
           * src/: include/pa_globals.h, include/pa_table.h,
         * src/main/compile.y: serge@ found @CLASS bug. fixed            main/pa_globals.C, main/pa_string.C: String::match table columns
             globalized, not created @ each ^match anymore economy:
         * src/: classes/_file.h, classes/_image.h, classes/_mail.h,            sizeof(Array)+space on 3+x cells=24+ bytes per ^match
           classes/_op.h, classes/_random.h, classes/_table.h,  
           classes/file.C, classes/image.C, classes/int.C, classes/mail.C,          * src/: classes/op.C, classes/string.C, types/pa_value.h: VTable
           classes/op.C, classes/random.C, classes/response.C,            removed from each String::match replace iteration, and made
           classes/string.C, classes/table.C, classes/unknown.C,            stacked sizeof(VTable)=12bytes economy on each replace code
           include/pa_globals.h, main/main.dsp, main/pa_globals.C,  
           main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,          * src/doc/footer.htm: 2001,
           types/pa_vcookie.h, types/pa_venv.h, types/pa_vrequest.h: started  
           beautifying          * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
             string.match[]['] option enables generation of $match.prematch
 2001-04-26  paf            .match .postmatch columns
   
         * src/: main/pa_request.C, types/pa_vfile.h: code documentation ++          * src/main/pa_string.C: String::match options analized without
             cstr-ing them now
         * src/: doc/doxygen.cfg, include/pa_socks.h, main/pa_socks.C: code  
           documentation ++          * src/doc/: doxygen.cfg, footer.htm, html2chm.cmd, postbuild.txt,
             sources2html.cmd, view_chm.cmd, view_html.cmd, chmhelper.pl:
         * src/: classes/_exec.h, doc/doxygen.cfg,            config updated to doxygen 1.2.15, created helper which fixes
           include/pa_config_fixed.h, include/pa_config_includes.h,            minor bugs in chm project files & htm tree.  changed extension to
           targets/cgi/pa_pool.C: code documentation ++            .htm
   
         * src/: classes/_image.h, classes/op.C, classes/random.C,  2002-04-18  paf
           types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,  
           types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,          * src/doc/doxygen.cfg: .chi generation disabled
           types/pa_vform.C, types/pa_vform.h, types/pa_vimage.C,  
           types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,          * src/: classes/classes.h, classes/xdoc.C, classes/xnode.C,
           types/pa_vmethod_frame.h, types/pa_vobject.h,            classes/xnode.h, types/pa_vxdoc.C: xdoc(xnode) now fully -
           types/pa_vrequest.C, types/pa_vrequest.h,            fields&methods
           types/pa_vstateless_class.C, types/pa_vstateless_object.h,  
           types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.h,          * src/: classes/classes.h, classes/hash.C, types/pa_value.h,
           types/pa_vunknown.h, types/pa_wcontext.C, types/pa_wwrapper.h:            types/pa_vbool.h, types/pa_vcookie.h, types/pa_vdate.h,
           code documentation ++            types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.h,
             types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
         * src/: classes/image.C, classes/mail.C, classes/string.C,            types/pa_vjunction.h, types/pa_vobject.h, types/pa_vrequest.h,
           classes/table.C, doc/doxygen.cfg, doc/doxygen.txt,            types/pa_vresponse.h, types/pa_vstateless_class.h,
           include/pa_array.h, include/pa_dir.h, include/pa_string.h,            types/pa_vstateless_object.h, types/pa_vstatus.h,
           main/compile_tools.h, main/pa_common.C, sql/pa_sql_driver.h,            types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h,
           types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,            types/pa_vxdoc.h, types/pa_vxnode.h: fclass_real lowered from
           types/pa_vhash.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,            VStateless_class to VObject
           types/pa_vobject.h, types/pa_vstateless_class.h,  
           types/pa_wcontext.h, types/pa_wwrapper.h: code documentation ++          * src/: main/pa_request.C, types/pa_valiased.h,
             types/pa_vstateless_class.h, types/pa_vstateless_object.h,
         * src/main/: pa_request.C, pa_string.C: z            types/pa_vstring.h: VStateless_string_object speicalized light
             version of VStateless_object
         * src/: include/pa_common.h, include/pa_types.h,  
           main/pa_sql_driver_manager.C: module [and, guess, isapi]          * src/classes/op.C: ^throw comment param made optional
           connection caching fixed.  request-pooled-url were stored into  
           global connectioncache          * src/types/: pa_valiased.C, pa_valiased.h, pa_vclass.h,
             pa_vobject.h, pa_wcontext.C: VAliased get/set alias now virtual
 2001-04-25  paf            and implemented down in VClass, fclass_alias removed,
   
         * src/: doc/doxygen.cfg, doc/doxygen.txt,          * src/types/pa_value.C: forced to cut that from .h because of
           targets/isapi/parser3isapi.C: started doc / [doxygen.txt]            VStateless_class usage [undefined in .h]
   
         * src/: include/code.h, include/pa_common.h, main/compile.y,          * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
           main/execute.C, main/pa_common.C: -d            main/compile_tools.C, main/compile_tools.h, main/execute.C,
             main/pa_request.C, types/pa_vmethod_frame.h: OP_GET_METHOD_FRAME
         * src/: classes/file.C, main/pa_exec.C, targets/cgi/parser3.C:            merged with OP_CALL, VCodeFrame move to stack [no more heap waste
           illegal call check a bit improved, but still under iis no mapping            on each CALL]
           of dir with parser allowed!  
           * src/: classes/classes.h, classes/date.C, classes/double.C,
 2001-04-24  paf            classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
             classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
         * src/targets/Makefile.am: apache module lib .am            classes/response.C, classes/string.C, classes/table.C,
             classes/void.C, classes/xnode.C, include/pa_globals.h,
         * src/main/pa_exec.C: windows32 buildCommand            include/pa_request.h, main/execute.C, main/pa_globals.C,
             main/pa_request.C, types/Makefile.am, types/pa_value.h,
 2001-04-23  paf            types/pa_vdouble.h, types/pa_vform.C, types/pa_vhash.h,
             types/pa_vint.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
         * src/targets/cgi/Makefile.am: win32 conditional            types/pa_vstateless_class.h, types/pa_wcontext.C,
             types/pa_wcontext.h, types/pa_wwrapper.h, types/types.dsp:
         * src/targets/cgi/Makefile.am: win32 conditional            removed Value::fname
   
         * src/targets/cgi/Makefile.am: liblink  2002-04-17  paf
   
         * src/: include/pa_array.h, main/pa_array.C, types/pa_vfile.h:          * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
           vfile fields return type            doc/ClassExample3.dox, doc/compiler.dox, doc/module.dox,
             doc/pooled.dox, doc/string.dox, doc/targets.dox,
         * src/types/pa_vfile.h: vfile fields return type            include/pa_pool.h, include/pa_types.h: dox updated to current
             state, PTHROW freshen to throw & co
         * src/include/pa_config_auto.h.in: .h.in  
           * src/types/pa_vhash.h: vstring wrong parent fixed
         * src/: classes/Makefile, main/Makefile, targets/cgi/Makefile,  
           types/Makefile: makefiles removed          * src/classes/op.C: taint local result var bug fixed
   
         * src/: classes/Makefile, main/Makefile, main/pa_string.C,  2002-04-16  paf
           targets/cgi/Makefile, types/Makefile: configure.in + makefiles  
           * asm.txt, form.txt, lang.txt, sql.txt: removed outdated. see in
         * src/main/pa_string.C: tested OK /// @test really @b test: s x m            Attic asm.txt as most interesting
           [tested: i & g ]  
           * src/: main/pa_request.C, targets/isapi/parser3isapi.C: removed
         * src/: classes/random.C, targets/cgi/parser3.C: redo failed ///            check, preventing content-length: 0 from appearing
           @test noticed series in isapi, check how initialize_random_class  
           is called! [must be called only once]          * src/main/execute.C: $result in @main now taken into account as in
             usual functions
         * src/main/execute.C: operators first! so that ^table.menu{^rem{}}  
           would not be 'unknown column'          * src/: doc/postbuild.txt, main/execute.C: $result in @postprocess
             & @unhandled_exception now taken into account as in usual
         * src/: classes/table.C, types/pa_vform.C, types/pa_vtable.h: ///            functions
           @test $a.menu{ $a[123] } and $a.menu{^table:set[]...}  
           * src/doc/postbuild.txt: instructions on post .html build
         * src/: main/pa_request.C, targets/cgi/parser3.C: /// @test with  
           commandline start "parser3 a.html" so that ^load[a.cfg] worked!          * src/doc/: doxygen.cfg, html2chm.cmd: .chm file only now, no .chi
           [now doesnt]  
           * src/: classes/file.C, main/pa_exec.C: stderr of execs mark as
         * src/targets/cgi/parser3.C: cgi cmdline ver            tainted
   
         * src/targets/cgi/parser3.C: cgi /// @test disable          * src/main/pa_request.C: uri in error log
           /cgi-bin/parser3/auto.p  
           * src/: classes/date.C, main/compile.tab.C, targets/cgi/parser3.C:
         * src/main/untaint.C: untaint without charset            cheched date:create(days) param for validity [later were assumed
             valid and crashed on invalid onces]
         * src/: include/pa_config_fixed.h, include/pa_config_includes.h,  
           main/pa_common.C: common: file_write /// @test mkdirs          * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
           file_delete rmdirs            main/execute.C, targets/cgi/parser3.C: OP_CALL -> OP_CALL__WRITE
             and used that for removing VString wrapper
         * src/main/untaint.C: mail header only once to =?  
           * src/classes/op.C: exception2vhash file now tainted
         * src/: classes/image.C, classes/mail.C, include/pa_globals.h,  
           include/pa_string.h, main/pa_exec.C, main/pa_request.C,          * src/classes/op.C: _process pseudo origin copied from local var to
           main/untaint.C: untaint -        @test optimize whitespaces for            heap
           all but 'html'  
           * src/classes/op.C: extra check on empty file in origin in _execute
         * src/: classes/mail.C, include/pa_hash.h, include/pa_string.h,  
           main/pa_common.C, main/pa_hash.C, main/pa_request.C,  2002-04-15  paf
           main/untaint.C: untaint -  @test mail-header  
           * src/: main/execute.C, types/pa_value.h: fixed name update
 2001-04-20  paf  
           * src/classes/: file.C, op.C, table.C: finished dual write_xxx_lang
         * src/: classes/string.C, classes/table.C, include/pa_globals.h,            functions
           include/pa_request.h, include/pa_string.h, main/compile.y,  
           main/pa_globals.C, main/pa_request.C, main/pa_string.C,          * src/: classes/file.C, classes/hash.C, classes/op.C,
           targets/cgi/parser3.C: $MAIN:LOCALE            include/pa_request.h, main/execute.C, types/pa_wcontext.h:
             started dual write_xxx_lang functions, if checked & works
         * src/main/untaint.C: z  
           * src/: classes/date.C, classes/file.C, classes/mail.C,
         * src/: main/untaint.C, targets/cgi/parser3.C: fixed header "a/a"            classes/string.C, classes/xnode.C, include/pa_request.h,
             types/pa_value.h, types/pa_wcontext.h: removed absolutely
 2001-04-19  paf            unnecessary VString shells
   
         * src/main/compile_tools.h: $a$b bugfix          * src/main/execute.C: CodeFrame soul fixed [mistakenly killed by
             prev changes]
         * src/targets/cgi/parser3.C: z  
           * src/: classes/image.C, classes/op.C, classes/string.C,
         * src/classes/file.C: z            classes/table.C, include/pa_request.h, main/execute.C,
             types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
         * src/: classes/file.C, include/pa_common.h, types/pa_vcookie.C:            StringOrValue wcontext result, now ready for dual writes
           done: header to $fields. waits for header '\' tricks  
           * src/targets/cgi/parser3.C: ctime sometimes can be just "",
         * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,            checked that
           main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vcookie.C:  
           changed urlencode here and in untaint.C to HTTP standard's " and          * src/main/: compile.tab.C, compile.y, compile_tools.C,
           \" mech            compile_tools.h, execute.C: OP_GET_ELEMENT+OP_GET_ELEMENT__WRITE
             changed to OP_WRITE_VALUE in var get cases
         * src/: main/pa_request.C, targets/isapi/parser3isapi.C: fixed  
           http://alx/~paf/ doesnt load /auto.p          * src/: classes/op.C, include/pa_globals.h, include/pa_opcode.h,
             include/pa_request.h, main/compile.tab.C, main/compile.y,
 2001-04-18  paf            main/compile_tools.C, main/compile_tools.h, main/execute.C,
             main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C:
         * src/main/pa_request.C: 1            switch in hash constructor fixed [were problems with using of
             stacked wwrapper after it's death]
         * src/: main/Makefile.am, main/main.dsp, targets/cgi/Makefile.am:  
           linux @alx  2002-04-12  paf
   
 2001-04-17  paf          * operators.txt, src/classes/table.C: table.select(expression) 0
   
         * src/: classes/file.C, classes/image.C, doc/doxygen.cfg,  2002-04-11  paf
           include/pa_sql_connection.h, main/pa_sql_driver_manager.C,  
           sql/pa_sql_driver.h: SQL_Driver_services renamed. doxygen statics          * src/: classes/string.C, include/pa_request.h, main/execute.C:
           enabled            Request::process_internal codeFrame & wwrapper stacked [not
             wasting  heap anymore]
         * src/: Makefile.am, classes/Makefile.am, classes/_double.h,  
           classes/_exec.h, classes/_file.h, classes/_form.h,  2002-04-10  paf
           classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,  
           classes/_random.h, classes/_response.h, classes/_string.h,          * src/: classes/double.C, classes/file.C, classes/hash.C,
           classes/_table.h, classes/_unknown.h, classes/file.C,            classes/image.C, classes/int.C, classes/math.C, classes/op.C,
           classes/image.C, classes/mail.C, classes/op.C, classes/random.C,            classes/string.C, classes/table.C, classes/void.C,
           include/pa_config_fixed.h, include/pa_config_includes.h,            classes/xdoc.C, include/pa_request.h, main/execute.C,
           include/pa_hash.h, include/pa_sql_driver_manager.h,            main/pa_string.C: killed Request::process() wrapping
           include/pa_version.h, main/Makefile.am, main/compile.y,            VString(String) in case we need only String
           main/pa_common.C, main/pa_exec.C, main/pa_socks.C,  
           main/pa_sql_driver_manager.C, sql/Makefile.am,          * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
           sql/pa_sql_driver.h, targets/cgi/Makefile.am,            killed 8 bytes from String.head
           targets/cgi/parser3.C, types/Makefile.am, types/pa_vcookie.C,  
           types/pa_vform.C, types/pa_vimage.h: exec @jav  2002-04-09  paf
   
         * src/: include/pa_sql_driver_manager.h,          * src/: main/compile.tab.C, targets/cgi/parser3.C,
           main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,            targets/isapi/parser3isapi.C: removed {   char *a;   {      /*sub
           types/pa_vimage.h: sql driver interface now has initialize(client            local*/char b[...];      a=b; situations
           .so)  
           * operators.txt, src/classes/xdoc.C: xslt params made literal
 2001-04-16  paf  
           * src/classes/xdoc.C: xslt params fixed
         * src/Makefile.am: compile2 cygwin  
           * src/: main/pa_common.C, targets/cgi/parser3.C,
         * src/: include/pa_config_includes.h, main/pa_exec.C,            types/pa_vdouble.h, types/pa_vint.h: int/double get_string now
           main/pa_socks.C, targets/cgi/Makefile.am: compile1 cygwin            not pool.malloc(MAX_NUMBER) but really neaded
   
         * src/targets/cgi/Makefile.am: compile0 jav          * operators.txt, src/classes/double.C, src/classes/int.C:
             int/double.int/double(default)
         * src/: Makefile.am, classes/Makefile.am, classes/_double.h,  
           classes/_exec.h, classes/_file.h, classes/_form.h,  2002-04-04  paf
           classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,  
           classes/_random.h, classes/_response.h, classes/_string.h,          * src/: include/pa_string.h, main/pa_string.C: fixed string.replace
           classes/_table.h, classes/_unknown.h, classes/image.C,            [when reconstructing pieces were split by
           classes/mail.C, classes/op.C, classes/random.C,            max_integral(piece.size), thus some strings to replace happen to
           include/pa_config_fixed.h, include/pa_config_includes.h,            be split into two = not replaced)
           include/pa_hash.h, include/pa_version.h, main/Makefile.am,  
           main/compile.y, main/pa_common.C, main/pa_exec.C,          * src/targets/cgi/: parser3.C, parser3.dsp: document root in
           sql/Makefile.am, targets/cgi/Makefile.am, targets/cgi/parser3.C,            standalone version = current dir
           types/Makefile.am, types/pa_vcookie.C, types/pa_vform.C:  
           compile-1          * src/targets/cgi/parser3.C: document root in standalone version =
             current dir
 2001-04-15  paf  
   2002-04-03  paf
         * src/classes/op.C: z  
           * configure, configure.in: more checks on nonexistent charset
         * src/classes/table.C: table:empty +=process  
           * INSTALL, configure, configure.in: root config configure options
         * src/types/pa_value.h: MethodParams !junction  
   2002-04-02  paf
         * src/: classes/_string.h, classes/double.C, classes/file.C,  
           classes/image.C, classes/int.C, classes/mail.C, classes/op.C,          * src/main/compile.C: parser.compile [exception name more like in
           classes/random.C, classes/response.C, classes/string.C,            doc]
           classes/table.C, classes/unknown.C, main/pa_request.C:  
           MethodParams everywhere  2002-04-01  paf
   
         * src/: classes/op.C, include/pa_request.h, types/pa_value.h,          * src/: classes/mail.C, include/pa_string.h, main/untaint.C,
           types/pa_vmethod_frame.h: MethodParams in op.C            targets/isapi/parser3isapi.dsp: mail subject encoding taken from
             .content-type.charset, not .charset
 2001-04-12  paf  
   2002-03-29  paf
         * src/: classes/image.C, types/pa_vimage.h: image:font :text  
           * etc/parser3.charsets/koi8-r.cfg: koi8-r += ukranian letters
         * src/: classes/_unknown.h, classes/unknown.C,  
           include/pa_globals.h, main/main.dsp, main/pa_globals.C,          * operators.txt, src/classes/date.C: ^date::create now may not
           types/pa_vunknown.h: ^unknown:int[]=0 double[]=0            supply day, default 1.  checked 29.03 -> 29.02 roll on non 366
             days' year.  | 31.05->31.04   roll
         * src/: classes/image.C, main/pa_hash.C: hash bug fixed  
   2002-03-28  paf
         * src/classes/image.C: image:gif now does not have params  
           * operators.txt, src/classes/date.C, src/classes/op.C,
         * src/classes/image.C:            src/include/pa_globals.h, src/include/pa_hash.h,
           image:line/fill/rectangle/bar/replace/polygon/polybar            src/main/pa_globals.C, src/types/pa_vdate.h: ^cache[file][date]{
             ^cache(seconds)    ^cache[date] }
         * src/: classes/image.C, classes/op.C, main/execute.C,  
           types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:          * src/classes/: xdoc.C, xnode.C, xnode.h: removed redundant pool
           for var now written not to r.wcontext, but to r.root cleared            param
           "entered_object" state  
   2002-03-27  paf
 2001-04-11  paf  
           * operators.txt, src/classes/date.C, src/classes/double.C,
         * src/classes/image.C: image:create image:load            src/classes/file.C, src/classes/form.C, src/classes/hash.C,
             src/classes/image.C, src/classes/int.C, src/classes/mail.C,
         * src/: classes/image.C, main/main.dsp: gd with mem write + image            src/classes/math.C, src/classes/op.C, src/classes/string.C,
           just compiled            src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
             src/classes/xnode.C, src/include/pa_exception.h,
         * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd            src/include/pa_request.h, src/include/pa_stylesheet_connection.h,
           todo: gif without file            src/main/compile.C, src/main/compile_tools.C, src/main/execute.C,
             src/main/pa_array.C, src/main/pa_charset.C,
         * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd            src/main/pa_charsets.C, src/main/pa_common.C,
           started porting to Pooled descendant            src/main/pa_dictionary.C, src/main/pa_exception.C,
             src/main/pa_exec.C, src/main/pa_pool.C, src/main/pa_request.C,
         * src/: classes/image.C, main/execute.C, main/main.dsp,            src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
           main/pa_request.C, types/pa_vcframe.h, types/pa_vcode_frame.h,            src/main/pa_string.C, src/main/pa_table.C, src/main/untaint.C,
           types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,            src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
           types/pa_vmframe.h: libimaging dead end: pil parses header in .py            src/types/pa_value.h, src/types/pa_vcookie.C,
             src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vhash.h,
         * src/: classes/image.C, include/pa_globals.h, main/main.dsp,            src/types/pa_vmethod_frame.h, src/types/pa_vstatus.C,
           main/pa_globals.C, types/pa_vimage.C, types/pa_vimage.h: gd dead            src/types/pa_vtable.C, src/types/pa_vxdoc.h,
           end. switching to python imaging lib            src/types/pa_vxnode.h, src/types/pa_wcontext.C,
             src/types/pa_wwrapper.h: assigned exception types
         * src/main/main.dsp: gd+smtp made separate libs  
           * operators.txt, src/classes/op.C, src/include/pa_config_fixed.h,
         * src/: include/pa_globals.h, include/pa_string.h,            src/include/pa_request.h, src/main/execute.C,
           main/pa_common.C, main/pa_request.C, main/untaint.C,            src/main/pa_request.C: decided agains resetting exception_trace,
           types/pa_vfile.C, types/pa_vstring.C: fixed vstring:as_vfile            just changed name
           length  
   2002-03-26  paf
         * src/: classes/mail.C, classes/op.C, targets/cgi/parser3.C,  
           types/pa_value.h, types/pa_vfile.C, types/pa_vfile.h,          * src/: include/pa_common.h, main/pa_exec.C: windows exec chdir
           types/pa_vform.C, types/pa_vstring.C, types/pa_vstring.h: forced            fixed
           UL_FILE_NAME of posted file name  
           * src/classes/op.C: forced language of $source field of exception
         * src/: classes/image.C, main/pa_request.C, types/pa_vform.C: fixed            to 'tainted', so that sql-langed-frags could be outputed outside
           post [broke when moved post read to core]            of connect
   
 2001-04-10  paf          * operators.txt: removed date.roll limit of +-1 offset
   
         * src/classes/image.C: image:html done          * src/classes/date.C: removed date.roll limit of +-1 offset
   
         * src/: classes/image.C, types/pa_vimage.C: jpg measure bugs fixed          * operators.txt, src/classes/date.C: fixed date roll on
             daylightsaving days mktime took into account tm_isdst flag, which
         * src/classes/image.C: z            remained from BEFORE roll, but should have been reset
   
         * src/: classes/_image.h, classes/image.C, types/pa_vimage.C: image  2002-03-25  paf
           forgotten!  
           * operators.txt, src/targets/cgi/parser3.C:
         * src/: classes/table.C, include/pa_common.h, main/pa_common.C,            http_site_config_filespec
           main/pa_request.C, main/pa_string.C, main/untaint.C,  
           types/pa_vimage.h: image:measure -90          * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
             main/pa_exec.C: f(!forced_allow) to allow --with-sendmail to work
         * src/: classes/_double.h, classes/_file.h, classes/_form.h,            with any/both --disable-foreign-group-files --disable-execs
           classes/_int.h, classes/_mail.h, classes/_op.h,  
           classes/_random.h, classes/_response.h, classes/_string.h,          * INSTALL: "--with=sendmail=COMMAND" comment
           classes/_table.h, classes/file.C, classes/mail.C,  
           include/pa_common.h, include/pa_globals.h, main/execute.C,          * INSTALL, configure, configure.in, src/classes/mail.C,
           main/main.dsp, main/pa_common.C, main/pa_globals.C,            src/include/pa_config_auto.h.in, src/main/pa_exec.C,
           targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vfile.C,            src/targets/cgi/Makefile.am: --disable-foreign-group-files now
           types/pa_vfile.h, types/pa_vhash.h, types/pa_vimage.h,            disables execs also.  introducing --sendmail
           types/pa_vresponse.h, types/pa_vstring.h: image:measure -100 just  
           compiled          * operators.txt: pgsql options comment
   
         * src/classes/mail.C: minor bug with unclear from/to          * INSTALL: comment on --disable-link-stdcpp
   
         * src/classes/mail.C: sendmail unix skipping defaults          * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
             libstdc++ link skipping configure option
         * src/: classes/mail.C, include/pa_common.h, main/pa_common.C:  
           sendmail unix added defaults          * src/: classes/op.C, include/pa_sql_connection.h: sql connection
             with error were put to cache with 'marked_to_rollback' flag, all
         * src/classes/mail.C: unix sendmail compiled. todo:testing            consequent even OK requests rolled back
   
         * src/: classes/mail.C, main/pa_globals.C: smtp some consts  2002-03-22  paf
   
 2001-04-09  paf          * src/main/pa_exec.C: createprocess nowindow flag check on readfile
             false return
         * src/: classes/file.C, include/pa_exec.h, include/pa_sapi.h,  
           main/main.dsp, main/pa_exec.C, targets/cgi/parser3.C,          * operators.txt: few comments on sets
           targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,  
           targets/isapi/parser3isapi.dsp: all targets exec  2002-03-18  paf
   
         * src/: include/pa_sapi.h, include/pa_string.h,          * operators.txt, src/classes/op.C, src/include/pa_exception.h,
           targets/cgi/parser3.C, targets/isapi/parser3isapi.C,            src/include/pa_globals.h, src/include/pa_request.h,
           targets/isapi/parser3isapi.dsp: sapi exec dead end. badly parsed            src/include/pa_stack.h, src/main/pa_globals.C,
           args in apache:util.script            src/main/pa_request.C: introducing ^try
   
         * src/include/pa_string.h: written but not tested exec with env for          * src/: main/pa_charset.C, targets/isapi/pa_threads.C,
           unix            types/pa_vdouble.h: removed some tested @tests
   
         * src/: classes/file.C, main/main.dsp, main/pa_request.C,  2002-03-15  paf
           targets/cgi/parser3.C: exec win32 env  
           * operators.txt, src/classes/table.C: ^table.locate(logical expr)
         * src/: classes/file.C, include/pa_hash.h, main/pa_hash.C: exec env  
           0  2002-03-13  paf
   
         * src/: classes/exec.C, classes/file.C, include/pa_globals.h,          * src/main/pa_exception.C: checked not-pooled malloc
           main/execute.C, main/main.dsp, main/pa_globals.C,  
           main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h,  2002-03-11  paf
           types/pa_vform.C, types/pa_vstring.C: exec4. todo env  
           * INSTALL, configure, configure.in,
         * src/: classes/exec.C, include/pa_common.h, main/pa_common.C,            src/include/pa_config_auto.h.in: --disable-foreign-group-files
           main/untaint.C: exec3. decided exec:cgi to move to file:cgi  
           * src/main/pa_common.C: --disable-foreign-group-files
         * src/: classes/_exec.h, main/execute.C, main/pa_globals.C,  
           main/pa_request.C, types/pa_vcookie.C, types/pa_vfile.C: exec -2          * INSTALL: --disable-execs
   
         * src/: classes/_exec.h, classes/exec.C, include/pa_common.h,          * src/main/pa_exec.C: --disable-execs
           include/pa_request.h, include/pa_sapi.h, include/pa_string.h,  
           main/pa_common.C, main/pa_request.C, main/pa_string.C,          * configure, configure.in, src/include/pa_config_auto.h.in:
           targets/cgi/parser3.C, targets/cgi/parser3.dsp,            --disable-execs
           targets/isapi/parser3isapi.C, types/pa_vform.C, types/pa_vform.h:  
           exec class just compiled. moved post read to request core          * src/: include/pa_config_fixed.h, main/pa_exec.C: --disable-execs
   
         * src/: classes/_op.h, include/pa_dir.h, include/pa_globals.h,          * src/types/pa_vfile.C: $file.text now 0A linebreaks,
           include/pa_sapi.h, main/main.dsp, main/pa_dir.C,            file::exec/cgi linebreaks "0D0A" changed to 0A onces
           main/pa_globals.C, targets/cgi/parser3.C,  
           targets/cgi/parser3.dsp: problems with ^exec:cgi post data. they  2002-03-05  paf
           are already read by vform  
           * operators.txt, src/classes/date.C: date week calendar columns
 2001-04-08  paf            named
   
         * src/: classes/file.C, classes/mail.C, classes/string.C,          * operators.txt, src/classes/date.C: date week calendar columns
           include/pa_request.h, include/pa_string.h, main/pa_request.C:            named
           uuencode. string<<  
           * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: iis5 now
 2001-04-07  paf            requires headers to be terminated with \r\n manually [refuses to
             separate header/body itself]
         * src/classes/mail.C: z  
           * src/: main/pa_globals.C, targets/cgi/parser3.C,
         * src/classes/mail.C: z            targets/isapi/parser3isapi.C: isapi site config beside .dll
   
         * src/classes/mail.C: ^mail[$attach  2002-03-04  paf
   
         * src/classes/mail.C: ^attach dead end          * src/: classes/op.C, types/pa_vfile.C: process body now evaluated
             in PASS language
         * src/: include/pa_socks.h, main/main.dsp, main/pa_socks.C,  
           targets/cgi/parser3.C, targets/cgi/parser3.dsp,          * src/: classes/op.C, include/pa_string.h, main/pa_string.C: string
           targets/isapi/parser3isapi.C: mail:send 1            deserialize checks on broken file
   
         * src/: classes/mail.C, main/pa_request.C: z          * src/targets/isapi/: pa_threads.C, parser3isapi.C,
             parser3isapi.dsp: isapi updated
         * src/: classes/mail.C, include/pa_globals.h, include/pa_request.h,  
           main/main.dsp, main/pa_globals.C, main/pa_request.C: smtp just  2002-03-01  paf
           compiled  
           * src/main/pa_exec.C: execle -> execve, now argc OK
         * src/classes/mail.C: +=  
   2002-02-28  paf
         * src/: classes/mail.C, include/pa_string.h: mail:send -1 text  
           prepared          * src/main/untaint.C: removed some debug comments
   
         * src/: classes/_mail.h, classes/mail.C, include/pa_common.h,          * src/main/pa_charsets.C: when placing charset to cache using
           include/pa_globals.h, include/pa_string.h, main/main.dsp,            global name now [were request]
           main/pa_common.C, main/pa_globals.C, main/pa_request.C,  
           main/untaint.C, types/pa_vcookie.C: mail:send -10 just compiled          * configure, configure.in: apache module updated
   
 2001-04-06  paf          * src/main/pa_string.C: origin by first piece preferred before last
             piece
         * src/: classes/table.C, include/pa_globals.h, main/pa_globals.C,  
           main/pa_string.C: table:dir 1  2002-02-27  paf
   
         * src/: classes/table.C, include/pa_dir.h, main/execute.C,          * src/main/pa_charset.C: size_t
           main/main.dsp, main/pa_dir.C: table:dir 0 [without regexp]  
           * INSTALL: shared/static-xml with-pathlink
         * src/: classes/_op.h, classes/_root.h, classes/op.C,  
           classes/root.C, include/pa_globals.h, include/pa_request.h,          * operators.txt: SMTP comment
           main/compile.C, main/execute.C, main/main.dsp, main/pa_globals.C,  
           main/pa_request.C: renamed 'root' to 'op'  2002-02-26  paf
   
         * src/classes/: _op.h, op.C: renamed from 'root'          * src/main/pa_exec.C: more precise names for vars, cosmetic
   
         * src/types/pa_valiased.C: another root inherititance skipped          * src/classes/xnode.C: in some situation, xpath query returned
             result with type NODESET, but empty nodeset member field, checked
         * src/main/: compile.C, compile.y, execute.C: operators are now not            that
           root methods of parent class. just 'ROOT' class  
   2002-02-22  paf
         * src/: classes/random.C, classes/table.C, main/pa_globals.C:  
           @office          * INSTALL: without-zlib comment
   
         * src/: main/pa_request.C, sql/pa_sql_driver.h: mysql limit          * etc/parser3.charsets/windows-1251.cfg: &deg;
   
 2001-04-05  paf          * configure, configure.in: glib###.a detection fixed
   
         * src/: main/execute.C, main/pa_request.C, main/pa_string.C,          * INSTALL: hashfile removed from INSTALL
           types/pa_value.h, types/pa_vmframe.h, types/pa_wcontext.h:  
           constructor flag dropped at get_method_frame and remembered into          * Makefile.am: make update
           method_frame  
           * src/main/pa_string.C: string iterators fixed again, so were
         * src/: classes/file.C, classes/root.C, classes/string.C,            String::join_chain
           classes/table.C, main/pa_request.C: junction to code&expression  
           in errors          * src/main/pa_string.C: string iterators fixed again, so were
             String::join_chain
         * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,  
           main/pa_string.C, targets/isapi/parser3isapi.dsp:          * src/: include/pa_string.h, main/pa_string.C: string iterators
           $LOCALE:ctype[Russian_Russia.1251]            fixed again, so were String::join_chain
   
         * src/: include/pa_config_fixed.h, include/pa_config_includes.h,          * src/types/pa_vcookie.C: cookie "expires=0" =  "session"
           include/pa_hash.h, include/pa_string.h, main/pa_hash.C,  
           main/pa_table.C: hash now not thread-safe.          * operators.txt, src/types/pa_vcookie.C: cookie "expires=0" =
             "session"
         * src/: classes/table.C, include/pa_string.h, main/pa_string.C,  
           main/untaint.C: z          * configure, configure.in, src/include/pa_config_auto.h.in:
             --with-shared-xml --with-static-xml
         * src/: classes/random.C, classes/root.C, classes/table.C,  
           include/pa_sql_connection.h, include/pa_string.h, main/execute.C,          * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
           main/pa_sql_driver_manager.C, main/pa_string.C, main/untaint.C,            targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
           sql/pa_sql_driver.h, types/pa_vmframe.h, types/pa_wcontext.C,            types/types.dsp: *.dsp: removed refereces to win32db & ancient
           types/pa_wcontext.h: sql quote. string untaint UL_SQL            xalan&xml
   
         * src/: classes/table.C, include/pa_sql_connection.h,          * acconfig.h: acconfig move in cvs[from src/libltdl to /]
           main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql ping  
           * operators.txt, src/classes/classes.dsp, src/main/main.dsp,
         * src/classes/table.C: select * from hren error contains statement            src/types/types.dsp: removed hashfile support from sources for
             now
         * src/: classes/table.C, include/pa_sql_connection.h,  
           include/pa_types.h, main/pa_sql_driver_manager.C, main/untaint.C,          * configure, configure.in, src/classes/Makefile.am,
           sql/pa_sql_driver.h, targets/cgi/parser3.dsp: mysql 0            src/classes/hashfile.C, src/include/Makefile.am,
             src/include/pa_config_auto.h.in, src/include/pa_db_connection.h,
         * src/: classes/root.C, include/pa_sql_connection.h,            src/include/pa_db_manager.h, src/include/pa_db_table.h,
           include/pa_sql_driver.h, main/main.dsp,            src/main/Makefile.am, src/main/pa_db_connection.C,
           main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql driver            src/main/pa_db_manager.C, src/main/pa_db_table.C,
           services for conv memory & error reporting            src/main/pa_globals.C, src/targets/cgi/Makefile.am,
             src/types/Makefile.am, src/types/pa_vhashfile.C,
 2001-04-04  paf            src/types/pa_vhashfile.h: removed hashfile support for now
   
         * src/doc/doxygen.cfg: z  2002-02-21  paf
   
         * src/include/pa_sql_driver.h: mysql connect          * src/main/untaint.C: removed debug code, activated commented-for
             debug parts
         * src/include/pa_sql_driver.h: mysql info  
           * Makefile.am: make cvsupdate
         * src/: classes/root.C, include/pa_sql_driver.h,  
           include/pa_sql_driver_manager.h, main/main.dsp,          * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
           main/pa_sql_driver_manager.C: more manager&connection&driver            main/untaint.C: STRING_*FOREACH_ROW changed to stop at
             append_row, not at link zero now string to string appending works
         * src/sql/Makefile.am: forgot to add mysql client  
   2002-02-20  paf
         * src/: include/pa_sql_driver.h, include/pa_sql_driver_manager.h,  
           main/pa_sql_driver_manager.C: connect&sql -1000 just compiled          * src/: include/pa_string.h, main/execute.C, main/untaint.C,
           [forgot to add libltdl, added]            targets/cgi/pa_pool.C, targets/cgi/parser3.C: //#define
             DEBUG_STRING_APPENDS_VS_EXPANDS
         * src/: Makefile.am, classes/root.C, classes/string.C,  
           classes/table.C, include/pa_globals.h, include/pa_hash.h,          * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
           include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,            economy: 22%
           include/pa_string.h, include/pa_table.h, main/main.dsp,  
           main/pa_globals.C, main/pa_hash.C, main/pa_request.C,          * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
           main/pa_string.C, main/pa_table.C, main/untaint.C: connect&sql            space uptimized: string::link_row removed
           -1000 just compiled  
           * src/: include/pa_string.h, include/pa_stylesheet_connection.h,
         * src/: classes/random.C, classes/root.C, classes/table.C,            main/pa_db_manager.C, main/pa_dictionary.C, main/pa_string.C,
           include/pa_globals.h, include/pa_pool.h, include/pa_request.h,            main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
           main/pa_request.C, types/pa_vclass.h: sql frame -10            types/pa_vstring.h: speed uptimized: string::is_empty
   
 2001-04-03  paf          * operators.txt, src/include/pa_common.h,
             src/include/pa_config_fixed.h, src/include/pa_string.h,
         * src/types/pa_vform.C: z            src/include/pa_types.h, src/main/compile.tab.C,
             src/main/execute.C, src/main/pa_string.C, src/main/untaint.C,
         * src/: classes/string.C, types/pa_vform.C: string:match replace            src/targets/cgi/pa_pool.C, src/targets/cgi/parser3.C: strign to
           assigned lang            string append optimiziation idea and estimates
   
         * src/: classes/string.C, main/compile.y: grammar: fixed to allow  2002-02-19  paf
           {}[]< empty []  
           * src/classes/math.C: not used directly [but erroreously reported
         * src/: classes/file.C, classes/string.C, classes/table.C,            that 'is', thus registering twice&other probs]
           include/pa_string.h, main/pa_common.C, main/pa_string.C,  
           main/untaint.C: string:match replace 2.  string.cstr(forced lang)          * src/classes/: xdoc.C, xnode.C: getElementsByTagName and *NS moved
             to node [element]
         * src/: classes/string.C, include/pa_string.h, main/pa_string.C:  
           string:match replace strange matches          * src/main/compile.C: without string_origins parse error
             file+line+col possible
         * src/classes/string.C: string:match replace 0  
           * src/main/: compile.C: without string_origins not worked
         * src/: classes/string.C, main/pa_string.C: string:match replace  
           prepared 2  2002-02-18  paf
   
         * src/: classes/string.C, include/pa_string.h, main/pa_string.C:          * src/types/pa_vdouble.h: since we have in_expression removed that
           string:match replace prepared            trick i've installed into double::as_string
   
         * src/: classes/string.C, include/pa_string.h, main/pa_string.C:          * src/main/pa_globals.C: extern "C" was removed too fast
           string:match replace -11  
           * src/: include/pa_opcode.h, include/pa_request.h,
         * src/: classes/string.C, include/pa_globals.h,            main/compile.tab.C, main/compile.y, main/execute.C,
           include/pa_string.h, include/pa_threads.h, main/pa_globals.C,            types/pa_wcontext.h: in_expression aimed to solve old problem
           main/pa_string.C, targets/isapi/parser3isapi.dsp: string:match 0            with string/nonstring values, now in expressions double/int
             values are passed as-is, without stupid tostring/fromstring
         * src/: classes/string.C, include/pa_globals.h,            conversions
           include/pa_string.h, main/main.dsp, main/pa_globals.C,  
           main/pa_string.C: string:match [search] -1 just compiled          * src/main/: main.dsp, pa_globals.C: removed unneded #ifdef
             __cplusplus } #endif
         * src/types/pa_vstring.C: z  
           * src/main/compile.tab.C: bison env set so one could compile
         * src/: classes/double.C, classes/file.C, classes/form.C,            without cygwin installed
           classes/int.C, classes/response.C, classes/root.C,  
           classes/string.C, classes/table.C, include/pa_string.h,          * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
           main/pa_string.C: string:match -10 [frame]            targets/cgi/parser3.dsp, types/types.dsp: win32xml now contains
             gnome xml libs parser .dsp-s changed accordingly
         * src/: classes/file.C, main/compile_tools.C, main/pa_common.C,  
           main/pa_request.C: z          * operators.txt, src/targets/cgi/parser3.C: PARSER_ROOT_CONFIG
   
         * src/: main/pa_common.C, main/untaint.C, targets/cgi/parser3.C,          * operators.txt, src/classes/date.C: date::create [were date::set,
           targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h:            with backward comp
           todo/tests  
           * src/classes/math.C: math:random range check fixed
         * src/include/pa_common.h: z  
           * src/main/: compile.tab.C, compile.y: integer  division stops name
         * src/: include/pa_globals.h, include/pa_hash.h, main/pa_globals.C,  
           main/pa_request.C, targets/cgi/parser3.C,          * INSTALL: local install comment
           targets/isapi/parser3isapi.C, types/pa_vfile.C:  
           content-disposition          * ltconfig, ltmain.sh: removed libtool subpart files
   
         * src/: include/pa_common.h, include/pa_globals.h,          * acinclude.m4, aclocal.m4, configure, configure.in,
           main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,            src/include/pa_config_auto.h.in,
           targets/isapi/parser3isapi.C, types/pa_value.h: main:post-process            src/include/pa_config_includes.h, src/targets/cgi/Makefile.am,
             src/targets/cgi/parser3.C: removed libtool usage from build mech
         * src/: include/pa_common.h, include/pa_request.h,  
           include/pa_sapi.h, main/main.dsp, main/pa_common.C,          * operators.txt: \ comment
           main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,  
           types/pa_vfile.C, types/pa_vfile.h, types/pa_vstring.h: vfile in  2002-02-13  paf
           response:body  
           * src/include/pa_config_includes.h: sys/time time both included
         * src/classes/table.C: table:append now uses string::split            now.  vaguely remember confilicts on this on some system [not on
             six|ablv] so when would see them again would think up proper
         * src/classes/table.C: z            check
   
         * src/: classes/file.C, classes/root.C, classes/string.C,          * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
           classes/table.C, doc/doxygen.cmd, doc/doxygen.txt,            --with-glib-config CXXLINK=$(CC) for targets/cgi/parser3
           doc/generate.cmd, include/pa_array.h, include/pa_request.h,  
           include/pa_string.h, main/execute.C, main/pa_string.C,          * src/main/pa_common.C: truncation never occured when writing files
           main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C:            on unix [since i've changed cache mech] fix
           string::pos & cmp & piece bugs fixed.  string::split new  
           table:load separated from set table:set implemented with clean \n          * src/main/pa_common.C: strnchr: sanity check added
           \t searches  
           * etc/parser3.charsets/windows-1257.cfg: id added
 2001-04-02  paf  
           * etc/parser3.charsets/windows-1257.cfg, src/targets/cgi/parser3.C:
         * src/: classes/table.C, include/pa_string.h, main/pa_string.C,            baltic charset file generated, in generation script ispunct check
           types/pa_valiased.C, types/pa_valiased.h, types/pa_vdouble.h,            added
           types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,  
           types/pa_vstring.h, types/pa_vtable.h: string::pos. about to use  2002-02-08  paf
           it in table:set/load  
           * src/: include/Makefile.am, sql/Makefile.am,
         * src/: classes/table.C, include/pa_array.h, include/pa_string.h,            targets/isapi/Makefile.am: forgotten makes
           include/pa_table.h, main/execute.C, types/pa_value.h: table:join  
           * src/types/: pa_vcookie.C: VCookie::fill_fields one check
         * src/classes/random.C: random:generate 1            forgotten
   
         * src/: classes/_random.h, classes/random.C, include/pa_globals.h,          * src/types/pa_vcookie.C: VCookie::fill_fields one check forgotten
           main/main.dsp, main/pa_globals.C, main/pa_request.C,  
           types/pa_value.h: random:generate          * INSTALL, README: install&others updated
   
 2001-03-30  paf          * AUTHORS, COPYING, ChangeLog, INSTALL: install&others updated
   
         * src/: classes/table.C, include/pa_string.h, main/pa_string.C:          * Makefile.am, configure, configure.in,
           todo: table flip and append. string::pos            etc/parser3.charsets/Makefile.am, src/Makefile.am,
             src/classes/Makefile.am, src/main/Makefile.am,
         * src/: classes/double.C, classes/file.C, classes/int.C,            src/main/pa_status_provider.C, src/targets/Makefile.am,
           classes/response.C, classes/root.C, classes/string.C,            src/targets/cgi/Makefile.am, src/types/Makefile.am: 'make dist'
           classes/table.C, main/compile.y, main/execute.C,            works
           types/pa_value.h, types/pa_vstateless_class.C,  
           types/pa_vstateless_class.h: static|dynamic|any method          * src/: classes/classes.C, classes/classes.h, classes/date.C,
           registration            classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
             classes/hashfile.C, classes/int.C, classes/mail.C,
         * src/: classes/file.C, classes/table.C, include/pa_table.h,            classes/math.C, classes/op.C, classes/response.C,
           main/pa_table.C, types/pa_vstring.h, types/pa_wwrapper.h:            classes/string.C, classes/table.C, classes/void.C,
           table:flip            classes/xdoc.C, classes/xnode.C, classes/xnode.h,
             include/pa_array.h, include/pa_cache_managers.h,
 2001-03-29  paf            include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
             include/pa_config_fixed.h, include/pa_config_includes.h,
         * src/classes/string.C: string:xsplit forgot that they must result            include/pa_db_connection.h, include/pa_db_manager.h,
           in 1 row N column [not vice versa]            include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
             include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
         * src/classes/string.C: z            include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
             include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
         * src/classes/string.C: string: rsplit            include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
             include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
         * src/: classes/string.C, include/pa_string.h, main/pa_string.C:            include/pa_stack.h, include/pa_string.h,
           string: lsplit            include/pa_stylesheet_connection.h,
             include/pa_stylesheet_manager.h, include/pa_table.h,
         * src/: classes/string.C, include/pa_string.h, main/execute.C,            include/pa_threads.h, include/pa_types.h, main/compile.C,
           main/pa_array.C, main/pa_string.C, types/pa_vtable.h: string:            main/compile_tools.C, main/compile_tools.h, main/execute.C,
           lsplit -1            main/pa_array.C, main/pa_cache_managers.C, main/pa_charsets.C,
             main/pa_db_connection.C, main/pa_db_manager.C,
         * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:            main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
           string: pos            main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
             main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
         * src/: classes/string.C, include/pa_string.h, main/pa_string.C:            main/pa_sql_driver_manager.C, main/pa_status_provider.C,
           string: pos -1            main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
             sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
         * src/: classes/string.C, classes/table.C, include/pa_string.h,            targets/cgi/pa_threads.C, targets/cgi/pool_storage.h,
           main/compile.y, main/pa_request.C, main/pa_string.C,            targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
           main/untaint.C: string: left right mid            targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
             types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
         * src/: classes/string.C, main/compile.y, main/compile_tools.C,            types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
           main/compile_tools.h, main/main.dsp, types/pa_value.h,            types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
           types/pa_vstring.h, types/pa_vunknown.h: empty params allowed. []            types/pa_venv.h, types/pa_vfile.h, types/pa_vform.h,
           and [;] are different now.            types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.h,
             types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
         * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,            types/pa_vmethod_frame.h, types/pa_vobject.h,
           main/untaint.C: pool.request undone            types/pa_vrequest.h, types/pa_vresponse.h,
             types/pa_vstateless_class.C, types/pa_vstateless_class.h,
         * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,            types/pa_vstateless_object.h, types/pa_vstatus.C,
           main/untaint.C: pool.request            types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
             types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
 2001-03-28  paf            types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h,
             classes/image.C, main/pa_common.C, main/pa_exec.C,
         * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,            main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
           targets/cgi/parser3.C, targets/isapi/parser3isapi.C,            types/pa_vfile.C, types/pa_vform.C, types/pa_vhashfile.C,
           types/pa_value.h, types/pa_vrequest.C, types/pa_vunknown.h:            types/pa_vimage.C, types/pa_vrequest.C, types/pa_vresponse.C,
           $request:browser [.type .version]; unknown.get_double now = 0.            types/pa_vstring.C, types/pa_vtable.C, types/pa_vxdoc.C,
             types/pa_vxnode.C, main/pa_charset.C: name spelling
         * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,  
           include/pa_table.h, main/pa_globals.C, main/pa_request.C,          * src/: classes/classes.C, classes/classes.h, classes/date.C,
           main/pa_table.C, types/pa_vfile.C, types/pa_vfile.h,            classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
           types/pa_vform.C: file:load autodetection of mime-type by            classes/hashfile.C, classes/image.C, classes/int.C,
           user-file-name            classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
             classes/string.C, classes/table.C, classes/void.C,
         * src/: classes/file.C, main/execute.C, main/pa_common.C,            classes/xdoc.C, classes/xnode.C, classes/xnode.h,
           main/untaint.C, targets/cgi/parser3.C, types/pa_vfile.C,            include/pa_array.h, include/pa_cache_managers.h,
           types/pa_vfile.h, types/pa_vform.C: file:load 1. tainted            include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
             include/pa_config_fixed.h, include/pa_config_includes.h,
         * src/: classes/file.C, include/pa_common.h, main/pa_common.C,            include/pa_db_connection.h, include/pa_db_manager.h,
           types/pa_vfile.C, types/pa_vfile.h: started file:load. wrong            include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
           write. must be self.set            include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
             include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
         * src/: classes/file.C, classes/root.C, classes/table.C,            include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
           include/pa_table.h, main/pa_table.C: table:locate1, file:test            include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
             include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
         * src/: classes/table.C, include/pa_array.h, include/pa_hash.h,            include/pa_stack.h, include/pa_string.h,
           include/pa_table.h, main/pa_array.C, main/pa_table.C,            include/pa_stylesheet_connection.h,
           types/pa_vtable.h: table:locate just compiled            include/pa_stylesheet_manager.h, include/pa_table.h,
             include/pa_threads.h, include/pa_types.h, main/compile.C,
 2001-03-27  paf            main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
             main/execute.C, main/pa_array.C, main/pa_cache_managers.C,
         * src/main/: execute.C, pa_common.C: fixed r/w context of            main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
           code-params2, fixed ntfs hardlink slow dir update            main/pa_db_connection.C, main/pa_db_manager.C,
             main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
         * src/: main/execute.C, types/pa_value.h, types/pa_vmframe.h,            main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
           types/pa_wcontext.h: fixed r/w context of code-params            main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
             main/pa_socks.C, main/pa_sql_driver_manager.C,
         * src/: classes/table.C, main/execute.C: about to change junction            main/pa_status_provider.C, main/pa_string.C,
           rcontext!!            main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
             sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
         * src/: classes/double.C, classes/int.C, classes/root.C,            targets/cgi/pa_threads.C, targets/cgi/parser3.C,
           classes/string.C, classes/table.C, main/compile_tools.C,            targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
           main/execute.C, main/pa_request.C, main/untaint.C,            targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
           types/pa_value.h, types/pa_vbool.h, types/pa_vcookie.C,            targets/isapi/pool_storage.h, types/pa_valiased.C,
           types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,            types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
           types/pa_vmframe.h, types/pa_vstring.h, types/pa_vtable.h,            types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
           types/pa_vunknown.h: sort 0            types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
             types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
         * src/types/: pa_valiased.C, pa_valiased.h, pa_vdouble.h,            types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
           pa_vfile.h, pa_vint.h, pa_vresponse.h, pa_vstring.h, pa_vtable.h:            types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
           renamed to are_static_calls_disabled            types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
             types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
         * src/: classes/table.C, main/pa_common.C, main/pa_request.C,            types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
           targets/cgi/parser3.C, types/pa_value.h, types/pa_vbool.h,            types/pa_vresponse.h, types/pa_vstateless_class.C,
           types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,            types/pa_vstateless_class.h, types/pa_vstateless_object.h,
           types/pa_vstring.h, types/pa_vunknown.h: continue on sort            types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
             types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
         * src/main/compile.y: fixed minor bug in @mn[][] ...^{            types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
             types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
         * src/: classes/table.C, include/pa_common.h, main/compile.y:            types/pa_wcontext.h, types/pa_wwrapper.h: 2002
           started table:sort fixed minor bug in #...^{  
   2002-02-07  paf
         * src/: classes/table.C, include/pa_common.h, main/compile.y,  
           main/execute.C, main/pa_common.C, main/pa_table.C: table:save          * src/main/pa_socks.C: swapped headers to avoid compiler warnings
           decided to have as it were. stepped back.  grammar: added 'in'  
           'is' 'lt'&co follow-space check          * configure, configure.in, src/include/pa_config_auto.h.in,
             src/main/pa_common.C, src/main/pa_socks.C: compiled under cygwin
 2001-03-26  paf            added yet another locking function: fcntl
   
         * src/: classes/file.C, classes/root.C, classes/table.C,          * config.sub: on cygwin configure passes it with strange i1586
           include/pa_common.h, include/pa_globals.h, include/pa_table.h,            const, hacked it to mean i586
           main/pa_common.C, main/pa_globals.C, main/pa_request.C,  
           main/pa_table.C: moved ::save to pa_table.  disabled @auto          * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
           invocation in ^process            disabled $if reference due to conflicts with local variables
   
         * src/main/compile.y: grammar: [] 0params [;] 2 params (was 0)          * operators.txt, src/classes/xdoc.C, src/include/pa_config_fixed.h:
             xdoc::set obsolete now, now xdoc::create, with both sences
         * src/: classes/table.C, include/pa_array.h, include/pa_table.h,  
           main/pa_array.C: table:record          * operators.txt, src/classes/table.C, src/include/pa_array.h,
             src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
         * src/: main/untaint.C, targets/cgi/parser3.C,            table::create now // 'set' name obsolete now table clone.
           targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,  
           targets/isapi/pool_storage.h, types/pa_valiased.h,          * operators.txt, src/classes/string.C,
           types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.h,            src/include/pa_config_fixed.h, src/main/compile.tab.C:
           types/pa_vint.h, types/pa_vresponse.h, types/pa_vstring.h,            ^int/double/string.format now can be called with normal []
           types/pa_vtable.h: z            brackets, not stupid {} as it were implemented for some strange
             reason.  retaining backward compatibility due to some
         * src/: include/pa_pool.h, main/execute.C, types/pa_valiased.C,            already-implemented servers
           types/pa_valiased.h, types/pa_value.h, types/pa_vdouble.h,  
           types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,          * src/: include/pa_array.h, main/compile.C, main/compile.tab.C,
           types/pa_vstring.h, types/pa_vtable.h: disabled $a(123)            main/compile.y, main/compile_tools.C, main/compile_tools.h:
           $b[$a.CLASS] ^b.inc[123] shit.  allowed no checks in native            operators now detected by check at name_without_curly_rdive_read
           method realisations on 'self' validity - they now can simply            rule whether diving code constists only of
           assume that 'self' is V{Proper} .            OP_VALUE+string+OP_GET_ELEMENT.  and last op code substituted
             with OP_GET_ELEMENT_OR_OPERATOR to form
 2001-03-25  paf            OP_VALUE+string+OP_GET_ELEMENT_OR_OPERATOR.  code
   
         * src/main/untaint.C: z  2002-02-06  paf
   
         * src/main/: pa_request.C, untaint.C: moved default typo-table to          * configure, configure.in: prefix expanded, grr
           lowlevel - it initialization could be skipped if failed in @auto.  
           so that exception report would use some table          * operators.txt, src/classes/mail.C: mail:send config changed
   
         * src/main/pa_request.C: table empty lines ignored. system-default  2002-02-05  paf
           content type assigned in output:result [can fail in main:auto and  
           skipped normal defaults extraction]          * operators.txt: regex options commented
   
         * src/: include/pa_string.h, main/compile.y: #comment fixed minor          * src/main/: pa_exec.C: argv0 now correct
           bug  
           * src/types/pa_vstatus.C: status:rusage 3
         * src/main/: pa_globals.C, untaint.C: html-typo - moved all  
           processing to table [except preliminary \r\n \r \n replacements          * src/types/pa_vstatus.C: status:rusage 2
           to "\n"]  
           * operators.txt: status:rusage described int operators
         * src/: classes/table.C, main/untaint.C: html-typo - decided to  
           move all the processing to table          * src/types/pa_vstatus.C: status:rusage 1
   
         * src/: classes/table.C, include/pa_table.h, main/pa_globals.C,          * configure.in, src/types/Makefile.am, src/types/pa_vstatus.h,
           main/pa_table.C, main/untaint.C: returned table originating.            src/types/types.dsp: status:rusage
           useful for reporting typo table problems origin. think would be  
           useful somewhere else          * configure.in, operators.txt, src/classes/file.C,
             src/classes/op.C, src/include/pa_common.h,
         * src/main/untaint.C: typo  \r \r\n \n properly handled            src/include/pa_config_includes.h, src/main/compile.tab.C,
             src/main/pa_common.C: rewritten ^cache to use
         * src/: classes/table.C, include/pa_globals.h, include/pa_string.h,            non-blocking-exclusive-caches
           include/pa_table.h, main/compile.y, main/compile_tools.C,  
           main/compile_tools.h, main/pa_globals.C, main/pa_request.C,          * src/main/pa_common.C: text file read mode on win32 adjusted
           main/pa_string.C, main/pa_table.C, main/untaint.C,            [speed impact. was off for debugging purpose, but forgotten
           types/pa_vcookie.h: typo & typo-default            afterwards]
   
 2001-03-24  paf  2002-02-01  paf
   
         * src/main/pa_common.C: z          * src/classes/op.C: file_write does EX lock after create, while
             file_read does SH after open, so there's a moment after create
         * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,            but before EX lock when read can sneak into, and read
           targets/cgi/parser3.C: html-typo 2            just-created-for-writing-and-not-yet-locked file, added a check
             for that in ^cache...read
         * src/: doc/doxygen.cfg, doc/doxygen.txt, doc/generate.cmd,  
           doc/view.cmd, include/pa_array.h, include/pa_globals.h,  2002-01-31  paf
           include/pa_pool.h, include/pa_string.h, include/pa_table.h,  
           main/execute.C, main/pa_array.C, main/pa_globals.C,          * src/main/: compile.y, compile.tab.C: disabled operator call after
           main/pa_request.C, main/pa_string.C, main/untaint.C,            ^xxx:
           targets/cgi/parser3.C, targets/isapi/parser3isapi.C,  
           types/pa_value.h, types/pa_vtable.h: html-typo 0 html-typo 1.          * src/main/: compile.tab.C, execute.C: made operators lookup first
           noticed double default content-type prob. run cgi.cmd tomorrow            in ^xxx situation.  so that one could not do $if[1] ^if[xxx]
           first html-typo sample. detected << problem: they become ltlt too  
           fast          * src/: include/pa_opcode.h, include/pa_request.h, main/compile.C,
             main/compile.tab.C, main/compile.y, main/compile_tools.C,
         * src/main/compile.y: z            main/compile_tools.h, main/execute.C, types/pa_wcontext.h:
             operators check 6.1 rewritten. now check is done at compile time
         * src/main/: compile.y, compile_tools.h: #comment  
           * src/main/execute.C: operators check 5 floated up old error of
         * src/: classes/file.C, classes/root.C, classes/table.C,            staying in 'entered class/object' state after $a($a..) it
           include/pa_common.h, include/pa_request.h, main/compile.y,            prevented operators from being called thereafter
           main/pa_common.C, main/pa_request.C, main/pa_string.C,  
           targets/isapi/parser3isapi.C, types/pa_vfile.h: file_read          * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
           stringified            main/execute.C: operators check 4 floated up old error of staying
             in 'entered object' state after ^a.a(a) it prevented operators
         * src/types/pa_valiased.C: decided to String-ify file_read            from being called thereafter
   
         * src/targets/: cgi/parser3.C, isapi/nt_log_events.mc,          * src/main/execute.C: operators check 3 floated up old error of
           isapi/parser3isapi.dsp: cgi: sapi::log            staying in 'entered class' state after $a:a(a) it prevented
             operators from being called thereafter
         * src/: include/pa_sapi.h, main/pa_common.C, main/pa_request.C,  
           targets/cgi/parser3.C, targets/isapi/nt_log_events.mc,          * src/: main/execute.C, types/pa_wcontext.h: operators check 2
           targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp: nt            floated up old error of staying in 'entered class' state after
           error log experiments failed - cgi under iis got no access to            $a:a[a] it prevented operators from being called thereafter
           log. registereventsource simply failed with 5(illegal call) code,  
           while worked OK as standalone executable.  isapi: used          * src/main/execute.C: operators check, thay mistakenly seen in
           HSE_APPEND_LOG_PARAMETER feature            $class:operator   $object.operators contexts
   
         * src/: include/pa_common.h, include/pa_globals.h,          * src/: classes/xdoc.C, targets/cgi/parser3.dsp: now compiles under
           main/pa_common.C, main/pa_globals.C, main/pa_request.C,            win32
           targets/isapi/parser3isapi.C: fixed default content-type  
           allocation storage          * INSTALL, configure, configure.in, ident.awk, etc/Makefile.am,
             src/classes/Makefile.am, src/main/Makefile.am,
         * src/: include/pa_globals.h, include/pa_request.h,            src/targets/cgi/Makefile.am,
           main/pa_globals.C, main/pa_request.C: z            src/targets/cgi/pa_config_paths.h.in, src/targets/cgi/parser3.C,
             src/types/Makefile.am: lowered indent.awk back to src/
         * src/: include/pa_array.h, include/pa_hash.h,  
           include/pa_request.h, main/compile.y, main/pa_array.C,          * AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, NEWS, README,
           main/pa_common.C, main/pa_hash.C, main/pa_request.C,            acinclude.m4, aclocal.m4, asm.txt, config.guess, config.sub,
           types/pa_vcookie.C: cyclic uses ignored. defaulted default            configure, configure.in, form.txt, ident.awk, install-sh,
           content-type            lang.txt, ltconfig, ltmain.sh, missing, mkinstalldirs,
             operators.txt, parser3.dsw, sql.txt, types.txt, etc/Makefile.am,
         * src/main/: compile.y, execute.C, main.dsp: @CLASS equals @BASE.            etc/parser3.charsets/Makefile.am,
           sanity            etc/parser3.charsets/koi8-r.cfg,
             etc/parser3.charsets/windows-1250.cfg,
         * src/: main/pa_globals.C, types/pa_vclass.C, types/pa_vclass.h,            etc/parser3.charsets/windows-1251.cfg, src/Makefile.am,
           types/pa_vstateless_class.C, types/pa_vstateless_class.h: thrown            src/classes/Makefile.am, src/include/pa_config_auto.h.in,
           away freeze mech.  no danger now for you can't do            src/main/Makefile.am, src/targets/cgi/Makefile.am,
           ^request:process[@new-method[] body] trick anymore.  still            src/targets/cgi/parser3.C, src/types/Makefile.am: moved etc&www
           remains $some_instance.process[@new-method[] possibility] but            out of src, moved configure&co out of src added windows-1250.cfg
           would leave it as a feature.  see index for sample            straightened installation scripts procedure made
             targets/cgi/parser3.C be dependant on ./configure --sysconfdir
         * src/: include/pa_common.h, main/pa_common.C,            change
           targets/cgi/parser3.C, targets/isapi/parser3isapi.C: auto.p  
           monkey every target  2002-01-30  paf
   
         * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,          * src/classes/xdoc.C: acconfig.h changed [comments before #undefs
           targets/cgi/parser3.C, targets/isapi/pool_storage.h,            removed] those comments were a mistake, and prevented libltdl
           types/pa_vform.C, types/pa_vform.h: auto.p monkey            from function properly
   
 2001-03-23  paf  2002-01-29  paf
   
         * src/: include/pa_pool.h, main/pa_request.C,          * src/: Makefile.am, classes/Makefile.am: removed libltdl/libtool
           targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,            creation [modified acinclude.m4 which were creating int into just
           targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,            assignment LIBTOOL=../libtool] added default system
           targets/isapi/pool_storage.h: isapi: dumb pool storage            config&charsetts prepared 'make install', now it installs
             targets/cgi/parser3 into bin directory etc/parser3.conf &
         * src/targets/isapi/pa_pool.C: decided to continue with extension            etc/parser3.charsets/* into $sysconfdir and
             $sysconfdir/parser3.charsets respectively
         * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: isapi: think  
           it would be better to rewrite as filter then to deal with pool          * src/: classes/xdoc.C, include/pa_charset.h, include/pa_globals.h,
             main/pa_globals.C: few forgotten ifdef XML added
         * src/: main/main.dsp, targets/isapi/parser3isapi.C: isapi: docroot  
           now like in cgi, not from APPL_PHYSICAL_PATH  2002-01-28  paf
   
         * src/: classes/root.C, classes/table.C, include/pa_common.h,          * src/: classes/Makefile.am, targets/cgi/Makefile.am: xalan-patch
           include/pa_config_fixed.h, include/pa_config_includes.h,            removed
           include/pa_string.h, include/pa_threads.h, include/pa_types.h,  
           include/pa_version.h, main/compile.y, main/execute.C,          * src/main/pa_exception.C: dom|generic error output fix
           main/pa_array.C, main/pa_common.C, main/pa_hash.C,  
           main/pa_pool.C, main/pa_request.C, main/pa_string.C,          * src/classes/xnode.C: xdoc.importNode 3 [check err]
           main/untaint.C, targets/cgi/parser3.C,  
           targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vform.C:          * src/classes/xnode.C: xdoc.importNode 2 [mistype err]
           cgi: reinvent document_root and request_uri under iis. autoconf  
           updated. introducing ap_config_includes          * src/: classes/xnode.C, types/pa_vxdoc.h: xdoc.importNode 1
             [fixed as_node helper func to accept docs]
         * src/targets/cgi/parser3.C: cgi: reinvent document_root under iis  
           * src/: classes/xdoc.C, classes/xnode.h, main/pa_exception.C:
         * src/targets/cgi/parser3.C: cgi: only one pool now            xdoc.importNode 0
   
         * src/: include/pa_globals.h, include/pa_sapi.h, main/main.dsp,          * src/classes/xdoc.C: xdoc::set now untaints OK
           main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,  
           targets/isapi/parser3isapi.C, types/pa_vcookie.C,  2002-01-25  paf
           types/pa_venv.h, types/pa_vform.C: sapi made object  
           * src/main/: compile.tab.C, compile.y: #comment  before @ after
         * src/: include/pa_globals.h, main/pa_request.C,            @SPECIAL now works OK
           targets/cgi/parser3.C, targets/cgi/parser3.dsp,  
           targets/isapi/parser3isapi.C, types/pa_vcookie.C,          * src/main/: pa_exec.C: unix: exec now does chdir to script dir
           types/pa_venv.h, types/pa_vform.C: all: sapi beauty  
           * src/main/pa_exec.C: max arg count now 10, and proper message on
         * src/: main/pa_request.C, targets/cgi/parser3.C,            violation that added
           targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:  
           isapi minor env beauty          * src/classes/hash.C: unified  hash::sql, now
             ^hash::sql{query}[[$.limit(2) $.offset(4)]]
         * src/: main/pa_request.C, targets/cgi/parser3.C,  
           targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:          * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
           isapi document_root 0            ^file:lock[filename]{code}
   
 2001-03-22  paf          * src/: classes/file.C, classes/op.C, classes/string.C,
             classes/table.C, classes/xdoc.C, include/pa_common.h,
         * src/targets/isapi/parser3isapi.C: isapi keep-alive            main/pa_common.C, types/pa_vfile.h: removed redundant pool param
             to some pa_common funcs
         * src/targets/: cgi/vform_fields_fill.C, cgi/vform_fields_fill.h,  
           isapi/parser3isapi.C: z          * src/: include/pa_charset.h, main/pa_globals.C:
             http://localhost/abc -> $ENV{DOCUMENT_ROOT}/abc | ./abc
         * src/: include/pa_pool.h, main/pa_request.C,  
           targets/cgi/parser3.C, targets/isapi/parser3isapi.C: isapi 1          * src/: include/pa_charset.h, main/pa_charset.C,
             include/pa_config_fixed.h, main/compile.tab.C: typedef XMLCh...
         * src/targets/isapi/: KILL.EXE, PSTAT.EXE, istart.cmd, istop.cmd,            not stupid illegal define
           kill.pl: isapi added utils  
   2002-01-24  paf
         * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/parser3.C,  
           targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,          * src/include/pa_version.h: changed version number
           types/pa_vform.C: isapi 0  
           * src/: classes/hashfile.C, include/pa_db_table.h,
         * src/: include/pa_pool.h, targets/cgi/pa_pool.C,            include/pa_opcode.h, main/compile.tab.C, main/compile.y,
           targets/cgi/parser3.C, targets/cgi/parser3.dsp,            main/compile_tools.C, main/compile_tools.h, main/execute.C,
           targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,            main/pa_db_connection.C, main/pa_db_table.C,
           targets/isapi/parser3isapi.def, targets/isapi/parser3isapi.dsp:            types/pa_vhashfile.C, types/pa_vhashfile.h: merged from r17 -
           started isapi            hashfile without logfiles
   
         * src/: include/pa_globals.h, main/pa_common.C, main/pa_request.C:          * src/: classes/hashfile.C, include/pa_db_table.h,
           some comments            main/compile.tab.C, main/pa_db_connection.C, main/pa_db_table.C,
             types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile: removed use
         * src/: include/pa_globals.h, include/pa_request.h,            of transactions [libdb removed DB_INIT_LOCK, DB_INIT_LOG,
           include/pa_types.h, main/pa_globals.C, main/pa_request.C,            DB_INIT_TXN init bits, thus got rid of huge log files, which
           targets/cgi/parser3.C, types/pa_vcookie.C: config of auto.p path:            cluttered disk without huge need]
           parser_root_auto_path parser_site_auto_path  
           * src/classes/: xdoc.C, xnode.C, xnode.h: gdome_xml_doc_get_xmlDoc
         * src/types/pa_vcookie.C: cookie attr decoded            handy macro, which is strangly abscent in dome lib
   
 2001-03-21  paf          * src/classes/xdoc.C: xsltSaveResultTo checked <0 response
   
         * src/targets/cgi/parser3.C: z          * src/classes/xdoc.C: checked empty response
   
         * src/include/pa_globals.h: post. todo: config of auto.p path          * src/classes/xnode.C: xdoc.select fixed context node [were always
             /, not self node]
         * src/: include/pa_globals.h, targets/cgi/parser3.C,  
           types/pa_venv.h: in cookie & env. todo:post          * src/classes/xnode.C: xnode.select returns array always now, in
             case 'nothing found' returns empty array
         * src/: Makefile.am, classes/Makefile.am, classes/file.C,  
           classes/root.C, classes/table.C, include/pa_array.h,          * src/classes/xnode.C: xpath nodes select bug [0] instead of [i],
           include/pa_common.h, include/pa_globals.h, include/pa_pool.h,            be more tender with ctrl/c/v
           include/pa_request.h, include/pa_string.h, main/Makefile.am,  
           main/compile.y, main/execute.C, main/main.dsp, main/pa_common.C,  2002-01-23  paf
           main/pa_globals.C, main/pa_request.C, main/pa_string.C,  
           main/pa_table.C, main/untaint.C, targets/Makefile.am,          * src/: classes/xdoc.C, main/pa_globals.C: xdoc::load/set entities
           targets/cgi/Makefile.am, targets/cgi/parser3.C,            substituted.         // 2. when dom tree with entites goes under
           targets/cgi/parser3.dsp, types/Makefile.am, types/pa_vcookie.C,            transform text nodes        // got [erroreosly] cut on first
           types/pa_vform.C, types/pa_vstring.h, types/pa_wwrapper.h:            entity occurance
           shifted apache branch on main trunc  
           * src/types/pa_vdouble.h: double prec. todo: get rid of
         * src/: include/pa_common.h, include/pa_globals.h,            twice-converting
           include/pa_pool.h, include/pa_request.h, main/main.dsp,  
           main/pa_common.C, main/pa_request.C, targets/cgi/parser3.dsp,          * src/types/pa_vdouble.h: %.20E now float format when %g produced
           types/pa_vcookie.C, types/pa_vform.C, types/pa_vstring.h:            'e' in output this is for regretful twice-converting here:
           starting mod_parser3            $a(double value) when they write double falue  they convert it to
             string first, thus %g were losing precesion.
         * src/targets/cgi/parser3.C: starting mod_parser3  
             todo: think up some way to remove double->string string->double
 2001-03-20  paf            twice-converting
   
         * src/: main/pa_common.C, targets/cgi/Makefile.am,          * src/: classes/xdoc.C, main/pa_globals.C, types/pa_vdouble.h:
           targets/cgi/parser3.C: automake compiled and works. todo:make            %.20E now default float format this is for regretful
           win32 ifdefs work and add ifdef unistd            twice-converting here: $a(double value) when they write double
             falue  they convert it to string first, thus %g were losing
         * src/: classes/table.C, include/pa_common.h, include/pa_request.h,            precesion.
           main/Makefile.am, main/pa_common.C, main/pa_request.C,  
           main/pa_table.C, targets/cgi/Makefile.am, targets/cgi/parser3.C:            todo: think up some way to remove double->string string->double
           z            twice-converting
   
         * src/: include/pa_request.h, main/Makefile.am, main/compile.y,          * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
           main/execute.C, main/pa_common.C, types/Makefile.am: removing            main/pa_globals.C: xmlSubstituteEntitiesDefault(1) now global,
           locking            reasons in comment inside
   
         * src/: classes/Makefile.am, types/Makefile.am: z          * src/main/pa_globals.C: xslt linked dynamically. [mistekenly were
             statically linked]
         * src/: Makefile.am, classes/file.C, classes/root.C,  
           classes/table.C, include/pa_array.h, include/pa_request.h,          * src/: include/pa_exception.h, main/compile.tab.C,
           include/pa_string.h, main/Makefile.am, main/execute.C,            main/pa_exception.C: removed exception va_list constructor.  1.
           main/pa_common.C, main/pa_globals.C, main/pa_request.C,            not needed anymore 2. there were a conflict[causing errors]
           main/pa_string.C, main/untaint.C, targets/Makefile.am,            between ctor(, va_list) ctor(, ...) compiler[both msvc and gcc]
           targets/cgi/Makefile.am, targets/cgi/parser3.C,            never detected an ambiguilty here, compiling ctor(, "hello") into
           types/pa_vcookie.C, types/pa_wwrapper.h: String::UL_            ctor(, va_list) which, of course, caused gpf
   
         * src/: classes/table.C, include/pa_common.h, main/pa_common.C,          * src/main/pa_globals.C: removed debug xslt messages
           main/pa_request.C, types/pa_vfile.h: ^table:save  
   2002-01-22  paf
         * src/: classes/file.C, classes/table.C, include/pa_array.h,  
           include/pa_common.h, include/pa_request.h, include/pa_string.h,          * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
           include/pa_table.h, include/pa_threads.h, main/pa_globals.C,            main/pa_globals.C: xsl stylesheet load: parsed entities, this
           main/untaint.C, types/pa_valiased.h, types/pa_value.h,            helps compiling stylesheet properly.  example: this refused to
           types/pa_vform.h: z            work,             <b>&laquo;<xsl:value-of select="@title"
             />&raquo;</b> stranly worked only this way:
         * src/include/pa_string.h: z            <b>&#171;<xsl:value-of select="@title" />&raquo;</b>
   
         * src/: classes/_request.h, classes/request.C, main/main.dsp,            docs says "set it to 1", never going into details, so I decided
           main/pa_globals.C, types/pa_value.h, types/pa_vform.h,            to try NOT to do that
           types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to  
           :Value          * src/classes/table.C: join behaived badly in case named tables
             structure mismatched: 0 strings sneaked into dest failing
         * src/: classes/_request.h, classes/request.C, main/pa_globals.C,            afterwards.  replaced them with empty strings
           types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to  
           :VStateless_object  2002-01-21  paf
   
         * src/: classes/_response.h, classes/response.C, main/pa_globals.C,          * src/main/pa_charset.C: checked empty transcoders in
           types/pa_vform.h, types/pa_vresponse.h: VResponse moved to            transcode_cstr|buf
           :VStateless_object  
           * src/classes/xdoc.C: xdoc::load error source = filespec
         * src/: main/main.dsp, targets/cgi/parser3.dsp,  
           types/pa_valiased.C, types/pa_vform.h: commented VForm          * src/classes/xdoc.C: transform error source now
             stylesheet_filespec
         * src/: targets/cgi/pa_vform.C, types/pa_valiased.C,  
           types/pa_valiased.h, types/pa_value.h,          * src/: classes/xdoc.C, classes/xnode.C,
           types/pa_vstateless_class.C, types/pa_vstateless_class.h,            include/pa_stylesheet_connection.h, main/pa_charset.C,
           types/pa_vstateless_object.h: moved common get_element part from            main/pa_globals.C, main/pa_sql_driver_manager.C,
           stateless object&class into VAliased            main/pa_stylesheet_manager.C, targets/cgi/Makefile.am: autoconf
             gnome
         * src/: classes/_env.h, classes/_table.h, classes/env.C,  
           classes/table.C, main/execute.C, main/main.dsp,          * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
           main/pa_globals.C, main/pa_request.C, types/pa_value.h,            include/pa_globals.h, include/pa_stylesheet_connection.h,
           types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.h: VEnv is            main/pa_exception.C, main/pa_globals.C, targets/cgi/pa_threads.C:
           now :Value            xslt generic error 1
   
         * src/: classes/_cookie.h, classes/_table.h, classes/cookie.C,          * src/: include/pa_stylesheet_connection.h, main/pa_exception.C:
           main/execute.C, main/main.dsp, main/pa_globals.C,            xml generic message 1
           types/pa_vcookie.C, types/pa_vcookie.h: VCookie is now :Value  
           * src/classes/table.C: ^table::load empty lines or #comments before
         * src/types/: pa_vfile.C, pa_vfile.h, pa_vstateless_object.h: vfile            headline
           doxx  
           * src/: include/pa_array.h, include/pa_globals.h,
         * src/: classes/_file.h, classes/file.C, include/pa_types.h,            include/pa_request.h, include/pa_threads.h, main/pa_array.C,
           main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,            main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
           types/pa_valiased.h, types/pa_vfile.C, types/pa_vfile.h,            targets/cgi/pa_threads.C, targets/isapi/pa_threads.C: xml generic
           types/pa_vstateless_class.h, types/pa_vstateless_object.h: \ to /            errors 0
           and ^file:save  
   2002-01-16  paf
 2001-03-19  paf  
           * src/: classes/hash.C, classes/op.C, classes/string.C,
         * src/types/pa_vfile.C: z            classes/table.C, classes/void.C, classes/xdoc.C,
             include/pa_db_connection.h, include/pa_request.h,
         * src/: classes/file.C, classes/request.C, classes/table.C,            include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
           include/pa_string.h, main/main.dsp, main/pa_pool.C,            include/pa_stylesheet_connection.h,
           main/pa_request.C, main/untaint.C, types/pa_value.h,            include/pa_stylesheet_manager.h, main/pa_request.C,
           types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C: file 1            main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
             targets/cgi/pool_storage.h: auto closers to sql_connection,
         * src/: classes/table.C, include/pa_common.h, include/pa_globals.h,            stylesheet_connection auto destroyers to remaining gnome objects
           include/pa_string.h, include/pa_table.h, main/main.dsp,  
           main/pa_common.C, main/pa_globals.C, types/pa_value.h,          * src/classes/xdoc.C: few comments
           types/pa_vcookie.h, types/pa_venv.h, types/pa_vform.C,  
           types/pa_vform.h, types/pa_vrequest.h, types/pa_vtable.h,  2002-01-15  paf
           classes/_file.h, classes/file.C, types/pa_vfile.C,  
           types/pa_vfile.h: file class just compiled          * src/classes/xdoc.C: xdoc   file   save   string
   
         * src/: classes/table.C, include/pa_pool.h, include/pa_request.h,            ready.  todo: error handling
           include/pa_table.h, include/pa_types.h, main/execute.C,  
           main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,          * src/classes/xdoc.C: xdoc save rewritten using
           types/pa_vclass.h, types/pa_vform.C, types/pa_vstateless_class.h,            xmlAllocOutputBuffer less mallocs, more reallocs. less fragmented
           types/pa_vstateless_object.h: ^table:set{default level: TABLE}            result
   
         * src/include/pa_pool.h: z          * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C:
             started output options parsing
         * src/: include/pa_hash.h, include/pa_types.h, main/pa_common.C,  
           main/pa_hash.C, main/pa_request.C, types/pa_vcookie.C: renamed  2002-01-14  paf
           Hash::Value to Val so to doxygen would finlly stop confusing  
           those Value-s          * src/classes/xdoc.C: method
   
         * src/: include/code.h, include/pa_array.h, include/pa_common.h,          * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
           include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,            include/pa_pool.h, include/pa_stylesheet_connection.h,
           include/pa_pool.h, include/pa_request.h, include/pa_stack.h,            main/main.dsp, main/pa_charset.C, main/pa_globals.C,
           include/pa_string.h, include/pa_table.h, include/pa_threads.h,            main/pa_pool.C, main/pa_stylesheet_manager.C, types/pa_vxdoc.h:
           include/pa_types.h, main/compile.C, main/compile.y,            xslt transform0.  TODO:   use output options   handle errors
           main/compile_tools.C, main/compile_tools.h, main/execute.C,  
           main/pa_array.C, main/pa_common.C, main/pa_exception.C,          * src/classes/: xdoc.C, xnode.C: ^xdoc.file
           main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,  
           main/pa_request.C, main/pa_string.C, main/pa_table.C,  2002-01-11  paf
           main/untaint.C, types/pa_valiased.h, types/pa_value.h: z  
           * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
         * src/types/: pa_valiased.h, pa_vbool.h: doc: Value and it's            main/compile_tools.C, main/compile_tools.h, main/execute.C:
           derivates somehow unlinked. don't know why yet            partial logical && || evaluation
   
         * src/: include/code.h, include/pa_array.h, include/pa_pool.h,          * src/classes/xnode.C: xpath selectNodes
           include/pa_string.h, include/pa_threads.h, main/compile.C,  
           main/compile.y, main/compile_tools.C, main/compile_tools.h,          * src/: classes/xnode.C, include/pa_charset.h: xpath selectNode 3:
           main/execute.C, main/pa_array.C, main/pa_common.C,            string/number/bool
           main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,  
           main/pa_pool.C, main/pa_request.C, main/pa_string.C,          * src/classes/xnode.C: xpath selectNode 2
           main/pa_table.C, main/untaint.C, types/pa_value.h: auto @brief  
           * src/: classes/xnode.C, include/pa_charset.h, main/pa_charset.C:
         * src/: classes/root.C, classes/table.C, main/pa_exception.C,            xpath selectNode 1
           main/pa_request.C, targets/cgi/parser3.C, types/pa_vbool.h,  
           types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdouble.h,  2002-01-10  paf
           types/pa_venv.h, types/pa_vform.h, types/pa_vint.h,  
           types/pa_vrequest.h: doc: detected Value derivates prob          * src/classes/xnode.C: xpath selectNode -100 [just written]
   
         * src/include/pa_globals.h: z          * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
             include/pa_exception.h, include/pa_pool.h, main/pa_charset.C,
         * src/: classes/_request.h, classes/request.C, include/code.h,            main/pa_pool.C: GdomeDOMString_auto_ptr  c++ wrapper [calls
           include/pa_array.h, include/pa_common.h, include/pa_exception.h,            refcounter]
           include/pa_globals.h, include/pa_hash.h, include/pa_pool.h,  
           include/pa_request.h, include/pa_stack.h, include/pa_string.h,  2001-12-29  paf
           include/pa_table.h, include/pa_threads.h, include/pa_types.h,  
           main/execute.C, main/pa_pool.C, main/pa_request.C,          * src/: classes/xdoc.C, include/pa_exception.h, main/pa_charset.C,
           main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,            main/pa_exception.C, main/pa_globals.C: xdoc ^set ^string with
           types/pa_value.h, types/pa_vform.C: doxygen include/, Value            glib works 0
   
 2001-03-18  paf  2001-12-28  paf
   
         * src/: classes/cookie.C, types/pa_vcookie.C, types/pa_vcookie.h:          * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C,
           cookie: allowed access to hash-assigned            main/pa_exception.C: started glib transcoders
   
         * src/targets/cgi/parser3.C: z          * src/main/pa_globals.C: renamed gdome to libgdome.dll
   
         * src/: classes/_cookie.h, classes/cookie.C, include/pa_common.h,          * src/: classes/classes.dsp, classes/mail.C, classes/xdoc.C,
           include/pa_globals.h, include/pa_request.h, include/pa_string.h,            classes/xnode.C, classes/xnode.h, include/pa_exception.h,
           include/pa_types.h, main/main.dsp, main/pa_common.C,            include/pa_globals.h, main/compile.tab.C, main/main.dsp,
           main/pa_globals.C, main/pa_hash.C, main/pa_request.C,            main/pa_charset.C, main/pa_dir.C, main/pa_exception.C,
           main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,            main/pa_exec.C, main/pa_globals.C, main/pa_socks.C,
           types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,            targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vxdoc.C,
           types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,            types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: gnome
           types/pa_vunknown.h: cookie class            libs just compiled in.  no refcounting no xpath no xslt   yet
   
         * src/main/pa_request.C: zero length output allowed  2001-12-27  paf
   
         * src/: classes/response.C, main/pa_request.C, types/pa_value.h,          * src/: include/pa_charset.h, include/pa_common.h,
           types/pa_vhash.h, types/pa_vresponse.h: ^response:clear[]            include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
             main/main.dsp, main/pa_charset.C, main/pa_charsets.C,
         * src/: classes/root.C, main/pa_request.C: taint forgotten forced            main/pa_globals.C, main/pa_pool.C, targets/cgi/parser3.C,
           lang switch            targets/cgi/parser3.dsp, types/pa_vxdoc.C, types/pa_vxdoc.h,
             types/pa_vxnode.C, types/pa_vxnode.h, types/types.dsp: going away
         * src/: classes/root.C, include/pa_globals.h, include/pa_string.h,            from xalan&xerces, started the process.  globals [initialization
           main/pa_globals.C, main/pa_request.C, main/pa_string.C,            pool [charset update charset [transcodings vxnode vxdoc [DOM
           types/pa_value.h, types/pa_vhash.h:            calls
           $defautl[$content-type[$value[text/html] $charset[windows-1251]]  
           * src/classes/Makefile.am: going away from xalan&xerces, not needed
         * src/main/execute.C: z            anymore
   
         * src/: classes/root.C, main/pa_request.C, main/untaint.C,  2001-12-26  paf
           targets/cgi/parser3.C: taint[uri  
           * src/: include/pa_charset.h, include/pa_charsets.h,
         * src/: classes/request.C, classes/response.C, classes/root.C,            main/pa_charset.C, main/pa_charsets.C, main/pa_request.C: charset
           include/pa_common.h, include/pa_globals.h, include/pa_request.h,            key globalized [bug]
           include/pa_string.h, main/pa_common.C, main/pa_globals.C,  
           main/pa_request.C, targets/cgi/parser3.C: ^taint 0  2001-12-25  paf
   
         * src/: classes/root.C, classes/string.C, include/pa_string.h,          * src/: classes/mail.C, classes/table.C, include/pa_string.h,
           main/pa_globals.C, main/pa_request.C, main/pa_string.C,            main/pa_string.C: table set & append changed splitting languages,
           types/pa_vdouble.h, types/pa_vform.C, types/pa_vint.h,            separators now can be clean AND as-is same to mail command line
           types/pa_vstateless_class.C: convinient string(pool, char *src,            $MAIN:MAIL.progX arguments
           bool tainted) ctor  
   2001-12-24  paf
         * src/: include/pa_hash.h, include/pa_request.h,  
           include/pa_string.h, main/pa_globals.C, main/pa_hash.C,          * src/classes/mail.C: one parted text messages - no multipart
           main/pa_request.C, main/pa_string.C, main/untaint.C,            mime-type anymore.  for convinient if $.attach-ments
           targets/cgi/parser3.C: proper @exceptions params tainting  
           * src/: classes/hashfile.C, classes/op.C, main/pa_db_table.C,
         * src/: include/pa_hash.h, main/pa_hash.C, targets/cgi/parser3.C:            main/pa_string.C: read from cache size check updated
           response fields to header  
           * src/main/: pa_string.C: String::join_chain another ugly bug :(
         * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:  
           z  2001-12-21  paf
   
         * src/: classes/_response.h, classes/response.C,          * src/classes/date.C: date:sql-string now returns localtime
           include/pa_globals.h, include/pa_hash.h, include/pa_request.h,  
           main/compile.C, main/compile.y, main/execute.C, main/main.dsp,          * src/main/pa_request.C: $result in @main actually not working, to
           main/pa_globals.C, main/pa_hash.C, main/pa_request.C,            hell with it for now
           targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_value.h,  
           types/pa_vhash.h, types/pa_vrequest.h, types/pa_vresponse.h:          * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
           $response: 0  request::core exception rethrow            types/pa_vmethod_frame.h, types/pa_wcontext.h: $result in @main
             @postprocess @exception
 2001-03-16  paf  
           * src/main/execute.C: junction evaluation canceled - endless
         * src/: main/execute.C, main/main.dsp, types/pa_value.h,            recursion detected
           types/pa_vrequest.h: native method' class call with less params  
           then needed error reporting  2001-12-19  paf
   
         * src/: classes/_request.h, classes/request.C,          * src/main/pa_charset.C: charset->charset transcoding via unicode
           include/pa_globals.h, include/pa_request.h, main/execute.C,            intermediate
           main/main.dsp, main/pa_globals.C, main/pa_request.C,  
           targets/cgi/parser3.C, types/pa_vform.C, types/pa_vrequest.C,          * src/main/pa_request.C: CLASS_PATH now / = DOCUMENT_ROOT
           types/pa_vrequest.h: $request : query :uri  
           * src/classes/hashfile.C: ^hashfile.open DB_HOME now relative
         * src/: include/pa_globals.h, main/execute.C, main/pa_globals.C,  
           types/pa_value.h, types/pa_vcframe.h, types/pa_vmframe.h,          * src/classes/op.C: ^cache keypath now relative
           types/pa_wcontext.h: $result  
           * src/classes/mail.C: changed weighting prior to sort
         * src/: main/execute.C, types/pa_vmframe.h: if(in "/news/")  
           * src/: classes/mail.C, include/pa_config_fixed.h: to/from 0 check
         * src/: classes/double.C, include/code.h, main/compile.y,            were missing
           main/compile_tools.C, main/compile_tools.h, main/execute.C: ()  
           and {} param wcontext conflict fixed by OP_EXPR_CODE__STORE_PARAM  2001-12-17  paf
   
         * src/: include/code.h, include/pa_hash.h, include/pa_request.h,          * src/main/pa_charset.C: ifndef XML were bad type
           main/compile.y, main/execute.C, types/pa_value.h,  
           types/pa_vhash.h, types/pa_vstring.h, types/pa_vtable.h,          * src/: include/pa_db_table.h, main/pa_db_table.C: db_table used
           types/pa_wcontext.C, types/pa_wcontext.h: see () and {} param            outdated unset services_pool
           wcontext conflict  
           * src/: classes/mail.C, include/pa_charsets.h, include/pa_string.h,
         * src/: main/execute.C, types/pa_value.h,            main/pa_charsets.C, main/untaint.C, types/pa_vrequest.C,
           types/pa_vstateless_object.h, types/pa_vstring.h: disabled            types/pa_vresponse.C: ^mail:send[    $.charset[zzz] addded
           $string.field  
           * src/main/untaint.C: allowed space in filespec
 2001-03-15  paf  
           * src/main/pa_charset.C: empty bufs transcode [forgot check :(]
         * src/main/pa_request.C: news sample  
           * src/classes/image.C: no govno
         * src/: main/compile.y, main/execute.C, main/pa_request.C,  
           targets/cgi/parser3.C, types/pa_vstring.h: @exception          * src/classes/image.C: govno
   
         * src/main/: compile.y, execute.C: z  2001-12-16  paf
   
         * src/: main/compile.y, main/pa_request.C, targets/cgi/parser3.C,          * src/include/: pa_charset.h, pa_charsets.h: forgot to add
           types/pa_vstring.h: pre-pre-pre-beta cgi under win32 apache pre  
           pre pre works          * src/: main/Makefile.am, main/pa_charset.C, types/Makefile.am:
             charset_connection&manager replaced by charset&charsets
         * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,  
           targets/cgi/parser3.C, types/pa_vform.C, types/pa_vform.h: vform          * src/main/pa_charset.C: name_cstr 0
           fillfields just compiled  
           * src/main/untaint.C: uri lang now knows about client/source
 2001-03-14  paf            charsets
   
         * src/: include/pa_request.h, main/pa_request.C,          * src/: classes/file.C, classes/math.C, classes/op.C,
           targets/cgi/parser3.C: z            classes/string.C, classes/table.C, classes/xdoc.C,
             include/pa_array.h, include/pa_cache_managers.h,
         * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,            include/pa_charset_connection.h, include/pa_charset_manager.h,
           targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h,            include/pa_common.h, include/pa_db_connection.h,
           types/pa_vstring.h: limits -1            include/pa_db_manager.h, include/pa_db_table.h,
             include/pa_dictionary.h, include/pa_exception.h,
         * src/: include/pa_globals.h, include/pa_request.h,            include/pa_exec.h, include/pa_globals.h, include/pa_hash.h,
           include/pa_types.h, main/main.dsp, main/pa_globals.C,            include/pa_opcode.h, include/pa_pool.h, include/pa_request.h,
           main/pa_request.C, targets/cgi/parser3.C,            include/pa_sapi.h, include/pa_socks.h,
           targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h:            include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
           request_info -1            include/pa_string.h, include/pa_stylesheet_connection.h,
             include/pa_stylesheet_manager.h, include/pa_table.h,
         * src/: include/pa_globals.h, main/pa_globals.C,            include/pa_transcoder.h, main/compile_tools.h, main/main.dsp,
           targets/cgi/parser3.C, targets/cgi/parser3.dsp,            main/pa_charset.C, main/pa_charset_connection.C,
           targets/cgi/vform_fields_fill.C, targets/cgi/vform_fields_fill.h:            main/pa_charset_manager.C, main/pa_charsets.C, main/pa_globals.C,
           vform_fields_fill            main/pa_pool.C, main/pa_request.C, main/pa_string.C,
             main/pa_transcoder.C, main/untaint.C, types/pa_vfile.C,
         * src/targets/cgi/parser3.C: #  if MSVC            types/pa_vform.C, types/pa_vform.h, types/pa_vrequest.C,
             types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
         * src/: include/pa_common.h, include/pa_types.h, main/pa_request.C,            types/types.dsp: introducing Charset
           targets/cgi/parser3.C: PATH_DELIMITER_CHAR  
   2001-12-14  paf
         * src/targets/cgi/parser3.C: z  
           * src/: include/pa_request.h, include/pa_transcoder.h,
         * src/: include/core.h, include/pa_globals.h, include/pa_pool.h,            main/pa_request.C, main/pa_transcoder.C, types/pa_vform.C,
           include/pa_string.h, include/pa_types.h, main/compile.y,            types/pa_vform.h: transcodeToUTF8[were FromUTF8] for forms todo:
           main/core.C, main/main.dsp, main/pa_globals.C, main/pa_request.C,            uri lang
           targets/cgi/pa_vform.C, targets/cgi/parser3.C,  
           targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vform.h,          * src/main/pa_transcoder.C: transcodeToUTF8, now form&uri lang
           types/pa_vunknown.h: global handler, exceptions in parser3  
           * src/targets/cgi/Makefile.am: -I../../pcre  to .am
 2001-03-13  paf  
           * src/: include/pa_globals.h, main/pa_globals.C: removed unused
         * src/: classes/form.C, main/compile.y, main/core.C,            defalts_name global
           types/pa_value.h, types/pa_vclass.h, types/pa_venv.h,  
           types/pa_vform.h, types/pa_vstateless_class.C,          * src/: include/pa_charset_connection.h, include/pa_pool.h,
           types/pa_vstateless_class.h: form:fields removed. use $form.CLASS            include/pa_request.h, main/main.dsp,
           instead            main/pa_charset_connection.C, main/pa_charset_manager.C,
             main/pa_request.C, types/Makefile.am, types/pa_vrequest.C,
         * src/: include/core.h, include/pa_common.h, include/pa_request.h,            types/pa_vrequest.h, types/pa_vresponse.h, types/types.dsp,
           main/core.C, main/execute.C, main/main.dsp, main/pa_request.C,            include/pa_transcoder.h, main/pa_transcoder.C, main/Makefile.am:
           targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vform.h:            changed charset model.  now important: $request:charset
           started cgi target            $response:charset while $response:content-type.charset become
             unimportant [informational]
         * src/: include/core.h, include/pa_common.h, include/pa_request.h,  
           main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C:  2001-12-13  paf
           before error show with parser  
           * src/targets/: cgi/pa_pool.C, isapi/pa_pool.C: EOL@EOF
         * src/: classes/_form.h, classes/form.C, include/core.h,  
           include/pa_request.h, main/core.C, main/pa_request.C,          * src/classes/xdoc.C: rewritten auto_ptr part other way2, because
           targets/cgi/parser3.C, targets/cgi/parser3.dsp: z            of stupid gcc 2.96 /usr/include/g++-3/memory:40: candidates are:
             auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with
         * src/targets/cgi/: parser.dsp, parser3.dsp: z            _Tp = FormatterListener] /usr/include/g++-3/memory:48:
             auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &)
         * src/targets/cgi/: Makefile.am, pa_pool.C, pa_vform.C, parser.dsp,            [with _Tp1 = FormatterListener, _Tp = FormatterListener]
           parser3.C: renamed targets/ parser to cgi  
           * src/: classes/xdoc.C, main/pa_sql_driver_manager.C: rewritten
         * src/: classes/double.C, classes/env.C, classes/int.C,            auto_ptr part other way, because of stupid gcc 2.96
           classes/root.C, classes/string.C, classes/table.C,            /usr/include/g++-3/memory:40: candidates are: auto_ptr<_Tp>
           include/pa_request.h, types/pa_vhash.h: z            &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with _Tp =
             FormatterListener] /usr/include/g++-3/memory:48:
         * src/: classes/_env.h, classes/env.C, classes/root.C,            auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &) [with
           include/core.h, include/pa_pool.h, include/pa_request.h,            _Tp1 = FormatterListener, _Tp = FormatterListener]
           main/compile.C, main/compile.y, main/core.C, main/main.dsp,  
           main/pa_common.C, main/pa_request.C, types/pa_value.h,          * src/classes/xdoc.C: removed extra inc
           types/pa_venv.h, types/pa_vstateless_class.h: started $form:  
           [historical moment :)]          * src/targets/cgi/: pa_pool.C, parser3.C: msvc heap debugging flag
   
         * src/: include/code.h, include/pa_string.h, main/compile.y,          * src/include/pa_types.h: msvc head debugging flag
           main/execute.C, main/pa_string.C: 'value is type' expr operator  
           * src/classes/xdoc.C: freed up listener
         * src/types/pa_venv.h: $ENV 1  
           * src/classes/string.C: change msg '... code is not code'
         * src/main/execute.C: z  
           * src/: main/pa_db_connection.C, main/pa_db_manager.C,
         * src/: main/execute.C, types/pa_value.h, types/pa_venv.h: for            main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
           future methods of ENV constructor if            targets/cgi/pool_storage.h: couple cache expiratiors were wrong
             [past/future prob]
         * src/: include/pa_request.h, types/pa_venv.h: $ENV 0.1 stateless  
           class          * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
             include/pa_config_fixed.h, include/pa_db_manager.h,
         * src/: classes/_double.h, classes/_env.h, classes/_int.h,            include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
           classes/_root.h, classes/_string.h, classes/_table.h,            main/pa_cache_managers.C, main/pa_globals.C: ~Cache_managers
           classes/double.C, classes/env.C, classes/int.C, classes/root.C,  
           classes/string.C, classes/table.C, include/pa_request.h,          * src/: include/pa_config_fixed.h, main/pa_common.C,
           main/compile.C, main/compile_tools.h, main/core.C,            main/pa_string.C: removed signed mismatch warnings
           main/execute.C, main/main.dsp, main/pa_request.C,  
           types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,          * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: removed
           types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,            'expires' from header outputs
           types/pa_vobject.h, types/pa_vstateless_class.C,  
           types/pa_vstateless_class.h, types/pa_vstateless_object.h,          * src/main/pa_string.C: string::recustruct erroreusly used outdated
           types/pa_wcontext.h: $ENV: re 0, stateless classes            row ptr
   
         * src/: classes/_double.h, classes/_env.h, classes/_int.h,          * src/classes/file.C: file::cgi bug, request_method were passed to
           classes/_root.h, classes/_string.h, classes/_table.h,            SERVER_PROTOCOL but SERVER_PROTOCOL were forgotten
           classes/double.C, classes/env.C, classes/int.C, classes/root.C,  
           classes/string.C, classes/table.C, include/pa_request.h,          * src/classes/xdoc.C: lang list updated
           main/compile.C, main/compile_tools.h, main/core.C,  
           main/execute.C, main/main.dsp, main/pa_request.C,  2001-12-10  paf
           types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,  
           types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,          * src/classes/math.C: ^math:random(n) now yields[0;n) not [0;n]
           types/pa_vobject.h, types/pa_vstateless_class.C,  
           types/pa_vstateless_class.h, types/pa_vstateless_object.h,          * src/main/untaint.C: FILE_SPEC untainting changed so that one can
           types/pa_wcontext.h: $ENV: re 0, stateless classes            erase files like that, knowing their full name introducing   //
             theoretical problem with, for instance, "_2B" and "." fragments,
         * src/: include/pa_request.h, main/compile.C, main/execute.C,            // they would yield the same    // because
           main/pa_request.C, types/pa_value.h, types/pa_vmframe.h: fixed            need_file_encode('_')=false  // but we need to delete such files
           yesterdays bad decision on execute_static_method            somehow, getting names from ^index
   
         * src/: classes/table.C, include/pa_types.h, main/pa_request.C: z          * src/main/pa_string.C: ^string.replace bug fixed [bad
             string::join_chank break]
         * src/: classes/double.C, classes/int.C, classes/root.C,  
           types/pa_vdouble.h, types/pa_vint.h: Int,Double  dec mul div mod  2001-12-07  paf
   
         * src/main/pa_request.C: z          * src/: classes/hashfile.C, classes/op.C, classes/table.C,
             include/pa_common.h, include/pa_config_auto.h.in,
         * src/: classes/root.C, classes/table.C, include/pa_exception.h,            include/pa_config_fixed.h, include/pa_config_includes.h,
           include/pa_pool.h: skipped_restructure_exceptions_dead_end            include/pa_db_table.h, include/pa_request.h, main/pa_common.C,
             main/pa_db_table.C, main/pa_request.C, main/pa_string.C,
         * src/: classes/root.C, classes/table.C, include/pa_exception.h,            types/pa_vhashfile.C: merged from r14_simple_cache
           include/pa_pool.h, main/pa_request.C:  
           restructure_exceptions_dead_end          * src/main/pa_string.C: stupid sparc architecture failed to access
             short at odd address 0x311f0 <deserialize__6StringUiPvUiPCc+16>:
         * src/: classes/root.C, main/compile.y: ^if required junctions.               lduh  [ %i2 + 1 ], %l0
           allowed ; inside {} to break params  
             bus error, fixed that
         * src/classes/root.C: ^eval  
           * src/main/pa_string.C: strange string deserialize bug on
         * src/: classes/_string.h, classes/double.C, classes/int.C,            client[pmts], a bit shortened,
           classes/string.C, main/execute.C, types/pa_wcontext.h: int doube  
           string ^format          * src/include/pa_config_auto.h.in: makes
   
         * src/: main/execute.C, types/pa_wcontext.h: constructing flag not          * src/: include/pa_common.h, include/pa_config_fixed.h,
           'bad' but not 'enough'            include/pa_config_includes.h, main/pa_common.C: exclusive lock
             file write shared lock file read
         * src/: classes/double.C, classes/root.C, classes/table.C,  
           include/pa_common.h, include/pa_types.h, main/compile.y,          * src/: classes/op.C, include/pa_common.h,
           main/pa_common.C, main/pa_request.C, main/untaint.C,            include/pa_config_fixed.h, main/pa_common.C: ^cache operator
           types/pa_vdouble.h, types/pa_vint.h, types/pa_vtable.h,  
           types/pa_wwrapper.h: think constructing flag as is  is bad  2001-12-06  paf
   
         * src/: classes/double.C, classes/int.C, classes/root.C,          * src/: classes/op.C, classes/table.C, include/pa_request.h,
           classes/string.C, classes/table.C, main/core.C, main/execute.C,            main/pa_request.C: #ifdef RESOURCES_DEBUG
           types/pa_vint.h: ^for  
           * src/: main/compile.tab.C, targets/cgi/parser3.C: removed debug
 2001-03-12  paf            info
   
         * src/classes/table.C: table ^empty          * src/classes/hashfile.C: removed transaction from ^cache
   
         * src/: classes/table.C, include/pa_table.h: table ^menu  2001-12-05  paf
   
         * src/: classes/root.C, classes/table.C, types/pa_vtable.h: table          * src/targets/cgi/: parser3.C: fatal error reporting fixed.  in
           ^offset ^line ^count            IIS5 there were a prob with illegal call check
   
         * src/classes/root.C: ^round()  ^floor()        ^ceiling()  2001-12-04  paf
           ^abs()  ^sign()  
           * src/: classes/op.C, classes/table.C, include/pa_request.h,
         * src/classes/: root.C, table.C: ^use            main/pa_request.C: measures to log
   
         * src/: classes/root.C, classes/table.C, include/pa_request.h,  2001-11-23  paf
           main/compile.y, main/core.C, main/execute.C, types/pa_vclass.h,  
           types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:          * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
           ^while. switched off wcontext.constructing after write(value) or            main/pa_common.C, main/pa_db_table.C, main/pa_string.C,
           auto-vhash-constructing            types/pa_vhashfile.C: merged from _0014, 1
   
         * src/: classes/root.C, classes/table.C, include/pa_request.h,          * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
           main/pa_request.C: fail_if_junction_ helper func            main/pa_common.C, main/pa_db_table.C, types/pa_vhashfile.C:
             hashfile bugfix2 more wrong sizes.  ^cache behaviour changed: if
         * src/: classes/root.C, classes/table.C, include/pa_common.h,            ^cache(33) would change
           include/pa_request.h, main/execute.C, main/main.dsp,  
           main/pa_common.C, main/pa_request.C: ^process error point by            0660 bits in file_write & hashfile create
           actual method_name, not source.  ^load  
           * src/main/: pa_db_table.C, pa_string.C: cache bugfix [wrong types
         * src/types/pa_vtable.h: table: no, better with string in cells...            after pa_string optimization]
   
         * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C,  2001-11-22  paf
           classes/_table.h, classes/table.C, main/untaint.C: z  
           * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
         * src/: classes/root.C, include/pa_common.h, include/pa_string.h,            table.offset[whence]
           include/pa_table.h, main/core.C, main/execute.C,  
           main/pa_common.C, main/pa_request.C, main/pa_table.C,          * src/classes/op.C: process cstr(,connection)
           types/pa_value.h: table:set 0  
           * src/classes/op.C: process now gets its body on current language,
         * src/: classes/root.C, include/core.h, include/pa_array.h,            not as-is
           include/pa_request.h, include/pa_table.h, main/core.C,  
           main/main.dsp, main/pa_request.C, main/pa_table.C,          * src/main/untaint.C: ORIGINS mode removed UHTML
           types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,  
           types/pa_vdouble.h, types/pa_vint.h, types/pa_vmframe.h,          * src/main/untaint.C: ORIGINS mode was bad - forgot about optimize
           types/pa_vstring.h: freeze, ^table:create[] -1            bit
   
         * src/: classes/root.C, types/pa_value.h: z          * src/classes/xdoc.C: cached xslt [removed nocache forcing]
   
         * src/: classes/root.C, main/execute.C, types/pa_vclass.h: used  2001-11-21  paf
           get_method in couple places optimizing them  
           * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h:
         * src/classes/root.C: z            <xsl:output output options made identical to xsl:output
             attributes exclusion:    cdata-section-elements what xalan can do
         * src/: classes/root.C, types/pa_vclass.h: process temp main            but that not used now:    it can escape and remove CDATA sections
           zeroing  
           * src/: main/untaint.C, targets/cgi/parser3.C: optimized \r
         * src/: classes/double.C, classes/int.C, classes/root.C,            produced by xslt
           classes/string.C, include/pa_common.h, include/pa_request.h,  
           include/pa_string.h, include/pa_types.h, main/compile.C,          * src/targets/cgi/parser3.C: removed debug cgi||1
           main/compile.y, main/compile_tools.h, main/execute.C,  
           main/pa_common.C, main/pa_request.C, types/pa_value.h,          * src/main/: pa_string.C, untaint.C: cached some string::size() es
           types/pa_vmframe.h: ^process. actual names to store param and  
           check_actual_numbered_params for better place diagnostics          * src/: classes/table.C, main/pa_string.C, main/untaint.C,
             targets/cgi/parser3.C: table.append bug fixed: forgot to switch
         * src/: classes/root.C, main/execute.C, main/main.dsp: setname for            default language for {code}, it happen to change it's language
           method-junctions bug fixed            from CLEAN, so later refused to split by CLEAN \t
   
         * src/types/: pa_vdouble.h, pa_vint.h, pa_vobject.h,  2001-11-20  paf
           pa_vstateless_object.h, pa_vstring.h: stateless_object  
           * src/: classes/Makefile.am, classes/table.C, main/Makefile.am,
 2001-03-11  paf            main/pa_exception.C, types/Makefile.am: moved ident.C & co to
             bottom of dependeces, so that errors would popup quicklier, fixed
         * src/: main/main.dsp, types/pa_value.h, types/pa_vdouble.h,            line numbering in table::sql
           types/pa_vint.h, types/pa_vobject.h, types/pa_vstring.h: VString  
           VDouble VInt base now VObject_base - without fields  2001-11-19  paf
   
         * src/: classes/root.C, include/core.h, main/core.C: z          * src/: classes/op.C, include/pa_request.h, include/pa_string.h,
             include/pa_types.h, main/pa_globals.C, main/pa_request.C,
         * src/: classes/double.C, classes/int.C, classes/root.C,            main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
           classes/string.C, include/core.h, include/pa_hash.h,            targets/isapi/parser3isapi.C, types/pa_wcontext.C,
           include/pa_pool.h, include/pa_request.h, include/pa_string.h,            types/pa_wcontext.h: UL_CLEAN pieces now inherit UL_OPTIMIZED_BIT
           main/compile.C, main/core.C, main/pa_request.C: ^untaint 0            at wcontext.write
   
         * src/: classes/double.C, classes/int.C, classes/root.C,          * src/targets/: Makefile.am, cgi/parser3.C: #if _MSC_VER
           include/pa_request.h, main/execute.C: intercept_string            _set_new_handler
   
         * src/: classes/double.C, classes/int.C, classes/root.C,          * src/targets/: cgi/parser3.C, isapi/parser3isapi.C:
           types/pa_vclass.C, types/pa_vclass.h: add_native_method helper            set_new_handler in apache&isapi
   
         * src/: classes/double.C, classes/int.C, include/pa_request.h:  2001-11-16  paf
           ^inc-s(expr)  
           * src/targets/cgi/parser3.C: pool debug @ die
         * src/: classes/_double.h, classes/_env.h, classes/_int.h,  
           classes/_root.h, classes/_string.h, classes/double.C,          * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
           classes/env.C, classes/int.C, classes/root.C, classes/string.C,            removed 8 bytes from String, 2 bytes from
           include/code.h, include/core.h, include/pa_array.h,            string::chunk::row::item
           include/pa_common.h, include/pa_exception.h, include/pa_hash.h,  
           include/pa_pool.h, include/pa_request.h, include/pa_stack.h,          * src/main/pa_string.C: removed 1+4 bytes from String
           include/pa_string.h, include/pa_table.h, include/pa_threads.h,  
           include/pa_types.h, main/compile.C, main/compile.y,          * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
           main/compile_tools.C, main/compile_tools.h, main/core.C,            types/pa_vstring.C: removed 1+4 bytes from String
           main/execute.C, main/pa_array.C, main/pa_common.C,  
           main/pa_exception.C, main/pa_hash.C, main/pa_pool.C,          * src/main/pa_pool.C: introducing estimating String::cstr_bufsize,
           main/pa_request.C, main/pa_string.C, main/pa_table.C,            0
           types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,  
           types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,          * src/: include/pa_globals.h, include/pa_string.h,
           types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,            include/pa_types.h, main/pa_globals.C, main/pa_pool.C,
           types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,            main/pa_request.C, main/untaint.C, sql/pa_sql_driver.h,
           types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,            targets/cgi/parser3.C: introducing estimating
           types/pa_wcontext.h, types/pa_wwrapper.h: headers updated            String::cstr_bufsize, 0
   
         * src/: main/pa_request.C, types/pa_vhash.h: z          * src/: main/pa_pool.C, include/pa_pool.h: die in pool::fail
   
         * src/: include/core.h, include/pa_request.h, main/core.C,          * src/: targets/cgi/parser3.C, main/pa_pool.C: die in pool::fail
           main/main.dsp, main/pa_request.C: renamed AUTO: to MAIN:  
           * src/: main/execute.C, main/pa_pool.C, targets/cgi/parser3.C,
         * src/: include/pa_valiased.h, include/pa_value.h,            include/pa_pool.h: die in pool::fail
           include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,  
           include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,  2001-11-15  paf
           include/pa_vjunction.h, include/pa_vmframe.h,  
           include/pa_vobject.h, include/pa_vstring.h,          * src/: include/pa_exception.h, main/execute.C, main/main.dsp,
           include/pa_vunknown.h, include/pa_wcontext.h,            main/pa_exception.C, targets/cgi/parser3.C: exception with
           include/pa_wwrapper.h, main/compile.y, main/core.C,            dynamic buffer re-back now with counter
           main/main.dsp, main/pa_cframe.C, main/pa_request.C,  
           main/pa_value.C, main/pa_vclass.C, main/pa_wcontext.C,          * src/: include/pa_exception.h, main/pa_exception.C: exception with
           types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,            static buffer back
           types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,  
           types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,          * src/targets/cgi/parser3.C: std::
           types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,  
           types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,          * src/: classes/classes.awk, include/pa_config_auto.h.in,
           types/pa_wcontext.h, types/pa_wwrapper.h: splitted types from            include/pa_config_includes.h: setnewhandler check
           include/  
           * src/include/pa_config_auto.h.in: makes
 2001-03-10  paf  
           * src/targets/cgi/parser3.C: set_new_handler started
         * src/: include/core.h, include/pa_request.h, main/core.C,  
           main/pa_request.C: run+auto=run  2001-11-14  paf
   
         * src/: classes/root.C, include/pa_request.h: minor if junction bug          * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
             was wrong
         * src/: classes/_double.h, classes/_env.h, classes/_int.h,  
           classes/_root.h, classes/_string.h, classes/double.C,          * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
           classes/env.C, classes/int.C, classes/root.C, classes/string.C,            was wrong
           include/code.h, include/core.h, include/pa_array.h,  
           include/pa_common.h, include/pa_exception.h, include/pa_hash.h,          * src/main/pa_request.C: z
           include/pa_pool.h, include/pa_request.h, include/pa_stack.h,  
           include/pa_string.h, include/pa_table.h, include/pa_threads.h,          * src/: include/pa_common.h, main/pa_common.C: snprintf on buffer
           include/pa_types.h, include/pa_valiased.h, include/pa_value.h,            full returns win32 -1 solaris >buffer_size
           include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,  
           include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,            checked all that
           include/pa_vjunction.h, include/pa_vmframe.h,  
           include/pa_vobject.h, include/pa_vstring.h,          * src/classes/op.C: ^untaint{body} as-is default now
           include/pa_vunknown.h, include/pa_wcontext.h,  
           include/pa_wwrapper.h, main/compile.C, main/compile.y,          * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
           main/compile_tools.C, main/compile_tools.h, main/core.C,            types/pa_vstateless_class.h, types/pa_vstateless_object.h: merged
           main/execute.C, main/pa_array.C, main/pa_cframe.C,            with no_bad_constructors_try
           main/pa_common.C, main/pa_exception.C, main/pa_hash.C,  
           main/pa_pool.C, main/pa_request.C, main/pa_string.C,          * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
           main/pa_table.C, main/pa_value.C, main/pa_vclass.C,            types/pa_vstateless_class.h, types/pa_vstateless_object.h: fixed
           main/pa_wcontext.C: sources header            this: $bred[^string::length[]] $bred[^response::clear[]]
             $bred[^int::int[]]
         * src/main/pa_request.C: auto..  
             now VObject creation moved into overriden
         * src/: include/pa_request.h, main/compile.C, main/compile.y,            VClass::create_new_value, thus 0 from create_new_value means that
           main/pa_request.C: auto tree0            class has no ctors
   
         * src/: include/core.h, include/pa_request.h, main/compile.y,  2001-11-13  paf
           main/core.C, main/pa_request.C: names to core.C  
           * src/classes/classes.C: returned accedently removed if in foreach
         * src/: include/core.h, include/pa_common.h, include/pa_pool.h,            callbacks [when hash no-0-restructure]
           include/pa_request.h, main/core.C, main/execute.C,  
           main/pa_common.C, main/pa_request.C: root auto.p loaded  2001-11-12  paf
   
         * src/: include/code.h, include/pa_request.h, include/pa_vint.h,          * src/main/pa_pool.C: changed xdoc createXXX politics, now string
           include/pa_vjunction.h, include/pa_vstring.h, main/compile.y,            passed as-is to method, xalan makes & into &amp; itself
           main/compile_tools.C, main/compile_tools.h, main/execute.C:  
           optimized from OP_STRING+OP_WRITE to OP_STRING__WRITE          * src/classes/date.C: date.roll parser2 alg used
   
         * src/: include/pa_request.h, main/execute.C, main/pa_request.C:          * src/: classes/classes.C, classes/hash.C, classes/xdoc.C,
           @auto[] realised. auto.p scan togo            include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
             main/pa_dictionary.C, main/pa_hash.C,
         * src/: include/pa_request.h, main/execute.C: autocalc            main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C: hash
           code-junctions result now have names            now does not containt 0 values. put 0 actullay removes.  no check
             on 0 value in foreach now required
         * src/: classes/double.C, classes/int.C, classes/root.C,  
           classes/string.C, include/pa_request.h, include/pa_string.h,  2001-11-11  paf
           include/pa_wcontext.h, main/compile.y, main/execute.C,  
           main/pa_string.C, main/pa_wcontext.C: tainting 0          * src/sql/pa_sql_driver.h: removed extra constructor, doc
   
         * src/classes/env.C: env:file/line          * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: CRLF
   
         * src/: include/core.h, include/pa_array.h, include/pa_hash.h,          * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql
           include/pa_request.h, include/pa_value.h, include/pa_vcframe.h,            driver initialize not const
           include/pa_vdouble.h, include/pa_vint.h, include/pa_vstring.h,  
           include/pa_vunknown.h, include/pa_wcontext.h, main/compile.y,  2001-11-10  paf
           main/compile_tools.C, main/compile_tools.h, main/core.C,  
           main/execute.C, main/main.dsp, main/pa_cframe.C,          * src/main/pa_exec.C: doc
           main/pa_request.C, main/pa_wcontext.C: const fight finished  
   2001-11-09  paf
         * src/include/pa_vclass.h: const fight to go  
           * src/classes/: string.C, xdoc.C: xdoc::set{code} now untaints
         * src/: classes/_env.h, classes/env.C, classes/root.C,            param properly
           include/pa_request.h, include/pa_vclass.h, main/core.C,  
           main/main.dsp: env0          * src/classes/string.C: string.save now does untainting before
             saving
         * src/: classes/_double.h, classes/_int.h, classes/_root.h,  
           classes/_string.h, classes/double.C, classes/int.C,          * src/main/pa_common.C: line endings fixing fixed last piece[was
           classes/root.C, classes/string.C, include/pa_request.h,            still cstr oriented]
           include/pa_string.h, include/pa_types.h, include/pa_vcframe.h,  
           include/pa_wcontext.h, main/core.C, main/main.dsp,          * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
           main/pa_cframe.C, main/pa_string.C, main/pa_vclass.C,            line endings fixing got rid of cstr, now must work ok with post
           main/pa_wcontext.C: ^lang prepare0            multipart
   
 2001-03-09  paf          * src/types/pa_vform.C: line endings fixed at post / multipart /
             not file  also now
         * src/: include/pa_vmframe.h, main/compile.C, main/execute.C: expr  
           construct proper naming  2001-11-08  paf
   
         * src/: classes/_double.h, classes/_int.h, classes/_string.h,          * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
           classes/double.C, classes/int.C, classes/root.C,            include/pa_db_manager.h, include/pa_sql_driver_manager.h,
           classes/string.C, include/code.h, include/pa_value.h,            include/pa_stylesheet_manager.h, main/pa_charset_manager.C,
           include/pa_vbool.h, include/pa_vdouble.h, include/pa_vint.h,            main/pa_db_manager.C, main/pa_sql_driver_manager.C,
           include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,            main/pa_stylesheet_manager.C: restructured Cache manager to be
           main/compile.y, main/compile_tools.C, main/core.C,            simple parent, not second parent [gcc 2.96 strangly refused to
           main/execute.C, main/main.dsp: Int and Double classes with ^int[]            call virtual from second parent]
           and ^double[]. fixed expr type  
           * src/: include/pa_common.h, main/Makefile.am,
         * src/: classes/root.C, include/pa_request.h, main/execute.C:            targets/cgi/pa_pool.C: makes
           ^string.length[]  
           * src/: include/pa_request.h, main/pa_request.C,
 2001-03-08  paf            targets/cgi/parser3.C, targets/isapi/parser3isapi.C: apache
             'status' class enabler
         * src/include/pa_vmframe.h: fixed forgotten method_frame my check  
             <Location /parser-status.html> ParserStatusAllowed </Location>
         * src/: include/pa_vclass.h, include/pa_vstring.h,  
           include/pa_wcontext.h, main/compile.y, main/core.C,          * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
           main/execute.C, main/main.dsp: dead end: vstring can't be            include/pa_db_manager.h, include/pa_sql_driver_manager.h,
           derivated from vobject            include/pa_stylesheet_manager.h, main/main.dsp,
             main/pa_cache_managers.C, main/pa_charset_manager.C,
         * src/: include/pa_vclass.h, include/pa_vhash.h,            main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
           include/pa_vobject.h, include/pa_vstring.h, main/main.dsp: z            main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
             types/pa_vstatus.h: cache_managers, maybe-expiring every request
         * src/include/: pa_vclass.h, pa_vhash.h, pa_vobject.h: removes some            todo: apache 'status' class enabler
           remained clone conseqs  
   2001-11-05  paf
         * src/main/pa_vclass.C: that were ok... [vclass were out of vcs]  
           * src/main/: pa_db_connection.C, pa_db_manager.C: expiration from
         * src/main/pa_vclass.C: wow! vclass were out of vcs            debug to normal
   
         * src/: include/pa_bool.h, include/pa_double.h, include/pa_value.h,          * src/main/: pa_db_connection.C, pa_db_manager.C, pa_request.C:
           include/pa_vbool.h, include/pa_vclass.h, include/pa_vdouble.h,            hence i removed skipping 0 values in hash::for_each-es we need to
           include/pa_vhash.h, include/pa_vjunction.h, include/pa_vmframe.h,            check cleaned cache items manually. few more checks.
           include/pa_vobject.h, include/pa_vstring.h,  
           include/pa_vunknown.h, main/compile.y, main/compile_tools.C,            expiring to 0 time was wrong, changed to 'now' time
           main/execute.C: withoud cloning. didn't need it actually, params  
           got passed from out unnamed ewpool          * src/targets/cgi/parser3.C: read can return 0, that means sort of
             sig_pipe on freebsd [moko's experiments].   checked that in cgi,
         * src/: include/pa_vdouble.h, include/pa_vhash.h,            on apache already done :)
           include/pa_vjunction.h, include/pa_vobject.h,  
           include/pa_vunknown.h, main/compile.y: cloning dead end          * src/main/: pa_db_connection.C, pa_db_manager.C: hence i removed
             skipping 0 values in hash::for_each-es we need to check cleaned
         * src/: include/pa_bool.h, include/pa_double.h,            cache items manually
           include/pa_valiased.h, include/pa_value.h, include/pa_vbool.h,  
           include/pa_vclass.h, include/pa_vdouble.h, include/pa_vhash.h,          * src/main/: pa_db_connection.C, pa_db_table.C:
           include/pa_vjunction.h, include/pa_vmframe.h,            parser_multithreaded check was wrong
           include/pa_vobject.h, include/pa_vstring.h,  
           include/pa_vunknown.h, main/compile.y, main/compile_tools.C,          * src/: classes/classes.C, classes/classes.h, classes/date.C,
           main/execute.C, main/main.dsp, main/pa_value.C: value.cloning so            classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
           to give params proper names            classes/hashfile.C, classes/image.C, classes/int.C,
             classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
         * src/main/pa_wcontext.C: z            classes/string.C, classes/table.C, classes/void.C,
             classes/xdoc.C, classes/xnode.C, classes/xnode.h,
         * src/: include/pa_vmframe.h, main/execute.C: added names to            include/pa_array.h, include/pa_charset_connection.h,
           unknown values in get_element and unfilled params. removed wrong            include/pa_charset_manager.h, include/pa_common.h,
           name change in get_element            include/pa_config_fixed.h, include/pa_config_includes.h,
             include/pa_db_connection.h, include/pa_db_manager.h,
         * src/main/execute.C: z            include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
             include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
         * src/main/execute.C: fixed problems calling operators in            include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
           constructors            include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
             include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
         * src/: classes/root.C, include/pa_stack.h, main/execute.C:            include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
           detected problems calling operators in constructors            include/pa_stack.h, include/pa_string.h,
             include/pa_stylesheet_connection.h,
         * src/: classes/root.C, include/pa_request.h, main/execute.C:            include/pa_stylesheet_manager.h, include/pa_table.h,
           autocalc def to string            include/pa_threads.h, include/pa_types.h, main/compile.C,
             main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
         * src/: classes/root.C, include/pa_request.h, include/pa_value.h,            main/execute.C, main/pa_array.C, main/pa_charset_connection.C,
           include/pa_vbool.h, include/pa_wwrapper.h, main/execute.C: ^if 0            main/pa_charset_manager.C, main/pa_common.C,
             main/pa_db_connection.C, main/pa_db_manager.C,
         * src/classes/root.C: added root.c            main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
             main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
         * src/: include/pa_request.h, include/pa_value.h,            main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
           include/pa_vcframe.h, include/pa_vmframe.h,            main/pa_socks.C, main/pa_sql_driver_manager.C,
           include/pa_wcontext.h, main/compile.C, main/compile.y,            main/pa_status_provider.C, main/pa_string.C,
           main/core.C, main/execute.C, main/pa_cframe.C,            main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
           main/pa_wcontext.C: 'if' just compiled            sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
             targets/cgi/pa_threads.C, targets/cgi/parser3.C,
         * src/: include/pa_vbool.h, include/pa_vdouble.h,            targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
           include/pa_vjunction.h, include/pa_vmframe.h,            targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
           include/pa_vstring.h, include/pa_wcontext.h, main/execute.C,            targets/isapi/pool_storage.h, types/pa_valiased.C,
           main/pa_wcontext.C: z            types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
             types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
         * src/: include/pa_value.h, include/pa_vmframe.h, main/compile.y,            types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
           main/core.C, main/execute.C, main/main.dsp: z. detected probs            types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
           with parameter names  in operator methods            types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
             types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
         * src/main/compile.y: minor renamings in .y            types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
             types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
         * src/: include/pa_request.h, main/compile.C, main/compile.y,            types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
           main/core.C, main/main.dsp: introducing ROOT_CLASS.  it's default            types/pa_vstateless_class.C, types/pa_vstateless_class.h,
           @BASE.  changed 'RUN' assignment mech            types/pa_vstateless_object.h, types/pa_vstatus.h,
             types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.C,
         * src/main/execute.C: z            types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
             types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
         * src/: include/code.h, main/compile.y, main/compile_tools.C,            types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
           main/compile_tools.h, main/execute.C: made class: dynamic, not            $status:db fixed used not initialized in db_connection & db_table
           static. so to enable runtime ^use  
           * src/: include/pa_charset_connection.h, main/pa_charset_manager.C:
         * src/main/compile.y: minor grammar bug with OP_CODE__STORE_PARAM            $status:charset
   
         * src/: include/code.h, main/compile.y, main/compile_tools.C,          * src/: classes/xdoc.C, include/pa_db_connection.h,
           main/execute.C: joined 2 into one OP_CODE__STORE_PARAM            include/pa_stylesheet_connection.h,
             include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C,
         * src/main/execute.C: root root in code-junction            types/pa_vstatus.h: $status:stylesheet
   
 2001-03-07  paf          * src/: include/pa_charset_manager.h, include/pa_db_manager.h,
             include/pa_request.h, include/pa_sql_connection.h,
         * src/include/: pa_value.h, pa_vclass.h, pa_vhash.h, pa_vmframe.h,            include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
           pa_vobject.h, pa_wwrapper.h: const in Value.get_element            main/main.dsp, main/pa_charset_manager.C, main/pa_common.C,
             main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
         * src/: include/pa_stack.h, include/pa_value.h,            main/pa_sql_driver_manager.C, main/pa_status_provider.C,
           include/pa_vclass.h, include/pa_vhash.h, include/pa_vmframe.h,            main/pa_stylesheet_manager.C, types/pa_vstatus.h,
           include/pa_vobject.h, include/pa_wwrapper.h, main/execute.C:            types/pa_vxnode.C, types/types.dsp: started status parser class
           fixed rwcontext of {} params up  
   2001-11-01  paf
         * src/main/: compile.y, compile_tools.h: ^func(params)  
           * src/include/pa_config_auto.h.in: makes
         * src/main/compile.y: .y priorities syntax shaped up a bit  
           * src/main/pa_hash.C: removed old extra include
         * src/: include/pa_hash.h, include/pa_value.h, include/pa_vhash.h,  
           include/pa_vunknown.h, main/compile.y, main/execute.C,          * src/: classes/math.C, include/pa_common.h: HAVE_TRUNC HAVE_ROUND
           main/pa_hash.C: expr def in -f            checks [for hp, there are such in math.h]
   
         * src/main/: compile.y, execute.C: expr calls          * src/classes/op.C: ^for endless loop check strightened
   
         * src/main/: compile.y, execute.C, pa_string.C: bug in string.cmp          * src/: classes/hash.C, classes/op.C, main/execute.C: changed root
           fixed            behavior in native calls.  it left unchanged, so ^for ^foreach &
             co can use r.root to write their i & key,value there
         * src/main/compile.y: expr quoted code  
           * src/classes/op.C: detected for var storage bug, fixed.
         * src/main/: compile.y, execute.C: expr whitespace solved. added ""            todo:foreach
           support0  
           * src/: classes/hash.C, classes/xdoc.C, classes/xnode.C,
         * src/main/compile.y: expr string comparisons 0            include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
             types/pa_vhash.h, types/pa_vxnode.C: hash locking disabled
         * src/: include/pa_string.h, main/compile.y, main/execute.C,            changing of hash inside of foreach
           main/pa_string.C: just compiled lt&co  
           * src/: classes/hash.C, classes/hashfile.C, types/pa_vhashfile.C:
         * src/main/execute.C: ^var.menu{$field} problem detected. that            ^hashfile.foreach[key|value]{body}[[separator]|{separator}] prev
           $field not a $var.field            were hash.foreach
   
 2001-03-06  paf          * src/: classes/hash.C, classes/op.C, types/pa_vmethod_frame.h,
             types/pa_vstring.C, types/pa_vstring.h:
         * src/main/compile.y: .y expr visible-shorter            ^foreach[key|value]{body}[[separator]|{separator}]
   
         * src/: include/code.h, main/compile.y, main/execute.C: 1 problems          * src/: classes/hash.C, include/pa_hash.h, main/pa_hash.C,
           with skipping whitespace in yylex fixed 2 xors: # bitwise ##            types/pa_vcookie.C: ^hash.delete[key]
           logical  
   2001-10-31  paf
         * src/: include/pa_vstring.h, main/compile.y: problems with  
           skipping whitespace in yylex          * src/main/: compile.C, pa_common.C: completely empty file now
             considered "read", not ignored [not perfect trick used]
         * src/include/pa_vbool.h: forgot this  
           * src/main/pa_common.C: simplier common ifdefs
         * src/: include/code.h, main/compile.y, main/execute.C: without  
           string ops in expressions 0          * src/main/pa_common.C: typing bug in common - bad ifdeff
   
         * src/: include/pa_value.h, include/pa_vdouble.h,          * src/main/pa_db_connection.C: z
           include/pa_vstring.h, include/pa_vunknown.h, main/compile.y,  
           main/execute.C, main/main.dsp: !~          * src/main/: pa_db_connection.C, pa_sql_driver_manager.C:       //
             lockdetector flags
         * src/: include/pa_vcframe.h, include/pa_vclass.h,                    dbenv.lk_detect=DB_LOCK_RANDOM;
           include/pa_vdouble.h, include/pa_vhash.h, include/pa_vjunction.h,  
           include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,          * src/main/pa_sql_driver_manager.C: hiding passwords and addresses
           include/pa_vunknown.h, include/pa_wcontext.h,            from accidental show [imagine user forgot @exception]
           include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,  
           main/compile_tools.h, main/execute.C: +-*/          * src/classes/table.C: ^table.save[[nameless|+append;]path]
   
         * src/: include/pa_vdouble.h, main/compile.y, main/compile_tools.C,          * src/: classes/file.C, classes/image.C, classes/mail.C,
           main/compile_tools.h: grammar-1.1 $a(z) $a=0            classes/string.C, classes/xnode.C, include/pa_common.h,
             main/pa_common.C: ^string.save[[append;]path]
         * src/: include/pa_value.h, include/pa_vdouble.h, main/compile.y,  
           main/execute.C: expr grammar-1 2*2=4.000000 :)          * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
             main/execute.C: \ in expression: int divide 10/3=3
         * src/main/compile.y: expr grammar-1  
           * src/types/pa_vhashfile.h: hashfile  ^delete to do something only
         * src/main/compile.y: expr lexx1            inside of ^cache
   
         * src/main/: compile.y, execute.C, main.dsp: z          * src/: include/pa_threads.h, main/pa_db_connection.C,
             main/pa_db_table.C, targets/cgi/pa_threads.C,
         * src/: include/code.h, include/pa_valiased.h, include/pa_value.h,            targets/isapi/pa_threads.C: libdb DB_THREAD flag only when really
           include/pa_vdouble.h, include/pa_vstring.h, main/compile.y,            needed
           main/execute.C: expr lex0 exec-1  
   2001-10-30  paf
         * src/: include/code.h, main/compile.y, main/compile_tools.h: g  
           * src/: classes/classes.dsp, main/main.dsp,
 2001-02-26  paf            targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
             types/types.dsp: enabled debug incremental compile
         * src/main/compile.y: max_string in yyerror bug fix  
           * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
 2001-02-25  paf            form post data line endings not reformatted now.
   
         * src/: include/pa_value.h, include/pa_vmframe.h,          * src/types/: pa_vform.C, pa_vform.h: AppendFormEntry length param
           include/pa_wcontext.h, main/execute.C: VAliased3            now required [had bug when file= has no value]
   
         * src/include/: pa_value.h, pa_vmframe.h: VAliased2          * src/main/: pa_db_connection.C, pa_db_manager.C, pa_db_table.C,
             pa_exec.C, pa_request.C, pa_sql_driver_manager.C, pa_string.C:
         * src/main/execute.C: VAliased1            cstr(asis) default param removed
   
         * src/: include/pa_request.h, include/pa_value.h,          * src/classes/xdoc.C: rolled back {} in xdoc.createTextNode for now
           include/pa_vmframe.h, include/pa_wcontext.h, main/execute.C:  
           VAliased0          * src/classes/xdoc.C: rolled back {} in xdoc.createElement for now
   
         * src/: include/pa_pool.h, include/pa_request.h,          * src/include/pa_dir.h: LOAD_DIR fixed
           include/pa_value.h, include/pa_vclass.h, include/pa_vmframe.h,  
           include/pa_vobject.h, main/core.C, main/execute.C, main/main.dsp:          * src/types/pa_vform.C: VForm::AppendFormEntry {length convention
           VAliased just compiled            was broken} fix_line_breaks
   
         * src/: include/pa_pool.h, include/pa_value.h, include/pa_vclass.h,          * src/include/: pa_config_fixed.h, pa_pragma_pack_begin.h,
           include/pa_vobject.h, main/execute.C: alias dead end            pa_pragma_pack_end.h, pa_string.h, pa_types.h: String & Origin
             packed with #pragma pack
         * src/: include/pa_value.h, include/pa_vclass.h,  
           include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,          * src/include/pa_config_auto.h.in: pragma detection
           main/main.dsp: no not get fields into interm VFielded class.  
           fields & staticfields 1  2001-10-29  paf
   
         * src/: include/pa_vcframe.h, include/pa_vmframe.h,          * src/types/pa_wcontext.h: bitfield syntax stricter
           include/pa_vobject.h, include/pa_wcontext.h,  
           include/pa_wwrapper.h, main/core.C, main/execute.C,          * src/: classes/file.C, types/pa_vimage.C: image&file couple stack
           main/main.dsp: would now get fields into interm VFielded class            string hash.puts
   
         * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,          * src/include/pa_sql_connection.h: SQL_CONNECTION_FUNC_GUARDED name
           include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,  
           include/pa_wcontext.h, main/compile.y, main/core.C,          * src/include/pa_sql_connection.h: there were one wrong
           main/execute.C, main/main.dsp, main/pa_hash.C, main/pa_value.C,            SQL_CONNECTION_FUNC_GUARDED [failed]
           main/pa_wcontext.C: virtuals2  
           * src/targets/isapi/pa_pool.C: added isapi&apache real_malloc debug
         * src/main/compile.y: : 1            param.someday either ifdef or remove it
   
         * src/main/compile.y: rethought to $class:static.field.subfield          * src/targets/cgi/: pa_pool.C, parser3.C: removed debug defines
   
         * src/: include/pa_vclass.h, main/compile.y, main/execute.C:          * src/main/untaint.C: optimizing returned after debugging
           $class:element  
           * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
         * src/: include/pa_value.h, include/pa_vmframe.h,            main/untaint.C: memory hunging #pragma pack(1)
           include/pa_wwrapper.h, main/compile.y, main/execute.C,  
           main/pa_wcontext.C: before execute class calls rewrite            16 419 844 13 169 394
   
         * src/: include/pa_request.h, main/compile.C, main/core.C: default          * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
           name RUN, also alias            targets/cgi/pa_pool.C: String size_t replace to uint in proper
             places [todo:Array]
         * src/main/compile.y: escaping bug  
           * src/: main/execute.C, targets/cgi/pa_pool.C,
         * src/: include/pa_request.h, include/pa_value.h,            targets/cgi/parser3.dsp, types/pa_wcontext.h,
           include/pa_vobject.h, main/compile.y, main/compile_tools.h,            types/pa_wwrapper.h: debugging memory WContext flags to bits
           main/core.C, main/execute.C, main/pa_common.C: vobject1  
             total 5 652 652/158731 total 5 469 332/158731
         * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,  
           include/pa_vmframe.h, include/pa_vobject.h,          * src/: include/pa_array.h, main/pa_array.C: debugging memory
           include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,            Array:: without cache in get/put now
           main/compile_tools.h, main/execute.C: ^class:method() just  
           compiled            [Mon Oct 29 18:23:02 2001] total 5 796 092/158731 [Mon Oct 29
             18:25:27 2001] total 5 652 652/158731
 2001-02-24  paf  
           * src/: include/pa_string.h, main/pa_string.C,
         * src/main/main.dsp: no bison -d            targets/cgi/pa_pool.C: debugging memory String::fused_rows func
             now
         * src/main/: compile.y, compile_tools.h: use0 line no on 'undef  
           class' err msg wrong            [Mon Oct 29 17:55:45 2001] total 5917436/158731 [Mon Oct 29
             18:11:53 2001] total 5796092/158731
         * src/main/compile.y: z  
           * src/: classes/file.C, include/pa_hash.h, include/pa_string.h,
         * src/main/: compile.y, core.C: yylex need some @special lines adj            main/pa_globals.C, targets/cgi/pa_pool.C: debugging memory hash
             key ref now
         * src/: include/pa_request.h, include/pa_vclass.h, main/compile.C,  
           main/compile.y, main/compile_tools.h, main/core.C: modules0            [Mon Oct 29 16:01:17 2001] total 17050496/202647 [Mon Oct 29
             17:11:17 2001] total 16867948/202658
         * src/: include/pa_vclass.h, main/core.C: z  
           * src/: classes/file.C, classes/image.C, classes/string.C,
         * src/: include/pa_value.h, include/pa_vclass.h,            classes/xdoc.C, include/pa_pool.h, include/pa_string.h,
           include/pa_vobject.h, main/main.dsp: vobject00            main/execute.C, main/pa_array.C, main/pa_common.C,
             main/pa_hash.C, main/pa_sql_driver_manager.C, main/pa_string.C,
         * src/main/pa_array.C: minor bug in expanding very small arrays.            main/untaint.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C,
           60% from 1 were 0            types/pa_vcookie.C, types/pa_vstring.h: debuggging memory.
             string::as_int/double now usually uses stack, not heap [200K out
         * src/: include/pa_value.h, include/pa_wcontext.h,            of 17M :)] VString(String&) not copies reference [29M -> 17M]
           include/pa_wwrapper.h, main/execute.C, main/pa_value.C: it works  
           as bad as you've named it: wcontext.value() was not a perfect          * src/main/pa_sql_driver_manager.C: ping to have services [old
           idea            hiding bug]
   
         * src/main/execute.C: codeframe1          * src/Makefile.am: .am order
   
         * src/: include/pa_value.h, include/pa_vcframe.h,          * src/: include/pa_array.h, include/pa_charset_manager.h,
           include/pa_vclass.h, include/pa_vframe.h, include/pa_vhash.h,            include/pa_db_connection.h, include/pa_db_manager.h,
           include/pa_vjunction.h, include/pa_vmframe.h,            include/pa_db_table.h, include/pa_hash.h, include/pa_request.h,
           include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,            include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
           main/main.dsp, main/pa_cframe.C, main/pa_wcontext.C: codeframe            include/pa_threads.h, types/pa_valiased.h, types/pa_vhashfile.h,
           just compiled            types/pa_vstateless_class.h, types/pa_wcontext.h: gcc 3.0.1
             required "friend class"
         * src/: include/pa_vframe.h, main/compile.y: found junction  
           ideology @: ^x{$a()) must construct current wcontext element, so            ../include/pa_request.h:51: friend declaration requires
           smart wcontext handling needed            class-key, i.e. `friend    class Temp_lang'
   
         * src/main/compile.y: fixed grammar bugs in constructor/params          * src/: include/pa_exception.h, include/pa_sql_connection.h,
           klinch            main/pa_exception.C, main/pa_sql_driver_manager.C,
             sql/pa_sql_driver.h: sql driver impl changed in _throw part.
         * src/main/: compile.y, execute.C: fixed empty constructor  
           optimized empty case. failed on calls - produced empty string            the idea is to #1 jump to C++ some function to main body, where
           param            every function stack frame has exception unwind information and
             from there... #2 propagate_exception()
         * src/main/compile.y: fixed last \n macrotemplate strip bug  
   2001-10-28  paf
         * src/: include/code.h, include/pa_request.h, include/pa_value.h,  
           include/pa_vclass.h, include/pa_vframe.h, main/compile.y,          * src/main/pa_db_connection.C: removed old consts
           main/compile_tools.C, main/compile_tools.h, main/core.C,  
           main/execute.C: code junctions0. something wrong with last \n          * src/main/pa_db_connection.C: expire table [was accidently pasted
           macrotemplate strip            with wrong type/cast]
   
         * src/: include/pa_value.h, main/compile.C, main/core.C,          * src/main/: pa_db_connection.C, pa_db_table.C: exception
           main/pa_value.C: minor error reporting format beautifyings            translation
   
         * src/: include/pa_value.h, include/pa_vclass.h,          * src/: classes/Makefile.am, targets/cgi/Makefile.am: db makes.
           include/pa_vframe.h, main/core.C, main/execute.C,            remember to build DB2 with -fexceptions!!!
           main/pa_value.C: get_method RIP. junctions everywhere. call with  
           junctions0          * src/main/pa_db_table.C: DB_RMW defed
   
 2001-02-23  paf          * src/: include/pa_config_auto.h.in, include/pa_config_fixed.h,
             include/pa_db_connection.h, include/pa_db_manager.h,
         * src/include/: pa_value.h, pa_vclass.h, pa_vframe.h,            include/pa_db_table.h, main/pa_db_connection.C,
           pa_wwrapper.h: lara came, can't work, sorry :(            main/pa_db_table.C: db2 on linux with DB 2.4.14: (6/2/98)
   
         * src/main/: compile.y, execute.C, main.dsp: rethought some. before  2001-10-27  paf
           junction  
           * src/: classes/hashfile.C, include/pa_db_connection.h,
         * src/: include/pa_vframe.h, include/pa_vunknown.h,            include/pa_db_table.h, main/pa_db_connection.C,
           include/pa_wcontext.h, include/pa_wwrapper.h, main/core.C,            main/pa_db_manager.C, main/pa_db_table.C, main/pa_globals.C,
           main/execute.C, main/main.dsp, main/pa_value.C: call0            types/pa_vhashfile.C: DB2 ifdefs
   
         * src/: include/pa_hash.h, include/pa_value.h,          * src/: classes/Makefile.am, include/pa_config_fixed.h,
           include/pa_wcontext.h, main/core.C, main/execute.C,            main/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
           main/main.dsp, main/pa_hash.C: started call. store param, vframe            makes with DB2
           done  
           * src/: include/pa_config_auto.h.in, main/Makefile.am,
         * src/include/pa_wcontext.h: z            types/Makefile.am: makes db
   
         * src/main/: compile.y, compile_tools.C, compile_tools.h: fixed          * src/: main/pa_globals.C, targets/cgi/parser3.dsp,
           wrong grammar in complex constructor case            targets/isapi/parser3isapi.dsp: vc projects libdb ifdefed into
             globals.C
         * src/main/: compile.y, execute.C: empty constructor bug fixed  
           * src/: classes/hashfile.C, include/pa_db_connection.h,
         * src/main/execute.C: with result rwpool            include/pa_db_table.h, main/pa_db_connection.C,
             main/pa_db_table.C: ^hashfile.clear[]
         * src/: include/pa_value.h, main/core.C, main/execute.C,  
           main/main.dsp: value named          * src/classes/classes.awk: no $ in var names
   
         * src/: include/pa_value.h, include/pa_vstring.h, main/execute.C:          * src/main/: pa_db_connection.C, pa_db_manager.C: db expiration
           strign 2 value in 2 places in execute            connection&table [forgotten calls]
   
         * src/: include/pa_value.h, include/pa_wcontext.h, main/compile.y,  2001-10-26  paf
           main/execute.C, main/main.dsp, main/pa_array.C: auto VHash on  
           wcontext.put_element when wcontext fvalue==0          * src/main/pa_db_connection.C: db checkpoints
   
 2001-02-22  paf          * src/: include/pa_db_connection.h, main/pa_db_connection.C: db
             checkpoints
         * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,  
           include/pa_vhash.h, include/pa_vstring.h, include/pa_wcontext.h,          * src/classes/xdoc.C: xdoc createTextNode createElement UL_XML
           main/execute.C, main/main.dsp: auto VHash in pa.th.cre.at.e            default. but entities still reparsed. todo: tothink
   
         * src/: include/pa_wcontext.h, main/compile.y, main/execute.C:          * src/main/pa_db_connection.C: db recover mech 2
           erroreos checkout  
           * src/: classes/hashfile.C, include/pa_db_connection.h,
         * src/: include/pa_request.h, main/compile.y: $self.put(val)            include/pa_db_manager.h, include/pa_db_table.h,
             include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
         * src/: include/pa_array.h, main/compile.y, main/compile_tools.C,            main/pa_db_table.C, main/pa_hash.C, types/pa_vhashfile.C,
           main/compile_tools.h, main/pa_array.C: $self.get            types/pa_vhashfile.h: db connections & tables now cached at
             create time & multithreaded
         * src/main/: compile.C, compile.y, compile_tools.C: z  
           * src/: classes/xdoc.C, types/pa_vxdoc.h: transform2 for
         * src/main/compile.y: $: wasn't finished - $:sdf(sdf) troubled a            parsed_source
           bit. finished now.  
           * src/main/pa_db_connection.C: about to remove connection from
         * src/main/compile.y: $: finished            vhashfile
   
         * src/main/: compile.C, compile.y, execute.C: started : with $a.$:f          * src/: main/pa_db_table.C, classes/hashfile.C: db: child
             transaction commit/rollback responsibility left to parent [as it
         * src/: include/code.h, main/compile_tools.C, main/compile_tools.h,            sould - else there were a bug with double free]
           main/execute.C: OP_STRING better then some xxx _VALUE  
           * src/include/pa_db_table.h: db: child transaction commit/rollback
         * src/: include/code.h, include/pa_vstring.h, main/compile.y,            responsibility left to parent [as it sould - else there were a
           main/compile_tools.C, main/compile_tools.h, main/execute.C:            bug with double free]
           string to vstring it .y all  
   2001-10-25  paf
         * src/: include/pa_request.h, include/pa_stack.h,  
           include/pa_wcontext.h, main/execute.C: z about to vstring it .y          * src/: classes/hashfile.C, include/pa_common.h,
           all            include/pa_db_connection.h, include/pa_db_manager.h,
             main/main.dsp, main/pa_db_connection.C, main/pa_db_manager.C,
         * src/main/: compile.C, core.C, execute.C, pa_string.C: more            types/pa_vhashfile.C, types/pa_vhashfile.h,
           precise parse error line:col            include/pa_db_table.h, main/pa_db_table.C: started db_home
             [multiple, cached] todo: autorecover [tried, but not succeded,
         * src/: include/pa_pool.h, include/pa_vclass.h, main/core.C,            yet]
           main/pa_hash.C, main/pa_pool.C: TRY...  
           * src/include/pa_dir.h: ancient gpf on dir not found fixed
         * src/: include/pa_exception.h, include/pa_pool.h,  
           include/pa_request.h, include/pa_value.h, include/pa_wcontext.h,          * src/: include/pa_db_connection.h, main/pa_db_manager.C:
           main/compile.C, main/compile.y, main/compile_tools.C,            transaction parent passed
           main/core.C, main/pa_array.C, main/pa_exception.C,  
           main/pa_hash.C, main/pa_pool.C, main/pa_string.C,  2001-10-24  parser
           main/pa_table.C: removed exception from request  
           * src/classes/Makefile.am: makes
         * src/: include/pa_vstring.h, main/compile.C, main/core.C: added  
           some forgotten          * src/targets/: cgi/pool_storage.h, isapi/parser3isapi.C,
             isapi/pool_storage.h: pool_storage fixed
         * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,  
           include/pa_wcontext.h, main/compile.y, main/compile_tools.C,          * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C,
           main/compile_tools.h, main/execute.C, main/main.dsp: iiieeyys!            types/pa_vform.h: form fix_line_breaks
           get/put simple vars to VClass works0  
           * src/targets/cgi/pool_storage.h: makes
         * src/: include/pa_array.h, include/pa_wcontext.h,  
           main/pa_string.C: in process, but found that exceptions are too          * src/: classes/Makefile.am, targets/cgi/Makefile.am,
           global            targets/cgi/pool_storage.h: makes
   
         * src/: include/code.h, include/pa_string.h, include/pa_value.h,          * src/sql/pa_sql_driver.h: version
           include/pa_vclass.h, include/pa_wcontext.h, main/compile.y,  
           main/execute.C, main/pa_string.C: write_value write_string 0 it          * src/: include/pa_common.h, main/Makefile.am, main/pa_common.C,
           seems wcontext must write strings regardles of fvalue!=0            types/pa_vform.C, types/pa_vform.h: .am
   
 2001-02-21  paf          * src/main/: pa_db_connection.C, pa_db_manager.C: hashfile setted
             this: DB_RMW Acquire write locks instead of read locks when doing
         * src/main/execute.C: tired :)            the retrieval. Setting this flag may decrease the likelihood of
             deadlock during a read-modify-write cycle by immediately
         * src/main/: compile.C, compile.y, execute.C: store0            acquiring the write lock during the read part of the cycle so
             that another thread of control acquiring a read lock for the same
         * src/: include/compile.h, include/execute.h, include/pa_array.h,            item, in its own read-modify-write cycle, will not result in
           include/pa_request.h, include/pa_stack.h, include/pa_vclass.h,            deadlock
           include/pa_wcontext.h, main/compile.C, main/compile.y,  
           main/execute.C, main/main.dsp, main/pa_array.C,          * src/targets/isapi/parser3isapi.dsp: doc
           main/pa_request.C: get put -1 [just compiled]  
           * src/: classes/hashfile.C, types/pa_vhashfile.h: hashfile 1
         * src/: include/core.h, include/pa_context.h, include/pa_request.h,  
           include/pa_vclass.h, include/pa_wcontext.h, main/core.C,          * src/: classes/hashfile.C, include/pa_request.h: hashfile.cache 0
           main/main.dsp, main/pa_request.C: request core methods0  
           * src/: classes/hashfile.C, include/pa_db_connection.h,
         * src/: include/compile.h, include/pa_array.h, main/compile.C,            main/pa_db_connection.C: hashfile expired deleted from db when
           main/compile.y, main/execute.C: MAIN_METHOD_NAME ready to write            get & iterate
           execute  
           * src/: main/pa_db_connection.C, types/pa_vhashfile.C: hashfile
         * src/: include/pa_exception.h, include/pa_value.h, main/compile.C,            expiring 1
           main/compile.y, main/compile_tools.C, main/compile_tools.h: .y  
           methods and one_big_piece. now compile returns array<method*>          * src/types/: pa_vhashfile.C, pa_vhashfile.h: hashfile expiring 0
   
         * src/main/compile.y: more straightforward yylex[end]          * src/: main/pa_db_connection.C, types/pa_vhashfile.C:
             db_connection not bothers with key when not returning expired
         * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:            data
           string.operator==(char*)  
           * src/: include/pa_db_connection.h, main/pa_db_connection.C,
         * src/: include/execute.h, include/pa_array.h, include/pa_value.h,            types/pa_vhashfile.C: db_cursor constructor public now
           main/execute.C, main/pa_array.C: after array.const get wonders  
           * src/: include/pa_db_connection.h, main/pa_db_connection.C,
         * src/include/: compile.h, pa_context.h, pa_hash.h, pa_request.h,            types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile data
           pa_string.h, pa_value.h: struck with const array.gets            stamped, todo: put_element analize
   
         * src/main/: execute.C: z          * src/: include/pa_db_connection.h, include/pa_string.h,
             main/pa_db_connection.C, main/pa_string.C: hashfile pieced
         * src/main/: compile.y, execute.C: z            serialize. todo stamp
   
         * src/main/: compile.C, compile.y, compile_tools.h: error  2001-10-23  parser
           processing in eval & yyerror so it wouldn't cause memleaks.  
           * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
         * src/main/: compile.C, compile.y: failed to add absolute precies            classes/image.C, classes/mail.C, classes/response.C,
           parse error positions. leaving RIGHTMOST position as            classes/string.C, classes/table.C, classes/xdoc.C,
           @file[line:col]            include/pa_config_fixed.h, include/pa_db_connection.h,
             main/pa_common.C, main/pa_db_connection.C, main/pa_request.C,
         * src/: include/compile.h, main/compile.C, main/compile.y,            types/pa_value.h, types/pa_vcookie.C, types/pa_vhash.h,
           main/compile_tools.h: line numbers needed. would add them to .y            types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vresponse.h,
           now internally. externally it's not as precise as needed            types/pa_vtable.C: ^hashfile.hash[]
   
         * src/: include/code.h, include/pa_types.h, main/compile.C,          * src/: classes/hashfile.C, classes/xdoc.C,
           main/compile.y, main/compile_tools.C, main/compile_tools.h,            include/pa_config_fixed.h, main/pa_db_manager.C,
           main/execute.C, main/main.dsp: .y to c++ hierarchy output fix.            main/pa_globals.C: ifdefs so it compiled without db
           compiler works ok  
           * src/: classes/hashfile.C, include/pa_db_connection.h,
 2001-02-20  paf            include/pa_db_manager.h, main/pa_db_connection.C,
             main/pa_db_manager.C, types/pa_vhashfile.h:
         * src/main/: compile.C, compile.y, compile_tools.C,            ^hashfile.transaction{code} ^hashfile:clear[filename]
           compile_tools.h, execute.C, main.dsp: nestage probs, eof yylex            ^hashfile.delete[key]
           not perfect  
   2001-10-22  parser
         * src/: include/code.h, include/compile.h, include/execute.h,  
           include/pa_array.h, include/pa_common.h, include/pa_pool.h,          * src/targets/: cgi/pa_pool.C, cgi/parser3.C, cgi/parser3.dsp,
           include/pa_string.h, include/pa_table.h, include/pa_types.h,            cgi/pool_storage.h, isapi/pool_storage.h: cgi += pool cleanups
           main/compile.C, main/compile.y, main/compile_tools.C,  
           main/compile_tools.h, main/core.C, main/execute.C, main/main.dsp,          * src/: classes/classes.dsp, classes/hashfile.C, classes/xdoc.C,
           main/pa_array.C, main/pa_common.C, main/pa_hash.C,            classes/xnode.C, include/pa_charset_connection.h,
           main/pa_string.C, main/pa_table.C: bison[yacc] first time            include/pa_db_connection.h, include/pa_db_manager.h,
           compiled.  execute=dump for now            include/pa_exception.h, include/pa_sapi.h,
             include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
         * src/main/core.C: core rewrite using yacc investigations now will            include/pa_stylesheet_connection.h,
           be compile[yacc]/execute[opcodes]            include/pa_stylesheet_manager.h,
             include/pa_xslt_stylesheet_manager.h, main/main.dsp,
 2001-02-15  paf            main/pa_db_connection.C, main/pa_db_manager.C,
             main/pa_exception.C, main/pa_globals.C, main/pa_pool.C,
         * src/: include/pa_value.h, main/core.C: maybe a-la yacc those ifs            main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
           rewrite as turing machine? for it seems it would be it's too many            main/pa_xslt_stylesheet_manager.C, targets/cgi/parser3.C,
           ifs with this syntax now            targets/isapi/parser3isapi.C, types/pa_vhashfile.C,
             types/pa_vhashfile.h, types/pa_vxdoc.C, types/pa_vxnode.C,
 2001-02-14  paf            types/types.dsp: hashfile 0
   
         * src/main/core.C: get_params 1          * src/types/pa_vhashfile.C: z
   
         * src/main/core.C: get_params figured ^menu[UNEVALUATED unthinked          * src/: classes/classes.dsp, classes/hashfile.C,
           :( ]            include/pa_config_fixed.h, main/execute.C,
             targets/cgi/parser3.dsp, types/pa_vhashfile.C,
         * src/main/core.C: varios breaks            types/pa_vhashfile.h, types/types.dsp: hashfile -100
   
         * src/main/core.C: get names 3          * src/targets/isapi/parser3isapi.C: SEH minor ifdef changes
   
         * src/main/core.C: get names 2          * src/: include/pa_exception.h, include/pa_request.h,
             main/execute.C, main/pa_exception.C, main/pa_request.C,
         * src/main/core.C: get names 1            targets/cgi/parser3.C, targets/cgi/parser3.dsp,
             types/pa_vclass.h, types/pa_vobject.h: stack backtrace
         * src/: include/pa_string.h, main/core.C, main/pa_string.C: get  
           names 0  2001-10-19  parser
   
         * src/: include/pa_value.h, main/core.C, main/pa_string.C: process          * src/include/pa_pool.h: header
           text repassing2 operator static vars  
           * src/main/pa_pool.C: auto compiled on gcc
         * src/: include/pa_context.h, include/pa_string.h, main/core.C,  
           main/pa_string.C: process text repassing          * src/classes/image.C: comment
   
         * src/: include/pa_context.h, include/pa_value.h, main/core.C:          * src/: include/pa_pool.h, main/pa_common.C: makes
           module:calls changes  
           * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
 2001-02-13  paf            types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
             types/pa_vxnode.h: xnode clone got freed
         * src/: include/pa_context.h, include/pa_value.h, main/core.C:  
           ^class:calls[] started          * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
             include/pa_types.h, main/pa_pool.C: first c++ exceptions result:
         * src/: include/pa_value.h, main/core.C: z            can free up xalandomstring resulting from pool::transcode
   
         * src/main/core.C: operators : and self. prefixes          * src/: classes/Makefile.am, classes/xdoc.C, classes/xnode.C,
             include/pa_config_fixed.h, include/pa_exception.h,
         * src/main/core.C: z            include/pa_stylesheet_connection.h, main/pa_charset_connection.C,
             main/pa_exception.C, main/pa_pool.C, types/pa_vxdoc.C,
         * src/: include/pa_string.h, main/pa_string.C: String_iterator            types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: switched
           tested            to c++ exceptions 1xml configure fixed to exclude xalan-patch
             from non-xml compile
         * src/: include/pa_string.h, main/pa_string.C: String_iterator  
           optimized          * src/main/pa_request.C: pool:: context - get_context
   
         * src/main/pa_string.C: String_iterator::skip_to optimized a bit.          * src/: classes/classes.h, classes/date.C, classes/double.C,
           would change privates to better support optimization            classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
             classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
         * src/: include/pa_string.h, main/pa_string.C:            classes/string.C, classes/table.C, classes/void.C,
           String_iterator::skip_to todo:optimize            include/pa_config_fixed.h, include/pa_exception.h,
             include/pa_pool.h, include/pa_request.h, include/pa_types.h,
 2001-02-12  paf            main/compile.C, main/compile_tools.C, main/execute.C,
             main/pa_array.C, main/pa_common.C, main/pa_dictionary.C,
         * src/: include/pa_string.h, main/core.C, main/pa_string.C: started            main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
           String_iterator            main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
             main/pa_string.C, main/pa_table.C, main/untaint.C,
         * src/: include/pa_context.h, include/pa_value.h, main/core.C: some            targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
           comments            types/pa_value.h, types/pa_vbool.h, types/pa_vdouble.h,
             types/pa_vfile.h, types/pa_vform.C, types/pa_vhash.h,
         * src/: include/pa_context.h, include/pa_value.h, main/core.C: get            types/pa_vint.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
           self/methodref joined            types/pa_vstateless_class.h, types/pa_vtable.C,
             types/pa_wcontext.C, types/pa_wwrapper.h: switched to c++
 2001-02-11  paf            exceptions 0
   
         * src/: include/pa_context.h, include/pa_value.h, main/core.C,          * src/classes/classes.awk: $ removed
           main/main.dsp: core started.  core.C, context&value .h  
   2001-10-18  parser
         * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,  
           include/pa_string.h, main/main.dsp, main/pa_array.C,          * src/types/pa_vcookie.C: cookie:CLASS
           main/pa_hash.C, main/pa_pool.C, main/pa_string.C: :pooled  
           * src/main/main.dsp: project
 2001-01-30  paf  
           * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C: vxdoc
         * src/: Makefile.am, main/Makefile.am, targets/Makefile.am: .am            set_document & ctor question "who owns document" solved
           comments  
           * src/: classes/xdoc.C, main/pa_pool.C: extra free removed
         * src/: include/pa_pool.h, main/Makefile.am, main/main.dsp,  
           main/pa_pool.C: moved pa_pool.C to be target specific          * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
             main/pa_pool.C: encoding in dom creating funcs
         * src/: include/pa_exception.h, include/pa_pool.h,  
           include/pa_table.h, main/pa_exception.C, main/pa_table.C: minor *          * src/: classes/xdoc.C, types/pa_vxdoc.h: dom created by create can
           to & changes            be transformed now
   
         * src/: include/pa_exception.h, include/pa_pool.h,          * src/classes/xdoc.C: dom created by create can be transformed now
           include/pa_request.h, include/pa_table.h, main/pa_array.C,  
           main/pa_exception.C, main/pa_pool.C, main/pa_table.C: error          * src/classes/xdoc.C: z
           re-associated. that's much better even removed 'die' necessety  
           * src/classes/xdoc.C: comment
         * src/: include/pa_error.h, include/pa_exception.h,  
           include/pa_pool.h, include/pa_request.h, main/main.dsp,          * src/: classes/xdoc.C, classes/xnode.C, main/compile.tab.C: xdoc
           main/pa_error.C, main/pa_exception.C, main/pa_pool.C,            create now uses XercesDocumentBridge, appendChild&co now works
           targets/Makefile.am: lowered targets/parser into subdir, added  
           parser_Pool(Pool) failed to add. would think..          * src/include/pa_stylesheet_connection.h: prev stylesheet destroyed
             @ recompile
         * src/: include/pa_error.h, include/pa_hash.h, include/pa_string.h,  
           include/pa_table.h, main/pa_error.C, main/pa_hash.C,          * src/main/: compile.tab.C, compile.y, pa_request.C: ^: no colon in
           main/pa_string.C, main/pa_table.C: Table more like C++ style            $origin @exception[
           hence lots of 'const'  
           * src/classes/: xdoc.C, xnode.C: xdoc::create[] now. and all dom
         * src/: include/pa_error.h, include/pa_request.h,            tag names forced to XML lang
           include/pa_string.h, include/pa_table.h, main/pa_error.C,  
           main/pa_table.C: Error fixed          * src/: classes/classes.dsp, classes/xdoc.C, types/types.dsp: fiew
             leechy-found bugs in code&doc fixed
 2001-01-29  paf  
   2001-10-17  parser
         * src/: include/pa_array.h, include/pa_common.h,  
           include/pa_error.h, include/pa_hash.h, include/pa_pool.h,          * src/: classes/classes.dsp, classes/string.C, main/pa_string.C,
           include/pa_request.h, include/pa_string.h, include/pa_table.h,            types/pa_vxnode.h, types/types.dsp: string::mid fixed, string.mid
           main/Makefile.am, main/pa_array.C, main/pa_common.C,            n functionality preserved
           main/pa_error.C, main/pa_hash.C, main/pa_table.C: added forgotten  
           * src/types/pa_vimage.h: removed unused vimage::save
         * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,  
           include/pa_string.h, include/pa_table.h, include/pa_types.h,  2001-10-16  parser
           main/Makefile.am, main/main.dsp, main/pa_array.C, main/pa_hash.C,  
           main/pa_string.C, main/pa_table.C: Request Error Table          * src/: classes/string.C, main/pa_string.C: $string.mid(p[;n])
   
         * src/: include/pa_pool.h, main/pa_array.C: tested - decision "no          * src/classes/: xnode.C: removed few dom returns & changed op.txt
           templates"  
           * src/types/: pa_vhash.h, pa_vtable.h: hash can be used as boolean
         * src/: include/pa_array.h, include/pa_pool.h, main/Makefile.am,  
           main/main.dsp, main/pa_array.C: templates failed no template          * src/classes/image.C: image.copy tolerance
           specializations [VC6], no library auto instantation [VC6, GNU c++  
           2.95.2-6 from latest cygwin]          * src/classes/image.C: ::CopyResampled made gd2beta+my hands, very
             ineffective, but works for small paleted image
         * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,  
           include/pa_string.h, include/pa_table.h, include/pa_types.h,          * src/types/pa_vimage.C: comment
           main/main.dsp, main/pa_array.C, main/pa_string.C,  
           main/pa_table.C: Table started would test template Array now          * src/classes/image.C: gd size/resize bugfix
   
         * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:          * src/: classes/classes.dsp, main/main.dsp,
           String originating            targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
             types/types.dsp: ident >nul 2>&1
         * src/: include/pa_hash.h, include/pa_pool.h, include/pa_threads.h,  
           main/pa_hash.C: made local Hash-es not thread safe=quicker by          * src/main/pa_common.C: \r\n -> \n   DOS \r -> \n Macintosh on all
           SYNCHRONIZED(thread_safe)            systems
   
         * src/include/: pa_array.h, pa_hash.h, pa_string.h: moved .h public          * src/: classes/image.C, types/pa_vimage.h: ^image.copy[source](src
           parts to top            x;src y;src w;src h;dst x;dst y[;dest w[;dest h]])
   
         * src/: include/pa_hash.h, include/pa_threads.h, main/pa_hash.C,  2001-10-15  parser
           main/pa_threads.C: decided on one global_mutex, like PHP as I can  
           see: needed only in global Hash now, made Hash:: put/get          * src/main/execute.C: z
           SYNCHRONIZED  
           * src/classes/: xdoc.C:     !::create{qualifiedName}
         * src/: include/pa_hash.h, include/pa_threads.h, main/main.dsp,  
           main/pa_threads.C: added pa_threads          * src/types/pa_vxnode.C:     document_type_node.
                     !readonly attribute DOMString name
           Mutex                !notation_node.
                     !readonly attribute DOMString publicId
         * src/include/pa_hash.h: some comments                    !readonly attribute DOMString systemId
   
         * src/: main/pa_array.C, include/pa_array.h, include/pa_pool.h:          * src/types/: pa_vcode_frame.h, pa_wcontext.C: code_frame fixed -
           Array& operator += (Array& src)            ::write badly passed string too transparently [failed to
             intercept it]
         * src/main/pa_array.C: expand not convinient, would rewrite  
           * src/: classes/xdoc.C, classes/xnode.C, include/pa_config_fixed.h,
         * src/: include/pa_array.h, main/pa_array.C: Array::operator +=            include/pa_request.h, main/pa_sql_driver_manager.C,
           (Array& src)            types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
             types/pa_vxnode.h: DOM1 major addtion, only few
           rethought, would change now            attributes/methods left
   
 2001-01-27  paf  2001-10-13  parser
   
         * src/: include/pa_array.h, main/pa_array.C: array [] with chunk          * src/: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
           caching            targets/isapi/parser3isapi.C: isapi&cgi couple non-pooled mallocs
             in main handler
         * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,  
           include/pa_string.h, main/pa_array.C, main/pa_string.C: array          * src/targets/isapi/pool_storage.h: isapi pool storage reverse
           cache rethought to chunk caching            cleanups & frees order
   
         * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,          * src/types/pa_vcode_frame.h: couple comments
           include/pa_string.h, main/main.dsp, main/pa_array.C,  
           main/pa_hash.C, main/pa_string.C: Array 0          * src/: main/execute.C, types/pa_vcode_frame.h: vcodeframe made
             transparent enough to handle hash if creation&passing
         * src/main/pa_string.C: String::operator ==  
           * src/: include/pa_config_fixed.h, main/execute.C,
         * src/main/pa_hash.C: String(&String)            main/pa_exception.C: noticed that vcodeframe not transparent
             enough, would change now
         * src/main/pa_hash.C: added pa_hash.C [forgotten]  
   2001-10-12  parser
         * src/: include/pa_hash.h, include/pa_string.h, include/pa_types.h,  
           main/main.dsp, main/pa_string.C: uint, and added pa_types &          * src/targets/isapi/parser3isapi.C: xalan&xerces multithread bug
           pa_hash[forgotten]            fixed. initialization&free on each thread!
   
 2001-01-26  paf          * src/classes/: double.C, int.C, string.C: sql{}[$.default[({})]]
             handling changed: now type of default param analized always, not
         * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:            only at problem time, thus helping early problem spotting
           removed templates [vc++ suxx]  
           * src/: classes/classes.dsp, classes/xdoc.C, main/compile.tab.C,
         * src/: include/pa_pool.h, include/pa_string.h, main/main.dsp,            main/main.dsp, main/pa_globals.C, targets/cgi/parser3.C,
           main/pa_pool.C, main/pa_string.C: templates in VC++ suxx.            targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
             targets/isapi/parser3isapi.dsp, types/types.dsp: xalan&xerces
         * src/include/: pa_pool.h, pa_string.h: pa_pool split            multithread bug fixed. initialization&free on each thread!
   
         * src/main/: main.dsp, pa_string.C: $Id$ check  2001-10-11  parser
   
         * src/: main/pa_pool.C, main/pa_string.C, include/pa_pool.h: $Id$          * src/classes/xnode.C: xnode.selectSingle now
           check  
           * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
         * src/: include/pa_pool.h, main/pa_string.C: String prealloc &            include/pa_pool.h, include/pa_stylesheet_connection.h,
           dynamic row_count            main/pa_exception.C, main/pa_pool.C: moved xslt exceptions
             convertors out of Pool into Exception
         * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,  
           main/main.dsp, main/pa_pool.C, main/pa_string.C,          * src/main/pa_string.C: const
           targets/Makefile.am: Initial revision  
           * src/: include/pa_string.h, main/pa_string.C: restructured string:
         * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,            linked pieces of same language together prior to String::replace
           main/main.dsp, main/pa_pool.C, main/pa_string.C,  
           targets/Makefile.am: creating parser3 module          * src/classes/hash.C:     !^hash.add[addme]
                 !^hash.sub[subme]
                 !^a.union[b] = new
                 !^a.intersection[b] = new
                 !^a.intersects[b] = bool
   
           * src/classes/hash.C:     !^hash::append[append_from]
   
           * src/: classes/hash.C, types/pa_vhash.h:
             !^hash::create[[copy_from]]
   
           * src/: classes/string.C, classes/table.C, include/pa_globals.h,
             include/pa_string.h, main/pa_globals.C, main/pa_string.C,
             main/untaint.C, types/pa_vvoid.h: untaint lang origins table
             fixed.  got rid of empty_string, which caused errors - it hasnt
             exception but somebody[value.bark] tried to throw it on it's pool
   
           * src/include/pa_config_auto.h.in: makes
   
   2001-10-10  parser
   
           * src/: classes/op.C, main/compile.tab.C: ^error[msg]
   
           * src/main/: compile.tab.C, compile.y: ^a[
   
             @next_method  << now unclosed ] would be reported here
   
           * src/main/: compile.tab.C, compile.y: ^a[^b] more informative
             compile error
   
   2001-10-09  parser
   
           * src/: classes/Makefile.am, main/Makefile.am,
             targets/cgi/Makefile.am, types/Makefile.am: makes
   
           * src/classes/Makefile.am: makes
   
           * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: xml transform
             win32 errors intercepted [xalan transformer patched and
             incorporated]
   
           * src/: classes/classes.dsp, classes/xdoc.C,
             include/pa_stylesheet_connection.h, main/main.dsp,
             targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
             types/pa_vxdoc.h, types/pa_vxnode.h, types/types.dsp: xalan
             patches starting
   
           * src/classes/: string.C, table.C: ^string.save[file]
   
           * src/classes/: date.C, table.C: calendar moved to date
   
           * src/classes/: op.C, table.C: table.hash[key field;value field(s)
             string/table]  now
   
           * src/classes/: op.C, table.C: z
   
           * src/: classes/op.C, classes/table.C, types/pa_vfile.h,
             types/pa_vimage.h, types/pa_vjunction.h, types/pa_vxdoc.h,
             types/pa_vxnode.h: table:menu & op for delims made allowed not to
             be code [be string..]
   
           * src/classes/: double.C, file.C, image.C, int.C, op.C, string.C,
             table.C: lots of
             params->as_int/double/as_string/as_junction/as_no_junction
             messages added
   
   2001-10-08  parser
   
           * src/: classes/date.C, classes/image.C, classes/string.C,
             classes/table.C, classes/void.C, include/pa_request.h:
             params->as_int/double message added
   
           * src/classes/image.C: image:circle [and round arc] uses Bresenham
   
           * src/: classes/image.C, types/pa_vcookie.C, types/pa_vimage.C:
             image:sector removed image:html internal "line-*" attribs
   
           * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
             types/pa_vcookie.C: cookie urlencoded [netscape doc reread]
   
           * src/types/pa_vcookie.C: removing cookie made more netscape-like
             way
   
           * src/: classes/file.C, classes/form.C, main/pa_common.C,
             main/untaint.C: header untainting to UL_HTTP_HEADER,
             UL_MAIL_HEADER made nonforced [only tainted pieces]
   
           * src/: include/pa_common.h, main/pa_common.C, main/untaint.C,
             targets/cgi/parser3.C, targets/isapi/parser3isapi.C: remove_crlf
             @ SAPI::log
   
           * src/main/untaint.C: \r to ' ' in origins mode
   
           * src/classes/xdoc.C: xdoc:load exceptions intercepted [like in
             set]
   
           * src/: classes/xdoc.C, include/pa_config_fixed.h,
             main/compile.tab.C, types/pa_vxdoc.h: parsedSource produced by
             nonstandard liaison freed up
   
   2001-10-07  parser
   
           * src/: include/pa_config_fixed.h, main/compile.tab.C: restored
             project
   
   2001-10-05  parser
   
           * src/: classes/xdoc.C, include/pa_pool.h, main/main.dsp,
             main/pa_pool.C: changed xdoc:set to prevent SAXParseException
             from outputing to cerr.  lots of "todos"
   
           * src/main/untaint.C: http_header tainting more gentle with
             enquoting now
   
           * src/: classes/xdoc.C, include/pa_dictionary.h, main/main.dsp,
             main/pa_dictionary.C, main/pa_string.C, types/pa_vxdoc.h: started
             xml errorhandler.  fixed string.replace a little, read @test
   
           * src/main/pa_string.C: found replace bug - first_that_starts(char
             *) does not have limit, and looks further eos, fixing....
   
           * src/doc/: doxygen.cfg, html2chm.cmd, sources2html.cmd: paths
   
           * src/: classes/xdoc.C, main/compile.tab.C: xdoc.transform now
   
           * src/main/: pa_charset_connection.C: ctype another mem clear
             bugfix
   
           * src/main/: compile.tab.C, compile.y: disabled ^literals in names
             $result[^[$p^]z] now works fine
   
           * src/: include/pa_hash.h, main/pa_hash.C: Hash::size() calculated
             wrong. fixed it
   
           * src/main/pa_charset_connection.C: unicode zero pair at the beging
             of totable appered to be vital
   
   2001-10-04  parser
   
           * src/classes/image.C: ^image.length[text]
   
   2001-10-03  parser
   
           * src/main/pa_request.C: DEFAULT...charset was ignored when !XML
   
           * src/main/pa_request.C: restored pcre defaulting in request
             [mindlessly "optimized" yesterday] comment left
   
   2001-10-02  parser
   
           * src/: main/pa_charset_manager.C,
             include/pa_stylesheet_connection.h: forgot non-xml pool.*charset
             needed
   
           * src/: include/pa_pool.h, main/pa_pool.C, types/pa_vresponse.h:
             forgot non-xml pool.*charset needed
   
           * src/classes/table.C: # config comments fixed
   
           * src/: classes/table.C, main/pa_charset_connection.C: table:load &
             charset_connection #comment now
   
           * src/: classes/classes.dsp, types/types.dsp: release projects
             options fixed to use release msvcrt lib
   
           * src/main/pa_charset_connection.C: pcre tables now const inside
             removed default - pcre handles that internally fixed bug on
             not-cleaning tables [previously was calloced, now member]
   
           * src/: include/pa_request.h, main/pa_charset_connection.C,
             main/pa_request.C, types/pa_vstring.h: pcre tables now const
             inside removed default - pcre handles that internally fixed bug
             on not-cleaning tables [previously was calloced, now member]
   
           * src/: include/pa_config_fixed.h, main/pa_charset_connection.C:
             tested charset reload on file change @ apache version = OK tested
             freeing up prev encoding on adding new = OK
   
   2001-10-01  parser
   
           * src/main/pa_charset_connection.C: removed entitify external hack
             [internal installed]
   
           * src/main/Makefile.am: makes+removed dtd
   
           * src/: include/pa_charset_connection.h,
             include/pa_charset_manager.h,
             include/pa_xslt_stylesheet_manager.h, main/main.dsp,
             main/pa_charset_connection.C, main/pa_charset_manager.C,
             main/pa_request.C: charset loading & caching mech 0
   
           * src/: include/pa_stylesheet_connection.h,
             include/pa_xslt_stylesheet_manager.h, main/main.dsp,
             main/pa_globals.C, main/pa_request.C: would make charset loading
             & caching mech now
   
   2001-09-30  parser
   
           * src/main/pa_request.C: forgot to fill toTable
   
           * src/: include/pa_config_fixed.h, main/pa_request.C: started
             hack_s_maximumCharacterValues to XALAN_HACK_DIGITAL_ENTITIES but
             failed on win32 for now..
   
           * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
             now charsets table configuration variable is: CHARSETS
   
           * src/: classes/xdoc.C, include/pa_request.h, main/pa_request.C:
             ctype with unicode 1. todo: no &#1055; entities on output somehow
   
           * src/: classes/file.C, classes/op.C, classes/string.C,
             include/pa_request.h, main/pa_request.C: started ctype with
             unicode values
   
   2001-09-28  parser
   
           * src/: main/pa_request.C, classes/mail.C, classes/op.C,
             classes/xdoc.C, include/pa_stylesheet_connection.h: letter body
             string passed AS-IS now
   
           * src/classes/: xdoc.C, xnode.C: xdoc addencoding works! invented a
             way of user-configuring... todo: implement
   
   2001-09-27  parser
   
           * src/classes/table.C: table.sort changed to sort table itself
   
           * src/: classes/xdoc.C, targets/isapi/parser3isapi.dsp:
             X^.getElementsByTagName[tagname] = array of xnode
             X^.getElementsByTagNameNS[namespaceURI;localName] = array of
             nodes removed - regretfully not supported @ xalan. maybe someday
             would reimplement, if needed.
   
             win32build system: solved long waiting anti-non-started-apache
             problem
   
           * src/: classes/classes.dsp, classes/xdoc.C, main/main.dsp,
             targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
             types/types.dsp: win32 ident make system so not to rebuild
             library [ident.C.new]
   
   2001-09-26  parser
   
           * src/: classes/classes.dsp, classes/xdoc.C, classes/xnode.C,
             classes/xnode.h, include/pa_config_fixed.h, main/main.dsp,
             targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
             types/pa_vxnode.C, types/types.dsp: z
   
           * src/classes/classes.C: forgot one non-xml check
   
           * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
             targets/cgi/Makefile.am, types/Makefile.am: makes with clases.awk
   
           * src/targets/cgi/parser3.C: z
   
           * src/: include/pa_config_fixed.h, targets/cgi/parser3.C,
             targets/isapi/parser3isapi.C: #ifdef SMTP
   
           * src/: classes/classes.dsp, classes/dnode.C, classes/dnode.h,
             classes/dom.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
             main/compile.tab.C, types/pa_vdnode.C, types/pa_vdnode.h,
             types/pa_vdom.C, types/pa_vdom.h, types/pa_vxdoc.C,
             types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
             types/types.dsp: xdoc&xnode now
   
           * src/: classes/classes.C, classes/classes.awk,
             classes/classes.dsp, classes/classes.h, classes/date.C,
             classes/dnode.C, classes/dnode.h, classes/dom.C,
             classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
             classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
             classes/op.C, classes/response.C, classes/string.C,
             classes/table.C, classes/void.C, include/pa_array.h,
             include/pa_common.h, include/pa_config_fixed.h,
             include/pa_config_includes.h, include/pa_dictionary.h,
             include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
             include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
             include/pa_socks.h, include/pa_sql_connection.h,
             include/pa_sql_driver_manager.h, include/pa_stack.h,
             include/pa_string.h, include/pa_stylesheet_connection.h,
             include/pa_table.h, include/pa_threads.h, include/pa_types.h,
             include/pa_xslt_stylesheet_manager.h, main/compile.C,
             main/compile.y, main/compile_tools.C, main/compile_tools.h,
             main/execute.C, main/main.dsp, main/pa_array.C, main/pa_common.C,
             main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
             main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
             main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
             main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
             main/pa_xslt_stylesheet_manager.C, main/untaint.C,
             sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
             targets/cgi/pa_threads.C, targets/cgi/parser3.C,
             targets/cgi/parser3.dsp, targets/isapi/pa_pool.C,
             targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
             targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h,
             types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
             types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
             types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
             types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vdom.C,
             types/pa_vdom.h, types/pa_vdouble.h, types/pa_venv.h,
             types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
             types/pa_vform.h, types/pa_vimage.C, types/pa_vimage.h,
             types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
             types/pa_vmethod_frame.h, types/pa_vobject.h,
             types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
             types/pa_vstateless_class.C, types/pa_vstateless_class.h,
             types/pa_vstateless_object.h, types/pa_vstring.C,
             types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
             types/pa_vvoid.h, types/pa_wcontext.C, types/pa_wcontext.h,
             types/pa_wwrapper.h, types/types.dsp: added ident.awk and
             main.dsp splitted to main+classes+types along to .am
   
           * src/classes/Makefile.am: removed useless var
   
           * src/: classes/classes.cmd, main/main.dsp,
             targets/cgi/parser3.dsp: moved classes.inc generation on win32 to
             main.dsp
   
   2001-09-25  parser
   
           * src/include/pa_config_auto.h.in: xml on linux[elik] works! no
             1251 though, todo ICU
   
           * src/: Makefile.am, classes/Makefile.am, classes/dom.C,
             include/pa_stylesheet_connection.h, main/Makefile.am,
             main/pa_pool.C, targets/cgi/Makefile.am, types/Makefile.am,
             types/pa_vdom.h: xml configure makes
   
   2001-09-24  parser
   
           * src/: classes/Makefile.am, include/pa_config_auto.h.in,
             types/Makefile.am: makes
   
           * src/targets/cgi/Makefile.am: makefiles
   
           * src/: Makefile.am, targets/Makefile.am, targets/cgi/pa_pool.C:
             started unix makes update
   
           * src/: Makefile.am, main/Makefile.am, targets/cgi/Makefile.am:
             started unix makes update
   
           * src/types/: pa_vdnode.C, pa_vvoid.h, pa_vtable.C: z
   
           * src/types/pa_value.h: z
   
           * src/types/: pa_vhash.h, pa_vtable.h, pa_vclass.h: fixed small
             bugs with usinge hash/table in expressions
   
           * src/types/: pa_vfile.h, pa_vimage.h, pa_vstring.h: fiew wrong
             resolved conflicts fixed [const]
   
           * src/: classes/classes.cmd, classes/image.C, classes/op.C,
             classes/table.C, include/pa_request.h, include/pa_sapi.h,
             main/compile.C, main/compile.tab.C, main/compile.y,
             main/compile_tools.h, main/main.dsp, main/pa_common.C,
             main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
             targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vbool.h,
             types/pa_vdate.h, types/pa_vdouble.h, types/pa_vform.C,
             types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
             types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h: merged3
             with before_xml [merge2 actually didn't happen - i've created
             tags on wrong branch. so this merge is in fact re-merge]
   
   2001-09-21  parser
   
           * src/: main/main.dsp, targets/cgi/parser3.dsp,
             targets/isapi/parser3isapi.dsp: updated project files [/ sadly
             produced "" in make file and sadly wrong interpreted on load]
   
           * src/: classes/classes.h, classes/hash.C, classes/op.C,
             classes/table.C, doc/doxygen.cfg, include/pa_common.h,
             include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
             include/pa_sql_driver_manager.h, include/pa_string.h,
             main/compile.tab.C, main/main.dsp, main/pa_common.C,
             main/pa_exec.C, main/pa_globals.C, targets/cgi/parser3.dsp,
             targets/isapi/parser3isapi.dsp: merged with before_xml
   
           * src/: classes/classes.C, classes/date.C, classes/dnode.C,
             classes/dom.C, classes/file.C, classes/form.C, classes/int.C,
             classes/mail.C, doc/doxygen.cfg, include/pa_config_fixed.h,
             include/pa_pool.h, main/main.dsp, main/pa_globals.C,
             main/pa_pool.C, main/pa_request.C,
             main/pa_xslt_stylesheet_manager.C, targets/cgi/pa_pool.C,
             targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
             targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
             targets/isapi/parser3isapi.dsp, types/pa_valiased.C,
             types/pa_vcookie.C, types/pa_vdnode.C, types/pa_vdom.C,
             types/pa_vfile.C, types/pa_vform.C, types/pa_vimage.C,
             types/pa_vrequest.C, types/pa_vresponse.h,
             types/pa_vstateless_class.C, types/pa_vstring.C,
             types/pa_vtable.C, types/pa_wcontext.C: zillions of #ifdef XML
             created new projects for sql drivers [planning to remove sql
             drivers from main cvs project] first, will join latest changes
   
           * src/classes/: dom.C: defaulted dom writing methods encoding to
             pool.get_charset
   
           * src/classes/dom.C: defaulted dom writing methods encoding to
             pool.get_charset
   
           * src/include/pa_pool.h: defaulted dom writing methods encoding to
             pool.get_charset
   
           * src/: classes/dom.C, include/pa_pool.h, main/pa_pool.C,
             types/pa_vdnode.C, types/pa_vresponse.h: defaulted dom writing
             methods encoding to pool.get_charset
   
           * src/: include/pa_pool.h, main/pa_pool.C: checked whether
             transcoder were created right "unsupported encoding" message.
             not @ set time, but @ use time, so until xml output functions
             .string, .file, .save used - no encoding name check occur
   
             reduced transcode buffer size to 60 fixed pool cleanup - no
             registration needed, pools are officially destructured
   
   2001-09-20  parser
   
           * src/classes/image.C: 20K preload on jpg measure [image::measure]
   
           * src/main/: pa_pool.C, pa_request.C: Pool::transcode defaults from
             $MAIN:DEFAULTS.content-type[$.charset[here]]
   
           * src/: classes/dnode.C, classes/dom.C,
             include/pa_config_includes.h, include/pa_globals.h,
             include/pa_pool.h, main/main.dsp, main/pa_globals.C,
             main/pa_pool.C, targets/cgi/parser3.dsp,
             targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
             types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vresponse.h:
             Pool::transcode 0
   
           * src/classes/dom.C: dom. string save file moved output xml options
             to last param and made it optional
   
           * src/types/pa_vdnode.C:     !$elementnode.attributes = hash of
             dnodes
                 !$attributenode.specified = boolean
                         true if the attribute received its value explicitly
             in the XML document,
                         or if a value was assigned programatically with the
             setValue function.
                     false if the attribute value came from the default value
             declared in the document's DTD.
                 !$pinode.target = target of this processing instruction
                     XML defines this as being the first token following the
             markup
                     that begins the processing instruction.
                     XPath:
                 !^node.select[xpath/query/expression] = hash of 0->node0
             1->node1
                 !^node.select-single[xpath/query/expression] = first node if
             any
   
           * src/types/: pa_value.h, pa_vbool.h, pa_vdate.h, pa_vdouble.h,
             pa_vhash.h, pa_vint.h, pa_vstring.h, pa_vtable.h, pa_vvoid.h:
             some 'const's added
   
           * src/types/: pa_vhash.h, pa_vtable.h: table/hash  can be used in
             expression context now, there value = size and boolean value
             size!=0
   
           * src/types/: pa_vhash.h, pa_vstring.h, pa_vtable.h: table/hash
             can be used in expression context now, there value = size and
             boolean value size!=0
   
           * src/: classes/dnode.C, classes/dom.C, targets/cgi/parser3.dsp,
             types/pa_vstring.h: dnode .file .string .save moved back to dom
             due to strange xalan bug
   
   2001-09-18  parser
   
           * src/: classes/dnode.C, classes/dom.C, classes/hash.C,
             classes/image.C, classes/op.C, classes/table.C,
             include/pa_common.h, include/pa_globals.h, include/pa_request.h,
             include/pa_sql_driver_manager.h, main/compile.C,
             main/compile.tab.C, main/compile.y, main/compile_tools.h,
             main/execute.C, main/pa_common.C, main/pa_request.C,
             main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
             targets/cgi/parser3.C, targets/cgi/parser3.dsp,
             targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vform.C,
             types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
             types/pa_vimage.h, types/pa_vtable.h: merged latest bugfixes from
             before_xml branch ^if(def $hash) now true only when
             ^hash:_count[]!=0 moved .string .save .file from dom to dnode
   
           * src/: classes/op.C, main/execute.C: operators self changed to
             root ^for variable context changed to self
   
           * src/types/: pa_vdnode.C, pa_vdom.h, pa_vhash.h, pa_vtable.h: dom,
             dnode 1
   
           * src/: classes/dnode.C, classes/dnode.h, main/main.dsp,
             types/pa_vdnode.C, types/pa_vdnode.h: dom, dnode 0
   
           * src/: classes/image.C, main/pa_string.C, main/pa_table.C: image:
             poly* fixed
   
   2001-09-17  parser
   
           * src/: classes/dom.C, main/main.dsp, main/pa_globals.C,
             types/pa_vdom.h: started dnode+dom
   
             dnode     DOM methods:     $node.name     $node.value
             ...others...
   
                 ^node.xpath[/rates/USD] = hash
                     $hash[
                             $.0[node0]
                             $.1[node1]
                     ]
   
           * src/: classes/image.C, types/pa_vimage.C: $image.line-style now
             applies to all linear primitives
   
           * src/: classes/classes.h, classes/dom.C, classes/hash.C,
             include/pa_stylesheet_connection.h, main/main.dsp,
             targets/cgi/pa_pool.C, types/pa_vdom.h, types/pa_vfile.h,
             types/pa_vimage.h: started dnode     DOM:     $node.name
             $node.value     ...others...      ^node.xpath[/rates/USD] = hash
             dom(dnode)
   
           * src/: classes/hash.C, main/compile.C, main/compile.tab.C,
             main/compile.y, main/compile_tools.h, main/execute.C,
             targets/cgi/parser3.C: expressions unary+ ^hash.count[] bugfix:
             in expression compound($aa.zz.xx) names now can have minus '-' in
             name after '.'
   
   2001-09-15  parser
   
           * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
             image: $line-width ^line(...)[****   style]
   
           * src/: classes/dom.C, targets/isapi/parser3isapi.C,
             targets/isapi/pool_storage.h, types/pa_vdom.h: fixed bug in isapi
             pool_storage - cleanups first, allocations second.  apache wisely
             does just like that
   
           * src/targets/isapi/: parser3isapi.C, pool_storage.h: pool_storage
             rewritten using template, no bugs now
   
           * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/pa_pool.C,
             targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
             targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h:
             poorly started isapi pool_storage, would rewrite using template
             now
   
           * src/: classes/dom.C, classes/image.C, include/pa_pool.h,
             include/pa_stylesheet_connection.h, main/main.dsp,
             targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
             targets/isapi/pool_storage.h, types/pa_vdom.C, types/pa_vdom.h:
             xalan objects freed up [introducing Pool::register_cleanup]
   
           * src/: doc/doxygen.cfg, include/pa_sapi.h, types/pa_vdom.h:
             comments
   
   2001-09-14  parser
   
           * src/main/: pa_sql_driver_manager.C, pa_xslt_stylesheet_manager.C:
             z
   
           * src/: classes/dom.C, classes/file.C, classes/image.C,
             classes/mail.C, include/pa_common.h,
             include/pa_sql_driver_manager.h, include/pa_string.h,
             include/pa_stylesheet_connection.h,
             include/pa_xslt_stylesheet_manager.h, main/main.dsp,
             main/pa_common.C, main/pa_exec.C, main/pa_globals.C,
             main/pa_sql_driver_manager.C, main/pa_xslt_stylesheet_manager.C,
             main/untaint.C, types/pa_vfile.C: dom.xslt  stylesheet
             compiled&cached
   
   2001-09-13  parser
   
           * src/: classes/dom.C, classes/file.C, classes/image.C,
             types/pa_vfile.C, types/pa_vfile.h: ^dom.file[] charset
   
           * src/classes/dom.C: dom:file content-type(.method)
   
           * src/: include/pa_common.h, include/pa_globals.h,
             main/pa_common.C, main/pa_request.C: $MAIN:CLASS_PATH now can be
             string now more informative error messages
   
           * src/: include/pa_globals.h, include/pa_request.h,
             main/pa_request.C, targets/cgi/parser3.C,
             targets/isapi/parser3isapi.C: ParserRootConfig .../parser3.conf
             ParserSiteConfig .../parser3.conf
   
             cgi&isapi looks for {configure|c:\windows}/parser3.conf
   
   2001-09-12  parser
   
           * src/: classes/op.C, include/pa_sql_driver_manager.h,
             main/pa_sql_driver_manager.C: ^connect[] ^connect[aaa] more
             precise error reporting: "connection string must start with
             protocol://" now
   
           * src/main/compile.tab.C: fixed - subname code parts actually []
             braced
   
           * src/main/: compile.y, compile_tools.h: name.[part].xxx syntax
             lexer on LS_USER level did [] matching without setting nestage,
             introduced special LS_NAME_SQUARE_PART state
   
   2001-09-11  parser
   
           * src/: classes/dom.C, include/pa_string.h, main/pa_globals.C,
             main/untaint.C: ^dom:set{<some>xml</some>} default language XML
             languages+=xml
   
           * src/: classes/dom.C, types/pa_vdom.h: ^dom:set[<some>xml</some>]
   
           * src/classes/dom.C: ^dom:save/string/file[output options] output
             options:     $.method[xml|html|text] detection fixed
   
           * src/types/pa_vdom.h: messages
   
           * src/classes/dom.C: ^dom:save/string/file[output options] output
             options:     $.method[xml|html|text] detection fixed
   
   2001-09-10  parser
   
           * src/classes/dom.C: ^dom:save/string/file[output options] output
             options:     $.method[xml|html|text] $.encoding[windows-1251|...]
   
           * src/classes/dom.C: ^dom.xslt[stylesheet filename][params hash
             added]
   
           * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
             ^dom.xslt[stylesheet filename] 0
   
           * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
             ^dom.xslt[stylesheet filename] -1 doc is lying
   
           * src/classes/dom.C: ^dom.file[encoding] = file
   
           * src/classes/: dom.C: ^dom.string[encoding] 1
             ^dom.save[encoding;filename]
   
           * src/classes/dom.C: ^dom.string[] 0
   
           * src/classes/dom.C: ^dom.save[b.xml] 1:error handling
   
           * src/: classes/dom.C, main/main.dsp, types/pa_vform.C,
             types/pa_vform.h: ^dom.save[b.xml] 0
   
   2001-09-08  parser
   
           * src/types/pa_vform.C: $form:tables.name.field
   
   2001-09-07  parser
   
           * src/classes/table.C: table:empty removed, superceded by ^if(def
             $table)...
   
           * src/targets/cgi/parser3.C: z
   
           * src/main/pa_string.C: $a[] ^if($a){y;n} is 'n' now  [conversion
             from '' to int/double is 0]
   
           * src/: classes/dom.C, types/pa_value.h, types/pa_vtable.h: (def
             $table) is false when table is empty
   
           * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
             !$form:tables $atable[$form:tables.a]
             ^atable.menu{a=$atable.element}[,]
   
           * src/: targets/cgi/parser3.dsp, types/pa_vform.C,
             types/pa_vform.h, types/pa_vhash.h: !$form:fields
   
           * src/: classes/dom.C, classes/table.C, main/main.dsp,
             types/pa_vdom.h, types/pa_vform.C: merged with successful start
             of dom
   
           * src/: include/pa_hash.h, main/pa_hash.C, types/pa_vfile.h,
             types/pa_vform.C, types/pa_vform.h: z
   
           * src/: main/pa_exception.C, types/pa_vform.C: getting FIRST form
             element [not last]
   
           * src/: classes/dom.C, classes/table.C, main/main.dsp,
             types/pa_vdom.h: introducing dom. dom:load[a.xml]
   
   2001-09-06  parser
   
           * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
             table with one column 'element' and two rows: 1 and 2
   
           * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
             table with one column 'element' and two rows: 1 and 2
   
           * src/: classes/void.C, main/pa_string.C, main/pa_table.C: fixed up
             bad int/double conversions, and now $form:nonexistent.int(88)
             would return 88
   
           * src/: classes/hash.C, include/pa_globals.h, main/pa_globals.C,
             types/pa_vhash.h: now there's special hash key '_default'
             [instead of ^_default method] $hash[         $.a[1]  $.b[2]
             $._default[xx] ] $hash.c
   
           * src/main/: compile.tab.C, compile.y: ^if(0){}{ ^if(1){}^; } bug
             fixed [thanks, fif], ^; were treated there non-literally
   
           * src/doc/doxygen.cfg: merged new default options from 1.2.10
             doxygen
   
           * src/: classes/image.C, classes/op.C, classes/string.C,
             classes/table.C, doc/doxygen.cfg, targets/isapi/parser3isapi.C,
             types/pa_vtable.C: few #ifndef DOXYGEN
   
   2001-09-05  parser
   
           * src/classes/: string.C, table.C: sql options can be void [same as
             image:html the other day]
   
           * src/targets/cgi/Makefile.am: .am undo
   
           * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
             targets/cgi/parser3.C: #define STRINGIZE(name) #name does not
             macro expantion on param, simply qoutes whatever passed, undone
   
           * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
             targets/cgi/Makefile.am, targets/cgi/parser3.C: #define
             STRINGIZE(name) #name invented
   
           * src/: classes/op.C, include/pa_sql_driver_manager.h,
             main/pa_sql_driver_manager.C: #define MAIN_SQL_NAME "SQL" #define
             MAIN_SQL_DRIVERS_NAME "drivers"
   
             moved to be availible to all users
   
           * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h:
             SQL_DRIVER_CREATE_FUNC_NAME
   
           * src/classes/mail.C: MAIN:MAIL check fixed
   
   2001-09-04  parser
   
           * src/classes/image.C: image.html now can accept void params
   
           * src/targets/isapi/parser3isapi.C: z
   
           * src/targets/cgi/parser3.C: full_file_spec bug
   
           * src/targets/cgi/parser3.C: getenvcheck
   
           * src/targets/cgi/parser3.C: zz
   
           * src/targets/cgi/parser3.C: zzz
   
           * src/classes/date.C: date
   
           * src/classes/date.C: date:sql-string is now without ''
   
           * src/: include/pa_config_auto.h.in, targets/cgi/Makefile.am,
             targets/cgi/parser3.C: configure --sysconfdir=sysadmin-controlled
             auto.p location for targets/cgi/parser3, default[/usr/local/etc]
   
           * src/include/pa_config_auto.h.in: makes
   
   2001-09-03  parser
   
           * src/targets/cgi/parser3.C: /configure cgi SYSCONFDIR
   
   2001-09-01  parser
   
           * src/classes/image.C: letter_spacing
   
           * src/classes/image.C: image: font params changed
   
           * src/classes/image.C: image: as_int as_string used
   
           * src/types/pa_vmethod_frame.h: $result[] now gets properly
             analized
   
   2001-08-31  parser
   
           * src/targets/cgi/parser3.C: z
   
           * src/: include/pa_dir.h, targets/cgi/parser3.C: compiled under
             cygwin
   
           * src/classes/void.C: void:int/double += (default)
   
           * src/classes/image.C: image:font added space param image:font
             changed charwidth alg, added kerning const[for now]
   
           * src/classes/: string.C, table.C: string:int/double (defaults)
   
   2001-08-29  parser
   
           * src/main/pa_exception.C: exception redundant debug info
   
   2001-08-28  parser
   
           * src/classes/image.C: image error msgs
   
           * src/classes/image.C: image: gifsize little endian
   
           * src/doc/doxygen.cfg: doxygen conf removed some garbage from under
             doxygeneration
   
           * src/: classes/Makefile.am, main/Makefile.am,
             targets/cgi/Makefile.am, types/Makefile.am: .am-s
   
           * src/: include/pa_dictionary.h, main/pa_dictionary.C,
             main/pa_sql_driver_manager.C: NO_STRING_ORIGIN check3
   
           * src/main/compile.C: NO_STRING_ORIGIN check2
   
           * src/classes/table.C: NO_STRING_ORIGIN check
   
           * src/include/pa_dictionary.h: gcc: ../include/pa_dictionary.h:19:
             storage class specifiers invalid in friend function declarations
   
           * src/: classes/op.C, main/compile.tab.C, main/pa_dir.C,
             main/untaint.C, targets/cgi/parser3.C,
             targets/isapi/parser3isapi.C: strncpy forced with zero ending in
             case of limit
   
           * src/: classes/file.C, main/pa_common.C: file:move
             autocreate/remove dest/src dir
   
           * src/: classes/string.C, include/pa_dictionary.h,
             include/pa_string.h, main/pa_dictionary.C, main/pa_string.C,
             main/untaint.C: pa_directory speeded up. moved zero 'from' check
             to directory constructor.  string:replace
   
   2001-08-27  parser
   
           * src/classes/image.C: fixed jpgsize alg
   
           * src/classes/image.C: fixed jpgsize alg
   
           * src/main/pa_exception.C: z
   
           * src/main/pa_common.C: removed debug info from pa_common
   
           * src/: main/pa_request.C, targets/cgi/parser3.C: parser3 test.html
             [auto.p from current dir loading]
   
           * src/: main/pa_common.C, main/pa_exception.C,
             main/pa_sql_driver_manager.C, targets/cgi/Makefile.am: configure
             for solaris -lsocket
   
   2001-08-24  parser
   
           * src/targets/cgi/parser3.C: not cgi extra \n 3
   
           * src/targets/cgi/parser3.C: not cgi extra \n 2
   
           * src/targets/cgi/parser3.C: not cgi extra \n
   
           * src/main/pa_sql_driver_manager.C: z
   
           * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C:
             sql* removed services from disconnect - cross-request ideological
             probs.
   
           * src/sql/pa_sql_driver.h: sql* removed services from disconnect -
             cross-request ideological probs.  oracle - fixed bug: cs
             allocated on request.pool and got freed before disconnect
   
           * src/classes/: file.C, form.C, mail.C, table.C: fiew non-pool
             mallocs fixed
   
   2001-08-23  parser
   
           * src/classes/file.C: minor bug in file:save fixed
   
           * src/main/pa_sql_driver_manager.C: oracle: dlink
   
   2001-08-22  parser
   
           * src/: classes/file.C, main/compile.tab.C, types/pa_vfile.C,
             types/pa_vfile.h: file:load|save[text|binary;
   
           * src/main/: compile.tab.C, compile.y: ^method[]^[^] literals []
   
   2001-08-21  parser
   
           * src/classes/: file.C, table.C: ^file:list
   
   2001-08-20  parser
   
           * src/: main/compile.tab.C, main/compile.y,
             main/pa_sql_driver_manager.C, types/pa_value.h, types/pa_vbool.h,
             types/pa_vdouble.h, types/pa_vint.h: $var(123) ^var.inc[]
             recousively caused problems: inc incremeted 123 literal!! fixed
   
   2001-08-10  parser
   
           * src/main/: compile.tab.C, compile.y: [codes] name part syntax now
   
           * src/main/: compile.tab.C, compile.y: (codes) name part syntax
             added
   
           * src/main/: compile.tab.C, compile.y: (codes) name part syntax
             added
   
           * src/classes/table.C: table:sort restored [it was bad test :(]
   
           * src/types/: pa_value.h, pa_vstring.h: string now def only when ne
             ''
   
           * src/main/: pa_request.C: wanted to make const int
             MAX_EXECUTE_SECONDS=1;
   
             but couldnt, set_callback_and_alarm appeared to be not exported
             :(
   
           * src/main/pa_string.C: string.match hanged on. there were a hang
             check but it weren't wise enough
   
             @parse[dateString][tmp]
             $tmp[^dateString.match[(\d\d\d\d-)?(\d\d-)?][g]] $tmp.1 $tmp.2
             #end
   
             @main[] ^parse[2001-02-03]
   
           * src/classes/: table.C: table:sort now default desc
   
           * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
             table.sort now creates new sorted table
   
   2001-08-09  parser
   
           * src/main/pa_string.C: $a[010] now ^if($a==10){true} were octal
   
           * src/classes/hash.C: hash:_default now [was hash:default]
   
           * src/classes/op.C: case without switch check added
   
           * src/types/pa_vcookie.C: cookie name&value origins added, more
             precise $ORIGINS(1)
   
           * src/main/Makefile.am: .am
   
           * src/classes/void.C: void: int double  copy/paste from int: bug
             fixed
   
           * src/classes/void.C: void: int double  copy/paste from int: bug
             fixed
   
   2001-08-07  parser
   
           * src/: classes/double.C, classes/int.C, classes/string.C,
             classes/table.C, include/pa_globals.h, main/pa_globals.C:
             !^int/double:sql{query}[[$.limit(2) $.offset(4) $.default(0)]]
             string, table
   
           * src/: classes/math.C, main/pa_request.C: math:random fixed. win32
             srand made working
   
   2001-08-06  parser
   
           * src/: classes/mail.C, classes/op.C, include/pa_array.h,
             include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
             main/compile.tab.C, main/compile.y, main/pa_array.C,
             main/pa_dictionary.C, main/pa_exec.C, main/pa_globals.C,
             main/pa_hash.C, main/pa_request.C, main/pa_string.C: class_path
   
           * src/main/pa_exec.C: exec win32 real filename
   
           * src/classes/file.C: exec stderr out
   
           * src/classes/hash.C: hash:keys renamed to hash:_keys :(
   
   2001-08-03  parser
   
           * src/: classes/table.C, types/pa_vtable.h: vtable.locks killed
   
   2001-08-02  parser
   
           * src/: classes/string.C, classes/table.C, include/pa_array.h,
             main/execute.C, main/pa_exec.C: introducing Array_iter
   
           * src/main/execute.C: detected quick_get recursion bug. changed to
             get@execute, but needs array iterator, separate from array to
             avoid it & use caching
   
           * src/main/: pa_dictionary.C, pa_globals.C: memset dictionary minor
             bug fixed
   
           * src/: classes/classes.h, classes/op.C, include/pa_globals.h,
             main/execute.C, main/pa_globals.C: found another multithread bug
             in op.C (last, last global var killed) :)
   
   2001-08-01  parser
   
           * src/: include/pa_dictionary.h, include/pa_globals.h,
             include/pa_string.h, main/main.dsp, main/pa_dictionary.C,
             main/pa_globals.C, main/pa_request.C, main/pa_string.C,
             main/untaint.C: speeded up typo-html replacements. introducing
             Dictionary with first-char caching
   
   2001-07-31  parser
   
           * src/types/Makefile.am: pa_vtable.C added to .am
   
           * src/main/compile.tab.C: added, so that could be compiled even on
             non-bison-enabled platforms
   
   2001-07-28  parser
   
           * src/classes/table.C: table:hash always produces hash, when can't
             - empty
   
           * src/main/: compile.y, untaint.C: bug fix @ untaint when \r
             skipped \n
   
   2001-07-27  parser
   
           * src/classes/: double.C, int.C, string.C: provided meaningful msg
             on int/double/string :sql without result and default
   
   2001-07-26  parser
   
           * src/classes/op.C: fixed bad multithread bug with strangly global
             OP
   
           * src/main/compile.y: $man[$.age[zzz]]  0
   
           * src/: include/pa_opcode.h, main/compile.y, main/execute.C: hash
             creation syntax problem persists. restored $: for a while.
             thinking of $man[$.age[zzz]] syntax now
   
           * src/: classes/double.C, classes/int.C, classes/string.C,
             include/pa_opcode.h, main/compile.C, main/compile.y,
             main/compile_tools.h, main/execute.C, types/pa_vcode_frame.h,
             types/pa_vmethod_frame.h, types/pa_wcontext.h,
             types/pa_wwrapper.h: fixing :: realization #1
   
           * src/: include/pa_opcode.h, main/compile.C, main/compile.y,
             main/compile_tools.h, main/execute.C, main/pa_request.C,
             types/pa_vmethod_frame.h: introducing :: this is constructor call
             prefix.  ordinary : remains for static accesses
   
   2001-07-25  parser
   
           * src/types/pa_vtable.C: table: get_element order changeed. now: 1.
             fields 2. methods 3. columns
   
           * src/types/: pa_vdouble.h, pa_vint.h: odbc: no result queries;
             quote.  optimized double&int tostring-s
   
           * src/main/: compile.C, compile.y, compile_tools.h: allowed
             whitespace before first method decl
   
           * src/classes/table.C: allowed nontable result in table:sql,
             results in empty table
   
           * src/main/: compile.C, compile.y, compile_tools.h: allowed empty
             lines before first method decl
   
           * src/: classes/table.C, main/main.dsp, types/pa_vtable.C,
             types/pa_vtable.h: ^table.record[] now $table.fields
   
           * src/main/compile.y: $var[] is now empty string, not void
   
           * src/main/: compile.y, execute.C: $var[] is now empty string, not
             void
   
           * src/: classes/string.C, include/pa_globals.h, main/execute.C,
             main/pa_globals.C: match replace code context moved to implicit
             $match context
   
           * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
             main/compile_tools.h, main/execute.C: with killed, code storage
             introduced with former 'with' syntax
   
   2001-07-24  parser
   
           * src/: main/compile.C, main/execute.C, main/pa_string.C,
             types/pa_value.h: first get_element, next get operator
   
           * src/main/compile.y: removed @end handling
   
           * src/main/: compile.C, compile.y: @end handling method2
   
           * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
             file:move
   
           * src/main/pa_common.C: file_read close @ eof when imgsize bug
             fixed
   
   2001-07-23  parser
   
           * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql odbc
             driver
   
           * src/classes/hash.C: changed sql driver query interface
   
           * src/: classes/hash.C, classes/string.C, classes/table.C,
             classes/void.C, include/pa_sql_connection.h, sql/pa_sql_driver.h:
             changed sql driver query interface
   
   2001-07-20  parser
   
           * src/types/pa_vrequest.C: X!$browser:type
   
           * src/: classes/file.C, classes/string.C, include/pa_string.h,
             main/execute.C, main/pa_string.C, types/pa_valiased.C,
             types/pa_valiased.h, types/pa_value.h, types/pa_vclass.h,
             types/pa_vcookie.h, types/pa_vdate.h, types/pa_vfile.h,
             types/pa_vform.h, types/pa_vhash.h, types/pa_vmath.h,
             types/pa_vobject.h, types/pa_vrequest.C,
             types/pa_vstateless_class.h, types/pa_vstateless_object.h: only
             ^class:method dynamic calls allowed.  ^BASE.method call disabled.
             BASE element globally removed
   
   2001-07-18  parser
   
           * src/classes/file.C: file:exec/cgi msg
   
           * src/classes/file.C: $file:exit-code renamed to 'status'
   
           * src/: classes/file.C, main/pa_exec.C: file:exec
   
           * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
             targets/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
             removed $id from *.in *.am
   
           * src/main/: pa_request.C, untaint.C: ORIGINS langs name
             abbrevations
   
           * src/: classes/date.C, classes/mail.C, classes/math.C,
             classes/string.C, classes/table.C, include/pa_globals.h,
             include/pa_string.h, main/execute.C, main/pa_globals.C,
             main/pa_request.C, main/pa_string.C, main/untaint.C,
             types/pa_value.h, types/pa_vdouble.h, types/pa_vfile.h,
             types/pa_vint.h, types/pa_vstring.C, types/pa_vstring.h:
             $ORIGINS(1) output tracing mode
   
   2001-07-13  parser
   
           * src/: classes/double.C, classes/int.C, classes/string.C,
             include/pa_request.h, main/execute.C, main/pa_request.C:
             auto.p[@auto], /news/auto.p[no @auto], so that initializing
             second would not call first @auto
   
           * src/main/: execute.C, pa_request.C: order of MAIN parents was
             wrong, fixed
   
   2001-07-12  parser
   
           * src/types/pa_value.h: pa_value.putelement modification of system
             classes prevented
   
   2001-07-11  parser
   
           * src/: classes/string.C, doc/sources2html.cmd: lr split now yelds
             table $piece
   
           * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
             types/pa_vstateless_class.h: $file created by file:state +=
             .atime .mtime .ctime +found&fixed bug with exceptions on
             get_junction-created objects [they were on wrong pool]
   
   2001-07-09  parser
   
           * src/main/untaint.C: qp wrong name
   
           * src/: classes/date.C, classes/string.C, classes/table.C,
             main/compile.y: date format 0
   
   2001-07-07  parser
   
           * src/: classes/date.C, classes/table.C, include/pa_common.h,
             include/pa_string.h, main/pa_common.C, types/pa_vdate.h: date
             roll table calendar
   
           * src/: classes/Makefile.am, classes/date.C, classes/file.C,
             classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
             classes/op.C, classes/string.C, classes/table.C, classes/void.C,
             include/pa_request.h, main/main.dsp, types/pa_value.h,
             types/pa_vdate.h, types/pa_wcontext.C: date  now set $fields roll
             string.  todo: sql, calendar
   
   2001-07-06  parser
   
           * src/: classes/math.C, include/pa_request.h, main/execute.C,
             main/main.dsp, main/pa_request.C, types/pa_vmath.h: math 0
   
   2001-07-03  parser
   
           * src/: classes/Makefile.am, classes/math.C, classes/op.C,
             classes/random.C, main/main.dsp: class random renamed to math,
             operators became methods
   
           * src/classes/op.C:  pow sqrt
   
           * src/: classes/op.C, main/execute.C:  sin asin cos acos tan atan
   
   2001-07-02  parser
   
           * src/classes/table.C: ^table.columns column renamed from 'name' to
             'column'
   
           * src/classes/hash.C: ^hash.keys[]
   
           * src/: classes/table.C, main/pa_table.C: ^table:columns[]
   
           * src/main/: compile.y, compile_tools.h: in expressions now allowed
             'strings'
   
   2001-06-29  parser
   
           * src/main/: execute.C: /0  %0 checkes ver 2
   
           * src/main/execute.C: /0  %0 checke
   
           * src/classes/Makefile.am: nothing - void
   
           * src/classes/table.C: empty strings @ sql
   
   2001-06-28  parser
   
           * src/: classes/double.C, classes/file.C, classes/form.C,
             classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
             classes/op.C, classes/random.C, classes/response.C,
             classes/string.C, classes/table.C, classes/void.C,
             main/compile.C, main/compile_tools.C, main/execute.C,
             main/pa_array.C, main/pa_common.C, main/pa_dir.C,
             main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
             main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
             main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
             main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
             targets/isapi/parser3isapi.C, main/compile.y: */ static const
             char *RCSId=" double.C,v 1.31 2001/06/28 07:41:59 parser Exp
             $";
   
           * src/: classes/double.C, classes/file.C, classes/form.C,
             classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
             classes/op.C, classes/random.C, classes/response.C,
             classes/string.C, classes/table.C, classes/void.C,
             main/compile.C, main/compile.y, main/compile_tools.C,
             main/execute.C, main/pa_array.C, main/pa_common.C, main/pa_dir.C,
             main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
             main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
             main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
             main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
             targets/isapi/parser3isapi.C: static char *RCSId="Id";
   
           * src/main/: compile.y, compile_tools.h: $:name: == ${name}:
             $class:name: == ${class:name}:
   
           * src/classes/string.C: exactly one
   
   2001-06-27  parser
   
           * src/: classes/nothing.C, classes/void.C, types/pa_vnothing.h,
             types/pa_vvoid.h: nothing renamed to void
   
           * src/classes/op.C: ^switch ^case
   
           * src/main/compile.y: nothing renamed to void
   
           * src/: classes/hash.C, classes/table.C, main/compile.y,
             main/execute.C, main/main.dsp, main/pa_request.C,
             targets/cgi/pa_pool.C, types/pa_value.h, types/pa_vcode_frame.h,
             types/pa_vmethod_frame.h, types/pa_vtable.h: nothing renamed to
             void
   
           * src/main/compile.y: lexer: $zzzz^zzzz were name part
   
   2001-05-28  parser
   
           * src/doc/html2chm.cmd: removed >a
   
           * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: release
             project options [some bugs]
   
           * src/doc/sources2html.cmd: z
   
           * src/: classes/classes.C, main/compile.C, main/compile.y,
             main/execute.C: operators are not in root class again
   
   2001-05-24  parser
   
           * src/targets/cgi/parser3.dsp: project file
   
           * src/: classes/op.C, main/pa_request.C, targets/cgi/parser3.C:
             ^log ^exp
   
           * src/: main/pa_request.C, targets/cgi/parser3.C: // no _
             conversions in @exception[params]
   
           * src/main/pa_request.C: // no _ conversions in @exception[params]
   
   2001-05-23  parser
   
           * src/main/pa_string.C: string cmp bug
   
           * src/classes/: mail.C, op.C: rem max 1000
   
           * src/: classes/op.C, main/compile.y: allow one empty line before
             LS_DEF_NAME
   
   2001-05-22  parser
   
           * src/classes/op.C: if params code-required
   
   2001-05-21  parser
   
           * src/types/pa_vstring.C: eoleof
   
           * src/classes/Makefile.am: .AM
   
           * src/classes/nothing.C: resultless ^sql  moved to nothing:
   
           * src/classes/: nothing.C, op.C: 'unknown' renamed to 'nothing'
   
           * src/: classes/double.C, classes/nothing.C, classes/string.C,
             classes/unknown.C, main/main.dsp, types/pa_vnothing.h,
             types/pa_vunknown.h, classes/hash.C, main/compile.y,
             main/execute.C, targets/cgi/pa_pool.C, types/pa_vcode_frame.h,
             types/pa_vmethod_frame.h, types/pa_vtable.h, classes/table.C,
             main/pa_request.C, types/pa_value.h: 'unknown' renamed to
             'nothing'
   
           * src/types/: pa_vstring.C, pa_vstring.h: removed unnecessary
             vstring::set_string
   
           * src/classes/: double.C, int.C, string.C: int,double;sql
   
           * src/: classes/hash.C, classes/int.C, classes/string.C,
             classes/table.C, include/pa_string.h, main/pa_string.C,
             types/pa_vstring.C, types/pa_vstring.h: started int:sql
   
           * src/: classes/classes.C, classes/hash.C, classes/op.C,
             classes/table.C, main/compile.C, main/compile.y, main/execute.C:
             hash:sql moved to main trunc. operators.txt updated
   
           * src/classes/: hash.C, op.C, table.C: hash:sql
   
           * src/classes/op.C: z
   
           * src/: main/compile.C, classes/classes.C: 1
   
           * src/: classes/classes.C, main/compile.C, main/compile.y,
             main/execute.C: 0
   
           * src/main/execute.C: z
   
           * src/targets/cgi/parser3.C: z
   
           * src/targets/cgi/parser3.C: argv can be just "parser3". made
             site_auto_path "." in that case
   
           * src/targets/cgi/: parser3.C: z
   
           * src/main/pa_request.C: .am
   
           * src/: main/pa_request.C, targets/cgi/parser3.C:
             pcre_tables=pcre_default_tables;
   
   2001-05-19  parser
   
           * src/main/pa_string.C: z
   
           * src/: include/pa_string.h, main/untaint.C, targets/cgi/pa_pool.C:
             introducing String::cstr_bufsize, returns just size+1 for as_is
             target.
   
           * src/: main/untaint.C, targets/cgi/pa_pool.C,
             targets/cgi/parser3.C: fixed bug in pre html untaint, wrong size
             used, 4* mem wasted
   
           * src/classes/string.C: root context in match replace body now
             unchanged
   
           * src/types/pa_value.h: parameter # 1 based
   
           * src/main/pa_common.C: common:  actual filename '%s'
   
           * src/classes/string.C: z
   
           * src/classes/Makefile.am: classes/.am
   
           * src/classes/: Makefile.am: classes/.am
   
           * src/: classes/Makefile.am, main/pa_sql_driver_manager.C,
             targets/cgi/pa_pool.C: classes/.am
   
   2001-05-18  parser
   
           * src/: include/pa_config_auto.h.in, targets/cgi/pa_pool.C: .am
             pa_threads.C ins
   
           * src/targets/cgi/Makefile.am: .am pa_threads.C added
   
   2001-05-17  parser
   
           * src/: classes/string.C, include/pa_config_fixed.h,
             include/pa_config_includes.h, main/compile.y,
             main/compile_tools.h, main/execute.C, main/pa_array.C,
             main/pa_common.C, main/pa_dir.C, main/pa_hash.C, main/pa_pool.C,
             main/untaint.C, types/pa_vcookie.C, types/pa_vfile.C,
             types/pa_vform.C: #include "pa_config_includes.h" removed from
             most .C
   
           * src/doc/html2chm.cmd: z
   
           * src/doc/: chm.cmd, doxygen.cmd, html2chm.cmd, sources2html.cmd,
             view.cmd, view_chm.cmd, view_html.cmd: doc cmds
   
           * src/main/pa_sql_driver_manager.C: moved expiration to
             get_connection_from_cache
   
           * src/main/pa_sql_driver_manager.C: cache expiration bf
   
           * src/: classes/classes.h, include/pa_sql_connection.h,
             include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C:
             cache expiration[use SQL_Driver::disconnect]
   
           * src/main/pa_table.C: table.locate current restored on "not found"
   
           * src/: main/execute.C, types/pa_vmethod_frame.h: endless recursion
             line no
   
           * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
             ANTI_ENDLESS_EXECUTE_RECOURSION
   
           * src/: classes/op.C, include/pa_sql_connection.h,
             include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C,
             sql/pa_sql_driver.h: fixed problem at last: 2connections own
             1driver and set_services fight for driver::fservices. before fix
   
           * src/: classes/op.C, include/pa_config_fixed.h,
             include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
             main/pa_sql_driver_manager.C: found problem at last: 2connections
             own 1driver and set_services fight for driver::fservices. before
             fix
   
           * src/: include/pa_config_fixed.h, include/pa_threads.h,
             targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
             targets/isapi/pa_threads.C, targets/isapi/parser3isapi.dsp: added
             pa_threads.C
   
           * src/include/pa_threads.h: removed targets/parser
   
           * src/include/: pa_array.h, pa_common.h, pa_config_fixed.h,
             pa_config_includes.h, pa_exception.h, pa_exec.h, pa_globals.h,
             pa_hash.h, pa_opcode.h, pa_pool.h, pa_request.h, pa_sapi.h,
             pa_socks.h, pa_sql_connection.h, pa_stack.h, pa_string.h,
             pa_table.h, pa_threads.h: #include "pa_config_includes.h" in all
             headers
   
           * src/: classes/image.C, include/pa_sql_driver_manager.h,
             main/pa_sql_driver_manager.C, main/pa_string.C: wrong includes
             order prevented sqlmanager to see MULTYTHREAD define
   
           * src/: include/pa_config_fixed.h, include/pa_threads.h,
             main/pa_sql_driver_manager.C: SYNCHRONIZED moved closer to caches
             put/gets
   
           * src/: include/pa_hash.h, main/execute.C: removed /*SYNCHRONIZED*/
             from hash.h
   
           * src/: classes/op.C, include/pa_sql_connection.h,
             main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: connection
             from cache ->set_services(&services);
   
   2001-05-16  parser
   
           * src/targets/cgi/parser3.C: z
   
           * src/: include/pa_pool.h, targets/cgi/pa_pool.C: removed pool
             debug, #ifdefed some.  would debug later, on more precise sample
             than stupid: @main[] $name[$z[]] ^for[i](0;10000-2){ $tail[9994]
             $name.$tail[$tail!] $name.$tail } ok3
   
           * src/: include/pa_array.h, main/pa_array.C, targets/cgi/parser3.C:
             removed array debug. before vstring rebasing
   
           * src/: include/pa_array.h, include/pa_string.h, main/execute.C,
             main/pa_array.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C:
             array debugged; adjusted
   
           * src/main/: pa_sql_driver_manager.C, pa_string.C:
             SQL_Driver_manager line no for connect/charset errors
   
   2001-05-15  parser
   
           * src/: include/pa_array.h, include/pa_string.h, main/pa_array.C,
             main/pa_string.C: string+array made linear grows
   
           * src/: include/pa_string.h, main/pa_string.C,
             targets/cgi/pa_pool.C, targets/cgi/parser3.C: think that all must
             grow lineary, not exponentialy
   
           * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C,
             targets/cgi/pa_pool.C, targets/cgi/parser3.C: string fixed bug
             with fullchunk cmps
   
           * src/targets/cgi/: pa_pool.C, parser3.C: main loss here: 5673321/
             70041=           81
   
           * src/: include/pa_string.h, targets/cgi/pa_pool.C,
             targets/cgi/parser3.C: detected huge mem allocation: size/times
             malloc 27809390/368771, calloc 3232/83. would test now
   
           * src/: classes/random.C, main/compile.y, main/execute.C,
             main/pa_request.C, types/pa_value.h, types/pa_vmethod_frame.h:
             numbered params had wrong name - for instance: bad error message
             in ^for[] bad body type. fixed
   
   2001-05-14  parser
   
           * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
             main/untaint.C: ^string.upper|lower[]
   
   2001-05-11  parser
   
           * src/: classes/double.C, classes/image.C, classes/op.C,
             classes/string.C, classes/table.C, classes/unknown.C,
             main/execute.C, types/pa_value.h, types/pa_vbool.h,
             types/pa_vdouble.h, types/pa_vint.h, types/pa_vstring.h,
             types/pa_vunknown.h: op: MAX_LOOPS as_int
   
           * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: fixed some
             .dsp for win32tools
   
   2001-05-11  paf
   
           * src/: classes/classes.cmd, classes/gawk.exe, classes/ls.exe,
             main/bison.exe, targets/isapi/KILL.EXE, targets/isapi/PSTAT.EXE,
             targets/isapi/istart.cmd, targets/isapi/istop.cmd,
             targets/isapi/kill.pl: moved win32 helpers to /win32tools
   
   2001-05-10  paf
   
           * src/include/: pa_common.h, pa_config_includes.h: inline undefed
             for C++, that's all
   
           * src/include/: pa_config_auto.h.in, pa_config_fixed.h,
             pa_config_includes.h: inline wonders
   
           * src/: classes/Makefile.am, classes/hash.C, doc/doxygen.cfg,
             doc/doxygen.cmd: hash.C added
   
           * src/: main/pa_request.C, types/pa_vrequest.C: op configured
   
           * src/main/compile.y: @end grammar: allowed zero strings in control
             menthod
   
           * src/types/: pa_value.h, pa_vclass.h, pa_vstateless_class.h,
             pa_vstateless_object.h: changed priority: field before method
             lookup in vclass & vobject
   
           * src/: doc/doxygen.cmd, main/compile.y, types/pa_vobject.h:
             grammar: priorities changes [lowerd && prior] vobject: now first
             fields, next methods
   
   2001-05-08  paf
   
           * src/main/pa_table.C: table columnname2item on nameless ignored
             bark=false. fixed
   
           * src/: classes/table.C, types/pa_value.h, types/pa_vhash.h,
             types/pa_vmethod_frame.h: hash:default works at last!
   
           * src/: classes/mail.C, classes/table.C, doc/doxygen.cmd,
             main/main.dsp, types/pa_vhash.h, types/pa_vstateless_class.h:
             hash:default
   
           * src/classes/table.C: z
   
           * src/classes/table.C: table:hash always hash of hash now
   
           * src/classes/table.C: table:empty return bool now
   
           * src/: classes/table.C, doc/chm.cmd, include/pa_array.h,
             include/pa_table.h, main/pa_table.C, types/pa_value.h,
             types/pa_vtable.h: table:hash
   
           * src/classes/table.C: table:record have name
   
           * src/: classes/op.C, types/pa_vtable.h: allowed $table.2342734
             returns vunknown
   
           * src/classes/: double.C, int.C, op.C, string.C:
             int,double,string:int[] double[] string:length[] results now have
             hames
   
           * src/: classes/op.C, classes/table.C, main/main.dsp,
             types/pa_vtable.h: removed table:find. table:locate and op:eval
             now return bool
   
           * src/: doc/chm.cmd, main/execute.C, types/pa_value.h: wrong pool
             in method checkparams again. fixed
   
   2001-05-07  paf
   
           * src/doc/chm.cmd: cmd
   
           * src/: classes/image.C, classes/mail.C, classes/string.C,
             doc/chm.cmd, include/pa_table.h, main/pa_table.C,
             types/pa_value.h: method reported errors on wrong pool
   
           * src/main/execute.C: ^var[^class:var.method[]] is not constructor
             now
   
           * src/: doc/ClassExample2.dox, doc/aliased.dox, doc/chm.cmd,
             include/code.h, include/pa_opcode.h, main/compile.C,
             main/compile_tools.h, main/execute.C, types/pa_value.h,
             types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
             types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
             types/pa_vfile.h, types/pa_vform.h, types/pa_vhash.h,
             types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
             types/pa_vmethod_frame.h, types/pa_vobject.h,
             types/pa_vrequest.h, types/pa_vresponse.h,
             types/pa_vstateless_class.h, types/pa_vstring.h,
             types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
             types/pa_wwrapper.h: pa_code.h
   
           * src/doc/: chm.cmd, doxygen.cmd, view.cmd: dox cmd
   
           * src/: classes/string.C, classes/table.C, doc/ClassExample1.dox,
             doc/ClassExample2.dox, doc/ClassExample3.dox, doc/aliased.dox,
             doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
             doc/doxygen.cmd, doc/executor.dox, doc/index.dox,
             doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
             doc/string.dox, doc/targets.dox, doc/value.dox, include/code.h,
             include/pa_hash.h, include/pa_string.h, main/pa_request.C,
             main/pa_sql_driver_manager.C, types/pa_vjunction.h,
             types/pa_vtable.h: dox, split by not clean parts also
   
           * src/: include/pa_table.h, main/pa_table.C, types/pa_value.h,
             types/pa_vtable.h: table: fields, then methods.  so to enable
             'dir' fields & co. more
   
           * src/types/: pa_value.h, pa_vtable.h: table: fields, then methods.
             so to enable 'dir' fields & co.
   
           * src/main/compile.y: grammar: @end
   
   2001-05-04  paf
   
           * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
             doc/ClassExample3.dox, main/execute.C: dox: example1 updated
   
           * src/: classes/classes.h, classes/double.C, classes/file.C,
             classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
             classes/op.C, classes/random.C, classes/response.C,
             classes/string.C, classes/table.C, classes/unknown.C,
             doc/doxygen.cfg, doc/index.dox, main/pa_string.C: removed m-
             method dox
   
   2001-05-03  paf
   
           * src/: classes/classes.h, classes/double.C, doc/aliased.dox,
             doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
             doc/doxygen.txt, doc/executor.dox, doc/index.dox,
             doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
             doc/string.dox, doc/targets.dox, doc/value.dox,
             main/pa_request.C: dox splitted .dox files and added some
   
           * src/: classes/Makefile.am, doc/doxygen.txt: classes/am
   
   2001-05-02  paf
   
           * src/classes/: image.C, table.C: table:dir result are not tainted
             by file_name  language now
   
   2001-04-28  paf
   
           * src/classes/classes.inc: removed classes.inc
   
           * src/: classes/classes.inc, main/Makefile.am: removed pa_methoded
             from .am
   
           * src/classes/classes.awk: skipped classes in .awk
   
           * src/: classes/Makefile.am, classes/classes.C, classes/classes.h,
             classes/classes.inc, classes/double.C, classes/file.C,
             classes/form.C, classes/int.C, classes/op.C, classes/response.C,
             classes/string.C, classes/table.C, classes/unknown.C,
             include/pa_methoded.h, main/main.dsp, main/pa_methoded.C,
             targets/cgi/parser3.C, types/pa_vdouble.h, types/pa_vfile.h,
             types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h: renamed
             pa_methoded back to classes/classes.h
   
           * src/: classes/Makefile.am, main/main.dsp: classes/Makefile.am
   
           * src/: classes/Makefile.am, classes/classes.awk,
             classes/classes.cmd, classes/classes.inc, classes/gawk.exe,
             classes/ls.exe, main/bison.exe: classes.inc autogenerator
   
           * src/: classes/classes.C, classes/classes.h, classes/double.C,
             classes/file.C, classes/form.C, classes/int.C, classes/op.C,
             classes/response.C, classes/string.C, classes/table.C,
             classes/unknown.C, include/pa_methoded.h, main/Makefile.am,
             main/main.dsp, main/pa_methoded.C, targets/cgi/parser3.C,
             types/pa_vdouble.h, types/pa_vfile.h, types/pa_vform.h,
             types/pa_vimage.h, types/pa_vint.h: classes/classes renamet to
             include|main/pa_methoded
   
           * src/: include/pa_string.h, main/pa_globals.C, main/untaint.C,
             targets/cgi/parser3.C, targets/isapi/parser3isapi.C: z
   
           * src/: classes/form.C, include/pa_globals.h, main/pa_globals.C:
             moved some configured data to request::classes_conf moved some
             string crations from globals to M...  [works]
   
           * src/: classes/form.C, classes/mail.C, classes/op.C,
             include/pa_globals.h, include/pa_request.h, main/pa_globals.C,
             main/pa_request.C: moved some configured data to
             request::classes_conf moved some string crations from globals to
             M...
   
           * src/: classes/form.C, include/pa_request.h, main/pa_request.C:
             about to move configured data to special request hash
   
           * src/: classes/classes.C, classes/classes.h, classes/file.C,
             classes/form.C, classes/mail.C, include/pa_request.h,
             main/pa_request.C: configure started
   
           * src/: main/execute.C, types/pa_wcontext.h: Methoded reorganized
             2. todo: methoded-configure
   
           * src/: classes/_double.h, classes/_file.h, classes/_form.h,
             classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
             classes/_random.h, classes/_response.h, classes/_string.h,
             classes/_table.h, classes/_unknown.h, classes/classes.inc,
             classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
             classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
             classes/random.C, classes/response.C, classes/string.C,
             classes/table.C, classes/unknown.C, include/pa_globals.h,
             include/pa_request.h, main/compile.y, main/execute.C,
             main/main.dsp, main/pa_globals.C, main/pa_request.C,
             targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
             types/pa_value.h, types/pa_vcookie.h, types/pa_vdouble.h,
             types/pa_venv.h, types/pa_vfile.h, types/pa_vform.C,
             types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
             types/pa_vrequest.h, types/pa_vresponse.h,
             types/pa_vstateless_class.h, types/pa_vstring.h,
             types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
             classes/classes.C, classes/classes.h: Methoded reorganized. todo:
             methoded-configure
   
           * src/: classes/file.C, classes/table.C, main/compile.y,
             main/execute.C, main/pa_request.C, targets/cgi/parser3.C,
             types/pa_vtable.h, types/pa_wcontext.h: removed ^a.menu{$name}
             ability. now $a{^menu{$name}} or ^a.menu{$a.name}
   
           * src/: classes/_string.h, classes/classes.C, classes/classes.h,
             classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
             classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
             classes/random.C, classes/response.C, classes/string.C,
             classes/table.C, classes/unknown.C, include/pa_request.h,
             main/compile.y, main/execute.C, main/pa_globals.C,
             main/pa_request.C, types/pa_value.h, types/pa_vdouble.h,
             types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
             types/pa_vimage.h, types/pa_vint.h, types/pa_vresponse.h,
             types/pa_vstring.h, types/pa_vtable.h, types/pa_vunknown.h:
             beautifying just compiled. todo: debug, configure
   
   2001-04-27  paf
   
           * src/: classes/file.C, classes/image.C, classes/table.C,
             main/execute.C, main/pa_request.C, types/pa_vstateless_class.h:
             beautifying -99
   
           * src/: classes/_double.h, classes/_form.h, classes/_int.h,
             classes/_response.h, classes/_unknown.h, classes/classes.C,
             classes/classes.h, classes/double.C, classes/file.C,
             classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
             classes/op.C, classes/random.C, classes/response.C,
             classes/string.C, include/pa_globals.h, main/main.dsp,
             main/pa_globals.C, types/pa_vdouble.h, types/pa_vfile.h,
             types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
             types/pa_vresponse.h, types/pa_vstring.h, types/pa_vtable.h,
             types/pa_vunknown.h: beautifying -100
   
           * src/main/compile.y: serge@ found @CLASS bug. fixed
   
           * src/: classes/_file.h, classes/_image.h, classes/_mail.h,
             classes/_op.h, classes/_random.h, classes/_table.h,
             classes/file.C, classes/image.C, classes/int.C, classes/mail.C,
             classes/op.C, classes/random.C, classes/response.C,
             classes/string.C, classes/table.C, classes/unknown.C,
             include/pa_globals.h, main/main.dsp, main/pa_globals.C,
             main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
             types/pa_vcookie.h, types/pa_venv.h, types/pa_vrequest.h: started
             beautifying
   
   2001-04-26  paf
   
           * src/: main/pa_request.C, types/pa_vfile.h: code documentation ++
   
           * src/: doc/doxygen.cfg, include/pa_socks.h, main/pa_socks.C: code
             documentation ++
   
           * src/: classes/_exec.h, doc/doxygen.cfg,
             include/pa_config_fixed.h, include/pa_config_includes.h,
             targets/cgi/pa_pool.C: code documentation ++
   
           * src/: classes/_image.h, classes/op.C, classes/random.C,
             types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
             types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
             types/pa_vform.C, types/pa_vform.h, types/pa_vimage.C,
             types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
             types/pa_vmethod_frame.h, types/pa_vobject.h,
             types/pa_vrequest.C, types/pa_vrequest.h,
             types/pa_vstateless_class.C, types/pa_vstateless_object.h,
             types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.h,
             types/pa_vunknown.h, types/pa_wcontext.C, types/pa_wwrapper.h:
             code documentation ++
   
           * src/: classes/image.C, classes/mail.C, classes/string.C,
             classes/table.C, doc/doxygen.cfg, doc/doxygen.txt,
             include/pa_array.h, include/pa_dir.h, include/pa_string.h,
             main/compile_tools.h, main/pa_common.C, sql/pa_sql_driver.h,
             types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
             types/pa_vhash.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
             types/pa_vobject.h, types/pa_vstateless_class.h,
             types/pa_wcontext.h, types/pa_wwrapper.h: code documentation ++
   
           * src/main/: pa_request.C, pa_string.C: z
   
           * src/: include/pa_common.h, include/pa_types.h,
             main/pa_sql_driver_manager.C: module [and, guess, isapi]
             connection caching fixed.  request-pooled-url were stored into
             global connectioncache
   
   2001-04-25  paf
   
           * src/: doc/doxygen.cfg, doc/doxygen.txt,
             targets/isapi/parser3isapi.C: started doc / [doxygen.txt]
   
           * src/: include/code.h, include/pa_common.h, main/compile.y,
             main/execute.C, main/pa_common.C: -d
   
           * src/: classes/file.C, main/pa_exec.C, targets/cgi/parser3.C:
             illegal call check a bit improved, but still under iis no mapping
             of dir with parser allowed!
   
   2001-04-24  paf
   
           * src/targets/Makefile.am: apache module lib .am
   
           * src/main/pa_exec.C: windows32 buildCommand
   
   2001-04-23  paf
   
           * src/targets/cgi/Makefile.am: win32 conditional
   
           * src/targets/cgi/Makefile.am: win32 conditional
   
           * src/targets/cgi/Makefile.am: liblink
   
           * src/: include/pa_array.h, main/pa_array.C, types/pa_vfile.h:
             vfile fields return type
   
           * src/types/pa_vfile.h: vfile fields return type
   
           * src/include/pa_config_auto.h.in: .h.in
   
           * src/: classes/Makefile, main/Makefile, targets/cgi/Makefile,
             types/Makefile: makefiles removed
   
           * src/: classes/Makefile, main/Makefile, main/pa_string.C,
             targets/cgi/Makefile, types/Makefile: configure.in + makefiles
   
           * src/main/pa_string.C: tested OK /// @test really @b test: s x m
             [tested: i & g ]
   
           * src/: classes/random.C, targets/cgi/parser3.C: redo failed ///
             @test noticed series in isapi, check how initialize_random_class
             is called! [must be called only once]
   
           * src/main/execute.C: operators first! so that ^table.menu{^rem{}}
             would not be 'unknown column'
   
           * src/: classes/table.C, types/pa_vform.C, types/pa_vtable.h: ///
             @test $a.menu{ $a[123] } and $a.menu{^table:set[]...}
   
           * src/: main/pa_request.C, targets/cgi/parser3.C: /// @test with
             commandline start "parser3 a.html" so that ^load[a.cfg] worked!
             [now doesnt]
   
           * src/targets/cgi/parser3.C: cgi cmdline ver
   
           * src/targets/cgi/parser3.C: cgi /// @test disable
             /cgi-bin/parser3/auto.p
   
           * src/main/untaint.C: untaint without charset
   
           * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
             main/pa_common.C: common: file_write /// @test mkdirs
             file_delete rmdirs
   
           * src/main/untaint.C: mail header only once to =?
   
           * src/: classes/image.C, classes/mail.C, include/pa_globals.h,
             include/pa_string.h, main/pa_exec.C, main/pa_request.C,
             main/untaint.C: untaint -        @test optimize whitespaces for
             all but 'html'
   
           * src/: classes/mail.C, include/pa_hash.h, include/pa_string.h,
             main/pa_common.C, main/pa_hash.C, main/pa_request.C,
             main/untaint.C: untaint -  @test mail-header
   
   2001-04-20  paf
   
           * src/: classes/string.C, classes/table.C, include/pa_globals.h,
             include/pa_request.h, include/pa_string.h, main/compile.y,
             main/pa_globals.C, main/pa_request.C, main/pa_string.C,
             targets/cgi/parser3.C: $MAIN:LOCALE
   
           * src/main/untaint.C: z
   
           * src/: main/untaint.C, targets/cgi/parser3.C: fixed header "a/a"
   
   2001-04-19  paf
   
           * src/main/compile_tools.h: $a$b bugfix
   
           * src/targets/cgi/parser3.C: z
   
           * src/classes/file.C: z
   
           * src/: classes/file.C, include/pa_common.h, types/pa_vcookie.C:
             done: header to $fields. waits for header '\' tricks
   
           * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
             main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vcookie.C:
             changed urlencode here and in untaint.C to HTTP standard's " and
             \" mech
   
           * src/: main/pa_request.C, targets/isapi/parser3isapi.C: fixed
             http://alx/~paf/ doesnt load /auto.p
   
   2001-04-18  paf
   
           * src/main/pa_request.C: 1
   
           * src/: main/Makefile.am, main/main.dsp, targets/cgi/Makefile.am:
             linux @alx
   
   2001-04-17  paf
   
           * src/: classes/file.C, classes/image.C, doc/doxygen.cfg,
             include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
             sql/pa_sql_driver.h: SQL_Driver_services renamed. doxygen statics
             enabled
   
           * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
             classes/_exec.h, classes/_file.h, classes/_form.h,
             classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
             classes/_random.h, classes/_response.h, classes/_string.h,
             classes/_table.h, classes/_unknown.h, classes/file.C,
             classes/image.C, classes/mail.C, classes/op.C, classes/random.C,
             include/pa_config_fixed.h, include/pa_config_includes.h,
             include/pa_hash.h, include/pa_sql_driver_manager.h,
             include/pa_version.h, main/Makefile.am, main/compile.y,
             main/pa_common.C, main/pa_exec.C, main/pa_socks.C,
             main/pa_sql_driver_manager.C, sql/Makefile.am,
             sql/pa_sql_driver.h, targets/cgi/Makefile.am,
             targets/cgi/parser3.C, types/Makefile.am, types/pa_vcookie.C,
             types/pa_vform.C, types/pa_vimage.h: exec @jav
   
           * src/: include/pa_sql_driver_manager.h,
             main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
             types/pa_vimage.h: sql driver interface now has initialize(client
             .so)
   
   2001-04-16  paf
   
           * src/Makefile.am: compile2 cygwin
   
           * src/: include/pa_config_includes.h, main/pa_exec.C,
             main/pa_socks.C, targets/cgi/Makefile.am: compile1 cygwin
   
           * src/targets/cgi/Makefile.am: compile0 jav
   
           * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
             classes/_exec.h, classes/_file.h, classes/_form.h,
             classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
             classes/_random.h, classes/_response.h, classes/_string.h,
             classes/_table.h, classes/_unknown.h, classes/image.C,
             classes/mail.C, classes/op.C, classes/random.C,
             include/pa_config_fixed.h, include/pa_config_includes.h,
             include/pa_hash.h, include/pa_version.h, main/Makefile.am,
             main/compile.y, main/pa_common.C, main/pa_exec.C,
             sql/Makefile.am, targets/cgi/Makefile.am, targets/cgi/parser3.C,
             types/Makefile.am, types/pa_vcookie.C, types/pa_vform.C:
             compile-1
   
   2001-04-15  paf
   
           * src/classes/op.C: z
   
           * src/classes/table.C: table:empty +=process
   
           * src/types/pa_value.h: MethodParams !junction
   
           * src/: classes/_string.h, classes/double.C, classes/file.C,
             classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
             classes/random.C, classes/response.C, classes/string.C,
             classes/table.C, classes/unknown.C, main/pa_request.C:
             MethodParams everywhere
   
           * src/: classes/op.C, include/pa_request.h, types/pa_value.h,
             types/pa_vmethod_frame.h: MethodParams in op.C
   
   2001-04-12  paf
   
           * src/: classes/image.C, types/pa_vimage.h: image:font :text
   
           * src/: classes/_unknown.h, classes/unknown.C,
             include/pa_globals.h, main/main.dsp, main/pa_globals.C,
             types/pa_vunknown.h: ^unknown:int[]=0 double[]=0
   
           * src/: classes/image.C, main/pa_hash.C: hash bug fixed
   
           * src/classes/image.C: image:gif now does not have params
   
           * src/classes/image.C:
             image:line/fill/rectangle/bar/replace/polygon/polybar
   
           * src/: classes/image.C, classes/op.C, main/execute.C,
             types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
             for var now written not to r.wcontext, but to r.root cleared
             "entered_object" state
   
   2001-04-11  paf
   
           * src/classes/image.C: image:create image:load
   
           * src/: classes/image.C, main/main.dsp: gd with mem write + image
             just compiled
   
           * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
             todo: gif without file
   
           * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
             started porting to Pooled descendant
   
           * src/: classes/image.C, main/execute.C, main/main.dsp,
             main/pa_request.C, types/pa_vcframe.h, types/pa_vcode_frame.h,
             types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
             types/pa_vmframe.h: libimaging dead end: pil parses header in .py
   
           * src/: classes/image.C, include/pa_globals.h, main/main.dsp,
             main/pa_globals.C, types/pa_vimage.C, types/pa_vimage.h: gd dead
             end. switching to python imaging lib
   
           * src/main/main.dsp: gd+smtp made separate libs
   
           * src/: include/pa_globals.h, include/pa_string.h,
             main/pa_common.C, main/pa_request.C, main/untaint.C,
             types/pa_vfile.C, types/pa_vstring.C: fixed vstring:as_vfile
             length
   
           * src/: classes/mail.C, classes/op.C, targets/cgi/parser3.C,
             types/pa_value.h, types/pa_vfile.C, types/pa_vfile.h,
             types/pa_vform.C, types/pa_vstring.C, types/pa_vstring.h: forced
             UL_FILE_NAME of posted file name
   
           * src/: classes/image.C, main/pa_request.C, types/pa_vform.C: fixed
             post [broke when moved post read to core]
   
   2001-04-10  paf
   
           * src/classes/image.C: image:html done
   
           * src/: classes/image.C, types/pa_vimage.C: jpg measure bugs fixed
   
           * src/classes/image.C: z
   
           * src/: classes/_image.h, classes/image.C, types/pa_vimage.C: image
             forgotten!
   
           * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
             main/pa_request.C, main/pa_string.C, main/untaint.C,
             types/pa_vimage.h: image:measure -90
   
           * src/: classes/_double.h, classes/_file.h, classes/_form.h,
             classes/_int.h, classes/_mail.h, classes/_op.h,
             classes/_random.h, classes/_response.h, classes/_string.h,
             classes/_table.h, classes/file.C, classes/mail.C,
             include/pa_common.h, include/pa_globals.h, main/execute.C,
             main/main.dsp, main/pa_common.C, main/pa_globals.C,
             targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vfile.C,
             types/pa_vfile.h, types/pa_vhash.h, types/pa_vimage.h,
             types/pa_vresponse.h, types/pa_vstring.h: image:measure -100 just
             compiled
   
           * src/classes/mail.C: minor bug with unclear from/to
   
           * src/classes/mail.C: sendmail unix skipping defaults
   
           * src/: classes/mail.C, include/pa_common.h, main/pa_common.C:
             sendmail unix added defaults
   
           * src/classes/mail.C: unix sendmail compiled. todo:testing
   
           * src/: classes/mail.C, main/pa_globals.C: smtp some consts
   
   2001-04-09  paf
   
           * src/: classes/file.C, include/pa_exec.h, include/pa_sapi.h,
             main/main.dsp, main/pa_exec.C, targets/cgi/parser3.C,
             targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
             targets/isapi/parser3isapi.dsp: all targets exec
   
           * src/: include/pa_sapi.h, include/pa_string.h,
             targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
             targets/isapi/parser3isapi.dsp: sapi exec dead end. badly parsed
             args in apache:util.script
   
           * src/include/pa_string.h: written but not tested exec with env for
             unix
   
           * src/: classes/file.C, main/main.dsp, main/pa_request.C,
             targets/cgi/parser3.C: exec win32 env
   
           * src/: classes/file.C, include/pa_hash.h, main/pa_hash.C: exec env
             0
   
           * src/: classes/exec.C, classes/file.C, include/pa_globals.h,
             main/execute.C, main/main.dsp, main/pa_globals.C,
             main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h,
             types/pa_vform.C, types/pa_vstring.C: exec4. todo env
   
           * src/: classes/exec.C, include/pa_common.h, main/pa_common.C,
             main/untaint.C: exec3. decided exec:cgi to move to file:cgi
   
           * src/: classes/_exec.h, main/execute.C, main/pa_globals.C,
             main/pa_request.C, types/pa_vcookie.C, types/pa_vfile.C: exec -2
   
           * src/: classes/_exec.h, classes/exec.C, include/pa_common.h,
             include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
             main/pa_common.C, main/pa_request.C, main/pa_string.C,
             targets/cgi/parser3.C, targets/cgi/parser3.dsp,
             targets/isapi/parser3isapi.C, types/pa_vform.C, types/pa_vform.h:
             exec class just compiled. moved post read to request core
   
           * src/: classes/_op.h, include/pa_dir.h, include/pa_globals.h,
             include/pa_sapi.h, main/main.dsp, main/pa_dir.C,
             main/pa_globals.C, targets/cgi/parser3.C,
             targets/cgi/parser3.dsp: problems with ^exec:cgi post data. they
             are already read by vform
   
   2001-04-08  paf
   
           * src/: classes/file.C, classes/mail.C, classes/string.C,
             include/pa_request.h, include/pa_string.h, main/pa_request.C:
             uuencode. string<<
   
   2001-04-07  paf
   
           * src/classes/mail.C: z
   
           * src/classes/mail.C: z
   
           * src/classes/mail.C: ^mail[$attach
   
           * src/classes/mail.C: ^attach dead end
   
           * src/: include/pa_socks.h, main/main.dsp, main/pa_socks.C,
             targets/cgi/parser3.C, targets/cgi/parser3.dsp,
             targets/isapi/parser3isapi.C: mail:send 1
   
           * src/: classes/mail.C, main/pa_request.C: z
   
           * src/: classes/mail.C, include/pa_globals.h, include/pa_request.h,
             main/main.dsp, main/pa_globals.C, main/pa_request.C: smtp just
             compiled
   
           * src/classes/mail.C: +=
   
           * src/: classes/mail.C, include/pa_string.h: mail:send -1 text
             prepared
   
           * src/: classes/_mail.h, classes/mail.C, include/pa_common.h,
             include/pa_globals.h, include/pa_string.h, main/main.dsp,
             main/pa_common.C, main/pa_globals.C, main/pa_request.C,
             main/untaint.C, types/pa_vcookie.C: mail:send -10 just compiled
   
   2001-04-06  paf
   
           * src/: classes/table.C, include/pa_globals.h, main/pa_globals.C,
             main/pa_string.C: table:dir 1
   
           * src/: classes/table.C, include/pa_dir.h, main/execute.C,
             main/main.dsp, main/pa_dir.C: table:dir 0 [without regexp]
   
           * src/: classes/_op.h, classes/_root.h, classes/op.C,
             classes/root.C, include/pa_globals.h, include/pa_request.h,
             main/compile.C, main/execute.C, main/main.dsp, main/pa_globals.C,
             main/pa_request.C: renamed 'root' to 'op'
   
           * src/classes/: _op.h, op.C: renamed from 'root'
   
           * src/types/pa_valiased.C: another root inherititance skipped
   
           * src/main/: compile.C, compile.y, execute.C: operators are now not
             root methods of parent class. just 'ROOT' class
   
           * src/: classes/random.C, classes/table.C, main/pa_globals.C:
             @office
   
           * src/: main/pa_request.C, sql/pa_sql_driver.h: mysql limit
   
   2001-04-05  paf
   
           * src/: main/execute.C, main/pa_request.C, main/pa_string.C,
             types/pa_value.h, types/pa_vmframe.h, types/pa_wcontext.h:
             constructor flag dropped at get_method_frame and remembered into
             method_frame
   
           * src/: classes/file.C, classes/root.C, classes/string.C,
             classes/table.C, main/pa_request.C: junction to code&expression
             in errors
   
           * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
             main/pa_string.C, targets/isapi/parser3isapi.dsp:
             $LOCALE:ctype[Russian_Russia.1251]
   
           * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
             include/pa_hash.h, include/pa_string.h, main/pa_hash.C,
             main/pa_table.C: hash now not thread-safe.
   
           * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
             main/untaint.C: z
   
           * src/: classes/random.C, classes/root.C, classes/table.C,
             include/pa_sql_connection.h, include/pa_string.h, main/execute.C,
             main/pa_sql_driver_manager.C, main/pa_string.C, main/untaint.C,
             sql/pa_sql_driver.h, types/pa_vmframe.h, types/pa_wcontext.C,
             types/pa_wcontext.h: sql quote. string untaint UL_SQL
   
           * src/: classes/table.C, include/pa_sql_connection.h,
             main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql ping
   
           * src/classes/table.C: select * from hren error contains statement
   
           * src/: classes/table.C, include/pa_sql_connection.h,
             include/pa_types.h, main/pa_sql_driver_manager.C, main/untaint.C,
             sql/pa_sql_driver.h, targets/cgi/parser3.dsp: mysql 0
   
           * src/: classes/root.C, include/pa_sql_connection.h,
             include/pa_sql_driver.h, main/main.dsp,
             main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql driver
             services for conv memory & error reporting
   
   2001-04-04  paf
   
           * src/doc/doxygen.cfg: z
   
           * src/include/pa_sql_driver.h: mysql connect
   
           * src/include/pa_sql_driver.h: mysql info
   
           * src/: classes/root.C, include/pa_sql_driver.h,
             include/pa_sql_driver_manager.h, main/main.dsp,
             main/pa_sql_driver_manager.C: more manager&connection&driver
   
           * src/sql/Makefile.am: forgot to add mysql client
   
           * src/: include/pa_sql_driver.h, include/pa_sql_driver_manager.h,
             main/pa_sql_driver_manager.C: connect&sql -1000 just compiled
             [forgot to add libltdl, added]
   
           * src/: Makefile.am, classes/root.C, classes/string.C,
             classes/table.C, include/pa_globals.h, include/pa_hash.h,
             include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
             include/pa_string.h, include/pa_table.h, main/main.dsp,
             main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
             main/pa_string.C, main/pa_table.C, main/untaint.C: connect&sql
             -1000 just compiled
   
           * src/: classes/random.C, classes/root.C, classes/table.C,
             include/pa_globals.h, include/pa_pool.h, include/pa_request.h,
             main/pa_request.C, types/pa_vclass.h: sql frame -10
   
   2001-04-03  paf
   
           * src/types/pa_vform.C: z
   
           * src/: classes/string.C, types/pa_vform.C: string:match replace
             assigned lang
   
           * src/: classes/string.C, main/compile.y: grammar: fixed to allow
             {}[]< empty []
   
           * src/: classes/file.C, classes/string.C, classes/table.C,
             include/pa_string.h, main/pa_common.C, main/pa_string.C,
             main/untaint.C: string:match replace 2.  string.cstr(forced lang)
   
           * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
             string:match replace strange matches
   
           * src/classes/string.C: string:match replace 0
   
           * src/: classes/string.C, main/pa_string.C: string:match replace
             prepared 2
   
           * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
             string:match replace prepared
   
           * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
             string:match replace -11
   
           * src/: classes/string.C, include/pa_globals.h,
             include/pa_string.h, include/pa_threads.h, main/pa_globals.C,
             main/pa_string.C, targets/isapi/parser3isapi.dsp: string:match 0
   
           * src/: classes/string.C, include/pa_globals.h,
             include/pa_string.h, main/main.dsp, main/pa_globals.C,
             main/pa_string.C: string:match [search] -1 just compiled
   
           * src/types/pa_vstring.C: z
   
           * src/: classes/double.C, classes/file.C, classes/form.C,
             classes/int.C, classes/response.C, classes/root.C,
             classes/string.C, classes/table.C, include/pa_string.h,
             main/pa_string.C: string:match -10 [frame]
   
           * src/: classes/file.C, main/compile_tools.C, main/pa_common.C,
             main/pa_request.C: z
   
           * src/: main/pa_common.C, main/untaint.C, targets/cgi/parser3.C,
             targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h:
             todo/tests
   
           * src/include/pa_common.h: z
   
           * src/: include/pa_globals.h, include/pa_hash.h, main/pa_globals.C,
             main/pa_request.C, targets/cgi/parser3.C,
             targets/isapi/parser3isapi.C, types/pa_vfile.C:
             content-disposition
   
           * src/: include/pa_common.h, include/pa_globals.h,
             main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
             targets/isapi/parser3isapi.C, types/pa_value.h: main:post-process
   
           * src/: include/pa_common.h, include/pa_request.h,
             include/pa_sapi.h, main/main.dsp, main/pa_common.C,
             main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
             types/pa_vfile.C, types/pa_vfile.h, types/pa_vstring.h: vfile in
             response:body
   
           * src/classes/table.C: table:append now uses string::split
   
           * src/classes/table.C: z
   
           * src/: classes/file.C, classes/root.C, classes/string.C,
             classes/table.C, doc/doxygen.cmd, doc/doxygen.txt,
             doc/generate.cmd, include/pa_array.h, include/pa_request.h,
             include/pa_string.h, main/execute.C, main/pa_string.C,
             main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C:
             string::pos & cmp & piece bugs fixed.  string::split new
             table:load separated from set table:set implemented with clean \n
             \t searches
   
   2001-04-02  paf
   
           * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
             types/pa_valiased.C, types/pa_valiased.h, types/pa_vdouble.h,
             types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
             types/pa_vstring.h, types/pa_vtable.h: string::pos. about to use
             it in table:set/load
   
           * src/: classes/table.C, include/pa_array.h, include/pa_string.h,
             include/pa_table.h, main/execute.C, types/pa_value.h: table:join
   
           * src/classes/random.C: random:generate 1
   
           * src/: classes/_random.h, classes/random.C, include/pa_globals.h,
             main/main.dsp, main/pa_globals.C, main/pa_request.C,
             types/pa_value.h: random:generate
   
   2001-03-30  paf
   
           * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
             todo: table flip and append. string::pos
   
           * src/: classes/double.C, classes/file.C, classes/int.C,
             classes/response.C, classes/root.C, classes/string.C,
             classes/table.C, main/compile.y, main/execute.C,
             types/pa_value.h, types/pa_vstateless_class.C,
             types/pa_vstateless_class.h: static|dynamic|any method
             registration
   
           * src/: classes/file.C, classes/table.C, include/pa_table.h,
             main/pa_table.C, types/pa_vstring.h, types/pa_wwrapper.h:
             table:flip
   
   2001-03-29  paf
   
           * src/classes/string.C: string:xsplit forgot that they must result
             in 1 row N column [not vice versa]
   
           * src/classes/string.C: z
   
           * src/classes/string.C: string: rsplit
   
           * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
             string: lsplit
   
           * src/: classes/string.C, include/pa_string.h, main/execute.C,
             main/pa_array.C, main/pa_string.C, types/pa_vtable.h: string:
             lsplit -1
   
           * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
             string: pos
   
           * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
             string: pos -1
   
           * src/: classes/string.C, classes/table.C, include/pa_string.h,
             main/compile.y, main/pa_request.C, main/pa_string.C,
             main/untaint.C: string: left right mid
   
           * src/: classes/string.C, main/compile.y, main/compile_tools.C,
             main/compile_tools.h, main/main.dsp, types/pa_value.h,
             types/pa_vstring.h, types/pa_vunknown.h: empty params allowed. []
             and [;] are different now.
   
           * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
             main/untaint.C: pool.request undone
   
           * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
             main/untaint.C: pool.request
   
   2001-03-28  paf
   
           * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
             targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
             types/pa_value.h, types/pa_vrequest.C, types/pa_vunknown.h:
             $request:browser [.type .version]; unknown.get_double now = 0.
   
           * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
             include/pa_table.h, main/pa_globals.C, main/pa_request.C,
             main/pa_table.C, types/pa_vfile.C, types/pa_vfile.h,
             types/pa_vform.C: file:load autodetection of mime-type by
             user-file-name
   
           * src/: classes/file.C, main/execute.C, main/pa_common.C,
             main/untaint.C, targets/cgi/parser3.C, types/pa_vfile.C,
             types/pa_vfile.h, types/pa_vform.C: file:load 1. tainted
   
           * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
             types/pa_vfile.C, types/pa_vfile.h: started file:load. wrong
             write. must be self.set
   
           * src/: classes/file.C, classes/root.C, classes/table.C,
             include/pa_table.h, main/pa_table.C: table:locate1, file:test
   
           * src/: classes/table.C, include/pa_array.h, include/pa_hash.h,
             include/pa_table.h, main/pa_array.C, main/pa_table.C,
             types/pa_vtable.h: table:locate just compiled
   
   2001-03-27  paf
   
           * src/main/: execute.C, pa_common.C: fixed r/w context of
             code-params2, fixed ntfs hardlink slow dir update
   
           * src/: main/execute.C, types/pa_value.h, types/pa_vmframe.h,
             types/pa_wcontext.h: fixed r/w context of code-params
   
           * src/: classes/table.C, main/execute.C: about to change junction
             rcontext!!
   
           * src/: classes/double.C, classes/int.C, classes/root.C,
             classes/string.C, classes/table.C, main/compile_tools.C,
             main/execute.C, main/pa_request.C, main/untaint.C,
             types/pa_value.h, types/pa_vbool.h, types/pa_vcookie.C,
             types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
             types/pa_vmframe.h, types/pa_vstring.h, types/pa_vtable.h,
             types/pa_vunknown.h: sort 0
   
           * src/types/: pa_valiased.C, pa_valiased.h, pa_vdouble.h,
             pa_vfile.h, pa_vint.h, pa_vresponse.h, pa_vstring.h, pa_vtable.h:
             renamed to are_static_calls_disabled
   
           * src/: classes/table.C, main/pa_common.C, main/pa_request.C,
             targets/cgi/parser3.C, types/pa_value.h, types/pa_vbool.h,
             types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
             types/pa_vstring.h, types/pa_vunknown.h: continue on sort
   
           * src/main/compile.y: fixed minor bug in @mn[][] ...^{
   
           * src/: classes/table.C, include/pa_common.h, main/compile.y:
             started table:sort fixed minor bug in #...^{
   
           * src/: classes/table.C, include/pa_common.h, main/compile.y,
             main/execute.C, main/pa_common.C, main/pa_table.C: table:save
             decided to have as it were. stepped back.  grammar: added 'in'
             'is' 'lt'&co follow-space check
   
   2001-03-26  paf
   
           * src/: classes/file.C, classes/root.C, classes/table.C,
             include/pa_common.h, include/pa_globals.h, include/pa_table.h,
             main/pa_common.C, main/pa_globals.C, main/pa_request.C,
             main/pa_table.C: moved ::save to pa_table.  disabled @auto
             invocation in ^process
   
           * src/main/compile.y: grammar: [] 0params [;] 2 params (was 0)
   
           * src/: classes/table.C, include/pa_array.h, include/pa_table.h,
             main/pa_array.C: table:record
   
           * src/: main/untaint.C, targets/cgi/parser3.C,
             targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
             targets/isapi/pool_storage.h, types/pa_valiased.h,
             types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.h,
             types/pa_vint.h, types/pa_vresponse.h, types/pa_vstring.h,
             types/pa_vtable.h: z
   
           * src/: include/pa_pool.h, main/execute.C, types/pa_valiased.C,
             types/pa_valiased.h, types/pa_value.h, types/pa_vdouble.h,
             types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
             types/pa_vstring.h, types/pa_vtable.h: disabled $a(123)
             $b[$a.CLASS] ^b.inc[123] shit.  allowed no checks in native
             method realisations on 'self' validity - they now can simply
             assume that 'self' is V{Proper} .
   
   2001-03-25  paf
   
           * src/main/untaint.C: z
   
           * src/main/: pa_request.C, untaint.C: moved default typo-table to
             lowlevel - it initialization could be skipped if failed in @auto.
             so that exception report would use some table
   
           * src/main/pa_request.C: table empty lines ignored. system-default
             content type assigned in output:result [can fail in main:auto and
             skipped normal defaults extraction]
   
           * src/: include/pa_string.h, main/compile.y: #comment fixed minor
             bug
   
           * src/main/: pa_globals.C, untaint.C: html-typo - moved all
             processing to table [except preliminary \r\n \r \n replacements
             to "\n"]
   
           * src/: classes/table.C, main/untaint.C: html-typo - decided to
             move all the processing to table
   
           * src/: classes/table.C, include/pa_table.h, main/pa_globals.C,
             main/pa_table.C, main/untaint.C: returned table originating.
             useful for reporting typo table problems origin. think would be
             useful somewhere else
   
           * src/main/untaint.C: typo  \r \r\n \n properly handled
   
           * src/: classes/table.C, include/pa_globals.h, include/pa_string.h,
             include/pa_table.h, main/compile.y, main/compile_tools.C,
             main/compile_tools.h, main/pa_globals.C, main/pa_request.C,
             main/pa_string.C, main/pa_table.C, main/untaint.C,
             types/pa_vcookie.h: typo & typo-default
   
   2001-03-24  paf
   
           * src/main/pa_common.C: z
   
           * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
             targets/cgi/parser3.C: html-typo 2
   
           * src/: doc/doxygen.cfg, doc/doxygen.txt, doc/generate.cmd,
             doc/view.cmd, include/pa_array.h, include/pa_globals.h,
             include/pa_pool.h, include/pa_string.h, include/pa_table.h,
             main/execute.C, main/pa_array.C, main/pa_globals.C,
             main/pa_request.C, main/pa_string.C, main/untaint.C,
             targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
             types/pa_value.h, types/pa_vtable.h: html-typo 0 html-typo 1.
             noticed double default content-type prob. run cgi.cmd tomorrow
             first html-typo sample. detected << problem: they become ltlt too
             fast
   
           * src/main/compile.y: z
   
           * src/main/: compile.y, compile_tools.h: #comment
   
           * src/: classes/file.C, classes/root.C, classes/table.C,
             include/pa_common.h, include/pa_request.h, main/compile.y,
             main/pa_common.C, main/pa_request.C, main/pa_string.C,
             targets/isapi/parser3isapi.C, types/pa_vfile.h: file_read
             stringified
   
           * src/types/pa_valiased.C: decided to String-ify file_read
   
           * src/targets/: cgi/parser3.C, isapi/nt_log_events.mc,
             isapi/parser3isapi.dsp: cgi: sapi::log
   
           * src/: include/pa_sapi.h, main/pa_common.C, main/pa_request.C,
             targets/cgi/parser3.C, targets/isapi/nt_log_events.mc,
             targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp: nt
             error log experiments failed - cgi under iis got no access to
             log. registereventsource simply failed with 5(illegal call) code,
             while worked OK as standalone executable.  isapi: used
             HSE_APPEND_LOG_PARAMETER feature
   
           * src/: include/pa_common.h, include/pa_globals.h,
             main/pa_common.C, main/pa_globals.C, main/pa_request.C,
             targets/isapi/parser3isapi.C: fixed default content-type
             allocation storage
   
           * src/: include/pa_globals.h, include/pa_request.h,
             main/pa_globals.C, main/pa_request.C: z
   
           * src/: include/pa_array.h, include/pa_hash.h,
             include/pa_request.h, main/compile.y, main/pa_array.C,
             main/pa_common.C, main/pa_hash.C, main/pa_request.C,
             types/pa_vcookie.C: cyclic uses ignored. defaulted default
             content-type
   
           * src/main/: compile.y, execute.C, main.dsp: @CLASS equals @BASE.
             sanity
   
           * src/: main/pa_globals.C, types/pa_vclass.C, types/pa_vclass.h,
             types/pa_vstateless_class.C, types/pa_vstateless_class.h: thrown
             away freeze mech.  no danger now for you can't do
             ^request:process[@new-method[] body] trick anymore.  still
             remains $some_instance.process[@new-method[] possibility] but
             would leave it as a feature.  see index for sample
   
           * src/: include/pa_common.h, main/pa_common.C,
             targets/cgi/parser3.C, targets/isapi/parser3isapi.C: auto.p
             monkey every target
   
           * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
             targets/cgi/parser3.C, targets/isapi/pool_storage.h,
             types/pa_vform.C, types/pa_vform.h: auto.p monkey
   
   2001-03-23  paf
   
           * src/: include/pa_pool.h, main/pa_request.C,
             targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
             targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
             targets/isapi/pool_storage.h: isapi: dumb pool storage
   
           * src/targets/isapi/pa_pool.C: decided to continue with extension
   
           * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: isapi: think
             it would be better to rewrite as filter then to deal with pool
   
           * src/: main/main.dsp, targets/isapi/parser3isapi.C: isapi: docroot
             now like in cgi, not from APPL_PHYSICAL_PATH
   
           * src/: classes/root.C, classes/table.C, include/pa_common.h,
             include/pa_config_fixed.h, include/pa_config_includes.h,
             include/pa_string.h, include/pa_threads.h, include/pa_types.h,
             include/pa_version.h, main/compile.y, main/execute.C,
             main/pa_array.C, main/pa_common.C, main/pa_hash.C,
             main/pa_pool.C, main/pa_request.C, main/pa_string.C,
             main/untaint.C, targets/cgi/parser3.C,
             targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vform.C:
             cgi: reinvent document_root and request_uri under iis. autoconf
             updated. introducing ap_config_includes
   
           * src/targets/cgi/parser3.C: cgi: reinvent document_root under iis
   
           * src/targets/cgi/parser3.C: cgi: only one pool now
   
           * src/: include/pa_globals.h, include/pa_sapi.h, main/main.dsp,
             main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
             targets/isapi/parser3isapi.C, types/pa_vcookie.C,
             types/pa_venv.h, types/pa_vform.C: sapi made object
   
           * src/: include/pa_globals.h, main/pa_request.C,
             targets/cgi/parser3.C, targets/cgi/parser3.dsp,
             targets/isapi/parser3isapi.C, types/pa_vcookie.C,
             types/pa_venv.h, types/pa_vform.C: all: sapi beauty
   
           * src/: main/pa_request.C, targets/cgi/parser3.C,
             targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
             isapi minor env beauty
   
           * src/: main/pa_request.C, targets/cgi/parser3.C,
             targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
             isapi document_root 0
   
   2001-03-22  paf
   
           * src/targets/isapi/parser3isapi.C: isapi keep-alive
   
           * src/targets/: cgi/vform_fields_fill.C, cgi/vform_fields_fill.h,
             isapi/parser3isapi.C: z
   
           * src/: include/pa_pool.h, main/pa_request.C,
             targets/cgi/parser3.C, targets/isapi/parser3isapi.C: isapi 1
   
           * src/targets/isapi/: KILL.EXE, PSTAT.EXE, istart.cmd, istop.cmd,
             kill.pl: isapi added utils
   
           * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/parser3.C,
             targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
             types/pa_vform.C: isapi 0
   
           * src/: include/pa_pool.h, targets/cgi/pa_pool.C,
             targets/cgi/parser3.C, targets/cgi/parser3.dsp,
             targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
             targets/isapi/parser3isapi.def, targets/isapi/parser3isapi.dsp:
             started isapi
   
           * src/: include/pa_globals.h, main/pa_common.C, main/pa_request.C:
             some comments
   
           * src/: include/pa_globals.h, include/pa_request.h,
             include/pa_types.h, main/pa_globals.C, main/pa_request.C,
             targets/cgi/parser3.C, types/pa_vcookie.C: config of auto.p path:
             parser_root_auto_path parser_site_auto_path
   
           * src/types/pa_vcookie.C: cookie attr decoded
   
   2001-03-21  paf
   
           * src/targets/cgi/parser3.C: z
   
           * src/include/pa_globals.h: post. todo: config of auto.p path
   
           * src/: include/pa_globals.h, targets/cgi/parser3.C,
             types/pa_venv.h: in cookie & env. todo:post
   
           * src/: Makefile.am, classes/Makefile.am, classes/file.C,
             classes/root.C, classes/table.C, include/pa_array.h,
             include/pa_common.h, include/pa_globals.h, include/pa_pool.h,
             include/pa_request.h, include/pa_string.h, main/Makefile.am,
             main/compile.y, main/execute.C, main/main.dsp, main/pa_common.C,
             main/pa_globals.C, main/pa_request.C, main/pa_string.C,
             main/pa_table.C, main/untaint.C, targets/Makefile.am,
             targets/cgi/Makefile.am, targets/cgi/parser3.C,
             targets/cgi/parser3.dsp, types/Makefile.am, types/pa_vcookie.C,
             types/pa_vform.C, types/pa_vstring.h, types/pa_wwrapper.h:
             shifted apache branch on main trunc
   
           * src/: include/pa_common.h, include/pa_globals.h,
             include/pa_pool.h, include/pa_request.h, main/main.dsp,
             main/pa_common.C, main/pa_request.C, targets/cgi/parser3.dsp,
             types/pa_vcookie.C, types/pa_vform.C, types/pa_vstring.h:
             starting mod_parser3
   
           * src/targets/cgi/parser3.C: starting mod_parser3
   
   2001-03-20  paf
   
           * src/: main/pa_common.C, targets/cgi/Makefile.am,
             targets/cgi/parser3.C: automake compiled and works. todo:make
             win32 ifdefs work and add ifdef unistd
   
           * src/: classes/table.C, include/pa_common.h, include/pa_request.h,
             main/Makefile.am, main/pa_common.C, main/pa_request.C,
             main/pa_table.C, targets/cgi/Makefile.am, targets/cgi/parser3.C:
             z
   
           * src/: include/pa_request.h, main/Makefile.am, main/compile.y,
             main/execute.C, main/pa_common.C, types/Makefile.am: removing
             locking
   
           * src/: classes/Makefile.am, types/Makefile.am: z
   
           * src/: Makefile.am, classes/file.C, classes/root.C,
             classes/table.C, include/pa_array.h, include/pa_request.h,
             include/pa_string.h, main/Makefile.am, main/execute.C,
             main/pa_common.C, main/pa_globals.C, main/pa_request.C,
             main/pa_string.C, main/untaint.C, targets/Makefile.am,
             targets/cgi/Makefile.am, targets/cgi/parser3.C,
             types/pa_vcookie.C, types/pa_wwrapper.h: String::UL_
   
           * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
             main/pa_request.C, types/pa_vfile.h: ^table:save
   
           * src/: classes/file.C, classes/table.C, include/pa_array.h,
             include/pa_common.h, include/pa_request.h, include/pa_string.h,
             include/pa_table.h, include/pa_threads.h, main/pa_globals.C,
             main/untaint.C, types/pa_valiased.h, types/pa_value.h,
             types/pa_vform.h: z
   
           * src/include/pa_string.h: z
   
           * src/: classes/_request.h, classes/request.C, main/main.dsp,
             main/pa_globals.C, types/pa_value.h, types/pa_vform.h,
             types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
             :Value
   
           * src/: classes/_request.h, classes/request.C, main/pa_globals.C,
             types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
             :VStateless_object
   
           * src/: classes/_response.h, classes/response.C, main/pa_globals.C,
             types/pa_vform.h, types/pa_vresponse.h: VResponse moved to
             :VStateless_object
   
           * src/: main/main.dsp, targets/cgi/parser3.dsp,
             types/pa_valiased.C, types/pa_vform.h: commented VForm
   
           * src/: targets/cgi/pa_vform.C, types/pa_valiased.C,
             types/pa_valiased.h, types/pa_value.h,
             types/pa_vstateless_class.C, types/pa_vstateless_class.h,
             types/pa_vstateless_object.h: moved common get_element part from
             stateless object&class into VAliased
   
           * src/: classes/_env.h, classes/_table.h, classes/env.C,
             classes/table.C, main/execute.C, main/main.dsp,
             main/pa_globals.C, main/pa_request.C, types/pa_value.h,
             types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.h: VEnv is
             now :Value
   
           * src/: classes/_cookie.h, classes/_table.h, classes/cookie.C,
             main/execute.C, main/main.dsp, main/pa_globals.C,
             types/pa_vcookie.C, types/pa_vcookie.h: VCookie is now :Value
   
           * src/types/: pa_vfile.C, pa_vfile.h, pa_vstateless_object.h: vfile
             doxx
   
           * src/: classes/_file.h, classes/file.C, include/pa_types.h,
             main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
             types/pa_valiased.h, types/pa_vfile.C, types/pa_vfile.h,
             types/pa_vstateless_class.h, types/pa_vstateless_object.h: \ to /
             and ^file:save
   
   2001-03-19  paf
   
           * src/types/pa_vfile.C: z
   
           * src/: classes/file.C, classes/request.C, classes/table.C,
             include/pa_string.h, main/main.dsp, main/pa_pool.C,
             main/pa_request.C, main/untaint.C, types/pa_value.h,
             types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C: file 1
   
           * src/: classes/table.C, include/pa_common.h, include/pa_globals.h,
             include/pa_string.h, include/pa_table.h, main/main.dsp,
             main/pa_common.C, main/pa_globals.C, types/pa_value.h,
             types/pa_vcookie.h, types/pa_venv.h, types/pa_vform.C,
             types/pa_vform.h, types/pa_vrequest.h, types/pa_vtable.h,
             classes/_file.h, classes/file.C, types/pa_vfile.C,
             types/pa_vfile.h: file class just compiled
   
           * src/: classes/table.C, include/pa_pool.h, include/pa_request.h,
             include/pa_table.h, include/pa_types.h, main/execute.C,
             main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
             types/pa_vclass.h, types/pa_vform.C, types/pa_vstateless_class.h,
             types/pa_vstateless_object.h: ^table:set{default level: TABLE}
   
           * src/include/pa_pool.h: z
   
           * src/: include/pa_hash.h, include/pa_types.h, main/pa_common.C,
             main/pa_hash.C, main/pa_request.C, types/pa_vcookie.C: renamed
             Hash::Value to Val so to doxygen would finlly stop confusing
             those Value-s
   
           * src/: include/code.h, include/pa_array.h, include/pa_common.h,
             include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
             include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
             include/pa_string.h, include/pa_table.h, include/pa_threads.h,
             include/pa_types.h, main/compile.C, main/compile.y,
             main/compile_tools.C, main/compile_tools.h, main/execute.C,
             main/pa_array.C, main/pa_common.C, main/pa_exception.C,
             main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
             main/pa_request.C, main/pa_string.C, main/pa_table.C,
             main/untaint.C, types/pa_valiased.h, types/pa_value.h: z
   
           * src/types/: pa_valiased.h, pa_vbool.h: doc: Value and it's
             derivates somehow unlinked. don't know why yet
   
           * src/: include/code.h, include/pa_array.h, include/pa_pool.h,
             include/pa_string.h, include/pa_threads.h, main/compile.C,
             main/compile.y, main/compile_tools.C, main/compile_tools.h,
             main/execute.C, main/pa_array.C, main/pa_common.C,
             main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
             main/pa_pool.C, main/pa_request.C, main/pa_string.C,
             main/pa_table.C, main/untaint.C, types/pa_value.h: auto @brief
   
           * src/: classes/root.C, classes/table.C, main/pa_exception.C,
             main/pa_request.C, targets/cgi/parser3.C, types/pa_vbool.h,
             types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdouble.h,
             types/pa_venv.h, types/pa_vform.h, types/pa_vint.h,
             types/pa_vrequest.h: doc: detected Value derivates prob
   
           * src/include/pa_globals.h: z
   
           * src/: classes/_request.h, classes/request.C, include/code.h,
             include/pa_array.h, include/pa_common.h, include/pa_exception.h,
             include/pa_globals.h, include/pa_hash.h, include/pa_pool.h,
             include/pa_request.h, include/pa_stack.h, include/pa_string.h,
             include/pa_table.h, include/pa_threads.h, include/pa_types.h,
             main/execute.C, main/pa_pool.C, main/pa_request.C,
             main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
             types/pa_value.h, types/pa_vform.C: doxygen include/, Value
   
   2001-03-18  paf
   
           * src/: classes/cookie.C, types/pa_vcookie.C, types/pa_vcookie.h:
             cookie: allowed access to hash-assigned
   
           * src/targets/cgi/parser3.C: z
   
           * src/: classes/_cookie.h, classes/cookie.C, include/pa_common.h,
             include/pa_globals.h, include/pa_request.h, include/pa_string.h,
             include/pa_types.h, main/main.dsp, main/pa_common.C,
             main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
             main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
             types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
             types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
             types/pa_vunknown.h: cookie class
   
           * src/main/pa_request.C: zero length output allowed
   
           * src/: classes/response.C, main/pa_request.C, types/pa_value.h,
             types/pa_vhash.h, types/pa_vresponse.h: ^response:clear[]
   
           * src/: classes/root.C, main/pa_request.C: taint forgotten forced
             lang switch
   
           * src/: classes/root.C, include/pa_globals.h, include/pa_string.h,
             main/pa_globals.C, main/pa_request.C, main/pa_string.C,
             types/pa_value.h, types/pa_vhash.h:
             $defautl[$content-type[$value[text/html] $charset[windows-1251]]
   
           * src/main/execute.C: z
   
           * src/: classes/root.C, main/pa_request.C, main/untaint.C,
             targets/cgi/parser3.C: taint[uri
   
           * src/: classes/request.C, classes/response.C, classes/root.C,
             include/pa_common.h, include/pa_globals.h, include/pa_request.h,
             include/pa_string.h, main/pa_common.C, main/pa_globals.C,
             main/pa_request.C, targets/cgi/parser3.C: ^taint 0
   
           * src/: classes/root.C, classes/string.C, include/pa_string.h,
             main/pa_globals.C, main/pa_request.C, main/pa_string.C,
             types/pa_vdouble.h, types/pa_vform.C, types/pa_vint.h,
             types/pa_vstateless_class.C: convinient string(pool, char *src,
             bool tainted) ctor
   
           * src/: include/pa_hash.h, include/pa_request.h,
             include/pa_string.h, main/pa_globals.C, main/pa_hash.C,
             main/pa_request.C, main/pa_string.C, main/untaint.C,
             targets/cgi/parser3.C: proper @exceptions params tainting
   
           * src/: include/pa_hash.h, main/pa_hash.C, targets/cgi/parser3.C:
             response fields to header
   
           * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
             z
   
           * src/: classes/_response.h, classes/response.C,
             include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
             main/compile.C, main/compile.y, main/execute.C, main/main.dsp,
             main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
             targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_value.h,
             types/pa_vhash.h, types/pa_vrequest.h, types/pa_vresponse.h:
             $response: 0  request::core exception rethrow
   
   2001-03-16  paf
   
           * src/: main/execute.C, main/main.dsp, types/pa_value.h,
             types/pa_vrequest.h: native method' class call with less params
             then needed error reporting
   
           * src/: classes/_request.h, classes/request.C,
             include/pa_globals.h, include/pa_request.h, main/execute.C,
             main/main.dsp, main/pa_globals.C, main/pa_request.C,
             targets/cgi/parser3.C, types/pa_vform.C, types/pa_vrequest.C,
             types/pa_vrequest.h: $request : query :uri
   
           * src/: include/pa_globals.h, main/execute.C, main/pa_globals.C,
             types/pa_value.h, types/pa_vcframe.h, types/pa_vmframe.h,
             types/pa_wcontext.h: $result
   
           * src/: main/execute.C, types/pa_vmframe.h: if(in "/news/")
   
           * src/: classes/double.C, include/code.h, main/compile.y,
             main/compile_tools.C, main/compile_tools.h, main/execute.C: ()
             and {} param wcontext conflict fixed by OP_EXPR_CODE__STORE_PARAM
   
           * src/: include/code.h, include/pa_hash.h, include/pa_request.h,
             main/compile.y, main/execute.C, types/pa_value.h,
             types/pa_vhash.h, types/pa_vstring.h, types/pa_vtable.h,
             types/pa_wcontext.C, types/pa_wcontext.h: see () and {} param
             wcontext conflict
   
           * src/: main/execute.C, types/pa_value.h,
             types/pa_vstateless_object.h, types/pa_vstring.h: disabled
             $string.field
   
   2001-03-15  paf
   
           * src/main/pa_request.C: news sample
   
           * src/: main/compile.y, main/execute.C, main/pa_request.C,
             targets/cgi/parser3.C, types/pa_vstring.h: @exception
   
           * src/main/: compile.y, execute.C: z
   
           * src/: main/compile.y, main/pa_request.C, targets/cgi/parser3.C,
             types/pa_vstring.h: pre-pre-pre-beta cgi under win32 apache pre
             pre pre works
   
           * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
             targets/cgi/parser3.C, types/pa_vform.C, types/pa_vform.h: vform
             fillfields just compiled
   
   2001-03-14  paf
   
           * src/: include/pa_request.h, main/pa_request.C,
             targets/cgi/parser3.C: z
   
           * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
             targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h,
             types/pa_vstring.h: limits -1
   
           * src/: include/pa_globals.h, include/pa_request.h,
             include/pa_types.h, main/main.dsp, main/pa_globals.C,
             main/pa_request.C, targets/cgi/parser3.C,
             targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h:
             request_info -1
   
           * src/: include/pa_globals.h, main/pa_globals.C,
             targets/cgi/parser3.C, targets/cgi/parser3.dsp,
             targets/cgi/vform_fields_fill.C, targets/cgi/vform_fields_fill.h:
             vform_fields_fill
   
           * src/targets/cgi/parser3.C: #  if MSVC
   
           * src/: include/pa_common.h, include/pa_types.h, main/pa_request.C,
             targets/cgi/parser3.C: PATH_DELIMITER_CHAR
   
           * src/targets/cgi/parser3.C: z
   
           * src/: include/core.h, include/pa_globals.h, include/pa_pool.h,
             include/pa_string.h, include/pa_types.h, main/compile.y,
             main/core.C, main/main.dsp, main/pa_globals.C, main/pa_request.C,
             targets/cgi/pa_vform.C, targets/cgi/parser3.C,
             targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vform.h,
             types/pa_vunknown.h: global handler, exceptions in parser3
   
   2001-03-13  paf
   
           * src/: classes/form.C, main/compile.y, main/core.C,
             types/pa_value.h, types/pa_vclass.h, types/pa_venv.h,
             types/pa_vform.h, types/pa_vstateless_class.C,
             types/pa_vstateless_class.h: form:fields removed. use $form.CLASS
             instead
   
           * src/: include/core.h, include/pa_common.h, include/pa_request.h,
             main/core.C, main/execute.C, main/main.dsp, main/pa_request.C,
             targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vform.h:
             started cgi target
   
           * src/: include/core.h, include/pa_common.h, include/pa_request.h,
             main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C:
             before error show with parser
   
           * src/: classes/_form.h, classes/form.C, include/core.h,
             include/pa_request.h, main/core.C, main/pa_request.C,
             targets/cgi/parser3.C, targets/cgi/parser3.dsp: z
   
           * src/targets/cgi/: parser.dsp, parser3.dsp: z
   
           * src/targets/cgi/: Makefile.am, pa_pool.C, pa_vform.C, parser.dsp,
             parser3.C: renamed targets/ parser to cgi
   
           * src/: classes/double.C, classes/env.C, classes/int.C,
             classes/root.C, classes/string.C, classes/table.C,
             include/pa_request.h, types/pa_vhash.h: z
   
           * src/: classes/_env.h, classes/env.C, classes/root.C,
             include/core.h, include/pa_pool.h, include/pa_request.h,
             main/compile.C, main/compile.y, main/core.C, main/main.dsp,
             main/pa_common.C, main/pa_request.C, types/pa_value.h,
             types/pa_venv.h, types/pa_vstateless_class.h: started $form:
             [historical moment :)]
   
           * src/: include/code.h, include/pa_string.h, main/compile.y,
             main/execute.C, main/pa_string.C: 'value is type' expr operator
   
           * src/types/pa_venv.h: $ENV 1
   
           * src/main/execute.C: z
   
           * src/: main/execute.C, types/pa_value.h, types/pa_venv.h: for
             future methods of ENV constructor if
   
           * src/: include/pa_request.h, types/pa_venv.h: $ENV 0.1 stateless
             class
   
           * src/: classes/_double.h, classes/_env.h, classes/_int.h,
             classes/_root.h, classes/_string.h, classes/_table.h,
             classes/double.C, classes/env.C, classes/int.C, classes/root.C,
             classes/string.C, classes/table.C, include/pa_request.h,
             main/compile.C, main/compile_tools.h, main/core.C,
             main/execute.C, main/main.dsp, main/pa_request.C,
             types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
             types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
             types/pa_vobject.h, types/pa_vstateless_class.C,
             types/pa_vstateless_class.h, types/pa_vstateless_object.h,
             types/pa_wcontext.h: $ENV: re 0, stateless classes
   
           * src/: classes/_double.h, classes/_env.h, classes/_int.h,
             classes/_root.h, classes/_string.h, classes/_table.h,
             classes/double.C, classes/env.C, classes/int.C, classes/root.C,
             classes/string.C, classes/table.C, include/pa_request.h,
             main/compile.C, main/compile_tools.h, main/core.C,
             main/execute.C, main/main.dsp, main/pa_request.C,
             types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
             types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
             types/pa_vobject.h, types/pa_vstateless_class.C,
             types/pa_vstateless_class.h, types/pa_vstateless_object.h,
             types/pa_wcontext.h: $ENV: re 0, stateless classes
   
           * src/: include/pa_request.h, main/compile.C, main/execute.C,
             main/pa_request.C, types/pa_value.h, types/pa_vmframe.h: fixed
             yesterdays bad decision on execute_static_method
   
           * src/: classes/table.C, include/pa_types.h, main/pa_request.C: z
   
           * src/: classes/double.C, classes/int.C, classes/root.C,
             types/pa_vdouble.h, types/pa_vint.h: Int,Double  dec mul div mod
   
           * src/main/pa_request.C: z
   
           * src/: classes/root.C, classes/table.C, include/pa_exception.h,
             include/pa_pool.h: skipped_restructure_exceptions_dead_end
   
           * src/: classes/root.C, classes/table.C, include/pa_exception.h,
             include/pa_pool.h, main/pa_request.C:
             restructure_exceptions_dead_end
   
           * src/: classes/root.C, main/compile.y: ^if required junctions.
             allowed ; inside {} to break params
   
           * src/classes/root.C: ^eval
   
           * src/: classes/_string.h, classes/double.C, classes/int.C,
             classes/string.C, main/execute.C, types/pa_wcontext.h: int doube
             string ^format
   
           * src/: main/execute.C, types/pa_wcontext.h: constructing flag not
             'bad' but not 'enough'
   
           * src/: classes/double.C, classes/root.C, classes/table.C,
             include/pa_common.h, include/pa_types.h, main/compile.y,
             main/pa_common.C, main/pa_request.C, main/untaint.C,
             types/pa_vdouble.h, types/pa_vint.h, types/pa_vtable.h,
             types/pa_wwrapper.h: think constructing flag as is  is bad
   
           * src/: classes/double.C, classes/int.C, classes/root.C,
             classes/string.C, classes/table.C, main/core.C, main/execute.C,
             types/pa_vint.h: ^for
   
   2001-03-12  paf
   
           * src/classes/table.C: table ^empty
   
           * src/: classes/table.C, include/pa_table.h: table ^menu
   
           * src/: classes/root.C, classes/table.C, types/pa_vtable.h: table
             ^offset ^line ^count
   
           * src/classes/root.C: ^round()  ^floor()        ^ceiling()
             ^abs()  ^sign()
   
           * src/classes/: root.C, table.C: ^use
   
           * src/: classes/root.C, classes/table.C, include/pa_request.h,
             main/compile.y, main/core.C, main/execute.C, types/pa_vclass.h,
             types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
             ^while. switched off wcontext.constructing after write(value) or
             auto-vhash-constructing
   
           * src/: classes/root.C, classes/table.C, include/pa_request.h,
             main/pa_request.C: fail_if_junction_ helper func
   
           * src/: classes/root.C, classes/table.C, include/pa_common.h,
             include/pa_request.h, main/execute.C, main/main.dsp,
             main/pa_common.C, main/pa_request.C: ^process error point by
             actual method_name, not source.  ^load
   
           * src/types/pa_vtable.h: table: no, better with string in cells...
   
           * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C,
             classes/_table.h, classes/table.C, main/untaint.C: z
   
           * src/: classes/root.C, include/pa_common.h, include/pa_string.h,
             include/pa_table.h, main/core.C, main/execute.C,
             main/pa_common.C, main/pa_request.C, main/pa_table.C,
             types/pa_value.h: table:set 0
   
           * src/: classes/root.C, include/core.h, include/pa_array.h,
             include/pa_request.h, include/pa_table.h, main/core.C,
             main/main.dsp, main/pa_request.C, main/pa_table.C,
             types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
             types/pa_vdouble.h, types/pa_vint.h, types/pa_vmframe.h,
             types/pa_vstring.h: freeze, ^table:create[] -1
   
           * src/: classes/root.C, types/pa_value.h: z
   
           * src/: classes/root.C, main/execute.C, types/pa_vclass.h: used
             get_method in couple places optimizing them
   
           * src/classes/root.C: z
   
           * src/: classes/root.C, types/pa_vclass.h: process temp main
             zeroing
   
           * src/: classes/double.C, classes/int.C, classes/root.C,
             classes/string.C, include/pa_common.h, include/pa_request.h,
             include/pa_string.h, include/pa_types.h, main/compile.C,
             main/compile.y, main/compile_tools.h, main/execute.C,
             main/pa_common.C, main/pa_request.C, types/pa_value.h,
             types/pa_vmframe.h: ^process. actual names to store param and
             check_actual_numbered_params for better place diagnostics
   
           * src/: classes/root.C, main/execute.C, main/main.dsp: setname for
             method-junctions bug fixed
   
           * src/types/: pa_vdouble.h, pa_vint.h, pa_vobject.h,
             pa_vstateless_object.h, pa_vstring.h: stateless_object
   
   2001-03-11  paf
   
           * src/: main/main.dsp, types/pa_value.h, types/pa_vdouble.h,
             types/pa_vint.h, types/pa_vobject.h, types/pa_vstring.h: VString
             VDouble VInt base now VObject_base - without fields
   
           * src/: classes/root.C, include/core.h, main/core.C: z
   
           * src/: classes/double.C, classes/int.C, classes/root.C,
             classes/string.C, include/core.h, include/pa_hash.h,
             include/pa_pool.h, include/pa_request.h, include/pa_string.h,
             main/compile.C, main/core.C, main/pa_request.C: ^untaint 0
   
           * src/: classes/double.C, classes/int.C, classes/root.C,
             include/pa_request.h, main/execute.C: intercept_string
   
           * src/: classes/double.C, classes/int.C, classes/root.C,
             types/pa_vclass.C, types/pa_vclass.h: add_native_method helper
   
           * src/: classes/double.C, classes/int.C, include/pa_request.h:
             ^inc-s(expr)
   
           * src/: classes/_double.h, classes/_env.h, classes/_int.h,
             classes/_root.h, classes/_string.h, classes/double.C,
             classes/env.C, classes/int.C, classes/root.C, classes/string.C,
             include/code.h, include/core.h, include/pa_array.h,
             include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
             include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
             include/pa_string.h, include/pa_table.h, include/pa_threads.h,
             include/pa_types.h, main/compile.C, main/compile.y,
             main/compile_tools.C, main/compile_tools.h, main/core.C,
             main/execute.C, main/pa_array.C, main/pa_common.C,
             main/pa_exception.C, main/pa_hash.C, main/pa_pool.C,
             main/pa_request.C, main/pa_string.C, main/pa_table.C,
             types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
             types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
             types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
             types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
             types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
             types/pa_wcontext.h, types/pa_wwrapper.h: headers updated
   
           * src/: main/pa_request.C, types/pa_vhash.h: z
   
           * src/: include/core.h, include/pa_request.h, main/core.C,
             main/main.dsp, main/pa_request.C: renamed AUTO: to MAIN:
   
           * src/: include/pa_valiased.h, include/pa_value.h,
             include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
             include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
             include/pa_vjunction.h, include/pa_vmframe.h,
             include/pa_vobject.h, include/pa_vstring.h,
             include/pa_vunknown.h, include/pa_wcontext.h,
             include/pa_wwrapper.h, main/compile.y, main/core.C,
             main/main.dsp, main/pa_cframe.C, main/pa_request.C,
             main/pa_value.C, main/pa_vclass.C, main/pa_wcontext.C,
             types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
             types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
             types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
             types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
             types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
             types/pa_wcontext.h, types/pa_wwrapper.h: splitted types from
             include/
   
   2001-03-10  paf
   
           * src/: include/core.h, include/pa_request.h, main/core.C,
             main/pa_request.C: run+auto=run
   
           * src/: classes/root.C, include/pa_request.h: minor if junction bug
   
           * src/: classes/_double.h, classes/_env.h, classes/_int.h,
             classes/_root.h, classes/_string.h, classes/double.C,
             classes/env.C, classes/int.C, classes/root.C, classes/string.C,
             include/code.h, include/core.h, include/pa_array.h,
             include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
             include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
             include/pa_string.h, include/pa_table.h, include/pa_threads.h,
             include/pa_types.h, include/pa_valiased.h, include/pa_value.h,
             include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
             include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
             include/pa_vjunction.h, include/pa_vmframe.h,
             include/pa_vobject.h, include/pa_vstring.h,
             include/pa_vunknown.h, include/pa_wcontext.h,
             include/pa_wwrapper.h, main/compile.C, main/compile.y,
             main/compile_tools.C, main/compile_tools.h, main/core.C,
             main/execute.C, main/pa_array.C, main/pa_cframe.C,
             main/pa_common.C, main/pa_exception.C, main/pa_hash.C,
             main/pa_pool.C, main/pa_request.C, main/pa_string.C,
             main/pa_table.C, main/pa_value.C, main/pa_vclass.C,
             main/pa_wcontext.C: sources header
   
           * src/main/pa_request.C: auto..
   
           * src/: include/pa_request.h, main/compile.C, main/compile.y,
             main/pa_request.C: auto tree0
   
           * src/: include/core.h, include/pa_request.h, main/compile.y,
             main/core.C, main/pa_request.C: names to core.C
   
           * src/: include/core.h, include/pa_common.h, include/pa_pool.h,
             include/pa_request.h, main/core.C, main/execute.C,
             main/pa_common.C, main/pa_request.C: root auto.p loaded
   
           * src/: include/code.h, include/pa_request.h, include/pa_vint.h,
             include/pa_vjunction.h, include/pa_vstring.h, main/compile.y,
             main/compile_tools.C, main/compile_tools.h, main/execute.C:
             optimized from OP_STRING+OP_WRITE to OP_STRING__WRITE
   
           * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
             @auto[] realised. auto.p scan togo
   
           * src/: include/pa_request.h, main/execute.C: autocalc
             code-junctions result now have names
   
           * src/: classes/double.C, classes/int.C, classes/root.C,
             classes/string.C, include/pa_request.h, include/pa_string.h,
             include/pa_wcontext.h, main/compile.y, main/execute.C,
             main/pa_string.C, main/pa_wcontext.C: tainting 0
   
           * src/classes/env.C: env:file/line
   
           * src/: include/core.h, include/pa_array.h, include/pa_hash.h,
             include/pa_request.h, include/pa_value.h, include/pa_vcframe.h,
             include/pa_vdouble.h, include/pa_vint.h, include/pa_vstring.h,
             include/pa_vunknown.h, include/pa_wcontext.h, main/compile.y,
             main/compile_tools.C, main/compile_tools.h, main/core.C,
             main/execute.C, main/main.dsp, main/pa_cframe.C,
             main/pa_request.C, main/pa_wcontext.C: const fight finished
   
           * src/include/pa_vclass.h: const fight to go
   
           * src/: classes/_env.h, classes/env.C, classes/root.C,
             include/pa_request.h, include/pa_vclass.h, main/core.C,
             main/main.dsp: env0
   
           * src/: classes/_double.h, classes/_int.h, classes/_root.h,
             classes/_string.h, classes/double.C, classes/int.C,
             classes/root.C, classes/string.C, include/pa_request.h,
             include/pa_string.h, include/pa_types.h, include/pa_vcframe.h,
             include/pa_wcontext.h, main/core.C, main/main.dsp,
             main/pa_cframe.C, main/pa_string.C, main/pa_vclass.C,
             main/pa_wcontext.C: ^lang prepare0
   
   2001-03-09  paf
   
           * src/: include/pa_vmframe.h, main/compile.C, main/execute.C: expr
             construct proper naming
   
           * src/: classes/_double.h, classes/_int.h, classes/_string.h,
             classes/double.C, classes/int.C, classes/root.C,
             classes/string.C, include/code.h, include/pa_value.h,
             include/pa_vbool.h, include/pa_vdouble.h, include/pa_vint.h,
             include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
             main/compile.y, main/compile_tools.C, main/core.C,
             main/execute.C, main/main.dsp: Int and Double classes with ^int[]
             and ^double[]. fixed expr type
   
           * src/: classes/root.C, include/pa_request.h, main/execute.C:
             ^string.length[]
   
   2001-03-08  paf
   
           * src/include/pa_vmframe.h: fixed forgotten method_frame my check
   
           * src/: include/pa_vclass.h, include/pa_vstring.h,
             include/pa_wcontext.h, main/compile.y, main/core.C,
             main/execute.C, main/main.dsp: dead end: vstring can't be
             derivated from vobject
   
           * src/: include/pa_vclass.h, include/pa_vhash.h,
             include/pa_vobject.h, include/pa_vstring.h, main/main.dsp: z
   
           * src/include/: pa_vclass.h, pa_vhash.h, pa_vobject.h: removes some
             remained clone conseqs
   
           * src/main/pa_vclass.C: that were ok... [vclass were out of vcs]
   
           * src/main/pa_vclass.C: wow! vclass were out of vcs
   
           * src/: include/pa_bool.h, include/pa_double.h, include/pa_value.h,
             include/pa_vbool.h, include/pa_vclass.h, include/pa_vdouble.h,
             include/pa_vhash.h, include/pa_vjunction.h, include/pa_vmframe.h,
             include/pa_vobject.h, include/pa_vstring.h,
             include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
             main/execute.C: withoud cloning. didn't need it actually, params
             got passed from out unnamed ewpool
   
           * src/: include/pa_vdouble.h, include/pa_vhash.h,
             include/pa_vjunction.h, include/pa_vobject.h,
             include/pa_vunknown.h, main/compile.y: cloning dead end
   
           * src/: include/pa_bool.h, include/pa_double.h,
             include/pa_valiased.h, include/pa_value.h, include/pa_vbool.h,
             include/pa_vclass.h, include/pa_vdouble.h, include/pa_vhash.h,
             include/pa_vjunction.h, include/pa_vmframe.h,
             include/pa_vobject.h, include/pa_vstring.h,
             include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
             main/execute.C, main/main.dsp, main/pa_value.C: value.cloning so
             to give params proper names
   
           * src/main/pa_wcontext.C: z
   
           * src/: include/pa_vmframe.h, main/execute.C: added names to
             unknown values in get_element and unfilled params. removed wrong
             name change in get_element
   
           * src/main/execute.C: z
   
           * src/main/execute.C: fixed problems calling operators in
             constructors
   
           * src/: classes/root.C, include/pa_stack.h, main/execute.C:
             detected problems calling operators in constructors
   
           * src/: classes/root.C, include/pa_request.h, main/execute.C:
             autocalc def to string
   
           * src/: classes/root.C, include/pa_request.h, include/pa_value.h,
             include/pa_vbool.h, include/pa_wwrapper.h, main/execute.C: ^if 0
   
           * src/classes/root.C: added root.c
   
           * src/: include/pa_request.h, include/pa_value.h,
             include/pa_vcframe.h, include/pa_vmframe.h,
             include/pa_wcontext.h, main/compile.C, main/compile.y,
             main/core.C, main/execute.C, main/pa_cframe.C,
             main/pa_wcontext.C: 'if' just compiled
   
           * src/: include/pa_vbool.h, include/pa_vdouble.h,
             include/pa_vjunction.h, include/pa_vmframe.h,
             include/pa_vstring.h, include/pa_wcontext.h, main/execute.C,
             main/pa_wcontext.C: z
   
           * src/: include/pa_value.h, include/pa_vmframe.h, main/compile.y,
             main/core.C, main/execute.C, main/main.dsp: z. detected probs
             with parameter names  in operator methods
   
           * src/main/compile.y: minor renamings in .y
   
           * src/: include/pa_request.h, main/compile.C, main/compile.y,
             main/core.C, main/main.dsp: introducing ROOT_CLASS.  it's default
             @BASE.  changed 'RUN' assignment mech
   
           * src/main/execute.C: z
   
           * src/: include/code.h, main/compile.y, main/compile_tools.C,
             main/compile_tools.h, main/execute.C: made class: dynamic, not
             static. so to enable runtime ^use
   
           * src/main/compile.y: minor grammar bug with OP_CODE__STORE_PARAM
   
           * src/: include/code.h, main/compile.y, main/compile_tools.C,
             main/execute.C: joined 2 into one OP_CODE__STORE_PARAM
   
           * src/main/execute.C: root root in code-junction
   
   2001-03-07  paf
   
           * src/include/: pa_value.h, pa_vclass.h, pa_vhash.h, pa_vmframe.h,
             pa_vobject.h, pa_wwrapper.h: const in Value.get_element
   
           * src/: include/pa_stack.h, include/pa_value.h,
             include/pa_vclass.h, include/pa_vhash.h, include/pa_vmframe.h,
             include/pa_vobject.h, include/pa_wwrapper.h, main/execute.C:
             fixed rwcontext of {} params up
   
           * src/main/: compile.y, compile_tools.h: ^func(params)
   
           * src/main/compile.y: .y priorities syntax shaped up a bit
   
           * src/: include/pa_hash.h, include/pa_value.h, include/pa_vhash.h,
             include/pa_vunknown.h, main/compile.y, main/execute.C,
             main/pa_hash.C: expr def in -f
   
           * src/main/: compile.y, execute.C: expr calls
   
           * src/main/: compile.y, execute.C, pa_string.C: bug in string.cmp
             fixed
   
           * src/main/compile.y: expr quoted code
   
           * src/main/: compile.y, execute.C: expr whitespace solved. added ""
             support0
   
           * src/main/compile.y: expr string comparisons 0
   
           * src/: include/pa_string.h, main/compile.y, main/execute.C,
             main/pa_string.C: just compiled lt&co
   
           * src/main/execute.C: ^var.menu{$field} problem detected. that
             $field not a $var.field
   
   2001-03-06  paf
   
           * src/main/compile.y: .y expr visible-shorter
   
           * src/: include/code.h, main/compile.y, main/execute.C: 1 problems
             with skipping whitespace in yylex fixed 2 xors: # bitwise ##
             logical
   
           * src/: include/pa_vstring.h, main/compile.y: problems with
             skipping whitespace in yylex
   
           * src/include/pa_vbool.h: forgot this
   
           * src/: include/code.h, main/compile.y, main/execute.C: without
             string ops in expressions 0
   
           * src/: include/pa_value.h, include/pa_vdouble.h,
             include/pa_vstring.h, include/pa_vunknown.h, main/compile.y,
             main/execute.C, main/main.dsp: !~
   
           * src/: include/pa_vcframe.h, include/pa_vclass.h,
             include/pa_vdouble.h, include/pa_vhash.h, include/pa_vjunction.h,
             include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
             include/pa_vunknown.h, include/pa_wcontext.h,
             include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
             main/compile_tools.h, main/execute.C: +-*/
   
           * src/: include/pa_vdouble.h, main/compile.y, main/compile_tools.C,
             main/compile_tools.h: grammar-1.1 $a(z) $a=0
   
           * src/: include/pa_value.h, include/pa_vdouble.h, main/compile.y,
             main/execute.C: expr grammar-1 2*2=4.000000 :)
   
           * src/main/compile.y: expr grammar-1
   
           * src/main/compile.y: expr lexx1
   
           * src/main/: compile.y, execute.C, main.dsp: z
   
           * src/: include/code.h, include/pa_valiased.h, include/pa_value.h,
             include/pa_vdouble.h, include/pa_vstring.h, main/compile.y,
             main/execute.C: expr lex0 exec-1
   
           * src/: include/code.h, main/compile.y, main/compile_tools.h: g
   
   2001-02-26  paf
   
           * src/main/compile.y: max_string in yyerror bug fix
   
   2001-02-25  paf
   
           * src/: include/pa_value.h, include/pa_vmframe.h,
             include/pa_wcontext.h, main/execute.C: VAliased3
   
           * src/include/: pa_value.h, pa_vmframe.h: VAliased2
   
           * src/main/execute.C: VAliased1
   
           * src/: include/pa_request.h, include/pa_value.h,
             include/pa_vmframe.h, include/pa_wcontext.h, main/execute.C:
             VAliased0
   
           * src/: include/pa_pool.h, include/pa_request.h,
             include/pa_value.h, include/pa_vclass.h, include/pa_vmframe.h,
             include/pa_vobject.h, main/core.C, main/execute.C, main/main.dsp:
             VAliased just compiled
   
           * src/: include/pa_pool.h, include/pa_value.h, include/pa_vclass.h,
             include/pa_vobject.h, main/execute.C: alias dead end
   
           * src/: include/pa_value.h, include/pa_vclass.h,
             include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
             main/main.dsp: no not get fields into interm VFielded class.
             fields & staticfields 1
   
           * src/: include/pa_vcframe.h, include/pa_vmframe.h,
             include/pa_vobject.h, include/pa_wcontext.h,
             include/pa_wwrapper.h, main/core.C, main/execute.C,
             main/main.dsp: would now get fields into interm VFielded class
   
           * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
             include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
             include/pa_wcontext.h, main/compile.y, main/core.C,
             main/execute.C, main/main.dsp, main/pa_hash.C, main/pa_value.C,
             main/pa_wcontext.C: virtuals2
   
           * src/main/compile.y: : 1
   
           * src/main/compile.y: rethought to $class:static.field.subfield
   
           * src/: include/pa_vclass.h, main/compile.y, main/execute.C:
             $class:element
   
           * src/: include/pa_value.h, include/pa_vmframe.h,
             include/pa_wwrapper.h, main/compile.y, main/execute.C,
             main/pa_wcontext.C: before execute class calls rewrite
   
           * src/: include/pa_request.h, main/compile.C, main/core.C: default
             name RUN, also alias
   
           * src/main/compile.y: escaping bug
   
           * src/: include/pa_request.h, include/pa_value.h,
             include/pa_vobject.h, main/compile.y, main/compile_tools.h,
             main/core.C, main/execute.C, main/pa_common.C: vobject1
   
           * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
             include/pa_vmframe.h, include/pa_vobject.h,
             include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
             main/compile_tools.h, main/execute.C: ^class:method() just
             compiled
   
   2001-02-24  paf
   
           * src/main/main.dsp: no bison -d
   
           * src/main/: compile.y, compile_tools.h: use0 line no on 'undef
             class' err msg wrong
   
           * src/main/compile.y: z
   
           * src/main/: compile.y, core.C: yylex need some @special lines adj
   
           * src/: include/pa_request.h, include/pa_vclass.h, main/compile.C,
             main/compile.y, main/compile_tools.h, main/core.C: modules0
   
           * src/: include/pa_vclass.h, main/core.C: z
   
           * src/: include/pa_value.h, include/pa_vclass.h,
             include/pa_vobject.h, main/main.dsp: vobject00
   
           * src/main/pa_array.C: minor bug in expanding very small arrays.
             60% from 1 were 0
   
           * src/: include/pa_value.h, include/pa_wcontext.h,
             include/pa_wwrapper.h, main/execute.C, main/pa_value.C: it works
             as bad as you've named it: wcontext.value() was not a perfect
             idea
   
           * src/main/execute.C: codeframe1
   
           * src/: include/pa_value.h, include/pa_vcframe.h,
             include/pa_vclass.h, include/pa_vframe.h, include/pa_vhash.h,
             include/pa_vjunction.h, include/pa_vmframe.h,
             include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
             main/main.dsp, main/pa_cframe.C, main/pa_wcontext.C: codeframe
             just compiled
   
           * src/: include/pa_vframe.h, main/compile.y: found junction
             ideology @: ^x{$a()) must construct current wcontext element, so
             smart wcontext handling needed
   
           * src/main/compile.y: fixed grammar bugs in constructor/params
             klinch
   
           * src/main/: compile.y, execute.C: fixed empty constructor
             optimized empty case. failed on calls - produced empty string
             param
   
           * src/main/compile.y: fixed last \n macrotemplate strip bug
   
           * src/: include/code.h, include/pa_request.h, include/pa_value.h,
             include/pa_vclass.h, include/pa_vframe.h, main/compile.y,
             main/compile_tools.C, main/compile_tools.h, main/core.C,
             main/execute.C: code junctions0. something wrong with last \n
             macrotemplate strip
   
           * src/: include/pa_value.h, main/compile.C, main/core.C,
             main/pa_value.C: minor error reporting format beautifyings
   
           * src/: include/pa_value.h, include/pa_vclass.h,
             include/pa_vframe.h, main/core.C, main/execute.C,
             main/pa_value.C: get_method RIP. junctions everywhere. call with
             junctions0
   
   2001-02-23  paf
   
           * src/include/: pa_value.h, pa_vclass.h, pa_vframe.h,
             pa_wwrapper.h: lara came, can't work, sorry :(
   
           * src/main/: compile.y, execute.C, main.dsp: rethought some. before
             junction
   
           * src/: include/pa_vframe.h, include/pa_vunknown.h,
             include/pa_wcontext.h, include/pa_wwrapper.h, main/core.C,
             main/execute.C, main/main.dsp, main/pa_value.C: call0
   
           * src/: include/pa_hash.h, include/pa_value.h,
             include/pa_wcontext.h, main/core.C, main/execute.C,
             main/main.dsp, main/pa_hash.C: started call. store param, vframe
             done
   
           * src/include/pa_wcontext.h: z
   
           * src/main/: compile.y, compile_tools.C, compile_tools.h: fixed
             wrong grammar in complex constructor case
   
           * src/main/: compile.y, execute.C: empty constructor bug fixed
   
           * src/main/execute.C: with result rwpool
   
           * src/: include/pa_value.h, main/core.C, main/execute.C,
             main/main.dsp: value named
   
           * src/: include/pa_value.h, include/pa_vstring.h, main/execute.C:
             strign 2 value in 2 places in execute
   
           * src/: include/pa_value.h, include/pa_wcontext.h, main/compile.y,
             main/execute.C, main/main.dsp, main/pa_array.C: auto VHash on
             wcontext.put_element when wcontext fvalue==0
   
   2001-02-22  paf
   
           * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
             include/pa_vhash.h, include/pa_vstring.h, include/pa_wcontext.h,
             main/execute.C, main/main.dsp: auto VHash in pa.th.cre.at.e
   
           * src/: include/pa_wcontext.h, main/compile.y, main/execute.C:
             erroreos checkout
   
           * src/: include/pa_request.h, main/compile.y: $self.put(val)
   
           * src/: include/pa_array.h, main/compile.y, main/compile_tools.C,
             main/compile_tools.h, main/pa_array.C: $self.get
   
           * src/main/: compile.C, compile.y, compile_tools.C: z
   
           * src/main/compile.y: $: wasn't finished - $:sdf(sdf) troubled a
             bit. finished now.
   
           * src/main/compile.y: $: finished
   
           * src/main/: compile.C, compile.y, execute.C: started : with $a.$:f
   
           * src/: include/code.h, main/compile_tools.C, main/compile_tools.h,
             main/execute.C: OP_STRING better then some xxx _VALUE
   
           * src/: include/code.h, include/pa_vstring.h, main/compile.y,
             main/compile_tools.C, main/compile_tools.h, main/execute.C:
             string to vstring it .y all
   
           * src/: include/pa_request.h, include/pa_stack.h,
             include/pa_wcontext.h, main/execute.C: z about to vstring it .y
             all
   
           * src/main/: compile.C, core.C, execute.C, pa_string.C: more
             precise parse error line:col
   
           * src/: include/pa_pool.h, include/pa_vclass.h, main/core.C,
             main/pa_hash.C, main/pa_pool.C: TRY...
   
           * src/: include/pa_exception.h, include/pa_pool.h,
             include/pa_request.h, include/pa_value.h, include/pa_wcontext.h,
             main/compile.C, main/compile.y, main/compile_tools.C,
             main/core.C, main/pa_array.C, main/pa_exception.C,
             main/pa_hash.C, main/pa_pool.C, main/pa_string.C,
             main/pa_table.C: removed exception from request
   
           * src/: include/pa_vstring.h, main/compile.C, main/core.C: added
             some forgotten
   
           * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
             include/pa_wcontext.h, main/compile.y, main/compile_tools.C,
             main/compile_tools.h, main/execute.C, main/main.dsp: iiieeyys!
             get/put simple vars to VClass works0
   
           * src/: include/pa_array.h, include/pa_wcontext.h,
             main/pa_string.C: in process, but found that exceptions are too
             global
   
           * src/: include/code.h, include/pa_string.h, include/pa_value.h,
             include/pa_vclass.h, include/pa_wcontext.h, main/compile.y,
             main/execute.C, main/pa_string.C: write_value write_string 0 it
             seems wcontext must write strings regardles of fvalue!=0
   
   2001-02-21  paf
   
           * src/main/execute.C: tired :)
   
           * src/main/: compile.C, compile.y, execute.C: store0
   
           * src/: include/compile.h, include/execute.h, include/pa_array.h,
             include/pa_request.h, include/pa_stack.h, include/pa_vclass.h,
             include/pa_wcontext.h, main/compile.C, main/compile.y,
             main/execute.C, main/main.dsp, main/pa_array.C,
             main/pa_request.C: get put -1 [just compiled]
   
           * src/: include/core.h, include/pa_context.h, include/pa_request.h,
             include/pa_vclass.h, include/pa_wcontext.h, main/core.C,
             main/main.dsp, main/pa_request.C: request core methods0
   
           * src/: include/compile.h, include/pa_array.h, main/compile.C,
             main/compile.y, main/execute.C: MAIN_METHOD_NAME ready to write
             execute
   
           * src/: include/pa_exception.h, include/pa_value.h, main/compile.C,
             main/compile.y, main/compile_tools.C, main/compile_tools.h: .y
             methods and one_big_piece. now compile returns array<method*>
   
           * src/main/compile.y: more straightforward yylex[end]
   
           * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
             string.operator==(char*)
   
           * src/: include/execute.h, include/pa_array.h, include/pa_value.h,
             main/execute.C, main/pa_array.C: after array.const get wonders
   
           * src/include/: compile.h, pa_context.h, pa_hash.h, pa_request.h,
             pa_string.h, pa_value.h: struck with const array.gets
   
           * src/main/: execute.C: z
   
           * src/main/: compile.y, execute.C: z
   
           * src/main/: compile.C, compile.y, compile_tools.h: error
             processing in eval & yyerror so it wouldn't cause memleaks.
   
           * src/main/: compile.C, compile.y: failed to add absolute precies
             parse error positions. leaving RIGHTMOST position as
             @file[line:col]
   
           * src/: include/compile.h, main/compile.C, main/compile.y,
             main/compile_tools.h: line numbers needed. would add them to .y
             now internally. externally it's not as precise as needed
   
           * src/: include/code.h, include/pa_types.h, main/compile.C,
             main/compile.y, main/compile_tools.C, main/compile_tools.h,
             main/execute.C, main/main.dsp: .y to c++ hierarchy output fix.
             compiler works ok
   
   2001-02-20  paf
   
           * src/main/: compile.C, compile.y, compile_tools.C,
             compile_tools.h, execute.C, main.dsp: nestage probs, eof yylex
             not perfect
   
           * src/: include/code.h, include/compile.h, include/execute.h,
             include/pa_array.h, include/pa_common.h, include/pa_pool.h,
             include/pa_string.h, include/pa_table.h, include/pa_types.h,
             main/compile.C, main/compile.y, main/compile_tools.C,
             main/compile_tools.h, main/core.C, main/execute.C, main/main.dsp,
             main/pa_array.C, main/pa_common.C, main/pa_hash.C,
             main/pa_string.C, main/pa_table.C: bison[yacc] first time
             compiled.  execute=dump for now
   
           * src/main/core.C: core rewrite using yacc investigations now will
             be compile[yacc]/execute[opcodes]
   
   2001-02-15  paf
   
           * src/: include/pa_value.h, main/core.C: maybe a-la yacc those ifs
             rewrite as turing machine? for it seems it would be it's too many
             ifs with this syntax now
   
   2001-02-14  paf
   
           * src/main/core.C: get_params 1
   
           * src/main/core.C: get_params figured ^menu[UNEVALUATED unthinked
             :( ]
   
           * src/main/core.C: varios breaks
   
           * src/main/core.C: get names 3
   
           * src/main/core.C: get names 2
   
           * src/main/core.C: get names 1
   
           * src/: include/pa_string.h, main/core.C, main/pa_string.C: get
             names 0
   
           * src/: include/pa_value.h, main/core.C, main/pa_string.C: process
             text repassing2 operator static vars
   
           * src/: include/pa_context.h, include/pa_string.h, main/core.C,
             main/pa_string.C: process text repassing
   
           * src/: include/pa_context.h, include/pa_value.h, main/core.C:
             module:calls changes
   
   2001-02-13  paf
   
           * src/: include/pa_context.h, include/pa_value.h, main/core.C:
             ^class:calls[] started
   
           * src/: include/pa_value.h, main/core.C: z
   
           * src/main/core.C: operators : and self. prefixes
   
           * src/main/core.C: z
   
           * src/: include/pa_string.h, main/pa_string.C: String_iterator
             tested
   
           * src/: include/pa_string.h, main/pa_string.C: String_iterator
             optimized
   
           * src/main/pa_string.C: String_iterator::skip_to optimized a bit.
             would change privates to better support optimization
   
           * src/: include/pa_string.h, main/pa_string.C:
             String_iterator::skip_to todo:optimize
   
   2001-02-12  paf
   
           * src/: include/pa_string.h, main/core.C, main/pa_string.C: started
             String_iterator
   
           * src/: include/pa_context.h, include/pa_value.h, main/core.C: some
             comments
   
           * src/: include/pa_context.h, include/pa_value.h, main/core.C: get
             self/methodref joined
   
   2001-02-11  paf
   
           * src/: include/pa_context.h, include/pa_value.h, main/core.C,
             main/main.dsp: core started.  core.C, context&value .h
   
           * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
             include/pa_string.h, main/main.dsp, main/pa_array.C,
             main/pa_hash.C, main/pa_pool.C, main/pa_string.C: :pooled
   
   2001-01-30  paf
   
           * src/: Makefile.am, main/Makefile.am, targets/Makefile.am: .am
             comments
   
           * src/: include/pa_pool.h, main/Makefile.am, main/main.dsp,
             main/pa_pool.C: moved pa_pool.C to be target specific
   
           * src/: include/pa_exception.h, include/pa_pool.h,
             include/pa_table.h, main/pa_exception.C, main/pa_table.C: minor *
             to & changes
   
           * src/: include/pa_exception.h, include/pa_pool.h,
             include/pa_request.h, include/pa_table.h, main/pa_array.C,
             main/pa_exception.C, main/pa_pool.C, main/pa_table.C: error
             re-associated. that's much better even removed 'die' necessety
   
           * src/: include/pa_error.h, include/pa_exception.h,
             include/pa_pool.h, include/pa_request.h, main/main.dsp,
             main/pa_error.C, main/pa_exception.C, main/pa_pool.C,
             targets/Makefile.am: lowered targets/parser into subdir, added
             parser_Pool(Pool) failed to add. would think..
   
           * src/: include/pa_error.h, include/pa_hash.h, include/pa_string.h,
             include/pa_table.h, main/pa_error.C, main/pa_hash.C,
             main/pa_string.C, main/pa_table.C: Table more like C++ style
             hence lots of 'const'
   
           * src/: include/pa_error.h, include/pa_request.h,
             include/pa_string.h, include/pa_table.h, main/pa_error.C,
             main/pa_table.C: Error fixed
   
   2001-01-29  paf
   
           * src/: include/pa_array.h, include/pa_common.h,
             include/pa_error.h, include/pa_hash.h, include/pa_pool.h,
             include/pa_request.h, include/pa_string.h, include/pa_table.h,
             main/Makefile.am, main/pa_array.C, main/pa_common.C,
             main/pa_error.C, main/pa_hash.C, main/pa_table.C: added forgotten
   
           * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
             include/pa_string.h, include/pa_table.h, include/pa_types.h,
             main/Makefile.am, main/main.dsp, main/pa_array.C, main/pa_hash.C,
             main/pa_string.C, main/pa_table.C: Request Error Table
   
           * src/: include/pa_pool.h, main/pa_array.C: tested - decision "no
             templates"
   
           * src/: include/pa_array.h, include/pa_pool.h, main/Makefile.am,
             main/main.dsp, main/pa_array.C: templates failed no template
             specializations [VC6], no library auto instantation [VC6, GNU c++
             2.95.2-6 from latest cygwin]
   
           * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
             include/pa_string.h, include/pa_table.h, include/pa_types.h,
             main/main.dsp, main/pa_array.C, main/pa_string.C,
             main/pa_table.C: Table started would test template Array now
   
           * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
             String originating
   
           * src/: include/pa_hash.h, include/pa_pool.h, include/pa_threads.h,
             main/pa_hash.C: made local Hash-es not thread safe=quicker by
             SYNCHRONIZED(thread_safe)
   
           * src/include/: pa_array.h, pa_hash.h, pa_string.h: moved .h public
             parts to top
   
           * src/: include/pa_hash.h, include/pa_threads.h, main/pa_hash.C,
             main/pa_threads.C: decided on one global_mutex, like PHP as I can
             see: needed only in global Hash now, made Hash:: put/get
             SYNCHRONIZED
   
           * src/: include/pa_hash.h, include/pa_threads.h, main/main.dsp,
             main/pa_threads.C: added pa_threads
   
             Mutex
   
           * src/include/pa_hash.h: some comments
   
           * src/: main/pa_array.C, include/pa_array.h, include/pa_pool.h:
             Array& operator += (Array& src)
   
           * src/main/pa_array.C: expand not convinient, would rewrite
   
           * src/: include/pa_array.h, main/pa_array.C: Array::operator +=
             (Array& src)
   
             rethought, would change now
   
   2001-01-27  paf
   
           * src/: include/pa_array.h, main/pa_array.C: array [] with chunk
             caching
   
           * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
             include/pa_string.h, main/pa_array.C, main/pa_string.C: array
             cache rethought to chunk caching
   
           * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
             include/pa_string.h, main/main.dsp, main/pa_array.C,
             main/pa_hash.C, main/pa_string.C: Array 0
   
           * src/main/pa_string.C: String::operator ==
   
           * src/main/pa_hash.C: String(&String)
   
           * src/main/pa_hash.C: added pa_hash.C [forgotten]
   
           * src/: include/pa_hash.h, include/pa_string.h, include/pa_types.h,
             main/main.dsp, main/pa_string.C: uint, and added pa_types &
             pa_hash[forgotten]
   
   2001-01-26  paf
   
           * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
             removed templates [vc++ suxx]
   
           * src/: include/pa_pool.h, include/pa_string.h, main/main.dsp,
             main/pa_pool.C, main/pa_string.C: templates in VC++ suxx.
   
           * src/include/: pa_pool.h, pa_string.h: pa_pool split
   
           * src/main/: main.dsp, pa_string.C: Id check
   
           * src/: main/pa_pool.C, main/pa_string.C, include/pa_pool.h: Id
             check
   
           * src/: include/pa_pool.h, main/pa_string.C: String prealloc &
             dynamic row_count
   
           * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
             main/main.dsp, main/pa_pool.C, main/pa_string.C,
             targets/Makefile.am: Initial revision
   
           * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
             main/main.dsp, main/pa_pool.C, main/pa_string.C,
             targets/Makefile.am: creating parser3 module
   

Removed from v.1.93  
changed lines
  Added in v.1.184


E-mail: