Annotation of parser3/ChangeLog, revision 1.195

1.195   ! moko        1: 2024-08-26  moko
        !             2: 
        !             3:        * src/targets/cgi/parser3.C: under Windows back_slashes_to_slashes
        !             4:          should be used on argv[0] as well to match document root.
        !             5: 
1.194     moko        6: 2024-08-25  moko
                      7: 
                      8:        * src/main/pa_request.C: be more specific
                      9: 
                     10:        * src/targets/cgi/parser3.C: parser3 t.html now behaves identically
                     11:          to /usr/bin/parser3 t.html in terms of /etc/parser3/auto.p load
                     12:          (fixes bug #1244)
                     13: 
                     14:        * src/targets/cgi/parser3.C: avoid "parser allready configured"
                     15:          exception when ./parser3.cgi <file> is used; rsplit(..., '/') ||
                     16:          rsplit(..., '\\') is not correct when / and \ are mixed in path
                     17: 
                     18:        * src/targets/cgi/parser3.C: full_disk_path now uses pa_strcat()
                     19: 
1.193     moko       20: 2024-07-24  moko
                     21: 
                     22:        * src/: include/pa_config_includes.h, lib/gd/gifio.C,
                     23:          main/execute.C, main/pa_string.C: Warning war: clang changed
                     24:          -Wdeprecated-register warning to -Wregister, it's easier to
                     25:          remove all register vars then continue this fight. :)
                     26: 
                     27:        * src/main/: compile.y, compile.tab.C: warning war: register
                     28:          removed
                     29: 
1.192     moko       30: 2024-07-14  moko
                     31: 
                     32:        * src/targets/cgi/pa_sapi_info.h: When accessing $env:name,
                     33:          checking the HTTP request environment; if the variable is not
                     34:          present, checking the web server process environment (implements
                     35:          feature #1242)
                     36: 
1.191     moko       37: 2024-05-26  moko
                     38: 
                     39:        * tests/: 195.html, 229.html, results/096.processed,
                     40:          results/097.processed, results/158.processed,
                     41:          results/186.processed, results/273.processed,
                     42:          results/293.processed, results/317.processed,
                     43:          results/389.processed, results/402.processed: tests updated as
                     44:          single quote now escaped with &apos; in HTML tainting mode
                     45:          (related to feature #1241)
                     46: 
                     47:        * src/main/untaint.C: single quote now escaped with &apos; in HTML
                     48:          tainting mode (implements feature #1241)
                     49: 
                     50:        * tests/results/: 020.processed, 021.processed, 026.processed,
                     51:          042.processed, 043.processed, 057.processed, 110.processed,
                     52:          115.processed, 116.processed, 117.processed, 118.processed,
                     53:          119.processed, 120.processed, 125.processed, 126.processed,
                     54:          128.processed, 130.processed, 131.processed, 132.processed,
                     55:          133.processed, 135.processed, 136.processed, 138.processed,
                     56:          139.processed, 140.processed, 145.processed, 150.processed,
                     57:          151.processed, 165.processed, 174.processed, 181.processed,
                     58:          182.processed, 192.processed, 193.processed, 201.processed,
                     59:          213.processed, 224.processed, 226.processed, 230.processed,
                     60:          239.processed, 240.processed, 244.processed, 253.processed,
                     61:          254.processed, 261.processed, 264.processed, 269.processed,
                     62:          274.processed, 275.processed, 288.processed, 294.processed,
                     63:          296.processed, 303.processed, 306.processed, 307.processed,
                     64:          308.processed, 311.processed, 312.processed, 314.processed,
                     65:          315.processed, 316.processed, 320.processed, 323.processed,
                     66:          324.processed, 325.processed, 328.processed, 330.processed,
                     67:          332.processed, 333.processed, 337.processed, 338.processed,
                     68:          341.processed, 342.processed, 343.processed, 344.processed,
                     69:          345.processed, 348.processed, 352.processed, 356.processed,
                     70:          357.processed, 363.processed, 364.processed, 368.processed,
                     71:          372.processed, 373.processed, 376.processed, 378.processed,
                     72:          379.processed, 385.processed, 386.processed, 387.processed,
                     73:          389.processed, 390.processed, 395.processed, 397.processed,
                     74:          398.processed, 399.processed, 404.processed, 406.processed,
                     75:          413.processed, 414.processed, 420.processed, 421.processed,
                     76:          424.processed, auto.p: Type -> Exception type for readability
                     77: 
                     78:        * tests/: 119.html, 165.html, 175.html, 192.html, 213.html,
                     79:          217.html, 230.html, 240.html, 298.html, 380.html, 415.html,
                     80:          results/119.processed, results/165.processed,
                     81:          results/175.processed, results/192.processed,
                     82:          results/213.processed, results/217.processed,
                     83:          results/230.processed, results/240.processed,
                     84:          results/298.processed, results/380.processed,
                     85:          results/415.processed: try-catch, try-catch-comment used
                     86: 
                     87: 2024-05-21  moko
                     88: 
                     89:        * tests/: 169.html, 180.html, 195.html, 224.html, 246.html,
                     90:          results/180.processed, results/195.processed,
                     91:          results/224.processed, results/auto.p: @try-catch-comment added
                     92:          and used
                     93: 
                     94:        * tests/: 175.html, 256.html, 269.html, 283.html, 341.html,
                     95:          415.html, results/269.processed, results/283.processed,
                     96:          results/auto.p: more tests are updated to prepare for apostrophe
                     97:          escaping in HTML tainting
                     98: 
                     99:        * tests/results/: 181.processed, 294.processed, 296.processed,
                    100:          315.processed, 379.processed, 389.processed, auto.p:
                    101:          $exception.comment printed as-is for whitespace reporting and to
                    102:          prepare for apostrophe escaping in HTML mode
                    103: 
1.190     moko      104: 2024-05-11  moko
                    105: 
                    106:        * tests/: 099.html, 100.html, results/099.processed,
                    107:          results/100.processed: a test for non-UTF-8 filename* added
                    108:          (related to feature #1240)
                    109: 
                    110:        * tests/: 293.html, results/293.processed: tainting modes tests
                    111:          added
                    112: 
                    113:        * tests/results/: 099.processed, 100.processed, 205.processed,
                    114:          309.processed, 310.processed, 419.processed: tests results
                    115:          updated after filename* added (related to feature #1240)
                    116: 
                    117:        * src/: include/pa_common.h, main/pa_request.C: The filename*
                    118:          parameter was added to the Content-Disposition header to conform
                    119:          with RFC 6266, with code provided by Sumo (implements feature
                    120:          #1240)
                    121: 
                    122: 2024-05-10  moko
                    123: 
                    124:        * src/main/pa_http.C: Testing shows that TCP_NODELAY has no
                    125:          positive performance effect in our case
                    126: 
1.189     moko      127: 2024-03-27  moko
                    128: 
                    129:        * src/lib/pcre/pcre_internal.vcproj: pa_config_includes.h used
                    130:          (related to feature #1236)
                    131: 
                    132: 2024-03-15  moko
                    133: 
                    134:        * tests/: 413.html, results/413.processed: test for object still
                    135:          can be used as file parameter (related to bug #1218)
                    136: 
                    137:        * src/types/: pa_vobject.C, pa_vobject.h: regression fix: object
                    138:          still can be used in file context (fixes bug #1218)
                    139: 
                    140: 2024-03-14  moko
                    141: 
                    142:        * src/include/pa_string.h: ArrayString get() null result assert
                    143:          also added (related to bug #1238)
                    144: 
                    145:        * src/types/: pa_vstring.h, pa_vtable.C: VString() optimized;
                    146:          VString::empty() used instead of new VString()
                    147: 
                    148: 2024-03-12  moko
                    149: 
                    150:        * tests/: 379-curl.html, 379.html, results/379-curl.processed,
                    151:          results/379.processed: test added for cookie without value
                    152:          (related to bug #1238)
                    153: 
                    154:        * src/include/pa_string.h: In assertions enabled mode, ArrayString
                    155:          values are now required to be non-null (related to bug #1238)
                    156: 
                    157:        * src/main/pa_http.C: cookies without value are now parsed
                    158:          correctly (fixed bug #1238)
                    159: 
                    160: 2024-03-11  moko
                    161: 
                    162:        * tests/run_parser.sh: for better error reporting
                    163: 
1.188     moko      164: 2023-12-30  moko
                    165: 
                    166:        * tests/: 038.html, results/038.processed: test for atan2 added
                    167: 
                    168: 2023-12-29  moko
                    169: 
                    170:        * src/classes/math.C: atan2(y,x) math function added
                    171: 
1.187     moko      172: 2023-12-14  moko
                    173: 
                    174:        * tests/212.html: pcre2 compatibility (related to feature #1236)
                    175: 
                    176:        * tests/: 425.html, results/425.processed: test for pcre/pcre2
                    177:          exceptions and behavour added (related to feature #1236)
                    178: 
                    179: 2023-12-13  moko
                    180: 
                    181:        * buildall: by default parser is now bundled with pcre2 10.42,
                    182:          --without-pcre2 option added to build with pcre-8.45 (related to
                    183:          feature #1236)
                    184: 
                    185: 2023-12-12  moko
                    186: 
                    187:        * configure.ac, src/include/pa_config_auto.h.in: pcre2 library
                    188:          support added (implements feature #1236)
                    189: 
                    190:        * src/: include/pa_charset.h, include/pa_config_includes.h,
                    191:          lib/pcre/pa_pcre_internal.h, lib/pcre/pa_pcre_valid_utf8.c,
                    192:          main/pa_common.C, main/pa_globals.C, types/pa_vregex.C,
                    193:          types/pa_vregex.h: Adopted patch from Yavor Doganov
                    194:          <yavor@gnu.org> to add pcre2 library support (implements feature
                    195:          #1236)
                    196: 
1.186     moko      197: 2023-11-28  moko
                    198: 
                    199:        * src/include/pa_config_includes.h: warnings war continues
                    200: 
                    201:        * src/include/pa_config_includes.h: warning war
                    202: 
                    203:        * tests/: 424.html, results/424.processed: tests for '+' and '-'
                    204:          number strings, whitespace and sign in exception messages
                    205:          (related to bug #1234)
                    206: 
1.185     moko      207: 2023-11-26  moko
                    208: 
                    209:        * tests/: 274.html, results/224.processed, results/274.processed:
                    210:          tests for date double, int, bool added (related to feature #1235)
                    211: 
                    212:        * src/: classes/date.C, types/pa_vdate.h: double,int,bool methods
                    213:          added for date class (implements feature #1235)
                    214: 
                    215: 2023-11-23  moko
                    216: 
                    217:        * src/: classes/math.C, include/pa_string.h, main/pa_string.C: '+'
                    218:          and '-' strings are no longer can be treated as number 0,
                    219:          exception thrown (fixes bug #1234)
                    220: 
1.184     moko      221: 2023-11-18  moko
                    222: 
                    223:        * src/include/pa_types.h: minor
                    224: 
                    225:        * src/include/pa_dir.h: MAXPATH in UTF-16 chars, not bytes
                    226: 
                    227:        * tests/: 389.html, results/389.processed: error messages for some
                    228:          OS differs a bit, reducing failing tests for them
                    229: 
                    230: 2023-11-17  moko
                    231: 
                    232:        * tests/: 423.html, results/423.processed: test for optional
                    233:          @auto[] inheritance added (related to feature #1233)
                    234: 
                    235:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
                    236:          types/pa_vstateless_class.C: optional @auto[] inheritance
                    237:          implemented if defined with two args (path, class name)
                    238:          (implements feature #1233)
                    239: 
                    240:        * src/: classes/double.C, classes/int.C, classes/math.C,
                    241:          include/pa_random.h, include/pa_types.h, main/pa_common.C,
                    242:          types/pa_vdouble.h, types/pa_vint.h: clip2int,clip2uint added to
                    243:          sync double->int overflow behavour under different architectures
                    244:          (fixes bug #1232)
                    245: 
                    246:        * tests/: 422.html, results/422.processed: int clipping added
                    247: 
                    248: 2023-11-16  moko
                    249: 
                    250:        * tests/: 422.html, results/422.processed: test for int and uint
                    251:          overflow in ^n.format[d/u/x]
                    252: 
                    253:        * src/classes/math.C: bugfix: crc32 should not be negative (under
                    254:          Apple M1 when negative double converts to uint the result is 0)
                    255:          and crc32 should be 32 bits
                    256: 
                    257:        * src/main/pa_common.C: avoid (uint)<negative double> conversion as
                    258:          on Apple M1 it's 0
                    259: 
                    260:        * src/classes/file.C: bugfix: crc32 should not be negative (under
                    261:          Apple M1 when negative double converts to uint the result is 0)
                    262:          and crc32 should be 32 bits
                    263: 
1.183     moko      264: 2023-10-07  moko
                    265: 
                    266:        * src/: main/execute.C, types/pa_vdate.h: volatile added to sync
                    267:          behavour with other OP_NUM_*, related to bug #1230
                    268: 
                    269: 2023-10-06  moko
                    270: 
                    271:        * tests/: 338.html, results/338.processed: test for bug #1230 added
                    272: 
                    273:        * src/: main/execute.C, types/pa_vdate.h: force double operands to
                    274:          be converted to double to avoid 80 bit operations in x87 mode
                    275:          (fixes bug #1230)
                    276: 
                    277: 2023-10-05  moko
                    278: 
                    279:        * tests/420.html: add feature FEATURE_GET_ELEMENT4CALL disabled
                    280:          compatibility
                    281: 
                    282:        * tests/337.html: 2work without FEATURE_GET_ELEMENT4CALL
                    283: 
                    284:        * tests/: 421.html, results/421.processed: test to cover all
                    285:          classes and objects nonexistent method and field exceptions
                    286:          (related to feature #1080 and #1227)
                    287: 
                    288:        * tests/results/: 182.processed, 324.processed: undefined method ->
                    289:          <type> method not found exception (related to feature #1080)
                    290: 
                    291:        * src/types/: pa_vbool.h, pa_vconsole.h, pa_vdouble.h, pa_vint.h,
                    292:          pa_vregex.C, pa_vstateless_object.h: + VSimple_stateless_object,
                    293:          "element can not be fetched from" for them, "field not found" for
                    294:          all other types (related to bug #1227)
                    295: 
                    296: 2023-10-03  moko
                    297: 
                    298:        * src/types/pa_vstateless_class.h: "Source: <method name>, Comment:
                    299:          <type> method not found" exception now thrown for static calls
                    300:          instead of "undefined method" without class name (related to
                    301:          feature #1080)
                    302: 
                    303: 2023-10-02  moko
                    304: 
                    305:        * src/types/: pa_vdouble.h, pa_vhash.h, pa_vint.h, pa_vobject.C,
                    306:          pa_vstateless_object.h, pa_vstring.h, pa_vtable.C: "Source:
                    307:          <method name>, Comment: <type> method not found" exception now
                    308:          thrown for all dynamic objects instead of "undefined method"
                    309:          without class name (implements feature #1080)
                    310: 
1.182     moko      311: 2023-10-01  moko
                    312: 
                    313:        * src/classes/json.C: we don't have a dynamic json object.
                    314: 
                    315: 2023-09-28  moko
                    316: 
                    317:        * tests/: 420.html, results/261.processed, results/420.processed:
                    318:          tests updated after bug #1228 fix reverted
                    319: 
                    320:        * src/types/pa_vstring.h: revering fix for bug #1228, as empty or
                    321:          whitespace string is hash compatible, so we don't want $s.key to
                    322:          return a junction
                    323: 
                    324:        * tests/: 261.html, 420.html, results/261.processed,
                    325:          results/420.processed: test for bug #1227 added, test updated
                    326:          after bug #1228 fixed
                    327: 
                    328:        * src/types/: pa_vdouble.h, pa_vint.h: $int.field and $double.field
                    329:          now throws exception as $non-empty-string.field (fixes bug #1227)
                    330: 
                    331:        * src/types/pa_vstring.h: allow $string.method access (fixes bug
                    332:          #1228)
                    333: 
                    334: 2023-09-26  moko
                    335: 
                    336:        * AUTHORS, aclocal.m4, configure, src/classes/bool.C,
                    337:          src/classes/classes.C, src/classes/classes.awk,
                    338:          src/classes/classes.h, src/classes/curl.C, src/classes/date.C,
                    339:          src/classes/double.C, src/classes/file.C, src/classes/form.C,
                    340:          src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
                    341:          src/classes/inet.C, src/classes/int.C, src/classes/json.C,
                    342:          src/classes/mail.C, src/classes/math.C, src/classes/memcached.C,
                    343:          src/classes/memory.C, src/classes/op.C, src/classes/reflection.C,
                    344:          src/classes/regex.C, src/classes/response.C,
                    345:          src/classes/string.C, src/classes/table.C, src/classes/void.C,
                    346:          src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
                    347:          src/include/pa_array.h, src/include/pa_base64.h,
                    348:          src/include/pa_cache_managers.h, src/include/pa_charset.h,
                    349:          src/include/pa_charsets.h, src/include/pa_common.h,
                    350:          src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
                    351:          src/include/pa_dictionary.h, src/include/pa_dir.h,
                    352:          src/include/pa_exception.h, src/include/pa_exec.h,
                    353:          src/include/pa_globals.h, src/include/pa_hash.h,
                    354:          src/include/pa_http.h, src/include/pa_memory.h,
                    355:          src/include/pa_opcode.h, src/include/pa_operation.h,
                    356:          src/include/pa_os.h, src/include/pa_pool.h,
                    357:          src/include/pa_random.h, src/include/pa_request.h,
                    358:          src/include/pa_request_charsets.h, src/include/pa_request_info.h,
                    359:          src/include/pa_sapi.h, src/include/pa_socks.h,
                    360:          src/include/pa_sql_connection.h,
                    361:          src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
                    362:          src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
                    363:          src/include/pa_stylesheet_manager.h, src/include/pa_symbols.h,
                    364:          src/include/pa_table.h, src/include/pa_threads.h,
                    365:          src/include/pa_types.h, src/include/pa_uue.h,
                    366:          src/include/pa_xml_exception.h, src/include/pa_xml_io.h,
                    367:          src/lib/gd/gif.C, src/lib/gd/gif.h, src/lib/gd/gifio.C,
                    368:          src/lib/ltdl/configure, src/lib/md5/pa_md5.h,
                    369:          src/lib/md5/pa_md5c.c, src/lib/memcached/pa_memcached.C,
                    370:          src/lib/memcached/pa_memcached.h, src/lib/punycode/pa_idna.c,
                    371:          src/lib/punycode/pa_idna.h, src/lib/sdbm/pa_file_io.C,
                    372:          src/lib/sdbm/pa_strings.C, src/lib/smtp/comms.C,
                    373:          src/lib/smtp/smtp.C, src/lib/smtp/smtp.h, src/main/compile.C,
                    374:          src/main/compile.tab.C, src/main/compile.y,
                    375:          src/main/compile_tools.C, src/main/compile_tools.h,
                    376:          src/main/execute.C, src/main/pa_base64.C,
                    377:          src/main/pa_cache_managers.C, src/main/pa_charset.C,
                    378:          src/main/pa_charsets.C, src/main/pa_common.C,
                    379:          src/main/pa_dictionary.C, src/main/pa_dir.C,
                    380:          src/main/pa_exception.C, src/main/pa_exec.C,
                    381:          src/main/pa_globals.C, src/main/pa_http.C, src/main/pa_memory.C,
                    382:          src/main/pa_os.C, src/main/pa_pool.C, src/main/pa_random.C,
                    383:          src/main/pa_request.C, src/main/pa_socks.C,
                    384:          src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
                    385:          src/main/pa_stylesheet_connection.C,
                    386:          src/main/pa_stylesheet_manager.C, src/main/pa_symbols.C,
                    387:          src/main/pa_table.C, src/main/pa_threads.C, src/main/pa_uue.C,
                    388:          src/main/pa_xml_exception.C, src/main/pa_xml_io.C,
                    389:          src/main/untaint.C, src/main/helpers/simple_folding.pl,
                    390:          src/sql/pa_sql_driver.h, src/targets/apache/mod_parser3.c,
                    391:          src/targets/apache/mod_parser3_core.C,
                    392:          src/targets/apache/pa_httpd.h, src/targets/cgi/parser3.C,
                    393:          src/targets/isapi/parser3isapi.C, src/types/pa_junction.h,
                    394:          src/types/pa_method.h, src/types/pa_property.h,
                    395:          src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
                    396:          src/types/pa_vcaller_wrapper.h, src/types/pa_vclass.C,
                    397:          src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
                    398:          src/types/pa_vconsole.h, src/types/pa_vcookie.C,
                    399:          src/types/pa_vcookie.h, src/types/pa_vdate.C,
                    400:          src/types/pa_vdate.h, src/types/pa_vdouble.h,
                    401:          src/types/pa_venv.C, src/types/pa_venv.h, src/types/pa_vfile.C,
                    402:          src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vform.h,
                    403:          src/types/pa_vhash.C, src/types/pa_vhash.h,
                    404:          src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
                    405:          src/types/pa_vimage.C, src/types/pa_vimage.h,
                    406:          src/types/pa_vint.h, src/types/pa_vjunction.C,
                    407:          src/types/pa_vjunction.h, src/types/pa_vmail.C,
                    408:          src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
                    409:          src/types/pa_vmemcached.C, src/types/pa_vmemcached.h,
                    410:          src/types/pa_vmemory.h, src/types/pa_vmethod_frame.C,
                    411:          src/types/pa_vmethod_frame.h, src/types/pa_vobject.C,
                    412:          src/types/pa_vobject.h, src/types/pa_vregex.C,
                    413:          src/types/pa_vregex.h, src/types/pa_vrequest.C,
                    414:          src/types/pa_vrequest.h, src/types/pa_vresponse.C,
                    415:          src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
                    416:          src/types/pa_vstateless_class.h,
                    417:          src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
                    418:          src/types/pa_vstatus.h, src/types/pa_vstring.C,
                    419:          src/types/pa_vstring.h, src/types/pa_vtable.C,
                    420:          src/types/pa_vtable.h, src/types/pa_vvoid.C,
                    421:          src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
                    422:          src/types/pa_vxnode.C, src/types/pa_vxnode.h,
                    423:          src/types/pa_wcontext.C, src/types/pa_wcontext.h,
                    424:          src/types/pa_wwrapper.h: copyright, authors actualized
                    425: 
1.181     moko      426: 2023-08-20  moko
                    427: 
                    428:        * tests/: 141.html, results/141.processed: test for ^math:uuid7[]
                    429:          commited (related to feature #1219)
                    430: 
                    431: 2023-08-16  moko
                    432: 
                    433:        * src/main/pa_random.C: replaced clock precision with monotonicity
                    434:          counter, good for Windows version with low clock frequency
                    435:          (related to feature #1229)
                    436: 
                    437: 2023-08-15  moko
                    438: 
                    439:        * src/: main/pa_random.C, types/pa_vstatus.C: win32 compatibility
                    440:          fixes related to feature #1229
                    441: 
                    442:        * src/: classes/math.C, include/pa_random.h, main/pa_random.C,
                    443:          types/pa_vstatus.C: ^math:uuid7 added, code provided by Sumo
                    444:          (implements feature #1229)
                    445: 
1.180     moko      446: 2023-08-02  moko
                    447: 
                    448:        * tests/: results/417.processed, 417.html: test for empty string
                    449:          match after last char added (related to bug #1224)
                    450: 
                    451:        * src/main/pa_string.C: avoid prestart++ after last char on zero
                    452:          length match (related to bug #1224)
                    453: 
1.179     moko      454: 2022-11-22  moko
                    455: 
                    456:        * tests/: 419.html, results/419.processed: test for L_URI and path
                    457:          removeal from filename added (related to bug #1204)
                    458: 
                    459:        * src/main/pa_request.C: bugfix: pa_filename was lost in 1.394
                    460:          commit (related to bug #1204), L_HTTP_HEADER is incorrect for
                    461:          attribute value, L_URI should be used
                    462: 
1.178     moko      463: 2022-09-21  moko
                    464: 
                    465:        * src/targets/cgi/parser3.C: more clear error messages
                    466: 
                    467:        * src/targets/cgi/parser3.C: only SAPI_Info_CGI can read POST,
                    468:          SAPI_Info will return 0 in read_post and post_size !=
                    469:          content_length will be thrown
                    470: 
1.177     moko      471: 2022-08-23  moko
                    472: 
                    473:        * src/types/pa_vmail.C: .tables addes as .raw contains only last
                    474:          header value
                    475: 
                    476: 2022-08-22  moko
                    477: 
                    478:        * tests/: 418.html, results/418.processed: test for
                    479:          ^hash_a.intersection[hash_b; $.order[self|arg] ] added (related
                    480:          to #1225)
                    481: 
                    482:        * src/classes/hash.C: keep old behavoir by default
                    483: 
                    484:        * src/classes/hash.C: ^hash_a.intersection[hash_b;
                    485:          $.order[self|arg] ] added (implements #1215)
                    486: 
1.176     moko      487: 2022-03-21  moko
                    488: 
                    489:        * src/main/pa_charset.C: bugfix: +static xml_encoding_handlers as
                    490:          xmlInitCharEncodingHandlers is called in libxml static
                    491:          initializers before gc_substitute_memory_management_functions in
                    492:          pa_globals and thus gc may not see reference to our
                    493:          xmlCharEncodingHandler and free it.
                    494: 
1.175     moko      495: 2022-01-26  moko
                    496: 
                    497:        * src/targets/cgi/parser3.C: argv[0] -> parser3_filespec
                    498: 
1.174     moko      499: 2021-12-28  moko
                    500: 
                    501:        * tests/: 417.html, results/417.processed: test for empty string
                    502:          match added (related to bug #1224)
                    503: 
                    504:        * src/main/pa_string.C: empty string match now works (fixes bug
                    505:          #1224)
                    506: 
1.173     moko      507: 2021-12-24  moko
                    508: 
                    509:        * tests/: 415_dir/29.p, results/415.processed: yet another test
                    510: 
                    511: 2021-12-23  moko
                    512: 
                    513:        * src/: classes/table.C, main/pa_request.C: warnings war
                    514: 
                    515:        * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
                    516:          main/pa_http.C, targets/cgi/parser3.C: MSVC SOCKET warnings war
                    517: 
                    518: 2021-12-21  moko
                    519: 
                    520:        * tests/: 416.html, results/416.processed: test for ^break[] in
                    521:          ^hash/table.select[] (related to feature #1222)
                    522: 
                    523:        * src/classes/: hash.C, table.C: ^break[] support for
                    524:          ^hash/table.select[] (implements feature #1222)
                    525: 
1.172     moko      526: 2021-11-30  moko
                    527: 
                    528:        * src/targets/cgi/parser3.C: default sock_ready interval changed to
                    529:          0.5 sec
                    530: 
1.171     moko      531: 2021-11-10  moko
                    532: 
                    533:        * tests/results/415.processed: more syntax errors tests added
                    534: 
                    535:        * tests/415_dir/: 20.p, 21.p, 22.p, 23.p, 24.p, 25.p, 26.p, 27.p,
                    536:          28.p: minor syntax error tests
                    537: 
                    538:        * src/main/pa_exception.C: pa_strdup added for compatibility
                    539: 
                    540:        * src/classes/curl.C: hint to call ^curl:options[
                    541:          $.library[correct.libcurl.so.name] ] added if default load fails.
                    542: 
                    543: 2021-11-09  moko
                    544: 
                    545:        * src/main/compile.y: error message can be on stack
                    546: 
                    547:        * src/main/pa_xml_io.C: strcat replaced with pa_strcat
                    548: 
                    549:        * src/main/pa_charset.C: memcpy is more correct and efficient in
                    550:          this case then strncpy
                    551: 
                    552:        * src/: classes/image.C, types/pa_vrequest.C: pa_strdup used
                    553:          instead of strcpy where possible
                    554: 
                    555:        * src/: classes/op.C, main/pa_exception.C: "%s" format now can be
                    556:          used to avoid MAX_STRING limit in Exception comment
                    557: 
                    558:        * tests/results/415.processed: compiler exceptions are no longer
                    559:          limited to MAX_STRING
                    560: 
                    561:        * src/main/: compile.y, compile_tools.h: Parse_control uses const
                    562:          char * instead of fixed buffer
                    563: 
                    564:        * tests/: 415.html, 415_dir/01.p, 415_dir/02.p, 415_dir/03.p,
                    565:          415_dir/04.p, 415_dir/05.p, 415_dir/06.p, 415_dir/07.p,
                    566:          415_dir/08.p, 415_dir/09.p, 415_dir/10.p, 415_dir/11.p,
                    567:          415_dir/12.p, 415_dir/13.p, 415_dir/14.p, 415_dir/15.p,
                    568:          results/415.processed: tests for parser.compile exceptions added
                    569: 
                    570: 2021-11-08  moko
                    571: 
                    572:        * src/: classes/math.C, include/pa_common.h, main/compile.y,
                    573:          main/pa_common.C, main/pa_dir.C, main/pa_exec.C, main/pa_http.C,
                    574:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                    575:          types/pa_vdate.C: pa_strncpy added ans used to avoid strncpy
                    576:          drawbacks
                    577: 
1.170     moko      578: 2021-11-06  moko
                    579: 
                    580:        * src/classes/inet.C: ^inet:hostname[] added by sumo@ patch
                    581:          (implements feature #1219)
                    582: 
                    583:        * tests/: 414.html, results/414.processed: test for
                    584:          ^hash.rename[from;to] added (related to feature #1144)
                    585: 
                    586: 2021-11-05  moko
                    587: 
                    588:        * src/classes/hash.C: ^hash.rename[ $.from[to] ... ] support added
                    589:          (related to feature #1144)
                    590: 
                    591: 2021-11-04  moko
                    592: 
                    593:        * src/: classes/hash.C, include/pa_hash.h: ^hash.rename[from;to]
                    594:          added (implements feature #1144)
                    595: 
1.169     moko      596: 2021-10-19  moko
                    597: 
                    598:        * tests/: 413.html, results/413.processed: test for hash no longer
                    599:          is accepted as file parameter (related to bug #1218)
                    600: 
                    601:        * src/: classes/curl.C, classes/file.C, classes/image.C,
                    602:          classes/math.C, classes/xdoc.C, types/pa_value.C,
                    603:          types/pa_value.h, types/pa_vfile.h, types/pa_vmail.C: hash no
                    604:          longer is accepted as file parameter (fixes bug #1218)
                    605: 
1.168     moko      606: 2021-07-19  moko
                    607: 
                    608:        * src/targets/cgi/parser3.C: waitpid in file::exec returned "No
                    609:          child processes" when SIGCHLD was SIG_IGN (fixes bug #1215)
                    610: 
1.167     moko      611: 2021-04-16  moko
                    612: 
                    613:        * src/types/pa_vmail.C: message can be null when e-mail is broken,
                    614:          processing it leads to assertions.
                    615: 
1.166     moko      616: 2021-03-25  moko
                    617: 
                    618:        * tests/: 412.html, results/412.processed: test to demonstrate bug
                    619:          #1213
                    620: 
1.165     moko      621: 2021-02-12  moko
                    622: 
                    623:        * tests/: 360.html, results/360.processed, results/363.processed:
                    624:          parser method call in expression mode no longer differs from call
                    625:          in string mode (related to feature #1211)
                    626: 
                    627: 2021-02-11  moko
                    628: 
                    629:        * src/types/pa_vmail.C: mail parsing with Windows line endings
                    630:          fixed (bug #1212)
                    631: 
                    632:        * src/types/pa_vmethod_frame.h: no more difference inside @test[]
                    633:          when called $v[^test[]] vs $v(^test[]), numbers are converted to
                    634:          strings in both calls (implements feature #1211)
                    635: 
1.164     moko      636: 2021-01-28  moko
                    637: 
                    638:        * buildall, etc/auto.p.in: to remove last patch in debian package
                    639: 
                    640:        * configure, configure.ac, src/include/pa_version.h: 3.4.6 ->
                    641:          3.4.7b
                    642: 
1.162     moko      643: 2021-01-21  moko
                    644: 
                    645:        * src/main/pa_http.C: no alarm() in file::load when web server mode
                    646:          is MULTITHREADED
                    647: 
1.157     moko      648: 2021-01-20  moko
                    649: 
1.161     moko      650:        * src/targets/apache/mod_parser3.c: it is more correct to recommend
                    651:          'a2enmod mpm_prefork'
                    652: 
1.160     moko      653:        * src/targets/apache/mod_parser3.c: prefork name is now
                    654:          'libapache2-mpm-itk'
                    655: 
                    656:        * src/targets/apache/mod_parser3_core.C: last regular malloc
                    657:          removed
                    658: 
1.159     moko      659:        * src/targets/isapi/Makefile.am: -pa_threads.C
                    660: 
1.158     moko      661:        * configure, configure.ac, src/include/pa_version.h: 3.4.6rc ->
                    662:          3.4.6
                    663: 
1.157     moko      664:        * etc/auto.p.in: post_max_size 10Mb -> 64Mb. It's 2021 year now. :)
                    665: 
                    666:        * etc/auto.p.in: @config[result] added to simplify $cfg change in
                    667:          /httpd.p
                    668: 
                    669:        * etc/auto.p.in: httpd fine-tune: + @OPTIONS partial, +
                    670:          ^use[/httpd.p] + optional ^preprocess[] (related to feature
                    671:          #1203)
                    672: 
                    673: 2021-01-19  moko
                    674: 
                    675:        * buildall: --disable-parallel-mark added to avoid "number of
                    676:          processors" threads creation for heap marking as it conflicts
                    677:          with RLimitNProc in apache (on Linux setrlimit RLIMIT_NPROC
                    678:          limits threads)
                    679: 
1.156     moko      680: 2021-01-16  moko
                    681: 
                    682:        * src/: classes/memory.C, include/pa_memory.h, lib/gc/include/gc.h,
                    683:          main/pa_globals.C, main/pa_memory.C,
                    684:          targets/apache/mod_parser3_core.C, targets/isapi/parser3isapi.C,
                    685:          types/pa_vhashfile.C: ^memory:auto-compact(N) added (implements
                    686:          feature #1209)
                    687: 
                    688: 2021-01-15  moko
                    689: 
                    690:        * configure, configure.ac, src/include/pa_version.h: 3.4.6b ->
                    691:          3.4.6rc
                    692: 
                    693:        * src/classes/json.C: get_delim added for delimiter caching (10%
                    694:          faster on large json)
                    695: 
                    696: 2021-01-14  moko
                    697: 
                    698:        * operators.txt: updated with 3.4.6 changes
                    699: 
                    700:        * tests/results/224.processed: test result modified after
                    701:          today(shift) implemented
                    702: 
                    703:        * tests/: 407.html, results/407.processed: test for ^hash.select
                    704:          option $.default(bool) added (related to feature #1172)
                    705: 
                    706:        * src/classes/hash.C: ^hash.select option $.default(bool) added
                    707:          (related to feature #1172)
                    708: 
                    709:        * tests/: 141.html, results/141.processed: test modified for
                    710:          feature #1185.
                    711: 
                    712:        * src/: classes/math.C, include/pa_random.h, main/pa_random.C:
                    713:          ^math:uuid options $.lower(bool) $.solid(bool), ^math:uid64
                    714:          options $.lower(bool) (implements feature #1185)
                    715: 
                    716: 2021-01-11  moko
                    717: 
                    718:        * src/classes/date.C: ^date::today(N) by gz@ (implements feature
                    719:          #1192)
                    720: 
                    721:        * tests/: 411.html, results/411.processed: test for ^date::today(N)
                    722:          added (related to feature #1192)
                    723: 
1.155     moko      724: 2021-01-05  moko
                    725: 
                    726:        * tests/: 270.html, results/270.processed: test modified to work
                    727:          under Windows
                    728: 
                    729:        * tests/: 390.html, 395.html, results/395.processed: tests updated
                    730:          4 windows
                    731: 
                    732:        * tests/: 410.html, results/410.processed: test for
                    733:          $CLASS-GETTER-PROTECTED(false) added
                    734: 
                    735: 2021-01-04  moko
                    736: 
                    737:        * tests/: 409.html, results/409.processed, results/auto.p: test for
                    738:          $MAIN:LOCALS(true) added
                    739: 
1.154     moko      740: 2021-01-03  moko
                    741: 
                    742:        * src/: main/pa_http.C, main/pa_request.C, types/pa_vclass.C,
                    743:          types/pa_vclass.h, types/pa_vstateless_class.C,
                    744:          types/pa_vstateless_class.h: @conf[] +CLASS-GETTER-PROTECTED,
                    745:          +LOCALS. $main -> $MAIN in exception texts (implements feature
                    746:          #1207)
                    747: 
                    748: 2021-01-02  moko
                    749: 
                    750:        * etc/auto.p.in: minor
                    751: 
                    752:        * src/main/pa_request.C: sending headers only after opening file to
                    753:          allow error reporting if file was not opened (foreign group,
                    754:          etc).
                    755: 
                    756: 2020-12-31  moko
                    757: 
                    758:        * src/: include/pa_request.h, main/pa_request.C,
                    759:          targets/cgi/parser3.C: ^httpd-main[] -> ^httpd:main[]
                    760: 
                    761:        * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
                    762:          main/pa_request.C: get_class_ref added and used
                    763: 
                    764:        * etc/auto.p.in: @CLASS httpd added
                    765: 
                    766:        * etc/auto.p.in: @auto[] is now first
                    767: 
                    768: 2020-12-30  moko
                    769: 
                    770:        * tests/: 408.html, results/408.processed: test for bug #1166
                    771:          (windows only) added
                    772: 
                    773:        * src/main/pa_common.C: create_dir_for_file should not create dir
                    774:          for trailing / (fixes bug #1166)
                    775: 
                    776:        * tests/: 341.html, results/341.processed: tests for
                    777:          ^nameless_table.hash[] added (related to feature #1138)
                    778: 
                    779:        * src/classes/table.C: ^nameless_table.hash[0;1] now supported
                    780:          (implements feature #1138), extra fields in named tables no
                    781:          longer ignored (implements feature #1138)
                    782: 
                    783:        * tests/results/390.processed: updated after exception text change
                    784: 
                    785: 2020-12-29  moko
                    786: 
                    787:        * tests/: 407.html, results/407.processed: +$._default check
                    788: 
                    789:        * src/classes/hash.C: keep $_default in ^hash.reverse[]
                    790: 
                    791:        * tests/: 407.html, results/407.processed: test for ^hash.select[]
                    792:          and ^hash.reverse[] added (releated to feature #1172)
                    793: 
                    794:        * src/classes/hash.C:
                    795:          ^hash.select[key;value](bool-condition)[options hash] +
                    796:          ^hash.reverse[] added (implements feature #1172)
                    797: 
                    798:        * src/types/pa_vtable.h: warning war
                    799: 
                    800:        * src/include/pa_config_fixed.h: win32 fix
                    801: 
1.153     moko      802: 2020-12-27  moko
                    803: 
                    804:        * tests/: 406.html, results/406.processed: test results updated
                    805: 
                    806:        * src/: classes/table.C, main/pa_request.C, types/pa_vmail.C,
                    807:          types/pa_vmemcached.C: fine tuning in ^table.rename[], minor
                    808:          spelling
                    809: 
                    810: 2020-12-26  moko
                    811: 
                    812:        * tests/: 406.html, results/406.processed: tests for
                    813:          ^table.rename[] added (related to feature #1148)
                    814: 
                    815:        * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
                    816:          ^table.rename[column name from;column name to], ^table.rename[
                    817:          $.[column name from][column name to] ... ] added (implements
                    818:          feature #1148)
                    819: 
                    820: 2020-12-25  moko
                    821: 
                    822:        * src/: include/pa_request_info.h, targets/cgi/parser3.C:
                    823:          request_info now on stack to avoid yet another THREAD_LOCAL
                    824:          memory deallocation issue (now with cookies), explained in #1203
                    825: 
                    826:        * src/types/pa_vcookie.C: fields should be inited
                    827: 
                    828: 2020-12-24  moko
                    829: 
                    830:        * src/include/pa_stylesheet_connection.h: looks like
                    831:          xsltFreeStylesheet leads to memory double-free. If so, it's for
                    832:          sure libxml bug, but we have GC anyway, so we just remove this
                    833:          call and see...
                    834: 
                    835:          * thread #1, name = 'parser.parser3.cgi', stop reason = signal
                    836:          SIGABRT   * frame #0: 0x0000000801ab50fa libc.so.7`__sys_thr_kill
                    837:          + 10     frame #2: 0x0000000801ab5039 libc.so.7`abort at
                    838:          abort.c:65:8     frame #3: 0x00000000004da663
                    839:          parser.parser3.cgi`GC_freehblk(hbp=<unavailable>) at
                    840:          allchblk.c:878:9     frame #4: 0x00000000004cb8c4
                    841:          parser.parser3.cgi`GC_free(p=0x0000000808b34000) at
                    842:          malloc.c:617:9     frame #5: 0x0000000000577f0c
                    843:          parser.parser3.cgi`xmlHashFree(table=0x0000000806991a80,
                    844:          f=<unavailable>) at hash.c:356:2     frame #6: 0x000000000051a7c2
                    845:          parser.parser3.cgi`xsltFreeTemplateHashes + 50     frame #7:
                    846:          0x000000000050cfac parser.parser3.cgi`xsltFreeStylesheet + 124
                    847:           frame #8: 0x000000000050d35c
                    848:          parser.parser3.cgi`xsltFreeStylesheetList + 44     frame #9:
                    849:          0x000000000050d1fa parser.parser3.cgi`xsltFreeStylesheet + 714
                    850:           frame #10: 0x00000000004436e5
                    851:          parser.parser3.cgi`Stylesheet_manager::maybe_expire_cache()
                    852:          [inlined]
                    853:          Stylesheet_connection::disconnect(this=0x0000000804676c80) at
                    854:          pa_stylesheet_connection.h:62:3
                    855: 
                    856: 2020-12-23  moko
                    857: 
                    858:        * src/classes/image.C: ^image::measure[; $.video() ] option added
                    859: 
                    860:        * tests/: 395.html, 395_dir/4.mp4, results/395.processed: test
                    861:          ^image::measure[; $.video(true) ] added
                    862: 
                    863:        * src/main/pa_exec.C: not cleared automatically in multithreaded
                    864:          httpd mode for unknown reasons
                    865: 
                    866: 2020-12-22  moko
                    867: 
                    868:        * src/targets/cgi/parser3.C: added by PAF in rev 201 to "write to
                    869:          error_log uri of currently processed document", but never used
                    870:          and conflicts with how libgc stops threads on FreeBSD (#define
                    871:          SIG_SUSPEND SIGUSR1), thus removed.
                    872: 
                    873: 2020-12-21  moko
                    874: 
                    875:        * src/main/pa_request.C: +comment
                    876: 
1.151     moko      877: 2020-12-20  moko
                    878: 
1.152     moko      879:        * src/: include/pa_common.h, include/pa_memory.h, main/pa_common.C:
                    880:          it is more safe to have versions of pa_strdup with one and two
                    881:          arguments, as helper_length=0 not always mean that strlen()
                    882:          should be called, but means zero.
                    883: 
                    884:        * src/targets/isapi/parser3isapi.C: minor
                    885: 
                    886:        * src/main/pa_http.C: +valid_http_method
                    887: 
1.151     moko      888:        * src/: include/pa_http.h, main/pa_http.C,
                    889:          targets/cgi/pa_sapi_info.h: SERVER_PORT now available
                    890: 
                    891: 2020-12-17  moko
                    892: 
                    893:        * tests/: 405.html, results/405.processed: test for split by regex
                    894:          added (related to feature #1160)
                    895: 
                    896:        * src/classes/string.C: split by regex implemented (feature #1160)
                    897: 
                    898:        * src/classes/string.C: minor
                    899: 
                    900:        * tests/: 404.html, results/404.processed: test for whitespace
                    901:          string is now OK for table argument (related to feature #1169)
                    902: 
                    903:        * src/: classes/image.C, classes/string.C, classes/table.C,
                    904:          types/pa_vmethod_frame.C: whitespace string is now OK for table
                    905:          argument (as with hash) (implements feature #1169)
                    906: 
                    907:        * src/classes/op.C: Exception.add_comment used to avoid MAX_LENGTH
                    908:          limit for comment (fixes bug #1102)
                    909: 
                    910:        * src/targets/cgi/parser3.C: +HAVE_TLS check
                    911: 
                    912:        * src/main/pa_http.C: no HAVE_TLS -> no multithreads mode
                    913: 
                    914:        * src/include/pa_config_includes.h: HAVE_TLS used
                    915: 
                    916:        * configure.ac: +TLS check
                    917: 
                    918:        * src/main/pa_http.C: content logging added
                    919: 
                    920:        * src/targets/cgi/: pa_sapi_info.h, parser3.C:
                    921:          clear_response_headers added
                    922: 
                    923: 2020-12-16  moko
                    924: 
                    925:        * buildall: as we now use threads, libatomic_ops still required for
                    926:          some OS.
                    927: 
                    928:        * src/main/pa_request.C: whitespace
                    929: 
                    930:        * src/: include/pa_request.h, main/pa_request.C:
                    931:          Request::Exception_trace::table extracted and used
                    932: 
                    933:        * src/main/pa_request.C: moving output_result call outside of try
                    934:          as network exceptions should not be handled by parser code
                    935: 
                    936:        * src/: include/pa_http.h, main/pa_http.C: HTTPD_DEBUG added for
                    937:          logging network exchange
                    938: 
                    939:        * src/targets/cgi/: pa_sapi_info.h, parser3.C: do not send error
                    940:          via network if it was network write error.
                    941: 
                    942:        * src/targets/cgi/parser3.C: log -> pa_log
                    943: 
                    944:        * src/targets/cgi/parser3.C: pa_get_thread_id() used for logging
                    945: 
                    946:        * src/main/pa_threads.C: getpid() if no gettid() found
                    947: 
                    948:        * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
                    949:          we need to ignore "void" connections from browsers (browsers open
                    950:          connections in advance and they will be empty if user does not
                    951:          request more pages)
                    952: 
                    953: 2020-12-15  moko
                    954: 
                    955:        * src/targets/cgi/parser3.C: avoid previous uri in logs
                    956: 
                    957:        * src/targets/cgi/: pa_sapi_info.h, parser3.C: global ::request and
                    958:          RequestController not needed in httpd mode
                    959: 
                    960:        * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
                    961:          classes/classes.h, classes/curl.C, classes/date.C,
                    962:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                    963:          classes/hashfile.C, classes/image.C, classes/inet.C,
                    964:          classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
                    965:          classes/memcached.C, classes/memory.C, classes/op.C,
                    966:          classes/reflection.C, classes/regex.C, classes/response.C,
                    967:          classes/string.C, classes/table.C, classes/void.C,
                    968:          classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                    969:          include/pa_array.h, include/pa_base64.h,
                    970:          include/pa_cache_managers.h, include/pa_charset.h,
                    971:          include/pa_charsets.h, include/pa_common.h,
                    972:          include/pa_config_fixed.h, include/pa_config_includes.h,
                    973:          include/pa_dictionary.h, include/pa_dir.h,
                    974:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                    975:          include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
                    976:          include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
                    977:          include/pa_pool.h, include/pa_random.h, include/pa_request.h,
                    978:          include/pa_request_charsets.h, include/pa_request_info.h,
                    979:          include/pa_sapi.h, include/pa_socks.h,
                    980:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                    981:          include/pa_stack.h, include/pa_string.h,
                    982:          include/pa_stylesheet_connection.h,
                    983:          include/pa_stylesheet_manager.h, include/pa_symbols.h,
                    984:          include/pa_table.h, include/pa_threads.h, include/pa_types.h,
                    985:          include/pa_uue.h, include/pa_xml_exception.h,
                    986:          include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
                    987:          lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
                    988:          lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
                    989:          lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
                    990:          lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
                    991:          lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
                    992:          main/compile.tab.C, main/compile.y, main/compile_tools.C,
                    993:          main/compile_tools.h, main/execute.C, main/pa_base64.C,
                    994:          main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
                    995:          main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
                    996:          main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
                    997:          main/pa_http.C, main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
                    998:          main/pa_random.C, main/pa_request.C, main/pa_socks.C,
                    999:          main/pa_sql_driver_manager.C, main/pa_string.C,
                   1000:          main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
                   1001:          main/pa_symbols.C, main/pa_table.C, main/pa_threads.C,
                   1002:          main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
                   1003:          main/untaint.C, sql/pa_sql_driver.h,
                   1004:          targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
                   1005:          targets/apache/pa_httpd.h, targets/cgi/parser3.C,
                   1006:          targets/isapi/parser3isapi.C, types/pa_junction.h,
                   1007:          types/pa_method.h, types/pa_property.h, types/pa_value.C,
                   1008:          types/pa_value.h, types/pa_vbool.h, types/pa_vcaller_wrapper.h,
                   1009:          types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
                   1010:          types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
                   1011:          types/pa_vdate.C, types/pa_vdate.h, types/pa_vdouble.h,
                   1012:          types/pa_venv.C, types/pa_venv.h, types/pa_vfile.C,
                   1013:          types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
                   1014:          types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.C,
                   1015:          types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
                   1016:          types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
                   1017:          types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
                   1018:          types/pa_vmath.h, types/pa_vmemcached.C, types/pa_vmemcached.h,
                   1019:          types/pa_vmemory.h, types/pa_vmethod_frame.C,
                   1020:          types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
                   1021:          types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
                   1022:          types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
                   1023:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   1024:          types/pa_vstateless_object.h, types/pa_vstatus.C,
                   1025:          types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
                   1026:          types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
                   1027:          types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   1028:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
                   1029:          types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
                   1030: 
                   1031:        * src/main/pa_request.C: old compilers support
                   1032: 
                   1033:        * tests/: 362.html, results/362.processed: test updated after
                   1034:          changes after upgrade to libxml2-2.9.9 were made (related to bug
                   1035:          #1108)
                   1036: 
                   1037:        * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltStylesheet_auto_ptr
                   1038:          removed, as xsltFreeStylesheet has side effects on original doc.
                   1039:          compiled stylesheet no longer cached as with libxml2-2.9.9 it was
                   1040:          not updated after xdoc modification (part 3 of test 362).
                   1041:          (related to bug #1108)
                   1042: 
                   1043:        * src/targets/isapi/parser3isapi.C: +pa_strcat
                   1044: 
                   1045:        * src/: classes/memory.C, include/pa_memory.h,
                   1046:          targets/apache/mod_parser3_core.C, targets/isapi/parser3isapi.C:
                   1047:          PA_GC_GCOLLECT used
                   1048: 
                   1049:        * src/include/pa_memory.h: +PA_GC_COLLECT
                   1050: 
                   1051:        * src/targets/cgi/parser3.C: msvs support fixes
                   1052: 
                   1053:        * src/lib/gc/include/gc.h: more cleanup
                   1054: 
                   1055:        * src/: include/pa_threads.h, main/pa_threads.C: win32 fixes
                   1056: 
                   1057:        * src/: include/pa_http.h, main/pa_http.C, main/pa_request.C,
                   1058:          targets/cgi/parser3.C: $main:HTTPD.mode implemented
                   1059: 
                   1060:        * src/include/pa_config_includes.h: +HAVE_PTHREAD_H
                   1061: 
                   1062:        * configure.ac: pthread.h added to checked headers
                   1063: 
                   1064:        * src/classes/table.C: string stream is back :)
                   1065: 
                   1066:        * src/classes/memory.C: GC_generate_random_backtrace no longer
                   1067:          exists
                   1068: 
                   1069:        * src/main/pa_globals.C: GC_dont_gc replaced
                   1070: 
                   1071:        * src/lib/gc/include/gc.h: major cleanup, only used functions are
                   1072:          left to simplify adding new functions.  depricated GC_dont_gc
                   1073:          replaced with GC_disable and GC_enable calls.
                   1074: 
                   1075:        * src/lib/cord/: cordxtra.c, include/cord.h: cleanup:
                   1076:          CORD_from_file* not used and thus removed
                   1077: 
                   1078:        * src/lib/gc/include/gc_allocator.h: minor cleanup
                   1079: 
                   1080: 2020-12-14  moko
                   1081: 
                   1082:        * src/classes/: curl.C, memory.C, table.C: every TLS should be
                   1083:          referenced elsewhere, or GC will collect it.
                   1084: 
                   1085:        * src/: include/pa_xml_io.h, main/pa_stylesheet_connection.C,
                   1086:          main/pa_xml_io.C: bugfix: TLS variables should be referenced
                   1087:          elsewhere, or GC will collect them (and we'll get GPF in
                   1088:          multithreaded enviroment).  May be it can be also fixed by some
                   1089:          GC call, not sure. But this fix costs nothing (but hours of
                   1090:          debugging to find the issue :).
                   1091: 
1.150     moko     1092: 2020-12-11  moko
                   1093: 
                   1094:        * configure.ac: gettid() check added
                   1095: 
                   1096:        * src/main/pa_threads.C: HAVE_GETTID used
                   1097: 
                   1098:        * src/include/pa_config_auto.h.in: +HAVE_GETTID
                   1099: 
                   1100:        * src/: include/pa_threads.h, main/pa_threads.C: now unified
                   1101:          version for isapi/cgi/apache
                   1102: 
                   1103:        * buildall: threads are now required.
                   1104: 
                   1105:        * src/: targets/apache/ApacheModuleParser3Core.vcproj,
                   1106:          targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
                   1107:          main/main.vcproj: pa_threads.C moved to main
                   1108: 
                   1109:        * src/targets/: apache/pa_threads.C, cgi/pa_threads.C,
                   1110:          isapi/pa_threads.C: pa_threads.C moved to main
                   1111: 
                   1112:        * src/: main/Makefile.am, targets/cgi/Makefile.am,
                   1113:          targets/apache/Makefile.am: pa_threads.C moved to main
                   1114: 
                   1115:        * src/classes/xdoc.C: Stylesheet_connection_ptr changed a bit
                   1116: 
                   1117:        * src/: include/pa_stylesheet_connection.h,
                   1118:          main/pa_stylesheet_manager.C: Stylesheet_connection_ptr simplfied
                   1119:          and weird GPF in multithreaded httpd is gone
                   1120: 
                   1121:        * src/include/: pa_stylesheet_connection.h,
                   1122:          pa_sql_driver_manager.h: whitespace
                   1123: 
                   1124:        * src/main/pa_sql_driver_manager.C: timeout 60 sec -> 10 sec
                   1125: 
                   1126:        * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
                   1127:          main/pa_stylesheet_manager.C: whitespace, warning war
                   1128: 
                   1129:        * src/: include/pa_threads.h, targets/apache/pa_threads.C,
                   1130:          targets/cgi/pa_threads.C, targets/isapi/pa_threads.C:
                   1131:          parser_multithreaded never used
                   1132: 
                   1133:        * src/main/pa_http.C: no ALARM in MULTITHREADED httpd server mode
                   1134: 
                   1135: 2020-12-10  moko
                   1136: 
                   1137:        * src/: include/pa_config_includes.h, include/pa_http.h,
                   1138:          main/pa_http.C, targets/cgi/parser3.C: initial support for
                   1139:          MULTITHREADED and PARALLEL httpd server modes
                   1140: 
                   1141:        * src/main/pa_globals.C: GC_java_finalization is depricated
                   1142: 
                   1143: 2020-12-09  moko
                   1144: 
                   1145:        * etc/auto.p.in: + @httpd-main
                   1146: 
                   1147:        * src/: include/pa_common.h, main/pa_request.C,
                   1148:          targets/cgi/pa_sapi_info.h: Range Requests (rfc7233) now really
                   1149:          work
                   1150: 
                   1151:        * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
                   1152:          slow file_read_binary no longer used, send_range added
                   1153: 
                   1154: 2020-12-08  moko
                   1155: 
                   1156:        * src/main/pa_request.C: >4Gb support
                   1157: 
                   1158:        * src/targets/cgi/parser3.C: msvc warning war
                   1159: 
                   1160:        * src/: include/pa_config_includes.h, main/pa_http.C,
                   1161:          main/pa_request.C: msvc warnings war
                   1162: 
                   1163:        * src/classes/image.C: warning war
                   1164: 
                   1165:        * src/classes/table.C: MSVC warning war
                   1166: 
                   1167:        * src/targets/cgi/parser3.C: msvc warnings war
                   1168: 
                   1169:        * src/targets/apache/mod_parser3_core.C: SYSTEM_CONFIG_FILE support
                   1170:          added
                   1171: 
1.149     moko     1172: 2020-12-07  moko
                   1173: 
1.150     moko     1174:        * configure.ac: SYSTEM_LOG_FILE no longer required as cheat used to
                   1175:          avoid logging beside system-wide auto.p
                   1176: 
                   1177:        * src/targets/cgi/parser3.C: SYSTEM_CONFIG_FILE used
                   1178: 
                   1179:        * configure, configure.ac, src/include/pa_config_auto.h.in:
                   1180:          configure options added:
                   1181: 
                   1182:          --with-system-cfg=FILE  to specify system-wide auto.p
                   1183:          --with-system-log=FILE  to specify system-wide parser3.log
                   1184: 
                   1185:        * Makefile.am: bin no longer exists
                   1186: 
                   1187:        * configure, configure.ac: auto.p moved to etc to simplify debian
                   1188:          package
                   1189: 
                   1190:        * buildall: auto.p and parser3.charsets moved to their default
                   1191:          location after install
                   1192: 
                   1193:        * etc/: Makefile.am, auto.p.in: auto.p moved to etc directory
                   1194: 
                   1195:        * aclocal.m4, configure: automake 1.15 -> 1.16.1
                   1196: 
1.149     moko     1197:        * src/targets/cgi/parser3.C: locate_config call returned to
                   1198:          original place as it requires pa_thread_request() under Windows
                   1199: 
                   1200:        * src/targets/cgi/parser3.C: renaming
                   1201: 
                   1202: 2020-12-06  moko
                   1203: 
                   1204:        * src/: main/pa_globals.C, targets/cgi/parser3.C: thread request
                   1205:          check added
                   1206: 
                   1207: 2020-12-04  moko
                   1208: 
                   1209:        * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
                   1210:          main/pa_request.C: unified uint64_t lseek implemented to support
                   1211:          >4Gb files under x86, including Windows
                   1212: 
                   1213: 2020-12-02  moko
                   1214: 
                   1215:        * src/main/pa_common.C: minor bugfix: $.limit() should be checked
                   1216:          with max_file_size
                   1217: 
                   1218:        * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
                   1219:          support for processing files sized >4Gb on 32 bit planforms
                   1220: 
                   1221:        * tests/399.html: file moved
                   1222: 
                   1223:        * src/: include/pa_string.h, main/pa_string.C: long long -> int64_t
                   1224: 
                   1225:        * src/targets/cgi/pa_sapi_info.h: warning war
                   1226: 
                   1227:        * src/: main/pa_http.C, targets/isapi/parser3isapi.C: windows
                   1228:          warning war
                   1229: 
                   1230: 2020-12-01  moko
                   1231: 
                   1232:        * src/classes/image.C: mp4 extended size (>4Gb) support added
                   1233: 
                   1234:        * src/classes/image.C: for "size not found" exception to be shown
                   1235:          if size not found until eof
                   1236: 
                   1237:        * src/classes/image.C: long -> off_t (which is 64 bits even on 32
                   1238:          bit linux)
                   1239: 
                   1240:        * src/classes/image.C: ^image::measure[] now supports mp4 (feature
                   1241:          #1188)
                   1242: 
                   1243: 2020-11-30  moko
                   1244: 
                   1245:        * src/classes/image.C: definitions moved closer to code
                   1246: 
                   1247:        * tests/: 395.bmp, 395.html, 396.html, 396.tiff, 395_dir/1.bmp,
                   1248:          395_dir/2.tiff, 395_dir/3_VP8.webp, 395_dir/3_VP8L.webp,
                   1249:          395_dir/3_VP8X.webp, results/395.processed,
                   1250:          results/396.processed: tests for ^image::measure[] .webp support
                   1251:          added, all image files moved into one directory (related to
                   1252:          feature #1188)
                   1253: 
                   1254:        * src/classes/image.C: ^image::measure[] now supports webp (feature
                   1255:          #1188)
                   1256: 
1.148     moko     1257: 2020-11-29  moko
                   1258: 
                   1259:        * src/main/pa_request.C: CONF_OPTION added to unify @conf options
                   1260:          processing, unnessesary defines removed
                   1261: 
                   1262: 2020-11-24  moko
                   1263: 
                   1264:        * tests/results/: 099.processed, 100.processed, 205.processed,
                   1265:          309.processed, 310.processed: Content-Disposition: inline
                   1266:          returned
                   1267: 
                   1268:        * tests/: 099.html, 237.html, 403.html, outputs/403.processed,
                   1269:          results/auto.p: test for $response:body[ $.file[<file>] $.name[]
                   1270:          ] added (related to bug #1204)
                   1271: 
                   1272:        * src/main/pa_request.C: $response:body[ $file[<file>.ext] $.name[]
                   1273:          ] supported to avoid Content-Disposition: inline;
                   1274:          filename="<file>.ext" but still set Content-Type for ext (related
                   1275:          to bug #1204)
                   1276: 
1.147     moko     1277: 2020-11-22  moko
                   1278: 
                   1279:        * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
                   1280:          types/pa_vfile.C: pa_filename added to avoid useless rsplit
                   1281: 
                   1282:        * src/main/pa_request.C: content_disposition_inline returned.
                   1283: 
                   1284: 2020-11-17  moko
                   1285: 
                   1286:        * src/main/pa_request.C: empty main method name support
                   1287: 
                   1288:        * src/: main/pa_common.C, targets/cgi/parser3.C: httpd
                   1289:          config_handler added, stdout flush added.
                   1290: 
                   1291: 2020-11-16  moko
                   1292: 
                   1293:        * src/targets/cgi/parser3.C: filespec_4log added, pa_strcat used.
                   1294: 
                   1295:        * tests/results/: 099.processed, 205.processed, 237.processed,
                   1296:          309.processed, 310.processed: Content-Disposition: inline is not
                   1297:          required and should not contain filename="<name>"
                   1298: 
                   1299:        * src/: include/pa_common.h, main/pa_common.C, main/pa_exception.C,
                   1300:          targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
                   1301:          targets/isapi/parser3isapi.C: pa_strcat implemented and used
                   1302: 
1.146     moko     1303: 2020-11-14  moko
                   1304: 
                   1305:        * src/targets/cgi/parser3.C: spelling
                   1306: 
                   1307:        * src/targets/cgi/parser3.C: renaming
                   1308: 
                   1309:        * src/targets/cgi/parser3.C: args_skip removed, locate_config
                   1310:          relocated
                   1311: 
                   1312:        * src/targets/cgi/parser3.C: execution_canceled was for sigpipe
                   1313:          before request processing, which is weired
                   1314: 
                   1315: 2020-11-13  moko
                   1316: 
                   1317:        * src/main/pa_http.C: pa_recv added with timeout support, thus read
                   1318:          copied in httpd.
                   1319: 
                   1320: 2020-11-12  moko
                   1321: 
                   1322:        * src/main/pa_http.C: ALARM code unified to be used in httpd
                   1323: 
                   1324:        * src/: include/pa_request.h, main/pa_request.C,
                   1325:          targets/cgi/pa_sapi_info.h: pa_httpd_timeout added
                   1326: 
                   1327:        * src/main/pa_http.C: URI validation added
                   1328: 
                   1329:        * src/targets/cgi/parser3.C: filespec_to_process now variable,
                   1330:          can't be empty but can be null.  httpd-main is now main method
                   1331:          name for httpd mode
                   1332: 
                   1333: 2020-11-11  moko
                   1334: 
                   1335:        * src/main/pa_request.C: path_translated can be null in httpd mode
                   1336: 
                   1337:        * src/: classes/curl.C, classes/file.C, classes/hashfile.C,
                   1338:          classes/image.C, classes/op.C, classes/string.C, classes/table.C,
                   1339:          classes/xdoc.C, include/pa_request.h, main/execute.C,
                   1340:          main/pa_request.C: r.absolute -> r.full_disk_path
                   1341: 
                   1342:        * src/targets/cgi/parser3.C: if filename to process is not
                   1343:          specified, auto.p should be present.
                   1344: 
1.145     moko     1345: 2020-11-03  moko
                   1346: 
                   1347:        * src/: classes/op.C, include/pa_request.h: unused argument removed
                   1348: 
                   1349:        * src/main/pa_request.C: content_disposition_inline is the default,
                   1350:          not required.
                   1351: 
1.144     moko     1352: 2020-10-29  moko
                   1353: 
                   1354:        * src/: classes/op.C, include/pa_request.h, main/pa_request.C:
                   1355:          ^use[file; $.main(true) ] implemented for auto.p processing and
                   1356:          path_translated changing to correct relative files path
                   1357:          calculation in httpd mode
                   1358: 
                   1359:        * src/: include/pa_request.h, main/pa_request.C:
                   1360:          fail_on_read_problem removed, as it allways true, as if should
                   1361:          be.
                   1362: 
                   1363:        * src/: include/pa_request.h, main/pa_request.C,
                   1364:          targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
                   1365:          targets/isapi/parser3isapi.C: clearing config_filespec when
                   1366:          config was not found, thus flag not required and removed.
                   1367: 
                   1368: 2020-10-28  moko
                   1369: 
                   1370:        * tests/: 402.html, results/402.processed: error reporting test
                   1371: 
                   1372:        * src/main/execute.C: better error reporting when
                   1373:          $result[^hash::create[]] in @main.
                   1374: 
                   1375:        * src/main/: execute.C, pa_request.C: frame.result() should be used
                   1376:          + minor optimization
                   1377: 
                   1378:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
                   1379:          main/pa_xml_io.C: execute_*_method simplified and unified
                   1380: 
                   1381: 2020-10-27  moko
                   1382: 
                   1383:        * tests/: 306.html, results/306.processed: a bit more testing. :)
                   1384: 
                   1385:        * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
                   1386:          types/pa_vclass.h, types/pa_vconsole.h, types/pa_vcookie.C,
                   1387:          types/pa_vdate.C, types/pa_venv.C, types/pa_vform.C,
                   1388:          types/pa_vhash.h, types/pa_vimage.C, types/pa_vmemcached.C,
                   1389:          types/pa_vmethod_frame.h, types/pa_vobject.C,
                   1390:          types/pa_vrequest.C, types/pa_vresponse.C, types/pa_vtable.C,
                   1391:          types/pa_vxnode.C: optimization: PUT_ELEMENT_REPLACED_ELEMENT no
                   1392:          longer used in object-prototype mode
                   1393: 
                   1394:        * src/: include/pa_sapi.h, targets/apache/mod_parser3_core.C,
                   1395:          targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C,
                   1396:          targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_venv.h,
                   1397:          types/pa_vform.C, types/pa_vform.h: + $env:name[value] and
                   1398:          $form:name[value] features
                   1399: 
1.143     moko     1400: 2020-10-18  moko
                   1401: 
                   1402:        * src/targets/cgi/Makefile.am: + pa_sapi_info.h
                   1403: 
                   1404: 2020-10-15  moko
                   1405: 
                   1406:        * src/main/pa_http.C: url no longer needed as
                   1407:          ALTER_EXCEPTION_SOURCE is used
                   1408: 
                   1409:        * src/: classes/curl.C, include/pa_common.h, main/pa_common.C,
                   1410:          main/pa_http.C: check_file_size filespec is now optional
                   1411: 
                   1412:        * src/: classes/curl.C, include/pa_exception.h,
                   1413:          main/pa_exception.C, main/pa_http.C: ALTER_EXCEPTION_SOURCE and
                   1414:          ALTER_EXCEPTION_COMMENT added for better error reporting
                   1415: 
                   1416:        * tests/: 379-curl.html, 379.html, results/223-curl.processed,
                   1417:          results/346-curl.processed, results/379-curl.processed,
                   1418:          results/379.processed: test results updated as load now provides
                   1419:          better error reporting + curl responses updated
                   1420: 
                   1421: 2020-10-14  moko
                   1422: 
                   1423:        * src/: classes/date.C, include/pa_string.h, main/pa_http.C,
                   1424:          main/pa_string.C, targets/apache/mod_parser3_core.C,
                   1425:          targets/cgi/parser3.C: pa_atoi / pa_atoui / pa_atoul usage
                   1426:          checked. 10 is now default base, no hex autodetect by default
                   1427: 
                   1428:        * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
                   1429:          connection socket closing in destructor + accept exception
                   1430:          handling
                   1431: 
                   1432:        * src/targets/cgi/parser3.C: warning war
                   1433: 
                   1434:        * src/: include/pa_http.h, include/pa_sapi.h, main/pa_http.C,
                   1435:          main/pa_request.C, targets/apache/mod_parser3_core.C,
                   1436:          targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C: global try
                   1437:          exception handling unified
                   1438: 
                   1439: 2020-10-13  moko
                   1440: 
                   1441:        * src/targets/isapi/parser3isapi.C: reverted to atoi to avoid hex
                   1442:          autodetection
                   1443: 
                   1444:        * src/targets/apache/mod_parser3_core.C: reverted to atoi
                   1445: 
                   1446:        * src/: main/pa_http.C, targets/cgi/pa_sapi_info.h: warning war
                   1447: 
                   1448:        * src/main/pa_http.C: warning war
                   1449: 
1.142     moko     1450: 2020-10-12  moko
                   1451: 
1.143     moko     1452:        * src/: main/pa_request.C, targets/apache/mod_parser3_core.C,
                   1453:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C: excaption in
                   1454:          unhandled exception code optimization
                   1455: 
                   1456:        * src/targets/cgi/parser3.C: request_info now global variable
                   1457: 
                   1458:        * src/main/pa_http.C: http_read_response moved to HTTP_response
                   1459:          class
                   1460: 
                   1461:        * src/: include/pa_http.h, main/pa_http.C,
                   1462:          targets/cgi/pa_sapi_info.h: read_post implemented
                   1463: 
1.142     moko     1464:        * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
                   1465:          [host:]port syntax support in httpd mode
                   1466: 
                   1467:        * src/: include/pa_http.h, targets/cgi/pa_sapi_info.h,
                   1468:          targets/cgi/parser3.C: populate_env added
                   1469: 
                   1470:        * src/include/pa_hash.h: to make get(char *) compiling in
                   1471:          HashStringString
                   1472: 
                   1473: 2020-10-10  moko
                   1474: 
                   1475:        * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
                   1476:          targets/cgi/pa_sapi_info.h: ResponseHeaders -> HTTP_Headers
                   1477: 
                   1478:        * src/: include/pa_http.h, include/pa_request_info.h,
                   1479:          main/pa_http.C, main/pa_string.C,
                   1480:          targets/apache/mod_parser3_core.C, targets/cgi/pa_sapi_info.h,
                   1481:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                   1482:          types/pa_vrequest.C: initial httpd mode implementation
                   1483: 
1.141     moko     1484: 2020-10-04  moko
                   1485: 
                   1486:        * src/targets/cgi/parser3.C: options together
                   1487: 
                   1488: 2020-09-30  moko
                   1489: 
                   1490:        * src/main/pa_http.C: renamed
                   1491: 
1.140     moko     1492: 2020-08-14  moko
                   1493: 
                   1494:        * configure, configure.ac, parser3.sln, src/lib/Makefile.am,
                   1495:          src/targets/cgi/Makefile.am: no httpd as separate library
                   1496: 
                   1497: 2020-08-13  moko
                   1498: 
                   1499:        * src/targets/cgi/parser3.C: SAPI::die used in exception in
                   1500:          unhandled exception handler to report 500 instead of 200 it was
                   1501:          before.
                   1502: 
                   1503:        * src/targets/apache/mod_parser3_core.C: minor cleanup
                   1504: 
                   1505:        * src/: include/pa_sapi.h, main/untaint.C,
                   1506:          targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
                   1507:          targets/isapi/parser3isapi.C: SAPI::abort was used only once,
                   1508:          thus replaced with SAPI::die and removed
                   1509: 
                   1510:        * src/targets/: apache/mod_parser3_core.C, isapi/parser3isapi.C,
                   1511:          cgi/parser3.C: whitespace
                   1512: 
                   1513:        * src/targets/cgi/parser3.C: locate_config() extracted, whitespace.
                   1514: 
                   1515: 2020-08-12  moko
                   1516: 
                   1517:        * src/targets/cgi/parser3.C: duplicate info in signal logging
                   1518:          removed, whitespace was: SIGPIPE received while executing code.
                   1519:          uri=/_tmp.html, method=GET, cl=0 [uri=/_tmp.html, method=GET,
                   1520:          cl=0]
                   1521: 
                   1522:        * parser3.sln: + httpd.vcproj
                   1523: 
                   1524: 2020-08-11  moko
                   1525: 
                   1526:        * src/targets/cgi/Makefile.am: +libhttpd
                   1527: 
                   1528:        * configure.ac, src/lib/Makefile.am: +libhttpd
                   1529: 
1.139     moko     1530: 2020-07-13  moko
                   1531: 
                   1532:        * tests/: 401.html, results/401.processed: test for hash key does
                   1533:          not keep language, but tainted in foreach.
                   1534: 
1.138     moko     1535: 2020-07-01  moko
                   1536: 
                   1537:        * tests/: 235.html, results/235.processed: test result updated as
                   1538:          messages before attachments implemented (feature #1176)
                   1539: 
1.137     moko     1540: 2020-06-27  moko
                   1541: 
                   1542:        * tests/: 400.html, results/400.processed: test updated to check
                   1543:          ^return{code}
                   1544: 
                   1545:        * src/classes/op.C: bugfix: ^return{code} or ^return(expre+ssion)
                   1546:          fixed
                   1547: 
                   1548: 2020-06-26  moko
                   1549: 
                   1550:        * tests/: 400.html, results/400.processed: test for OPTIMIZE_RESULT
                   1551:          added (related to https://www.parser.ru/forum/?id=85319)
                   1552: 
                   1553:        * src/types/pa_vmethod_frame.h: bugfix: OPTIMIZE_RESULT failed,
                   1554:          when $result assignment was last statement in the method
                   1555:          (https://www.parser.ru/forum/?id=85319)
                   1556: 
1.136     moko     1557: 2020-05-23  moko
                   1558: 
                   1559:        * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h:
                   1560:          whitespace, unused level removed
                   1561: 
                   1562: 2020-05-19  moko
                   1563: 
                   1564:        * src/types/pa_vmail.C: whitespace
                   1565: 
                   1566:        * src/types/pa_vmail.C: files should be processed last (related to
                   1567:          feature #1176)
                   1568: 
1.135     moko     1569: 2020-05-12  moko
                   1570: 
                   1571:        * src/include/pa_memory.h: no new/delete checks for for FreeBSD1X.X
                   1572:          due to https://bugs.llvm.org/show_bug.cgi?id=40161 bug
                   1573: 
                   1574:        * configure.ac: FreeBSD1X.X check added to avoid
                   1575:          https://bugs.llvm.org/show_bug.cgi?id=40161 bug.
                   1576: 
1.134     moko     1577: 2020-02-26  moko
                   1578: 
                   1579:        * src/main/pa_common.C: entry_exists -> entry_ifdir to fix Windows
                   1580:          compilation issue (related to bug #1201)
                   1581: 
                   1582:        * src/main/pa_common.C: entry_readable -> entry_exists,
                   1583:          undocumented access(fname, R_OK) call removed (fixes bug #1201)
                   1584:          -f and -d now works under Windows in UTF-8 with Russian
                   1585:          filenames.
                   1586: 
                   1587:        * src/types/pa_vmail.C: g_mime_stream_pipe_new used by gmime author
                   1588:          advice (related to feature #1199)
                   1589: 
                   1590: 2020-02-25  moko
                   1591: 
                   1592:        * buildall: --silent removed
                   1593: 
                   1594:        * configure.ac: gmime-3.0 support
                   1595: 
                   1596:        * buildall: --with-system-mailreceive option added to build with
                   1597:          system libgmime
                   1598: 
                   1599:        * src/types/pa_vmail.C: avoiding
                   1600:          https://github.com/jstedfast/gmime/issues/83 "feature" (related
                   1601:          to feature #1199)
                   1602: 
1.133     moko     1603: 2020-02-18  moko
                   1604: 
                   1605:        * src/classes/op.C: windows x64 debug mode compile fix
                   1606: 
                   1607:        * src/main/pa_globals.C: no longer required due to -MD -> -MT
                   1608:          change (releated to feature #1200)
                   1609: 
                   1610:        * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
                   1611:          lib/gd/gd.vcproj, lib/json/json.vcproj, lib/ltdl/ltdl.vcproj,
                   1612:          lib/md5/md5.vcproj, lib/memcached/memcached.vcproj,
                   1613:          lib/pcre/pcre_internal.vcproj, lib/punycode/punycode.vcproj,
                   1614:          lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
                   1615:          targets/apache/ApacheModuleParser3.vcproj,
                   1616:          targets/apache/ApacheModuleParser3Core.vcproj,
                   1617:          targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
                   1618:          types/types.vcproj: -MD -> -MT to remove msvcp71.dll/etc
                   1619:          dependency (related to feature #1200)
                   1620: 
1.132     moko     1621: 2020-02-12  moko
                   1622: 
                   1623:        * src/types/pa_vmail.C: minimize diff
                   1624: 
                   1625:        * src/types/pa_vmail.C: libgmime 3.X support (implements feature
                   1626:          #1199)
                   1627: 
1.131     moko     1628: 2020-01-18  moko
                   1629: 
                   1630:        * tests/: 388-sql.html, results/388-sql.processed: +postprocess
                   1631: 
1.130     moko     1632: 2019-12-28  moko
                   1633: 
                   1634:        * src/targets/cgi/parser3.C: avoid empty ?
                   1635: 
                   1636: 2019-12-27  moko
                   1637: 
                   1638:        * src/targets/cgi/parser3.C: PATH_INFO check in reinventing
                   1639:          DOCUMENT_ROOT (related to feature #1164)
                   1640: 
                   1641:        * src/targets/cgi/parser3.C: IIS5 support removed to simplify
                   1642:          fcgiwrap setup (implements feature #1164)
                   1643: 
                   1644:        * src/targets/cgi/parser3.C: real_parser_handler logic simplified,
                   1645:          but no issues found (related to feature #1164)
                   1646: 
                   1647:        * src/targets/cgi/parser3.C: actualized
                   1648: 
                   1649: 2019-12-26  moko
                   1650: 
                   1651:        * src/targets/apache/ApacheModuleParser3.vcproj: apache stop/start
                   1652:          removed
                   1653: 
                   1654:        * src/targets/isapi/parser3isapi.vcproj: inetinfo stop/start
                   1655:          removed
                   1656: 
                   1657:        * src/: lib/gc/include/gc.h, main/pa_globals.C: As we log
                   1658:          allocation errors, we don't want default gc warnings (without
                   1659:          timestamp and URI).
                   1660: 
                   1661:        * src/: classes/memory.C, main/pa_globals.C,
                   1662:          targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
                   1663:          targets/isapi/parser3isapi.C: GC_dont_gc=1 moved to
                   1664:          pa_globals_init
                   1665: 
                   1666:        * src/main/pa_globals.C: setup_hex_value() removed, static array
                   1667:          initialization used (optimization)
                   1668: 
                   1669:        * src/: main/pa_globals.C, targets/apache/mod_parser3_core.C,
                   1670:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
                   1671:          pa_socks_init/pa_socks_done moved inside pa_globals_init
                   1672:          (optimization)
                   1673: 
1.129     moko     1674: 2019-12-09  moko
                   1675: 
                   1676:        * src/include/pa_config_fixed.h: warning war
                   1677: 
1.128     moko     1678: 2019-12-08  moko
                   1679: 
                   1680:        * src/main/main.vcproj: compile.y - ExcludedFromBuild, as we
                   1681:          process grammar under Unix.
                   1682: 
                   1683: 2019-12-07  moko
                   1684: 
                   1685:        * tests/389.html: For Windows XP. :)
                   1686: 
                   1687:        * tests/388-sql.html: Windows compatibility added
                   1688: 
                   1689: 2019-12-06  moko
                   1690: 
                   1691:        * src/targets/cgi/parser3.C: warning war
                   1692: 
                   1693:        * src/main/pa_string.C: + COMPILE_ASSERT(sizeof(String::Languages)
                   1694:          == sizeof(CORD)) to avoid aligning bugs in future
                   1695: 
                   1696:        * src/: include/pa_config_fixed.h, main/pa_globals.C: simplified to
                   1697:          XML_STATIC
                   1698: 
                   1699:        * src/include/pa_request.h: StackItem() not required
                   1700: 
                   1701:        * src/include/pa_stack.h: warning war
                   1702: 
                   1703:        * src/include/pa_config_includes.h: GCC warning silenced
                   1704: 
                   1705:        * src/include/pa_memory.h: warning war: the program should also
                   1706:          define 'void operator delete [](void*, std::size_t)'
                   1707:          [-Wsized-deallocation]
                   1708: 
                   1709:        * src/types/: pa_vregex.h, pa_vtable.h: warning war
                   1710: 
                   1711:        * src/classes/string.C: not reqired cast removed
                   1712: 
                   1713:        * src/classes/string.C: not reqired cast removed
                   1714: 
                   1715: 2019-12-05  moko
                   1716: 
                   1717:        * src/lib/sdbm/pa_file_io.C: warning war
                   1718: 
                   1719:        * src/include/pa_string.h: bugfix for Windows x64: enum Language ->
                   1720:          enum Language : size_t - required for VS2015+ to make
                   1721:          sizeof(Languages::opt) == sizeof(CORD), will be 16 byte under x64
                   1722:          without it (related to feature #1198)
                   1723: 
                   1724: 2019-12-04  moko
                   1725: 
                   1726:        * src/main/pa_base64.C: unsigned char -> uchar
                   1727: 
                   1728:        * src/main/: main.vcproj, pa_globals.C: libpcre now linked same way
                   1729:          as other libs
                   1730: 
                   1731:        * src/include/pa_version.h: +amd64
                   1732: 
                   1733: 2019-12-03  moko
                   1734: 
                   1735:        * src/: classes/classes.vcproj, types/types.vcproj: sync debug with
                   1736:          release
                   1737: 
                   1738:        * src/include/pa_config_includes.h: warning war
                   1739: 
                   1740:        * src/classes/image.C: warning war
                   1741: 
                   1742:        * src/main/pa_globals.C: x64 libs support
                   1743: 
                   1744:        * src/include/pa_config_includes.h: warning war
                   1745: 
                   1746:        * src/types/pa_method.h: warning war
                   1747: 
1.127     moko     1748: 2019-11-28  moko
                   1749: 
                   1750:        * src/classes/math.C: vs2003 compatibility + warning war
                   1751: 
                   1752:        * buildall: libxslt-1.1.29 -> libxslt-1.1.34, libxml2-2.9.4 ->
                   1753:          libxml2-2.9.9 (related to feature #1136)
                   1754: 
                   1755:        * src/classes/xdoc.C: xmlHashScanner declaration changed, using
                   1756:          typecast for more compatibility (related to feature #1136)
                   1757: 
                   1758:        * buildall: --direct-download option added, gc-7.6.2 -> gc-8.0.4 +
                   1759:          libatomic no longer required, pcre-8.40 -> pcre-8.43 (related to
                   1760:          feature #1136)
                   1761: 
                   1762: 2019-11-26  moko
                   1763: 
                   1764:        * src/main/: compile_tools.C, compile_tools.h: invalid assert
                   1765:          removed (it was failing in $$var case), condition added
                   1766: 
1.126     moko     1767: 2019-11-25  moko
                   1768: 
                   1769:        * tests/: 397.html, 399.html, results/141.processed,
                   1770:          results/399.processed: base64 options tested
                   1771: 
                   1772:        * src/: classes/math.C, main/pa_http.C: base64 options used
                   1773: 
                   1774:        * src/main/pa_base64.C: base64 encode rewritten, base64 options
                   1775:          implemented (feature #986)
                   1776: 
                   1777:        * src/main/pa_cache_managers.C: whitespace
                   1778: 
                   1779:        * tests/: 397.html, 399.html, results/399.processed: tests for
                   1780:          ^base64 encode options added (related to feature #986)
                   1781: 
                   1782:        * src/: classes/file.C, include/pa_base64.h, main/pa_base64.C:
                   1783:          pa_base64_encode(file) removed - more memory, but faster and less
                   1784:          code (related fo feature #986)
                   1785: 
                   1786: 2019-11-24  moko
                   1787: 
                   1788:        * tests/: 155.html, results/155.processed: limit and offset in
                   1789:          ^table::load[] now supported, thus test added
                   1790: 
                   1791:        * src/: classes/file.C, classes/table.C, include/pa_common.h,
                   1792:          main/pa_common.C: optimization: offset and limit options parsing
                   1793:          moved inside file_load.
                   1794: 
                   1795: 2019-11-23  moko
                   1796: 
                   1797:        * src/: classes/file.C, classes/op.C, include/pa_common.h,
                   1798:          main/pa_common.C, main/pa_request.C, types/pa_vform.C:
                   1799:          optimization: file_read replaced with simplified file_read_binary
                   1800: 
                   1801:        * src/: classes/op.C, main/pa_common.C, main/pa_request.C,
                   1802:          types/pa_vform.C: whitespace
                   1803: 
                   1804:        * src/: include/pa_common.h, main/pa_common.C: never used params
                   1805:          removed
                   1806: 
                   1807: 2019-11-21  moko
                   1808: 
                   1809:        * tests/: 193.html, results/193.processed, results/389.processed:
                   1810:          test results updated as now base64 does not discard tail without
                   1811:          padding (related to feature #986)
                   1812: 
                   1813: 2019-11-20  moko
                   1814: 
                   1815:        * src/: classes/file.C, classes/string.C, include/pa_base64.h,
                   1816:          main/pa_base64.C: optimization: void pa_base64_decode -> size_t
                   1817:          pa_base64_decode (related to feature #986)
                   1818: 
                   1819:        * tests/398.html: tests for base64 decode added (related to feature
                   1820:          #986)
                   1821: 
                   1822:        * src/main/pa_base64.C: base64_decode rewritten - padding option
                   1823:          support, padding inside base 64 supported (related to feature
                   1824:          #096)
                   1825: 
                   1826: 2019-11-19  moko
                   1827: 
                   1828:        * src/include/pa_memory.h: CHECK_DELETE_USAGE tested to work under
                   1829:          FreeBSD 12
                   1830: 
1.125     moko     1831: 2019-11-16  moko
                   1832: 
                   1833:        * src/main/pa_base64.C: base64_decode converted to C++, url-safe
                   1834:          support added, step support removed (related to #986)
                   1835: 
                   1836: 2019-11-15  moko
                   1837: 
                   1838:        * src/classes/math.C: using log since log2 is not present on
                   1839:          FreeBSD < 8.4 (related to feature #1177)
                   1840: 
                   1841:        * src/: include/pa_base64.h, main/pa_base64.C: whitespace,
                   1842:          pa_base64_size extracted and used for files as well (related to
                   1843:          feature 986)
                   1844: 
                   1845: 2019-11-14  moko
                   1846: 
                   1847:        * tests/: 397.html, results/397.processed: + content check
                   1848: 
                   1849:        * tests/: 141.html, results/141.processed: make test resuls more
                   1850:          readable
                   1851: 
                   1852:        * tests/: 397.html, results/193.processed, results/397.processed:
                   1853:          test results updated after \x00 character was disabled in
                   1854:          math:convert string mode (related to feature #1177)
                   1855: 
                   1856:        * src/classes/: math.C, string.C: \\x00 character disabled while
                   1857:          converting to string (as in base64, related to feature #1177)
                   1858: 
                   1859:        * src/classes/file.C: more correct arguments separation
                   1860: 
                   1861:        * src/: classes/file.C, classes/math.C, classes/string.C,
                   1862:          include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
                   1863:          main/pa_http.C, types/pa_vfile.C, types/pa_vmail.C: base64
                   1864:          options added, but not yet implemented (related to feature #986)
                   1865: 
                   1866:        * src/classes/math.C: whitespace
                   1867: 
                   1868: 2019-11-13  moko
                   1869: 
                   1870:        * tests/: 397.html, results/397.processed: +tainting test (related
                   1871:          to feature #1177)
                   1872: 
                   1873:        * src/classes/math.C: as we now produce not only digits, result
                   1874:          should be tainted (related to feature #1177)
                   1875: 
                   1876:        * src/main/pa_base64.C: whitespace
                   1877: 
                   1878:        * src/: include/Makefile.am, main/Makefile.am, main/main.vcproj,
                   1879:          include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
                   1880:          main/pa_common.C: pa_base64.h and pa_base64.C added, base64
                   1881:          implementation moved from pa_common.h and pa_common.C
                   1882: 
                   1883: 2019-11-12  moko
                   1884: 
                   1885:        * tests/: 275.html, results/275.processed: out of range test fixed,
                   1886:          as ^math:convert now supports arbitrary precision
                   1887: 
                   1888: 2019-11-11  moko
                   1889: 
                   1890:        * tests/results/389.processed: uctualized error message
                   1891: 
                   1892:        * tests/: 389.html, 397.html, results/397.processed: tests for
                   1893:          ^math:convert added (related to feature #1177)
                   1894: 
                   1895:        * src/classes/math.C: ^math:convert now supports arbitrary
                   1896:          precision, alphabet support added (implements feature #1177)
                   1897: 
1.124     moko     1898: 2019-11-06  moko
                   1899: 
                   1900:        * tests/: 181.html, results/181.processed: entities usage added,
                   1901:          more entites load tests (related to bug #842 discussion)
                   1902: 
                   1903: 2019-11-05  moko
                   1904: 
                   1905:        * src/main/pa_xml_io.C: bugfix: no more extra http://localhost/
                   1906:          call from xmlFileOpen if http://localhost/<file> was not found
                   1907:          (related to bug #842)
                   1908: 
                   1909:        * src/main/pa_xml_io.C: rename
                   1910: 
                   1911:        * src/main/pa_xml_io.C: +MemoryStream constructor
                   1912: 
                   1913:        * src/main/pa_xml_io.C: whitespace
                   1914: 
1.123     moko     1915: 2019-10-31  moko
                   1916: 
                   1917:        * src/classes/xdoc.C: XML_PARSE_OPTIONS (XML_PARSE_DTDLOAD |
                   1918:          XML_PARSE_NOENT) added to fix entities load, (related to feature
                   1919:          #1181)
                   1920: 
1.122     moko     1921: 2019-10-25  moko
                   1922: 
                   1923:        * tests/: 388-sql.html, results/388-sql.processed: more multiple
                   1924:          queries tests
                   1925: 
                   1926: 2019-10-24  moko
                   1927: 
                   1928:        * tests/: 388-sql.html, results/388-sql.processed: support for
                   1929:          pgsql driver test
                   1930: 
                   1931:        * tests/: 388-sql.html, results/388-sql.processed:
                   1932:          multi_statements=1 now tested, mysql test now supported
                   1933:          (connection must be specified in [parser3] section in .my.cnf)
                   1934:          related to issues #1195 and #1194
                   1935: 
1.121     moko     1936: 2019-09-11  moko
                   1937: 
                   1938:        * src/classes/int.C: whitespace
                   1939: 
                   1940:        * tests/: 388-sql.html, results/388-sql.processed: +duplicate key
                   1941:          exception test
                   1942: 
                   1943:        * tests/results/388-sql.processed: sql queries now shown (related
                   1944:          to feature #1196)
                   1945: 
                   1946:        * src/sql/pa_sql_driver.h: to keep new SQL drivers more compatible
                   1947:          with old parser versions.
                   1948: 
                   1949:        * src/: classes/file.C, classes/hash.C, classes/string.C,
                   1950:          classes/table.C, classes/void.C, include/pa_sql_connection.h,
                   1951:          main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: Show query
                   1952:          instead of connect string in query_event_handlers exceptions
                   1953:          (implements feature #1196)
                   1954: 
1.120     moko     1955: 2019-09-06  moko
                   1956: 
                   1957:        * tests/388-sql.html: mysql compat
                   1958: 
                   1959:        * src/: classes/hash.C, classes/string.C, classes/table.C,
                   1960:          classes/void.C, include/pa_common.h, main/pa_common.C: cleanup:
                   1961:          sql_ variables declaration moved to pa_common.h
                   1962: 
1.116     moko     1963: 2019-01-15  moko
                   1964: 
                   1965:        * src/classes/curl.C: ^curl:info[] - OrderedHashString used, items
                   1966:          logically sorted
                   1967: 
                   1968: 2018-12-27  moko
                   1969: 
                   1970:        * src/include/pa_config_includes.h: warning war:
                   1971:          -Wdeprecated-register added for C++ 17
                   1972: 
                   1973: 2018-10-15  moko
                   1974: 
                   1975:        * configure.ac: FreeBSD 11.2 can be build with ./configure
                   1976:          --with-gc=/usr/local/lib/ --with-pcre=/usr/local/
                   1977:          --with-xml=/usr/local/
                   1978: 
                   1979: 2018-09-24  moko
                   1980: 
                   1981:        * tests/: 396.html, 396.tiff, results/396.processed: test for
                   1982:          ^image::measure[] now supports tiff added (related to feature
                   1983:          #1188)
                   1984: 
                   1985:        * src/classes/image.C: ^image::measure[] now supports tiff
                   1986:          (implements feature #1188)
                   1987: 
                   1988: 2018-09-20  moko
                   1989: 
                   1990:        * tests/: 395.bmp, 395.html, results/395.processed: test for bmp
                   1991:          files measure added (related to ticket #1188)
                   1992: 
                   1993:        * src/classes/image.C: measure of bmp files implemented (related to
                   1994:          ticket #1188)
                   1995: 
                   1996: 2018-09-18  moko
                   1997: 
                   1998:        * tests/: 394-curl.html, results/394-curl.processed,
                   1999:          results/auto.p: test for bug #1187 (max_file_size check for head
                   2000:          requests) added
                   2001: 
                   2002: 2018-08-24  moko
                   2003: 
                   2004:        * src/classes/curl.C: CURLOPT_NOBODY value used to check if
                   2005:          response content-length check is required (fixes bug #1187)
                   2006: 
                   2007: 2018-05-11  moko
                   2008: 
                   2009:        * tests/: 157.html, results/157.processed: test for ^file:copy[..;
                   2010:          $.append(bool) ] option added (related to feature #919)
                   2011: 
                   2012:        * src/classes/file.C: ^file:copy[..; $.append(bool) ] option added
                   2013:          from misha@ patch (implements feature #919)
                   2014: 
                   2015: 2018-03-22  moko
                   2016: 
                   2017:        * src/main/pa_request.C: $response:download[ $.file[file.namef] ]
                   2018:          worked rather slow (about 1mb/sec) with 10kb buffer, replaced it
                   2019:          with 128kb buffer.  Now works at least 12 times faster. :) May be
                   2020:          Windows-only problem.
                   2021: 
                   2022:        * src/lib/cord/cord.vcproj: Profile * complete cleanup (VS 2003
                   2023:          build fix)
                   2024: 
                   2025: 2018-02-03  moko
                   2026: 
                   2027:        * src/main/execute.C: removes irrelevant lines from exception stack
                   2028:          trace when exceptions occurs in assigment (fixes bug #1165)
                   2029: 
                   2030:        * tests/: 393.html, results/393.processed: test for behavour after
                   2031:          "Property can not be created, already exists field with that
                   2032:          name" exception removed (related to feature #1183)
                   2033: 
                   2034:        * src/types/pa_vclass.C: "Property can not be created, already
                   2035:          exists field with that name" exception removed (implements
                   2036:          feature #1183)
                   2037: 
                   2038: 2018-01-19  moko
                   2039: 
                   2040:        * src/classes/string.C: whitespace
                   2041: 
                   2042:        * src/classes/string.C: whitespace
                   2043: 
                   2044:        * tests/: 392.html, results/392.processed: test for
                   2045:          ^regex::create[$regex] added (related to feature #1135)
                   2046: 
                   2047:        * src/: classes/regex.C, types/pa_vregex.C, types/pa_vregex.h:
                   2048:          ^regex::create[$regex] added (implements feature #1135)
                   2049: 
                   2050:        * src/types/: pa_vclass.C, pa_vclass.h: CLASS_GETTER_UNPROTECTED
                   2051:          commented define added (related to feature #1157)
                   2052: 
                   2053: 2018-01-17  moko
                   2054: 
                   2055:        * buildall: gc 7.6.0 -> 7.6.2 (related to feature #1136)
                   2056: 
                   2057: 2018-01-15  moko
                   2058: 
                   2059:        * tests/: 390.html, results/390.processed: real path replaced by
                   2060:          stub
                   2061: 
                   2062:        * tests/: 391.html, results/391.processed: test for feature #1181
                   2063:          (XML_PARSE_HUGE exception) added
                   2064: 
                   2065: 2018-01-11  moko
                   2066: 
                   2067:        * src/classes/xdoc.C: xmlReadMemory/xmlReadFile now used with
                   2068:          XML_PARSE_HUGE option passed by default (implements feature
                   2069:          #1181)
                   2070: 
                   2071:        * src/classes/string.C: whitespace
                   2072: 
                   2073: 2017-12-10  moko
                   2074: 
                   2075:        * tests/: 389.html, 390.html, results/389.processed,
                   2076:          results/390.processed: image code coverage tests added (related
                   2077:          to feature #1125)
                   2078: 
                   2079: 2017-12-08  moko
                   2080: 
                   2081:        * tests/: 346-curl.html, 388-sql.html, 389.html,
                   2082:          results/346-curl.processed, results/388-sql.processed,
                   2083:          results/389.processed: more code coverage tests
                   2084: 
                   2085:        * tests/: 264.html, results/264.processed: code coverage for
                   2086:          ^file::exec[]
                   2087: 
                   2088: 2017-12-07  moko
                   2089: 
                   2090:        * tests/: 174.html, 388-sql.html, 389.html,
                   2091:          results/388-sql.processed, results/389.processed,
                   2092:          results/174.processed: more coverage tests
                   2093: 
                   2094:        * src/classes/math.C: exception text actualized
                   2095: 
                   2096: 2017-12-06  moko
                   2097: 
                   2098:        * tests/388-sql.html: $SQL can be here
                   2099: 
                   2100:        * tests/results/auto.p: $SQL not required here
                   2101: 
                   2102:        * tests/: 388-sql.html, 389.html, Makefile,
                   2103:          results/388-sql.processed, results/389.processed, results/auto.p:
                   2104:          code coverage tests for sql (using sqlite) and int/double/bool
                   2105:          added (related to feature #1125)
                   2106: 
                   2107:        * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
                   2108:          lib/json/json.vcproj, lib/md5/md5.vcproj,
                   2109:          lib/memcached/memcached.vcproj, lib/punycode/punycode.vcproj,
                   2110:          lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
                   2111:          targets/apache/ApacheModuleParser3Core.vcproj,
                   2112:          targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
                   2113:          types/types.vcproj: gc\include no longer required
                   2114: 
                   2115:        * src/lib/: cord/cord.vcproj, gd/gd.vcproj: gc\include no longer
                   2116:          required
                   2117: 
                   2118:        * src/: classes/Makefile.am, classes/table.C,
                   2119:          include/pa_config_includes.h, include/pa_string.h,
                   2120:          lib/cord/Makefile.am, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
                   2121:          lib/gd/Makefile.am, lib/json/Makefile.am, lib/sdbm/Makefile.am,
                   2122:          lib/smtp/Makefile.am, main/Makefile.am, main/untaint.C,
                   2123:          targets/apache/Makefile.am, targets/cgi/Makefile.am,
                   2124:          types/Makefile.am: to be sure that our version of gc.h/cord.h is
                   2125:          used, we now include it directly
                   2126: 
                   2127: 2017-12-04  moko
                   2128: 
                   2129:        * src/lib/: gd/gd.vcproj, md5/md5.vcproj,
                   2130:          memcached/memcached.vcproj, punycode/punycode.vcproj,
                   2131:          sdbm/sdbm.vcproj, smtp/smtp.vcproj: includes unified, gc added
                   2132:          where required
                   2133: 
                   2134:        * src/: classes/memory.C, include/pa_config_includes.h: GC_DEBUG
                   2135:          now can be used to trace memory allocations
                   2136: 
                   2137:        * src/: classes/table.C, include/pa_config_includes.h,
                   2138:          include/pa_memory.h, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
                   2139:          main/pa_globals.C: PA_DEBUG_DISABLE_GC works again, pa_gc_*
                   2140:          method removes, libcord also can work without libgc
                   2141: 
                   2142:        * src/classes/json.C: pa_gc_malloc_atomic should not be used
                   2143: 
                   2144: 2017-11-29  moko
                   2145: 
                   2146:        * src/classes/curl.C: no exception if some of ^curl:info[] elements
                   2147:          are not present (related to feature #1173)
                   2148: 
                   2149:        * tests/346-curl.html: test updated to test curl content-length bug
                   2150:          (related to feature #1173)
                   2151: 
                   2152:        * tests/results/346-curl.processed: more test for content-length
                   2153:          curl bug (related to feature #1173)
                   2154: 
                   2155:        * tests/results/346-curl.processed: test results updated after
                   2156:          #1173 implemented
                   2157: 
                   2158: 2017-11-28  moko
                   2159: 
                   2160:        * src/classes/curl.C: another libcurl Content-length bug walkaround
                   2161:          (related to feature #1173)
                   2162: 
                   2163: 2017-11-27  moko
                   2164: 
                   2165:        * src/: classes/curl.C, lib/curl/curl.h: ^curl:options
                   2166:          $.http_version[version string] added (implements feature #1173),
                   2167:          CURLOPT_POSTFIELDSIZE is set to 0 now only for old versions,
                   2168:          where $post(true) bug existed.
                   2169: 
                   2170: 2017-11-18  moko
                   2171: 
                   2172:        * src/include/pa_memory.h: warning war (related to feature #1170)
                   2173: 
                   2174:        * src/include/pa_pool.h: RedHat 7.3 compatibility fixed (related to
                   2175:          feature #1170)
                   2176: 
                   2177: 2017-11-17  moko
                   2178: 
                   2179:        * src/include/pa_memory.h: CHECK_DELETE_USAGE define added as
                   2180:          std::basic_stringstream used in ^table.csv-string[] is compatible
                   2181:          with delete usage check only under Debian 9 (related to feature
                   2182:          #1170)
                   2183: 
                   2184: 2017-11-16  moko
                   2185: 
                   2186:        * src/: classes/curl.C, classes/hash.C, classes/json.C,
                   2187:          classes/table.C, classes/xdoc.C, include/pa_config_includes.h,
                   2188:          include/pa_hash.h, include/pa_memory.h, include/pa_pool.h,
                   2189:          main/pa_charset.C, main/pa_memory.C, main/pa_xml_io.C,
                   2190:          sql/pa_sql_driver.h, types/pa_value.h, types/pa_vmemcached.C,
                   2191:          types/pa_vxdoc.h: regular new/delete no longer used in our code,
                   2192:          stubs defend from accidental use (implements feature #1170)
                   2193: 
                   2194: 2017-06-24  moko
                   2195: 
                   2196:        * configure.ac: minor fix: thanks to alx@
                   2197: 
1.115     moko     2198: 2017-05-29  moko
                   2199: 
                   2200:        * src/types/pa_vmail.C: mail headers are now correctly truncated -
                   2201:          MAX_CHARS_IN_HEADER_LINE value fixed, mail_header_utf8_substring
                   2202:          added to avoid cutting of UTF-8 chars (fixed bug #123)
                   2203: 
                   2204:        * src/main/untaint.C: as in case of <space>=?UTF-8?Q?= space is
                   2205:          ignored, =?UTF-8?Q?= should start in case of leading space
                   2206:          (related to bug #123)
                   2207: 
                   2208:        * buildall: echo -n -> printf for OS X. :)
                   2209: 
                   2210: 2017-05-25  moko
                   2211: 
                   2212:        * tests/: 288.html, results/288.processed: test updated afted
                   2213:          setting $o.prop without setter exception removed (related to
                   2214:          feature #1157)
                   2215: 
                   2216:        * src/types/pa_vclass.C: no more "this property has no setter
                   2217:          method" when setting $o.prop without setter (implements feature
                   2218:          #1157)
                   2219: 
                   2220:        * buildall: echo \c -> echo -n for FreeBSD
                   2221: 
                   2222:        * configure, configure.ac, src/include/pa_config_auto.h.in,
                   2223:          src/types/pa_vdouble.h: isfinite now checked in configure
                   2224: 
                   2225:        * compile, config.guess, config.sub, depcomp, install-sh, missing:
                   2226:          upgraded to automake 1.15
                   2227: 
                   2228: 2017-05-23  moko
                   2229: 
                   2230:        * src/types/pa_vdouble.h: finite returned where isfinite not
                   2231:          defined
                   2232: 
                   2233: 2017-05-22  moko
                   2234: 
                   2235:        * buildall: gc-7.6.0 USE_LIBC_PRIVATES allready defined warning war
                   2236: 
                   2237:        * buildall: extern CFLAGS setting support
                   2238: 
                   2239:        * src/types/pa_vdouble.h: warning war: finine() -> isfinite() 4OSX
                   2240: 
                   2241:        * buildall: http -> https
                   2242: 
                   2243:        * buildall: gc-7.2f -> gc-7.6.0
                   2244: 
                   2245: 2017-05-20  moko
                   2246: 
                   2247:        * buildall: https, pcre, xml, xslt updated to current versions
                   2248:          (related to feature #1136)
                   2249: 
                   2250: 2017-05-19  moko
                   2251: 
                   2252:        * tests/097.html: after parser.ru moved to https
                   2253: 
                   2254: 2017-05-17  moko
                   2255: 
                   2256:        * tests/results/: 175.processed, 372.processed: tests resuls
                   2257:          updated after lintian spelling typos fixed (related to bug #1156)
                   2258: 
                   2259:        * src/: classes/file.C, classes/hash.C, classes/reflection.C,
                   2260:          classes/string.C, classes/table.C, main/pa_charset.C,
                   2261:          main/pa_common.C, main/pa_http.C, types/pa_vimage.h,
                   2262:          types/pa_vmail.C, types/pa_vxdoc.h: fixed spelling typos from
                   2263:          lintian reported by Sergey B Kirpichev (fixes bug #1156)
                   2264: 
                   2265:        * tests/results/096.processed: +XMP
                   2266: 
                   2267:        * tests/: 096.html, 096_dir/188.jpg: ^image::measure[] $.exif(true)
                   2268:          $.xmp(true) options tested (test for feature #1154)
                   2269: 
                   2270:        * src/classes/image.C: ^image:measure[] options $.exif(false)
                   2271:          $.xmp(false) $.xmp-charset[UTF-8] implemened. exif no longer
                   2272:          fetched by default! (implements feature #1154)
                   2273: 
                   2274: 2017-05-16  moko
                   2275: 
                   2276:        * tests/: 256.html, results/256.processed: ^json:string[$image] now
                   2277:          allowed (related to feature #1154)
                   2278: 
                   2279:        * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
                   2280:          initial XMP implementation - without options and transcode
                   2281:          (related to feature #1154)
                   2282: 
                   2283: 2017-05-12  moko
                   2284: 
                   2285:        * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
                   2286:          image: exif moved to ffields, skipped in ^image.html[] where
                   2287:          iterators now used (preparation for feature #1154)
                   2288: 
                   2289: 2017-05-05  moko
                   2290: 
                   2291:        * tests/: 387.html, 387_dir/A.p, 387_dir/B.p,
                   2292:          results/387.processed: test for circular class inheritance check
                   2293:          added (related to bug #1150)
                   2294: 
                   2295:        * src/types/pa_vstateless_class.C: circular class inheritance check
                   2296:          added (fixes endless add_derived bug #1150)
                   2297: 
                   2298: 2017-05-04  moko
                   2299: 
                   2300:        * tests/: 386.html, results/386.processed: test for
                   2301:          $table.value(number) added (related to feature #1152)
                   2302: 
                   2303:        * src/types/pa_vtable.C: table put_element: column value must be
                   2304:          string  - > column value must be string compatible to allow
                   2305:          $t.value(1) (implements feature #1152)
                   2306: 
                   2307: 2017-05-03  moko
                   2308: 
                   2309:        * src/main/pa_request.C: $use[$method] is not possible, reverting
                   2310:          (related to feature #1151)
                   2311: 
                   2312:        * tests/: 386.html, 386.p, results/386.processed: $use[$method] is
                   2313:          not possible, removing test (related to feature #1151)
                   2314: 
                   2315:        * src/: main/pa_request.C, types/pa_vstateless_class.h:
                   2316:          get_element_method added and used to allow $use[$method] and
                   2317:          $autouse[$method] (implements feature 1151)
                   2318: 
                   2319:        * tests/: 386.html, 386.p, results/386.processed: test for @use in
                   2320:          variable added (related to feature #1151)
                   2321: 
                   2322:        * tests/results/226.processed: actualized after ^try-catch used
                   2323: 
                   2324:        * tests/: 226.html, 385.html, results/385.processed: test for
                   2325:          @autouse in variable added
                   2326: 
                   2327:        * configure.ac, src/include/pa_version.h: 3.4.5 -> 3.4.6b
                   2328: 
1.114     moko     2329: 2017-02-27  moko
                   2330: 
                   2331:        * configure.ac, src/include/pa_version.h: 3.4.5rc -> 3.4.5
                   2332: 
1.113     moko     2333: 2017-02-20  moko
                   2334: 
                   2335:        * operators.txt: actualization + beauty
                   2336: 
                   2337: 2017-02-16  moko
                   2338: 
                   2339:        * tests/: 384.html, results/384.processed: test for
                   2340:          ^reflection:mixin[; $.name[] ] option added (related to feature
                   2341:          #1089)
                   2342: 
                   2343:        * tests/: 384.html, results/384.processed: test for
                   2344:          ^reflection:mixin[] added (related to feature #1089)
                   2345: 
                   2346:        * src/types/pa_value.h: warning war: virtual ~Value() added
                   2347: 
1.112     moko     2348: 2017-02-15  moko
                   2349: 
                   2350:        * src/include/pa_hash.h: compilation without HASH_CODE_CACHING
                   2351:          fixed
                   2352: 
                   2353:        * tests/: 320.html, results/320.processed: $.reverse(true/false)
                   2354:          test added (related to feature #1069)
                   2355: 
                   2356:        * src/: classes/reflection.C, types/pa_vstateless_class.h:
                   2357:          compilation without HASH_ORDER fixed
                   2358: 
                   2359:        * src/: classes/reflection.C, include/pa_hash.h:
                   2360:          $.reverse(true/false) added to ^reflection:methods[] (related to
                   2361:          feature #1069)
                   2362: 
                   2363: 2017-02-14  moko
                   2364: 
                   2365:        * tests/: 152.html, results/152.processed: test for $._default hash
                   2366:          added (related to bug #1131)
                   2367: 
                   2368:        * tests/: 277.html, results/277.processed: test for hash with only
                   2369:          $._default is now defined (related to bug #1131)
                   2370: 
                   2371:        * src/types/pa_vhash.h: hash with only $._default is now defined
                   2372:          (fixed bug #1131)
                   2373: 
                   2374: 2017-02-13  moko
                   2375: 
                   2376:        * tests/cat-windows.sh: cat-windows added (cygwin required)
                   2377: 
                   2378:        * tests/: 171.html, 264.html, 286.html, 370.html,
                   2379:          results/320.processed, results/375.processed, results/auto.p:
                   2380:          cat-windows.sh support added
                   2381: 
                   2382:        * tests/375.html: Windows support
                   2383: 
                   2384:        * tests/270.html: documented
                   2385: 
                   2386:        * tests/: 270.html, run_parser.cmd: bugfix: PATH_INFO has slashes
                   2387:          (not backslashes) even under Windows (broke test 270)
                   2388: 
                   2389: 2017-02-12  moko
                   2390: 
                   2391:        * tests/: descript.ion, todo.txt: cleanup
                   2392: 
                   2393: 2017-02-09  moko
                   2394: 
                   2395:        * tests/: 253.html, 255.html, 275.html, 347-curl.html,
                   2396:          run_tests.cmd: Windows compatibility
                   2397: 
                   2398:        * tests/make_tests.cmd: removed as test can't be passed - TZ is set
                   2399:          incorrectly (GMT) if parser is called from cygwin
                   2400: 
1.111     moko     2401: 2017-02-08  moko
                   2402: 
1.112     moko     2403:        * operators.txt: actualization 15% completed
                   2404: 
                   2405:        * operators.txt: cp1251 -> utf-8
                   2406: 
                   2407:        * NEWS, README: minor update
                   2408: 
                   2409:        * src/include/pa_config_includes.h: warning war continues
                   2410: 
                   2411:        * src/: include/pa_config_includes.h, include/pa_memory.h,
                   2412:          targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
                   2413:          targets/isapi/parser3isapi.C, types/pa_vdouble.h: warning war:
                   2414:          gcc 6.x issues fixed
                   2415: 
1.111     moko     2416:        * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
                   2417:          classes/classes.h, classes/curl.C, classes/date.C,
                   2418:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   2419:          classes/hashfile.C, classes/image.C, classes/inet.C,
                   2420:          classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
                   2421:          classes/memcached.C, classes/memory.C, classes/op.C,
                   2422:          classes/reflection.C, classes/regex.C, classes/response.C,
                   2423:          classes/string.C, classes/table.C, classes/void.C,
                   2424:          classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   2425:          include/pa_array.h, include/pa_cache_managers.h,
                   2426:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   2427:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   2428:          include/pa_dictionary.h, include/pa_dir.h,
                   2429:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   2430:          include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
                   2431:          include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
                   2432:          include/pa_pool.h, include/pa_random.h, include/pa_request.h,
                   2433:          include/pa_request_charsets.h, include/pa_request_info.h,
                   2434:          include/pa_sapi.h, include/pa_socks.h,
                   2435:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   2436:          include/pa_stack.h, include/pa_string.h,
                   2437:          include/pa_stylesheet_connection.h,
                   2438:          include/pa_stylesheet_manager.h, include/pa_symbols.h,
                   2439:          include/pa_table.h, include/pa_threads.h, include/pa_types.h,
                   2440:          include/pa_uue.h, include/pa_xml_exception.h,
                   2441:          include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
                   2442:          lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
                   2443:          lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
                   2444:          lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
                   2445:          lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
                   2446:          lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
                   2447:          main/compile.tab.C, main/compile.y, main/compile_tools.C,
                   2448:          main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
                   2449:          main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
                   2450:          main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
                   2451:          main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
                   2452:          main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
                   2453:          main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
                   2454:          main/pa_string.C, main/pa_stylesheet_connection.C,
                   2455:          main/pa_stylesheet_manager.C, main/pa_symbols.C, main/pa_table.C,
                   2456:          main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
                   2457:          main/untaint.C, sql/pa_sql_driver.h,
                   2458:          targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
                   2459:          targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
                   2460:          targets/cgi/pa_threads.C, targets/cgi/parser3.C,
                   2461:          targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
                   2462:          types/pa_junction.h, types/pa_method.h, types/pa_property.h,
                   2463:          types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
                   2464:          types/pa_vcaller_wrapper.h, types/pa_vclass.C, types/pa_vclass.h,
                   2465:          types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
                   2466:          types/pa_vcookie.h, types/pa_vdate.C, types/pa_vdate.h,
                   2467:          types/pa_vdouble.h, types/pa_venv.C, types/pa_venv.h,
                   2468:          types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
                   2469:          types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
                   2470:          types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
                   2471:          types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
                   2472:          types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
                   2473:          types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemcached.C,
                   2474:          types/pa_vmemcached.h, types/pa_vmemory.h,
                   2475:          types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
                   2476:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
                   2477:          types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
                   2478:          types/pa_vresponse.C, types/pa_vresponse.h,
                   2479:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   2480:          types/pa_vstateless_object.h, types/pa_vstatus.C,
                   2481:          types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
                   2482:          types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
                   2483:          types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   2484:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
                   2485:          types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year:
                   2486:          2015->2017
                   2487: 
1.110     moko     2488: 2017-02-07  moko
                   2489: 
                   2490:        * configure.ac, src/include/pa_version.h: 3.4.5b -> 3.4.5rc
                   2491: 
                   2492: 2017-02-06  moko
                   2493: 
                   2494:        * src/main/pa_common.C: minor fixes, whitespace
                   2495: 
                   2496:        * src/: classes/curl.C, classes/file.C, classes/image.C,
                   2497:          include/pa_common.h, include/pa_dir.h, main/pa_common.C,
                   2498:          main/pa_dir.C, main/pa_exec.C: wchar filenames API under Windows
                   2499:          now used (implements feature #1081)
                   2500: 
                   2501:        * src/: types/pa_vcookie.C, main/pa_charset.C: cleanup
                   2502: 
                   2503: 2017-02-01  moko
                   2504: 
                   2505:        * src/include/pa_request.h: cleanup
                   2506: 
                   2507: 2017-01-30  moko
                   2508: 
                   2509:        * src/main/pa_request.C: file_lock_wait_limit -> lock_wait_timeout
                   2510: 
                   2511: 2017-01-29  moko
                   2512: 
                   2513:        * tests/: 383.html, results/383.processed: test for
                   2514:          ^reflection:stack[] added (related to feature #1052)
                   2515: 
                   2516:        * src/classes/reflection.C: else added
                   2517: 
                   2518:        * src/: include/pa_os.h, main/pa_os.C, main/pa_request.C:
                   2519:          $.max_file_lock_wait added (implements feature #1128)
                   2520: 
                   2521: 2017-01-28  moko
                   2522: 
                   2523:        * tests/: 379-curl.html, results/379-curl.processed: curl empty
                   2524:          body and other cases tests added (related to featue #1014)
                   2525: 
                   2526:        * src/classes/curl.C: bug if response is empty fixed (related to
                   2527:          feature #1014)
                   2528: 
                   2529: 2017-01-27  moko
                   2530: 
                   2531:        * src/: classes/json.C, classes/reflection.C, include/pa_request.h,
                   2532:          main/execute.C, types/pa_vmethod_frame.h: ^reflection:stack[]
                   2533:          added (implements feature #1052)
                   2534: 
                   2535: 2017-01-25  moko
                   2536: 
                   2537:        * tests/: 382.html, results/382.processed: @GET_DEFAULT returning
                   2538:          method test added
                   2539: 
                   2540: 2017-01-23  moko
                   2541: 
                   2542:        * src/classes/reflection.C: optimization: options->get replaced by
                   2543:          hash iterator
                   2544: 
                   2545:        * tests/: 381.html, results/381.processed: now -> fixed date
                   2546: 
                   2547:        * src/main/pa_request.C: warning war
                   2548: 
                   2549:        * src/targets/cgi/parser3.vcproj: Stack size increased from 2Mb to
                   2550:          5Mb (fixes bug #1058)
                   2551: 
                   2552:        * src/classes/curl.C: warning war
                   2553: 
                   2554:        * tests/: 381.html, results/381.processed: tests for ^json:string
                   2555:          $.one-line(true) option added (related to feature #1124)
                   2556: 
                   2557:        * src/: classes/json.C, types/pa_value.h: $json-string
                   2558:          $.one-line(true|false) options is now supported (implements
                   2559:          feature #1124)
                   2560: 
                   2561:        * tests/: 380.html, results/380.processed: test for modified
                   2562:          $.max_file_size added (related to bug #1014)
                   2563: 
                   2564:        * tests/: 379.html, results/auto.p: tests for rewritten http file
                   2565:          load added (related to bug #1014)
                   2566: 
                   2567:        * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
                   2568:          main/pa_common.C, main/pa_http.C: check_file_size added and used
                   2569:          in curl / file load from disk and http, http file load rewritten
                   2570:          (related to bug #1014)
                   2571: 
                   2572: 2017-01-18  moko
                   2573: 
                   2574:        * tests/: 378.html, results/378.processed: tests for ^result[]
                   2575:          added (related to feature #66)
                   2576: 
                   2577:        * src/: classes/op.C, include/pa_request.h: ^return[] can't be
                   2578:          Method::CO_WITHOUT_FRAME as frame still added in expression
                   2579:          (related to feature #66)
                   2580: 
                   2581: 2017-01-17  moko
                   2582: 
                   2583:        * tests/: 377.html, results/377.processed: test for different
                   2584:          combinations of breaks in body and delimiter (related to bug
                   2585:          #1077)
                   2586: 
                   2587:        * tests/: 376.html, results/376.processed: many ^break[] tests
                   2588:          added (related to bug #1077)
                   2589: 
                   2590:        * src/types/pa_vmethod_frame.C: "break is not allowed in expression
                   2591:          passed to native method" exception added to avoid bugs due to
                   2592:          WRITE_EXPR_RESULT skipped and native methods execution continues
                   2593:          after ^break[] (related to bug #1077)
                   2594: 
                   2595: 2017-01-14  moko
                   2596: 
                   2597:        * tests/: 330.html, results/330.processed: test results updated
                   2598:          after ^break[] bugs where fixed (related to bug #1077)
                   2599: 
                   2600:        * tests/: 329.html, results/329.processed: test results updated
                   2601:          after ^break[] bugs where fixed (related to bug #1077)
                   2602: 
                   2603:        * tests/results/320.processed: ^return[] added
                   2604: 
                   2605: 2017-01-13  moko
                   2606: 
                   2607:        * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
                   2608:          classes/table.C, include/pa_request.h, main/execute.C,
                   2609:          main/pa_request.C, targets/cgi/parser3.C,
                   2610:          types/pa_vmethod_frame.C: Request::SKIP_INTERRUPTED,
                   2611:          Request::SKIP_RETURN added and implemented, Request::SKIP_* now
                   2612:          checked after each possible process/execute call (fixes bug
                   2613:          #1077)
                   2614: 
                   2615: 2016-12-29  moko
                   2616: 
                   2617:        * src/main/pa_common.C: warning war
                   2618: 
                   2619:        * src/: classes/math.C, include/pa_random.h, include/pa_request.h,
                   2620:          include/pa_types.h, main/pa_request.C, main/pa_string.C:
                   2621:          pa_file_size_limit added, ^math:random fixed for upper limit and
                   2622:          limits more then 0x7FFFFFFF, limits now declared in pa_types.h
                   2623:          (related to feature #1014)
                   2624: 
                   2625:        * src/: classes/curl.C, classes/file.C, include/pa_common.h,
                   2626:          main/pa_common.C, main/pa_dir.C, main/pa_exec.C: stat -> pa_stat
                   2627:          (related to feature #1014)
                   2628: 
                   2629: 2016-12-28  moko
                   2630: 
                   2631:        * src/: classes/file.C, main/pa_request.C, main/pa_string.C: VS2003
                   2632:          warning war
                   2633: 
                   2634: 2016-12-26  moko
                   2635: 
                   2636:        * tests/: 341.html, results/341.processed: test for
                   2637:          ^table.hash[id;;$.type[string]] added (related to feature #1057)
                   2638: 
                   2639:        * src/classes/table.C: ^table.hash[id;;$.type[string]] support fix
                   2640:          (related to feature #1057)
                   2641: 
                   2642:        * src/types/pa_vdate.C: warning war continues...
                   2643: 
                   2644:        * src/: classes/date.C, classes/image.C, classes/table.C,
                   2645:          include/pa_config_includes.h, types/pa_vfile.C: warning war
                   2646: 
                   2647:        * src/lib/gd/gifio.C: warning war / cleanup
                   2648: 
                   2649:        * src/lib/json/pa_json.C: warning war
                   2650: 
                   2651:        * src/classes/hash.C: warning war
                   2652: 
                   2653:        * src/types/pa_vfile.C: warning war
                   2654: 
                   2655:        * src/: classes/hash.C, include/pa_common.h, types/pa_vcookie.C:
                   2656:          -Wall warning war continues
                   2657: 
                   2658:        * configure.ac: --with-build-warnings actualized
                   2659: 
                   2660: 2016-12-25  moko
                   2661: 
                   2662:        * src/main/pa_exec.C: -wAll warning war
                   2663: 
                   2664:        * src/: types/pa_vform.C, types/pa_vrequest.C, main/pa_common.C:
                   2665:          -wAll warning war
                   2666: 
                   2667:        * src/: include/pa_common.h, include/pa_sapi.h,
                   2668:          types/pa_junction.h, types/pa_method.h, types/pa_value.h,
                   2669:          types/pa_vdate.C, types/pa_vstateless_class.h, types/pa_vxdoc.h:
                   2670:          -wAll warning war
                   2671: 
                   2672: 2016-12-23  moko
                   2673: 
                   2674:        * src/lib/ltdl/Makefile.am: extra dist added
                   2675: 
                   2676:        * tests/results/344.processed: test result updated after $file.text
                   2677:          prefetched in ^hash::create[$file] (related to feature #1075)
                   2678: 
                   2679:        * src/types/: pa_vfile.C, pa_vfile.h: $file.text prefetched in
                   2680:          ^hash::create[$file] (related to feature #1075)
                   2681: 
                   2682: 2016-12-22  moko
                   2683: 
                   2684:        * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
                   2685:          main/pa_request.C, main/pa_stylesheet_connection.C,
                   2686:          types/pa_vfile.C: file_stat now return 64-bit size (implements
                   2687:          #1014 under 32-bit unix versions)
                   2688: 
                   2689: 2016-12-21  moko
                   2690: 
                   2691:        * tests/: 375.html, results/375.processed: test for exec returning
                   2692:          stated file added (related to feature #1119)
                   2693: 
                   2694:        * src/classes/file.C: load should not return file with null body
                   2695:          (fixes bug #1119)
                   2696: 
                   2697: 2016-12-14  moko
                   2698: 
                   2699:        * tests/: 374.html, results/374.processed: test for $method.name
                   2700:          added (related to feature #1117) plus method returning junction
                   2701:          test
                   2702: 
                   2703: 2016-12-13  moko
                   2704: 
                   2705:        * src/: include/pa_symbols.h, main/pa_symbols.C,
                   2706:          types/pa_vjunction.C, types/pa_vjunction.h: $method.name added
                   2707:          (implements feature #1117)
                   2708: 
                   2709:        * src/: types/pa_vform.C, include/pa_request_info.h: now only GET,
                   2710:          HEAD and TRACE can't have body (implements feature #1116)
                   2711: 
                   2712: 2016-12-09  moko
                   2713: 
                   2714:        * tests/: 373.html, results/373.processed: tests for
                   2715:          ^reflection:tainting added (related to feature #1098)
                   2716: 
                   2717:        * src/classes/reflection.C: ^reflection:tainting arguments order
                   2718:          change (related to feature #1098)
                   2719: 
                   2720: 2016-12-06  moko
                   2721: 
                   2722:        * src/: classes/reflection.C, include/pa_string.h,
                   2723:          main/pa_string.C: ^reflection:tainting[$string] added (implements
                   2724:          feature #1098)
                   2725: 
                   2726: 2016-12-05  moko
                   2727: 
                   2728:        * src/types/pa_vdouble.h: negative zero (-0) now converted to 0
                   2729:          (fixes bug #1114)
                   2730: 
                   2731: 2016-12-04  moko
                   2732: 
                   2733:        * tests/: 206.html, results/206.processed: negative zero (0/-1)
                   2734:          check added
                   2735: 
                   2736: 2016-12-03  moko
                   2737: 
                   2738:        * tests/: 346-curl.html, results/346-curl.processed: test modified
                   2739:          to test value.as_hash() usage
                   2740: 
                   2741:        * src/classes/curl.C: value.as_hash() used for correct hash
                   2742:          processing
                   2743: 
                   2744:        * src/classes/reflection.C: exceptions texts fixes
                   2745: 
                   2746: 2016-12-02  moko
                   2747: 
                   2748:        * tests/: 372.html, results/372.processed: tests for
                   2749:          ^reflection:create[ $.class[name] $.constructor[name]
                   2750:          $.arguments[ $.1[param1] $.2[param2] ... ] ] added (related to
                   2751:          feature #1094)
                   2752: 
                   2753:        * src/types/pa_vmethod_frame.h: comment added: params should be
                   2754:          declared outside of *_FRAME_ACTION as MethodParams destructor
                   2755:          will be called in ~VNativeMethodFrame
                   2756: 
                   2757:        * src/classes/reflection.C: ^reflection:create[ $.arguments[ ... ]
                   2758:          ] minor fix
                   2759: 
                   2760:        * src/: classes/reflection.C, types/pa_value.C, types/pa_value.h,
                   2761:          types/pa_vmethod_frame.C: ^reflection:create[ $.class[name]
                   2762:          $.constructor[name] $.arguments[ $.1[param1] $.2[param2] ... ] ]
                   2763:          now supported (implements feature #1094) value::as_hash added
                   2764:          (and should be used everywhere)
                   2765: 
                   2766:        * src/classes/reflection.C: cleanup
                   2767: 
                   2768: 2016-12-01  moko
                   2769: 
                   2770:        * tests/: 356.html, results/356.processed: test for method
                   2771:          junctions class name added to the resulting hash added (related
                   2772:          to feature #1068)
                   2773: 
                   2774:        * src/classes/reflection.C: for method junctions class name added
                   2775:          to the resulting hash (related to feature #1068)
                   2776: 
                   2777: 2016-11-30  moko
                   2778: 
                   2779:        * src/types/: pa_vhashfile.C, pa_vhashfile.h: file_name included in
                   2780:          exception (related to bug #1113)
                   2781: 
                   2782:        * src/types/pa_vhashfile.C: whitespace
                   2783: 
                   2784:        * src/main/pa_os.C: errno now returned as it should (fixes bug
                   2785:          #1113)
                   2786: 
                   2787:        * tests/results/: 175.processed, 192.processed, 224.processed,
                   2788:          229.processed, 239.processed, 244.processed, 246.processed,
                   2789:          314.processed, 352.processed: tests results updated after method
                   2790:          call exceptions improved as method now keeps its name
                   2791: 
                   2792:        * src/: classes/reflection.C, main/execute.C, types/pa_value.C,
                   2793:          types/pa_vmethod_frame.h: method call exceptions improved as
                   2794:          method now keeps its name
                   2795: 
                   2796:        * tests/: 224.html, 239.html, results/224.processed,
                   2797:          results/239.processed: tests and tests results updated after
                   2798:          Request::construct exception changed
                   2799: 
                   2800:        * src/: classes/reflection.C, main/execute.C: Request::construct
                   2801:          exception optimized
                   2802: 
                   2803:        * tests/: 371.html, results/371.processed: test for
                   2804:          WWrapper.get_element call in $.name.key[value] code added
                   2805:          (related to feature #1091)
                   2806: 
                   2807:        * src/types/pa_wwrapper.h: WWrapper.get_element returned, as used
                   2808:          in $.name.key[value] code (related to feature #1091)
                   2809: 
                   2810: 2016-11-29  moko
                   2811: 
                   2812:        * src/classes/op.C: VS warning war
                   2813: 
                   2814:        * src/types/: pa_vmethod_frame.h, pa_wcontext.h: VS warning war:
                   2815:          C4239: nonstandard extension used : 'return' : conversion from
                   2816:          'Value' to 'Value &' (related to feature #1020)
                   2817: 
                   2818:        * src/: main/execute.C, types/pa_vmethod_frame.h,
                   2819:          types/pa_wcontext.h: VS warning war: C4239: nonstandard extension
                   2820:          used : 'return' : conversion from 'Value' to 'Value &' (related
                   2821:          to feature #1020)
                   2822: 
                   2823:        * src/main/execute.C: VS warning war
                   2824: 
                   2825:        * src/targets/cgi/parser3.C: VS compatibility fix
                   2826: 
                   2827:        * src/include/pa_request.h: VS warning war
                   2828: 
                   2829:        * tests/: 370.html, results/370.processed: test for ^file::exec[
                   2830:          ... $.stdin[$binary_file] ] added (related to bug #1044)
                   2831: 
                   2832:        * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
                   2833:          include/pa_string.h, main/pa_exec.C: pa_exec now supports
                   2834:          $.stdin[$binary_file] (fixes bug #1044)
                   2835: 
                   2836: 2016-11-28  moko
                   2837: 
                   2838:        * src/main/pa_exec.C: whitespace
                   2839: 
                   2840:        * src/main/pa_request.C: whitespace
                   2841: 
                   2842:        * tests/: 369.html, results/369.processed: test for
                   2843:          $response:status usage added (related to feature #1099)
                   2844: 
                   2845:        * src/targets/cgi/parser3.C: HTTP response code used as exit status
                   2846:          if < 100 (implements feature #1099)
                   2847: 
                   2848:        * src/targets/cgi/parser3.C: whitespace
                   2849: 
                   2850:        * src/targets/cgi/parser3.C: whitespace
                   2851: 
                   2852:        * tests/: 368.html, results/368.processed: test updated after
                   2853:          ^reflection:filename[$method] added (related to feature #1053)
                   2854: 
                   2855:        * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
                   2856:          main/compile.y, main/execute.C, main/pa_request.C,
                   2857:          types/pa_vclass.h: filename -> filespec,
                   2858:          ^reflection:filename[$method] added (related to feature #1053)
                   2859: 
                   2860: 2016-11-27  moko
                   2861: 
                   2862:        * tests/: 368.html, results/368.processed: test for
                   2863:          reflection:filename[$class or object] added (related to feature
                   2864:          #1053)
                   2865: 
                   2866:        * src/: classes/reflection.C, main/compile.y, types/pa_vclass.h,
                   2867:          types/pa_vstateless_class.h: ^reflection:filename[$class or
                   2868:          object] added (implements feature #1053)
                   2869: 
                   2870: 2016-11-26  moko
                   2871: 
                   2872:        * src/: include/pa_request_info.h,
                   2873:          targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
                   2874:          remove_absolute_uri -> strip_absolute_uri
                   2875: 
                   2876: 2016-11-25  moko
                   2877: 
                   2878:        * src/: include/pa_request_info.h,
                   2879:          targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
                   2880:          request_info.remove_absolute_uri added to remove possible
                   2881:          http://site.name/ from $request:uri (implements feature #1112)
                   2882: 
                   2883: 2016-11-24  moko
                   2884: 
                   2885:        * tests/: 367-curl.html, results/367-curl.processed: test for
                   2886:          previous request headers clearing after redirect added (related
                   2887:          to bug #1109)
                   2888: 
                   2889:        * src/: classes/curl.C, include/pa_array.h, include/pa_http.h:
                   2890:          response headers from previous requests are now cleared, only
                   2891:          last request headers are collected (fixes bug #1109)
                   2892: 
                   2893:        * tests/results/: 266.processed, 321.processed, 356.processed:
                   2894:          tests results updated as method name now added to the resulting
                   2895:          hash for new syntax only (Imp1 compatimility fixed, related to
                   2896:          feature #1068)
                   2897: 
                   2898:        * src/classes/reflection.C: method name now added to the resulting
                   2899:          hash for new syntax only (Imp1 compatimility fixed, related to
                   2900:          feature #1068)
                   2901: 
                   2902:        * tests/results/366.processed: test for native and parser
                   2903:          implementation of ^use[] logic (related to feature #1074)
                   2904: 
                   2905:        * tests/: 366.html, 366_dir/test-duplicate.p, 366_dir/test.p: test
                   2906:          for native and parser implementation of ^use[] logic (related to
                   2907:          feature #1074)
                   2908: 
                   2909: 2016-11-23  moko
                   2910: 
                   2911:        * src/: classes/op.C, include/pa_request.h, main/compile.y,
                   2912:          main/pa_request.C: @USE file now implemented as ^use[file;
                   2913:          $.origin[origin_file] ] (implements feature #1074)
                   2914: 
1.109     moko     2915: 2016-11-21  moko
                   2916: 
1.110     moko     2917:        * tests/: 365.html, results/365.processed: test for $caller bugs in
                   2918:          3.4.4 and $caller.method now tested (related to feature #1110)
                   2919: 
                   2920:        * tests/: 364.html, results/364.processed: $caller usage in
                   2921:          different contexts now tested (related to feature #1110)
                   2922: 
                   2923:        * src/types/types.vcproj: +pa_vcaller_wrapper.h
                   2924: 
                   2925:        * src/types/Makefile.am: pa_vcaller_wrapper.h added
                   2926: 
1.109     moko     2927:        * src/: include/pa_symbols.h, main/pa_symbols.C, types/pa_method.h,
                   2928:          types/pa_vcaller_wrapper.h, types/pa_vmethod_frame.C,
                   2929:          types/pa_vmethod_frame.h:  redesign: VCallerWrapper added and
                   2930:          used (implements feature #1110)
                   2931: 
                   2932: 2016-11-20  moko
                   2933: 
                   2934:        * src/types/pa_vdouble.h: whitespace
                   2935: 
                   2936: 2016-11-11  moko
                   2937: 
                   2938:        * tests/: 363.html, results/363.processed: more tests for feature
                   2939:          #1091 (how parser methods work in expression context)
                   2940: 
                   2941:        * src/: include/pa_request.h, types/pa_vmethod_frame.h: in
                   2942:          expressions strings are now written as strings, not values by
                   2943:          write_as_string (related to feature #1091)
                   2944: 
                   2945:        * src/classes/op.C: to make more correct behavour in expression
                   2946:          context
                   2947: 
                   2948: 2016-11-07  moko
                   2949: 
                   2950:        * tests/: 362.html, results/362.processed: test for
                   2951:          xsltParseStylesheetDoc caching as xsl modification after it added
                   2952:          (related to bug #1108)
                   2953: 
                   2954:        * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltParseStylesheetDoc
                   2955:          result now cached as xdoc is modified after it (fixes bug #1108)
                   2956: 
                   2957: 2016-11-06  moko
                   2958: 
                   2959:        * src/types/pa_vxdoc.h: whitespace
                   2960: 
                   2961: 2016-11-05  moko
                   2962: 
                   2963:        * src/types/pa_vmethod_frame.h: cleanup
                   2964: 
                   2965: 2016-11-03  moko
                   2966: 
                   2967:        * tests/results/244.processed: more correct exception after method
                   2968:          frames separation
                   2969: 
                   2970:        * src/types/pa_vmethod_frame.h: minor optimizaion
                   2971: 
                   2972:        * src/types/pa_method.h: optimization: params_count added
                   2973: 
                   2974:        * src/: classes/json.C, classes/op.C, classes/reflection.C,
                   2975:          include/pa_request.h, main/execute.C, main/pa_request.C,
                   2976:          types/pa_value.C, types/pa_vmethod_frame.C,
                   2977:          types/pa_vmethod_frame.h, types/pa_vobject.C: Optimization:
                   2978:          VMethodFrame now divided into VNativeMethodFrame,
                   2979:          VParserMethodFrame, VLocalParserMethodFrame; METHOD_FRAME_ACTION,
                   2980:          EXPRESSION_FRAME_ACTION, CONSTRUCTOR_FRAME_ACTION defines added
                   2981:          and used (related to feature #1104)
                   2982: 
                   2983: 2016-11-02  moko
                   2984: 
                   2985:        * src/: classes/bool.C, classes/curl.C, classes/date.C,
                   2986:          classes/double.C, classes/file.C, classes/hash.C,
                   2987:          classes/hashfile.C, classes/image.C, classes/inet.C,
                   2988:          classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
                   2989:          classes/memcached.C, classes/op.C, classes/reflection.C,
                   2990:          classes/regex.C, classes/string.C, classes/table.C,
                   2991:          classes/xdoc.C, classes/xnode.C, include/pa_request.h,
                   2992:          main/execute.C: cleanup: r.write_pass_lang, r.write_no_lang ->
                   2993:          r.write (implements feature #1091)
                   2994: 
                   2995:        * src/main/execute.C: cleanup (related to feature #1104)
                   2996: 
                   2997:        * src/: include/pa_request.h, main/execute.C,
                   2998:          types/pa_vmethod_frame.h, types/pa_wcontext.h: VExpressionFrame
                   2999:          added, in_expression removed (implements feature #1104)
                   3000: 
                   3001: 2016-10-31  moko
                   3002: 
                   3003:        * src/types/pa_value.C: whitespace
                   3004: 
                   3005: 2016-10-28  moko
                   3006: 
                   3007:        * tests/results/244.processed: updated after error reporting fixed
                   3008:          in pa_wcontext.C
                   3009: 
                   3010:        * src/types/pa_wcontext.C: error reporting fixed
                   3011: 
                   3012:        * src/types/pa_wcontext.h: whitespace
                   3013: 
                   3014:        * src/classes/image.C: not fully readed entries are no longer
                   3015:          processed (fixes bug #1106)
                   3016: 
                   3017: 2016-10-26  moko
                   3018: 
                   3019:        * src/classes/image.C: whitespace
                   3020: 
                   3021:        * src/: include/pa_request.h, include/pa_string.h, main/untaint.C,
                   3022:          types/pa_vmail.C, types/pa_vmethod_frame.h, types/pa_wcontext.h,
                   3023:          types/pa_wwrapper.h: optimization: L_PASS_APPENDED removed as no
                   3024:          longer required (related to feature #1091)
                   3025: 
                   3026:        * tests/results/: 264.processed, 350.processed: test results update
                   3027:          reverted (whitespace optimization) after write_no_lang removed :)
                   3028:          (related to feature #1091)
                   3029: 
                   3030:        * src/: classes/file.C, classes/hash.C, classes/op.C,
                   3031:          classes/string.C, classes/table.C, classes/void.C,
                   3032:          classes/xdoc.C, include/pa_request.h, main/pa_xml_io.C,
                   3033:          types/pa_vmail.C: Temp_lang removed, write_no_lang now almost
                   3034:          equal write_pass_lang (related to feature #1091)
                   3035: 
                   3036:        * tests/results/: 264.processed, 350.processed: test results
                   3037:          updated (whitespace optimization) after write_assign_lang removed
                   3038:          (related to feature #1091)
                   3039: 
                   3040:        * tests/: 361.html, results/361.processed: test for non-string
                   3041:          ^untaint added (related to feature #1091)
                   3042: 
                   3043:        * src/: classes/curl.C, classes/date.C, classes/file.C,
                   3044:          classes/hash.C, classes/op.C, classes/string.C,
                   3045:          include/pa_request.h, main/execute.C: optimization:
                   3046:          write_assign_lang removed as not required (first part of feature
                   3047:          #1091 implementation)
                   3048: 
1.108     moko     3049: 2016-10-12  moko
                   3050: 
                   3051:        * tests/: 360.html, results/360.processed: more test code (related
                   3052:          to feature #1104)
                   3053: 
                   3054:        * src/: classes/op.C, classes/reflection.C, include/pa_opcode.h,
                   3055:          include/pa_request.h, main/compile.y, main/execute.C: opcode
                   3056:          OP_PREPARE_TO_EXPRESSION removed as not required, optimized
                   3057:          WContext is next task (implements feature #1104)
                   3058: 
                   3059:        * src/types/pa_method.h: more detailed comment for CO_WITHOUT_FRAME
                   3060:          / CO_WITHOUT_WCONTEXT
                   3061: 
                   3062:        * tests/: 360.html, results/360.processed: test for in expression
                   3063:          state (related to feature #1104)
                   3064: 
                   3065: 2016-10-11  moko
                   3066: 
                   3067:        * src/main/execute.C: compilation without OPTIMIZE_CALL fixed
                   3068: 
                   3069:        * src/classes/op.C: default value removed from initializer
                   3070: 
                   3071:        * src/types/pa_vmemcached.C: FreeBSD 11 warning war
                   3072: 
                   3073:        * src/types/pa_vmethod_frame.h: FreeBSD 11 warning war
                   3074: 
                   3075: 2016-10-10  moko
                   3076: 
                   3077:        * tests/results/auto.p: test updated adter $RECOURSION_LIMIT,
                   3078:          $LOOP_LIMIT  -> $LIMITS[ $.max_recoursion, $.max_loop ] (related
                   3079:          to feature #42)
                   3080: 
                   3081:        * src/main/pa_request.C: $RECOURSION_LIMIT, $LOOP_LIMIT  ->
                   3082:          $LIMITS[ $.max_recoursion, $.max_loop ] (related to feature #42)
                   3083: 
                   3084: 2016-10-08  moko
                   3085: 
                   3086:        * src/classes/double.C: whitespace
                   3087: 
                   3088: 2016-10-07  moko
                   3089: 
                   3090:        * src/types/pa_vmethod_frame.h: reorder
                   3091: 
                   3092: 2016-10-06  moko
                   3093: 
                   3094:        * src/classes/date.C: typo
                   3095: 
                   3096:        * src/types/pa_vmethod_frame.h: whitespace + cleanup
                   3097: 
                   3098:        * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
                   3099:          classes/op.C, classes/reflection.C, types/pa_vmethod_frame.C,
                   3100:          types/pa_vmethod_frame.h: params.get now returns Value&, not
                   3101:          Value*
                   3102: 
                   3103:        * src/types/pa_vmethod_frame.C: params.get should return Value&.
                   3104: 
                   3105:        * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: get_as
                   3106:          removed; first as_* code rewrite
                   3107: 
                   3108: 2016-10-05  moko
                   3109: 
                   3110:        * src/include/pa_request.h: whitespace
                   3111: 
                   3112:        * tests/: 359.html, results/359.processed: test for VCodeFrame and
                   3113:          intercept_string added (related to feature #1097)
                   3114: 
                   3115:        * src/: classes/image.C, classes/op.C, classes/table.C,
                   3116:          include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
                   3117:          optimization: intercept_string removed (implements feature #1097)
                   3118: 
                   3119:        * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: whitespace
                   3120: 
                   3121:        * src/types/: pa_vcode_frame.h, pa_wwrapper.h: get_element removed
                   3122:          from VCodeFrame and WWrapper as not required
                   3123: 
                   3124: 2016-10-04  moko
                   3125: 
                   3126:        * src/: classes/curl.C, classes/date.C, classes/double.C,
                   3127:          classes/file.C, classes/hash.C, classes/image.C, classes/inet.C,
                   3128:          classes/int.C, classes/json.C, classes/op.C,
                   3129:          classes/reflection.C, classes/string.C, classes/table.C,
                   3130:          include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
                   3131:          proces_to_value -> process after StringOrValue removed (related
                   3132:          to feature #1020)
                   3133: 
                   3134:        * src/classes/form.C: whitespace
                   3135: 
                   3136:        * src/main/execute.C: VALUE__GET_BASE_CLASS added to opcode_names
                   3137: 
                   3138:        * tests/: 357.html, 358.html, results/357.processed,
                   3139:          results/358.processed, results/auto.p: test for @conf
                   3140:          $RECOURSION_LIMIT and $LOOP_LIMIT added (related to feature #42)
                   3141: 
                   3142: 2016-10-03  moko
                   3143: 
                   3144:        * src/: classes/op.C, include/pa_request.h, main/pa_request.C,
                   3145:          types/pa_vtable.C: @conf $RECOURSION_LIMIT and $LOOP_LIMIT now
                   3146:          supported (implements feature #42)
                   3147: 
                   3148:        * src/types/pa_vregex.h: no reason for VRegex to be
                   3149:          is_evaluated_expr
                   3150: 
                   3151:        * src/classes/curl.C: CURL_OPT(CURL_INT, SSLVERSION) added
                   3152:          (implements feature #1095)
                   3153: 
                   3154: 2016-10-01  moko
                   3155: 
                   3156:        * src/classes/reflection.C: $.overwrite in ^reflection:mixin is now
                   3157:          false by default (related to feature #1089)
                   3158: 
                   3159: 2016-09-30  moko
                   3160: 
                   3161:        * src/types/pa_wcontext.h: cleanup
                   3162: 
                   3163: 2016-09-29  moko
                   3164: 
                   3165:        * src/main/execute.C: whitespace
                   3166: 
                   3167:        * src/include/pa_request.h: whitespace
                   3168: 
                   3169:        * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
                   3170:          classes/op.C, classes/table.C, include/pa_request.h,
                   3171:          main/execute.C, main/pa_request.C, types/pa_vmethod_frame.h,
                   3172:          types/pa_vobject.C, types/pa_wcontext.h: optimization:
                   3173:          StringOrValue removed as it just slows down and adds complexity
                   3174:          (implements feature #1020)
                   3175: 
                   3176: 2016-09-28  moko
                   3177: 
                   3178:        * tests/: 356.html, results/266.processed, results/321.processed,
                   3179:          results/356.processed: tests updated after name was added to
                   3180:          method_info hash, test for ^reflection:method_info[junction]
                   3181:          added (related to feature #1068)
                   3182: 
                   3183:        * src/classes/reflection.C: ^reflection:method_info[junction] now
                   3184:          supported, method name added to the resulting hash (implements
                   3185:          feature #1068)
                   3186: 
                   3187:        * tests/: 276.html, results/276.processed: more tests for
                   3188:          ^reflection:delete[]
                   3189: 
                   3190:        * src/classes/reflection.C: fixed bug then ^reflection:delete
                   3191:          didn't work on class and could damage native objects (like file)
                   3192: 
                   3193: 2016-09-26  moko
                   3194: 
                   3195:        * tests/: 345.html, 346-curl.html, 347-curl.html, 348.html,
                   3196:          results/345.processed, results/346-curl.processed,
                   3197:          results/347-curl.processed, results/348.processed: numbers added
                   3198:          to simplify diff analysis
                   3199: 
                   3200:        * tests/: 352.html, results/352.processed: test result updated as
                   3201:          method name used
                   3202: 
                   3203:        * src/classes/reflection.C: method name used
                   3204: 
                   3205:        * src/types/: pa_method.h, pa_vstateless_class.C: method now keeps
                   3206:          its name
                   3207: 
                   3208:        * src/types/pa_method.h: whitespace
                   3209: 
                   3210:        * src/classes/reflection.C: both method and field with one name can
                   3211:          exist.
                   3212: 
                   3213:        * src/classes/reflection.C: ^reflection:mixin added (implements
                   3214:          feature #1089)
                   3215: 
                   3216:        * tests/: 355.html, results/355.processed: property appears in
                   3217:          derived class if added in base test added
                   3218: 
                   3219:        * src/types/pa_vstateless_class.h: get_method declaration +
                   3220:          whitespace
                   3221: 
                   3222:        * tests/: 354.html, results/354.processed: nice test from method
                   3223:          and property with one name in class added
                   3224: 
                   3225: 2016-09-23  moko
                   3226: 
                   3227:        * src/classes/reflection.C: ^reflection:method usage documented
                   3228: 
                   3229: 2016-09-22  moko
                   3230: 
                   3231:        * src/: classes/classes.vcproj, types/types.vcproj: we need RTTI as
                   3232:          we use 'dynamic_cast' on polymorphic type 'Value'. Without it
                   3233:          compile warning and GPF occures on VS2003 (related to feature
                   3234:          #1087)
                   3235: 
                   3236:        * tests/: 350.html, results/350.processed: test added for
                   3237:          $.encloser[] support in ^table::create (related to feature #11)
                   3238: 
                   3239:        * src/classes/table.C: another minor fix (related to feature #11)
                   3240: 
1.107     moko     3241: 2016-09-21  moko
                   3242: 
                   3243:        * src/include/pa_config_fixed.h: vs2015 compilation fixes
                   3244: 
                   3245:        * src/: classes/curl.C, classes/file.C, classes/hash.C,
                   3246:          classes/json.C, classes/string.C, classes/table.C,
                   3247:          classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
                   3248:          main/pa_common.C, main/pa_http.C, main/pa_request.C,
                   3249:          main/pa_sql_driver_manager.C, types/pa_vfile.C, types/pa_vmail.C,
                   3250:          types/pa_vrequest.C, types/pa_vresponse.C: charsets ->
                   3251:          pa_charsets, vs2015 warning war
                   3252: 
                   3253:        * src/classes/table.C: vs2015 warning war
                   3254: 
                   3255:        * src/types/pa_vdate.C: vs2015 warning war
                   3256: 
                   3257:        * src/main/: pa_common.C, pa_globals.C: vs2015 compilation fixes
                   3258: 
                   3259:        * src/targets/cgi/parser3.vcproj: wsock32 -> ws2_32.lib (winsock 1
                   3260:          -> winsock 2) for vs2015 compatibility (getaddrinfo functions)
                   3261: 
                   3262:        * src/main/pa_common.C: vs2015 compilation fixes
                   3263: 
                   3264:        * src/: include/pa_common.h, lib/smtp/smtp.C, main/pa_common.C:
                   3265:          vs2015 compilation fixes
                   3266: 
                   3267:        * src/main/pa_charset.C: vs2015 warning war
                   3268: 
                   3269:        * src/: classes/file.C, types/pa_wwrapper.h: vs2015 warning war
                   3270: 
                   3271:        * src/main/pa_charset.C: vs2015 warning war
                   3272: 
                   3273:        * src/types/: pa_wcontext.h, pa_vmethod_frame.h: vs2015 warning war
                   3274: 
                   3275:        * src/types/pa_vdate.C: vs2015 compilation fix
                   3276: 
                   3277:        * src/: include/pa_memory.h, main/pa_memory.C: VS2015 warning war
                   3278: 
                   3279:        * src/: lib/json/pa_json.C, classes/mail.C, classes/string.C:
                   3280:          VS2015 compilation fixes
                   3281: 
                   3282:        * src/classes/table.C: minor fix (related to feature #11)
                   3283: 
                   3284:        * tests/results/282.processed: no longer skipping extra enclosers
                   3285:          (related to feature #11)
                   3286: 
                   3287:        * src/classes/table.C: minor fix + no longer skipping extra
                   3288:          enclosers (related to feature #11)
                   3289: 
                   3290:        * src/classes/table.C: minor optimization (related to feature #11)
                   3291: 
                   3292:        * src/classes/table.C: minor fix and optimization (related to
                   3293:          feature #11)
                   3294: 
                   3295: 2016-09-20  moko
                   3296: 
                   3297:        * tests/: 353.html, results/353.processed: test for
                   3298:          PC.cclass->is_vars_local() check in one_big_piece in ^process[]
                   3299:          added (related to bug #1090)
                   3300: 
                   3301:        * src/main/compile.y: PC.cclass->is_vars_local() check added for
                   3302:          one_big_piece (fixes bug #1090)
                   3303: 
                   3304:        * tests/: 229.html, results/229.processed: code coverage tests
                   3305: 
                   3306:        * src/classes/op.C: bugfix: no more GPF if ^process[$context] (no
                   3307:          body) was called
                   3308: 
                   3309:        * src/classes/op.C: whitespace
                   3310: 
                   3311:        * tests/: 323.html, results/323.processed: test for code junction
                   3312:          should not be returned by ^reflection:class, ^reflection:base
                   3313: 
                   3314:        * src/classes/reflection.C: bugfix: code junction should not be
                   3315:          returned by ^reflection:class, ^reflection:base
                   3316: 
                   3317:        * tests/: 323.html, 352.html, results/352.processed: no more
                   3318:          exception for ^reflection:method[class;no-such-method] (related
                   3319:          to feature #1087)
                   3320: 
                   3321:        * src/classes/reflection.C:
                   3322:          ^reflection:method[class;no-such-method] : exception -> void
                   3323:          (related to feature #1087)
                   3324: 
                   3325:        * src/include/pa_request.h: request::write_value added to allow
                   3326:          write value without convertion (related to issue #1091)
                   3327: 
                   3328: 2016-09-19  moko
                   3329: 
                   3330:        * src/main/pa_random.C: windows build fix
                   3331: 
                   3332:        * src/types/pa_vhash.h: warning war
                   3333: 
                   3334: 2016-09-14  moko
                   3335: 
                   3336:        * tests/: 352.html, 552.html, results/352.processed,
                   3337:          results/552.processed: test for ^reflection:method[] extension
                   3338:          added (related to feature #1087)
                   3339: 
                   3340:        * tests/: 552.html, results/552.processed: test for
                   3341:          ^reflection:method[] extension added (related to feature #1087)
                   3342: 
                   3343:        * src/classes/reflection.C: compatibility issue fixed, VClass
                   3344:          dynamic_cast check added (related to feature #1087)
                   3345: 
                   3346:        * tests/: 351.html, results/351.processed: test for @auto[]
                   3347:          inheritance bug diring ^process[] added (related to bug #1088)
                   3348: 
                   3349:        * src/: classes/op.C, main/pa_request.C,
                   3350:          types/pa_vstateless_class.C: set_method now checks for @auto[] to
                   3351:          disable it inheritance during ^process (fixes bug #1088)
                   3352: 
                   3353:        * src/classes/reflection.C: ^reflection:method[$class:method;$self]
                   3354:          added (implements feature #1087)
                   3355: 
                   3356: 2016-09-13  moko
                   3357: 
                   3358:        * tests/: 349.html, results/auto.p: test for objects prototyping
                   3359:          added and $OBJECT-PROTOTYPE(false) is used for old tests (related
                   3360:          to feature #1086)
                   3361: 
                   3362:        * src/: main/pa_request.C, types/pa_vclass.C, types/pa_vclass.h,
                   3363:          types/pa_vobject.C: objects now are not class instances, but have
                   3364:          class as prototype, can be overridden by $OBJECT-PROTOTYPE(false)
                   3365:          in @conf (implements feature #1086)
                   3366: 
                   3367: 2016-09-08  moko
                   3368: 
                   3369:        * src/: classes/file.C, classes/mail.C, classes/string.C,
                   3370:          classes/table.C, main/pa_http.C, main/pa_string.C,
                   3371:          include/pa_string.h: cleanup: string::split limit argument
                   3372:          removed as no longer required, pos_after no longer reference
                   3373:          (related to feature #11)
                   3374: 
                   3375:        * src/classes/table.C, tests/results/348.processed: now exception
                   3376:          is rised when invalid option is passed to ^table::create[]
                   3377: 
                   3378:        * tests/: 282.cfg, 282.html, results/282.processed: more code
                   3379:          coverage tests
                   3380: 
                   3381:        * tests/: 348.html, results/348.processed: code coverage tests
                   3382:          added
                   3383: 
                   3384:        * tests/: 348.html, results/348.processed: generic ^table::create[]
                   3385:          tests
                   3386: 
                   3387:        * tests/: 035.html, results/035.processed, results/272.processed:
                   3388:          tests updated after $.encloser[] support for ^table::create
                   3389:          implementation (related to feature #11)
                   3390: 
                   3391:        * src/classes/table.C: $.encloser[] support for ^table::create
                   3392:          finally added (implements feature #11)
                   3393: 
                   3394: 2016-09-07  moko
                   3395: 
                   3396:        * src/include/pa_string.h: added StringSplitHelper as friend
                   3397:          (related to feature #11)
                   3398: 
                   3399:        * src/include/pa_string.h: body and langs now protected, not
                   3400:          private to allow inheritance (related to feature #11)
                   3401: 
                   3402:        * src/classes/table.C: lsplit optimized before cloning for
                   3403:          ^table::create with $.encloser[] (related to feature #11)
                   3404: 
                   3405:        * src/classes/table.C: optimizaion: TableControlChars.separators
                   3406:          added and used (related to feature #11)
                   3407: 
                   3408:        * src/classes/table.C: spelling:
                   3409: 
                   3410:          TableSeparators -> TableControlChars column -> separator
                   3411:          separators -> control_chars
                   3412: 
                   3413: 2016-09-06  moko
                   3414: 
                   3415:        * src/main/pa_string.C: whitespace
                   3416: 
                   3417:        * src/main/pa_string.C: whitespace
                   3418: 
                   3419: 2016-09-01  moko
                   3420: 
                   3421:        * tests/: 347-curl.html, results/347-curl.processed: to make tests
                   3422:          results OS-independent
                   3423: 
                   3424:        * src/: include/pa_http.h, main/pa_http.C: typo bugfix for clang
                   3425:          compiler (related to feature #1042)
                   3426: 
                   3427: 2016-08-15  moko
                   3428: 
                   3429:        * src/include/pa_string.h: whitespace
                   3430: 
                   3431:        * src/classes/table.C: whitespace
                   3432: 
1.106     moko     3433: 2016-08-05  moko
                   3434: 
                   3435:        * tests/: 344.html, results/344.processed: test for
                   3436:          ^hash::create[$file] added (related to feature #1075)
                   3437: 
                   3438:        * src/types/: pa_vfile.h, pa_vmail.C: ^hash::create[$file] now
                   3439:          supported (implements feature #1075)
                   3440: 
                   3441: 2016-08-04  moko
                   3442: 
                   3443:        * tests/: 341.html, results/341.processed: more code coverage tests
                   3444: 
                   3445:        * tests/: 346-curl.html, results/346-curl.processed: more code
                   3446:          coverage tests for curl
                   3447: 
                   3448:        * tests/: 346-curl.html, results/346-curl.processed: more code
                   3449:          coverage tests for curl
                   3450: 
                   3451:        * tests/: 223-curl.html, 223.html, results/223-curl.processed,
                   3452:          results/223.processed: code coverage tests: $.form[ $.table[] ]
                   3453:          test added
                   3454: 
                   3455:        * tests/: 223-curl.html, results/223-curl.processed: more code
                   3456:          coverage tests for curl
                   3457: 
                   3458: 2016-08-03  moko
                   3459: 
                   3460:        * src/classes/curl.C: dlink(curl_library) now called not once, but
                   3461:          until it will be loaded, allowing to find existing library.
                   3462: 
                   3463:        * tests/: 346-curl.html, 347-curl.html, results/346-curl.processed,
                   3464:          results/347-curl.processed: more code coverage tests for curl
                   3465: 
                   3466:        * tests/: 339-curl.html, 339.html, 346-curl.html, Makefile,
                   3467:          results/339-curl.processed, results/346-curl.processed: curl
                   3468:          functionality tests
                   3469: 
                   3470: 2016-08-02  moko
                   3471: 
                   3472:        * tests/: 339.html, results/339.processed: test for tables in
                   3473:          ^file:load[] and ^curl:load[] (commented) added (related to
                   3474:          feature #1042)
                   3475: 
                   3476:        * tests/: 345.html, results/345.processed: code coverage tests for
                   3477:          file class
                   3478: 
                   3479:        * tests/: 344.html, results/344.processed: code coverage tests
                   3480: 
                   3481:        * tests/: 344.html, results/344.processed: mdate removed from
                   3482:          output
                   3483: 
                   3484:        * src/classes/file.C: minor bugfix: is_text should be taked from
                   3485:          fcontent.is_text_mode() if not set (related to feature #1061)
                   3486: 
                   3487:        * tests/: 344.html, results/344.processed: more tests
                   3488: 
                   3489:        * tests/: 343.html, 344.html, results/343.processed,
                   3490:          results/344.processed: tests for ^file::create[ $.from-charset
                   3491:          and $.to-charset ] (related to feature #1061)
                   3492: 
                   3493:        * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
                   3494:          aset_text_mode argument optimized
                   3495: 
                   3496:        * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
                   3497:          checkBOM now used in detect_binary_content (related to feature
                   3498:          #1061)
                   3499: 
                   3500:        * src/main/pa_request.C: load_charset no longer required to_upper
                   3501: 
                   3502:        * src/types/pa_vfile.C: bugfix: ^file::create[$text_file;...] now
                   3503:          preserves original file mode (if no $.mode specified)
                   3504: 
                   3505:        * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
                   3506:          ^file::create now supports $.from-charset[] and $.to-charset
                   3507:          options (implements feature #1061), automatic transcode is done
                   3508:          if text file is created from binary file and charset is detected.
                   3509: 
                   3510: 2016-07-30  moko
                   3511: 
                   3512:        * src/classes/table.C: ^t.hash[..;] now supported (related to
                   3513:          feature #1057)
                   3514: 
                   3515:        * tests/: 341.html, results/341.processed: test for ^t.hash[..;]
                   3516:          added (related to feature #1057)
                   3517: 
                   3518:        * tests/: 286.html, results/286.processed: code tests coverage
                   3519: 
                   3520: 2016-07-29  moko
                   3521: 
                   3522:        * src/classes/table.C: table size should be checked inside menu and
                   3523:          foreach (related to feature #858)
                   3524: 
                   3525:        * src/: classes/curl.C, classes/file.C, classes/string.C,
                   3526:          classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
                   3527:          main/pa_common.C, main/pa_http.C, main/pa_sql_driver_manager.C,
                   3528:          types/pa_vmail.C, types/pa_vrequest.C, types/pa_vresponse.C:
                   3529:          charsets.get now does str_upper inside (related to feature #1061)
                   3530: 
                   3531:        * tests/: 342.html, results/342.processed: more code coverage tests
                   3532: 
                   3533:        * tests/: 342.html, outputs/342.processed: table menu code coverage
                   3534:          + foreach test added (related to feature #858)
                   3535: 
                   3536:        * tests/: 341.html, results/341.processed: tests for
                   3537:          ^table.hash[]{code} added + code coverage tests (related to
                   3538:          feature #1057)
                   3539: 
                   3540:        * src/: include/pa_common.h, classes/table.C: ^table.hash[]{code as
                   3541:          value} support (implements feature #1057)
                   3542: 
                   3543:        * src/classes/table.C: whitespace
                   3544: 
                   3545: 2016-07-28  moko
                   3546: 
                   3547:        * src/: classes/curl.C, types/pa_vfile.C: curl now saves filename
                   3548:          from URL, if not specified query string removed from url-based
                   3549:          filenames in ^curl:load[] and ^file::load[] (related to feature
                   3550:          #1042)
                   3551: 
                   3552: 2016-07-27  moko
                   3553: 
                   3554:        * tests/: 340.html, results/340.processed: test for
                   3555:          transcode_text_result=false added (related to issue #1042)
                   3556: 
                   3557: 2016-07-26  moko
                   3558: 
                   3559:        * src/types/pa_vfile.C: file name should not be empty (if file path
                   3560:          is folder and ends with /) (related to feature #1042)
                   3561: 
                   3562:        * src/main/pa_http.C: whitespace optimizaion
                   3563: 
                   3564:        * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
                   3565:          main/pa_common.C, main/pa_http.C: ^curl:load[] now support
                   3566:          multiple headers, ^file::load supports headers transcoding
                   3567:          (implements feature #1042)
                   3568: 
                   3569: 2016-07-25  moko
                   3570: 
                   3571:        * src/include/pa_common.h: PA_DEFAULT added
                   3572: 
                   3573: 2016-07-22  moko
                   3574: 
                   3575:        * tests/: 338.html, results/338.processed: test for
                   3576:          $date.field(value) added (related to feature #1066)
                   3577: 
                   3578:        * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
                   3579:          $date.field(value) now supported for y/m/d/h/m/s (implements
                   3580:          feature #1066)
                   3581: 
1.105     moko     3582: 2016-07-21  moko
                   3583: 
                   3584:        * src/: classes/file.C, classes/image.C, include/pa_common.h,
                   3585:          main/pa_common.C: pa_common.h: File_read_action: fname, as_text
                   3586:          arguments removed; image.C - absolute path shown in exception
                   3587:          (implements feature #1071)
                   3588: 
                   3589:        * tests/: 235.html, results/235.processed: test and test result
                   3590:          updated after static boundary in mail and Errors-To: mail header
                   3591:          removed (related to feature #1047)
                   3592: 
                   3593:        * src/: classes/math.C, include/pa_random.h, main/pa_http.C,
                   3594:          main/pa_random.C, types/pa_vmail.C: get_uuid_boundary() added and
                   3595:          used, static boundary in mail removed, Errors-To: mail header
                   3596:          removed (implements feature #1047)
                   3597: 
                   3598: 2016-07-20  moko
                   3599: 
                   3600:        * src/: classes/reflection.C, types/pa_vstateless_class.h:
                   3601:          equest.classes(): Value -> VStateless_class, part 3 (related to
                   3602:          issue #1051)
                   3603: 
                   3604:        * src/: classes/reflection.C, include/pa_request.h, main/execute.C:
                   3605:          request.classes(): Value -> VStateless_class, part 2 (related to
                   3606:          issue #1051)
                   3607: 
                   3608:        * tests/results/: 224.processed, 323.processed: classes without
                   3609:          methods should not be methoded (related to issue #1051)
                   3610: 
                   3611:        * src/: classes/reflection.C, include/pa_request.h, main/compile.y,
                   3612:          main/compile_tools.h, main/pa_request.C: request.classes(): Value
                   3613:          -> VStateless_class, part 1 (related to issue #1051)
                   3614: 
                   3615:        * tests/: 337.html, results/337.processed: test for
                   3616:          ^reflection:fields_reference[] and VHashReference class added
                   3617:          (related to feature #1072)
                   3618: 
                   3619:        * src/: classes/hash.C, classes/json.C, classes/reflection.C,
                   3620:          types/pa_value.h, types/pa_vhash.h, types/pa_vobject.h: VHashBase
                   3621:          and VHashReference added, allowing ^reflection:fields_reference[]
                   3622:          implementation (closes feature #1072)
                   3623: 
                   3624: 2016-07-19  moko
                   3625: 
                   3626:        * tests/: 323.html, results/323.processed: we want to see
                   3627:          "methoded"
                   3628: 
                   3629:        * tests/: 336.html, results/336.processed: test for $BASE:property
                   3630:          and ^BASE:method (OP_VALUE__GET_BASE_CLASS) added (related to bug
                   3631:          #1059)
                   3632: 
                   3633:        * src/: include/pa_opcode.h, main/compile.y, main/execute.C,
                   3634:          types/pa_vstateless_class.h, types/pa_wcontext.h: no more
                   3635:          somebody_entered_some_class, $BASE:property works again,
                   3636:          ^BASE:method[] bugs fixed (fixes bug #1059)
                   3637: 
                   3638: 2016-07-14  moko
                   3639: 
                   3640:        * tests/: 335.html, results/335.processed: test for feature #1055
                   3641:          added
                   3642: 
                   3643:        * src/classes/hash.C: bugfix: $._default was not copied if empty
                   3644:          feature: ^hash.contains[_default] added (implements feature
                   3645:          #1055)
                   3646: 
                   3647: 2016-07-13  moko
                   3648: 
                   3649:        * src/classes/reflection.C: bugfix: ^reflection:def[class;name]
                   3650:          should not call @autouse (http://www.parser.ru/forum/?id=83480)
                   3651: 
                   3652: 2016-07-05  moko
                   3653: 
                   3654:        * src/classes/hash.C: Optimization: HashStringValue::Iterator used
                   3655:          in ^hash.foreach (related to feature #1073)
                   3656: 
                   3657: 2016-07-04  moko
                   3658: 
                   3659:        * tests/: 134.html, 281.html, results/134.processed,
                   3660:          results/281.processed: tests updated after hash blocking removed
                   3661:          (related to feature #1073)
                   3662: 
                   3663:        * src/: classes/hash.C, include/pa_hash.h, types/pa_vhash.h: hash
                   3664:          no longer blocks on change during foreach (implements feature
                   3665:          #1073)
                   3666: 
                   3667: 2016-06-17  moko
                   3668: 
                   3669:        * tests/: 330.html, results/330.processed: try exception source
                   3670:          test added (related to bug in #1062)
                   3671: 
                   3672:        * tests/: 334.html, results/334.processed: Exception stack trace
                   3673:          test added (related to bug in $1062)
                   3674: 
                   3675:        * src/classes/op.C: Exception trace now correctly restored and
                   3676:          errors reported (related to bug #1062)
                   3677: 
1.104     moko     3678: 2016-05-25  moko
                   3679: 
                   3680:        * src/main/compile.y: minor cleanup + beauty
                   3681: 
                   3682: 2016-05-24  moko
                   3683: 
                   3684:        * tests/: 333.html, results/333.processed: more exceptions testing
                   3685: 
                   3686:        * tests/: 332.html, results/332.processed: test for FIELDS_SYMBOL,
                   3687:          _DEFAULT_SYMBOL, CALLER_SYMBOL, SELF_SYMBOL added (related to
                   3688:          features #1056, #1026)
                   3689: 
                   3690:        * src/: classes/json.C, include/pa_symbols.h, main/pa_symbols.C,
                   3691:          types/pa_vhash.C, types/pa_vhash.h, types/pa_vtable.C,
                   3692:          types/pa_vtable.h: FIELDS_SYMBOL, _DEFAULT_SYMBOL added and used
                   3693:          (implements feature #1056)
                   3694: 
                   3695:        * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
                   3696:          main/execute.C, main/pa_symbols.C, types/pa_vjunction.C,
                   3697:          types/pa_vstateless_class.C, types/pa_vstateless_class.h:
                   3698:          CLASS_SYMBOL, CLASS_NAME_SYMBOL added and used (related to
                   3699:          feature #1026)
                   3700: 
                   3701:        * src/: classes/reflection.C, include/pa_symbols.h, main/compile.y,
                   3702:          main/compile_tools.C, main/compile_tools.h, main/pa_symbols.C,
                   3703:          types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: Symbols now
                   3704:          have *_SYMBOL naming convention. STATIC_SYMBOL, DYNAMIC_SYMBOL,
                   3705:          LOCALS_SYMBOL, PARTIAL_SYMBOL, REM_SYMBOL where added (related to
                   3706:          feature #1026)
                   3707: 
                   3708:        * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
                   3709:          main/pa_globals.C, main/pa_symbols.C, types/pa_vmethod_frame.C,
                   3710:          types/pa_vmethod_frame.h, types/pa_vstateless_class.C:
                   3711:          SYMBOLS_CACHING define implemented (related to feature #1026)
                   3712: 
                   3713:        * src/main/main.vcproj: + ps_symbols
                   3714: 
                   3715:        * src/: include/Makefile.am, include/pa_string.h,
                   3716:          include/pa_symbols.h, main/Makefile.am, main/compile.tab.C,
                   3717:          main/compile.y, main/compile_tools.C, main/pa_symbols.C,
                   3718:          types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
                   3719:          types/pa_vstateless_class.C: initial implementation for symbols
                   3720:          cache (related to feature #1026)
                   3721: 
                   3722:        * src/: include/pa_common.h, main/pa_http.C: minor cleanup
                   3723: 
                   3724:        * src/main/pa_globals.C: minor cleanup
                   3725: 
                   3726: 2016-05-19  moko
                   3727: 
                   3728:        * src/types/pa_vhash.h: minor optimization: ^hash.fields[] removed
                   3729:          (related to feature #1046)
                   3730: 
                   3731:        * tests/: 331.html, results/331.processed: test for
                   3732:          BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE removal added
                   3733:          (related to feature #1051)
                   3734: 
                   3735:        * src/main/compile.y:
                   3736:          BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE error removed
                   3737:          (implements feature #1054)
                   3738: 
                   3739: 2016-05-18  moko
                   3740: 
                   3741:        * src/types/pa_vtable.C, tests/results/324.processed: no more
                   3742:          "column not found" exception for ^table.no-such-method[] (related
                   3743:          to feature #1046)
                   3744: 
                   3745:        * tests/: 261.html, results/261.processed: test added and updated
                   3746:          after feature #1046 implementation
                   3747: 
                   3748:        * src/: classes/string.C, types/pa_value.C, types/pa_vstring.h,
                   3749:          types/pa_vvoid.h: $string.anything works for whitespace strings,
                   3750:          ^string.contains added for hash compatibility, $string.method no
                   3751:          longer returns stting method (implements feature #1046)
                   3752: 
                   3753: 2016-05-12  moko
                   3754: 
                   3755:        * src/classes/curl.C: content-type response header no longer
                   3756:          ignored (fixes issue #1045)
                   3757: 
                   3758:        * tests/: 330.html, results/330.processed: test for incomplete
                   3759:          finally execution when break occures added (related to issue
                   3760:          #1077)
                   3761: 
                   3762:        * src/classes/op.C: bugfix: Request::skip reset is called before
                   3763:          executing catch and finally code (fixes issue #1062)
                   3764: 
                   3765: 2016-05-11  moko
                   3766: 
                   3767:        * tests/: 329.html, results/329.processed: test for invalid
                   3768:          ^break[] behavour added (bug #1077)
                   3769: 
                   3770:        * src/classes/op.C: try_catch code cleanup (related to bug #1062)
                   3771: 
                   3772: 2016-04-24  moko
                   3773: 
                   3774:        * src/types/pa_vstateless_class.h: warning war
                   3775: 
                   3776: 2016-04-17  moko
                   3777: 
                   3778:        * tests/: 328.html, results/328.processed: test for
                   3779:          ^break(condition) and ^continue(condition) (related to feature
                   3780:          #1063)
                   3781: 
                   3782:        * src/classes/op.C: ^break(condition) and ^continue(condition)
                   3783:          implemented (feature #1063)
                   3784: 
                   3785: 2016-04-12  moko
                   3786: 
                   3787:        * tests/results/280.processed: ordered hash now used for class
                   3788:          methods and properties (test results updated for feature #1069)
                   3789: 
                   3790:        * src/classes/: xdoc.C, xnode.C: xnode_class initialization moved
                   3791:          to xdoc.C as under FreeBSD it was inited after and inheritance
                   3792:          failed (related to issue #1051)
                   3793: 
                   3794:        * tests/: 320.html, results/320.processed: xdoc and xnode methods
                   3795:          are printed to check inheritance (related to feature #1051)
                   3796: 
1.103     moko     3797: 2016-04-09  moko
                   3798: 
                   3799:        * tests/results/320.processed: ordered hash now used for class
                   3800:          methods and properties (test results updated for feature #1069)
                   3801: 
                   3802:        * src/types/pa_vstateless_class.h: ordered hash now used for class
                   3803:          methods and properties (implements feature #1069)
                   3804: 
                   3805:        * src/types/: pa_vconsole.h, pa_vcookie.C, pa_venv.C,
                   3806:          pa_vrequest.C, pa_vstatus.C: minor optimization: #ifndef
                   3807:          OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL returned (related to
                   3808:          feature #1051)
                   3809: 
                   3810: 2016-04-07  moko
                   3811: 
                   3812:        * src/main/execute.C: returned Value in .CLASS case for VJunction
                   3813:          (related to feature #1051)
                   3814: 
                   3815:        * src/types/: pa_vjunction.C, pa_vmethod_frame.C,
                   3816:          pa_vmethod_frame.h, pa_vstateless_class.C, pa_vstateless_class.h:
                   3817:          string constants deduplication (related to feature #1051)
                   3818: 
                   3819:        * tests/results/224.processed: test result updated (related to
                   3820:          feature #1051)
                   3821: 
                   3822:        * src/: main/execute.C, types/pa_vconsole.h, types/pa_vcookie.C,
                   3823:          types/pa_vcookie.h, types/pa_venv.C, types/pa_venv.h,
                   3824:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vstatus.C,
                   3825:          types/pa_vstatus.h: classes hash now contains only
                   3826:          VStateless_class derived objects, .CLASS is also allways
                   3827:          VStateless_class derived object (related to feature #1051).
                   3828: 
                   3829: 2016-04-06  moko
                   3830: 
                   3831:        * tests/results/323.processed: test result updated after feature
                   3832:          #1051 implementation
                   3833: 
                   3834:        * src/: classes/classes.h, classes/op.C, classes/response.C,
                   3835:          classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   3836:          main/pa_request.C, types/pa_vclass.h, types/pa_vform.C,
                   3837:          types/pa_vmail.C, types/pa_vmath.C, types/pa_vmemory.h,
                   3838:          types/pa_vresponse.C, types/pa_vresponse.h,
                   3839:          types/pa_vstateless_class.h: base -> methoded_donor for static
                   3840:          classes, type() moved from VStateless_class to VClass and
                   3841:          Methoded (implements feature #1051)
                   3842: 
                   3843: 2016-04-04  moko
                   3844: 
                   3845:        * src/: classes/classes.C, include/pa_request.h, main/pa_request.C:
                   3846:          beauty: put_class added (related to feature #1051)
                   3847: 
                   3848: 2016-04-01  moko
                   3849: 
                   3850:        * tests/results/: 175.processed, 192.processed, 224.processed,
                   3851:          229.processed, 244.processed, 246.processed, 316.processed: test
                   3852:          results updated as class.type() removed from error messages, only
                   3853:          type() left (related to feature #1051)
                   3854: 
                   3855:        * src/: classes/classes.C, classes/classes.h, classes/mail.C,
                   3856:          classes/op.C, classes/reflection.C, main/compile.y,
                   3857:          main/compile_tools.h, main/execute.C, main/pa_request.C,
                   3858:          types/pa_value.C, types/pa_vclass.C, types/pa_vclass.h,
                   3859:          types/pa_vmethod_frame.h, types/pa_vobject.h,
                   3860:          types/pa_vstateless_class.h, types/pa_wcontext.C: name() removed
                   3861:          from VStateless_class, type() is used instead (related to feature
                   3862:          #1051)
                   3863: 
                   3864:        * src/classes/mail.C: old logic restored.
                   3865: 
                   3866:        * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
                   3867:          classes/classes.h, classes/curl.C, classes/date.C,
                   3868:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   3869:          classes/hashfile.C, classes/image.C, classes/inet.C,
                   3870:          classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
                   3871:          classes/memcached.C, classes/memory.C, classes/reflection.C,
                   3872:          classes/regex.C, classes/response.C, classes/string.C,
                   3873:          classes/table.C, classes/xdoc.C, classes/xnode.C,
                   3874:          types/pa_vform.C, types/pa_vmail.C, types/pa_vmath.C,
                   3875:          types/pa_vmemory.h: optimizaion: *_base_class removed (related to
                   3876:          feature #1051)
                   3877: 
                   3878: 2016-03-30  moko
                   3879: 
                   3880:        * tests/: 327.html, results/224.processed, results/327.processed:
                   3881:          test for TZ specification in ^date::create[], TZ is kept during
                   3882:          ^date::create[$dt] (related to feature #1048)
                   3883: 
                   3884:        * src/: classes/date.C, types/pa_vdate.h: TZ can be specified in
                   3885:          ^date::create[], TZ is kept during ^date::create[$dt] (implements
                   3886:          feature #1048)
                   3887: 
                   3888: 2016-03-29  moko
                   3889: 
                   3890:        * tests/: 315.html, results/315.processed: test for timezone format
                   3891:          +HHmm added (related to feature #1065)
                   3892: 
                   3893:        * src/classes/date.C: timezone format +HHmm now supported
                   3894:          (implements feature #1065)
                   3895: 
                   3896: 2016-03-28  moko
                   3897: 
                   3898:        * tests/: 202.html, results/131.processed, results/202.processed,
                   3899:          results/224.processed, results/256.processed,
                   3900:          results/315.processed: test results updated after %.2d now
                   3901:          default for hours offset in iso-string (was %2d), test for
                   3902:          ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
                   3903:          added (related to feature #1065)
                   3904: 
                   3905: 2016-03-27  moko
                   3906: 
                   3907:        * src/types/pa_vdate.C: '+' sign for zero offset (related to
                   3908:          feature #1065)
                   3909: 
                   3910:        * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
                   3911:          ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
                   3912:          added (implements feature #1065)
                   3913: 
                   3914: 2016-03-24  moko
                   3915: 
                   3916:        * tests/: 202.html, results/202.processed: test $date.week added
                   3917:          (related to bug #1067)
                   3918: 
                   3919:        * src/types/: pa_vdate.C, pa_vdate.h: fix for $date.week changed
                   3920:          date (fix for bug #1067)
                   3921: 
                   3922: 2016-03-10  moko
                   3923: 
                   3924:        * configure.ac, src/include/pa_version.h: 3.4.4 -> 3.4.5b
                   3925: 
1.102     moko     3926: 2015-12-07  moko
                   3927: 
                   3928:        * tests/: 326.html, results/326.processed: test for .CLASS &
                   3929:          .CLASS_NAME optimization added (related to feature #844)
                   3930: 
                   3931: 2015-11-17  moko
                   3932: 
                   3933:        * tests/: 323.html, results/323.processed: order added
                   3934: 
                   3935:        * tests/: 325.html, results/325.processed: double range test added
                   3936:          (related to bug #1049)
                   3937: 
                   3938: 2015-11-16  moko
                   3939: 
                   3940:        * src/: classes/string.C, types/pa_vdouble.h: finite(double) check
                   3941:          added to disallow NaN and Infinity (fixes bug #1049)
                   3942: 
                   3943: 2015-11-11  moko
                   3944: 
                   3945:        * tests/324.html: parser 3.4.3 execution support added (related to
                   3946:          feature #1017)
                   3947: 
                   3948:        * tests/: 324.html, results/324.processed: test for
                   3949:          GET_ELEMENT4CALL feature added (feature #1017)
                   3950: 
1.101     moko     3951: 2015-10-29  moko
                   3952: 
                   3953:        * operators.txt: updated for 3.4.4
                   3954: 
                   3955:        * configure.ac, src/include/pa_version.h: 3.4.4rc -> 3.4.4
                   3956: 
                   3957:        * src/main/pa_exec.C: get_exit_status implemented for Windows
                   3958:          (related to bug #1043)
                   3959: 
                   3960: 2015-10-28  moko
                   3961: 
                   3962:        * src/main/pa_exec.C: Windows bugfix: $.stdin[] no longer cause
                   3963:          hangup during ^file::exec (fixes bug #1043)
                   3964: 
1.100     moko     3965: 2015-10-27  moko
                   3966: 
                   3967:        * src/main/pa_memory.C: pa_fail_alloc added for GC_abort in Windows
                   3968: 
1.99      moko     3969: 2015-10-26  moko
                   3970: 
1.100     moko     3971:        * tests/322.html, src/classes/reflection.C: arguments reorder
                   3972:          (related to issue #1041)
                   3973: 
                   3974:        * src/: classes/classes.awk, main/helpers/simple_folding.pl:
                   3975:          Copyright year updated
                   3976: 
1.99      moko     3977:        * src/: classes/bool.C, classes/classes.C, classes/classes.h,
                   3978:          classes/curl.C, classes/date.C, classes/double.C, classes/file.C,
                   3979:          classes/form.C, classes/hash.C, classes/hashfile.C,
                   3980:          classes/image.C, classes/inet.C, classes/int.C, classes/json.C,
                   3981:          classes/mail.C, classes/math.C, classes/memcached.C,
                   3982:          classes/memory.C, classes/op.C, classes/reflection.C,
                   3983:          classes/regex.C, classes/response.C, classes/string.C,
                   3984:          classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
                   3985:          classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
                   3986:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   3987:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   3988:          include/pa_dictionary.h, include/pa_dir.h,
                   3989:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   3990:          include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
                   3991:          include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
                   3992:          include/pa_pool.h, include/pa_random.h, include/pa_request.h,
                   3993:          include/pa_request_charsets.h, include/pa_request_info.h,
                   3994:          include/pa_sapi.h, include/pa_socks.h,
                   3995:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   3996:          include/pa_stack.h, include/pa_string.h,
                   3997:          include/pa_stylesheet_connection.h,
                   3998:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   3999:          include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
                   4000:          include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
                   4001:          lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
                   4002:          lib/md5/pa_md5c.c, lib/memcached/pa_memcached.C,
                   4003:          lib/memcached/pa_memcached.h, lib/sdbm/pa_file_io.C,
                   4004:          lib/sdbm/pa_strings.C, lib/smtp/comms.C, lib/smtp/smtp.C,
                   4005:          lib/smtp/smtp.h, main/compile.C, main/compile.tab.C,
                   4006:          main/compile.y, main/compile_tools.C, main/compile_tools.h,
                   4007:          main/execute.C, main/pa_cache_managers.C, main/pa_charset.C,
                   4008:          main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
                   4009:          main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
                   4010:          main/pa_globals.C, main/pa_http.C, main/pa_memory.C,
                   4011:          main/pa_os.C, main/pa_pool.C, main/pa_random.C,
                   4012:          main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
                   4013:          main/pa_string.C, main/pa_stylesheet_connection.C,
                   4014:          main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
                   4015:          main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
                   4016:          sql/pa_sql_driver.h, targets/apache/mod_parser3.c,
                   4017:          targets/apache/mod_parser3_core.C, targets/apache/pa_httpd.h,
                   4018:          targets/apache/pa_threads.C, targets/cgi/pa_threads.C,
                   4019:          targets/cgi/parser3.C, targets/isapi/pa_threads.C,
                   4020:          targets/isapi/parser3isapi.C, types/pa_junction.h,
                   4021:          types/pa_method.h, types/pa_property.h, types/pa_value.C,
                   4022:          types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
                   4023:          types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
                   4024:          types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.C,
                   4025:          types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
                   4026:          types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
                   4027:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
                   4028:          types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
                   4029:          types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
                   4030:          types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
                   4031:          types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
                   4032:          types/pa_vmemcached.C, types/pa_vmemcached.h, types/pa_vmemory.h,
                   4033:          types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
                   4034:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
                   4035:          types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
                   4036:          types/pa_vresponse.C, types/pa_vresponse.h,
                   4037:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   4038:          types/pa_vstateless_object.h, types/pa_vstatus.C,
                   4039:          types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
                   4040:          types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
                   4041:          types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   4042:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
                   4043:          types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
                   4044: 
                   4045:        * src/targets/cgi/parser3.C: year updated
                   4046: 
                   4047:        * src/classes/reflection.C: VS2003 compatibility fixed (related to
                   4048:          issue #1041)
                   4049: 
                   4050:        * tests/: 323.html, results/323.processed: test for base classes
                   4051:          added
                   4052: 
                   4053:        * tests/: 261.html, results/261.processed: updated after better
                   4054:          error reporting done for $string.key exception
                   4055: 
                   4056:        * src/types/pa_vstring.h: better error report for $string.key
                   4057:          exception
                   4058: 
                   4059:        * src/types/: pa_vobject.C, pa_vobject.h: VObject::get_element
                   4060:          copied as VObject::get_element4call to remove extra virtual call
                   4061: 
                   4062:        * tests/: 322.html, results/322.processed: test for
                   4063:          ^reflection:is[] added (related to feature #1041)
                   4064: 
                   4065:        * src/classes/reflection.C: ^reflection:is empty value is void
                   4066:          (related to feature #1041)
                   4067: 
                   4068:        * src/classes/reflection.C:
                   4069:          ^reflection:is[class_name|code|method;[context;]element_name]
                   4070:          added (implements feature #1041)
                   4071: 
                   4072: 2015-10-24  moko
                   4073: 
                   4074:        * configure.ac, src/include/pa_version.h: 3.4.4b -> 3.4.4rc
                   4075: 
1.98      moko     4076: 2015-10-22  moko
                   4077: 
                   4078:        * tests/: 321.html, results/321.processed: test for
                   4079:          ^reflection:method_info[] file detection added
                   4080: 
                   4081:        * tests/: 320.html, results/320.processed: test for
                   4082:          ^reflection:class_by_name[class_name] added (related to feature
                   4083:          #993)
                   4084: 
                   4085:        * src/classes/reflection.C: ^reflection:class_by_name[class_name]
                   4086:          added (implements feature #993)
                   4087: 
                   4088:        * src/main/execute.C: GET_ELEMENT4CALL added to get_method_filename
                   4089:          (related to feature #1017)
                   4090: 
                   4091:        * tests/: 319.html, results/319.processed: ^throw[] stacktrace test
                   4092:          added (related to issue #1039)
                   4093: 
                   4094:        * src/main/pa_request.C: ^throw origin fixed (related to feature
                   4095:          #1039)
                   4096: 
                   4097:        * src/types/pa_vcookie.C: bugfix: expires_sec should not be called
                   4098:          for VDate
                   4099: 
                   4100:        * tests/results/182.processed: updated after feature #1038
                   4101:          implemented
                   4102: 
                   4103:        * tests/: 318.html, 182_dir/a6.p, results/318.processed: test for
                   4104:          compile-time exception origin added (test for feature #1039)
                   4105: 
                   4106:        * src/: include/pa_request.h, main/compile.C, main/compile.y,
                   4107:          main/pa_request.C: exception unification: compile-time exceptions
                   4108:          now have origin, @USE origins also tracked (implements feature
                   4109:          #1039)
                   4110: 
                   4111: 2015-10-20  moko
                   4112: 
                   4113:        * src/main/pa_request.C: cleanup
                   4114: 
                   4115: 2015-10-15  moko
                   4116: 
                   4117:        * src/types/pa_vtable.C: defines fixed (related to feature #1017)
                   4118: 
                   4119:        * src/: classes/hash.C, include/pa_opcode.h, types/pa_vhash.h,
                   4120:          types/pa_vtable.C: new feature: no more $table.method and
                   4121:          $hash.method, aliases for _at, _count, _key (related to feature
                   4122:          #1017)
                   4123: 
1.97      moko     4124: 2015-10-14  moko
                   4125: 
1.98      moko     4126:        * tests/: 317.html, results/317.processed: test for
                   4127:          ^string.unescape[] added (related to feature #120)
                   4128: 
1.97      moko     4129:        * buildall: reverted libxml 2.9.2 -> 2.9.1 due to "ID already
                   4130:          defined" bug (described in issue #1036)
                   4131: 
                   4132:        * tests/: 247.html, results/247.processed: test for checkBOM added
                   4133:          (test for bug #1037)
                   4134: 
                   4135:        * src/: include/pa_charsets.h, main/pa_charsets.C,
                   4136:          main/pa_common.C, main/pa_http.C: checkBOM detects charset if
                   4137:          it's not enforced, skips BOM signature if it complies charset
                   4138:          (fixes bug #1037)
                   4139: 
                   4140: 2015-10-13  moko
                   4141: 
                   4142:        * src/targets/cgi/parser3.vcproj: disabling buggy incremental
                   4143:          linking
                   4144: 
                   4145:        * src/classes/inet.C: vs2003 compilation fix
                   4146: 
                   4147:        * src/classes/math.C: warning war
                   4148: 
                   4149:        * src/lib/punycode/pa_punycode.c: warning war
                   4150: 
                   4151: 2015-10-12  moko
                   4152: 
                   4153:        * src/lib/punycode/pa_punycode.c: warning war
                   4154: 
                   4155:        * parser3.sln: moved parser3 first, to make it default startup
                   4156:          project
                   4157: 
                   4158:        * buildall: parser "mirror" now used for external libs sources
                   4159:          (implements feature #1036)
                   4160: 
                   4161:        * buildall: most external libs are updated to their current
                   4162:          versions (related to feature #1036)
                   4163: 
                   4164:        * src/classes/image.C: more tags added
                   4165: 
                   4166:        * src/: include/pa_memory.h, types/pa_vdate.C: warning war
                   4167: 
                   4168: 2015-10-11  moko
                   4169: 
                   4170:        * src/classes/curl.C: minor optimization (related to feature #1035)
                   4171: 
                   4172: 2015-10-09  moko
                   4173: 
                   4174:        * src/classes/curl.C: pa_strdup added for strings from curl
                   4175:          (related to feature #1035)
                   4176: 
                   4177:        * src/main/pa_string.C: mini fix: RedHat 7.2 does not have
                   4178:          ULLONG_MAX definition
                   4179: 
                   4180:        * src/classes/curl.C: ^curl:info[name]/^curl:info[] added
                   4181:          (implements feature #1035)
                   4182: 
                   4183:        * src/main/pa_charset.C: String::Body(String::C) used
                   4184: 
                   4185:        * src/main/pa_charset.C: exceptions unified
                   4186: 
                   4187:        * src/: include/pa_charset.h, main/pa_charset.C: declarations
                   4188:          unified
                   4189: 
                   4190:        * src/: classes/file.C, classes/image.C, classes/mail.C,
                   4191:          classes/op.C, classes/xdoc.C, classes/xnode.C,
                   4192:          include/pa_string.h, main/pa_request.C, main/pa_string.C,
                   4193:          types/pa_vimage.C, types/pa_vmath.C, types/pa_vstatus.C,
                   4194:          types/pa_vxdoc.C: explicit String::Body(char) calls removed;
                   4195:          String::Body(String::C) constructor added (related to bug #957)
                   4196: 
                   4197:        * src/classes/file.C: minor optimization
                   4198: 
                   4199:        * src/include/pa_hash.h: hash.get(char*) added, to minimize
                   4200:          Cord(char*) autocreation (related to bug #957)
                   4201: 
                   4202:        * src/: classes/string.C, main/untaint.C: minor optimizations
                   4203: 
                   4204:        * src/: classes/json.C, classes/reflection.C, include/pa_string.h:
                   4205:          String(char*, Lang, length) removed, String(C(), Lang) used
                   4206:          instead (related to bug #957)
                   4207: 
                   4208: 2015-10-08  moko
                   4209: 
                   4210:        * src/: classes/file.C, include/pa_string.h, lib/cord/cordbscs.c,
                   4211:          lib/cord/include/cord.h, main/pa_http.C, main/pa_string.C,
                   4212:          main/untaint.C: Now char * is converted to CORD only using
                   4213:          AS_CORD() to check for empty cord bug (fixes bug #957)
                   4214: 
                   4215:        * src/include/pa_hash.h: fixed compilation without
                   4216:          HASH_CODE_CACHING
                   4217: 
                   4218:        * src/classes/string.C:
                   4219:          ^string:unescape[js|uri;escaped;$.charset[...]] added (implements
                   4220:          feature #120)
                   4221: 
                   4222:        * src/main/pa_common.C: reduce js flags checks count (related to
                   4223:          feature #120)
                   4224: 
1.96      moko     4225: 2015-10-07  moko
                   4226: 
                   4227:        * tests/: 275.html, results/275.processed: test modified after
                   4228:          unsigned long long int support implemented (feature #1034)
                   4229: 
                   4230:        * src/: classes/math.C, include/pa_string.h, main/pa_string.C:
                   4231:          pa_atoul added for unsigned long long int support
                   4232: 
                   4233: 2015-10-06  moko
                   4234: 
                   4235:        * src/types/pa_vdate.C: INT_MAX used
                   4236: 
                   4237: 2015-10-03  moko
                   4238: 
                   4239:        * tests/: 302.html, results/302.processed: test for bug #1023
                   4240:          (\u2028, \u2029 escaping) added
                   4241: 
                   4242:        * src/main/untaint.C: \u2028, \u2029 are now escaped in
                   4243:          json:string[] (fixes bug #1023)
                   4244: 
                   4245: 2015-09-29  moko
                   4246: 
                   4247:        * tests/305.html: try-catch added for OS without ipv6 support
                   4248: 
                   4249:        * src/lib/json/pa_json.C: more unique prefixes for Solaris
                   4250:          compilation
                   4251: 
                   4252:        * src/: include/pa_opcode.h, include/pa_request.h, main/compile.y,
                   4253:          main/execute.C, types/pa_value.h, types/pa_vhash.h,
                   4254:          types/pa_vtable.C, types/pa_vtable.h: get_element4call
                   4255:          implemented to distinguish ^hash.method from $hash.field
                   4256:          (implements feature #1017)
                   4257: 
                   4258:        * src/lib/punycode/pa_punycode.c: warning war
                   4259: 
                   4260:        * src/include/pa_config_includes.h: warning war
                   4261: 
                   4262:        * src/include/pa_config_includes.h: pragma warning actualized a bit
                   4263: 
                   4264:        * src/include/pa_config_includes.h: warning war
                   4265: 
                   4266:        * src/include/pa_hash.h: clang compilation fix
                   4267: 
                   4268: 2015-09-27  moko
                   4269: 
                   4270:        * src/main/compile.tab.C: Bison 3 is now default
                   4271: 
                   4272:        * src/main/: compile.C, compile.y: Bison 3 compatibility fixed
                   4273: 
                   4274: 2015-09-25  moko
                   4275: 
                   4276:        * src/: classes/hash.C, include/pa_hash.h: parser now compiles and
                   4277:          works with undefined HASH_ORDER (related to feature #196)
                   4278: 
                   4279: 2015-09-24  moko
                   4280: 
                   4281:        * tests/: 027.html, results/027.processed: test modified to test
                   4282:          ^hash.sort (feature #196)
                   4283: 
                   4284:        * src/: classes/hash.C, include/pa_hash.h:
                   4285:          ^hash.sort[key;value]{string-key-maker}|(numeric-key-maker)[[asc|desc]]
                   4286:          added (implements feature #196)
                   4287: 
                   4288:        * tests/: 316.html, results/316.processed: Added test for bug #1025
                   4289:          (exception handling in non-cached ^cache), plus for "it does not
                   4290:          have logical value" and "$exception.handled value must be either
                   4291:          boolean or string 'cache'" exceptions.
                   4292: 
                   4293:        * src/classes/op.C: ^cache: exceptions now handled in non-cached
                   4294:          code (fixes bug #1025)
                   4295: 
1.95      moko     4296: 2015-09-23  moko
                   4297: 
                   4298:        * src/classes/table.C: warning war
                   4299: 
                   4300:        * src/: classes/math.C, types/pa_vcookie.C: warning war
                   4301: 
                   4302:        * src/classes/file.C: warning war
                   4303: 
                   4304:        * src/: include/pa_table.h, main/pa_table.C: warning war
                   4305: 
                   4306:        * src/: main/pa_request.C, classes/date.C: warning war
                   4307: 
                   4308:        * src/: types/pa_vdate.C, classes/op.C: warning war
                   4309: 
                   4310:        * tests/: 122.html, results/122.processed: win sync: to remove
                   4311:          differences with OS that doesn't keep timezone change history
                   4312: 
                   4313:        * src/types/pa_vdate.C: tzset() should be called in Windows after
                   4314:          TZ change (related to feature #36)
                   4315: 
                   4316:        * tests/: 075.html, results/075.processed: win sync: to remove
                   4317:          differences with OS that doesn't keep timezone change history
                   4318: 
                   4319:        * tests/: 315.html, results/315.processed: win sync: to remove
                   4320:          differences with OS that doesn't keep timezone change history
                   4321: 
                   4322:        * tests/: 256.html, results/256.processed: win sync: to remove
                   4323:          differences with OS that doesn't keep timezone change history
                   4324: 
                   4325:        * tests/: 124.html, results/124.processed: win results sync: to
                   4326:          avoid hitting time change hole.
                   4327: 
                   4328:        * src/types/pa_vdate.C: static returned. :)
                   4329: 
                   4330: 2015-09-22  moko
                   4331: 
                   4332:        * src/types/pa_vdate.C: FreeBSD 10 GPF fix (related to feature #36)
                   4333: 
                   4334:        * tests/results/131.processed: more tests for feature #1032
                   4335: 
                   4336:        * src/classes/date.C: minor fix related to feature #1032
                   4337: 
                   4338:        * operators.txt: ISO date creation documented (related to feature
                   4339:          #1032)
                   4340: 
                   4341:        * operators.txt: iso-string documented (related to feature #1032)
                   4342: 
                   4343:        * tests/: 315.html, results/315.processed: more tests added
                   4344:          (related to feature #1032)
                   4345: 
                   4346:        * tests/: 131.html, results/131.processed: date range checks
                   4347:          updated (related to feature #36)
                   4348: 
                   4349:        * tests/: 315.html, results/057.processed, results/315.processed:
                   4350:          test added for ISO date support (related to issue #315)
                   4351: 
                   4352:        * src/classes/date.C: more readable exceptions in date creation
                   4353:          (related to ticket #1032)
                   4354: 
                   4355: 2015-09-18  moko
                   4356: 
                   4357:        * tests/: 202.html, results/202.processed: ^date.iso-string[] check
                   4358:          added (related to issue #1032)
                   4359: 
                   4360:        * tests/results/256.processed, src/classes/json.C: iso-string
                   4361:          documented (related to issue #1032)
                   4362: 
                   4363:        * tests/: 256.html, results/256.processed: ISO date check added
                   4364:          (related to issue #1032)
                   4365: 
                   4366:        * tests/: 057.html, results/057.processed, results/224.processed:
                   4367:          tests results updated after ISO date support implemented (related
                   4368:          to feature #1032)
                   4369: 
                   4370:        * src/: classes/date.C, classes/image.C, types/pa_value.h,
                   4371:          types/pa_vdate.C, types/pa_vdate.h: ISO 8601 dates support added,
                   4372:          ^date::create[string] constructor formalized, ^date.iso-string[]
                   4373:          added (implements feature #1032)
                   4374: 
                   4375: 2015-09-05  moko
                   4376: 
                   4377:        * operators.txt: actualized
                   4378: 
                   4379:        * operators.txt: date changes documented (related to ticket #36)
                   4380: 
                   4381: 2015-09-04  moko
                   4382: 
                   4383:        * src/types/pa_vdate.C: warning war
                   4384: 
                   4385:        * src/: classes/op.C, types/pa_vhashfile.C: warning war
                   4386: 
                   4387: 2015-09-03  moko
                   4388: 
                   4389:        * tests/results/096.processed: test result updated for 0..9999 year
                   4390:          date range support (related to feature #36)
                   4391: 
                   4392:        * tests/: 314.html, results/314.processed: test for
                   4393:          ^string:base64[], ^string:idna[], ^string:js-escape[] (related to
                   4394:          bug #1031)
                   4395: 
                   4396:        * src/classes/string.C: Static calls fixed for ^string:base64[],
                   4397:          ^string:idna[], ^string:js-escape[] (closes bug #1031)
                   4398: 
1.116     moko     4399:        * Makefile.am, acsite.m4, configure.ac, configure.in: Warning war:
                   4400:          configure.in -> configure.ac
1.95      moko     4401: 
1.116     moko     4402:        * configure, configure.in, src/include/pa_config_auto.h.in: more
                   4403:          correct timezone check for FreeBSD Warning war: configure.in ->
                   4404:          configure.ac
1.95      moko     4405: 
                   4406:        * configure, configure.in, src/classes/Makefile.am,
1.116     moko     4407:          src/include/pa_config_auto.h.in, src/lib/cord/Makefile.am,
                   4408:          src/lib/gd/Makefile.am, src/lib/json/Makefile.am,
                   4409:          src/lib/memcached/Makefile.am, src/lib/pcre/Makefile.am,
                   4410:          src/lib/sdbm/Makefile.am, src/lib/smtp/Makefile.am,
                   4411:          src/main/Makefile.am, src/targets/apache/Makefile.am,
                   4412:          src/targets/cgi/Makefile.am, src/types/Makefile.am: INCLUDES ->
1.95      moko     4413:          AM_CPPFLAGS (warning war) PA_DATE64 (0..9999 year date range)
                   4414:          check added
                   4415: 
                   4416:        * src/types/pa_vdate.C: FreeBSD fixes + more robust code
                   4417: 
                   4418:        * tests/results/: 124.processed, 224.processed: test resuls updated
                   4419:          for new date implementation (related to feature #36)
                   4420: 
                   4421:        * src/: classes/date.C, classes/image.C, include/pa_common.h,
                   4422:          main/pa_common.C, types/pa_value.C, types/pa_vdate.C,
                   4423:          types/pa_vdate.h: new double date implementation with internal
                   4424:          support for extended 0..9999 year range, default timezone support
                   4425:          (related to feature #36)
                   4426: 
                   4427: 2015-08-28  moko
                   4428: 
                   4429:        * src/types/pa_vmail.C: fixed $mail:received.date calculations
                   4430:          (fixes bug #1030)
                   4431: 
                   4432: 2015-08-21  moko
                   4433: 
                   4434:        * src/classes/inet.C: snprintf size "bug" commented
                   4435: 
                   4436:        * src/main/pa_common.C: snprintf comments updated
                   4437: 
                   4438: 2015-08-16  moko
                   4439: 
                   4440:        * src/types/: pa_vdate.C, pa_vdate.h: logic moved to pa_vdate.C
                   4441: 
                   4442: 2015-08-11  moko
                   4443: 
                   4444:        * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
                   4445:          types/pa_vclass.C, types/pa_vobject.C: hash_json_string argument
                   4446:          can be null (fixes bug #1029)
                   4447: 
                   4448: 2015-08-06  moko
                   4449: 
1.116     moko     4450:        * src/types/: Makefile.am, pa_vdate.C, pa_vdate.h, types.vcproj:
                   4451:          pa_vdate.C added
1.95      moko     4452: 
                   4453: 2015-08-05  moko
                   4454: 
                   4455:        * tests/: 313.html, results/313.processed: test for
                   4456:          ^table.count[columns] and ^table.flip[] with nameless tables
                   4457:          (feature #1003)
                   4458: 
                   4459:        * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
                   4460:          max_cell added, now ^table.count[columns] and ^table.flip[] works
                   4461:          correctly for nameless tables (implements feature #1003)
                   4462: 
                   4463: 2015-08-03  moko
                   4464: 
                   4465:        * tests/312.html: test for ^table.append[$hash] and
                   4466:          ^table.insert[$hash] added (related to feature #1028)
                   4467: 
                   4468:        * src/classes/table.C: ^table.append[$hash] and
                   4469:          ^table.insert[$hash] now supported (implements feature #1028)
                   4470: 
                   4471:        * tests/: 312.html, results/312.processed: test row copy in
                   4472:          ^table.hash[; $.type[table] ] added (related to feature #1016)
                   4473: 
                   4474:        * src/classes/table.C: row copy now created in ^table.hash[;
                   4475:          $.type[table] ] (related to feature #1016)
                   4476: 
                   4477: 2015-07-29  moko
                   4478: 
                   4479:        * tests/: 312.html, results/312.processed: test for ^table.delete[]
                   4480:          added (related to feature #1016)
                   4481: 
                   4482:        * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
                   4483:          ^table.delete[] added to delete current row (related to feature
                   4484:          1016)
                   4485: 
                   4486: 2015-07-28  moko
                   4487: 
                   4488:        * tests/: 312.html, results/312.processed: test for
                   4489:          $table.column[value] and ^table.insert{row} (related to feature
                   4490:          #1016)
                   4491: 
                   4492:        * src/: classes/table.C, include/pa_table.h, main/pa_table.C,
                   4493:          types/pa_vtable.C, types/pa_vtable.h: $table.column[value] and
                   4494:          ^table.insert{row} are now implemented (feature #1016)
                   4495: 
                   4496:        * src/include/pa_array.h: Optimization: bool reverse removed from
                   4497:          append(), insert() added, memmove arguments order in remove()
                   4498:          fixed (related to feature #1016)
                   4499: 
                   4500: 2015-07-23  moko
                   4501: 
                   4502:        * src/classes/json.C: tainted json and empty json exception added
                   4503:          (implements feature #1015)
                   4504: 
                   4505:        * tests/: 311.html, results/311.processed: empty json and tainted
                   4506:          json exception test added (related to issue #1015)
                   4507: 
                   4508: 2015-07-22  moko
                   4509: 
                   4510:        * tests/: 311.html, results/311.processed: test for UTF-8
                   4511:          processing added
                   4512: 
                   4513:        * tests/: 311.html, results/311.processed: test for
                   4514:          json_exception_with_source added (related to issue #394)
                   4515: 
                   4516:        * src/classes/json.C: json_exception_with_source added (implements
                   4517:          feature #394)
                   4518: 
                   4519: 2015-06-29  moko
                   4520: 
                   4521:        * src/: classes/file.C, include/pa_dir.h, main/pa_dir.C:
                   4522:          directories are now correctly determined if _d_type == DT_UNKNOWN
                   4523:          (closes bug #1027)
                   4524: 
                   4525: 2015-06-10  moko
                   4526: 
                   4527:        * src/types/pa_vxnode.h: extern "C" not requred and causes build
                   4528:          error if libxml has LIBXML_ICU_ENABLED.
                   4529: 
                   4530: 2015-06-04  moko
                   4531: 
                   4532:        * tests/099.html: ups, reverting
                   4533: 
                   4534:        * tests/: 099.html, 309.html, 310.html, results/309.processed,
                   4535:          results/310.processed: tests for $response:body[ $.file[] ] and
                   4536:          $response:last-modified added
                   4537: 
                   4538:        * src/main/pa_request.C: last-modified check fixed
                   4539: 
                   4540: 2015-06-03  moko
                   4541: 
                   4542:        * tests/: 204.html, 205.html, 293.html, results/204.processed,
                   4543:          results/205.processed, results/293.processed: $response:headers
                   4544:          logging added (tests for feature #1007)
                   4545: 
                   4546:        * src/: include/pa_common.h, include/pa_request.h,
                   4547:          main/pa_request.C, types/pa_vmail.C, types/pa_vresponse.C:
                   4548:          $response:headers are now in uppercase (closes feature #1007)
                   4549: 
                   4550: 2015-06-02  moko
                   4551: 
                   4552:        * src/: include/pa_memory.h, classes/math.C: some of -pedantic
                   4553:          build errors reverted for clang compatibility
                   4554: 
                   4555: 2015-06-01  moko
                   4556: 
                   4557:        * src/include/pa_memory.h: -pedantic build errors fixed
                   4558: 
                   4559:        * src/classes/math.C: -pedantic build error fixed
                   4560: 
                   4561:        * src/classes/table.C: USE_STRINGSTREAM moved to the correct place
                   4562: 
                   4563: 2015-05-31  moko
                   4564: 
                   4565:        * src/classes/table.C: USE_STRINGSTREAM optimized
                   4566: 
                   4567:        * src/: classes/file.C, classes/math.C, include/pa_opcode.h,
                   4568:          include/pa_string.h, lib/json/pa_json.h, main/compile_tools.h,
                   4569:          main/pa_charset.C, main/pa_globals.C, main/pa_string.C,
                   4570:          types/pa_vmail.C, types/pa_vmethod_frame.C, types/pa_vregex.C,
                   4571:          types/pa_vxnode.h: warning war (-pedantic flag)
                   4572: 
                   4573: 2015-05-28  moko
                   4574: 
                   4575:        * tests/: 308.html, results/308.processed: test for
                   4576:          ^table::create[$t;], etc work added (related to bug #975)
                   4577: 
                   4578:        * src/classes/table.C: check_option_param removed,
                   4579:          ^table::create[$t;], etc now works (fixes bug #975)
                   4580: 
                   4581: 2015-05-27  moko
                   4582: 
                   4583:        * src/main/pa_request.C: Invalid response filename in gcc 4.9.2
                   4584:          (Debian jessie) fixed (closes issue #1024)
                   4585: 
                   4586:        * tests/Makefile: sort added as in Debian jessie list become
                   4587:          unsorted
                   4588: 
                   4589: 2015-05-18  moko
                   4590: 
                   4591:        * tests/: 201.html, results/201.processed: test for
                   4592:          ^string.trim[what] feature #1022
                   4593: 
                   4594:        * src/classes/string.C: ^string.trim[what] now supported,
                   4595:          implements feature #1022
                   4596: 
                   4597: 2015-05-17  moko
                   4598: 
                   4599:        * tests/results/185.processed: test result updated as feature #1021
                   4600:          implemented (left/right accept negative parameter)
                   4601: 
                   4602:        * src/classes/string.C: left/right now accept negative parameter
                   4603:          (implements feature #1021)
                   4604: 
                   4605: 2015-05-08  moko
                   4606: 
                   4607:        * src/classes/math.C: isalnum -> pa_isalnum
                   4608: 
                   4609:        * src/main/execute.C: optimization in getter-junction processing
                   4610:          (related to issue #997)
                   4611: 
                   4612: 2015-05-07  moko
                   4613: 
                   4614:        * tests/: 307.html, results/307.processed: test for issue #997
                   4615:          added
                   4616: 
                   4617:        * src/main/execute.C: process_getter result now checked if junction
                   4618:          returned (closes issue #997)
                   4619: 
                   4620:        * tests/: 305.html, results/305.processed: sort added to ignore
                   4621:          different order
                   4622: 
                   4623:        * src/types/pa_vxnode.C: & now untainted in $node.nodeValue
                   4624:          assignment (closes issue #994)
                   4625: 
                   4626:        * tests/: 306.html, results/306.processed: test for issue #994
                   4627:          added
                   4628: 
                   4629:        * tests/: 303.html, results/303.processed: two more errors tested
                   4630: 
                   4631: 2015-05-06  moko
                   4632: 
                   4633:        * tests/: 305.html, results/305.processed: test for name2ip &
                   4634:          ip2name added (related to feature #992)
                   4635: 
                   4636:        * tests/: 303.html, 304.html, results/303.processed,
                   4637:          results/304.processed: tests for idna conversion added (related
                   4638:          to issue #849)
                   4639: 
                   4640: 2015-05-02  moko
                   4641: 
                   4642:        * src/classes/inet.C: ^inet:ip2name[] and ^inet:name2ip[]
                   4643:          implemented
                   4644: 
                   4645: 2015-04-30  moko
                   4646: 
                   4647:        * src/main/pa_http.C: idna_host added, related to issue #849
                   4648: 
                   4649:        * src/main/pa_http.C: set_addr corrected, pa_idna_encode call added
                   4650:          (related to issue #849)
                   4651: 
                   4652: 2015-04-24  moko
                   4653: 
                   4654:        * src/types/pa_vjunction.C: warning war
                   4655: 
                   4656:        * src/lib/punycode/: pa_idna.h, pa_punycode.h: code style
                   4657:          unification
                   4658: 
                   4659:        * src/lib/punycode/pa_idna.c: warning war
                   4660: 
                   4661: 2015-04-22  moko
                   4662: 
                   4663:        * src/main/main.vcproj: punycode include path added
                   4664: 
                   4665:        * src/lib/punycode/pa_idna.c: windows compile error fixed
                   4666: 
                   4667:        * src/lib/punycode/pa_idna.c: warning war
                   4668: 
                   4669:        * parser3.sln, src/lib/punycode/punycode.vcproj: punycode windows
                   4670:          project file added
                   4671: 
                   4672:        * src/lib/punycode/pa_convert_utf.c: debug compilation fix
                   4673: 
                   4674:        * src/include/pa_memory.h: warning war
                   4675: 
                   4676:        * src/: classes/string.C, include/pa_common.h, main/pa_common.C:
                   4677:          ^string:idna[xn--...], ^string.idna[] - idna conversion support
                   4678:          implemented (related to feature #849)
                   4679: 
                   4680:        * configure.in, src/main/Makefile.am,
                   4681:          src/targets/apache/Makefile.am, src/targets/cgi/Makefile.am:
                   4682:          libpunycode added in Unix
                   4683: 
                   4684: 2015-04-21  moko
                   4685: 
                   4686:        * configure.in: large files support
                   4687: 
                   4688: 2015-04-15  moko
                   4689: 
                   4690:        * src/lib/punycode/: Makefile.am, pa_convert_utf.c,
                   4691:          pa_convert_utf.h, pa_idna.c, pa_idna.h, pa_punycode.c,
                   4692:          pa_punycode.h: initial version for punycode/idna support library
                   4693:          (ticket #849)
                   4694: 
                   4695: 2015-04-08  moko
                   4696: 
                   4697:        * src/: classes/curl.C, classes/date.C, classes/file.C,
                   4698:          classes/image.C, classes/mail.C, classes/reflection.C,
                   4699:          classes/string.C, classes/xnode.C, include/pa_request.h,
                   4700:          include/pa_string.h, include/pa_stylesheet_connection.h,
                   4701:          main/compile.y, main/compile_tools.h, main/execute.C,
                   4702:          main/pa_common.C, main/pa_request.C, main/pa_string.C,
                   4703:          main/pa_xml_io.C, main/untaint.C, types/pa_vclass.C,
                   4704:          types/pa_vcookie.C, types/pa_vfile.C, types/pa_vform.C,
                   4705:          types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
                   4706:          types/pa_wwrapper.h, main/compile.tab.C: removed most of the
                   4707:          clang compiler warnings (closes issue #1018)
                   4708: 
                   4709:        * src/include/pa_string.h: String::Body comparation operators with
                   4710:          char * added (related to issue #958)
                   4711: 
                   4712: 2015-04-07  moko
                   4713: 
                   4714:        * src/main/compile.tab.C: YYMALLOC/YYFREE defined to
                   4715:          pa_malloc/pa_free to remove system malloc/free usage (related to
                   4716:          issue #1018)
                   4717: 
                   4718:        * src/: classes/table.C, classes/xdoc.C, doc/memory.dox,
                   4719:          include/pa_hash.h, include/pa_memory.h, lib/gd/gif.C,
                   4720:          lib/gd/gif.h, lib/smtp/smtp.C, main/compile.y, main/pa_charset.C,
                   4721:          main/pa_http.C, main/pa_request.C, main/pa_string.C,
                   4722:          main/pa_xml_io.C, targets/apache/mod_parser3_core.C,
                   4723:          types/pa_vconsole.h, types/pa_vdouble.h, types/pa_vfile.C,
                   4724:          types/pa_vform.C, types/pa_vint.h: new(UseGC) replaced with new,
                   4725:          malloc/strdup/free replaced with pa_ version and checks for
                   4726:          accidental use of non-pa_ version added (related to issue #1018)
                   4727: 
                   4728: 2015-04-03  moko
                   4729: 
                   4730:        * buildall: pcre-8.33 -> pcre-8.36
                   4731: 
                   4732:        * src/: main/compile.y, classes/form.C, classes/mail.C,
                   4733:          classes/op.C, classes/string.C, main/compile.tab.C,
                   4734:          main/compile_tools.C, main/pa_http.C, main/pa_request.C,
                   4735:          main/pa_sql_driver_manager.C, types/pa_vfile.C,
                   4736:          types/pa_vhashfile.C: C++11 compilation errors fixed (related to
                   4737:          ticket #958)
                   4738: 
                   4739:        * src/: classes/file.C, include/pa_common.h, include/pa_sapi.h,
                   4740:          main/pa_common.C, main/pa_http.C, main/pa_request.C,
                   4741:          targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
                   4742:          targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_vform.C,
                   4743:          types/pa_vform.h, types/pa_vrequest.C, types/pa_vrequest.h:
                   4744:          $request:headers, $request:method added (implements feature
                   4745:          #1007)
                   4746: 
                   4747: 2015-03-17  misha
                   4748: 
                   4749:        * tests/302.html: - test for
                   4750:          ^json:string[...;$._default[method-name]]
                   4751: 
                   4752:        * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
                   4753:          types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C: - if
                   4754:          option $._default[method-name] is specified in ^json:string[], a
                   4755:          method with specified name will be called for classes/objects
                   4756:          serialization ( new feature: #982 )
                   4757: 
                   4758: 2015-03-16  misha
                   4759: 
                   4760:        * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
                   4761:          main/compile_tools.h, main/execute.C, types/pa_vconsole.h,
                   4762:          types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.C,
                   4763:          types/pa_venv.h, types/pa_vform.C, types/pa_vform.h,
                   4764:          types/pa_vhashfile.h, types/pa_vjunction.C, types/pa_vjunction.h,
                   4765:          types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
                   4766:          types/pa_vmemory.h, types/pa_vmethod_frame.C,
                   4767:          types/pa_vmethod_frame.h, types/pa_vregex.C, types/pa_vrequest.C,
                   4768:          types/pa_vrequest.h, types/pa_vstateless_class.C,
                   4769:          types/pa_vstateless_class.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   4770:          types/pa_vxnode.C, types/pa_vxnode.h: - $var.CLASS &
                   4771:          $var.CLASS_NAME now have special opcodes. This can be switched
                   4772:          off by commenting #define OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL
                   4773:          on pa_opcode.h ( new feature: #844 )
                   4774: 
                   4775: 2015-03-15  misha
                   4776: 
                   4777:        * tests/075.html: - test for $response:header[]
                   4778: 
                   4779:        * src/types/pa_vresponse.C: - $response:header[] deletes header
                   4780:          that was set earlie ( new feature: #1001 )
                   4781: 
                   4782: 2015-03-12  misha
                   4783: 
                   4784:        * tests/246.html: - more tests for ^hash._at[]
                   4785: 
                   4786:        * src/: classes/hash.C, include/pa_hash.h: - ^õýø._at[...] now
                   4787:          accepts second param [key|value|hash] ( new feature: #1012 )
                   4788: 
                   4789: 2015-03-09  moko
                   4790: 
                   4791:        * src/types/pa_vmail.C: exception for everything but
                   4792:          $mail:received, closes issue #1011
                   4793: 
                   4794: 2015-02-20  moko
                   4795: 
                   4796:        * tests/: 275.html, results/275.processed: hex detection in
                   4797:          pa_atoui fix test (closes issue #1010)
                   4798: 
                   4799:        * src/main/pa_string.C: hex detection in pa_atoui fixed (closes
                   4800:          issue #1010)
                   4801: 
                   4802: 2015-02-17  moko
                   4803: 
                   4804:        * src/types/pa_vmail.C: closes issue #1009 - mail content should be
                   4805:          tainted.
                   4806: 
                   4807: 2015-02-03  misha
                   4808: 
                   4809:        * tests/301.html: - test for ^json:string($double) causes
                   4810:          exception. bugfix: #1008
                   4811: 
                   4812:        * src/classes/json.C: - ^json:string($double) causes exception.
                   4813:          bugfix: #1008
                   4814: 
                   4815:        * tests/014.html: - updated for work with ^hash.delete[]
                   4816: 
                   4817: 2015-01-12  misha
                   4818: 
                   4819:        * src/: classes/form.C, include/pa_common.h,
                   4820:          include/pa_request_info.h, main/pa_common.C, types/pa_vform.C,
                   4821:          types/pa_vform.h: - supports body with PUT method as well ( new
                   4822:          feature: #1006 )
                   4823: 
                   4824:        * src/classes/file.C: - warnings war
                   4825: 
                   4826: 2015-01-11  misha
                   4827: 
                   4828:        * tests/300.html: - test for ^hash.delete[] is added
                   4829: 
                   4830:        * src/classes/hash.C: - ^hash.delete[] clear all hash ( new
                   4831:          feature: #989 ) - tiny optimization in intersects
                   4832: 
                   4833: 2015-01-06  moko
                   4834: 
                   4835:        * src/types/pa_vmail.C: file names transcode added, to and cc added
                   4836:          with transcode, attachments detection fixed
                   4837: 
                   4838:        * src/main/pa_request.C: filling mail received after cgi/auto.p
                   4839:          load to allow charset switch (related to issue #996)
                   4840: 
                   4841: 2014-12-31  moko
                   4842: 
                   4843:        * src/types/pa_vmail.C: from and subject now transcoded if not
                   4844:          UTF-8 source charset (fixes issue 996)
                   4845: 
                   4846:        * src/main/pa_exception.C: fixed string from stack bug (closes
                   4847:          issue #1000)
                   4848: 
                   4849: 2014-12-11  misha
                   4850: 
                   4851:        * src/types/pa_vhashfile.C: - check if key is not empty before
                   4852:          access ( bug fix: #1005 )
                   4853: 
                   4854: 2014-11-13  misha
                   4855: 
                   4856:        * src/main/compile.y: - PC.append does not reset to false while
                   4857:          creating a new class. bugfix: #990
                   4858: 
                   4859:        * tests/299.html: - test for creation class after working with
                   4860:          partial class (create+append)
                   4861: 
                   4862:        * src/types/pa_vobject.C: - @GET[def] always returns true. bugfix:
                   4863:          #995
                   4864: 
                   4865:        * tests/232.html: - test for @get[def] added
                   4866: 
                   4867: 2014-10-12  moko
                   4868: 
                   4869:        * src/lib/pcre/pcre_internal.vcproj: correct path
                   4870: 
                   4871:        * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
                   4872:          lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
                   4873:          lib/pcre/pcre_internal.vcproj, main/main.vcproj,
                   4874:          targets/apache/ApacheModuleParser3.vcproj,
                   4875:          targets/apache/ApacheModuleParser3Core.vcproj,
                   4876:          targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
                   4877:          types/types.vcproj: project GUID inserted in *.vcproj for correct
                   4878:          conversion in newer VS versions
                   4879: 
                   4880:        * parser3.sln, src/lib/pcre/pcre_internal.vcproj:
                   4881:          pcre_internal.vcproj added
                   4882: 
                   4883: 2014-08-28  moko
                   4884: 
                   4885:        * src/lib/pcre/: Makefile.am, pa_pcre_chartables.c,
                   4886:          pa_pcre_internal.h, pa_pcre_valid_utf8.c: _pcre_default_tables
                   4887:          and pcre_valid_utf are copied to parser3 code (fixes issue #991)
                   4888: 
                   4889: 2014-06-30  misha
                   4890: 
                   4891:        * tests/298.html: - tests for ^reflection:def[class;className]
                   4892:          added
                   4893: 
                   4894:        * src/classes/reflection.C: - ^reflection:def[class;className]
                   4895:          added ( new feature: #918 )
                   4896: 
                   4897: 2014-06-29  misha
                   4898: 
                   4899:        * src/classes/table.C: - ^table::create[unsupported data] -
                   4900:          exception comment changed to "body must be table or code" ( bug
                   4901:          fix: #951 )
                   4902: 
                   4903:        * tests/: 261.html, results/261.processed: - tests for
                   4904:          ^json:string[...;$.void[null|string]] added
                   4905: 
                   4906:        * src/: classes/json.C, types/pa_value.h, types/pa_vvoid.h: - new
                   4907:          option $.void[string|null] added to ^json:string[...] ( new
                   4908:          feature: #952 )
                   4909: 
                   4910: 2014-06-28  moko
                   4911: 
                   4912:        * src/classes/curl.C: $.charset now processed before other curl
                   4913:          options (closes issue #980)
                   4914: 
                   4915: 2014-05-23  misha
                   4916: 
                   4917:        * src/classes/json.C: - bug fix: #987
                   4918: 
                   4919: 2014-05-04  misha
                   4920: 
                   4921:        * tests/: 253.html, 253_json.txt: - test for
                   4922:          ^json:parse[$.int(false)] is added
                   4923: 
                   4924:        * src/classes/json.C: - To ^json:parse[] added option $.int(bool,
                   4925:          default true). The option is similar to $.double(bool) but for
                   4926:          integers.
                   4927: 
                   4928: 2014-05-01  moko
                   4929: 
                   4930:        * src/classes/file.C: "PARSER_VERSION" -> PARSER_VERSION ( bugfix:
                   4931:          #12 )
                   4932: 
                   4933: 2014-04-16  moko
                   4934: 
                   4935:        * src/main/pa_http.C: response-charset option should finally work
                   4936:          now (fix for issue #867)
                   4937: 
                   4938:        * src/main/pa_http.C: response-charset option should work now (fix
                   4939:          for issue #867)
                   4940: 
                   4941: 2014-03-07  moko
                   4942: 
                   4943:        * buildall: libgc moved
                   4944: 
                   4945:        * buildall: libgc moved
                   4946: 
                   4947: 2013-12-29  moko
                   4948: 
                   4949:        * src/classes/string.C: ^string:js-unescape result now tainted,
                   4950:          closes issue #966
                   4951: 
                   4952:        * tests/: 186.html, results/186.processed: ^string:js-unescape
                   4953:          result now tainted, issue #966
                   4954: 
                   4955: 2013-12-03  moko
                   4956: 
                   4957:        * src/: classes/memcached.C, types/pa_vmemcached.C,
                   4958:          types/pa_vmemcached.h: memcached open $.skip-connect(true|false)
                   4959:          option was added for http://www.parser.ru/forum/?id=79343
                   4960: 
                   4961:        * src/classes/file.C: bugfix for
                   4962:          http://www.parser.ru/forum/?id=79337
                   4963: 
                   4964: 2013-11-05  moko
                   4965: 
                   4966:        * configure.in, src/include/pa_version.h: 3.4.3 -> 3.4.4b
                   4967: 
                   4968:        * src/main/pa_globals.C: spelling fixed
                   4969: 
                   4970: 2013-10-29  moko
                   4971: 
                   4972:        * src/lib/json/json.vcproj: json.c -> pa_json.C
                   4973: 
                   4974:        * src/lib/json/pa_json.C: C++ compatibility addes, related to issue
                   4975:          #892
                   4976: 
                   4977:        * src/: classes/json.C, lib/json/Makefile.am, lib/json/json.c,
                   4978:          lib/json/json.h, lib/json/pa_json.C: json.c -> pa_json.C (for
                   4979:          exceptions to be thrown thougth json library), related to issue
                   4980:          #892
                   4981: 
                   4982:        * src/main/pa_charset.C: avoid compilation bug in Debian 6.0.8 x32,
                   4983:          related to issue #896
                   4984: 
                   4985: 2013-10-24  moko
                   4986: 
                   4987:        * configure.in, src/include/pa_version.h: 3.4.3rc -> 3.4.3
                   4988: 
                   4989: 2013-10-23  moko
                   4990: 
                   4991:        * README: actualization
                   4992: 
                   4993: 2013-10-22  moko
                   4994: 
                   4995:        * src/targets/apache/mod_parser3.c: Adopted apache 2.4
                   4996:          compatibility patch from Sergey Kirpichev
                   4997: 
                   4998:        * tests/: 297.html, results/297.processed: non-working getter fix
                   4999:          test for issue #948
                   5000: 
                   5001:        * src/: include/pa_request.h, main/pa_request.C: Now getter is not
                   5002:          called when saving value of $match variable in ^string.match[] to
                   5003:          increase compatibility (related to issue #948).
                   5004: 
                   5005:        * src/: include/pa_request.h, targets/cgi/parser3.C: minor header
                   5006:          usage optimization
                   5007: 
                   5008: 2013-10-21  moko
                   5009: 
                   5010:        * tests/: 182.html, results/182.processed: local path removed for
                   5011:          compatibility
                   5012: 
                   5013:        * tests/: 244.html, 253.html, 254.html, 275.html, 281.html,
                   5014:          results/244.processed, results/253.processed,
                   5015:          results/254.processed, results/275.processed,
                   5016:          results/281.processed: try_catch -> try-catch
                   5017: 
                   5018:        * tests/: 288.html, 294.html, 296.html, results/288.processed,
                   5019:          results/294.processed, results/296.processed: try_catch ->
                   5020:          try-catch
                   5021: 
                   5022: 2013-10-20  moko
                   5023: 
                   5024:        * tests/: 296.html, results/296.processed: test for xsl exception
                   5025:          for issue #938 added.
                   5026: 
                   5027:        * src/: include/pa_xml_exception.h,
                   5028:          main/pa_stylesheet_connection.C: forgotten to be replaced
                   5029:          XmlException is now replaced (once again closes issue #938)
                   5030: 
                   5031: 2013-10-18  moko
                   5032: 
                   5033:        * buildall: disable clock_gettime detection to avoid librt linking
                   5034:          (which in turn depends on libpthread), related to issue #943
                   5035: 
                   5036: 2013-10-18  misha
                   5037: 
                   5038:        * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
                   5039:          lib/smtp/smtp.vcproj, main/main.vcproj,
                   5040:          targets/apache/ApacheModuleParser3Core.vcproj,
                   5041:          targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
                   5042:          types/types.vcproj: - new locations for libxml2 includes where
                   5043:          added to vcproj files
                   5044: 
                   5045: 2013-10-18  moko
                   5046: 
                   5047:        * src/classes/: hashfile.C, op.C: hopefully last part of issue #948
                   5048:          fix
                   5049: 
                   5050:        * tests/: 295.html, results/295.processed: test for issue #948
                   5051:          updated
                   5052: 
                   5053:        * src/classes/table.C: hopefully last lost part for issue #948 fix.
                   5054:          :)
                   5055: 
                   5056:        * tests/: 295.html, results/295.processed: test for issue #948
                   5057:          added
                   5058: 
                   5059:        * src/: classes/hash.C, classes/string.C, classes/table.C,
                   5060:          include/pa_request.h, types/pa_method.h: for getters and setters
                   5061:          to be executed request.put_element should be called, not
                   5062:          context.put_element (fixes issue #948)
                   5063: 
                   5064: 2013-10-17  moko
                   5065: 
                   5066:        * src/classes/xdoc.C: libxml 2.9.1 compatibility with define
                   5067:          LIBXML2_NEW_BUFFER check (closes issue #943)
                   5068: 
                   5069:        * buildall: libxml 2.9.1 build is broken --without-reader.
                   5070: 
                   5071: 2013-10-16  moko
                   5072: 
                   5073:        * configure.in, src/include/pa_version.h: 3.4.3b -> 3.4.3rc
                   5074: 
                   5075:        * tests/: 294.html, results/294.processed: test for issue #938
                   5076: 
                   5077:        * src/: classes/xdoc.C, classes/xnode.C,
                   5078:          include/pa_xml_exception.h, main/pa_xml_exception.C: XmlException
                   5079:          now calls fixUTF8 if source charset is UTF-8 (closes issue #938)
                   5080: 
                   5081:        * buildall: pcre-8.30 -> pcre-8.33 libxml2-2.8.0 -> libxml2-2.9.1
                   5082:          libxslt-1.1.26 -> libxslt-1.1.28
                   5083: 
                   5084:        * src/: include/pa_charset.h, lib/pcre/pa_pcre_internal.h,
                   5085:          main/pa_charset.C: fixUTF8 method added to replace invalid UTF-8
                   5086:          to '?', related to issue #938
                   5087: 
                   5088: 2013-10-15  moko
                   5089: 
                   5090:        * src/: include/pa_common.h, main/pa_charset.C, main/pa_common.C,
                   5091:          main/untaint.C: json chars 0x01-0x1F now are escaped as \u00XX,
                   5092:          minor optimizations (closes issue #896)
                   5093: 
                   5094:        * tests/results/: 292.processed, 293.processed: results updated to
                   5095:          comply with issue #896
                   5096: 
                   5097:        * tests/: 292.html, 293.html, results/292.processed,
                   5098:          results/293.processed: tests for json escaping
                   5099: 
                   5100: 2013-10-14  moko
                   5101: 
                   5102:        * src/: include/pa_common.h, main/pa_common.C: minor rearrangements
                   5103:          and cleanup, code moved from .h to .C, no changes in code
                   5104: 
                   5105: 2013-10-12  moko
                   5106: 
                   5107:        * tests/results/119.processed: updated test result commited
                   5108: 
                   5109:        * tests/: 291.html, results/291.processed: test for issue #894
                   5110:          added
                   5111: 
                   5112:        * src/types/pa_wcontext.h: base methods call support function
                   5113:          get_somebody_entered_some_class should not be true forever, as
                   5114:          wcontext can have many get_elements calls (fixes issue #894)
                   5115: 
                   5116: 2013-10-11  moko
                   5117: 
                   5118:        * tests/: 290.html, results/290.processed: test for junction GPF
                   5119:          issue #942 added
                   5120: 
                   5121:        * src/types/pa_vmethod_frame.h: GPF if method junctions is passed
                   5122:          to native method fixed (closes issue #942)
                   5123: 
                   5124:        * tests/: 158.html, results/158.processed: test for csv-string[]
                   5125:          added
                   5126: 
                   5127:        * src/classes/table.C: minor fixes for table.csv-string[] (closes
                   5128:          feature #907)
                   5129: 
                   5130:        * src/classes/table.C: ^table.csv-string[] from misha@ (implements
                   5131:          feature #907)
                   5132: 
                   5133: 2013-10-09  moko
                   5134: 
                   5135:        * src/: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
                   5136:          types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
                   5137:          types/pa_vstateless_class.C: GET_default, SET_default now works
                   5138:          properly not only in objects, but in classes as well (closes
                   5139:          issue #903)
                   5140: 
                   5141:        * tests/: 289.html, results/289.processed: GET/SET_default now
                   5142:          works in classes, not only objects, test case added, related to
                   5143:          issue #903
                   5144: 
                   5145:        * tests/: 288.html, results/288.processed: test for endless
                   5146:          recursion bug added (related to issue #903)
                   5147: 
                   5148: 2013-10-05  moko
                   5149: 
                   5150:        * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
                   5151:          classes/table.C, main/execute.C, types/pa_method.h,
                   5152:          types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
                   5153:          types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
                   5154:          types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
                   5155:          types/pa_vimage.C, types/pa_vimage.h, types/pa_vmemcached.C,
                   5156:          types/pa_vmemcached.h, types/pa_vmethod_frame.h,
                   5157:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
                   5158:          types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
                   5159:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   5160:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
                   5161:          optimization: put_element no longer has "bool areplace" argument,
                   5162:          related to issue #903
                   5163: 
                   5164: 2013-10-03  moko
                   5165: 
                   5166:        * tests/results/182.processed: result for $.replace(false) test
                   5167:          commited
                   5168: 
                   5169:        * src/classes/date.C: ^date::create(number) processed correctly
                   5170:          (fixes issue #901)
                   5171: 
                   5172:        * src/classes/image.C: as_no_junction removed, as param can be
                   5173:          expression (closes issue #931)
                   5174: 
                   5175:        * tests/233.html: test for issue #931 added
                   5176: 
                   5177: 2013-10-02  moko
                   5178: 
                   5179:        * tests/: 182.html, 182_dir/a5.p: test for $.replace(true)
                   5180:          modified, test for $.replace(false) added
                   5181: 
                   5182:        * src/main/compile_tools.h: forgotten class replace returned. :)
                   5183: 
                   5184: 2013-09-30  moko
                   5185: 
                   5186:        * tests/: 141.html, results/141.processed: md5 tainting test added
                   5187: 
                   5188:        * src/: classes/op.C, include/pa_request.h, main/compile.y,
                   5189:          main/compile_tools.h, main/pa_request.C: allow_class_replace
                   5190:          implemented; $.replace option added to ^process and ^use
                   5191: 
                   5192: 2013-08-27  moko
                   5193: 
                   5194:        * src/classes/: file.C, json.C, math.C, string.C, xdoc.C:
                   5195:          cstr_to_string_body_untaint should be called with charsets for
                   5196:          possible uri language and connection for possible sql language.
                   5197:          related to issue #857
                   5198: 
                   5199:        * buildall: and -> or fixed
                   5200: 
                   5201: 2013-08-26  moko
                   5202: 
                   5203:        * buildall: prepare_ functions logic changed to support
                   5204:          gc-7.2d.tar.gz extracting to gc-7.2 directory
                   5205: 
                   5206: 2013-08-23  moko
                   5207: 
                   5208:        * src/include/pa_config_fixed.h: gc and xml libs are now linked
                   5209:          statically
                   5210: 
                   5211: 2013-08-22  moko
                   5212: 
                   5213:        * src/classes/string.C: String::Empty used (related to issue #912)
                   5214:          append_know_length removed (related to old GPF bug)
                   5215: 
                   5216: 2013-08-21  moko
                   5217: 
                   5218:        * src/classes/math.C: untaint(L_AS_IS) added for md5 and sha1
                   5219: 
                   5220:        * src/classes/math.C: ^math:digest[...;$file] support added
                   5221:          (related to ticket #857
                   5222: 
                   5223:        * tests/: 141.html, results/141.processed: ^math:digest[...;$file]
                   5224:          implemented
                   5225: 
                   5226:        * src/types/pa_vhashfile.h: warning war
                   5227: 
                   5228:        * src/: classes/json.C, classes/op.C, include/pa_hash.h,
                   5229:          include/pa_request.h, main/pa_request.C, types/pa_value.h:
                   5230:          anti_endless_json_string_recoursion removed from request;
                   5231:          json_string_recoursion added to json_options; $.indent[indent
                   5232:          value] now supported and passed within recoursion closes feature
                   5233:          #937
                   5234: 
                   5235:        * tests/: 287.html, results/287.processed: test for feature #937
                   5236: 
                   5237: 2013-07-31  moko
                   5238: 
                   5239:        * src/lib/json/: json.c, pa_json.C: STATE__X -> STATE_XX for cygwin
                   5240:          compilation having #define _S
                   5241: 
                   5242:        * src/main/pa_globals.C: cleanup
                   5243: 
                   5244: 2013-07-30  moko
                   5245: 
                   5246:        * src/: classes/table.C, include/pa_common.h, main/pa_charset.C,
                   5247:          main/pa_common.C: vs2003 warning war
                   5248: 
                   5249:        * src/lib/json/: json.c, pa_json.C: vs2003 warning war
                   5250: 
                   5251:        * src/lib/json/: json.c, pa_json.C: vs2003 compilation fix
                   5252: 
                   5253:        * src/lib/md5/pa_sha2.c: warning war
                   5254: 
                   5255: 2013-07-29  moko
                   5256: 
                   5257:        * src/lib/json/: json.c, json.h, pa_json.C, pa_json.h: some libjson
                   5258:          patches from github
                   5259: 
                   5260:        * src/: classes/bool.C, classes/double.C, classes/int.C,
                   5261:          classes/memcached.C, include/pa_config_includes.h,
                   5262:          types/pa_vfile.C, types/pa_vfile.h: warning war
                   5263: 
                   5264:        * src/lib/json/json.vcproj: C++ -> C
                   5265: 
                   5266:        * src/lib/json/: json.c, pa_json.C: C++ warning revert
                   5267: 
                   5268:        * src/lib/json/: json.c, pa_json.C: windows compatibility
                   5269: 
                   5270:        * src/lib/json/: json.c, pa_json.C: windows compatibility
                   5271: 
                   5272:        * src/lib/json/: json.c, pa_json.C: warning war
                   5273: 
                   5274:        * src/lib/json/: json.c, pa_json.C: win32 compilation issues fixes
                   5275: 
                   5276:        * src/include/pa_config_fixed.h: uint16_t added
                   5277: 
                   5278:        * configure.in: uint16_t check added
                   5279: 
                   5280:        * src/: classes/json.C, lib/json/JSON_parser.C,
1.116     moko     5281:          lib/json/JSON_parser.h, lib/json/Makefile.am, lib/json/json.c,
                   5282:          lib/json/json.h, lib/json/json.vcproj, lib/json/pa_json.C,
                   5283:          lib/json/pa_json.h: JSON_parser with non-free licence is replaced
                   5284:          with similar GPL licenced libjson (fixes issue #892)
1.95      moko     5285: 
                   5286: 2013-07-25  moko
                   5287: 
                   5288:        * parser3.sln: dependencies added
                   5289: 
                   5290:        * parser3.sln, src/targets/apache/ApacheModuleParser3.vcproj,
                   5291:          src/targets/apache/ApacheModuleParser3Core.vcproj: win32 apache
                   5292:          module support
                   5293: 
                   5294:        * src/targets/apache/mod_parser3_core.C: win32 cleanup
                   5295: 
                   5296:        * src/targets/apache/mod_parser3.c: win32 apache 2.2 module
                   5297: 
                   5298: 2013-07-23  moko
                   5299: 
                   5300:        * src/: include/pa_memory.h, main/pa_memory.C: non-working
                   5301:          PA_DEBUG_GC_MEMORY removed
                   5302: 
                   5303:        * src/: main/pa_globals.C, targets/cgi/parser3.C:
                   5304:          PA_DEBUG_DISABLE_GC compilation fix
                   5305: 
                   5306:        * src/: classes/op.C, classes/table.C, include/pa_request.h,
                   5307:          main/pa_request.C: outdated RESOURCES_DEBUG removed
                   5308: 
                   5309:        * src/: main/pa_os.C, targets/cgi/parser3.C: headers cleanup,
                   5310:          garbage cleanup
                   5311: 
                   5312:        * src/main/pa_common.C: warning war
                   5313: 
                   5314:        * src/: include/pa_http.h, main/pa_http.C: headers cleanup
                   5315: 
                   5316:        * src/: include/pa_common.h, main/pa_common.C: WIN32 -> _MSC_VER,
                   5317:          minor cleanup
                   5318: 
                   5319:        * src/: include/pa_dir.h, main/pa_dir.C: loaddir under cygwin now
                   5320:          uses cygwin, not WIN32 implementation
                   5321: 
                   5322:        * src/main/pa_exec.C: WIN32 -> _MSC_VER, under cygwin unix exec is
                   5323:          able to exec shell scripts
                   5324: 
                   5325:        * src/classes/math.C: ifdef WIN32 cleanup
                   5326: 
                   5327:        * src/types/pa_vmemcached.C: LT_MODULE_EXT used
                   5328: 
                   5329:        * src/classes/curl.C: LT_MODULE_EXT used
                   5330: 
                   5331:        * src/include/pa_config_fixed.h: LT_MODULE_EXT defined
                   5332: 
                   5333: 2013-07-22  moko
                   5334: 
                   5335:        * src/include/: pa_config_fixed.h, pa_config_includes.h: win32
                   5336:          includes fix
                   5337: 
                   5338:        * src/: main/pa_common.C, targets/cgi/parser3.C: includes cleanup
                   5339: 
                   5340:        * configure.in, src/include/pa_config_includes.h,
                   5341:          src/lib/smtp/comms.C, src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
                   5342:          src/main/pa_exec.C: includes cleanup
                   5343: 
                   5344:        * src/targets/cgi/parser3.C: 2012->2013
                   5345: 
                   5346:        * src/include/pa_version.h: 3.4.2 -> 3.4.3b
                   5347: 
                   5348:        * configure.in, src/include/pa_config_includes.h,
                   5349:          src/include/pa_http.h, src/lib/json/JSON_parser.h,
                   5350:          src/main/pa_random.C, src/main/pa_socks.C,
                   5351:          src/types/pa_vstatus.C: cygwin support cleanup
                   5352: 
                   5353:        * configure.in: dirent.h check added
                   5354: 
                   5355:        * src/: include/pa_config_includes.h, include/pa_dir.h,
                   5356:          main/pa_dir.C: includes cleanup, dirent.h check added filePath
                   5357:          not copied
                   5358: 
                   5359: 2013-07-21  moko
                   5360: 
                   5361:        * src/lib/cord/cord.vcproj: unused cordprnt.c removed
                   5362: 
                   5363:        * src/targets/cgi/: Makefile.am, getopt.c, getopt.h,
                   5364:          parser3.vcproj: unused getopt.h / getopt.c removed
                   5365: 
                   5366:        * operators.txt, src/classes/file.C, tests/022.html,
                   5367:          tests/results/022.processed: ^file:list[path][$.filter[regexp]
                   5368:          $.stat(true)] usage commented
                   5369: 
                   5370:        * configure.in, src/classes/file.C, src/include/pa_dir.h,
                   5371:          src/main/pa_dir.C: ^file:list[] now has dir column and when
                   5372:          $.stat(true) it has size/*date columns modified patch from misha@
                   5373:          that closes issue #914.
                   5374: 
                   5375:        * src/: include/pa_config_includes.h, main/pa_globals.C:
                   5376:          PA_RELEASE_ASSERTS removed
                   5377: 
                   5378:        * src/lib/md5/pa_md5c.c: minor cleanup
                   5379: 
                   5380:        * src/lib/json/: JSON_parser.C, JSON_parser.h: headers cleanup,
                   5381:          localeconv()->decimal_point usage remoed (related to issue #934)
                   5382: 
                   5383:        * src/lib/cord/: Makefile.am, cordprnt.c, include/cord.h: unused
                   5384:          cordprnt.c removed
                   5385: 
                   5386:        * src/lib/sdbm/: sdbm.c, sdbm_pair.c, pa-include/pa_apr.h,
                   5387:          pa-include/pa_errno.h, pa-include/pa_file_io.h,
                   5388:          pa-include/pa_strings.h: includes cleanup
                   5389: 
                   5390:        * src/lib/md5/pa_md5c.c: headers cleanup
                   5391: 
                   5392: 2013-07-20  moko
                   5393: 
                   5394:        * src/lib/cord/: cordbscs.c, cordprnt.c, cordxtra.c: includes
                   5395:          cleanup
                   5396: 
                   5397: 2013-07-19  moko
                   5398: 
                   5399:        * src/classes/math.C: extern "C" added for crypt
                   5400: 
                   5401: 2013-07-18  moko
                   5402: 
                   5403:        * src/classes/math.C: fix redhat7.2 build
                   5404: 
                   5405: 2013-07-17  moko
                   5406: 
                   5407:        * configure.in, src/include/pa_config_includes.h,
                   5408:          src/include/pa_config_fixed.h: headers actualized (inttypes.h
                   5409:          added for uint8/32/64_t)
                   5410: 
                   5411:        * src/lib/md5/: pa_md5.h, pa_md5c.c, pa_sha2.c, pa_sha2.h:
                   5412:          pa_config_includes.h used for uint32/64_t
                   5413: 
                   5414: 2013-07-16  moko
                   5415: 
                   5416:        * src/: include/pa_string.h, main/pa_string.C, types/pa_vform.C,
                   5417:          types/pa_vform.h, types/pa_vobject.C, types/pa_vobject.h: warning
                   5418:          war
                   5419: 
                   5420:        * src/main/compile.tab.C: compile.y was updated
                   5421: 
                   5422:        * src/main/compile.y: warning war
                   5423: 
                   5424:        * src/: include/pa_exception.h, main/pa_exception.C,
                   5425:          main/pa_xml_exception.C: warning war
                   5426: 
                   5427:        * src/: include/pa_common.h, main/pa_common.C: warning war
                   5428: 
                   5429:        * configure.in: beauty :)
                   5430: 
                   5431:        * tests/: 141.html, results/141.processed: sha256/512 added
                   5432: 
                   5433: 2013-07-13  moko
                   5434: 
                   5435:        * src/lib/md5/md5.vcproj: sha2 added
                   5436: 
                   5437:        * src/: lib/md5/pa_sha2.c, lib/md5/pa_sha2.h, lib/md5/Makefile.am,
                   5438:          classes/math.C: sha2 support (sha256/sha512 digest)
                   5439: 
                   5440: 2013-07-08  moko
                   5441: 
                   5442:        * src/classes/image.C: directory read or other read problem message
                   5443:          fixed (related to issue #933)
                   5444: 
                   5445: 2013-07-07  moko
                   5446: 
                   5447:        * AUTHORS: + misha + moko. :)
                   5448: 
                   5449: 2013-07-06  moko
                   5450: 
                   5451:        * src/: classes/curl.C, include/pa_globals.h,
                   5452:          include/pa_sql_driver_manager.h, lib/memcached/pa_memcached.C,
                   5453:          main/pa_globals.C, main/pa_sql_driver_manager.C: pa_dlinit added
                   5454:          for lt_dlinit to be called once and lt_dlexit called at right
                   5455:          place (related to issue #925)
                   5456: 
                   5457: 2013-07-04  moko
                   5458: 
                   5459:        * src/types/: pa_vfile.C, pa_vfile.h, pa_vstring.C:
                   5460:          VString::as_vfile now uses vfile.set_binary_string to avoid
                   5461:          content-type to be set, as it brokes badly designed logic in
                   5462:          response output. This hopefully finishes issue #928.
                   5463: 
                   5464:        * tests/results/: 256.processed, 286.processed: file now displayed
                   5465:          as name, size, mode, content-type
                   5466: 
                   5467:        * src/main/pa_common.C: read error now reported cottectly (fixes
                   5468:          issue #933
                   5469: 
                   5470: 2013-06-28  moko
                   5471: 
                   5472:        * tests/: 286.html, results/286.processed: test extended
                   5473: 
                   5474:        * tests/: 286.html, results/286.processed: Test for issue #928
                   5475:          added.  it tests default content-type change.
                   5476: 
                   5477:        * src/types/pa_vfile.C: closes issue #928 - default content-type
                   5478:          now updated
                   5479: 
                   5480: 2013-06-25  moko
                   5481: 
                   5482:        * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h: default
                   5483:          content-type for text/binary files without name added;
                   5484:          ^file::create[$f;...] options now works properly and $f
                   5485:          properties are default (fixes issue #928)
                   5486: 
                   5487: 2013-05-16  misha
                   5488: 
                   5489:        * src/include/pa_opcode.h: - define for OBJECT_POOL optimisation is
                   5490:          added
                   5491: 
                   5492:        * src/main/pa_table.C: - a tiny memory optimisation while creating
                   5493:          table if specified limit is bigger than source rows count
                   5494: 
                   5495:        * src/classes/table.C: - ^table.foreach[k;v]{code}[separator] is
                   5496:          added ( new feature: #858 )
                   5497: 
                   5498: 2013-04-29  moko
                   5499: 
                   5500:        * src/classes/curl.C: CURL_IPRESOLVE_V4 now set by default,
                   5501:          $.ipresolve(0|1|2) added (closes issue #891)
                   5502: 
                   5503:        * src/lib/curl/curl.h: CURL_IPRESOLVE added
                   5504: 
                   5505: 2013-04-24  moko
                   5506: 
                   5507:        * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
                   5508:          lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
                   5509:          types/pa_vmemcached.h: ^memcache.release[] added, calls
                   5510:          memcached_quit (refs #893)
                   5511: 
                   5512: 2013-04-22  moko
                   5513: 
                   5514:        * src/: include/pa_string.h, main/pa_common.C: no more double
                   5515:          slashes in file path (fixes bug #872)
                   5516: 
                   5517:        * src/: classes/curl.C, lib/curl/curl.h: minor fixes related to
                   5518:          CURLOPT_ENCODING renamed into CURLOPT_ACCEPT_ENCODING (issue
                   5519:          #739)
                   5520: 
                   5521:        * tests/results/266.processed: $.max_params added (feature #915)
                   5522: 
                   5523:        * src/: include/pa_common.h, main/pa_http.C: response-charset
                   5524:          option added to file::load (closes issue #867)
                   5525: 
                   5526: 2013-04-20  misha
                   5527: 
                   5528:        * src/classes/curl.C: - forgotten CURL_ACCEPT_ENCODING option is
                   5529:          commited
                   5530: 
                   5531: 2013-03-15  misha
                   5532: 
                   5533:        * src/classes/: hash.C, table.C: - Optimisation: do not create
                   5534:          multiple empty strings while ::sql. uae String::Empty instead
                   5535: 
                   5536: 2013-03-14  misha
                   5537: 
                   5538:        * src/classes/reflection.C: - for user classes
                   5539:          ^reflection:method_info[] returns $.max_params and $.extra_param
                   5540:          with $.call_type if they available ( new feature: #915 )
                   5541: 
                   5542:        * src/classes/file.C: - ^file:delete[] now supports an option
                   5543:          $.exception(false) that suppress any exception while deleting
                   5544:          file ( new feature: #916 )
                   5545: 
                   5546:        * src/classes/curl.C: - parsing cookies after curl:load now should
                   5547:          work :)
                   5548: 
                   5549: 2013-03-12  misha
                   5550: 
                   5551:        * src/types/pa_vfile.C: - if specified file_name is empty string
                   5552:          set default name for the file
                   5553: 
                   5554: 2013-03-11  misha
                   5555: 
                   5556:        * src/classes/curl.C: - after $f[^curl:load[...]] the cookies are
                   5557:          also available in $f.cookies
                   5558: 
                   5559:        * src/: include/pa_http.h, main/pa_http.C: - parsing cookies is
                   5560:          moved to a separate method
                   5561: 
                   5562: 2013-03-10  moko
                   5563: 
                   5564:        * src/include/pa_config_fixed.h: typedef unsigned int uint32_t
                   5565:          added
                   5566: 
                   5567:        * src/lib/memcached/pa_memcached.h: typedef unsigned int uint32_t
                   5568:          removed (declared by autoconf)
                   5569: 
                   5570:        * configure.in: AC_TYPE_SSIZE_T, AC_TYPE_UINT32_T added for
                   5571:          uint32_t define
                   5572: 
                   5573: 2013-03-10  misha
                   5574: 
                   5575:        * src/classes/file.C: ^file:delete and ^file:move now support
                   5576:          option $.keep-empty-dirs(true) ( new feature: #884 )
                   5577: 
                   5578:        * src/: include/pa_common.h, main/pa_common.C: - option for keeping
                   5579:          empty dirs is added
                   5580: 
                   5581: 2013-03-10  moko
                   5582: 
                   5583:        * src/classes/: bool.C, double.C, int.C: default can be present,
                   5584:          but default check removed from ^int/double/bool.int/double/bool
                   5585:          for string.int/double/bool compatibility (related to issue #913)
                   5586: 
                   5587:        * src/classes/string.C: ^string.int/dobule/bool no longer
                   5588:          internally throws exception if default is present (closes issue
                   5589:          #913)
                   5590: 
                   5591: 2013-03-09  misha
                   5592: 
                   5593:        * src/types/: pa_vhash.h, pa_vregex.h, pa_vtable.h: - tiny
                   5594:          optimisations ( #845 )
                   5595: 
                   5596:        * src/types/pa_venv.C: - added $env:fields ( new feature: #906 )
                   5597: 
                   5598: 2013-03-08  moko
                   5599: 
                   5600:        * src/main/pa_http.C: GPF on ^cookies:save fixed, $file.cookies now
                   5601:          creates correct table (fixes issue #910)
                   5602: 
                   5603:        * src/classes/op.C: r.connection() -> r.connection(false) to allow
                   5604:          use outside of 'connect' operator (fixes issue #911)
                   5605: 
                   5606:        * tests/results/: 096.processed, 122.processed: test results
                   5607:          updated as doubles now printed with 15 significant digits, not 5
                   5608:          (fixes issue #882)
                   5609: 
                   5610:        * src/types/pa_vdouble.h: %.15g now used to format doubles instead
                   5611:          of broken has_frac() ? "%g": "%.0f" logic (fixes issue #882)
                   5612: 
                   5613: 2013-02-21  moko
                   5614: 
                   5615:        * src/classes/table.C: _locate_name_value does not check arguments
                   5616:          count, so we check it in advance (fixes issue #905)
                   5617: 
                   5618: 2012-10-23  moko
                   5619: 
                   5620:        * buildall: old shell for and echo compatibility (for six)
                   5621: 
                   5622: 2012-10-19  moko
                   5623: 
                   5624:        * buildall: --strip added --disable-safe-mode listed in usage
                   5625: 
                   5626: 2012-10-17  misha
                   5627: 
                   5628:        * src/classes/op.C: - apply-taint should not throw "outside
                   5629:          connect" exception with sql lang now
                   5630: 
                   5631: 2012-10-17  moko
                   5632: 
                   5633:        * src/main/pa_request.C: bugfix: safe mode should be inited for
                   5634:          each request (for apache module)
                   5635: 
                   5636: 2012-09-26  moko
                   5637: 
                   5638:        * src/doc/doxygen.cfg: png -> svg
                   5639: 
                   5640: 2012-09-25  moko
                   5641: 
                   5642:        * tests/: 141.html, results/141.processed: md5 hmac added, long key
                   5643:          test added
                   5644: 
                   5645:        * src/classes/math.C: HMAC for MD5 added, bugfix for tempdigest
                   5646:          double use when key is long
                   5647: 
                   5648: 2012-09-16  moko
                   5649: 
                   5650:        * src/classes/math.C: Format -> Method Encode -> Format
                   5651: 
                   5652:        * tests/: 141.html, results/141.processed: math:digest hmac test
                   5653:          added
                   5654: 
                   5655: 2012-09-14  moko
                   5656: 
                   5657:        * src/classes/math.C: SHA1ReadDigest added and used in ^sha1.
                   5658:          ^digest[sha1|md5;data; $.encode[base64|hex] $.hmac[key]] basic
                   5659:          implementation added
                   5660: 
                   5661: 2012-09-12  moko
                   5662: 
                   5663:        * src/doc/: doxygen.cfg, footer.htm, index.dox, string.dox,
                   5664:          targets.dox: doxygen.cfg and footer.htm updated for doxygen 1.7.3
                   5665:          targets.dox and string.dox slightly actualized
                   5666: 
                   5667: 2012-08-31  moko
                   5668: 
                   5669:        * ChangeLog: now generated with patched cvs2cl.pl
                   5670: 
                   5671: 2012-07-29  moko
                   5672: 
                   5673:        * tests/285.html, src/main/execute.C, tests/results/285.processed:
                   5674:          result should be pushed after VMethodFrame destructor is called,
                   5675:          as it deletes junctions from stack params (fixes issue #868)
                   5676: 
                   5677: 2012-07-23  moko
                   5678: 
                   5679:        * INSTALL, README: buildall script usage documented, other outdated
                   5680:          info updated.
                   5681: 
                   5682:        * buildall-with-xml, buildall-without-xml: replaced by buildall
                   5683: 
                   5684: 2012-07-21  moko
                   5685: 
                   5686:        * buildall: glib does not compile when threads are disabled...
                   5687: 
                   5688:        * src/types/pa_vmail.C: g_assertion fixes for empty input
                   5689: 
                   5690:        * src/types/pa_vmail.C: yet another fix (strange GPF on object
                   5691:          unref, can't unref nested objects)
                   5692: 
                   5693:        * src/types/pa_vmail.C: another check added
                   5694: 
                   5695: 2012-07-19  moko
                   5696: 
                   5697:        * buildall: usage added
                   5698: 
                   5699:        * buildall: new buildall script that unites buildall-with-xml,
                   5700:          buildall-without-xml, --with-apache and --with-mailreceive
                   5701: 
                   5702:        * configure.in: support for static gmime and dynamic glib linking.
                   5703:          fixes for FreeBSD
                   5704: 
                   5705: 2012-07-17  moko
                   5706: 
                   5707:        * configure.in: --with-mailreceive replaced
                   5708:          --with-static-mailreceive and --with-shared-mailreceive pathlink
                   5709:          removed
                   5710: 
                   5711: 2012-07-16  moko
                   5712: 
                   5713:        * src/types/pa_vmail.C: updated to work gmime 2.6, headers now
                   5714:          capitalized, content now decoded and text content converted to
                   5715:          $request:charset.  all properties are accessed by functions, this
                   5716:          ready for dynamic load.
                   5717: 
                   5718: 2012-06-28  moko
                   5719: 
1.116     moko     5720:        * src/targets/apache/Makefile.am: fix for apache cflags for Linux
                   5721:          32 bit
1.95      moko     5722: 
                   5723: 2012-06-27  moko
                   5724: 
                   5725:        * buildall-with-xml, buildall-without-xml: fetch requires -p for
                   5726:          passive ftp
                   5727: 
                   5728:        * src/lib/ltdl/ltdl.vcproj: release build fixed
                   5729: 
                   5730:        * configure.in: 3.4.2 RC -> 3.4.2
                   5731: 
                   5732: 2012-06-22  moko
                   5733: 
                   5734:        * src/types/pa_vfile.C: returned empty mode to stated files (issue
                   5735:          #815)
                   5736: 
                   5737:        * tests/: 284.html, results/284.processed: output options test
                   5738:          (feature #265)
                   5739: 
                   5740: 2012-06-22  misha
                   5741: 
                   5742:        * tests/215.html: - little changes
                   5743: 
                   5744: 2012-06-21  moko
                   5745: 
                   5746:        * src/: classes/json.C, classes/xdoc.C, types/pa_vxdoc.C,
                   5747:          types/pa_vxdoc.h: output_options returned and used (bugfix for
                   5748:          feature #265)
                   5749: 
                   5750:        * buildall-with-xml, buildall-without-xml: --with-match-limit=10000
                   5751:          breaks long .*, default 10M restored. (issue #216)
                   5752: 
                   5753:        * tests/: 283.html, results/283.processed: test for issue #815
                   5754:          added
                   5755: 
                   5756:        * src/types/: pa_vfile.C, pa_vstring.C: bugfix: ^#0D not altered
                   5757:          again, cstrm not required.
                   5758: 
                   5759:        * src/lib/ltdl/: argz.c, ltdl.c, libltdl/lt__glibc.h: fixes for
                   5760:          Win32 and broken FreeBSD (issue #45)
                   5761: 
                   5762:        * src/lib/ltdl/ltdl.vcproj: preopen.c and config.h removed
                   5763: 
                   5764:        * src/main/pa_string.C: warnings war
                   5765: 
                   5766:        * src/: classes/mail.C, include/pa_dir.h, include/pa_http.h,
                   5767:          lib/json/JSON_parser.h, lib/smtp/smtp.h, main/pa_random.C,
                   5768:          main/pa_socks.C, targets/apache/pa_threads.C,
                   5769:          targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
                   5770:          types/pa_vstatus.C: compilation under cygwin fixed
                   5771: 
                   5772: 2012-06-19  moko
                   5773: 
                   5774:        * src/lib/ltdl/: config_fixed.h, ltdl.vcproj: compilation under
                   5775:          Windows fixed
                   5776: 
                   5777:        * parser3.sln: removed antique pcre_ctype
                   5778: 
                   5779:        * src/include/pa_config_fixed.h: required for INT_MAX / UINT_MAX
                   5780: 
                   5781:        * src/include/pa_config_fixed.h: undefined reference to
                   5782:          __imp__pcre_* fix for Windows
                   5783: 
                   5784:        * src/: include/pa_charset.h, lib/pcre/Makefile.am,
1.116     moko     5785:          lib/pcre/pa_pcre_internal.h, lib/pcre/pcre_internal.h:
                   5786:          pcre_internal.h -> pa_pcre_internal.h for Windows compatibility
                   5787:          (win32/pcre has own copy of pcre_internal.h _pcre_default_tables
                   5788:          define fixed
1.95      moko     5789: 
                   5790: 2012-06-18  moko
                   5791: 
                   5792:        * src/classes/memcached.C: flush -> clear
                   5793: 
                   5794:        * src/classes/memcached.C: memcached does not support quotes even
                   5795:          in server name
                   5796: 
                   5797:        * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
                   5798:          lib/memcached/pa_memcached.h, types/pa_vmemcached.C: version()
                   5799:          called on open to check servers existance.  $.key(true) syntax
                   5800:          now supported
                   5801: 
                   5802: 2012-06-17  moko
                   5803: 
                   5804:        * src/include/: pa_config_fixed.h, pa_config_includes.h: old stuff
                   5805:          cleanup
                   5806: 
                   5807:        * src/classes/table.C, tests/282.cfg, tests/282.html,
                   5808:          tests/results/282.processed: encloser at the EOF bug fixed,
                   5809:          incorrectly enclosed data now processed more logicaly (fixes
                   5810:          #339)
                   5811: 
                   5812: 2012-06-15  moko
                   5813: 
                   5814:        * buildall-without-xml: sync with buildall-with-xml
                   5815: 
                   5816:        * buildall-with-xml: download auto-detected between fetch and curl
                   5817: 
                   5818:        * configure.in: --with-gc and --with-pcre now also processed
                   5819:          correctly
                   5820: 
1.116     moko     5821:        * aclocal.m4, configure, src/include/pa_config_auto.h.in: now
                   5822:          aclocal -I src/lib/ltdl/m4/ && autoheader && automake && autoconf
                   5823:          should be run on rol1 using automake / aclocal (GNU automake)
                   5824:          1.11.1 autoconf (GNU Autoconf) 2.68
1.95      moko     5825: 
                   5826:        * configure.in: new PARSER_VERSION logic
                   5827: 
                   5828:        * src/include/pa_version.h: new pa_version.h logic
                   5829: 
                   5830:        * src/: classes/curl.C, classes/file.C, classes/image.C,
                   5831:          classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
                   5832:          types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C:
                   5833:          feols_normalized -> fis_text_content set_binary added
                   5834: 
                   5835:        * src/targets/cgi/parser3.C: gcc compilation warnings fixed
                   5836: 
                   5837: 2012-06-15  misha
                   5838: 
                   5839:        * src/: classes/curl.C, classes/file.C, classes/image.C,
                   5840:          classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
                   5841:          types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C: -
                   5842:          ^file::create[text;content] EOLs in content now is normalized. (
                   5843:          new feature: #815 )
                   5844: 
                   5845: 2012-06-15  moko
                   5846: 
                   5847:        * configure.in: --disable-version-update added to disable version
                   5848:          update with host information (for debian package) whitespace
                   5849:          optimized
                   5850: 
                   5851:        * configure.in: version changed to 3.4.2 RC no-pic added for
                   5852:          libtool
                   5853: 
                   5854:        * src/include/pa_version.h: Nice pa_version.h default. Please keep
                   5855:          it.
                   5856: 
                   5857: 2012-06-14  moko
                   5858: 
                   5859:        * src/classes/hash.C, src/types/pa_vhash.h, tests/281.html,
                   5860:          tests/results/281.processed: "hash flocked" error removed for
                   5861:          safe operations like ^h._count[] ( new feature: #335 )
                   5862: 
1.116     moko     5863:        * src/targets/apache/Makefile.am: libmod_parser3 -> mod_parser3
1.95      moko     5864: 
                   5865:        * buildall-with-xml, buildall-without-xml: --with-static -> --with
                   5866: 
                   5867:        * configure.in: --with-static/shared xml replaced with --with-xml,
                   5868:          xml compilation check added
                   5869: 
                   5870:        * configure.in: --with-static/shared-gc, --with-static-pcre are
                   5871:          replaced with --with-gc and --with-pcre test for pcre linking
                   5872:          added
                   5873: 
                   5874: 2012-06-13  moko
                   5875: 
                   5876:        * configure.in: apxs2 check optimized
                   5877: 
                   5878:        * src/targets/cgi/Makefile.am: preserve-dup-deps requires .a, not
                   5879:          .la, includes optimized
                   5880: 
                   5881:        * buildall-with-xml: --with-pic looks better for -fPIC
                   5882: 
                   5883:        * configure.in: switched to convenience library in static linking
                   5884: 
                   5885:        * src/targets/apache/Makefile.am: switched to convenience library
                   5886:          usage to avoid libtool warnings
                   5887: 
                   5888:        * src/lib/: cord/Makefile.am, gd/Makefile.am, json/Makefile.am,
                   5889:          md5/Makefile.am, memcached/Makefile.am, sdbm/Makefile.am,
                   5890:          smtp/Makefile.am: switched to convenience library usage
                   5891: 
                   5892:        * src/sql/Makefile.am: pa_sql_driver.h should be in includes
                   5893: 
                   5894:        * src/targets/apache/Makefile.am: updated for libtool usage
                   5895: 
                   5896:        * buildall-without-xml: --with-included-ltdl added
                   5897: 
                   5898:        * buildall-without-xml: sync with buildall-with-xml
                   5899: 
                   5900:        * buildall-with-xml: --with-included-ltdl added $cflags added for
                   5901:          -fPIC for x64 $download added for wget success check added
                   5902: 
                   5903:        * buildall-without-xml: --with-dynamic-stdcpp removed
                   5904: 
                   5905:        * configure.in: disable-static returned
                   5906: 
                   5907:        * src/targets/cgi/Makefile.am: Automake 1.9 does not support
                   5908:          LIBTOOLFLAGS
                   5909: 
                   5910: 2012-06-12  moko
                   5911: 
                   5912:        * configure.in, src/targets/cgi/Makefile.am: disable-static not
                   5913:          compatible with LIBTOOLFLAGS for unknown reasons
                   5914: 
                   5915:        * buildall-with-xml: --with-dynamic-stdcpp removed
                   5916: 
                   5917:        * configure.in: static/dynamic -lstdc++ linking option removed
                   5918:          apxs2 check added
                   5919: 
                   5920:        * src/targets/cgi/Makefile.am: static/dynamic -lstdc++ linking
                   5921:          option removed
                   5922: 
                   5923: 2012-06-10  moko
                   5924: 
                   5925:        * src/targets/cgi/Makefile.am: --preserve-dup-deps libtool option
                   5926:          added
                   5927: 
                   5928:        * src/targets/cgi/pp3.cmd: old PAF stuff
                   5929: 
1.116     moko     5930:        * Makefile.am: ACLOCAL_AMFLAGS = -I src/lib/ltdl/m4 added and some
                   5931:          beauty
1.95      moko     5932: 
                   5933:        * depcomp: from libtool 2.4.2
                   5934: 
                   5935:        * configure.in: ltdl directory removed, it has correct Makefile.in
                   5936: 
                   5937: 2012-06-09  moko
                   5938: 
1.116     moko     5939:        * Makefile.am, aclocal.m4, config.guess, config.sub, configure,
                   5940:          install-sh, ltmain.sh, missing, src/include/pa_config_auto.h.in:
1.95      moko     5941:          autogenerated files updated after libtool update
                   5942: 
1.116     moko     5943:        * src/lib/ltdl/: COPYING.LIB, Makefile.am, README, acinclude.m4,
                   5944:          aclocal.m4, argz.c, argz_.h, config-h.in, config.h,
1.95      moko     5945:          config_auto.h.in, config_fixed.h, configure, configure.ac,
                   5946:          configure.in, lt__alloc.c, lt__dirent.c, lt__strl.c,
                   5947:          lt_dlloader.c, lt_error.c, ltdl.c, ltdl.h, slist.c,
                   5948:          config/compile, config/config.guess, config/config.sub,
                   5949:          config/depcomp, config/install-sh, config/ltmain.sh,
                   5950:          config/missing, libltdl/lt__alloc.h, libltdl/lt__dirent.h,
                   5951:          libltdl/lt__glibc.h, libltdl/lt__private.h, libltdl/lt__strl.h,
                   5952:          libltdl/lt_dlloader.h, libltdl/lt_error.h, libltdl/lt_system.h,
                   5953:          libltdl/slist.h, loaders/dld_link.c, loaders/dlopen.c,
                   5954:          loaders/dyld.c, loaders/load_add_on.c, loaders/loadlibrary.c,
                   5955:          loaders/preopen.c, loaders/shl_load.c, m4/argz.m4, m4/libtool.m4,
                   5956:          m4/ltdl.m4, m4/ltoptions.m4, m4/ltsugar.m4, m4/ltversion.m4,
                   5957:          m4/lt~obsolete.m4: libtool updated to version 2.4.2
                   5958: 
                   5959:        * configure.in: preparation for new libtool
                   5960: 
                   5961:        * configure.in: Some beauty added :)
                   5962: 
                   5963:        * src/targets/apache/Makefile.am: := -> =
                   5964: 
                   5965:        * src/lib/pcre/: Makefile.am, config.h: config.h removed once
                   5966:          again. :)
                   5967: 
                   5968:        * src/include/pa_config_includes.h, configure.in: limits.h added,
                   5969:          previously was taken from pcre_internal.h. :)
                   5970: 
                   5971:        * src/lib/pcre/Makefile.am: config.h returned
                   5972: 
                   5973:        * src/lib/pcre/config.h: still need this. :)
                   5974: 
                   5975:        * src/lib/pcre/pcre_internal.h: extracts from real pcre_internal.h
                   5976: 
                   5977:        * configure.in: --with-charsets removed; --with-mysql-client & co
                   5978:          removed
                   5979: 
                   5980:        * buildall-with-xml, buildall-without-xml: pcre_internal.h extracts
                   5981:          now in parser tree, no need to copy
                   5982: 
                   5983:        * src/lib/pcre/: Makefile.am, config.h, ibm-1250.ucm, ibm-1251.ucm,
                   5984:          ibm-1254.ucm, ibm-1257.ucm, pcre_parser_ctype.c,
                   5985:          pcre_parser_ctype.vcproj, ruspart_win2koi.pl, win-koi.tab:
                   5986:          debian/patches/101_pcre.patch - local copy of pcre_internal.h
                   5987:          extracts now used old trash removed
                   5988: 
                   5989:        * etc/parser3.charsets/Makefile.am: charsets now in share
                   5990:          (debian/patches/104_automake.patch) + all charsets are copied
                   5991: 
                   5992:        * buildall-with-xml, buildall-without-xml: curl option removed +
                   5993:          extra arguments now supported
                   5994: 
                   5995: 2012-06-08  misha
                   5996: 
                   5997:        * src/classes/table.C: - one params.as_hash usage was rolled back:
                   5998:          the 2nd option in ^table.hash[] could be hash or table so
                   5999:          .as_hash will throw an exception when table option is specified
                   6000: 
                   6001:        * src/: classes/curl.C, classes/file.C, classes/hash.C,
                   6002:          classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
                   6003:          classes/table.C, classes/void.C, classes/xdoc.C,
                   6004:          include/pa_exception.h, types/pa_vmethod_frame.C,
                   6005:          types/pa_vmethod_frame.h: - MethodParams::as_hash is optimized
                   6006:          and improved (whitespaces are allowed as empty options) -
                   6007:          MethodParams::as_table is added - above methods are used for
                   6008:          parsing methods' options ( new feature: #9 )
                   6009: 
                   6010:        * src/types/: pa_vclass.C, pa_vclass.h: - method get_hash is added
                   6011:          to vclass. now class fields can be accessible as a hash:
                   6012:          $h[^hash::create[$asd:CLASS]]
                   6013: 
                   6014:        * src/types/: pa_vhash.h, pa_vhashfile.h: - vhash and vhashfile now
                   6015:          have get_fields method so their fields can be accessed with
                   6016:          ^reflection:fields[...] & ^reflection:field[...]
                   6017: 
                   6018: 2012-06-06  misha
                   6019: 
                   6020:        * tests/280.html: - tests for
                   6021:          ^reflection:method[obj-or-class;method],
                   6022:          ^reflection:field[obj-or-class;field] and
                   6023:          ^reflection:fields[obj-or-class] are added
                   6024: 
                   6025: 2012-06-05  misha
                   6026: 
                   6027:        * src/classes/reflection.C: - ^reflection:method[class or
                   6028:          object;method name] and ^reflection:field[class or object;field
                   6029:          name] are added
                   6030: 
                   6031:        * src/types/pa_vstateless_class.C: - Method::get_vjunction method
                   6032:          is used
                   6033: 
                   6034:        * src/types/pa_method.h: - Method::as_vjunction method is added
                   6035: 
                   6036: 2012-06-05  moko
                   6037: 
1.116     moko     6038:        * src/targets/Makefile.am: cgi now build with apache module
1.95      moko     6039: 
                   6040:        * src/classes/memcached.C: flish ttl fixed
                   6041: 
                   6042: 2012-06-04  moko
                   6043: 
                   6044:        * src/classes/json.C, src/classes/op.C, tests/279.html,
                   6045:          tests/results/279.processed: ^json:parse[] now supports $.taint
                   6046:          option (new feature #833)
                   6047: 
                   6048: 2012-06-04  misha
                   6049: 
                   6050:        * src/: include/pa_common.h, main/pa_common.C, types/pa_vcookie.C:
                   6051:          - search_stop method was moved from pa_vcookie.C to pa_common.C
                   6052: 
                   6053: 2012-06-03  misha
                   6054: 
                   6055:        * src/main/pa_http.C: - ^file:load[...;http://...] - all received
                   6056:          cookies are parced and stored into $.cookies ( new feature: #31 )
                   6057: 
                   6058: 2012-05-30  misha
                   6059: 
                   6060:        * tests/: 182_dir/a3.p, 182_dir/a4.p, 182.html: - test for adding
                   6061:          incomplete class into a scope while @USE is found
                   6062: 
                   6063:        * src/main/compile.y: - add incomplete class into a scope while
                   6064:          @USE and @CLASS instructions are found ( bugfix: #838 )
                   6065: 
                   6066: 2012-05-30  moko
                   6067: 
                   6068:        * src/types/pa_vclass.C, tests/278.html,
                   6069:          tests/results/278.processed: removed "property has no getter
                   6070:          method" exception when GET_DEFAULT present (fixes #269)
                   6071: 
                   6072:        * src/classes/json.C, tests/277.html: ^json:string[], $.default ->
                   6073:          $._default
                   6074: 
                   6075: 2012-05-29  moko
                   6076: 
                   6077:        * src/types/pa_vvoid.h: $STRICT-VARS(true) implemented to check
                   6078:          uninitialized values usage (new feature: #154)
                   6079: 
                   6080: 2012-05-28  moko
                   6081: 
                   6082:        * tests/277.html, src/classes/json.C, src/classes/reflection.C,
                   6083:          src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
                   6084:          src/types/pa_vdate.h, src/types/pa_vdouble.h,
                   6085:          src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vint.h,
                   6086:          src/types/pa_vobject.C, src/types/pa_vobject.h,
                   6087:          src/types/pa_vstring.h, src/types/pa_vtable.C,
                   6088:          tests/results/277.processed, src/types/pa_vtable.h,
                   6089:          src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h:
                   6090:          ^json:string[$o; $.default[$method]] implemented for VObject (new
                   6091:          feature #803)
                   6092: 
                   6093:        * src/classes/json.C, src/lib/json/JSON_parser.h, tests/277.html,
                   6094:          tests/results/277.processed: json numbers are now treated as
                   6095:          double ( new feature: #834 )
                   6096: 
                   6097:        * src/: classes/math.C, include/pa_string.h, main/pa_charset.C,
                   6098:          main/pa_string.C, types/pa_vdouble.h, types/pa_vint.h: pa_atoui
                   6099:          added for out of range checks, zero division in vint/vdouble
                   6100:          check added ( fixes #832 )
                   6101: 
                   6102:        * tests/: 275.html, results/275.processed: tests for pa_atoui added
                   6103:          ( fixes #832 )
                   6104: 
                   6105: 2012-05-28  misha
                   6106: 
                   6107:        * buildall-with-xml: - --without-lzma option is added to libxml2
                   6108:          configure
                   6109: 
                   6110:        * tests/256.html: - test for ^json:string[-file-;$.file[stat]] is
                   6111:          added - tests for unsupported values for options $.file, $.table
                   6112:          and $.date are added
                   6113: 
                   6114:        * src/: classes/json.C, types/pa_value.h: - ^json:string[...] now
                   6115:          accepts "stat" $.file[] option's value in addition to existed
                   6116:          "text" and "base64" ( new feature: #835 )
                   6117: 
                   6118:        * tests/276.html: - test for
                   6119:          ^reflection:delete[$object-or-class;field-name]
                   6120: 
                   6121:        * src/classes/reflection.C: -
                   6122:          ^reflection:delete[$object-or-class;field-name] is added ( new
                   6123:          feature: #268 )
                   6124: 
                   6125: 2012-05-27  misha
                   6126: 
                   6127:        * buildall-with-xml: - libxml2 2.7.8 => 2.8.0
                   6128: 
                   6129: 2012-05-24  misha
                   6130: 
                   6131:        * src/include/pa_common.h: - method lastposafter was removed
                   6132: 
                   6133:        * src/classes/file.C: - use strrpbrk & rskipchars instead of
                   6134:          lastposafter - ^file:dirname[] & Co proper handle windows file
                   6135:          paths ( bug fix: #783 ) - ^file:dirname[] & ^file:basename[] now
                   6136:          work as *nix commands
                   6137: 
                   6138:        * src/main/pa_request.C: - use strrpbrk instead of lastposafter
                   6139: 
                   6140:        * src/: include/pa_string.h, main/pa_string.C: - strrpbrk &
                   6141:          rskipchars were added
                   6142: 
                   6143:        * tests/270.html: - more tests for ^file:find[]
                   6144: 
                   6145:        * tests/065.html: - more tests for ^file:dirname[] & Co
                   6146: 
                   6147:        * src/include/pa_version.h: - must be "win32" here. it is
                   6148:          auto-generated on *nix
                   6149: 
                   6150: 2012-05-24  moko
                   6151: 
                   6152:        * src/classes/math.C: ^math:convert[] now supports uint32 and
                   6153:          throws overflow exception ( new feature: #830 )
                   6154: 
                   6155:        * tests/: 275.html, results/275.processed: test for ^math:convert[]
                   6156:          uint32 support and overflow added ( new feature: #830 )
                   6157: 
                   6158: 2012-05-23  moko
                   6159: 
                   6160:        * src/: classes/table.C, types/pa_value.h, types/pa_vbool.h,
                   6161:          types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
                   6162:          types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
                   6163:          types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
                   6164:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
                   6165:          types/pa_vregex.h, types/pa_vstateless_class.C,
                   6166:          types/pa_vstateless_class.h, types/pa_vstring.h,
                   6167:          types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
                   6168:          types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: bool
                   6169:          "return string as-is" removed from as_expr_result. ( new feature:
                   6170:          #831 )
                   6171: 
                   6172:        * tests/results/244.processed: test changed after bug #782 fix
                   6173:          commited
                   6174: 
                   6175:        * tests/results/229.processed: test results for bug #782 commited
                   6176: 
                   6177:        * tests/: 254.html, results/254.processed: uid now just compared,
                   6178:          not printed. :)
                   6179: 
                   6180: 2012-05-20  moko
                   6181: 
                   6182:        * src/classes/reflection.C: ^reflection:uid[$object] added ( new
                   6183:          feature: #341 )
                   6184: 
                   6185:        * tests/: 254.html, results/254.processed: test for
                   6186:          ^reflection:uid[] added
                   6187: 
                   6188:        * tests/: 254.html, results/254.processed: test for
                   6189:          ^reflection:uid[$obj] added
                   6190: 
                   6191: 2012-05-17  misha
                   6192: 
                   6193:        * src/main/untaint.C: - do not replace ' char by _26 while
                   6194:          exploding filespec-tainting ( new feature: #829 )
                   6195: 
                   6196: 2012-05-12  moko
                   6197: 
                   6198:        * src/types/pa_vvoid.h: is_string now also checked, but get_* -
                   6199:          not.
                   6200: 
                   6201: 2012-05-08  moko
                   6202: 
                   6203:        * src/types/pa_vmethod_frame.h: bug #782 fixed
                   6204: 
                   6205:        * tests/229.html: test for bug #782
                   6206: 
                   6207:        * tests/results/259.processed, src/main/pa_request.C,
                   6208:          src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
                   6209:          src/types/pa_vstring.h, src/types/pa_vvoid.C,
                   6210:          src/types/pa_vvoid.h: feature #154 - first empty param now
                   6211:          string; defined locals are empty strings; $STRICT-VARS(true)
                   6212:          added
                   6213: 
                   6214: 2012-04-27  moko
                   6215: 
1.116     moko     6216:        * src/targets/apache/Makefile.am:
1.95      moko     6217:          ../../lib/memcached/libmemcached.a added
                   6218: 
                   6219: 2012-04-27  misha
                   6220: 
                   6221:        * buildall-with-xml, buildall-without-xml: - prce 8.12 => pcre 8.30
                   6222:          ( #827 )
                   6223: 
                   6224: 2012-04-25  moko
                   6225: 
                   6226:        * src/: classes/json.C, classes/memcached.C,
                   6227:          lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
                   6228:          types/pa_vmemcached.C, types/pa_vmemcached.h: memcached_add
                   6229:          implemented.
                   6230: 
                   6231:        * src/classes/curl.C: stderr -> f_stderr for Windows compatibility
                   6232: 
                   6233: 2012-04-23  moko
                   6234: 
                   6235:        * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
                   6236:          lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
                   6237:          types/pa_vmemcached.h: open allows options hash for new
                   6238:          memcached(options) function
                   6239: 
                   6240:        * src/classes/curl.C: check_safe_mode added, stderr now rewritten,
                   6241:          not appended
                   6242: 
                   6243: 2012-04-21  moko
                   6244: 
                   6245:        * src/classes/curl.C: '' added. :)
                   6246: 
                   6247:        * src/classes/classes.vcproj: new curl.h location
                   6248: 
                   6249:        * src/classes/curl.C: verbose output redirection from stderr to
                   6250:          file curl option added
                   6251: 
                   6252: 2012-04-20  moko
                   6253: 
                   6254:        * src/: classes/curl.C, lib/curl/curl.h: lib/curl/curl.h now
                   6255:          contains what we need from curl, #ifdef HAVE_CURL removed
                   6256: 
1.116     moko     6257:        * configure, configure.in, src/classes/Makefile.am,
1.95      moko     6258:          src/include/pa_config_auto.h.in, src/include/pa_version.h,
1.116     moko     6259:          src/lib/Makefile.am, src/lib/curl/Makefile.am,
                   6260:          src/lib/curl/curl.h: curl.h header now in src/lib/curl, not
1.95      moko     6261:          configure option
                   6262: 
                   6263: 2012-04-19  moko
                   6264: 
                   6265:        * src/: classes/double.C, classes/inet.C, classes/int.C,
                   6266:          classes/string.C, lib/gc/include/gc_allocator.h,
                   6267:          types/pa_vform.C: PVS-Studio detected errors fixes, unused
                   6268:          options from sql_result_string removed. (closes issue #468)
                   6269: 
                   6270:        * src/types/pa_vmemcached.C: empty string fix
                   6271: 
                   6272:        * src/types/: pa_value.C, pa_value.h, pa_vmemcached.C,
                   6273:          pa_vstring.C, pa_vstring.h: serialization helpers moved to
                   6274:          pa_vmemcached.C
                   6275: 
                   6276: 2012-04-18  moko
                   6277: 
                   6278:        * src/targets/apache/mod_parser3.c: "Parser3 module requires
                   6279:          apache2-mpm-prefork" error displayed in threaded mpm.
                   6280: 
                   6281:        * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
                   6282:          pa_setup_module_cells delayed to avoid GPF on init with php5-xsl
                   6283:          installed (issue #354)
                   6284: 
                   6285: 2012-04-16  moko
                   6286: 
                   6287:        * src/types/pa_vmemcached.C: call to memcached_result_create and
                   6288:          memcached_result_free removed
                   6289: 
                   6290: 2012-04-14  moko
                   6291: 
                   6292:        * src/lib/memcached/pa_memcached.h: uint32_t for Windows defined
                   6293: 
                   6294:        * src/types/pa_vmemcached.C: check_key added and used
                   6295: 
                   6296: 2012-04-13  moko
                   6297: 
                   6298:        * src/: include/pa_string.h, types/pa_value.C, types/pa_value.h,
                   6299:          types/pa_vmemcached.C, types/pa_vstring.C, types/pa_vstring.h:
                   6300:          Serialization_data now added and used, VString now serialized
                   6301:          with languages into memcached.
                   6302: 
                   6303: 2012-03-28  moko
                   6304: 
                   6305:        * src/: types/pa_vmemcached.C, lib/memcached/pa_memcached.C,
                   6306:          lib/memcached/pa_memcached.h: result lengths added
                   6307: 
                   6308: 2012-03-27  moko
                   6309: 
                   6310:        * src/types/pa_vmemcached.C: strdup added
                   6311: 
                   6312: 2012-03-24  moko
                   6313: 
                   6314:        * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
                   6315:          lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
                   6316:          types/pa_vmemcached.h: memcached: mget, flush, fttl added
                   6317: 
                   6318: 2012-03-20  moko
                   6319: 
1.116     moko     6320:        * configure, configure.in: Makefiles.in updated for memcached
1.95      moko     6321: 
                   6322:        * src/targets/cgi/Makefile.am: cleanup
                   6323: 
                   6324:        * src/: types/Makefile.am, types/pa_vmemcached.C,
                   6325:          types/pa_vmemcached.h, targets/cgi/Makefile.am: memcached initial
                   6326: 
                   6327:        * src/: classes/Makefile.am, classes/memcached.C,
                   6328:          lib/memcached/Makefile.am, lib/memcached/constants.h,
                   6329:          lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
                   6330:          lib/memcached/types.h, lib/Makefile.am: memcached initial
                   6331: 
                   6332: 2012-03-16  moko
                   6333: 
                   6334:        * src/main/execute.C: ident now works under Linux + ident displays
                   6335:          filenames (closes issue #818)
                   6336: 
1.116     moko     6337:        * src/types/: Makefile.am, pa_vmethod_frame_global.h,
1.95      moko     6338:          pa_vmethod_frame_local.h: cleanup: pa_vmethod_frame_global.h
                   6339:          pa_vmethod_frame_local.h removed
                   6340: 
                   6341:        * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
                   6342:          classes/classes.h, classes/curl.C, classes/date.C,
                   6343:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   6344:          classes/hashfile.C, classes/image.C, classes/inet.C,
                   6345:          classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
                   6346:          classes/memory.C, classes/op.C, classes/reflection.C,
                   6347:          classes/regex.C, classes/response.C, classes/string.C,
                   6348:          classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
                   6349:          classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
                   6350:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   6351:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   6352:          include/pa_dictionary.h, include/pa_dir.h,
                   6353:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   6354:          include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
                   6355:          include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
                   6356:          include/pa_pool.h, include/pa_random.h, include/pa_request.h,
                   6357:          include/pa_request_charsets.h, include/pa_request_info.h,
                   6358:          include/pa_sapi.h, include/pa_socks.h,
                   6359:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   6360:          include/pa_stack.h, include/pa_string.h,
                   6361:          include/pa_stylesheet_connection.h,
                   6362:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   6363:          include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
                   6364:          include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
                   6365:          lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
                   6366:          lib/md5/pa_md5c.c, lib/pcre/pcre_parser_ctype.c,
                   6367:          lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
                   6368:          lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
                   6369:          main/compile.tab.C, main/compile.y, main/compile_tools.C,
                   6370:          main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
                   6371:          main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
                   6372:          main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
                   6373:          main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
                   6374:          main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
                   6375:          main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
                   6376:          main/pa_string.C, main/pa_stylesheet_connection.C,
                   6377:          main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
                   6378:          main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
                   6379:          main/helpers/simple_folding.pl, sql/pa_sql_driver.h,
                   6380:          targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
                   6381:          targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
                   6382:          targets/cgi/pa_threads.C, targets/cgi/parser3.C,
                   6383:          targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
                   6384:          types/pa_junction.h, types/pa_method.h, types/pa_property.h,
                   6385:          types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
                   6386:          types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
                   6387:          types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
                   6388:          types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
                   6389:          types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
                   6390:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
                   6391:          types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
                   6392:          types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
                   6393:          types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
                   6394:          types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
                   6395:          types/pa_vmemory.h, types/pa_vmethod_frame.C,
                   6396:          types/pa_vmethod_frame.h, types/pa_vmethod_frame_global.h,
                   6397:          types/pa_vmethod_frame_local.h, types/pa_vobject.C,
                   6398:          types/pa_vobject.h, types/pa_vregex.C, types/pa_vregex.h,
                   6399:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
                   6400:          types/pa_vresponse.h, types/pa_vstateless_class.C,
                   6401:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   6402:          types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
                   6403:          types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
                   6404:          types/pa_vvoid.C, types/pa_vvoid.h, types/pa_vxdoc.C,
                   6405:          types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
                   6406:          types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
                   6407:          ident now works under Linux + ident displays filenames (closes
                   6408:          issue #818) Copyright updated
                   6409: 
                   6410: 2012-03-13  moko
                   6411: 
                   6412:        * src/main/pa_string.C: compilation fix for feature #741
                   6413: 
                   6414: 2012-03-09  misha
                   6415: 
                   6416:        * tests/193.html: - tests for ^string:base64[encoded] are updated
                   6417: 
                   6418:        * src/main/pa_common.C: - ^string:base64[encoded;$.strict(true)]
                   6419:          now detects invalid base64 chars in the middle of encoded stricg
                   6420:          ( new feature: #55 )
                   6421: 
                   6422:        * src/include/pa_exception.h: - new exception type for base64
                   6423:          decoding is added
                   6424: 
                   6425: 2012-03-06  misha
                   6426: 
                   6427:        * tests/274.html: - tests for ^date::today[] and
                   6428:          ^date.sql-string[datetime|date|time] are added
                   6429: 
                   6430:        * src/classes/date.C: - constructor ^date::today[] is added ( new
                   6431:          feature: #811 ) - ^date.sql-string[] now can accept one param --
                   6432:          strings "datetime", "date" or "time" - comments tidying up
                   6433: 
                   6434:        * src/types/pa_vdate.h: - get_sql_string now can print datetime,
                   6435:          date and time
                   6436: 
                   6437: 2012-03-03  misha
                   6438: 
                   6439:        * tests/193.html: - tests for
                   6440:          ^string:base64[encoded;$.strict(true)] are added
                   6441: 
                   6442:        * tests/results/auto.p: - try-catch operator is added
                   6443: 
                   6444:        * src/: classes/file.C, classes/string.C, include/pa_common.h,
                   6445:          main/pa_common.C: - $.strict(true|false) option is added to
                   6446:          base64 decode methods ( new feature: #55 )
                   6447: 
                   6448:        * src/main/pa_common.C: - base64 decode memory usage was decreased
                   6449:          ( new feature: #819 )
                   6450: 
                   6451: 2012-02-28  moko
                   6452: 
                   6453:        * src/classes/hash.C: ident test
                   6454: 
                   6455: 2012-02-27  misha
                   6456: 
                   6457:        * src/classes/file.C: - PARSER_VaRSION => PARSER_VeRSION
                   6458: 
                   6459: 2012-01-08  misha
                   6460: 
                   6461:        * tests/273.html: - tests for ^string.replace[from;to] are added
                   6462: 
                   6463:        * src/: classes/string.C, include/pa_dictionary.h,
                   6464:          main/pa_dictionary.C, main/pa_string.C: -
                   6465:          ^string.replace[from;to] is added ( new feature: #741 ) -
                   6466:          ^string.replace[one subst here] is slightly optimized
                   6467: 
                   6468: 2011-12-07  misha
                   6469: 
                   6470:        * src/classes/table.C: - $t[^table::create{$empty}] now creates
                   6471:          named table with one empty column ( bugfix: #63 )
                   6472: 
                   6473: 2011-11-30  misha
                   6474: 
                   6475:        * src/classes/json.C: - it's possible to set user's method for
                   6476:          parsing arrays: ^json:parse[...;$.array[$hook]] ( new feature:
                   6477:          #763 )
                   6478: 
                   6479:        * tests/272.html: - test for ^json:parse[...;$.array[$hook]]
                   6480: 
                   6481: 2011-11-23  misha
                   6482: 
                   6483:        * src/: classes/curl.C, classes/file.C, classes/image.C,
                   6484:          classes/table.C, classes/xdoc.C, types/pa_vfile.C,
                   6485:          types/pa_vfile.h, types/pa_vform.C: - constructor
                   6486:          ^file::create[mode;filename;content[;options]] now accepts binary
                   6487:          mode and file-content - new constructor's format:
                   6488:          ^file::create[string-or-file-content[;$.name[filename]
                   6489:          $.mode[text|binary] $.content-type[...] $.charset[...]]] ( new
                   6490:          feature: #65 )
                   6491: 
                   6492:        * src/: include/pa_request.h, main/pa_request.C: - new method
                   6493:          mime_type_of(const String*) is added
                   6494: 
                   6495:        * src/include/pa_exception.h: - new exception constant
                   6496:          FILE_NAME_MUST_BE_SPECIFIED is added
                   6497: 
                   6498:        * src/classes/table.C: - bug with negative offset transformed into
                   6499:          a feature. it means pointing to a row from the end of the table (
                   6500:          new feature: #810 )
                   6501: 
                   6502: 2011-11-19  misha
                   6503: 
                   6504:        * src/classes/table.C: - íåñêîëüêî signed/unsigned warnings óáðàíû
                   6505:          â ìåòîäå _select ( new feature: #810 )
                   6506: 
                   6507:        * src/types/pa_vxdoc.C: - checkout if $.encoding and $.charset
                   6508:          options were specified together is simplified
                   6509: 
                   6510: 2011-11-12  misha
                   6511: 
                   6512:        * src/main/pa_request.C: - forgotten fix for escaping filename in
                   6513:          HTTP content-disposition header (a part of bug #361 )
                   6514: 
                   6515:        * src/classes/json.C: - ^json:string[$.class_name[jmethod]] now
                   6516:          checks for ancestors' classes as well ( new feature: #456 )
                   6517: 
                   6518:        * src/classes/op.C: - exceptions for ^break[] and ^continue[]
                   6519:          "without cycle" now have types "parser.break" and
                   6520:          "parser.continue" instead of "parser.runtime" ( new feature: #799
                   6521:          )
                   6522: 
                   6523: 2011-11-11  misha
                   6524: 
                   6525:        * tests/results/: 099.processed, 100.processed, 205.processed,
                   6526:          237.processed: - since bug #361 was fixed the content of filename
                   6527:          in HTTP headers is quoted
                   6528: 
                   6529:        * tests/results/270.processed: - result for test 270
                   6530: 
                   6531:        * tests/: 065.html, results/065.processed: - more tests for
                   6532:          ^file:basename[] & Co were added
                   6533: 
                   6534:        * tests/270_dir/: 270.txt, subdir/270.txt: - stuff for 270.html
                   6535: 
                   6536:        * tests/270.html: - tests for ^file:find[] are added
                   6537: 
                   6538:        * src/types/pa_vxdoc.C: - now it's possible to specify encoding
                   6539:          using option $.charset. option $.engoding is still supported but
                   6540:          these options can not be specified together
                   6541: 
                   6542:        * src/classes/xdoc.C: - charset.isUTF8 is used instead of
                   6543:          comparation charset name with string "UTF-8" ( bugfix: #759 )
                   6544: 
                   6545: 2011-10-11  misha
                   6546: 
                   6547:        * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h: - new
                   6548:          option was added: ^xdoc.file[$.name[èìÿ ôàéëà]] (new feature:
                   6549:          #622)
                   6550: 
                   6551: 2011-09-30  misha
                   6552: 
                   6553:        * src/types/pa_vrequest.C: - saving empty $request:post-body causes
                   6554:          exception "saving stat-ed file" ( bugfix: #395 )
                   6555: 
                   6556: 2011-05-30  misha
                   6557: 
                   6558:        * src/classes/string.C: - fixed bug which was added with
                   6559:          params.as_hash into string:sql
                   6560: 
                   6561: 2011-05-29  misha
                   6562: 
                   6563:        * src/types/pa_value.C: - filename in content-disposition header
                   6564:          must be quoted ( bugfix: #361 )
                   6565: 
                   6566: 2011-05-27  misha
                   6567: 
                   6568:        * src/classes/: image.C, xdoc.C: - $.mode must be set for newly
                   6569:          created file
                   6570: 
                   6571:        * src/classes/: hash.C, mail.C: - little tunning with get_hash
                   6572:          usage
                   6573: 
                   6574:        * src/include/pa_exception.h: - one more string for exception was
                   6575:          added
                   6576: 
                   6577: 2011-05-25  misha
                   6578: 
                   6579:        * tests/269.html: - tests for checking input params in some dom
                   6580:          methods
                   6581: 
                   6582:        * src/classes/: xdoc.C, xnode.C: - validation of some input params
                   6583:          was added. it isn't possible not wo create xdoc with invalid
                   6584:          tagName. ( bugfix: #160 )
                   6585: 
                   6586:        * src/include/: pa_exception.h, pa_xml_exception.h: - exception's
                   6587:          string "data must be string" was mover from pa_exception.h to
                   6588:          pa_xml_exception.h
                   6589: 
                   6590:        * src/classes/: xnode.C, xnode.h: - methods as_xmlqname,
                   6591:          as_xmlncname, as_xmlname and as_xmlnsuri were added
                   6592: 
                   6593:        * src/main/pa_xml_exception.C: - XmlException accepts more options
                   6594: 
                   6595:        * src/include/pa_xml_exception.h: - XmlException accepts more
                   6596:          options - XML-related exception's strings were added
                   6597: 
                   6598:        * src/: classes/xdoc.C, types/pa_vxdoc.h: - code cleanup (unused
                   6599:          output_options were removed)
                   6600: 
                   6601: 2011-05-19  misha
                   6602: 
                   6603:        * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
                   6604:          params.as_hash is used more while parsing methods hash-options
                   6605: 
                   6606: 2011-05-18  misha
                   6607: 
                   6608:        * operators.txt: - info about json-serialization of xdoc was added
                   6609: 
                   6610:        * tests/256.html: - tests for json-serialization xdoc were added
                   6611: 
                   6612:        * src/types/pa_vxdoc.C: - ups. I've forgot about "method" :)
                   6613: 
                   6614:        * src/: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   6615:          classes/json.C, classes/xdoc.C: - now json:string can serialize
                   6616:          xdoc-objects. options (the same as ^xdoc.string[]) could be
                   6617:          specified in $.xdoc[] ( new feature: #265 )
                   6618: 
                   6619: 2011-05-15  misha
                   6620: 
                   6621:        * tests/268.html: - tests for ^table.count[with options] were added
                   6622: 
                   6623:        * src/classes/table.C: - method ^table.count[] now can accept
                   6624:          options ( new feature: #93 ): ^table.count[column] returns number
                   6625:          of columns for named table; ^table.count[cells] returns number of
                   6626:          cells in the current row; ^table.count[] & ^table.count[rows]
                   6627:          return number of rows in a table.
                   6628: 
                   6629:        * tests/267.html: - test for checking switch/case in boolean mode
                   6630:          was added
                   6631: 
                   6632:        * src/classes/op.C: - if switch's or case's value is bool, they are
                   6633:          compared as bool values, not as double values: new feature: #351
                   6634: 
                   6635: 2011-05-06  misha
                   6636: 
                   6637:        * tests/242.html: - EOL before EOF was added
                   6638: 
                   6639:        * tests/169.html: - tests for splitting empty string and void were
                   6640:          added
                   6641: 
                   6642:        * src/main/pa_string.C: - fix of fix (^empty_string.split[...]
                   6643:          returned table with one empty cell)
                   6644: 
                   6645: 2011-04-03  misha
                   6646: 
                   6647:        * src/include/pa_version.h, configure.in: - version in head was
                   6648:          changed to 3.4.2b
                   6649: 
                   6650: 2011-03-30  misha
                   6651: 
                   6652:        * src/types/pa_vregex.C: - \w & Co now contain unicode properties
                   6653:          as well ( new feature #294 )
                   6654: 
                   6655: 2011-03-29  misha
                   6656: 
                   6657:        * buildall-with-xml, buildall-without-xml: - PCRE stack usage is
                   6658:          limited to approx. 6 MB. previous limits were too big for real
                   6659:          life. bugfix: #216
                   6660: 
                   6661: 2011-03-04  moko
                   6662: 
                   6663:        * etc/parser3.charsets/cp866.cfg: Conforms to
                   6664:          http://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP866.TXT
                   6665: 
                   6666:        * etc/parser3.charsets/cp866.cfg: cp866 initial version from
                   6667:          vlalek@
                   6668: 
                   6669: 2011-02-22  misha
                   6670: 
                   6671:        * src/include/pa_charset.h, operators.txt: - some methods mustn't
                   6672:          be under #ifdef XML or parser can't be compiled without xml
                   6673:          support
                   6674: 
                   6675: 2011-02-21  misha
                   6676: 
1.116     moko     6677:        * src/targets/apache/: Makefile.am: - mention
1.95      moko     6678:          ApacheModuleParser3.vcproj was removed
                   6679: 
                   6680:        * src/types/pa_vjunction.C: - EOL before EOF was added (warning
                   6681:          removed)
                   6682: 
                   6683: 2011-02-20  misha
                   6684: 
                   6685:        * tests/: 266.html, 266.p: - tests for checking $.inherited and
                   6686:          $.overridden in ^reflection:method_info[...] were added
                   6687: 
                   6688:        * src/classes/reflection.C: - beautifying result of
                   6689:          ^reflection:method_info[] ($.overridden/inherited)
                   6690: 
                   6691: 2011-02-18  misha
                   6692: 
                   6693:        * src/main/: pa_charset.C, pa_http.C, untaint.C: - use pa_isalpha
                   6694:          and pa_isalnum instead of isalpha and isalnum - bug with
                   6695:          redundand quoting lowercased latin chars while building email
                   6696:          body was fixed
                   6697: 
                   6698:        * src/include/pa_common.h: - pa_isalpha and ps_isalnum methods were
                   6699:          added (they check for latin chars only)
                   6700: 
                   6701: 2011-02-16  misha
                   6702: 
                   6703:        * src/main/pa_charset.C: - bugfix: in some cases the calculating
                   6704:          string size for transcoding gave too small value (should ever
                   6705:          look for availability char in dest charset inspite of the char
                   6706:          size)
                   6707: 
                   6708: 2011-02-04  moko
                   6709: 
                   6710:        * tests/223.html: header values now not url-encoded (issue #195)
                   6711: 
                   6712: 2011-02-01  misha
                   6713: 
                   6714:        * buildall-with-xml, buildall-without-xml: - 8.10 => 8.12
                   6715: 
                   6716: 2011-01-31  misha
                   6717: 
                   6718:        * src/main/pa_request.C: - throw exception if param file_name in
                   6719:          use_file is empty
                   6720: 
                   6721: 2011-01-08  moko
                   6722: 
                   6723:        * src/classes/curl.C: compilations errors fixed
                   6724: 
                   6725: 2010-12-29  moko
                   6726: 
                   6727:        * tests/: 265.html, results/265.processed: test for issue #200
                   6728:          added
                   6729: 
                   6730:        * src/main/pa_string.C: empty regex result check added (fixes issue
                   6731:          #200)
                   6732: 
                   6733:        * src/main/pa_http.C: pa_http_safe_header_name corrected a bit
                   6734: 
                   6735:        * tests/results/223.processed: header values now not url-encoded
                   6736:          (issue #195)
                   6737: 
                   6738:        * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
                   6739:          main/untaint.C: L_HTTP_HEADER now used in http headers values,
                   6740:          pa_http_safe_header_name added for headers names (fixes bug #195)
                   6741: 
                   6742: 2010-12-18  misha
                   6743: 
                   6744:        * src/: types/types.vcproj, classes/classes.vcproj: - arp-include
                   6745:          => pa-include
                   6746: 
                   6747: 2010-11-28  moko
                   6748: 
                   6749:        * src/lib/sdbm/sdbm.vcproj: apr -> pa (.vcproj)
                   6750: 
                   6751:        * src/lib/sdbm/: pa_strings.C, sdbm.c, pa-include/pa_strings.h: apr
                   6752:          -> pa
                   6753: 
                   6754:        * configure.in: apr -> pa
                   6755: 
                   6756:        * src/types/: pa_vhashfile.C, pa_vhashfile.h: apr -> pa
                   6757: 
                   6758:        * src/: lib/sdbm/pa-include/Makefile.am, lib/sdbm/Makefile.am,
                   6759:          classes/Makefile.am, types/Makefile.am: apr -> pa
                   6760: 
                   6761:        * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C,
                   6762:          pa_file_io.C, pa_strings.C, sdbm.c, sdbm_hash.c, sdbm_lock.c,
                   6763:          sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h,
                   6764:          pa-include/pa_apr.h, pa-include/pa_errno.h,
                   6765:          pa-include/pa_file_info.h, pa-include/pa_file_io.h,
                   6766:          pa-include/pa_sdbm.h, pa-include/pa_strings.h: apr -> pa (apache2
                   6767:          module apr name conflict resolved)
                   6768: 
                   6769: 2010-11-27  misha
                   6770: 
                   6771:        * buildall-with-xml, buildall-without-xml: - typo fixed: libz2 ->
                   6772:          libbz2
                   6773: 
                   6774: 2010-11-26  misha
                   6775: 
                   6776:        * src/: types/pa_vregex.C, classes/hash.C, classes/table.C: -
                   6777:          warnings removed
                   6778: 
                   6779: 2010-11-25  moko
                   6780: 
                   6781:        * operators.txt: $.indent(true)
                   6782: 
                   6783:        * operators.txt: another bugfix. :)
                   6784: 
                   6785:        * operators.txt: bugfix. :)
                   6786: 
                   6787:        * buildall-with-xml: libxml2-2.7.8 + with-apache
                   6788: 
                   6789: 2010-11-24  moko
                   6790: 
1.116     moko     6791:        * configure: apxs support
1.95      moko     6792: 
                   6793:        * configure.in: apxs support -Bstatic gc removed for OS X
                   6794: 
                   6795:        * src/targets/: Makefile.am, apache/Makefile.am: apxs support
                   6796: 
                   6797:        * src/main/: pa_globals.C, pa_xml_io.C: the rest converted to
                   6798:          THREAD_LOCAL usage
                   6799: 
                   6800:        * src/: classes/curl.C, include/pa_config_includes.h,
                   6801:          main/pa_globals.C: THREAD_LOCAL defined and used
                   6802: 
                   6803: 2010-11-23  moko
                   6804: 
                   6805:        * src/: classes/op.C, main/pa_os.C: microseconds, not milliseconds
                   6806:          should be passed to pa_sleep, and only fractional part (bugfix:
                   6807:          #188)
                   6808: 
                   6809:        * src/targets/apache/mod_parser3.c: 1.3 compatibility
                   6810: 
                   6811:        * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
                   6812:          GC_dont_gc=1, as in cgi version
                   6813: 
                   6814:        * src/targets/apache/mod_parser3.c: warning war
                   6815: 
                   6816:        * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
                   6817:          pa_httpd.h: version removed, some trash removed
                   6818: 
                   6819:        * src/targets/apache/mod_parser3.c: version removed (we don't want
                   6820:          to show it), warning war
                   6821: 
                   6822:        * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
                   6823:          pa_httpd.h: parser_status_allowed removed + merge config
                   6824:          functions removed (override is the default) + beauty
                   6825: 
                   6826:        * src/: include/pa_request.h, main/pa_request.C,
                   6827:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C: option to
                   6828:          hide $status used in apache module removed
                   6829: 
                   6830: 2010-11-18  moko
                   6831: 
                   6832:        * operators.txt: $.table[compact] added for ^json:string[]
                   6833: 
                   6834: 2010-11-16  moko
                   6835: 
                   6836:        * src/targets/apache/mod_parser3.c: some cleanup done
                   6837: 
                   6838:        * src/main/untaint.C: bugfix: first, second String::Body argument
                   6839:          is hashcode; second, info.fragment_begin is original, not
                   6840:          resulting length
                   6841: 
                   6842:        * src/classes/file.C: new feature: $.stdin now untainted
                   6843: 
                   6844:        * tests/results/264.processed: new feature: $.stdin[] now untainted
                   6845: 
                   6846:        * tests/cat.sh: new feature: stdin arg to test $.stdin[value]
                   6847: 
                   6848:        * src/classes/op.C: ^apply-taint[] method added
                   6849: 
                   6850:        * tests/: 264.html, results/264.processed: ^apply-taint[] test
                   6851:          added; $.stdin untaint test added
                   6852: 
                   6853: 2010-11-15  moko
                   6854: 
                   6855:        * src/targets/apache/mod_parser3.c: outdated MODULE_MAGIC_NUMBER
                   6856:          removed
                   6857: 
                   6858:        * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
                   6859:          pa_httpd.h: 2x2 calculated under apache2. :)
                   6860: 
                   6861: 2010-11-13  moko
                   6862: 
                   6863:        * src/targets/apache/mod_parser3.c: initial changes to build module
                   6864:          with apache 2.x includes
                   6865: 
                   6866:        * src/targets/apache/: Makefile.am, mod_parser3.c,
                   6867:          mod_parser3_core.C, pa_httpd.h, pa_threads.C: initial commit for
                   6868:          united apache 1.3 / apache 2.x DSO module
                   6869: 
                   6870: 2010-11-09  moko
                   6871: 
                   6872:        * src/types/pa_method.h: check added to dissallow @method[name;*]
                   6873:          syntax
                   6874: 
                   6875:        * tests/: 263.html, results/263.processed: test from method[*args]
                   6876:          added
                   6877: 
                   6878:        * src/types/: pa_method.h, pa_vmethod_frame.h: closes #26: variable
                   6879:          number of params can now be passed to a method declared with *arg
                   6880: 
                   6881: 2010-11-06  moko
                   6882: 
                   6883:        * src/classes/table.C: formating fixed. :)
                   6884: 
                   6885:        * src/classes/table.C: closes #4: ^table.select now supports
                   6886:          $.limit(), $.offset, $.reverse() options
                   6887: 
                   6888:        * tests/: 262.html, results/262.processed: test for ^table:select
                   6889:          with options added (feature #4)
                   6890: 
                   6891:        * src/include/pa_array.h: remove function added
                   6892: 
                   6893:        * src/types/: pa_vhash.C, pa_vhash.h: avoiding temporal String
                   6894:          object in get_element/put_element, using static one.
                   6895: 
                   6896: 2010-11-04  moko
                   6897: 
                   6898:        * src/types/pa_vregex.C: closes #6: exeption now thrown if invalid
                   6899:          options is passed
                   6900: 
                   6901:        * tests/: 256.html, results/256.processed: $.table[compact] feature
                   6902:          now tested; k and p in handler now tested.
                   6903: 
                   6904:        * src/types/: pa_value.h, pa_vtable.C, pa_vtable.h: fixes #153,
                   6905:          $.table[compact] feature added
                   6906: 
                   6907:        * src/classes/json.C: key is now passed to handler in
                   6908:          value_json_string; ^json:string result now process tainting
                   6909:          inside and returns clean string, related to issue #153
                   6910: 
                   6911:        * src/main/untaint.C: bugfix: charset can be null (in
                   6912:          ^string:save[] as example), thus check is added
                   6913: 
                   6914: 2010-10-31  moko
                   6915: 
                   6916:        * src/classes/string.C: error message changed (fixes issue #149)
                   6917: 
                   6918: 2010-10-29  moko
                   6919: 
                   6920:        * src/main/pa_http.C: ":port" is now added to "Host:" header if
                   6921:          port is not default (fixes issue #155); exception on invalid port
                   6922:          added.
                   6923: 
                   6924:        * src/main/untaint.C: '*' is now not urlencoded to allow header
                   6925:          "Accept: */*" to be passed
                   6926: 
                   6927: 2010-10-28  moko
                   6928: 
                   6929:        * src/classes/curl.C: bugfix: detect_charset() was throwing
                   6930:          exception on unknown charset even if response_charset was
                   6931:          specified
                   6932: 
                   6933: 2010-10-27  moko
                   6934: 
                   6935:        * src/classes/string.C: ^string.append removed for void
                   6936:          compatibility
                   6937: 
                   6938: 2010-10-26  moko
                   6939: 
                   6940:        * src/classes/json.C: libjson supports array at top level, we too
                   6941:          (GPF fixed)
                   6942: 
                   6943: 2010-10-25  moko
                   6944: 
                   6945:        * tests/: 253.html, results/253.processed: libjson supports array
                   6946:          at top level, parser now supports it as well.
                   6947: 
                   6948:        * tests/261.html, tests/results/261.processed,
                   6949:          src/types/pa_vstring.h: empty string is now void compatible
                   6950:          (allows $empty.key)
                   6951: 
                   6952: 2010-10-22  misha
                   6953: 
                   6954:        * src/types/pa_vcookie.C: - fix for session cookie (was introduced
                   6955:          while adding additional expires checkout)
                   6956: 
                   6957:        * tests/030.html: - test for session cookie was added
                   6958: 
                   6959: 2010-10-21  moko
                   6960: 
                   6961:        * src/: classes/string.C, classes/void.C, main/execute.C,
                   6962:          types/pa_vvoid.C, types/pa_vvoid.h: void now inherited from
                   6963:          string (feature #111)
                   6964: 
                   6965:        * tests/: 261.html, results/261.processed: checks void from string
                   6966:          inheritance (feature #111)
                   6967: 
                   6968:        * src/classes/: bool.C, classes.h, curl.C, date.C, double.C,
                   6969:          file.C, hash.C, hashfile.C, image.C, inet.C, int.C, json.C,
                   6970:          reflection.C, regex.C, string.C, table.C, void.C: used_directly()
                   6971:          now true by default
                   6972: 
                   6973: 2010-10-17  moko
                   6974: 
                   6975:        * src/: include/pa_string.h, main/pa_http.C, main/untaint.C: files
                   6976:          upload now uses binary blocks instead of L_FILE_POST tainting.
                   6977:          (bugfix: #128)
                   6978: 
                   6979:        * tests/: 223.html, results/223.processed: binary file upload test
                   6980:          added, GPF (issue #128) also checked in this test
                   6981: 
                   6982: 2010-10-13  misha
                   6983: 
                   6984:        * tests/260.html: - test for math:convert
                   6985: 
                   6986:        * src/classes/math.C: - error in math:convert was fixed
                   6987: 
                   6988:        * operators.txt: - info about
                   6989:          ^math:convert[number](from-base;to-base) was added
                   6990: 
                   6991:        * src/classes/math.C: - method
                   6992:          ^math:convert[number](from-base;to-base) for converting number
                   6993:          represention from one base to another was added ( new feature:
                   6994:          #23 )
                   6995: 
                   6996: 2010-10-13  moko
                   6997: 
                   6998:        * src/main/compile.tab.C: [] now is empty string, not void
                   6999: 
                   7000:        * src/main/compile.y: [] now is empty string, not void
                   7001: 
                   7002:        * src/types/pa_vvoid.h: void now passed as parameter
                   7003: 
                   7004:        * tests/: 259.html, results/259.processed: to test difference
                   7005:          between void and empty string (see ticket #111)
                   7006: 
                   7007:        * tests/results/152.processed: $sEmpty[] is now empty string, not
                   7008:          void
                   7009: 
                   7010:        * tests/256.html: $s[$void] is no longer empty string
                   7011: 
                   7012:        * tests/254.html: empty string is no longer void
                   7013: 
                   7014: 2010-10-12  misha
                   7015: 
                   7016:        * src/types/pa_vcookie.C: - check if $.expires value can be
                   7017:          converted to date during cookies set up ( bugfix: #104 )
                   7018: 
                   7019:        * tests/041.html: - more tests for ^table.locate were added
                   7020: 
                   7021:        * src/classes/table.C: - ^table.locate[field;value;options] didn't
                   7022:          work ( bugfix: #129 ) - exception comment for incorrect options
                   7023:          ^table.locate[field;value;options] was fixed
                   7024: 
                   7025: 2010-10-10  moko
                   7026: 
                   7027:        * src/: classes/reflection.C, main/execute.C: constructor returning
                   7028:          another object feature returned
                   7029: 
                   7030:        * tests/results/258.processed: test result updated as constructor
                   7031:          returning another object feature returned
                   7032: 
                   7033:        * tests/: 258.html, results/258.processed: test for constructor
                   7034:          returning another object
                   7035: 
                   7036: 2010-10-08  misha
                   7037: 
                   7038:        * tests/257.html: - whitespaces after @METACOMMANDS and their
                   7039:          options shouldn't cause exceptions any longer
                   7040: 
                   7041: 2010-10-06  moko
                   7042: 
                   7043:        * src/classes/: hash.C, table.C: length from sql server is now
                   7044:          ignored, as sql string can contain 0x00 inside (bugfix: #119)
                   7045: 
                   7046: 2010-10-02  misha
                   7047: 
                   7048:        * operators.txt: - the X mark was removed from ^cache[file]. it is
                   7049:          usable to delete cache file.
                   7050: 
                   7051: 2010-10-02  moko
                   7052: 
                   7053:        * tests/: 253.html, results/253.processed: hook_key added for key
                   7054:          checking
                   7055: 
                   7056:        * src/classes/json.C: null key bug fixed
                   7057: 
                   7058: 2010-09-29  misha
                   7059: 
                   7060:        * tests/: 256.html, 256.txt: - tests for ^json:string[] were added
                   7061: 
                   7062: 2010-09-25  moko
                   7063: 
                   7064:        * src/classes/json.C: small fixed
                   7065: 
                   7066:        * tests/results/: 253.processed, 255.processed: just updated
                   7067: 
                   7068:        * tests/: 253.html, 253_json.txt, 255.html, results/253.processed,
                   7069:          results/255.processed: charset transcode test added for
                   7070:          json:parse
                   7071: 
                   7072: 2010-09-24  moko
                   7073: 
                   7074:        * src/types/pa_value.h: warning war :)
                   7075: 
                   7076:        * src/: classes/json.C, include/pa_request.h, types/pa_value.h,
                   7077:          types/pa_vfile.C, types/pa_vtable.C: $.indent implemented for
                   7078:          ^json:string
                   7079: 
                   7080: 2010-09-22  moko
                   7081: 
                   7082:        * src/main/pa_charset.C: parser charset tables declare only
                   7083:          white-space before 0x20, thus adding the missing chars
                   7084: 
                   7085:        * etc/parser3.charsets/: koi8-r.cfg, koi8-u.cfg: updated to conform
                   7086:          to http://unicode.org/Public/MAPPINGS/VENDORS/
                   7087: 
                   7088: 2010-09-21  misha
                   7089: 
                   7090:        * src/main/compile.y: - some semicolons were added (VS2010 don't
                   7091:          want to compile grammar if they are absent)
                   7092: 
                   7093:        * tests/: make_tests.cmd, run_tests.cmd: - path tools is changed
                   7094: 
                   7095:        * src/classes/classes.vcproj: - pathes to ls and gawk are changed
                   7096: 
                   7097:        * src/main/main.vcproj: - path to bison is changed
                   7098: 
                   7099: 2010-09-21  moko
                   7100: 
1.116     moko     7101:        * etc/parser3.charsets/: windows-1250.cfg, windows-1251.cfg,
                   7102:          windows-1254.cfg, windows-1257.cfg, x-mac-cyrillic.cfg: updated
                   7103:          to conform to http://unicode.org/Public/MAPPINGS/VENDORS/
1.95      moko     7104: 
                   7105: 2010-09-20  misha
                   7106: 
                   7107:        * src/types/pa_vtable.C: - add EOLs while json-serializing table
                   7108: 
                   7109:        * src/classes/json.C: - add EOL while json-serializing hash
                   7110: 
                   7111:        * src/lib/json/JSON_parser.C: - 'ES' replaced by 'ESC' because some
                   7112:          compilers don't like 'ES'.
                   7113: 
                   7114: 2010-09-17  misha
                   7115: 
                   7116:        * operators.txt: - info about json class was added
                   7117: 
                   7118:        * src/classes/json.C: - ^json:string[object]
                   7119: 
                   7120:        * src/: include/pa_request.h, main/pa_request.C: - stuff for
                   7121:          preventing infinite recursion while executing json:string was
                   7122:          added
                   7123: 
                   7124:        * src/include/pa_string.h: - method append_quoted was added
                   7125: 
                   7126:        * src/types/: pa_value.C, pa_value.h, pa_vbool.h, pa_vdate.h,
                   7127:          pa_vdouble.h, pa_vfile.C, pa_vfile.h, pa_vint.h, pa_vstring.h,
                   7128:          pa_vtable.C, pa_vtable.h, pa_vvoid.h: - method get_json_string
                   7129:          was added to Value & Co
                   7130: 
                   7131:        * src/classes/date.C: - methods get_gmt_string and get_sql_string
                   7132:          were used
                   7133: 
                   7134:        * src/types/pa_vdate.h: - methods get_gmt_string and get_sql_string
                   7135:          were added
                   7136: 
                   7137: 2010-09-10  moko
                   7138: 
                   7139:        * src/targets/cgi/parser3.C: vsnprintf now not called twice in
                   7140:          die_or_abort (backport from 3.4.1)
                   7141: 
                   7142:        * src/targets/cgi/parser3.C: vsnprintf now not called twice in
                   7143:          die_or_abort (bugfix: #106)
                   7144: 
                   7145: 2010-09-09  moko
                   7146: 
                   7147:        * src/classes/json.C: warning war. :)
                   7148: 
                   7149: 2010-09-08  misha
                   7150: 
                   7151:        * src/lib/json/Makefile.am: - additional include directories were
                   7152:          added (for pa_memory.h and gc.h)
                   7153: 
                   7154:        * src/lib/json/json.vcproj: - JSON_parser.c => JSON_parser.C -
                   7155:          compile as C++ instead default - additional include directory was
                   7156:          added (for gc.h)
                   7157: 
                   7158:        * src/types/pa_vform.C: - little code reformating
                   7159: 
                   7160:        * src/classes/file.C: - $.content-type option now can be specified
                   7161:          in ^file::create ( new feature: #102 )
                   7162: 
                   7163: 2010-09-08  moko
                   7164: 
                   7165:        * src/lib/json/: JSON_parser.C, JSON_parser.h: json lib now uses
                   7166:          pa_malloc/pa_free
                   7167: 
                   7168: 2010-09-07  moko
                   7169: 
                   7170:        * tests/results/254.processed: VStateless_class:put_element
                   7171:          exception was fixed
                   7172: 
                   7173:        * src/types/: pa_value.h, pa_vstateless_class.h: now
                   7174:          VStateless_class:put_element barks self.type, not this.type
                   7175:          (bugfix: #105)
                   7176: 
                   7177: 2010-09-06  moko
                   7178: 
                   7179:        * src/classes/reflection.C: bugfix: new String() is required for
                   7180:          exception handling
                   7181: 
                   7182:        * tests/: 254.html, results/254.processed: test modified
                   7183: 
                   7184: 2010-09-05  moko
                   7185: 
                   7186:        * tests/: 254.html, results/254.processed: ^reflection:copy test
                   7187:          added
                   7188: 
                   7189:        * src/: classes/reflection.C, include/pa_request.h:
                   7190:          ^reflection:copy implemented (new feature: #100)
                   7191: 
                   7192: 2010-09-03  moko
                   7193: 
                   7194:        * src/lib/json/JSON_parser.C: c++ compatiblity
                   7195: 
                   7196:        * tests/: 253.html, 253_json.txt, results/253.processed: $.distinct
                   7197:          option testing added
                   7198: 
                   7199: 2010-09-02  moko
                   7200: 
                   7201:        * src/classes/json.C: $.distinct[first|last|all] added
                   7202: 
                   7203: 2010-09-01  moko
                   7204: 
                   7205:        * tests/results/253.processed: json test result
                   7206: 
                   7207:        * tests/: 253.html, 253_json.txt: json test added
                   7208: 
                   7209:        * src/classes/json.C: json.C update to actual version + hash key
                   7210:          creation bugfix
                   7211: 
                   7212: 2010-08-31  misha
                   7213: 
                   7214:        * src/lib/json/JSON_parser.C, src/lib/json/JSON_parser.h,
                   7215:          src/lib/json/Makefile.am, src/lib/json/json.vcproj,
                   7216:          src/lib/Makefile.am, src/classes/Makefile.am,
                   7217:          src/classes/classes.vcproj, src/classes/json.C, parser3.sln: -
                   7218:          json library was added
                   7219: 
                   7220: 2010-08-30  moko
                   7221: 
                   7222:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
                   7223:          types/pa_vobject.C: cosmetic optimization in
                   7224:          request:execute_method usage
                   7225: 
                   7226:        * src/: include/pa_charset.h, main/pa_charset.C: small
                   7227:          optimization, just to decrease number of lines. :)
                   7228: 
                   7229: 2010-08-27  misha
                   7230: 
                   7231:        * src/classes/op.C: - taint[json] was added
                   7232: 
                   7233:        * tests/: 250.html, 251.html, 252.html: - tests for taint[json]
                   7234:          were added
                   7235: 
                   7236:        * src/main/pa_exec.C: - warning fix was rolled back.
                   7237: 
                   7238:        * src/: main/pa_charset.C, main/untaint.C, include/pa_charset.h,
                   7239:          include/pa_string.h: - taint[json] was added - escaping was
                   7240:          slightly modified
                   7241: 
                   7242: 2010-08-25  misha
                   7243: 
                   7244:        * src/classes/file.C: - typo in file:sql exception was fixed
                   7245: 
                   7246:        * src/main/pa_exec.C: - warning about declared and not used
                   7247:          variable forced_allow was removed
                   7248: 
                   7249: 2010-08-14  misha
                   7250: 
                   7251:        * src/classes/hash.C: - two warnings about signed/unsigned mismatch
                   7252:          were removed
                   7253: 
                   7254: 2010-08-11  moko
                   7255: 
                   7256:        * tests/: 249.html, results/249.processed: default setter and
                   7257:          anti-recursive default getter test added
                   7258: 
                   7259:        * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
                   7260:          types/pa_value.h, types/pa_vclass.C, types/pa_vobject.C,
                   7261:          types/pa_vobject.h, types/pa_vstateless_class.C,
                   7262:          types/pa_vstateless_class.h: default setter support +
                   7263:          anti-recursive default getter support ( new feature: #13 )
                   7264: 
                   7265:        * src/include/pa_hash.h: optimization: threshold member removed
                   7266:          from hash, reducing sizeof(hash)
                   7267: 
                   7268: 2010-08-10  misha
                   7269: 
                   7270:        * tests/196.html: - junction-method was added to the test
                   7271: 
                   7272:        * tests/248.html: - ups. typo :)
                   7273: 
                   7274:        * tests/248.html: - test for checking .match with 4 params
                   7275: 
                   7276:        * tests/: 247.html, 247_utf8.txt, 247_utf8_bom.txt,
                   7277:          247_windows1251.txt: - test for "transcode file from utf-8 to
                   7278:          $request:charset during loading if the BOM code is detected"
                   7279: 
                   7280:        * src/main/: pa_common.C, pa_http.C: - transcode file from utf-8 to
                   7281:          $request:charset during loading if the BOM code is detected ( new
                   7282:          feature: #98 )
                   7283: 
                   7284: 2010-08-05  misha
                   7285: 
                   7286:        * src/classes/image.C: - ^image.replace now can accept only 2
                   7287:          params. in this case the whole image is affected ( new feature:
                   7288:          #95 )
                   7289: 
                   7290: 2010-08-04  misha
                   7291: 
                   7292:        * tests/246.html: - test tor ^hash._at[] was added
                   7293: 
                   7294:        * src/classes/hash.C: - ^hash._at[first|last|[-]N] ( new feature:
                   7295:          #53 )
                   7296: 
                   7297:        * src/include/pa_hash.h: - methods for accessing the first and the
                   7298:          last values of ordered hash were added (first_value and
                   7299:          last_value)
                   7300: 
                   7301:        * src/classes/file.C: - now ^file::base64 accepts up to 4 params
                   7302:          (similar to others file's methods):
                   7303:          ^file::base64[mode;user-file-name;encoded;options] ( new feature:
                   7304:          #68 )
                   7305: 
                   7306:        * src/types/pa_vmethod_frame.h: - helper method as_hash was added
                   7307: 
                   7308: 2010-08-01  moko
                   7309: 
                   7310:        * src/classes/op.C: to correctly process $result[] in code, called
                   7311:          from ^process
                   7312: 
                   7313:        * tests/245.html: $result in ^process[] test added
                   7314: 
                   7315:        * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
                   7316:          main/execute.C, main/pa_request.C, types/pa_vmethod_frame.C,
                   7317:          types/pa_vmethod_frame.h, types/pa_vobject.C: optimization:
                   7318:          VMethodFrame(junction, caller) replaced with VMethodFrame(method,
                   7319:          caller, self) op_call(VMethodFrame &frame, bool constructing)
                   7320:          removed, construct(class,method) added
                   7321: 
                   7322:        * tests/results/: 192.processed, 244.processed: request::construct
                   7323:          added
                   7324: 
                   7325:        * tests/: 244.html, 245.html, results/244.processed,
                   7326:          results/245.processed: object creation exceptions and ^process
                   7327:          tests added
                   7328: 
                   7329: 2010-07-28  misha
                   7330: 
                   7331:        * tests/make_tests.cmd: - win32 EOLs
                   7332: 
                   7333:        * tests/: run_parser.cmd, run_tests.cmd: - cmd files for executing
                   7334:          tests on Win32 were added (The system timezone should be GMT+3)
                   7335: 
                   7336: 2010-07-26  misha
                   7337: 
                   7338:        * tests/: 212.html, results/212.processed: - sizes were removed
                   7339:          mecause they could be different on different OSs
                   7340: 
                   7341:        * tests/065.html: - make it "win32 friendly"
                   7342: 
                   7343: 2010-07-25  misha
                   7344: 
                   7345:        * src/main/compile.y: - all EOLs between methods are removed during
                   7346:          compilation ( new feature: #47 )
                   7347: 
                   7348:        * tests/results/149.processed: - prepare tests to trim trailing
                   7349:          methods' EOLs
                   7350: 
                   7351:        * tests/149.html: - prepare tests to trim trailing methods' EOLs
                   7352: 
                   7353:        * tests/: results/006.processed, results/014.processed, 006.html,
                   7354:          014.html, 022.html: - prepare tests to trim trailing methods'
                   7355:          EOLs
                   7356: 
                   7357:        * tests/: 059.html, 071.html, 149.html, results/059.processed,
                   7358:          results/071.processed, results/022.processed: - prepare tests to
                   7359:          trim trailing methods' EOLs
                   7360: 
                   7361:        * tests/: results/073.processed, results/109.processed,
                   7362:          results/142.processed, results/144.processed,
                   7363:          results/149.processed, 073.html, 096.html, 109.html, 142.html,
                   7364:          144.html: - prepare tests to trim trailing methods' EOLs
                   7365: 
                   7366:        * tests/: 096.html, 107.html, 109.html, 142.html, 144.html,
                   7367:          149.html, 152.html, results/096.processed, results/107.processed,
                   7368:          results/109.processed, results/142.processed,
                   7369:          results/144.processed: - prepare tests to trim trailing methods'
                   7370:          EOLs
                   7371: 
                   7372: 2010-07-24  moko
                   7373: 
                   7374:        * tests/results/: 156.processed, 224.processed: fix for #54 changed
                   7375:          the hash order in this test
                   7376: 
                   7377:        * tests/014.html: to check hash order, hash no is longer sorted
                   7378:          before print
                   7379: 
                   7380:        * src/include/pa_hash.h: hash copy constructor now keeps order
                   7381:          (bugfix: #54)
                   7382: 
                   7383: 2010-07-23  moko
                   7384: 
                   7385:        * tests/results/224.processed: @auto[] is no longer inherited
                   7386: 
                   7387:        * src/types/pa_vstateless_class.C, tests/227.html,
                   7388:          tests/results/227.processed: @auto[] is no longer inherited
                   7389:          (bugfix: #57)
                   7390: 
                   7391: 2010-07-22  misha
                   7392: 
                   7393:        * src/classes/table.C: - don't skip comment lines during
                   7394:          table::load if encloser or separator is set as '#' ( new feature:
                   7395:          #30 )
                   7396: 
                   7397:        * src/targets/cgi/parser3.C: - don't run as cgi if
                   7398:          env:PARSER_VERSION was set for preventing infinite loot ( bugfix:
                   7399:          #12 )
                   7400: 
                   7401:        * src/classes/file.C: - set PARSER_VARSION env before external
                   7402:          script executing
                   7403: 
                   7404: 2010-07-13  misha
                   7405: 
                   7406:        * tests/058.html: - test for suppressing @border was added - test
                   7407:          for user attribute was added
                   7408: 
                   7409:        * tests/results/186.processed: unescaping from \uXXXX
                   7410: 
                   7411:        * tests/186.html: unescaping from \uXXXX
                   7412: 
                   7413:        * tests/: 239.html, results/239.processed: method call type
                   7414: 
                   7415:        * src/types/: pa_vjunction.C, pa_vjunction.h: - bugfix: #90 :
                   7416:          $junction_method.CLASS_NAME (+CLASS)
                   7417: 
                   7418: 2010-07-07  misha
                   7419: 
                   7420:        * buildall-with-xml, buildall-without-xml: - moving to pcre 8.10 on
                   7421:          *nix
                   7422: 
                   7423: 2010-07-05  misha
                   7424: 
                   7425:        * src/: classes/curl.C, classes/file.C, classes/hash.C,
                   7426:          classes/image.C, classes/op.C, classes/string.C, classes/table.C,
                   7427:          classes/void.C, main/pa_common.C, main/pa_http.C: - exception
                   7428:          comment strings "options must be hash", "options must be hash,
                   7429:          not code" and "called with invalid option" were replaced by
                   7430:          constatns - exception comment string "invalid option passed" was
                   7431:          replaced by "called with invalid option" (now in different
                   7432:          methods are the same exception comment string)
                   7433: 
                   7434:        * src/include/pa_exception.h: - more exception strings were defined
                   7435: 
                   7436:        * src/: main/compile.y, main/compile_tools.C, main/compile_tools.h,
                   7437:          types/pa_vstateless_class.h: - now we can define possible
                   7438:          method's call type ( new feature: #5 )   1.
                   7439:          @OPTIONS\nstatic|dynamic (no option == any) -- for all classe's
                   7440:          methods   2. @static:method[params] (only static keyword could be
                   7441:          used here) -- for specified methods
                   7442: 
                   7443:        * src/main/pa_common.C: - junction points should not be deleted on
                   7444:          win32 during dirs cleanup ( bugfix: #83 ) - optimisation in dirs
                   7445:          cleanup
                   7446: 
                   7447: 2010-07-03  misha
                   7448: 
                   7449:        * tests/: 158.html, 160.html, 161.html, 162.html, 163.html,
                   7450:          results/158.processed, results/160.processed,
                   7451:          results/161.processed, results/162.processed,
                   7452:          results/163.processed: - prepare tests to trim trailing methods'
                   7453:          EOLs
                   7454: 
                   7455:        * tests/results/169.processed: - prepare tests to trim trailing
                   7456:          methods' EOLs
                   7457: 
                   7458:        * tests/results/: 168.processed, 169.processed: - prepare tests to
                   7459:          trim trailing methods' EOLs
                   7460: 
                   7461:        * tests/: results/170.processed, results/167.processed,
                   7462:          results/168.processed, results/169.processed, 167.html, 168.html,
                   7463:          169.html: - prepare tests to trim trailing methods' EOLs
                   7464: 
                   7465:        * tests/: results/170.processed, results/171.processed,
                   7466:          results/172.processed, results/173.processed,
                   7467:          results/174.processed, results/175.processed, 170.html, 171.html,
                   7468:          172.html, 173.html, 174.html, 175.html: - prepare tests to trim
                   7469:          trailing methods' EOLs
                   7470: 
                   7471:        * tests/: results/176.processed, results/180.processed,
                   7472:          results/184.processed, results/185.processed,
                   7473:          results/191.processed, results/192.processed,
                   7474:          results/196.processed, results/197.processed,
                   7475:          results/198.processed, 176.html, 180.html, 184.html, 185.html,
                   7476:          191.html, 192.html, 196.html, 197.html, 198.html: - prepare tests
                   7477:          to trim trailing methods' EOLs
                   7478: 
                   7479:        * tests/: 199.html, 208.html, 209.html, 213.html, 214.html,
                   7480:          results/199.processed, results/208.processed,
                   7481:          results/209.processed, results/213.processed,
                   7482:          results/214.processed: - prepare tests to trim trailing methods'
                   7483:          EOLs
                   7484: 
                   7485: 2010-06-29  misha
                   7486: 
                   7487:        * tests/: 220.html, 218.html, results/218.processed,
                   7488:          results/215.processed, results/217.processed, 215.html, 217.html:
                   7489:          - prepare tests to trim trailing methods' EOLs
                   7490: 
                   7491:        * tests/: results/224.processed, 224.html, 223.html,
                   7492:          results/223.processed, results/220.processed: - prepare tests to
                   7493:          trim trailing methods' EOLs
                   7494: 
                   7495:        * tests/results/: 226.processed, 230.processed: - prepare tests to
                   7496:          trim trailing methods' EOLs
                   7497: 
                   7498:        * tests/: 229.html, results/229.processed: - prepare tests to trim
                   7499:          trailing methods' EOLs
                   7500: 
                   7501:        * tests/: 232.html, 235.html, results/232.processed,
                   7502:          results/235.processed, 226.html, 227.html, 228.html, 230.html,
                   7503:          results/226.processed, results/227.processed,
                   7504:          results/228.processed, results/230.processed: - prepare tests to
                   7505:          trim trailing methods' EOLs
                   7506: 
                   7507: 2010-06-16  moko
                   7508: 
                   7509:        * tests/: 229.html, results/229.processed:  elseif now supported in
                   7510:          ^if
                   7511: 
                   7512:        * src/classes/op.C: new feature: #56 elseif now supported in ^if
                   7513: 
                   7514: 2010-06-03  misha
                   7515: 
                   7516:        * src/main/pa_common.C: - bugfix #74 -- memmove should be used
                   7517:          instead of memcopy for overlaped regions
                   7518: 
                   7519: 2010-05-25  misha
                   7520: 
                   7521:        * src/main/pa_common.C: - wanring about unused vars was removed
                   7522: 
                   7523:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C: -
                   7524:          get_method_filename was moved to execute.C
                   7525: 
                   7526: 2010-05-23  misha
                   7527: 
                   7528:        * src/main/pa_request.C: - more accurate detection of method's file
                   7529: 
                   7530: 2010-05-22  misha
                   7531: 
                   7532:        * src/classes/reflection.C: - bugfix: core during detection of
                   7533:          .file if filespec isn't detected successfully
                   7534: 
                   7535: 2010-05-20  misha
                   7536: 
                   7537:        * src/main/pa_request.C: - fix in get_method_filename
                   7538: 
                   7539:        * src/include/pa_request.h: - new feature: #24 -- searching
                   7540:          included file in @USE/^use is changed. if its filespec doesn't
                   7541:          start from '/' it will be searched in caller file directory
                   7542: 
                   7543:        * src/classes/reflection.C: - ^reflection:method_info returns file
                   7544:          where the method is defined
                   7545: 
                   7546:        * src/: include/pa_request.h, main/compile.y, main/pa_request.C,
                   7547:          classes/op.C: - new feature: #24 -- searching included file in
                   7548:          @USE/^use is changed. if its filespec doesn't start from '/' it
                   7549:          will be searched in caller file directory
                   7550: 
                   7551:        * src/: classes/file.C, include/pa_common.h: - method lastposafter
                   7552:          is moved to pa_common.h
                   7553: 
                   7554: 2010-05-18  misha
                   7555: 
                   7556:        * src/: main/pa_common.C, include/pa_common.h, classes/string.C,
                   7557:          types/pa_vcookie.C: new feature: #71 ^string:js-unescape and
                   7558:          cookie parser decode \uXXXX as well as %uXXXX
                   7559: 
                   7560: 2010-05-17  misha
                   7561: 
                   7562:        * src/classes/curl.C: beauty: - unused param is removed in method
                   7563:          _curl_version_action - some spaces were removed or replaced by
                   7564:          tabs
                   7565: 
                   7566:        * src/classes/table.C: - bugfix: #72 core with empty value during
                   7567:          ^table.hash[...;name_of_the_last_column][$.type[string]]
                   7568: 
                   7569: 2010-05-16  misha
                   7570: 
                   7571:        * src/classes/curl.C: new: #61 more curl options were added
                   7572:          (contributed by Sumo)
                   7573: 
                   7574: 2010-04-29  pretender
                   7575: 
                   7576:        * src/main/pa_string.C: fixes #63 Split result from empty string
                   7577:          now empty string.
                   7578: 
                   7579:        * src/types/pa_vtable.C: bugfix: #35 All empty table cells are now
                   7580:          string type.
                   7581: 
                   7582: 2010-04-28  pretender
                   7583: 
                   7584:        * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
                   7585:          main/execute.C: bugfix: #59 OPTIMIZE_BYTECODE_GET_CLASS
                   7586:          macrodefinition removed
                   7587: 
                   7588: 2010-04-19  pretender
                   7589: 
                   7590:        * src/main/execute.C: fixes #60 Stacktrace now contains info for
                   7591:          OP_CONSTRUCT_OBJECT and OP_GET_CLASS
                   7592: 
                   7593:        * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
                   7594:          fixes #64 Now file.missing exception generates in unsafe mode to.
                   7595: 
                   7596:        * src/classes/file.C: fixes #48 Now not throw "not save environment
                   7597:          variable" exception in grpunlim version.
                   7598: 
                   7599: 2010-04-05  misha
                   7600: 
                   7601:        * src/classes/string.C: - new feature: 4th param was added to
                   7602:          match. if specified its value is returned in case of nothing was
                   7603:          found
                   7604: 
                   7605: 2010-04-01  misha
                   7606: 
                   7607:        * src/main/pa_request.C: - bugfix: on *nix URIs like /a/b/// caused
                   7608:          multiple execution of /a/b/auto.p
                   7609: 
                   7610: 2010-03-19  misha
                   7611: 
                   7612:        * src/main/execute.C: - core in $table1.$table2 was fixed
                   7613: 
                   7614:        * src/targets/cgi/parser3.C: - core in sigpipe was fixed
                   7615: 
                   7616: 2010-01-27  misha
                   7617: 
                   7618:        * src/main/pa_common.C: - bugfix: there are no excaption.type if
                   7619:          trying to open file by path /existing-file/non-exixting-file
                   7620: 
                   7621: 2010-01-26  misha
                   7622: 
                   7623:        * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:post-body
                   7624:          was added (returns file)
                   7625: 
                   7626: 2009-12-22  misha
                   7627: 
                   7628:        * src/classes/curl.C: - method 'option' was renamed to 'options' -
                   7629:          now parser doesn't have class curl if it was built without it
                   7630: 
                   7631: 2009-12-15  misha
                   7632: 
                   7633:        * configure.in: - little cheat with curl include dir was added
                   7634: 
                   7635: 2009-12-05  misha
                   7636: 
                   7637:        * src/classes/curl.C: - some fixes
                   7638: 
                   7639: 2009-12-04  misha
                   7640: 
                   7641:        * src/include/pa_config_fixed.h, src/classes/classes.vcproj,
                   7642:          src/classes/curl.C, src/classes/file.C, src/classes/Makefile.am,
                   7643:          buildall-with-xml, buildall-without-xml, configure.in: - curl
                   7644:          class was added
                   7645: 
                   7646:        * src/include/pa_hash.h: - hash-iterator was added
                   7647: 
                   7648:        * buildall-with-xml, buildall-without-xml: - option --passive-ftp
                   7649:          was added to pcre
                   7650: 
                   7651: 2009-11-27  misha
                   7652: 
                   7653:        * src/classes/image.C: - don't add @border attribute to output of
                   7654:          ^image.html[] if it was specified by user with empty value
                   7655: 
                   7656:        * src/types/pa_vxdoc.C: - bugfix: core if xdoc doesn't have the
                   7657:          root element and we are trying to access .documentElement
                   7658: 
                   7659: 2009-11-11  misha
                   7660: 
                   7661:        * src/classes/table.C: - in ^table.flip[] look at number of columns
                   7662:          instead of number of items in first row for named tables
                   7663: 
                   7664: 2009-11-10  misha
                   7665: 
                   7666:        * operators.txt: - info about hash-options in ^file::create was
                   7667:          added
                   7668: 
                   7669:        * tests/237.html: - test for ^file::create[...;$.charset[...]] was
                   7670:          added
                   7671: 
                   7672: 2009-11-09  misha
                   7673: 
                   7674:        * buildall-with-xml: - moving to libxml 2.7.6
                   7675: 
                   7676:        * tests/236.html: - tests for comparations cords with functions
                   7677:          were added
                   7678: 
                   7679:        * src/include/pa_string.h: - optimisation: cacheing of cstr was
                   7680:          added
                   7681: 
                   7682:        * src/main/pa_http.C: - little optimisation
                   7683: 
                   7684:        * src/: classes/table.C, lib/gc/include/gc_allocator.h: - bugfix:
                   7685:          GPF mallocs + stringstream (table.save)
                   7686: 
                   7687:        * src/classes/file.C: - file::create now accepts 4th param: options
                   7688:          with $.charset
                   7689: 
                   7690:        * src/lib/cord/: cordxtra.c, include/private/cord_pos.h: - fixed
                   7691:          bug in cord (comparation cords with functions was buggy)
                   7692: 
                   7693: 2009-11-06  misha
                   7694: 
                   7695:        * src/main/pa_string.C: - bugfix: calculation string.length
                   7696:          sometimes was buggy
                   7697: 
                   7698:        * src/classes/string.C: - bugfix: Temp_value_element wasn't
                   7699:          destroyed if exception occured during match/replace
                   7700: 
                   7701:        * src/: main/pa_charset.C, include/pa_charset.h: - method
                   7702:          lengthUTF8Char was added
                   7703: 
                   7704:        * src/classes/op.C: - clean tainting lang was added for user's
                   7705:          usage
                   7706: 
                   7707:        * src/lib/cord/: cordbscs.c, cordxtra.c: - some rare GPF were
                   7708:          fixed: checkouts are required after GC_MALLOC
                   7709: 
                   7710:        * src/types/pa_vregex.C: - check UTF8 only during 1st iteration
                   7711: 
                   7712:        * operators.txt: - actually, there is no ^untaint[xml] in
                   7713:          file::create
                   7714: 
                   7715: 2009-10-15  misha
                   7716: 
                   7717:        * tests/: 235.html, 235_attach.txt: - tests for preparing email
                   7718:          were added
                   7719: 
                   7720:        * tests/234.html: - more tests for checking ^taint[uri] escaping
                   7721:          were added
                   7722: 
                   7723:        * src/: include/pa_string.h, main/pa_charset.C, main/pa_http.C,
                   7724:          main/pa_request.C, main/untaint.C, types/pa_vmail.C: - little
                   7725:          hacking: for dealing with transcoding+^taint[uri]
                   7726:          transcode_and_untaint was replaced by untaint_and_transcode
                   7727: 
                   7728: 2009-10-13  misha
                   7729: 
                   7730:        * tests/: 121.html, results/121.processed: - test transcoding +
                   7731:          url-escaping now
                   7732: 
                   7733:        * tests/results/auto.p: - more helpers' methods were added
                   7734: 
                   7735:        * src/main/pa_globals.C: - die instead of abort
                   7736: 
                   7737: 2009-10-06  misha
                   7738: 
                   7739:        * src/main/pa_common.C: - don't allocate memory during
                   7740:          capitalization if input string is already capitalized
                   7741: 
                   7742:        * src/targets/isapi/parser3isapi.C: - pass pre-capitalized headers
                   7743: 
                   7744:        * src/targets/cgi/parser3.C: - pass pre-capitalized headers - don't
                   7745:          use format function because it calls malloc
                   7746: 
                   7747:        * src/include/pa_common.h: - more capitalized headers were added
                   7748: 
                   7749:        * src/main/pa_common.C: - in safe mode clear executable bits during
                   7750:          file writing
                   7751: 
                   7752: 2009-10-05  misha
                   7753: 
                   7754:        * src/main/pa_charset.C: - use iterators in pa_charset.C itself
                   7755: 
                   7756: 2009-10-03  misha
                   7757: 
                   7758:        * src/: types/pa_vimage.h, classes/image.C: - ^img.font[],
                   7759:          ^img.text[] & ^img.length[] can work in utf-8 now
                   7760: 
                   7761:        * src/: include/pa_charset.h, main/pa_charset.C: - class
                   7762:          UTF8_string_iterator was added
                   7763: 
                   7764:        * src/classes/image.C: - respect utf-8 when calculate alphabet
                   7765:          length
                   7766: 
                   7767:        * src/classes/mail.C: - check from before get message.cstr
                   7768: 
                   7769: 2009-10-02  misha
                   7770: 
                   7771:        * tests/233.html: - test for image.font, image.length, image.text
                   7772:          with text in utf-8 were added
                   7773: 
                   7774:        * src/main/pa_common.C: - use pa_malloc_atomic instead of new
                   7775: 
                   7776:        * buildall-with-xml, buildall-without-xml: - comment about gc
                   7777:          version for freebsd 4 was added
                   7778: 
                   7779: 2009-10-01  misha
                   7780: 
                   7781:        * src/main/pa_exec.C: - bugfix: allocate a bit more (for
                   7782:          terminator) - read_pipe were slightly optimized
                   7783: 
                   7784: 2009-09-28  misha
                   7785: 
                   7786:        * src/main/: pa_common.C, pa_uue.C: - some magic numbers were
                   7787:          removed
                   7788: 
                   7789:        * src/types/pa_vmail.C: - forgot about space after ':'
                   7790: 
                   7791:        * src/types/pa_vmail.C: - escape filenames while preparing mail
                   7792:          body - small simplifications
                   7793: 
                   7794:        * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode now has
                   7795:          inout params like pa_base64
                   7796: 
                   7797:        * src/: types/pa_vmail.C, types/pa_vmail.h, classes/mail.C: - new
                   7798:          option $.debug-print(1) was added to mail:send - changes for
                   7799:          using uue_encode which uses less memory
                   7800: 
                   7801:        * src/main/pa_common.C: - pa_base64_encode uses less memory now
                   7802: 
                   7803:        * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode reduces less
                   7804:          memory now
                   7805: 
                   7806: 2009-09-26  misha
                   7807: 
                   7808:        * src/types/pa_vmail.C: - default encoding now is base64
                   7809: 
                   7810:        * buildall-with-xml: - moving to libxml 2.7.5 and libxslt 1.1.26
                   7811: 
                   7812: 2009-09-25  misha
                   7813: 
                   7814:        * src/types/pa_vmail.C: - capitalization of headers was added to
                   7815:          sending mail as well
                   7816: 
                   7817:        * buildall-with-xml: - catalog package was removed from libxml
                   7818: 
                   7819:        * src/main/pa_xml_io.C: - fix in removing file:// protocol for
                   7820:          win32 absolute path
                   7821: 
                   7822:        * src/include/pa_common.h: - one more capitalized header was added
                   7823: 
                   7824: 2009-09-22  misha
                   7825: 
                   7826:        * INSTALL: - comment about building just httpd binary while
                   7827:          building apache module was added
                   7828: 
                   7829: 2009-09-21  misha
                   7830: 
                   7831:        * buildall-with-xml: - moving to the latest versions of xml libs:
                   7832:          libxml 2.7.4 and libxslt 1.1.25
                   7833: 
                   7834: 2009-09-19  misha
                   7835: 
                   7836:        * tests/231.html: - test for encoding cookie in win-1251
                   7837: 
                   7838: 2009-09-18  misha
                   7839: 
                   7840:        * tests/: 224.html, 224.p: - tests for ^reflection:fields[class or
                   7841:          object] were added
                   7842: 
                   7843:        * operators.txt: - info about method ^reflection:fields[class or
                   7844:          object] was added
                   7845: 
                   7846:        * src/classes/reflection.C: - method ^reflection:fields[class or
                   7847:          object] was added
                   7848: 
                   7849:        * src/types/: pa_value.h, pa_vclass.C, pa_vclass.h, pa_vobject.h: -
                   7850:          methods get_fields were added
                   7851: 
                   7852:        * tests/232.html: - tests for @GET[name]
                   7853: 
                   7854:        * src/classes/table.C: - some changes in handling hash-options for
                   7855:          creare, join and locate
                   7856: 
                   7857:        * src/types/: pa_vobject.C, pa_vobject.h: - @GET[] now could be
                   7858:          defined with option: the type of requested value
                   7859: 
                   7860: 2009-09-17  misha
                   7861: 
                   7862:        * tests/212.html: - tests for .pattern and .options were added
                   7863: 
                   7864:        * src/types/: pa_vregex.C, pa_vregex.h: - $regex.pattern and
                   7865:          $regex.options were added
                   7866: 
                   7867: 2009-09-11  misha
                   7868: 
                   7869:        * tests/: 223.html, 223_utf8.txt, 223_win1251.txt: - test was
                   7870:          rewrited. it checks not just one case of sending cookies during
                   7871:          file::load[http], but also sending headers and fields (including
                   7872:          files)
                   7873: 
                   7874: 2009-09-10  misha
                   7875: 
                   7876:        * src/main/untaint.C: - workaround in file-spec lang for old Macs
                   7877:          was removed => now parser can open files with Russian 'r' in
                   7878:          filename
                   7879: 
                   7880:        * src/main/untaint.C: - bugfix: client charset whould be analized
                   7881:          while escaping cookies but now source charset
                   7882: 
                   7883:        * src/main/pa_http.C: - bugfix: the values of http headers didn't
                   7884:          ^tainted[uri] so it was possible to make request with incorrect
                   7885:          http header
                   7886: 
                   7887:        * src/main/pa_http.C: - capitalization of http headers during
                   7888:          file::load[http was slightly changes - bugfix: all headers which
                   7889:          parser sends during file::load[http should be transcoded and only
                   7890:          then escaped
                   7891: 
                   7892:        * src/main/untaint.C: - a bit more comments were added
                   7893: 
                   7894:        * src/classes/: file.C, string.C: - types where changes (minus 2
                   7895:          warnings)
                   7896: 
                   7897:        * src/include/pa_common.h: - 2 capitalized strings for making http
                   7898:          headers during file::load[http were added
                   7899: 
                   7900: 2009-09-08  misha
                   7901: 
                   7902:        * operators.txt: - changes in file.save and string.save were added
                   7903: 
                   7904:        * tests/: 230.html, 230.txt: - tests for checking options in
                   7905:          file.save and string.save were added
                   7906: 
                   7907:        * src/main/pa_request.C: - http headers names, which are passed to
                   7908:          SAPI::add_header_attribute are lowercased now (it'll be
                   7909:          capitalized in that method)
                   7910: 
                   7911:        * src/: types/pa_vfile.C, types/pa_vfile.h, classes/file.C,
                   7912:          classes/string.C: - file_write accepts Request_charsets and asked
                   7913:          charset and cound transcode content before writing - string.save
                   7914:          and file.save have option $.charset now
                   7915: 
                   7916:        * src/: include/pa_common.h, main/pa_common.C, classes/table.C,
                   7917:          classes/xdoc.C: - file_write accepts Request_charsets and asked
                   7918:          charset and cound transcode content before writing
                   7919: 
                   7920:        * src/include/pa_exception.h: - new exception comment string was
                   7921:          defined
                   7922: 
                   7923: 2009-09-07  misha
                   7924: 
                   7925:        * src/main/compile.y: - grammar $name\ name stops now for regex
                   7926:          sub-pattern\s
                   7927: 
                   7928: 2009-09-04  misha
                   7929: 
                   7930:        * src/main/pa_http.C: - capitalization of http headers during
                   7931:          file::load[http was implemented
                   7932: 
                   7933: 2009-09-03  misha
                   7934: 
                   7935:        * src/: main/pa_common.C, main/pa_http.C, main/pa_request.C,
                   7936:          include/pa_common.h, include/pa_sapi.h, types/pa_vcookie.C,
                   7937:          types/pa_vmail.C, targets/cgi/parser3.C,
                   7938:          targets/isapi/parser3isapi.C: - back to storing response http
                   7939:          headers in lowercase - capitalize them during output
                   7940: 
                   7941: 2009-08-31  misha
                   7942: 
                   7943:        * src/classes/table.C: - allow call with any brackets (it could be
                   7944:          useful in methods with explict result declaration)
                   7945: 
                   7946:        * src/classes/table.C: - bugfix: ^table.sort{...} doesn't work
                   7947:          correctly if $request:charset==koi8-r
                   7948: 
                   7949: 2009-08-30  misha
                   7950: 
                   7951:        * src/: include/pa_common.h, main/pa_request.C: - http headers were
                   7952:          changed: content-type => Content-type and so on
                   7953: 
                   7954:        * src/classes/file.C, src/include/pa_common.h,
                   7955:          src/include/pa_request.h, src/main/pa_http.C,
                   7956:          src/main/pa_request.C, src/types/pa_vcookie.C,
                   7957:          src/types/pa_vmail.C, src/targets/cgi/parser3.C,
                   7958:          src/targets/isapi/parser3isapi.C, tests/results/001.processed,
                   7959:          tests/results/002.processed, tests/results/003.processed,
                   7960:          tests/results/004.processed, tests/results/005.processed,
                   7961:          tests/results/006.processed, tests/results/007.processed,
                   7962:          tests/results/008.processed, tests/results/009.processed,
                   7963:          tests/results/010.processed, tests/results/011.processed,
                   7964:          tests/results/012.processed, tests/results/013.processed,
                   7965:          tests/results/014.processed, tests/results/015.processed,
                   7966:          tests/results/016.processed, tests/results/017.processed,
                   7967:          tests/results/018.processed, tests/results/019.processed,
                   7968:          tests/results/020.processed, tests/results/021.processed,
                   7969:          tests/results/022.processed, tests/results/023.processed,
                   7970:          tests/results/024.processed, tests/results/025.processed,
                   7971:          tests/results/026.processed, tests/results/027.processed,
                   7972:          tests/results/028.processed, tests/results/029.processed,
                   7973:          tests/results/030.processed, tests/results/031.processed,
                   7974:          tests/results/032.processed, tests/results/033.processed,
                   7975:          tests/results/034.processed, tests/results/035.processed,
                   7976:          tests/results/036.processed, tests/results/037.processed,
                   7977:          tests/results/038.processed, tests/results/039.processed,
                   7978:          tests/results/040.processed, tests/results/041.processed,
                   7979:          tests/results/042.processed, tests/results/043.processed,
                   7980:          tests/results/044.processed, tests/results/045.processed,
                   7981:          tests/results/046.processed, tests/results/047.processed,
                   7982:          tests/results/048.processed, tests/results/049.processed,
                   7983:          tests/results/050.processed, tests/results/051.processed,
                   7984:          tests/results/052.processed, tests/results/053.processed,
                   7985:          tests/results/054.processed, tests/results/055.processed,
                   7986:          tests/results/056.processed, tests/results/057.processed,
                   7987:          tests/results/058.processed, tests/results/059.processed,
                   7988:          tests/results/060.processed, tests/results/061.processed,
                   7989:          tests/results/062.processed, tests/results/063.processed,
                   7990:          tests/results/064.processed, tests/results/065.processed,
                   7991:          tests/results/066.processed, tests/results/067.processed,
                   7992:          tests/results/068.processed, tests/results/069.processed,
                   7993:          tests/results/070.processed, tests/results/071.processed,
                   7994:          tests/results/072.processed, tests/results/073.processed,
                   7995:          tests/results/074.processed, tests/results/075.processed,
                   7996:          tests/results/076.processed, tests/results/077.processed,
                   7997:          tests/results/078.processed, tests/results/079.processed,
                   7998:          tests/results/080.processed, tests/results/081.processed,
                   7999:          tests/results/082.processed, tests/results/083.processed,
                   8000:          tests/results/084.processed, tests/results/085.processed,
                   8001:          tests/results/086.processed, tests/results/087.processed,
                   8002:          tests/results/088.processed, tests/results/089.processed,
                   8003:          tests/results/090.processed, tests/results/091.processed,
                   8004:          tests/results/092.processed, tests/results/093.processed,
                   8005:          tests/results/094.processed, tests/results/095.processed,
                   8006:          tests/results/096.processed, tests/results/097.processed,
                   8007:          tests/results/098.processed, tests/results/099.processed,
                   8008:          tests/results/100.processed, tests/results/101.processed,
                   8009:          tests/results/102.processed, tests/results/103.processed,
                   8010:          tests/results/104.processed, tests/results/105.processed,
                   8011:          tests/results/106.processed, tests/results/107.processed,
                   8012:          tests/results/108.processed, tests/results/109.processed,
                   8013:          tests/results/110.processed, tests/results/111.processed,
                   8014:          tests/results/112.processed, tests/results/113.processed,
                   8015:          tests/results/114.processed, tests/results/115.processed,
                   8016:          tests/results/116.processed, tests/results/117.processed,
                   8017:          tests/results/118.processed, tests/results/119.processed,
                   8018:          tests/results/120.processed, tests/results/121.processed,
                   8019:          tests/results/122.processed, tests/results/123.processed,
                   8020:          tests/results/124.processed, tests/results/125.processed,
                   8021:          tests/results/126.processed, tests/results/127.processed,
                   8022:          tests/results/128.processed, tests/results/129.processed,
                   8023:          tests/results/130.processed, tests/results/131.processed,
                   8024:          tests/results/132.processed, tests/results/133.processed,
                   8025:          tests/results/134.processed, tests/results/135.processed,
                   8026:          tests/results/136.processed, tests/results/138.processed,
                   8027:          tests/results/139.processed, tests/results/140.processed,
                   8028:          tests/results/141.processed, tests/results/142.processed,
                   8029:          tests/results/143.processed, tests/results/144.processed,
                   8030:          tests/results/145.processed, tests/results/146.processed,
                   8031:          tests/results/147.processed, tests/results/148.processed,
                   8032:          tests/results/149.processed, tests/results/150.processed,
                   8033:          tests/results/151.processed, tests/results/152.processed,
                   8034:          tests/results/153.processed, tests/results/154.processed,
                   8035:          tests/results/155.processed, tests/results/156.processed,
                   8036:          tests/results/157.processed, tests/results/158.processed,
                   8037:          tests/results/159.processed, tests/results/160.processed,
                   8038:          tests/results/161.processed, tests/results/162.processed,
                   8039:          tests/results/163.processed, tests/results/164.processed,
                   8040:          tests/results/165.processed, tests/results/166.processed,
                   8041:          tests/results/167.processed, tests/results/168.processed,
                   8042:          tests/results/169.processed, tests/results/170.processed,
                   8043:          tests/results/171.processed, tests/results/172.processed,
                   8044:          tests/results/173.processed, tests/results/174.processed,
                   8045:          tests/results/175.processed, tests/results/176.processed,
                   8046:          tests/results/177.processed, tests/results/178.processed,
                   8047:          tests/results/179.processed, tests/results/180.processed,
                   8048:          tests/results/181.processed, tests/results/182.processed,
                   8049:          tests/results/183.processed, tests/results/184.processed,
                   8050:          tests/results/185.processed, tests/results/186.processed,
                   8051:          tests/results/187.processed, tests/results/188.processed,
                   8052:          tests/results/189.processed, tests/results/190.processed,
                   8053:          tests/results/191.processed, tests/results/192.processed,
                   8054:          tests/results/193.processed, tests/results/194.processed,
                   8055:          tests/results/195.processed, tests/results/196.processed,
                   8056:          tests/results/197.processed, tests/results/198.processed,
                   8057:          tests/results/199.processed, tests/results/200.processed,
                   8058:          tests/results/201.processed, tests/results/202.processed,
                   8059:          tests/results/203.processed, tests/results/204.processed,
                   8060:          tests/results/205.processed, tests/results/206.processed,
                   8061:          tests/results/207.processed, tests/results/208.processed,
                   8062:          tests/results/209.processed, tests/results/210.processed,
                   8063:          tests/results/211.processed, tests/results/212.processed,
                   8064:          tests/results/213.processed, tests/results/214.processed,
                   8065:          tests/results/215.processed, tests/results/216.processed,
                   8066:          tests/results/217.processed, tests/results/218.processed,
                   8067:          tests/results/219.processed, tests/results/220.processed,
                   8068:          tests/results/221.processed, tests/results/222.processed,
                   8069:          tests/results/223.processed, tests/results/224.processed,
                   8070:          tests/results/225.processed, tests/results/226.processed,
                   8071:          tests/results/227.processed, tests/results/228.processed,
                   8072:          tests/results/229.processed: - http headers were changed:
                   8073:          content-type => Content-type and so on
                   8074: 
                   8075: 2009-08-27  misha
                   8076: 
                   8077:        * src/: main/pa_random.C, include/pa_random.h,
                   8078:          targets/cgi/parser3.C: - year was updated :)
                   8079: 
                   8080: 2009-08-26  misha
                   8081: 
                   8082:        * tests/: 224.html, 224.p: - test for creating of parser object
                   8083:          using constructor without params - little bugfix in test
                   8084: 
                   8085:        * src/main/compile_tools.h: - bugfix: should't call autouse while
                   8086:          checking existed class while processing partial option
                   8087: 
                   8088:        * src/classes/reflection.C: - bugfix: core when creating object
                   8089:          with reflection and constructor doesn't have params
                   8090: 
                   8091: 2009-08-24  misha
                   8092: 
                   8093:        * tests/229.html: - tests for checking the number of parameters
                   8094:          were added
                   8095: 
                   8096:        * src/types/: pa_value.C, pa_vmethod_frame.h: - bugfix: the actual
                   8097:          number of method's parameters wasn't checked correctly (the bug
                   8098:          was introduced in 3.4.0)
                   8099: 
                   8100: 2009-08-22  misha
                   8101: 
                   8102:        * src/main/pa_http.C: - ^file::load[http://...;$.body[]] : $.body
                   8103:          transcoded, but tainted pieces are escaped only when
                   8104:          content-type==url-encoding
                   8105: 
                   8106:        * tests/228.html: - test for checking
                   8107:          ^file::load[http://...;$.body[]]
                   8108: 
                   8109:        * src/types/: pa_vform.C, pa_vform.h: - bugfix: attempt to detect
                   8110:          post charset was too early (charsets is empty at this moment)
                   8111: 
                   8112: 2009-08-21  misha
                   8113: 
                   8114:        * src/: include/pa_string.h, main/pa_http.C, main/pa_request.C,
                   8115:          main/untaint.C: - some fixes with transcode+untaint
                   8116: 
                   8117: 2009-08-15  misha
                   8118: 
                   8119:        * src/main/pa_exec.C: - number of argv in file::exec/cgi on unix
                   8120:          was increaced to 100 (was 50)
                   8121: 
                   8122:        * tests/227.html: - test for checking overriding properties in
                   8123:          static classes was added
                   8124: 
                   8125:        * tests/: 226.html, 226.p: - test for @autoload[] was added
                   8126: 
                   8127:        * src/: include/pa_request.h, main/compile.y, main/compile_tools.h,
                   8128:          main/execute.C, main/pa_request.C, classes/reflection.C: -
                   8129:          autouse was implemented
                   8130: 
                   8131: 2009-08-14  misha
                   8132: 
                   8133:        * src/classes/reflection.C: - outdated checkout was removed
                   8134: 
                   8135:        * src/classes/reflection.C: - optimization - method ^dynamical was
                   8136:          added.
                   8137: 
                   8138:        * src/: types/pa_value.h, types/pa_vmethod_frame.h,
                   8139:          types/pa_vstateless_class.h, main/execute.C: - optimization
                   8140: 
                   8141:        * src/types/pa_vclass.C: - exception if base on sytem class
                   8142: 
                   8143: 2009-08-12  misha
                   8144: 
                   8145:        * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
                   8146:          pa_vstateless_class.h: - little optimisation
                   8147: 
                   8148: 2009-08-11  misha
                   8149: 
                   8150:        * tests/224.html: - method_params => method_info - checking for
                   8151:          $.inherited
                   8152: 
                   8153:        * src/classes/reflection.C, operators.txt: - method method_params
                   8154:          was renamed to method_info and now it returns class name, if
                   8155:          method was defined in ancestor
                   8156: 
                   8157:        * tests/225.html: - tests for cheching properties in hierarhical
                   8158:          classes were added
                   8159: 
                   8160:        * src/: types/pa_property.h, types/pa_vclass.C, types/pa_vclass.h,
                   8161:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   8162:          main/compile.y, main/execute.C, classes/classes.C: - problems
                   8163:          with properties in new classes implementation were fixed
                   8164: 
                   8165: 2009-08-10  misha
                   8166: 
                   8167:        * src/main/execute.C: - now constructor shouldn't be defined in
                   8168:          class. it could be defined in parent.
                   8169: 
                   8170: 2009-08-09  misha
                   8171: 
                   8172:        * src/classes/reflection.C: - ^reflection:methods doesn't return
                   8173:          base's methods
                   8174: 
                   8175: 2009-08-08  misha
                   8176: 
                   8177:        * src/: classes/classes.h, classes/date.C, classes/file.C,
                   8178:          classes/form.C, classes/hash.C, classes/hashfile.C,
                   8179:          classes/image.C, classes/mail.C, classes/op.C,
                   8180:          classes/reflection.C, classes/regex.C, classes/string.C,
                   8181:          classes/table.C, classes/xdoc.C, classes/xnode.C,
                   8182:          classes/xnode.h, include/pa_hash.h, main/execute.C,
                   8183:          main/pa_http.C, main/pa_request.C, targets/cgi/parser3.C,
                   8184:          types/pa_method.h, types/pa_property.h, types/pa_value.C,
                   8185:          types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
                   8186:          types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
                   8187:          types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.C,
                   8188:          types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
                   8189:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
                   8190:          types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
                   8191:          types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
                   8192:          types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.h,
                   8193:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vproperty.C,
                   8194:          types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
                   8195:          types/pa_vresponse.C, types/pa_vresponse.h,
                   8196:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   8197:          types/pa_vstateless_object.h, types/pa_vstatus.C,
                   8198:          types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
                   8199:          types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
                   8200:          types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
                   8201:          types/pa_wwrapper.h, types/types.vcproj: - new classes
                   8202:          implementation
                   8203: 
                   8204:        * buildall-with-xml, buildall-without-xml: - gc has a bug if
                   8205:          USE_MUNMAP is used. so it is disabled as a workaround.
                   8206: 
                   8207: 2009-08-05  misha
                   8208: 
                   8209:        * src/: main/pa_common.C, include/pa_common.h: - not needed
                   8210:          parameter was removed
                   8211: 
                   8212:        * src/main/pa_http.C: - bugfix: error was during detecting
                   8213:          content-type of file which was loaded by http
                   8214: 
                   8215: 2009-08-01  misha
                   8216: 
                   8217:        * src/main/execute.C, src/main/compile.y, src/include/pa_opcode.h,
                   8218:          src/types/pa_wcontext.h, src/types/pa_wwrapper.h, INSTALL: -
                   8219:          OPTIMIZE_BYTECODE_CONSTRUCT_OBJECT and OPTIMIZE_CONSTRUCT_OBJECT
                   8220:          can't be disabled with defines any longer
                   8221: 
                   8222: 2009-07-29  misha
                   8223: 
                   8224:        * src/classes/reflection.C, tests/results/224.processed: - for
                   8225:          native methods with any call type now returned empty call_type
                   8226:          value
                   8227: 
                   8228:        * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
                   8229:          classes/table.C, include/pa_hash.h, include/pa_request.h,
                   8230:          main/pa_request.C: - break in cycles was optimized
                   8231: 
                   8232:        * INSTALL: - more defines were described
                   8233: 
                   8234: 2009-07-28  misha
                   8235: 
                   8236:        * operators.txt: - some changes in information about reflection
                   8237:          class
                   8238: 
                   8239:        * tests/: 224.html, 224.p: - tests for reflection class
                   8240: 
                   8241:        * src/classes/reflection.C: - some bugs were fixed, method classes
                   8242:          was added, refactoring
                   8243: 
                   8244: 2009-07-26  misha
                   8245: 
                   8246:        * src/classes/classes.vcproj: - reflection class wass added to
                   8247:          project
                   8248: 
                   8249:        * operators.txt: - information about reflection class was added
                   8250: 
                   8251:        * src/classes/reflection.C: - class was redesigned
                   8252: 
                   8253: 2009-07-24  misha
                   8254: 
                   8255:        * src/classes/: Makefile.am, reflection.C: - class reflection was
                   8256:          added
                   8257: 
                   8258:        * src/types/pa_vstateless_class.h: - method for reflection method's
                   8259:          in classes was added
                   8260: 
                   8261: 2009-07-22  misha
                   8262: 
                   8263:        * src/main/compile_tools.h: - bugfix: $object.$var was
                   8264:          over-optimized. it failed if $object1.$object2.field
                   8265: 
                   8266: 2009-07-16  misha
                   8267: 
                   8268:        * src/: lib/cord/cordbscs.c, lib/cord/cordprnt.c,
                   8269:          lib/cord/cordxtra.c, lib/cord/include/cord.h,
                   8270:          include/pa_string.h, main/pa_string.C: - optimization: CORD_str,
                   8271:          CORD_to_const_char_star, CORD_to_char_star and CORD_substr have
                   8272:          one more arg: length of cord
                   8273: 
                   8274: 2009-07-15  misha
                   8275: 
                   8276:        * src/main/pa_http.C: - bugfix: $.cookies' values should be force
                   8277:          tainted in ^file::load[http://...;$.cookies[]]
                   8278: 
                   8279:        * src/classes/: op.C, regex.C, string.C: - new string with
                   8280:          exception was used
                   8281: 
                   8282:        * src/include/pa_exception.h: - new string with exception was added
                   8283: 
                   8284:        * tests/223.html: - test for checking cookie-encoding during
                   8285:          ^file::load[http was added
                   8286: 
                   8287:        * tests/: 221.html, 222.html: - tests for checking type of
                   8288:          $table.fields.field were added
                   8289: 
                   8290:        * src/types/pa_vtable.C: - not used var decl was removed
                   8291: 
                   8292:        * src/include/pa_string.h: - use cached string length in Body::mid.
                   8293:          it improves speed of match with brackets in pattern
                   8294: 
                   8295:        * src/lib/cord/include/cord.h: - make CORD_substr_checked available
                   8296:          outside
                   8297: 
                   8298: 2009-07-14  misha
                   8299: 
                   8300:        * src/types/pa_vtable.C: - $table.fields.a return string even if
                   8301:          column is empty (sometime returned void) - $table.fields was
                   8302:          added for nameless tables
                   8303: 
                   8304:        * src/targets/cgi/getopt.c: - one warning resolved
                   8305: 
                   8306:        * src/main/pa_string.C: - potentian bug fixed
                   8307: 
                   8308:        * src/classes/op.C: - small optimization in taint/untaint
                   8309: 
                   8310: 2009-07-13  misha
                   8311: 
                   8312:        * tests/156.html: - test for $cookie[...$.httponly(false)...] was
                   8313:          added
                   8314: 
                   8315:        * src/types/pa_value.C: - bugfix: $cookie[...$.httponly(false)...]
                   8316:          souldn't add the attribut to output
                   8317: 
                   8318: 2009-07-11  misha
                   8319: 
                   8320:        * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
                   8321:          stack size was increaced to 2MB (default=1MB)
                   8322: 
                   8323: 2009-07-08  misha
                   8324: 
                   8325:        * src/main/pa_string.C: - link to UTF-8 description was added
                   8326: 
                   8327:        * src/include/pa_hash.h: - hash keeps element's order in more
                   8328:          places (ex: ._keys[])
                   8329: 
                   8330:        * tests/220.html: - test for checking order of elements in hash in
                   8331:          foreach was added
                   8332: 
                   8333:        * tests/172.html: - small changes in printing hash
                   8334: 
                   8335:        * tests/129.html: - small changes in printing hash
                   8336: 
                   8337:        * src/: include/pa_common.h, include/pa_hash.h,
                   8338:          include/pa_request.h, types/pa_value.h, types/pa_vmethod_frame.C,
                   8339:          types/pa_vmethod_frame.h: - hash now keeps order of elements
                   8340: 
                   8341:        * tests/014.html: - small changes in printing hash
                   8342: 
                   8343: 2009-07-07  misha
                   8344: 
                   8345:        * src/classes/op.C: - new taint language "parser-code" was added
                   8346: 
                   8347:        * tests/219.html: - test for auto untaint parser code in process
                   8348:          was added
                   8349: 
                   8350:        * src/classes/op.C: - tainted pieces in body of process are
                   8351:          auto-untainted now: ^ -> ^^, $ -> ^$ etc.
                   8352: 
                   8353:        * src/: include/pa_string.h, main/untaint.C: - new language
                   8354:          L_PARSER_CODE for auto-untaint in process was added
                   8355: 
                   8356:        * src/: classes/file.C, classes/hash.C, classes/image.C,
                   8357:          classes/op.C, classes/string.C, classes/table.C, classes/void.C,
                   8358:          classes/xdoc.C, include/pa_string.h, main/pa_charset.C,
                   8359:          main/pa_http.C, main/pa_request.C, main/pa_xml_io.C,
                   8360:          main/untaint.C, types/pa_value.h, types/pa_vhash.h,
                   8361:          types/pa_vmail.C, types/pa_vobject.h, types/pa_vstring.h: - some
                   8362:          code cleanup
                   8363: 
                   8364: 2009-07-06  misha
                   8365: 
                   8366:        * src/classes/: file.C, hash.C, image.C, mail.C, op.C, string.C,
                   8367:          table.C, void.C, xdoc.C: - cstr(params) and cstrm(params) were
                   8368:          deleted. taint_cstr[m] and untaint_cstr[m] should be used
                   8369: 
                   8370:        * src/types/: pa_vcookie.C, pa_vhash.h, pa_vhashfile.C,
                   8371:          pa_vimage.C, pa_vmail.C, pa_vobject.h, pa_vregex.C,
                   8372:          pa_vrequest.C, pa_vstring.h, pa_vvoid.h: - cstr(params) and
                   8373:          cstrm(params) were deleted. taint_cstr[m] and untaint_cstr[m]
                   8374:          should be used
                   8375: 
                   8376:        * src/main/: pa_charset.C, pa_common.C, pa_exec.C, pa_http.C,
                   8377:          pa_request.C, pa_sql_driver_manager.C, pa_xml_io.C: -
                   8378:          cstr(params) and cstrm(params) were deleted. taint_cstr[m] and
                   8379:          untaint_cstr[m] should be used
                   8380: 
                   8381:        * src/include/pa_string.h: - cstr(params) and cstrm(params) were
                   8382:          deleted. taint_cstr[m] and untaint_cstr[m] should be used
                   8383: 
                   8384:        * tests/218.html: - test for checking automatic file-spec-taint was
                   8385:          added
                   8386: 
                   8387:        * src/: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vmail.C,
                   8388:          types/pa_vregex.C, types/pa_vrequest.C, types/pa_vstring.C,
                   8389:          classes/file.C, classes/hash.C, classes/image.C,
                   8390:          classes/string.C, classes/table.C, classes/void.C,
                   8391:          classes/xdoc.C: - optimizations and simplification of
                   8392:          string.cstr(...)
                   8393: 
                   8394:        * src/: include/pa_string.h, main/untaint.C, main/pa_common.C,
                   8395:          main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C:
                   8396:          - optimizations and simplification of string.cstr(...)
                   8397: 
                   8398: 2009-07-04  misha
                   8399: 
                   8400:        * tests/217.html: - test for recursion detection was added
                   8401: 
                   8402:        * src/: types/types.vcproj, main/main.vcproj,
                   8403:          classes/classes.vcproj, targets/cgi/parser3.vcproj,
                   8404:          targets/isapi/parser3isapi.vcproj: - RuntimeTypeInfo was removed
                   8405:          from .vcproj
                   8406: 
                   8407:        * src/types/pa_wwrapper.h: - dynamic_cast was removed
                   8408: 
                   8409:        * tests/: 195.html, 195_utf8.txt, 195_windows1251.txt: - tests for
                   8410:          uploading files and case-insensitive http-method were added
                   8411: 
                   8412:        * tests/: 216.html, 216_dir/1, 216_dir/2.txt: - test for checking
                   8413:          tainted pattern in ^file:list[] was added
                   8414: 
                   8415: 2009-07-03  misha
                   8416: 
                   8417:        * src/: classes/classes.vcproj, main/main.vcproj,
                   8418:          types/types.vcproj, targets/cgi/parser3.vcproj,
                   8419:          targets/isapi/parser3isapi.vcproj: - enable runtime info (needed
                   8420:          for dynamic_cast) - little options changes
                   8421: 
                   8422:        * src/main/pa_http.C: - file::load[http works now with uploading
                   8423:          files _and_ changing $.charset
                   8424: 
                   8425: 2009-06-29  misha
                   8426: 
                   8427:        * src/types/pa_vregex.C: - ^untaint[regex][] for all tainted data
                   8428:          while creating pattern
                   8429: 
                   8430: 2009-06-25  misha
                   8431: 
                   8432:        * src/classes/image.C, operators.txt: - options' names for
                   8433:          ^image.font were changed to $.space, $.width and $spacing -
                   8434:          default space width now == gif's width
                   8435: 
                   8436: 2009-06-24  misha
                   8437: 
                   8438:        * tests/215.html: - tests for $file.mode were added
                   8439: 
                   8440:        * operators.txt: - added info about $file.mode and changes in
                   8441:          ^image.font[
                   8442: 
                   8443:        * src/: types/pa_vimage.h, classes/image.C: ^image.font - third
                   8444:          param now could be omited - third param now could be hash (with
                   8445:          all widths options: $.space-width, $.letter-width) - it's
                   8446:          possible to specify tracking ($.letter-space)
                   8447: 
                   8448:        * src/classes/file.C: - file objects now could have mode field
                   8449:          (text|binary)
                   8450: 
                   8451:        * src/types/: pa_vfile.C, pa_vfile.h: - method set_method was added
                   8452: 
                   8453: 2009-06-23  misha
                   8454: 
                   8455:        * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
                   8456:          trim can work with utf-8 chars now
                   8457: 
                   8458: 2009-06-20  misha
                   8459: 
                   8460:        * src/: classes/hash.C, main/pa_string.C: - string length cacheing
                   8461:          was implemented
                   8462: 
                   8463:        * src/classes/table.C: - string length cacheing was implemented
                   8464: 
                   8465:        * src/include/pa_string.h: - string length cacheing was implemented
                   8466: 
                   8467: 2009-06-17  misha
                   8468: 
                   8469:        * src/main/execute.C: - value param was removed from
                   8470:          WContext::WContext
                   8471: 
                   8472:        * src/types/: pa_vcode_frame.h, pa_vmethod_frame.C, pa_wcontext.h,
                   8473:          pa_wwrapper.h: - value param was removed from WContext::WContext
                   8474:          - field wcontext was removed from VCodeFrame (using fparent
                   8475:          instead)
                   8476: 
                   8477:        * tests/214.html: - test with hash copying
                   8478: 
                   8479: 2009-06-16  misha
                   8480: 
                   8481:        * tests/: 062.html, results/062.processed: - evaluation hardcoded
                   8482:          strings doesn't work in expression anymore
                   8483: 
                   8484:        * src/main/execute.C: - less calls for get_constructing() - little
                   8485:          refactoring
                   8486: 
                   8487:        * src/: types/pa_wcontext.h, types/pa_wwrapper.h,
                   8488:          include/pa_request.h: - less calls for get_constructing()
                   8489: 
                   8490:        * src/classes/: hash.C, hashfile.C: - fixed bug which was
                   8491:          introduced with OPTIMIZE_SINGLE_STRING optimization
                   8492: 
                   8493: 2009-06-14  misha
                   8494: 
                   8495:        * src/: classes/date.C, classes/file.C, classes/hash.C,
                   8496:          classes/hashfile.C, classes/image.C, classes/regex.C,
                   8497:          classes/table.C, classes/xdoc.C, classes/xnode.h,
                   8498:          types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
                   8499:          types/pa_vstateless_class.h, main/execute.C: - create object for
                   8500:          storing object's fields only for parser objects
                   8501: 
                   8502: 2009-06-13  misha
                   8503: 
                   8504:        * buildall-with-xml, buildall-without-xml: - new option was added
                   8505:          for building GC (it slightly reduces memory usage)
                   8506: 
                   8507:        * src/types/: pa_wcontext.h, pa_wwrapper.h: - optimization of
                   8508:          single string write
                   8509: 
                   8510:        * src/main/execute.C: - bytecode optimization of ^class:constructor
                   8511:          - optimization of single string write
                   8512: 
                   8513:        * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.h:
                   8514:          - bytecode optimization of ^class:constructor
                   8515: 
                   8516: 2009-06-09  misha
                   8517: 
                   8518:        * src/targets/cgi/parser3.C: - type size_t was changed to int in
                   8519:          main (better compatibility)
                   8520: 
                   8521: 2009-06-08  misha
                   8522: 
                   8523:        * src/main/compile.y: - I've forgot to commit it :(
                   8524: 
                   8525: 2009-06-07  misha
                   8526: 
                   8527:        * src/include/pa_opcode.h: - more optimizations for WITH_SELF,
                   8528:          WITH_READ and WITH_ROOT
                   8529: 
                   8530:        * src/main/: compile.y, compile_tools.C, compile_tools.h,
                   8531:          execute.C: - more optimizations for WITH_SELF, WITH_READ and
                   8532:          WITH_ROOT - little refactoring
                   8533: 
                   8534: 2009-06-06  misha
                   8535: 
                   8536:        * tests/213.html: - tests for 3rd match string-param were added
                   8537: 
                   8538:        * src/classes/string.C: - 3rd match param could be string now
                   8539: 
                   8540:        * src/main/: compile.y, compile_tools.h: - much more bytecode's
                   8541:          sequences optimized to WITH_SELF__VALUE__GET_ELEMENT and
                   8542:          GET_OBJECT_ELEMENT
                   8543: 
                   8544: 2009-06-05  misha
                   8545: 
                   8546:        * src/main/pa_http.C: - bugfix: content-length was not calculated
                   8547:          if $.body was specified
                   8548: 
                   8549: 2009-06-04  misha
                   8550: 
                   8551:        * src/classes/op.C: - optimizing write_assign_lang in connect
                   8552: 
                   8553:        * src/classes/op.C: - optimizing write_assign_lang in taint/untaint
                   8554: 
                   8555:        * src/main/execute.C: - little refactoring - optimizing
                   8556:          write_assign_lang in taint/untaint
                   8557: 
                   8558:        * src/include/pa_opcode.h: - little refactoring
                   8559: 
                   8560:        * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
                   8561:          main/compile_tools.h, main/execute.C: - optimizations for
                   8562:          $self.field, ^self.method, $self.field[...] and $self.field(...)
                   8563:          were added
                   8564: 
                   8565: 2009-06-03  misha
                   8566: 
                   8567:        * src/types/pa_venv.C: - pa_strdup was replaced by strdup
                   8568: 
                   8569: 2009-06-02  misha
                   8570: 
                   8571:        * src/: main/compile.y, main/compile_tools.h, main/execute.C,
                   8572:          include/pa_opcode.h: - refactoring in last optimizations
                   8573:          ($a[...], $a(...), $.a[...], $.a(...)). a bit less optimizations
                   8574:          now but code is much easy and it is ready for further
                   8575:          improvements.
                   8576: 
                   8577: 2009-05-27  misha
                   8578: 
                   8579:        * src/: types/pa_junction.h, types/pa_vjunction.C,
                   8580:          types/pa_vjunction.h, types/pa_vmethod_frame.h, main/execute.C: -
                   8581:          changed in destructing junctions
                   8582: 
                   8583:        * src/main/: pa_charset.C, pa_string.C: - more safe creation on
                   8584:          String:Body
                   8585: 
                   8586: 2009-05-26  misha
                   8587: 
                   8588:        * src/: main/pa_common.C, main/pa_http.C, include/pa_common.h: -
                   8589:          one method detect_charset was deleted - bug was fixed in this
                   8590:          method (error while detecting charset in content_type withot last
                   8591:          ';')
                   8592: 
                   8593:        * src/types/: pa_vform.C, pa_vform.h: - detect post charset only
                   8594:          once
                   8595: 
                   8596: 2009-05-25  misha
                   8597: 
                   8598:        * src/classes/file.C: - bugfix: file::exec didn't work after
                   8599:          optimizing of helper_length
                   8600: 
                   8601: 2009-05-24  misha
                   8602: 
                   8603:        * src/main/compile_tools.h: - $a[$b.c] and $a[$b.$c] optimisations
                   8604:          were added - little refactoring
                   8605: 
                   8606:        * src/main/execute.C: - core while printing in debug log
                   8607:          non-printable values was fixed - $a[$b.c] and $a[$b.$c]
                   8608:          optimisations were added
                   8609: 
                   8610:        * src/include/pa_opcode.h: - new opcodes for $a[$b.c] and $a[$b.$c]
                   8611:          were added
                   8612: 
                   8613: 2009-05-23  misha
                   8614: 
                   8615:        * src/: lib/cord/cordbscs.c, lib/cord/cordxtra.c,
                   8616:          lib/cord/include/cord.h, include/pa_string.h, main/untaint.C: -
                   8617:          CORD_cat optimization
                   8618: 
                   8619:        * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C:
                   8620:          - call constr optimisation under separate define now
                   8621: 
                   8622:        * src/main/: compile_tools.h, execute.C: - bugfix: $a[] $b[$a] --
                   8623:          in $b should be string, not void
                   8624: 
                   8625:        * src/main/compile.y: - little fix for rem-cut optimisation
                   8626: 
                   8627:        * src/: include/pa_opcode.h, main/compile_tools.C,
                   8628:          main/compile_tools.h, main/execute.C: - optimisations for
                   8629:          $a[^b[...]], $.a[^b[...]], $a(^b[...]) and $.a(^b[...])
                   8630: 
                   8631:        * INSTALL: - description of some #defined were added
                   8632: 
                   8633:        * src/types/: pa_vfile.C, pa_vfile.h: - fill .'text' field only
                   8634:          before 1st access (memory usage is reduced if don't access to
                   8635:          .text field)
                   8636: 
                   8637:        * src/include/pa_array.h: - array grows step now not static (it
                   8638:          reduces numbers of reallocs)
                   8639: 
                   8640: 2009-05-20  misha
                   8641: 
                   8642:        * src/include/pa_opcode.h: - bytecode optimization for $a(1),
                   8643:          $.b(2), $c[d] and $.e[f] was added
                   8644: 
                   8645:        * src/main/: compile.y, compile_tools.C, compile_tools.h,
                   8646:          execute.C: - bytecode optimization for $a(1), $.b(2), $c[d] and
                   8647:          $.e[f] was added
                   8648: 
                   8649:        * src/main/execute.C: - debug printing moved in defines
                   8650: 
                   8651:        * src/main/: compile.y, compile_tools.C, compile_tools.h: - bugfix
                   8652:          and little refactoring for OP_GET_OBJECT_ELEMENT +
                   8653:          OP_GET_OBJECT_VAR_ELEMENT optimisation
                   8654: 
                   8655: 2009-05-19  misha
                   8656: 
                   8657:        * src/main/: compile.y, compile_tools.C, compile_tools.h,
                   8658:          execute.C: - $a.$b & ^a.$b bytecode optimisation
                   8659: 
                   8660:        * src/include/pa_opcode.h: - new opcodes were added (for $a.$b &
                   8661:          ^a.$b optimisation)
                   8662: 
                   8663:        * src/main/compile.y: - compiler now generate new opcodes:
                   8664:          OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE for $a.b and
                   8665:          ^a.b - compiler now cut off ^rem{ with all content ; any number
                   8666:          of params }
                   8667: 
                   8668:        * src/main/execute.C: - code for handle new opcodes
                   8669:          OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE was added
                   8670: 
                   8671:        * src/main/: compile_tools.C, compile_tools.h: - new parameter was
                   8672:          added for LA2V and LA2S
                   8673: 
                   8674:        * src/include/pa_opcode.h: - new defines which can be used for
                   8675:          disable some bytecode optimisation and new opcodes were added
                   8676: 
                   8677: 2009-05-17  misha
                   8678: 
                   8679:        * src/lib/cord/cordxtra.c: - bugfix.
                   8680: 
                   8681:        * tests/212.html: - .size[] and .study_size[] were added to tests
                   8682: 
                   8683:        * operators.txt: - info about regex class was added
                   8684: 
                   8685:        * tests/212.html: - tests for regex class were added
                   8686: 
                   8687: 2009-05-16  misha
                   8688: 
                   8689:        * buildall-with-xml, buildall-without-xml: - moving from gc6.8 to
                   8690:          gc7.1
                   8691: 
                   8692:        * tests/022.html: - test for ^file:list[path;] (empty second param)
                   8693:          was added
                   8694: 
                   8695:        * src/classes/file.C: - bugfix: ^file:list[path;] [empty second
                   8696:          param) should work
                   8697: 
                   8698: 2009-05-15  misha
                   8699: 
                   8700:        * src/classes/table.C: - automatically disable stringstream usage
                   8701:          on freebsd4
                   8702: 
                   8703:        * src/lib/cord/cordxtra.c: - var decl should be at the beginning of
                   8704:          scope
                   8705: 
                   8706:        * tests/211.html: - test with different types of access to hash was
                   8707:          added
                   8708: 
                   8709:        * tests/210.html: - test which checks for loosing tainting in
                   8710:          hash's keys was added
                   8711: 
                   8712:        * tests/208.html: - some parser work added. or stime == 0 %-)
                   8713: 
                   8714:        * src/lib/cord/cordbscs.c: - little hack was added to cord
                   8715: 
                   8716:        * src/lib/cord/cordxtra.c: - cacheing of cord chars was added
                   8717: 
                   8718:        * src/include/pa_version.h, configure.in: - moko have made a lot of
                   8719:          optimisations for increacing version number more dramatically :)
                   8720: 
                   8721:        * src/classes/date.C: - little refactoring: use constructor which
                   8722:          accepts formated string
                   8723: 
                   8724:        * src/: include/pa_string.h, main/pa_string.C: - String constructor
                   8725:          which can print formatted string was added
                   8726: 
                   8727: 2009-05-14  misha
                   8728: 
                   8729:        * src/include/pa_string.h: - type was fixed
                   8730: 
                   8731:        * src/: classes/hashfile.C, classes/op.C,
                   8732:          include/pa_cache_managers.h, include/pa_charset.h,
                   8733:          include/pa_charsets.h, include/pa_common.h, include/pa_hash.h,
                   8734:          include/pa_request.h, include/pa_sql_driver_manager.h,
                   8735:          include/pa_string.h, include/pa_stylesheet_manager.h,
                   8736:          include/pa_table.h, include/pa_xml_io.h, main/pa_charset.C,
                   8737:          main/pa_charsets.C, main/pa_string.C,
                   8738:          main/pa_stylesheet_connection.C, types/pa_value.h,
                   8739:          types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
                   8740:          types/pa_vobject.C, types/pa_vstateless_class.C,
                   8741:          types/pa_vstateless_class.h: - hash_code caching was implemented
                   8742:          (seaches should be faster now)
                   8743: 
                   8744:        * src/: classes/file.C, classes/hash.C, classes/image.C,
                   8745:          classes/string.C, classes/table.C, include/pa_string.h,
                   8746:          main/pa_charset.C, main/pa_http.C, main/pa_request.C,
                   8747:          types/pa_vconsole.h, types/pa_vcookie.C, types/pa_venv.C,
                   8748:          types/pa_vform.C, types/pa_vhashfile.C, types/pa_vregex.C,
                   8749:          types/pa_vrequest.C: - String constructors don't have that stupid
                   8750:          true/false param which means 'tainted'. they accept lang instead.
                   8751: 
                   8752:        * src/types/pa_vmethod_frame.h: - bugfix: taint/untaint didn't work
                   8753:          with OPTIMIZE_RESULT
                   8754: 
                   8755:        * src/types/: pa_method.h, pa_vstateless_class.C: - less warnings
                   8756:          wher OPTIMIZE_RESULT and OPTIMIZE_CALL not defined
                   8757: 
                   8758: 2009-05-13  misha
                   8759: 
                   8760:        * src/: types/pa_method.h, types/pa_vcookie.C, types/pa_vdouble.h,
                   8761:          types/pa_venv.C, types/pa_vhashfile.C, types/pa_vint.h,
                   8762:          types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
                   8763:          types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
                   8764:          types/pa_vstateless_class.C, main/execute.C, main/pa_charset.C,
                   8765:          main/pa_common.C, main/pa_request.C, main/pa_string.C,
                   8766:          include/pa_string.h, classes/date.C, classes/file.C,
                   8767:          classes/hash.C, classes/image.C, classes/string.C,
                   8768:          classes/table.C, classes/xdoc.C: - result optimisation -
                   8769:          helper_length parameter removed from string constructors
                   8770: 
                   8771: 2009-05-11  misha
                   8772: 
                   8773:        * tests/209.html: - tests for ^hash::create[hash] were added
                   8774: 
                   8775:        * tests/208.html: - tests for $status:rusage, $status:memory,
                   8776:          ^memory:compact[] were added
                   8777: 
                   8778:        * tests/207.html: -tests for abs, sign, trunc, frac, exp, log,
                   8779:          log10 were added
                   8780: 
                   8781:        * tests/206.html: - test for try with finally was added
                   8782: 
                   8783: 2009-05-10  misha
                   8784: 
                   8785:        * tests/205.html: - test for ^file::create[...] was added
                   8786: 
                   8787:        * tests/204.html: - test for ^response:clear[] was added
                   8788: 
                   8789:        * tests/038.html: - tests for trigonometric functions were added
                   8790: 
                   8791:        * tests/014.html: - tests for ^hash.containts and ^hash.delete were
                   8792:          added - more tests for .add, .sub, .union, .intersects and
                   8793:          .intersections
                   8794: 
                   8795:        * tests/065.html: - test for ^file:dirname was added
                   8796: 
                   8797:        * tests/030.html: - test for $cookie:fields was added
                   8798: 
                   8799:        * tests/203.html: - test for ^h._keys[column name] was added
                   8800: 
                   8801:        * tests/201.html: - tests for .trim were added
                   8802: 
                   8803:        * tests/202.html: - tests for last-day,
                   8804:          date:calendar[type](YYYY;MM;DD) were added
                   8805: 
                   8806:        * tests/200.html: - tests for .sort(), .sort{}, .flip[] and
                   8807:          .offset[type](N) were added
                   8808: 
                   8809:        * tests/185.html: - more tests for .left(N), .right(N), .min(N;M)
                   8810:          and .pos[c](N) were added
                   8811: 
                   8812:        * tests/141.html: - test for math:sha1 was added
                   8813: 
                   8814:        * tests/063.html: - tests for .mod(N), .inc[] & .dec[] were added
                   8815: 
                   8816: 2009-05-09  misha
                   8817: 
                   8818:        * src/main/compile.y: - rollback
                   8819: 
                   8820: 2009-05-05  misha
                   8821: 
                   8822:        * src/main/pa_exec.C: - little optimisation: somewhere length() was
                   8823:          replaced by is_empty()
                   8824: 
                   8825:        * src/: include/pa_string.h, main/pa_charset.C: - little
                   8826:          optimisation: somewhere length() was replaced by is_empty()
                   8827: 
                   8828:        * src/classes/table.C: - little optimisation: somewhere length()
                   8829:          was replaced by is_empty()
                   8830: 
                   8831:        * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
                   8832:          classes/op.C, classes/table.C, main/pa_exception.C: - little
                   8833:          optimisation: somewhere length() was replaced by is_empty()
                   8834: 
                   8835: 2009-05-04  misha
                   8836: 
                   8837:        * src/: types/pa_method.h, types/pa_vstateless_class.C,
                   8838:          types/pa_vstateless_class.h, main/execute.C,
                   8839:          include/pa_request.h, classes/hash.C, classes/op.C,
                   8840:          classes/table.C: - more optimisations were added: some operators
                   8841:          don't switch write context anylonger
                   8842: 
                   8843: 2009-05-01  misha
                   8844: 
                   8845:        * src/main/compile.y: - slightly more opcode optimisations for
                   8846:          WITH_WRITE + VALUE + GET_ELEMENT -> OP_VALUE__GET_ELEMENT
                   8847: 
                   8848:        * src/main/execute.C: - simplifying process for getters
                   8849: 
                   8850: 2009-04-30  misha
                   8851: 
                   8852:        * tests/: 198.html, 199.html: - new line fixes (should be 0x0A)
                   8853: 
                   8854:        * tests/results/199.processed: - test for checking $result into
                   8855:          ^rem was added
                   8856: 
                   8857:        * tests/199.html: - test for checking $result into ^rem was added
                   8858: 
                   8859:        * tests/: 022.html, 096.html: - þsort after :list was asses (on
                   8860:          some OS it returns list in different order)
                   8861: 
                   8862:        * src/: include/pa_array.h, include/pa_request.h,
                   8863:          include/pa_stack.h, main/execute.C, types/pa_vmethod_frame.h: -
                   8864:          changes in stack impl - get_element() optimisation: 3rd param
                   8865:          removed - bugfix: problems with reading empty input param -
                   8866:          defines SAVE_CONTEXT and RESTORE_CONTEXT were added and used
                   8867: 
                   8868:        * tests/results/198.processed: - test for reading empty local var
                   8869:          was added
                   8870: 
                   8871:        * tests/198.html: - test for reading empty local var was added
                   8872: 
                   8873: 2009-04-29  misha
                   8874: 
                   8875:        * src/main/compile.y: - bugfix: couldn't compile because
                   8876:          OP_VALUE__GET_ELEMENT should be unde #ifdef
                   8877: 
                   8878:        * src/: include/pa_array.h, include/pa_opcode.h,
                   8879:          include/pa_request.h, main/compile.y, main/execute.C,
                   8880:          main/pa_request.C, types/pa_vmethod_frame.C,
                   8881:          types/pa_vmethod_frame.h: - we can work without opcode
                   8882:          OP_STORE_PARAM, so it was removed
                   8883: 
                   8884: 2009-04-28  misha
                   8885: 
                   8886:        * src/: include/pa_opcode.h, main/compile.y, main/execute.C: -
                   8887:          op-codes optimisation:   1. VALUE+GET_CLASS=>VALUE_GET_CLASS   2.
                   8888:          WITH_READ+VALUE+GET_ELEMENT=>VALUE__GET_ELEMENT (not all yet)
                   8889:          3. WITH_READ+VALUE+GET_ELEMENT__WRITE=>VALUE__GET_ELEMENT__WRITE
                   8890:          4.
                   8891:          WITH_READ+VALUE+GET_ELEMENT_OR_OPERATOR=>VALUE__GET_ELEMENT_OR_OPERATOR
                   8892: 
                   8893:        * src/main/compile_tools.h: - new stuff for op-codes optimisation
                   8894: 
                   8895:        * src/: main/pa_string.C, classes/string.C: - !length() =>
                   8896:          is_empty()
                   8897: 
                   8898: 2009-04-27  misha
                   8899: 
                   8900:        * src/types/pa_vregex.h: - back explicit vars initialisation
                   8901: 
                   8902: 2009-04-24  misha
                   8903: 
                   8904:        * src/classes/string.C: - ups. typo fixed
                   8905: 
                   8906:        * src/main/execute.C: - more replacements '*new VBool' to
                   8907:          'VBool::get' - checks for ^break[], ^continue[] and
                   8908:          parser.interrupted were optimised
                   8909: 
                   8910:        * src/classes/string.C: - number of params.count() calls was
                   8911:          slightly reduced
                   8912: 
                   8913: 2009-04-23  misha
                   8914: 
                   8915:        * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
                   8916:          make it x64 friendly
                   8917: 
                   8918:        * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
                   8919:          parser is x64 friendly now
                   8920: 
                   8921: 2009-04-22  misha
                   8922: 
                   8923:        * src/types/pa_vhashfile.C: - coder friendly exception about
                   8924:          exceeding record size was added
                   8925: 
                   8926:        * src/classes/file.C: - use vregex object instead of direct calls
                   8927:          methods from pcre lib
                   8928: 
                   8929:        * src/: classes/file.C, include/pa_string.h, main/pa_string.C,
                   8930:          classes/string.C: - use vregex object instead of direct calls
                   8931:          methods from pcre lib
                   8932: 
                   8933:        * src/: include/pa_common.h, main/pa_common.C: - method
                   8934:          print_pcre_exec_error_text was moved to class vregex
                   8935: 
                   8936:        * src/classes/: Makefile.am, classes.vcproj, regex.C: - class regex
                   8937:          was added
                   8938: 
                   8939:        * src/types/: Makefile.am, pa_vregex.C, pa_vregex.h, types.vcproj:
                   8940:          - class vregex was added
                   8941: 
                   8942: 2009-04-21  misha
                   8943: 
                   8944:        * buildall-with-xml, buildall-without-xml: - pcre 7.8 -> pcre 7.9
                   8945: 
                   8946:        * src/: types/pa_junction.h, types/pa_value.C,
                   8947:          types/pa_vjunction.C, types/pa_vjunction.h, types/pa_wcontext.C,
                   8948:          types/pa_wcontext.h, main/execute.C, classes/op.C: -
                   8949:          junction-optimisation (destructors)
                   8950: 
                   8951:        * src/include/pa_array.h: - free under if now
                   8952: 
                   8953: 2009-04-19  misha
                   8954: 
                   8955:        * src/main/untaint.C: - ^taint[js] now escapes \x0D as well
                   8956: 
                   8957: 2009-04-18  misha
                   8958: 
                   8959:        * src/include/pa_version.h:
                   8960:          :q :
                   8961: 
                   8962:          CV:
                   8963:          ----------------------------------------------------------------------
                   8964: 
                   8965:        * src/types/: pa_vjunction.h, pa_vstateless_class.C: - little
                   8966:          refactoring
                   8967: 
                   8968:        * src/: include/pa_array.h, include/pa_hash.h,
                   8969:          types/pa_vmethod_frame.h: - destructors under #ifdef now
                   8970: 
                   8971:        * src/include/pa_memory.h: - define for using destructors was added
                   8972: 
                   8973:        * src/: types/pa_method.h, types/pa_vstateless_class.C,
                   8974:          main/execute.C: - some junctions will be cached now
                   8975: 
                   8976:        * src/include/pa_hash.h: - hash destructor frees pairs now
                   8977: 
                   8978:        * src/include/pa_array.h: - inline was added to destructor
                   8979: 
                   8980:        * src/types/pa_method.h: - comment was changed
                   8981: 
                   8982: 2009-04-17  misha
                   8983: 
                   8984:        * src/: include/pa_array.h, include/pa_hash.h,
                   8985:          types/pa_vmethod_frame.h: - destructors were added
                   8986: 
                   8987:        * src/types/: pa_method.h, pa_vmethod_frame.h: - write_to_result
                   8988:          renamed to always_use_result
                   8989: 
                   8990:        * src/main/: compile.y, compile_tools.h: - rollback changes in
                   8991:          compiler: full backward compatibility is better
                   8992: 
                   8993:        * src/types/pa_vmethod_frame.h: - set flag write_to_result if find
                   8994:          result in var's hash
                   8995: 
                   8996:        * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
                   8997:          optimisation in method_frame
                   8998: 
                   8999:        * src/include/pa_array.h: - optimisation in array (allocate
                   9000:          elements only when needed)
                   9001: 
                   9002:        * src/types/pa_vresponse.C: - check for $response:headers field
                   9003:          before looking at custom fields
                   9004: 
                   9005:        * src/types/pa_vmethod_frame.h: - if flag write_to_result was set,
                   9006:          not needed to check existance var with name 'result' in var's
                   9007:          hash
                   9008: 
                   9009:        * src/main/compile.y: - compiler was changed: now it detects
                   9010:          writings to $result and set flag writo_to_result in method
                   9011: 
                   9012:        * src/classes/string.C: - little optimisation: no needed to write
                   9013:          number with lang
                   9014: 
                   9015:        * src/main/pa_charset.C: - methods readChar and skipChar which is
                   9016:          used for read utf8-strings were renamed - is_escaped was renamed
                   9017:          to isEscaped (to the same name convention)
                   9018: 
                   9019:        * src/: types/pa_method.h, main/compile_tools.h: - flag
                   9020:          write_to_result added. compiler get this info from code.
                   9021: 
                   9022: 2009-04-16  misha
                   9023: 
                   9024:        * src/types/: pa_wcontext.h, pa_vmethod_frame.h: - create new
                   9025:          String only before 1st write
                   9026: 
                   9027:        * src/include/pa_string.h: - not needed template removed
                   9028: 
                   9029:        * src/: types/pa_vbool.h, types/pa_vfile.h, types/pa_vimage.C,
                   9030:          types/pa_vjunction.C, types/pa_vproperty.C,
                   9031:          types/pa_vstateless_class.C, types/pa_vxdoc.C, types/pa_vxnode.C,
                   9032:          main/pa_request.C, classes/bool.C, classes/double.C,
                   9033:          classes/hash.C, classes/int.C, classes/string.C, classes/table.C,
                   9034:          classes/void.C, classes/xnode.C: - bool optimisation (use only 2
                   9035:          bool objects)
                   9036: 
                   9037: 2009-04-15  misha
                   9038: 
                   9039:        * src/lib/cord/cordxtra.c: - more optimisation
                   9040: 
                   9041:        * src/: include/pa_string.h, main/untaint.C: - String::append
                   9042:          optimisation
                   9043: 
                   9044:        * src/include/pa_hash.h: - get_by_hash_code added (it works faster
                   9045:          then get and can sometime be used)
                   9046: 
                   9047:        * src/main/pa_string.C: - String::length optimisation
                   9048: 
                   9049:        * src/main/pa_charset.C: - rollback changeing readChar to skipChar.
                   9050:          these methods read different strings
                   9051: 
                   9052:        * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
                   9053:          fresult_initial_void removed + some optimisation - if $result
                   9054:          defined we don't write to context anymore
                   9055: 
                   9056:        * src/main/pa_charset.C: - readChar => skipChar (in this place we
                   9057:          need just skip char)
                   9058: 
                   9059:        * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
                   9060:          types/pa_vrequest.C, types/pa_vtable.C, main/execute.C,
                   9061:          classes/table.C: - VVoid::get() => new VVoid (one void-instance)
                   9062: 
                   9063:        * src/types/pa_vvoid.h: - added get() method for retreave one
                   9064:          instance
                   9065: 
                   9066: 2009-04-11  misha
                   9067: 
                   9068:        * tests/196.html: - tests for $cookie:CLASS_NAME & Co were added
                   9069: 
                   9070:        * tests/197.html: - test for parser://test in xml was added
                   9071: 
                   9072:        * src/classes/string.C: - small optimisation
                   9073: 
                   9074:        * src/types/: pa_venv.C, pa_venv.h, pa_vconsole.h: - small
                   9075:          optimisation
                   9076: 
                   9077: 2009-04-10  misha
                   9078: 
                   9079:        * buildall-with-xml, buildall-without-xml: - moving from pcre-7.7
                   9080:          to pcre-7.8
                   9081: 
                   9082:        * src/types/pa_vclass.C: - normalizing todo-comments: '@todo' now
                   9083: 
                   9084:        * src/types/: pa_vcookie.C, pa_vcookie.h: - $cookie:CLASS_NAME was
                   9085:          added
                   9086: 
                   9087:        * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:CLASS and
                   9088:          $request:CLASS_NAME were added
                   9089: 
                   9090:        * src/types/pa_vconsole.h: - $console:CLASS and $console:CLASS_NAME
                   9091:          were added
                   9092: 
                   9093:        * src/types/: pa_venv.C, pa_venv.h: - $env:CLASS and
                   9094:          $env:CLASS_NAME were added
                   9095: 
                   9096:        * src/types/: pa_vmail.C, pa_vdate.h: - normalizing todo-comments:
                   9097:          '@todo' now
                   9098: 
                   9099:        * src/targets/cgi/parser3.C: - size_t -> int for calming down
                   9100:          compirer
                   9101: 
                   9102:        * src/main/pa_string.C: - little code cleanup
                   9103: 
                   9104:        * src/main/pa_common.C: - describe one more UTF-8 related error
                   9105:          during PCRE compile/execute
                   9106: 
                   9107:        * src/classes/: image.C, inet.C, string.C, xdoc.C, xnode.C: -
                   9108:          normalizing todo-comments: '@todo' now
                   9109: 
                   9110:        * src/types/: pa_vmath.C, pa_vmath.h: - $math:E was added
                   9111: 
                   9112:        * src/main/pa_charset.C: - type changed for making compiler happy
                   9113: 
                   9114: 2009-03-10  misha
                   9115: 
                   9116:        * src/targets/cgi/parser3.C: make g++ happy with the type of argc
                   9117:          in main()
                   9118: 
                   9119: 2009-02-01  misha
                   9120: 
                   9121:        * src/main/pa_http.C: - bugfix: double CRLF before the end of
                   9122:          boundary
                   9123: 
                   9124: 2009-01-25  misha
                   9125: 
                   9126:        * tests/: 194.html, 194_dir/194.p: - test for @GET[] was added
                   9127: 
                   9128:        * src/classes/file.C: - more changes for parsing different number
                   9129:          of params for file::load
                   9130: 
                   9131:        * tests/193.html: - tests for exception while base64-decode binary
                   9132:          to string was added
                   9133: 
                   9134:        * tests/192.html: - tests for file::load with different number of
                   9135:          options
                   9136: 
                   9137:        * src/classes/math.C: - ups. forgot '+1'
                   9138: 
                   9139:        * src/: classes/table.C, classes/file.C, include/pa_common.h,
                   9140:          include/pa_http.h, main/pa_xml_io.C, main/pa_common.C,
                   9141:          main/pa_http.C: - ^file::load[...;http://...;] now can post files
                   9142:          (new option $.encode[multipart-form/data] should be specified) -
                   9143:          $.method[] option for file::load now is not case-sensitive
                   9144: 
                   9145:        * src/: include/pa_string.h, main/untaint.C: - for file post the
                   9146:          new taint language L_FILE_POST was added
                   9147: 
                   9148:        * src/: include/pa_random.h, main/Makefile.am, main/pa_random.C,
                   9149:          main/main.vcproj, classes/math.C, include/Makefile.am: - some
                   9150:          stuff was moved to separate files
                   9151: 
                   9152: 2009-01-23  misha
                   9153: 
                   9154:        * src/classes/math.C: - little optimisation in ^math:sha1[] -
                   9155:          spaces to tabs were converted
                   9156: 
                   9157: 2009-01-12  misha
                   9158: 
                   9159:        * src/main/pa_http.C: - value of $.method[] option force uppercased
                   9160:          now
                   9161: 
                   9162:        * src/: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                   9163:          types/pa_vform.C, types/pa_vmail.C: - some constants changed
                   9164:          their names
                   9165: 
                   9166:        * src/main/pa_common.C: - changes in formating
                   9167: 
                   9168:        * src/: classes/file.C, main/pa_http.C: - some constants changed
                   9169:          their names
                   9170: 
                   9171:        * src/include/pa_http.h: - some spaces were converted to tabs
                   9172: 
                   9173:        * src/include/pa_common.h: - some constants changed their names
                   9174: 
                   9175:        * src/classes/file.C: - fixed 4-th paramether for file::load -
                   9176:          little code rewriting
                   9177: 
                   9178:        * src/types/pa_vfile.C: - little code rewriting
                   9179: 
                   9180:        * src/: main/pa_common.C, main/pa_http.C, main/untaint.C,
                   9181:          types/pa_value.h: - some formating changes
                   9182: 
                   9183:        * src/include/pa_common.h: - some formating spaces transformed to
                   9184:          tabs
                   9185: 
                   9186:        * src/classes/string.C: - exception while base64-decode binary to a
                   9187:          string
                   9188: 
                   9189: 2009-01-11  misha
                   9190: 
                   9191:        * configure.in: - version changed to 3.3.1b
                   9192: 
                   9193: 2008-09-05  misha
                   9194: 
                   9195:        * src/lib/pcre/Makefile.am: file Makefile.am was added on branch
                   9196:          release_3_3_0 on 2008-09-05 10:59:35 +0000
                   9197: 
                   9198: 2008-09-04  misha
                   9199: 
                   9200:        * tests/: 130.html, 131.html: - these exceptions not typeless
                   9201:          anymore
                   9202: 
                   9203:        * src/classes/op.C: - exception with 'invalid taint language' not
                   9204:          typeless anylonger
                   9205: 
                   9206:        * src/classes/image.C: - some exceptions while operations with
                   9207:          image not typeless anymore
                   9208: 
                   9209:        * src/: types/pa_vhashfile.C, main/pa_common.C, classes/file.C,
                   9210:          main/pa_exec.C, main/pa_http.C: - some exceptions while
                   9211:          operations with files not typeless anymore
                   9212: 
                   9213:        * src/: classes/date.C, types/pa_value.C, types/pa_vcookie.C,
                   9214:          types/pa_vdate.h: - exceptions while checking date range not
                   9215:          typeless anymore
                   9216: 
                   9217:        * src/include/pa_exception.h: - exception type string for invalid
                   9218:          date range was added
                   9219: 
                   9220: 2008-09-03  misha
                   9221: 
                   9222:        * src/: classes/file.C, main/pa_string.C: - exception while pce
                   9223:          operations not typeless anymore
                   9224: 
                   9225:        * src/include/pa_exception.h: - exception type for pce operations
                   9226:          was added
                   9227: 
                   9228:        * tests/: 191.html, 191_a.p, 191_b.p: - tests for calling .CLASS
                   9229:          and .CLASS_NAME insite classes
                   9230: 
                   9231:        * src/classes/table.C: - don't save table header whiile
                   9232:          ^table.save[append;filename] if file exists
                   9233: 
                   9234: 2008-09-02  misha
                   9235: 
                   9236:        * src/main/compile.y, src/main/compile_tools.h,
                   9237:          src/types/pa_vstateless_class.h, src/main/compile.tab.C,
                   9238:          tests/182_dir/a1.p, tests/182_dir/a2.p: - append option was
                   9239:          renamed to partial and it login changed: we must mark class as
                   9240:          partial for allow their modifications in future.
                   9241: 
                   9242: 2008-08-29  misha
                   9243: 
                   9244:        * tests/results/022.processed: - testing taint[regex] in mask for
                   9245:          file:list
                   9246: 
                   9247:        * tests/022.html: - testing taint[regex] in mask for file:list
                   9248: 
                   9249:        * tests/022_dir/b[b].txt: - file for testing taint[regex] in mask
                   9250:          for file:list was added
                   9251: 
                   9252:        * src/classes/file.C: - bugfix: ^taint[regex][] didn't works in
                   9253:          file:list
                   9254: 
                   9255: 2008-08-26  misha
                   9256: 
                   9257:        * src/types/pa_vobject.C: - we must get .CLASS and .CLASS_NAME from
                   9258:          last derived object
                   9259: 
                   9260:        * src/classes/image.C: - many strings "image.format" replaced by
                   9261:          IMAGE_FORMAT constant string - handle GPS info while parse exif -
                   9262:          understand some more exif tags
                   9263: 
                   9264:        * src/include/pa_exception.h: - string "image.format" was added
                   9265: 
                   9266: 2008-08-21  misha
                   9267: 
                   9268:        * src/: main/pa_string.C, classes/file.C: - use method for print
                   9269:          pcre_exec text error
                   9270: 
                   9271:        * src/main/pa_common.C: - method for print pcre_exec text error was
                   9272:          added
                   9273: 
                   9274:        * src/include/pa_common.h: - method declaration for print pcre_exec
                   9275:          text error was added
                   9276: 
                   9277: 2008-08-19  misha
                   9278: 
                   9279:        * src/main/execute.C: - bugfix: opcodes must be in separate
                   9280:          namespace while debug execution as well
                   9281: 
                   9282:        * tests/: 015.html, results/015.processed: - test for escaping some
                   9283:          parser chars was added
                   9284: 
                   9285: 2008-08-18  misha
                   9286: 
                   9287:        * tests/: 190.html, 190.p, results/190.processed: - test for
                   9288:          $caller.self.field + default getter in one class was added
                   9289: 
                   9290:        * tests/: 189.html, results/189.processed: - test for
                   9291:          ^date::create[date object]
                   9292: 
                   9293:        * tests/: 188.html, results/188.processed: - tests for match with
                   9294:          UTF-8 strings
                   9295: 
                   9296:        * src/main/pa_string.C: - option 'U' (ungreedy) was added to
                   9297:          ^string.match[]
                   9298: 
                   9299:        * ChangeLog: - parser 3.3.0 beta13
                   9300: 
                   9301: 2008-08-15  misha
                   9302: 
1.116     moko     9303:        * src/lib/pcre/: LICENCE, Makefile.am, README, Tech.Notes, get.c,
                   9304:          internal.h, pcre.3, pcre.3.html, pcre.3.txt, pcre.c, pcre.h,
                   9305:          pcre.vcproj, study.c, maketables.c, pcre_dftables.vcproj,
                   9306:          dftables.c: - old PCRE files removed
1.95      moko     9307: 
                   9308:        * src/lib/pcre/config.h: - configuration for PCRE library
                   9309: 
                   9310:        * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
                   9311:          use PCRE library from win32\pcre instead of parser3\src\lib\pcre
                   9312: 
                   9313:        * src/: classes/file.C, main/pa_string.C: - moved to new PCRE
                   9314:          library and set flag UTF8 if $request:charset is UTF-8
                   9315: 
                   9316:        * src/: include/pa_charset.h, main/pa_charset.C, main/pa_globals.C,
                   9317:          include/pa_config_fixed.h: - moved to new PCRE library
                   9318: 
                   9319:        * src/: main/main.vcproj, types/types.vcproj,
                   9320:          classes/classes.vcproj, lib/Makefile.am: - use PCRE library from
                   9321:          win32\pcre instead of parser3\src\lib\pcre
                   9322: 
                   9323:        * src/: include/pa_opcode.h, include/pa_operation.h,
                   9324:          main/compile.C, main/compile.y, main/compile_tools.C,
                   9325:          main/compile_tools.h, main/execute.C, main/compile.tab.C: -
                   9326:          opcodes were moved to separate namespace
                   9327: 
                   9328: 2008-08-14  misha
                   9329: 
                   9330:        * src/types/pa_vstateless_class.C: - newline at the end missed
                   9331: 
                   9332:        * src/main/untaint.C: - char '-' also prefixed by '\' while regex
                   9333:          tainting
                   9334: 
                   9335: 2008-08-11  misha
                   9336: 
                   9337:        * tests/: 187.html, 187.p, results/187.processed: - tests for
                   9338:          $caller.self, $caller.self.field and $caller.self.field[value]
                   9339:          were added
                   9340: 
                   9341:        * src/types/pa_vmethod_frame.h: - still need to check 'self'
                   9342:          runtime as well (for $caller.self)
                   9343: 
                   9344: 2008-07-25  misha
                   9345: 
                   9346:        * tests/: 021.html, 032.html, 033.html, 047.html, 055.html,
                   9347:          059.html, 061.html, 064.html, 067.html, 068.html, 085.html,
                   9348:          086.html, 098.html, 109.html, 121.html: - set correct charsets in
                   9349:          tests with international characters
                   9350: 
                   9351: 2008-07-23  misha
                   9352: 
                   9353:        * src/main/pa_http.C: - escape $cookies as %uXXXX while
                   9354:          file::load[...;http://
                   9355: 
                   9356:        * src/: main/pa_string.C, main/pa_globals.C, classes/file.C: - pcre
                   9357:          now everywhere in separate namespace
                   9358: 
                   9359:        * src/types/pa_vmethod_frame.h: - looking for caller before looking
                   9360:          for vars
                   9361: 
                   9362:        * src/main/: compile.y, compile.tab.C: - characters '@' and '#' now
                   9363:          can be escaped by '^'
                   9364: 
                   9365: 2008-07-22  misha
                   9366: 
                   9367:        * src/classes/string.C, tests/186.html: - names changes:
                   9368:          escape=>js-escape, unescape=>js-unescape
                   9369: 
                   9370: 2008-07-21  misha
                   9371: 
                   9372:        * tests/results/186.processed: - test for string escape/unescape
                   9373: 
                   9374:        * tests/186.html: - test for string escape/unescape
                   9375: 
                   9376:        * src/classes/string.C: - string has escape and unescape methods
                   9377:          now
                   9378: 
                   9379:        * src/: include/pa_string.h, main/pa_string.C: - escape method was
                   9380:          added
                   9381: 
                   9382:        * src/: include/pa_charset.h, main/pa_charset.C: - more escape
                   9383:          method-layers added (with different params)
                   9384: 
                   9385: 2008-07-18  misha
                   9386: 
                   9387:        * tests/results/185.processed: - test for ^str.pos[substr](offset)
                   9388:          was added
                   9389: 
                   9390:        * tests/185.html: - test for ^str.pos[sub](offset) added
                   9391: 
                   9392:        * src/classes/string.C, src/classes/void.C, operators.txt: -
                   9393:          ^string.pos[substr](offset) -- 2nd param accepted now
                   9394: 
                   9395:        * src/main/pa_string.C: - .pos works fine with offset for utf-8
                   9396:          strings
                   9397: 
                   9398: 2008-07-17  misha
                   9399: 
                   9400:        * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
                   9401:          helper length added for mid for small optimisation
                   9402: 
                   9403: 2008-07-16  misha
                   9404: 
                   9405:        * tests/: 185.html, results/185.processed: - tests for
                   9406:          length/left/right/mid/pos with utf-8 strings
                   9407: 
                   9408:        * src/classes/string.C: - left/right/mid/length/pos works fine for
                   9409:          utf-8 strings
                   9410: 
                   9411:        * src/main/untaint.C: - comments removed
                   9412: 
                   9413:        * src/: include/pa_string.h, main/pa_string.C,
                   9414:          include/pa_charset.h, main/pa_charset.C: - methods for working
                   9415:          with pos/mid for strings in utf-8 were added
                   9416: 
                   9417: 2008-07-15  misha
                   9418: 
                   9419:        * tests/: 184.html, results/184.processed: - test for case body as
                   9420:          expression: $var(^switch(1){^case(1)(true)..})
                   9421: 
                   9422:        * src/classes/op.C: - case body can be expression now:
                   9423:          $var(^switch(1){^case(1)(true)..})
                   9424: 
                   9425:        * tests/: results/183.processed, 183.html: - added test for testing
                   9426:          new cookie encoding (%uXXXX)
                   9427: 
                   9428:        * src/main/untaint.C: - cookies outputs as %uXXXX now. while
                   9429:          decoding for backward compatibility they decoded from %XX in
                   9430:          request:charset too
                   9431: 
                   9432:        * src/: types/pa_vcookie.C, types/pa_vcookie.h, main/pa_request.C:
                   9433:          - cookie class now decode cookies before first access after last
                   9434:          request:charset changing (as form class).
                   9435: 
                   9436:        * src/main/pa_charset.C: - added method escape for escaping cookies
                   9437:          as %uXXXX - before transcode calculate required space for dest
                   9438:          string. it reduce mem usage for transcode
                   9439: 
                   9440:        * src/include/pa_charset.h: - added method escape for escaping
                   9441:          cookies as %uXXXX
                   9442: 
                   9443:        * src/include/pa_string.h: - taint lang (internal) L_HTTP_COOKIE
                   9444:          was added. will used for escaping cookies as %uXXXX
                   9445: 
                   9446:        * src/include/pa_common.h: - escape method has new option for skip
                   9447:          converting '+' to a space char
                   9448: 
                   9449:        * src/main/: pa_common.C, pa_http.C: - skip BOM code before
                   9450:          transcode - escape method has new option for skip converting '+'
                   9451:          to a space char
                   9452: 
                   9453: 2008-07-08  misha
                   9454: 
                   9455:        * src/classes/op.C: - bugfix in switch - case "stops" on 1st match
                   9456:          (no UE if more then 1 case matches anylonger) - optimization:
                   9457:          doing searching.as_string() || searching.as_double() only once
                   9458: 
                   9459: 2008-07-04  misha
                   9460: 
                   9461:        * src/types/pa_vdate.h: - is_evaluated_expr returning true added so
                   9462:          now ^date::create[date object] works
                   9463: 
                   9464:        * src/classes/string.C: - left and right added as aliases for start
                   9465:          and end in ^string.trim[]
                   9466: 
                   9467: 2008-07-03  misha
                   9468: 
                   9469:        * src/classes/file.C: - allow $.limit for file::sql as well
                   9470: 
                   9471:        * src/classes/file.C: - allow $.offset option for file::sql - force
                   9472:          send limit=1 to query for use sql specifics authomatically
                   9473: 
                   9474:        * src/classes/: hash.C, string.C, table.C: - don't throw exception
                   9475:          if $.limit value if empty. autoconvert it as everywere
                   9476: 
                   9477: 2008-07-02  misha
                   9478: 
                   9479:        * configure.in: - time to change version number to 3.3.0 %-)
                   9480: 
                   9481:        * src/include/pa_version.h: - time to change version number to
                   9482:          3.3.0 %-)
                   9483: 
                   9484: 2008-06-26  misha
                   9485: 
                   9486:        * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
                   9487:          $.limit(0) fixes
                   9488: 
                   9489:        * src/sql/pa_sql_driver.h: - new drivers API and new version (10.0)
                   9490:          - $.limit(0) fixes
                   9491: 
                   9492:        * src/sql/pa_sql_driver.h: - SQL_NO_LIMIT added (preparations to
                   9493:          new API)
                   9494: 
                   9495:        * src/: include/pa_sql_driver_manager.h,
                   9496:          include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
                   9497:          classes/op.C: - document_root added
                   9498: 
                   9499:        * src/main/compile.tab.C: - error message was changed
                   9500: 
                   9501: 2008-06-25  misha
                   9502: 
                   9503:        * src/main/compile.y: - error message was changed
                   9504: 
                   9505: 2008-06-24  misha
                   9506: 
                   9507:        * tests/176_dir/: a.p, d.p: - @OPTION => @OPTIONS
                   9508: 
                   9509:        * tests/: 182.html, 182_dir/a1.p, 182_dir/a2.p, 182_dir/a3.p: -
                   9510:          tests for @OPTIONS\nappend
                   9511: 
                   9512:        * tests/: 176.html, results/176.processed: - @OPTION => @OPTIONS
                   9513: 
                   9514:        * src/main/: compile.y, compile.tab.C: - stuff for @OPTIONS\nappend
                   9515: 
                   9516:        * src/main/compile_tools.h: - new methods for @OPTIONS\nappend
                   9517: 
                   9518:        * src/types/pa_vmethod_frame.h: - ALL_VARS_LOCAL_NAME moved fo
                   9519:          compile.y
                   9520: 
                   9521: 2008-06-17  misha
                   9522: 
                   9523:        * src/main/: compile.y, compile.tab.C: - bugfix in 'def'
                   9524:          compilation: ^if(default){true. it's incorrect. must be
                   9525:          exception}
                   9526: 
                   9527: 2008-06-16  misha
                   9528: 
                   9529:        * tests/: 181.ent, 181.html, results/181.processed: - test for
                   9530:          checking external reference loading with 'http://localhost'
                   9531:          prefix while creating xdoc
                   9532: 
                   9533:        * tests/180.html: - use ^inet:ntoa[] and ^inet:aton[] instead of
                   9534:          ^math:long2ip[] and ^math:ip2long[]
                   9535: 
                   9536:        * src/types/: pa_vobject.C, pa_vobject.h: - get_scalar_value method
                   9537:          added which use scalar stateless class method when user object
                   9538:          used in scalar context - use get_scalar_value when user object
                   9539:          requested in scalar context
                   9540: 
                   9541:        * src/main/pa_common.C: - size must be int but not size_t or we
                   9542:          can't compare with 0 sprintf result
                   9543: 
                   9544:        * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
                   9545:          main/execute.C, main/pa_request.C: - go back to one VMethodFrame
                   9546:          with internal switch between local/global vars
                   9547: 
                   9548:        * src/types/pa_vclass.C: - register scalar if method @GET[] was
                   9549:          specified
                   9550: 
                   9551:        * src/types/: pa_vstateless_class.C, pa_vstateless_class.h,
                   9552:          pa_vstateless_object.h: - stateless class and object now has
                   9553:          private scalar field and getter/setter for working with it
                   9554: 
                   9555:        * src/classes/math.C: - methods math:long2ip & math:ip2long were
                   9556:          moved to inet static class
                   9557: 
                   9558:        * src/classes/: classes.vcproj, inet.C, Makefile.am: - inet static
                   9559:          class added (^inet:aton[IP], ^inet:ntoa(number))
                   9560: 
                   9561:        * tests/: 180.html, results/180.processed: - tests for
                   9562:          ^math:long2ip(long) and ^math:ip2long[IP]
                   9563: 
                   9564:        * src/classes/math.C: - ^math:ip2long[IP] added
                   9565: 
                   9566: 2008-06-11  misha
                   9567: 
                   9568:        * src/main/pa_xml_io.C: - use file_read_text again because of we
                   9569:          need cut BOM code and remove DOS newline chars. but don't
                   9570:          transcode it anyway.
                   9571: 
                   9572:        * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
                   9573:          main/pa_http.C: - option for disable transcoding while file_read
                   9574:          and file_read_text added
                   9575: 
                   9576: 2008-06-10  misha
                   9577: 
                   9578:        * tests/: 179.html, 179.p, results/179.processed: - test for many
                   9579:          classes in 1 file
                   9580: 
                   9581:        * src/main/: compile.C, compile_tools.h: - compile return list of
                   9582:          classes now.
                   9583: 
                   9584:        * src/main/: compile.y, compile.tab.C: - compile return list of
                   9585:          classes now. internals.
                   9586: 
                   9587:        * src/main/pa_request.C: - compile return list of classes now. try
                   9588:          call @conf and @auto for each returned class
                   9589: 
                   9590:        * src/include/pa_request.h: - compile return list of classes now
                   9591: 
                   9592:        * src/types/pa_vstateless_class.h: - typedef ArrayClass added (for
                   9593:          return list of classes when compile buf)
                   9594: 
                   9595: 2008-06-07  misha
                   9596: 
                   9597:        * src/main/pa_request.C: - constructing VRequest object with 3rd
                   9598:          param -- form
                   9599: 
                   9600:        * src/types/: pa_vrequest.C, pa_vrequest.h: - constructor acceps
                   9601:          3rd param: form. needed for get post_charset
                   9602: 
                   9603:        * src/types/: pa_vform.C, pa_vform.h: - VForm::get_post_charset()
                   9604:          added
                   9605: 
                   9606:        * src/: include/pa_common.h, main/pa_common.C, main/pa_http.C,
                   9607:          types/pa_vform.C, types/pa_vform.h: - some polish
                   9608: 
                   9609: 2008-06-06  misha
                   9610: 
                   9611:        * src/types/: pa_vform.C, pa_vform.h: - if POST -- try detec
                   9612:          charset and decode chars from it but not from response:charset
                   9613: 
                   9614:        * src/main/pa_http.C: - detect_charset moved out of here
                   9615: 
                   9616:        * src/: include/pa_common.h, main/pa_common.C: - more helpers
                   9617:          methods moved here - unescape_chars accepn one charset now
                   9618: 
                   9619:        * src/main/pa_http.C: - new constants used - don't allow
                   9620:          $.content-type in ^file::load[;http://;$.method[POST]] - add
                   9621:          charset info while ^file::load[;http://;$.method[POST]] - option
                   9622:          $.omit-post-charset(true) added to ^file::load[;http://] for
                   9623:          disabling charset during post
                   9624: 
                   9625:        * src/types/pa_vform.C: - new constants used
                   9626: 
                   9627:        * src/include/pa_common.h: - some constants were added
                   9628: 
                   9629:        * src/: classes/form.C, types/pa_vform.C: - use StrStartFromNC
                   9630:          instead of StrEqNc
                   9631: 
                   9632:        * src/main/pa_common.C: - new method for caseless search
                   9633:          c-substring in c-string - use isxdigit instead of is_hex_digit
                   9634: 
                   9635:        * src/include/pa_common.h: - new method for caseless search
                   9636:          c-substring in c-string
                   9637: 
                   9638: 2008-06-05  misha
                   9639: 
                   9640:        * tests/results/178.processed: - test for testing default getter
                   9641: 
                   9642:        * tests/178.html: - test for testing default getter
                   9643: 
                   9644:        * tests/178_dir/: 178a.p, 178b.p, 178c.p, 178d.p, 178e.p: - classes
                   9645:          for test for testing default getter
                   9646: 
                   9647:        * src/main/execute.C: - default getter soul
                   9648: 
                   9649:        * src/types/: pa_vobject.C, pa_vobject.h: - get default getter if
                   9650:          requested objects' field not found
                   9651: 
                   9652:        * src/types/pa_vclass.C: - register default getter if defined - get
                   9653:          default getter if requested field not found
                   9654: 
                   9655:        * src/types/pa_vstateless_object.h: - method get_default_getter was
                   9656:          added
                   9657: 
                   9658:        * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
                   9659:          pointer to default getter and methods for get/set it were added
                   9660: 
                   9661:        * src/types/: pa_junction.h, pa_vjunction.h: - junction has
                   9662:          auto_name field (for default getter)
                   9663: 
                   9664: 2008-06-04  misha
                   9665: 
                   9666:        * src/main/pa_xml_io.C: - load external xml in binary mode (no
                   9667:          transcoding, no cutting BOM code, no fixing line breaks) and get
                   9668:          it to libxml "as is"
                   9669: 
                   9670: 2008-06-03  misha
                   9671: 
                   9672:        * src/main/pa_common.C: - use store_Char instead of
                   9673:          transcodeCharFromUTF8
                   9674: 
                   9675:        * src/: include/pa_charset.h, main/pa_charset.C: - method
                   9676:          store_Char added, transcodeCharFromUTF8 -- removed
                   9677: 
                   9678: 2008-06-02  misha
                   9679: 
                   9680:        * tests/: results/177.processed, 177.html: - test for checking
                   9681:          .[acm]date after local ^file::load[] was added
                   9682: 
                   9683:        * tests/: results/176.processed, 176.html: - test for checking
                   9684:          @OPTION\locals + @method[vars][locals] added
                   9685: 
                   9686:        * tests/results/auto.p: - CLASS_PATH specified for checking use
                   9687: 
                   9688: 2008-05-30  misha
                   9689: 
                   9690:        * src/main/: compile.y, compile.tab.C: - changes in compiler:
                   9691:          @OPTION\nlocals + @method[vars][;locals;] were added
                   9692: 
                   9693:        * src/main/execute.C: - code of OP_CALL and OP_CALL__WRITE was
                   9694:          moved to separate method op_code - switch from VMethodFrame to
                   9695:          VMethodFrameGlobal + VMethodFrameLocal
                   9696: 
                   9697:        * src/include/pa_request.h: - code of OP_CALL and OP_CALL__WRITE
                   9698:          was moved to separate method op_code
                   9699: 
                   9700:        * src/main/pa_request.C: - use VMethodFrameGlobal instead of
                   9701:          VMethodFrame now
                   9702: 
                   9703:        * src/types/pa_vstateless_class.h: - stateless class have bool flag
                   9704:          all_vars_local as well
                   9705: 
                   9706:        * src/types/: pa_vmethod_frame.h, pa_vmethod_frame_global.h,
                   9707:          pa_vmethod_frame_local.h, Makefile.am: - who children for
                   9708:          VMethodFrame were added: one (global) works as VMethodFrame
                   9709:          before and second (local) write all vars in self vars scope
                   9710: 
                   9711:        * src/types/pa_method.h: - method has bool flag all_vars_local now
                   9712: 
                   9713: 2008-05-29  misha
                   9714: 
                   9715:        * tests/: 129.html, results/129.processed: - more tests for
                   9716:          ^table.hash[]
                   9717: 
                   9718:        * src/classes/hash.C: - ^hash::sql has a new option:
                   9719:          $.type[hash|string|table] as ^table.hash[] one.
                   9720: 
                   9721:        * src/classes/op.C: - ^try has 3rd param now: finally code which
                   9722:          executed anyway after try or catch section
                   9723: 
                   9724: 2008-05-27  misha
                   9725: 
                   9726:        * src/classes/table.C: - bugfix: ^table.hash[key][$.type[table]]
                   9727:          must not fail if $.distinct(1) wasn't specified
                   9728: 
                   9729: 2008-05-26  misha
                   9730: 
                   9731:        * src/classes/op.C: - allow ^throw[my type]
                   9732: 
                   9733: 2008-05-22  misha
                   9734: 
                   9735:        * configure.in, configure: - version number updated to 3.2.4b
                   9736: 
                   9737:        * src/classes/: op.C, string.C: - trim format string before
                   9738:          eval/format
                   9739: 
                   9740:        * tests/: results/175.processed, 175.html: - more tests for
                   9741:          different format strings in .format[]
                   9742: 
                   9743:        * src/types/pa_vform.C: - while decoding get values decode %uXXXX
                   9744:          as well (not only %XX)
                   9745: 
                   9746:        * src/main/pa_common.C: - unescape_chars can decode %uXXXX if
                   9747:          charset specified - checks for format before print number
                   9748:          (^d.format[>...<], ^eval($d)[>...<]) - formating with spaces
                   9749:          (instead of tabs) removed
                   9750: 
                   9751:        * src/include/pa_common.h: - unescape_chars can decode %uXXXX if
                   9752:          charset specified
                   9753: 
                   9754:        * src/: include/pa_charset.h, main/pa_charset.C: - method for get
                   9755:          char in requested charset from utf code was added
                   9756: 
                   9757: 2008-05-19  misha
                   9758: 
                   9759:        * tests/: 174.html, results/174.processed: - test for
                   9760:          ^hashfile.cleanup[] added
                   9761: 
                   9762:        * src/classes/hashfile.C: - optimization: don't create any key or
                   9763:          value variable if it's name weren't specified
                   9764:          (^hf.foreach[;v]{...})
                   9765: 
                   9766: 2008-05-16  misha
                   9767: 
                   9768:        * src/classes/hash.C: - optimization: don't create any key variable
                   9769:          if variable name wasn't specified (^h.foreach[;v]{...})
                   9770: 
                   9771: 2008-05-15  misha
                   9772: 
                   9773:        * src/classes/op.C: - small changes
                   9774: 
                   9775:        * src/classes/hashfile.C: - code reformating (as hash.foreach)
                   9776: 
                   9777:        * src/classes/hash.C: - calculate var_context once before foreach
                   9778: 
                   9779: 2008-05-14  misha
                   9780: 
                   9781:        * src/classes/hashfile.C: - incorrect vars context calculation for
                   9782:          ^hashfile.foreach[;]{} fixed
                   9783: 
                   9784:        * src/classes/: hash.C, table.C: - little optimisation
                   9785: 
                   9786:        * src/classes/file.C: - bugfix: double absolute path while loading
                   9787:          file
                   9788: 
                   9789:        * tests/: 174.html, results/174.processed: - tests for hashfile
                   9790:          were added
                   9791: 
                   9792:        * buildall-with-xml: - moving to libxslt 1.1.24
                   9793: 
                   9794: 2008-04-30  misha
                   9795: 
                   9796:        * src/classes/file.C: - stat file while loading (local only) so
                   9797:          .adate, .mdate and .cdate available without additional ::stat
                   9798: 
                   9799: 2008-04-28  misha
                   9800: 
                   9801:        * src/classes/file.C: - $.name and $.content-type available for
                   9802:          stated file
                   9803: 
                   9804: 2008-04-14  misha
                   9805: 
                   9806:        * src/targets/cgi/parser3.C: - new year in copyright %-)
                   9807: 
                   9808:        * src/include/pa_version.h: - new version number in head
                   9809: 
                   9810: 2008-04-10  misha
                   9811: 
                   9812:        * tests/: 080.html, results/080.processed: - cut '0' from
                   9813:          exponential part because of on diff OS it differ (20 or 020 for
                   9814:          ex)
                   9815: 
                   9816:        * tests/: 119.html, results/119.processed: - check for encoding
                   9817:          while creating xdoc
                   9818: 
                   9819: 2008-04-09  misha
                   9820: 
                   9821:        * buildall-with-xml: - move to libxml 2.6.32 and libxslt 1.1.23
                   9822: 
                   9823:        * src/main/pa_common.C: - comment added
                   9824: 
                   9825:        * src/classes/date.C: - little refactoring
                   9826: 
                   9827: 2008-04-07  misha
                   9828: 
                   9829:        * src/classes/table.C: - use NO_STRINGSTREAM for switch to old
                   9830:          style of ^table.save[]: prepare one big string and sabe it at
                   9831:          once. it's safe on freebsd 4.x but use much more memory.
                   9832: 
                   9833:        * buildall-with-xml, buildall-without-xml: - option
                   9834:          --disable-stringstream added (under comment. use it on freebsd
                   9835:          4.x)
                   9836: 
                   9837: 2008-02-22  misha
                   9838: 
                   9839:        * src/main/pa_http.C: - exception if $.body[] and $.forms[]
                   9840:          specified together in file::load[;http] - get back transcoding
                   9841:          $.body[] in file::load[;http]
                   9842: 
                   9843: 2008-02-21  misha
                   9844: 
                   9845:        * src/classes/date.C: - ^date.gmt-string[] was added
                   9846: 
                   9847:        * src/types/pa_value.C: - method for output date in RFC 822 format
                   9848:          moved to pa_common.h
                   9849: 
                   9850:        * src/include/pa_common.h: - method for output date in RFC 822
                   9851:          format moved here from pa_value.C
                   9852: 
                   9853:        * src/types/pa_vmail.C: - fixed core in sending mail with
                   9854:          attachment in simple mode ($.file[file here]) introduced in 3.2.2
                   9855: 
                   9856: 2008-02-20  misha
                   9857: 
                   9858:        * src/main/pa_http.C: - transcode $.headers before escaping into
                   9859:          specified charset while ^file::load[...;http://...] (L_URI
                   9860:          instead of L_HTTP_HEADER) - $.cookies param available in
                   9861:          ^file::load[;http://...] now (but we don't parse set-cookies from
                   9862:          response yet) (cookies not transcoded as common $cookies)
                   9863: 
                   9864: 2008-02-19  misha
                   9865: 
                   9866:        * src/main/pa_request.C: - rollback: we mustn't force taint
                   9867:          $response:field values because in this case
                   9868:          $response:locateion[http://...] don't works.
                   9869: 
                   9870: 2008-02-15  misha
                   9871: 
                   9872:        * src/classes/op.C: - little refactoring
                   9873: 
                   9874:        * src/main/pa_http.C: - taint names of $.headers for load[;http
                   9875: 
                   9876:        * src/main/pa_request.C: - force taint values of $response:field
                   9877: 
                   9878: 2008-02-14  misha
                   9879: 
                   9880:        * src/main/pa_request.C: - $response:field transcoded to
                   9881:          $response:charset before escaping now
                   9882: 
                   9883:        * src/main/pa_http.C: - some outdated comments removed
                   9884: 
                   9885:        * src/classes/date.C: - lastdat -> last-day
                   9886: 
                   9887:        * src/classes/date.C: - ^date:lastday(year;month) and
                   9888:          ^date.lastday[] were added - little code refactoring - comments
                   9889:          changes
                   9890: 
                   9891:        * tests/: 159.html, results/159.processed: - test for number of
                   9892:          days in February
                   9893: 
                   9894:        * src/types/pa_value.C: - fixes in code formatting
                   9895: 
                   9896:        * src/classes/: file.C, op.C, table.C: - fixes in code formatting
                   9897:          and comments
                   9898: 
                   9899: 2008-02-13  misha
                   9900: 
                   9901:        * src/main/pa_common.C: - bugfix for february at leap year
                   9902: 
                   9903: 2008-01-28  misha
                   9904: 
                   9905:        * tests/: 160.html, results/160.processed: - more test for cache
                   9906:          added
                   9907: 
                   9908:        * src/classes/op.C: - bugfix: cache body executed twice if contains
                   9909:          unhandled exception
                   9910: 
                   9911: 2008-01-25  misha
                   9912: 
                   9913:        * src/lib/sdbm/sdbm.c: - use arp_malloc instead of malloc (fixed
                   9914:          bug when hashfile became inavailable after memory:compact)
                   9915: 
                   9916:        * src/lib/sdbm/apr_strings.C: - +arp_malloc
                   9917: 
                   9918: 2008-01-22  misha
                   9919: 
                   9920:        * src/classes/table.C: - little refactiring and exception texts
                   9921:          changes in method ^table.hash[]
                   9922: 
                   9923:        * src/types/pa_vcookie.C: - link to cookie specification changed
                   9924: 
                   9925: 2008-01-21  misha
                   9926: 
                   9927:        * tests/: 171.html, cat.sh, results/171.processed: - more tests for
                   9928:          file::exec/cgi
                   9929: 
                   9930:        * src/classes/file.C: - bugfix: core while processing headers if
                   9931:          executed cgi script don't return content
                   9932: 
                   9933: 2008-01-18  misha
                   9934: 
                   9935:        * buildall-with-xml: - move to libxml2 version 2.6.31
                   9936: 
                   9937:        * src/include/pa_version.h, configure.in: - version number updated
                   9938:          to '3.2.3b'
                   9939: 
                   9940: 2007-12-28  misha
                   9941: 
                   9942:        * src/: classes/hash.C, include/pa_hash.h: - hash.contain =>
                   9943:          hash.contains
                   9944: 
                   9945: 2007-12-27  misha
                   9946: 
                   9947:        * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
                   9948:          src/lib/cord/cord.vcproj, src/lib/gd/gd.vcproj,
                   9949:          src/lib/ltdl/ltdl.vcproj, src/lib/md5/md5.vcproj,
                   9950:          src/lib/pcre/pcre.vcproj, src/lib/pcre/pcre_dftables.vcproj,
                   9951:          src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
                   9952:          src/lib/smtp/smtp.vcproj, src/main/main.vcproj,
                   9953:          src/targets/cgi/parser3.vcproj,
                   9954:          src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj: -
                   9955:          back to VS2003 because of Apache 1.3 module can't work if it was
                   9956:          built in VS 2005.  with cgi all file so VS2003 project files can
                   9957:          be easy converted to the new format.
                   9958: 
                   9959: 2007-12-04  misha
                   9960: 
                   9961:        * src/types/pa_vcode_frame.h: - changes in comment
                   9962: 
                   9963: 2007-11-29  misha
                   9964: 
                   9965:        * src/: types/pa_vcode_frame.h, main/execute.C: - code frame don't
                   9966:          intercept strings any longer
                   9967: 
                   9968:        * tests/: 173.html, results/173.processed: - tests for
                   9969:          $d[^date::now[]] $j{$d} $r[$j] -- must create date object in $r
                   9970:          but not in main code frame
                   9971: 
                   9972:        * tests/: 172.html, results/172.processed: - more tests for pass
                   9973:          objects from code frames
                   9974: 
                   9975: 2007-11-27  misha
                   9976: 
                   9977:        * tests/: 152.html, results/152.processed: - tests for converting
                   9978:          strings 'true'/'false' to bool were added
                   9979: 
                   9980:        * tests/152.html: - added checks for converting strings
                   9981:          'true'/'false' to bool
                   9982: 
                   9983:        * src/classes/string.C: - ^srting.bool[] now can convert to bool
                   9984:          not only strings with numbers but with values 'true'/'false' as
                   9985:          well
                   9986: 
                   9987:        * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: - buffer size
                   9988:          for parser3.log increased
                   9989: 
                   9990:        * src/main/pa_common.C: - remove_crlf optimize whitespaces now
                   9991: 
                   9992:        * src/include/pa_common.h: - remove_crlf return cstring size now
                   9993: 
                   9994:        * src/include/pa_types.h: - constant with buffer size for
                   9995:          parser3.log added
                   9996: 
                   9997: 2007-11-16  misha
                   9998: 
                   9999:        * tests/cat.sh: - script for tests for file::exec/cgi
                   10000: 
                   10001:        * tests/171.html: - tests for file::exec/cgi
                   10002: 
                   10003:        * tests/results/171.processed: - tests results for file::exec/cgi
                   10004: 
                   10005: 2007-11-15  misha
                   10006: 
                   10007:        * src/main/pa_exec.C: - fixed incorrect exec code for unix
                   10008: 
                   10009:        * src/classes/file.C: - .body must be set before analyzing cgi
                   10010:          headers
                   10011: 
                   10012:        * src/classes/file.C: - bugfix: we must transcode output fix EOLs
                   10013:          only if exec/cgi return anything.
                   10014: 
                   10015: 2007-11-14  misha
                   10016: 
                   10017:        * operators.txt: - info about new text|binary option for
                   10018:          file::exec/cgi was added
                   10019: 
                   10020:        * src/: include/pa_exec.h, main/pa_exec.C, classes/file.C: -
                   10021:          ^file:exec[[text|binary];script;...]
                   10022: 
                   10023:        * src/: include/pa_exception.h, classes/file.C, classes/image.C,
                   10024:          classes/string.C, classes/table.C: - more text strings moved to
                   10025:          the one place
                   10026: 
                   10027: 2007-11-09  misha
                   10028: 
                   10029:        * src/types/pa_vrequest.C: - $request:argv must be taint
                   10030: 
                   10031:        * ChangeLog: - $request:argv [patch from Sumo]
                   10032: 
                   10033:        * operators.txt: - $request:argv
                   10034: 
                   10035:        * src/: include/pa_request_info.h, types/pa_vrequest.C,
                   10036:          types/pa_vrequest.h, targets/cgi/parser3.C: - $request:argv
                   10037: 
                   10038: 2007-10-25  misha
                   10039: 
                   10040:        * buildall-with-xml, buildall-without-xml: - options preparations
                   10041:          for ./configure rewrited
                   10042: 
                   10043:        * src/main/: compile.tab.C, compile.y: - bug if parser.compile
                   10044:          error occure in unhandled_exception finally fixed
                   10045: 
                   10046: 2007-10-23  misha
                   10047: 
                   10048:        * tests/: 170.html, results/170.processed: - test for
                   10049:          @method[][result]
                   10050: 
                   10051:        * operators.txt: - added info about node.prefix and
                   10052:          node.namespaceURI
                   10053: 
                   10054:        * src/classes/xnode.C: - xmlHasProp used instead of xmlGetProp
                   10055: 
                   10056:        * src/types/pa_vxnode.C: - DOM2 fields namespaceURI and prefix were
                   10057:          added for node and attribute
                   10058: 
                   10059: 2007-10-22  misha
                   10060: 
                   10061:        * src/types/pa_vmail.C: - content-transfer-encoding: 8bit added
                   10062: 
                   10063:        * src/main/pa_request.C: - added const content-transfer-encoding
                   10064: 
                   10065:        * src/include/pa_request.h: - added const content-transfer-encoding
                   10066:          - ups. constants must be in lowercase (for search)
                   10067: 
                   10068:        * src/types/pa_vmail.C: - more constants used -
                   10069:          content-transfer-encoding: 8bit added
                   10070: 
                   10071:        * src/main/pa_uue.C: - content-transfer-encoding moved out of here
                   10072: 
                   10073:        * src/include/pa_request.h: - more constants
                   10074: 
                   10075:        * src/types/pa_vmail.C: - constant renamed - $.content-id don't
                   10076:          ommit anymore if $.content-disposition was specified - little
                   10077:          refactoring
                   10078: 
                   10079:        * src/: include/pa_request.h, main/pa_request.C: - constant renamed
                   10080: 
                   10081: 2007-10-17  misha
                   10082: 
                   10083:        * operators.txt: - info about
                   10084:          table::create[nameless]{data}[>options<] was added
                   10085: 
                   10086:        * src/main/: compile.tab.C, compile.y: - if error occure while
                   10087:          compile method don't put this method in methods table anymore.
                   10088:          in other case the parser coredumped if @unhandled_exception
                   10089:          method can't be compiled because of parser.compile error.
                   10090: 
                   10091:        * src/main/execute.C: - little code reformating
                   10092: 
                   10093:        * src/main/pa_request.C: - little code reformating - comment
                   10094:          changed
                   10095: 
                   10096: 2007-10-16  misha
                   10097: 
                   10098:        * tests/: 035.html, results/035.processed: - tests
                   10099:          table::create[]{}[options] added
                   10100: 
                   10101:        * src/classes/table.C: - table::create[]{} now accept 3rd param:
                   10102:          options (only $.seperator[] yet)
                   10103: 
                   10104: 2007-10-10  misha
                   10105: 
                   10106:        * src/classes/table.C: - some contstants moved to pa_common.h -
                   10107:          some code changes
                   10108: 
                   10109: 2007-10-02  misha
                   10110: 
                   10111:        * src/main/pa_uue.C: - memory usage during uuencode reduced more
                   10112:          then three time as much. but base64 encoding method still use
                   10113:          less memory anyway.
                   10114: 
                   10115: 2007-09-17  misha
                   10116: 
                   10117:        * operators.txt: - added info about $cookie:fields
                   10118: 
                   10119:        * src/types/pa_vcookie.C: - $cookie:fields available now
                   10120: 
                   10121:        * src/classes/hash.C: - some stuff for use with .for_each moved to
                   10122:          common
                   10123: 
                   10124:        * src/include/pa_common.h: - some stuff for use with .for_each
                   10125:          moved here
                   10126: 
                   10127:        * src/types/: pa_venv.C, pa_venv.h: - some strings moved to #define
                   10128: 
                   10129: 2007-09-14  misha
                   10130: 
                   10131:        * buildall-with-xml: - new xml libs again =)
                   10132: 
                   10133: 2007-08-28  misha
                   10134: 
                   10135:        * operators.txt: - texts about ^table.columns[[column name]]  and
                   10136:          ^string.split[...][v][column name] were added
                   10137: 
                   10138:        * tests/: 168.html, 169.html, results/168.processed,
                   10139:          results/169.processed: - tests for ^table.columns[[column name]]
                   10140:          and ^string.split[...][v][column name] were added
                   10141: 
                   10142:        * src/classes/table.C: - new option ^table.columns[[column name]]
                   10143:          was added
                   10144: 
                   10145:        * src/classes/string.C: - new option ^string.split[...;v;[column
                   10146:          name]]
                   10147: 
                   10148:        * src/include/pa_exception.h: - error text message for
                   10149:          ^hash._keys[], ^table.columns[] and ^string.split[]
                   10150: 
                   10151: 2007-08-27  misha
                   10152: 
                   10153:        * src/main/untaint.C: - try to fix coredump on unix if print to
                   10154:          body ^taint[sql][something] outside of connect
                   10155: 
                   10156:        * tests/: 167.html, results/167.processed: - test for ^taint[sql]
                   10157:          outside of connect
                   10158: 
                   10159:        * buildall-with-xml, buildall-without-xml: - strip parser3 was
                   10160:          added (commented by default)
                   10161: 
                   10162: 2007-08-20  misha
                   10163: 
                   10164:        * operators.txt: - comment about new method ^node.hasAttributes[]
                   10165:          was added
                   10166: 
                   10167:        * src/classes/: file.C, math.C, op.C, string.C, xdoc.C: - more
                   10168:          duplicated exception text strings were removed
                   10169: 
                   10170:        * src/include/pa_exception.h: - more exception text strings moved
                   10171:          here
                   10172: 
                   10173:        * src/classes/table.C: - some duplicate exceptions' text strings
                   10174:          removed
                   10175: 
                   10176:        * src/classes/: file.C, hashfile.C, image.C, op.C, string.C,
                   10177:          xdoc.C, xnode.C: - some duplicate exceptions' text strings
                   10178:          removed
                   10179: 
                   10180:        * src/include/pa_exception.h: - some exception text strings movet
                   10181:          to pa_exception
                   10182: 
                   10183:        * tests/: 149.html, results/149.processed: - test for
                   10184:          ^xnode.hasAttributes[] was added - some code changes
                   10185: 
                   10186:        * src/classes/xnode.C: - DOM2 method ^xnode.hasAttributes[] was
                   10187:          added
                   10188: 
                   10189: 2007-08-17  misha
                   10190: 
                   10191:        * tests/: results/006.processed, results/059.processed, 006.html,
                   10192:          059.html: - more tests for match
                   10193: 
                   10194:        * tests/: 129.html, results/129.processed: - tests for
                   10195:          ^table.hash[...][$.type[string|hash|table]] added
                   10196: 
                   10197:        * src/targets/cgi/parser3.C: - little syntax changes
                   10198: 
                   10199:        * src/: classes/math.C, targets/isapi/parser3isapi.C: - little
                   10200:          syntax changes
                   10201: 
                   10202:        * src/targets/cgi/parser3.C, operators.txt: - annoying 'SIGPIPE'
                   10203:          messages in parser3.log switched off by default. If someone
                   10204:          really still need it: use $SIGPIPE(1)
                   10205: 
                   10206: 2007-08-08  misha
                   10207: 
                   10208:        * buildall-with-xml, buildall-without-xml: - remove libs source
                   10209:          files by default since now
                   10210: 
                   10211: 2007-08-07  misha
                   10212: 
                   10213:        * buildall-without-xml: - some option syntax changes
                   10214: 
                   10215:        * buildall-with-xml: - compile libxml2 without http support - some
                   10216:          option syntax changes
                   10217: 
                   10218:        * src/main/pa_xml_io.C: - will use parser file loader for xml needs
                   10219: 
                   10220: 2007-08-06  misha
                   10221: 
                   10222:        * buildall-with-xml: - moved to libxml2-2.6.29 and libxslt-1.1.21
                   10223: 
                   10224:        * tests/: 160.html, results/160.processed: - cache test was
                   10225:          rewrited
                   10226: 
                   10227: 2007-07-06  misha
                   10228: 
                   10229:        * tests/: 153.html, results/153.processed: - added test for
                   10230:          ^math:sha1[string]
                   10231: 
                   10232:        * src/types/pa_vform.C: - bugfix: uploaded file name wasn't
                   10233:          transcoded
                   10234: 
                   10235:        * src/classes/math.C: - ^math:long2ip(long) and ^math:sha1[string]
                   10236:          were added
                   10237: 
                   10238: 2007-06-28  misha
                   10239: 
                   10240:        * etc/parser3.charsets/windows-1251.cfg: - removed duplicated and
                   10241:          some incorrect chars
                   10242: 
                   10243: 2007-06-19  misha
                   10244: 
                   10245:        * src/include/pa_hash.h: - methods generic_hash_code & hash_code
                   10246:          were moved on top because of gcc 4 had a problems during
                   10247:          building.
                   10248: 
                   10249: 2007-06-18  misha
                   10250: 
                   10251:        * tests/results/019.processed: - new image commited
                   10252: 
                   10253: 2007-06-09  misha
                   10254: 
                   10255:        * src/classes/: op.C, table.C: - in while and table.select method
                   10256:          as_expression used now
                   10257: 
                   10258:        * src/types/pa_vmethod_frame.h: - method as_expression was added
                   10259: 
                   10260: 2007-06-08  misha
                   10261: 
                   10262:        * tests/: 166.html, results/166.processed: - test for
                   10263:          ^match[...][n]
                   10264: 
                   10265:        * tests/: 165.html, results/165.processed: - tests for loops
                   10266: 
                   10267:        * src/lib/cord/include/private/cord_pos.h: - back to origin value
                   10268:          because of no speed/memory optimisation but some proglems with
                   10269:          long cycles occure
                   10270: 
                   10271: 2007-06-06  misha
                   10272: 
                   10273:        * src/classes/: op.C, table.C: - ^while(true){}, ^while(1){},
                   10274:          ^table.select(true) and ^table.select(1) didn't works because of
                   10275:          awaiting junction-param only. fixed.
                   10276: 
                   10277: 2007-05-24  misha
                   10278: 
                   10279:        * src/: include/pa_os.h, main/pa_os.C: - 20 attempt to get lock
                   10280:          with 0.5 secs interval
                   10281: 
                   10282:        * src/classes/op.C: - cache was rewrited. I hope it works with
                   10283:          locking system now on unix
                   10284: 
                   10285:        * src/main/pa_os.C: - locks engines were rewrited: now we don't use
                   10286:          system locks which wait till other threads release it but try get
                   10287:          lock, if fail wait 1 sec and make 10 attempts.
                   10288: 
                   10289:        * src/include/pa_os.h: - consts for blocking locks + some comments
                   10290:          were added
                   10291: 
                   10292:        * src/lib/sdbm/apr_file_io.C: - wait till lock released while
                   10293:          opening files
                   10294: 
                   10295:        * src/classes/table.C: - changes in includes. if unclude <sstream>
                   10296:          after our classes on unix it can't be build
                   10297: 
                   10298:        * src/types/pa_vhashfile.C: - not needed code removed
                   10299: 
                   10300: 2007-05-23  misha
                   10301: 
                   10302:        * src/: classes/file.C, classes/op.C, main/pa_common.C,
                   10303:          include/pa_common.h: - cosmetic changes
                   10304: 
                   10305: 2007-05-18  misha
                   10306: 
                   10307:        * src/lib/cord/include/private/cord_pos.h: - rebalance tree not so
                   10308:          often. it's give some speed increasing
                   10309: 
                   10310:        * tests/results/160.processed: - returned time corrected
                   10311: 
                   10312:        * tests/160.html: - time increased because on unix 1 mean nothing
                   10313:          :(
                   10314: 
                   10315:        * operators.txt: - added info about ^hash.contain[key]
                   10316: 
                   10317:        * src/classes/hash.C: - added ^hash.contain[key]
                   10318: 
                   10319:        * src/include/pa_hash.h: - added method for checking key exists in
                   10320:          hash
                   10321: 
                   10322: 2007-05-07  misha
                   10323: 
                   10324:        * src/include/pa_string.h: - was compilation error during build on
                   10325:          freebsd4
                   10326: 
                   10327: 2007-05-03  misha
                   10328: 
                   10329:        * src/classes/table.C: - option $.type[hash|string|table] was added
                   10330:          for ^table.hash[]
                   10331: 
                   10332:        * src/classes/file.C: - comment removed
                   10333: 
                   10334: 2007-04-26  misha
                   10335: 
                   10336:        * src/types/: pa_vhashfile.C, pa_vhashfile.h: - while ::open the
                   10337:          real files doesn't opened in place anymore
                   10338: 
                   10339: 2007-04-24  misha
                   10340: 
                   10341:        * src/classes/math.C: - I thought one more time and remove lg(N) :)
                   10342: 
                   10343:        * src/include/pa_exception.h: "static" removed
                   10344: 
                   10345: 2007-04-23  misha
                   10346: 
                   10347:        * src/classes/math.C: ^math:lg(N) => ^math:log10(N)
                   10348: 
                   10349:        * src/classes/math.C: added: - ^math:ln(N) (the same as
                   10350:          ^math:log(N)) - ^math:lg(N)
                   10351: 
                   10352:        * tests/: 097.html, results/097.processed: - charsets converstion
                   10353:          during ^file::load[text;http://...] added
                   10354: 
                   10355:        * tests/: 164.html, results/164.processed: - check for set expires
                   10356:          as a date
                   10357: 
                   10358:        * tests/: 164.html, results/164.processed: - test for hashfile
                   10359: 
                   10360:        * src/classes/hashfile.C: - little comment changes
                   10361: 
                   10362:        * src/types/pa_vhashfile.C: - don't open hashfile files until 1st
                   10363:          access
                   10364: 
                   10365:        * src/: classes/date.C, classes/double.C, classes/file.C,
                   10366:          classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
                   10367:          classes/mail.C, classes/math.C, classes/op.C, classes/string.C,
                   10368:          classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
                   10369:          classes/xnode.h, include/pa_request.h, main/execute.C,
                   10370:          main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
                   10371:          main/pa_dictionary.C, main/pa_exec.C, main/pa_http.C,
                   10372:          main/pa_request.C, main/pa_sql_driver_manager.C, main/pa_table.C,
                   10373:          types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
                   10374:          types/pa_vconsole.h, types/pa_vfile.h, types/pa_vhash.h,
                   10375:          types/pa_vimage.h, types/pa_vmail.C, types/pa_vmethod_frame.h,
                   10376:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   10377:          types/pa_vtable.C, types/pa_vxdoc.h, types/pa_wcontext.C: -
                   10378:          "parser.runtime" strings were removed
                   10379: 
                   10380:        * src/classes/hashfile.C: - with .clear[] called files_delete()
                   10381:          now.
                   10382: 
                   10383:        * src/types/: pa_vhashfile.C, pa_vhashfile.h: - .clear() removed.
                   10384: 
                   10385:        * src/include/pa_exception.h: - string constant with
                   10386:          "parser.runtime" text was added
                   10387: 
                   10388: 2007-04-20  misha
                   10389: 
                   10390:        * operators.txt: - some comments changing
                   10391: 
                   10392:        * operators.txt: - added info about .^hashfile.release[],
                   10393:          ^hashfile.clenaup[] and new ^string.match[][>N-option<]
                   10394: 
                   10395:        * configure: =cheching for unsetenv
                   10396: 
                   10397:        * src/classes/hashfile.C: - ^hashfile.cleanup[],
                   10398:          ^hashfile.release[] were added
                   10399: 
                   10400:        * src/: main/pa_string.C, include/pa_string.h, classes/string.C: -
                   10401:          ^string.match[][] understand new option now: return number of
                   10402:          matches but not table wit results
                   10403: 
                   10404:        * src/types/: pa_vhashfile.C, pa_vhashfile.h: - hashfile can auto
                   10405:          reopen now
                   10406: 
                   10407:        * src/classes/op.C: - bug. must be false
                   10408: 
                   10409:        * configure.in: - checking for unsetenv was added
                   10410: 
                   10411:        * src/types/pa_vform.C: - some comments
                   10412: 
                   10413: 2007-04-18  misha
                   10414: 
                   10415:        * buildall-with-xml: moving to libxml2-2.6.28
                   10416: 
                   10417:        * buildall-with-xml, buildall-without-xml: added commented lines
                   10418:          with --disable-safe-mode option
                   10419: 
                   10420:        * operators.txt: - info about $form:files
                   10421: 
                   10422: 2007-04-17  misha
                   10423: 
                   10424:        * src/types/: pa_vform.C, pa_vform.h: - some code was modified -
                   10425:          $form:files was added
                   10426: 
                   10427:        * tests/: 163.html, results/163.processed: removing auto format
                   10428: 
                   10429:        * src/types/pa_vdate.h: - start adding unsetenv("TZ");
                   10430: 
                   10431: 2007-04-16  misha
                   10432: 
                   10433:        * tests/: 163.html, results/163.processed: - test for .int[],
                   10434:          floor, round, ceiling and .format[]
                   10435: 
                   10436:        * src/classes/file.C: - little optimization for getting args in
                   10437:          exec/cgi
                   10438: 
                   10439: 2007-04-13  misha
                   10440: 
                   10441:        * src/classes/file.C: - arguments for file::exec/cgi can be
                   10442:          specified now as s table with one column
                   10443: 
                   10444: 2007-03-27  misha
                   10445: 
                   10446:        * tests/: 162.html, results/162.processed: - test for
                   10447:          ^table.select(^condition[$t])
                   10448: 
                   10449:        * tests/results/auto.p: - load windows-1251 charset for some tests
                   10450: 
                   10451:        * tests/run_parser.sh: PARSER_CONFIG -> CGI_PARSER_CONFIG
                   10452: 
                   10453:        * tests/: results/161.processed, 161.html, 161_utf8.txt,
                   10454:          161_windows1251.txt: - added test for
                   10455:          ^file::load[text;/local/file.txt;$.charset[...]]
                   10456: 
                   10457:        * tests/: results/013.processed, 013.html: - added test for
                   10458:          checking $._default value while hash modifications
                   10459: 
                   10460:        * tests/: 160.html, results/160.processed: - add test for
                   10461:          ^cache[key](secs){code}, ^cache[] and ^cache(0)
                   10462: 
                   10463: 2007-03-22  misha
                   10464: 
                   10465:        * src/include/pa_common.h: - "charset" string defined for
                   10466:          ^file::load[text;/local.txt] and ^table::load[/table.txt]
                   10467: 
                   10468:        * src/main/: pa_common.C, pa_http.C: - $.charset option for
                   10469:          ^file::load[text;/local.txt] and ^table::load[/table.txt] was
                   10470:          added - not needed transcodes were removed from
                   10471:          ^file::load[...;http://...]
                   10472: 
                   10473:        * src/types/pa_vdate.h: - date.week was fixed - date.weekyear was
                   10474:          added
                   10475: 
                   10476:        * src/classes/date.C: - date.week was fixed
                   10477: 
                   10478:        * operators.txt: - added info about date.weekyear
                   10479: 
                   10480:        * tests/: 159.html, results/159.processed: - tests for date.week
                   10481:          and date.weekyear added
                   10482: 
                   10483: 2007-03-15  misha
                   10484: 
                   10485:        * src/classes/table.C: - enclose column numbers for nameless tables
                   10486:          as well
                   10487: 
                   10488: 2007-03-14  misha
                   10489: 
                   10490:        * src/targets/cgi/parser3.C: - bugxif. failed when request cgi
                   10491: 
                   10492:        * src/classes/table.C: - table.save optimization: now required much
                   10493:          less memory
                   10494: 
                   10495: 2007-03-13  misha
                   10496: 
                   10497:        * tests/results/: 158.processed, 158.processes: - tests for
                   10498:          table.save/table.load
                   10499: 
                   10500:        * tests/: 158.html, results/158.processes: - tests for
                   10501:          table.save/table.load
                   10502: 
                   10503:        * buildall-with-xml: libxml2: --without-ftp --without-docbook
                   10504: 
                   10505:        * buildall-with-xml: - pattern needed now for building
                   10506: 
                   10507:        * tests/results/097.processed: - added test results for xdoc::load
                   10508:          & xdoc::load[http://...]
                   10509: 
                   10510:        * tests/097.html: - added test for xdoc::load
                   10511: 
                   10512: 2007-03-12  misha
                   10513: 
                   10514:        * tests/: 107.html, results/107.processed: - added test for xpath
                   10515:          '//man'
                   10516: 
                   10517: 2007-03-01  misha
                   10518: 
                   10519:        * tests/: 097.html, results/097.processed: - added test for
                   10520:          creating xdoc from file
                   10521: 
                   10522:        * tests/: results/157.processed, 157.html: - added test for
                   10523:          file:move
                   10524: 
                   10525: 2007-02-28  misha
                   10526: 
                   10527:        * src/classes/xdoc.C: - another attempt
                   10528: 
                   10529:        * src/classes/xdoc.C: - roll back last changes for a while
                   10530: 
                   10531:        * src/classes/xdoc.C, operators.txt: - ^xdoc::create[$file] added.
                   10532: 
                   10533:        * src/classes/file.C: - under lock we create non-exist dir anyway
                   10534: 
                   10535:        * tests/results/099.processed: - ever send content-disposition to
                   10536:          client with file
                   10537: 
                   10538:        * tests/157.html: + test for file:copy
                   10539: 
                   10540: 2007-02-26  misha
                   10541: 
                   10542:        * src/classes/file.C: - some similar strings moved to #define
                   10543:          instead of to be copy/pasted many times
                   10544: 
                   10545:        * src/types/pa_vfile.h: - class name string ("file") moved to
                   10546:          #define
                   10547: 
                   10548: 2007-02-20  misha
                   10549: 
                   10550:        * configure.in: - added some strings for sqlite detection
                   10551: 
                   10552: 2007-02-19  misha
                   10553: 
                   10554:        * operators.txt: - some comments changes
                   10555: 
                   10556:        * buildall-with-xml, buildall-without-xml: - some modifications
                   10557: 
                   10558: 2007-02-17  misha
                   10559: 
                   10560:        * buildall-with-xml, buildall-without-xml: - moving to gc6.8
                   10561: 
                   10562:        * src/main/pa_request.C: - damn, i forgot to commit it while I
                   10563:          change console behaviour
                   10564: 
                   10565: 2007-02-12  misha
                   10566: 
                   10567:        * src/targets/cgi/parser3.C: - don't print headers if
                   10568:          $console:line[data] was used during cgi execution.
                   10569: 
                   10570:        * src/types/pa_vconsole.h: - console class have bool flag now which
                   10571:          marked as 'true' if class was used.
                   10572: 
                   10573:        * tests/: 152.html, results/152.processed: - more types was added
                   10574:          to test 152
                   10575: 
                   10576:        * src/types/: pa_vimage.C, pa_vimage.h: - fixed bug added while
                   10577:          adding 'bool' (^if($image){} caused exception)
                   10578: 
                   10579: 2007-02-09  misha
                   10580: 
                   10581:        * tests/: 152.html, results/152.processed: - test alightly updated
                   10582: 
                   10583:        * tests/: 152.html, results/152.processed: - test rewrited
                   10584: 
                   10585:        * src/types/: pa_vxdoc.C, pa_vxdoc.h, pa_vxnode.C, pa_vxnode.h: -
                   10586:          bugfix. I broke xdoc & xnode in expression
                   10587: 
                   10588: 2007-02-08  misha
                   10589: 
                   10590:        * tests/: 152.html, results/152.processed: - add test for checking
                   10591:          'def' for void, string, bool, int & double
                   10592: 
                   10593: 2007-02-07  misha
                   10594: 
                   10595:        * operators.txt: - ^file:base64[filespec]  was added
                   10596: 
                   10597:        * tests/results/153.processed: - result test for
                   10598:          ^file:base64[filespec]  was updated
                   10599: 
                   10600:        * tests/153.html: - test for ^file:base64[filespec]  was added
                   10601: 
                   10602:        * src/types/pa_vconsole.h: - little optimization
                   10603: 
                   10604:        * src/classes/file.C: - ^file:base64[filespec]
                   10605: 
                   10606:        * src/main/pa_common.C: - definitions for ^file:base64[filespec]
                   10607: 
                   10608:        * src/include/pa_common.h: - declarations for
                   10609:          ^file:base64[filespec]
                   10610: 
                   10611:        * src/types/pa_vcookie.C: - little optimization
                   10612: 
                   10613: 2007-02-06  misha
                   10614: 
                   10615:        * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: - some chars
                   10616:          were temporary commented
                   10617: 
                   10618:        * src/types/pa_vbool.h: - bugfix
                   10619: 
                   10620:        * tests/156.html: - added test for bool cookie
                   10621: 
                   10622:        * src/types/pa_vcookie.h: - not needed string "cookie" removed
                   10623: 
                   10624:        * tests/: 155.html, results/155.processed: - added test for check
                   10625:          $.encloser[] option for table save/load
                   10626: 
                   10627:        * tests/: 153.html, 154.html, todo.txt: - two more tests added
                   10628: 
                   10629: 2007-02-05  misha
                   10630: 
                   10631:        * tests/results/152.processed: - newline at the end was missed
                   10632: 
                   10633:        * tests/results/141.processed: - math:md5 must be lowercased
                   10634: 
                   10635:        * src/targets/cgi/parser3.C: - 2007 in help ;)
                   10636: 
                   10637: 2007-02-03  misha
                   10638: 
                   10639:        * tests/results/: 150.processed, 151.processed, 152.processed: -
                   10640:          test for bool added and some content length fixes
                   10641: 
                   10642:        * tests/152.html: - test for bool added
                   10643: 
                   10644:        * buildall-with-xml: - moved to libxml2-2.6.27 and libxslt-1.1.20
                   10645: 
                   10646:        * operators.txt: - info bool class was added
                   10647: 
1.116     moko     10648:        * src/: classes/Makefile.am, classes/bool.C,
1.95      moko     10649:          classes/classes.vcproj, classes/double.C, classes/int.C,
                   10650:          classes/string.C, classes/void.C, classes/xnode.C,
                   10651:          include/pa_string.h, types/pa_vbool.h, types/pa_vclass.h,
                   10652:          types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
                   10653:          types/pa_vjunction.h, types/pa_vproperty.C, types/pa_vproperty.h,
                   10654:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   10655:          types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h,
                   10656:          types/types.vcproj: - bool class was added
                   10657: 
                   10658:        * src/main/pa_request.C: - fix
                   10659: 
                   10660: 2007-01-18  misha
                   10661: 
                   10662:        * src/: main/pa_string.C, classes/string.C: - return table during
                   10663:          ^string.match[][] even if no matched found.
                   10664: 
                   10665: 2006-12-20  misha
                   10666: 
                   10667:        * src/types/: pa_method.h, pa_vfile.h: - some syntax changes [
                   10668:          http://www.parser.ru/forum/?id=55598 ]
                   10669: 
                   10670: 2006-12-19  misha
                   10671: 
                   10672:        * src/types/pa_vxdoc.C: - $xDoc is "xnode" == true now. more
                   10673:          details: http://www.parser.ru/forum/?id=52359
                   10674: 
                   10675:        * src/main/pa_request.C: - always set content-disposition for
                   10676:          $response:body[hash here]. more details:
                   10677:          http://www.parser.ru/forum/?id=52130
                   10678: 
                   10679: 2006-12-07  misha
                   10680: 
                   10681:        * operators.txt: - added info about bool params in cookie set
                   10682: 
                   10683:        * src/types/pa_vcookie.C: - bool param in cookies available now
                   10684:          $cookie:name[   $.value[123]   $.secure(true)   $.httponly(true)
                   10685:          ]
                   10686: 
                   10687:        * src/types/: pa_value.C, pa_value.h, pa_vbool.h: - is_bool method
                   10688:          was added
                   10689: 
                   10690: 2006-12-02  misha
                   10691: 
                   10692:        * src/classes/file.C: - file_block_read used instead of native read
                   10693: 
                   10694:        * src/main/pa_common.C: - added file_block_read with read error
                   10695:          detection - file_block_read used instead of native read
                   10696: 
                   10697:        * src/include/pa_common.h: - added file_block_read declaration
                   10698: 
                   10699: 2006-12-01  misha
                   10700: 
                   10701:        * operators.txt: - info about $var.CLASS_NAME was added
                   10702: 
                   10703:        * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
                   10704:          $var.CLASS_NAME added
                   10705: 
                   10706:        * operators.txt: - added info about ^file:copy[]
                   10707: 
                   10708:        * src/classes/file.C: - ^file:copy[from;fo] was added
                   10709: 
                   10710: 2006-11-20  misha
                   10711: 
                   10712:        * src/classes/date.C: - bug fix :)
                   10713: 
                   10714: 2006-11-17  misha
                   10715: 
                   10716:        * src/include/pa_common.h: - array in crc32 calculation was changed
                   10717:          to static
                   10718: 
                   10719:        * src/main/pa_common.C: - little optimization in getMonthDays -
                   10720:          small changes in crc32 calculation
                   10721: 
                   10722:        * src/classes/date.C: - not needed code was removed
                   10723: 
                   10724: 2006-11-16  misha
                   10725: 
                   10726:        * src/types/pa_vmail.C: - fix missed brakes
                   10727: 
                   10728:        * src/types/pa_vmail.C: - mail:send now set content-type:
                   10729:          multipart/related instead of multipart/mixed if file have
                   10730:          $.content-id[]
                   10731: 
                   10732: 2006-11-15  misha
                   10733: 
                   10734:        * src/types/pa_vdouble.h: abs -> fabs
                   10735: 
                   10736: 2006-11-14  misha
                   10737: 
                   10738:        * operators.txt: - added info about ^file.md5[] and
                   10739:          ^file:md5[file-name]
                   10740: 
                   10741:        * src/classes/file.C: - ^file.md5[] and ^file:md5[file-name] were
                   10742:          added
                   10743: 
                   10744:        * src/main/pa_common.C: - CRC32_MAX_BUFFER_SIZE was renamed to
                   10745:          FILE_BUFFER_SIZE
                   10746: 
                   10747:        * src/classes/math.C: - hex_string was moved to pa_common.h
                   10748: 
                   10749:        * src/include/pa_common.h: - hex_string was moved from math.C -
                   10750:          CRC32_MAX_BUFFER_SIZE was renamed to FILE_BUFFER_SIZE
                   10751: 
                   10752:        * src/types/pa_vdouble.h: - incorrect frac detection with negative
                   10753:          values was fixed
                   10754: 
                   10755: 2006-11-13  misha
                   10756: 
                   10757:        * operators.txt: - added info about ^math:crc32[string],
                   10758:          ^file:crc32[file-name] & ^file.crc32[]
                   10759: 
                   10760:        * src/classes/math.C: - added ^math:crc32[string]
                   10761: 
                   10762:        * src/classes/file.C: - some comments were changed - added
                   10763:          ^file:crc32[file-name] and ^file.crc32[]
                   10764: 
                   10765:        * src/: include/pa_common.h, main/pa_common.C: - some functions for
                   10766:          crc32 calculation added
                   10767: 
                   10768: 2006-11-03  misha
                   10769: 
                   10770:        * src/include/pa_array.h: - not needed variable removed
                   10771: 
                   10772:        * tests/: 150.html, 151.html, results/150.processed,
                   10773:          results/151.processed: - 2 tests were added
                   10774: 
                   10775:        * src/include/: pa_array.h, pa_table.h: - table.locate & table.join
                   10776:          with $.reverse(1) were fixed
                   10777: 
                   10778:        * src/main/pa_http.C: - bug fix. now tainted data from $.form and
                   10779:          query converted to $.charset during ^file::load[http://...]
                   10780: 
                   10781: 2006-11-02  misha
                   10782: 
                   10783:        * src/include/pa_table.h: ups. forget '=' char
                   10784: 
                   10785:        * src/include/pa_table.h: - one more fix in
                   10786:          .locate[...][$.reverse(1)]
                   10787: 
                   10788: 2006-11-01  misha
                   10789: 
                   10790:        * src/classes/math.C: - bug fix, details:
                   10791:          http://www.parser.ru/forum/?id=53360
                   10792: 
                   10793:        * src/include/pa_table.h: - bug fix during ^table.locate( condition
                   10794:          false for all records )[$.reverse(1)]
                   10795: 
                   10796:        * src/main/pa_http.C: - second param for this mid method is length
                   10797:          but not end_index so this method has error and can't detect
                   10798:          charsets in next content-types: Content-type: text/html;
                   10799:          charset="windows-1251" Content-type: text/html;
                   10800:          charset="windows-1251"; Content-type: text/html;
                   10801:          charset=windows-1251;
                   10802: 
                   10803:          only Content-type: text/html; charset=windows-1251 was fine
                   10804: 
                   10805: 2006-10-31  misha
                   10806: 
                   10807:        * src/classes/file.C: - empty args in file::exec removed now
                   10808: 
                   10809: 2006-09-03  paf
                   10810: 
                   10811:        * src/classes/file.C: proper tainting of
                   10812:          ^file::exec/cgi[script;env;COMMAND;LINE;PARAMS]
                   10813: 
                   10814: 2006-06-09  paf
                   10815: 
                   10816:        * src/lib/pcre/pcre-2_08.tar.gz: one can easily find those
                   10817: 
                   10818:        * src/classes/table.C: formatting
                   10819: 
                   10820:        * src/classes/table.C: incorporated patch from misha: Sent:
                   10821:          Thursday, June 08, 2006 12:38 PM Subject: parser3: patch for
                   10822:          ignoring string options for ^table.save[]
                   10823: 
                   10824:        * src/classes/hash.C: incorporated patch from misha Sent:
                   10825:          Wednesday, June 07, 2006 9:52 PM Subject: parser3: patch for
                   10826:          $hash._default disappear while
                   10827: 
                   10828:        * operators.txt: ^mail:send[   $.file1[      $.value[file]
                   10829:          $.format[!uue|!base64] << new base64 option. default uue   ] ]
                   10830: 
                   10831:        * src/types/pa_vmail.C: misha: Sent: Wednesday, June 07, 2006 8:51
                   10832:          PM Subject: patch for base64 in ^mail:send[] %-)
                   10833: 
                   10834: 2006-04-09  paf
                   10835: 
                   10836:        * src/main/compile.tab.C: ` change compiled
                   10837: 
                   10838:        * gnu.vcproj, operators.txt, parser3.sln,
                   10839:          src/classes/classes.vcproj, src/classes/file.C,
                   10840:          src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
                   10841:          src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
                   10842:          src/classes/xnode.C, src/include/pa_array.h,
                   10843:          src/include/pa_config_fixed.h, src/include/pa_dir.h,
                   10844:          src/include/pa_memory.h, src/include/pa_request.h,
                   10845:          src/include/pa_stack.h, src/lib/cord/cord.vcproj,
                   10846:          src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
                   10847:          src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
                   10848:          src/lib/pcre/pcre_dftables.vcproj,
                   10849:          src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
                   10850:          src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
                   10851:          src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
                   10852:          src/main/pa_cache_managers.C, src/main/pa_charset.C,
                   10853:          src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
                   10854:          src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
                   10855:          src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
                   10856:          src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
                   10857:          src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
                   10858:          src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
                   10859:          src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
                   10860:          src/types/pa_value.h, src/types/pa_vcookie.C,
                   10861:          src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
                   10862:          src/types/pa_vmail.C, src/types/pa_vresponse.C,
                   10863:          src/types/pa_vstatus.C, src/types/types.vcproj,
                   10864:          tests/descript.ion: + ^break[] ^continue[], in ^for, ^while,
                   10865:          ^menu, ^hash/hashfile.foreach
                   10866: 
                   10867:        * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
                   10868:          src/classes/file.C, src/classes/hash.C, src/classes/image.C,
                   10869:          src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
                   10870:          src/classes/xnode.C, src/include/pa_array.h,
                   10871:          src/include/pa_config_fixed.h, src/include/pa_dir.h,
                   10872:          src/include/pa_memory.h, src/include/pa_request.h,
                   10873:          src/include/pa_stack.h, src/lib/cord/cord.vcproj,
                   10874:          src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
                   10875:          src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
                   10876:          src/lib/pcre/pcre_dftables.vcproj,
                   10877:          src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
                   10878:          src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
                   10879:          src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
                   10880:          src/main/pa_cache_managers.C, src/main/pa_charset.C,
                   10881:          src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
                   10882:          src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
                   10883:          src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
                   10884:          src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
                   10885:          src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
                   10886:          src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
                   10887:          src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
                   10888:          src/types/pa_value.h, src/types/pa_vcookie.C,
                   10889:          src/types/pa_vmail.C, src/types/pa_vresponse.C,
                   10890:          src/types/pa_vstatus.C, src/types/types.vcproj,
                   10891:          tests/descript.ion: ! switched to VS2005 (projects and
                   10892:          object<info explicitly typed>.for_each(, info)) +
                   10893:          $response:field[] setting void means removing + grammar $name`
                   10894:          name stops now, for mysql `$field` + started ^break[]
                   10895:          ^continue[], in ^for. TODO: to other iterators (while, menu,
                   10896:          foreach) + all log messages += [uri=, method=, cl=]
                   10897: 
                   10898:        * buildall-with-xml: merged . ftp paths update
                   10899: 
                   10900:        * buildall-with-xml: . ftp paths update
                   10901: 
                   10902: 2006-03-04  paf
                   10903: 
                   10904:        * src/main/: pa_string.C: merged from HEAD ! cache file curruption
                   10905:          checks++ [thanks to Igor Zinkovsky for detailed report]
                   10906: 
                   10907:        * src/main/pa_string.C: ! cache file curruption checks++ [thanks to
                   10908:          Igor Zinkovsky for detailed report]
                   10909: 
                   10910: 2006-03-01  paf
                   10911: 
                   10912:        * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
                   10913:          \n to ' ' in
                   10914: 
                   10915: 2006-02-18  paf
                   10916: 
                   10917:        * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
                   10918:          \n to ' ' in
                   10919: 
                   10920:        * src/main/untaint.C: ! mail:send << changed \r or \n to ' ' in
                   10921: 
                   10922: 2006-02-03  paf
                   10923: 
                   10924:        * src/main/pa_common.C: merged from HEAD ! bugfix: decoding from
                   10925:          base64
                   10926: 
                   10927:        * src/main/pa_common.C: ! bugfix: decoding from base64
                   10928: 
                   10929: 2006-01-20  paf
                   10930: 
                   10931:        * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
                   10932:          economy fix
                   10933: 
                   10934:        * src/classes/: table.C: merged from HEAD ! bugfix
                   10935:          ^table.save[$.encloser-s now handled properly
                   10936: 
                   10937:        * src/classes/table.C: ! bugfix ^table.save[$.encloser-s now
                   10938:          handled properly
                   10939: 
                   10940: 2006-01-19  paf
                   10941: 
                   10942:        * buildall-with-xml, buildall-without-xml: merged from HEAD !
                   10943:          libgc:USE_MUNMAP activates merging of free memory blocks which
                   10944:          helps a lot in our case: after transform we want
                   10945:          CORD(main.result)->cstr[big malloc]->transcode[big malloc]
                   10946: 
                   10947:        * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
                   10948:          economy fix
                   10949: 
                   10950:        * buildall-with-xml, buildall-without-xml: ! libgc:USE_MUNMAP
                   10951:          activates merging of free memory blocks which helps a lot in our
                   10952:          case: after transform we want CORD(main.result)->cstr[big
                   10953:          malloc]->transcode[big malloc]
                   10954: 
                   10955: 2006-01-17  paf
                   10956: 
                   10957:        * src/types/pa_vhashfile.C: ! hashfile.foreach: counted pairs
                   10958:          before reading them. got rid of reallocs = became quicker and
                   10959:          less fragmentated
                   10960: 
                   10961: 2005-12-29  paf
                   10962: 
1.116     moko     10963:        * INSTALL, Makefile.am, buildall-with-xml, buildall-without-xml,
                   10964:          configure, configure.in, src/include/pa_version.h,
                   10965:          src/lib/ltdl/Makefile.am, src/lib/ltdl/acconfig.h,
1.95      moko     10966:          src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
                   10967:          src/lib/ltdl/config.sub, src/lib/ltdl/configure.in,
                   10968:          src/lib/ltdl/install-sh, src/lib/ltdl/ltmain.sh,
                   10969:          src/lib/ltdl/missing: . merged from 3.2.1
                   10970: 
1.116     moko     10971:        * Makefile.am, src/lib/ltdl/Makefile.am: . now site.m4 also
                   10972:          packaged when 'make dist', so do configure companion files in
                   10973:          src/lib/ltdl
                   10974: 
                   10975:        * src/lib/ltdl/: Makefile.am, acconfig.h, acinclude.m4,
                   10976:          config.guess, config.sub, configure.in, install-sh, ltmain.sh,
                   10977:          missing: . now config_auto.h is created with configure [were
                   10978:          constant]
1.95      moko     10979: 
                   10980:        * INSTALL: . references to documentation and some clarification
                   10981: 
                   10982:        * buildall-with-xml, buildall-without-xml: . farawell doc
                   10983:          indication
                   10984: 
1.116     moko     10985:        * Makefile.am: . dist+=buildall*
1.95      moko     10986: 
                   10987: 2005-12-28  paf
                   10988: 
                   10989:        * configure: . 3.2.1
                   10990: 
                   10991:        * INSTALL, buildall-with-xml, buildall-without-xml: + started to
                   10992:          simplify build process, see INSTALL
                   10993: 
                   10994: 2005-12-26  paf
                   10995: 
                   10996:        * configure: ver
                   10997: 
                   10998:        * configure.in, src/include/pa_version.h, src/main/compile.tab.C:
                   10999:          version
                   11000: 
                   11001: 2005-12-21  paf
                   11002: 
                   11003:        * src/main/: compile.tab.C, main.vcproj: . win32: grammar is now
                   11004:          compiled with bison 1.875b, it reports unexpected token names
                   11005: 
                   11006: 2005-12-19  paf
                   11007: 
                   11008:        * src/: main/compile.tab.C, types/pa_vxnode.h: ! bugfix xnode now
                   11009:          holds a link to xmlNode to prevent premature gc(xmlNode)
                   11010: 
                   11011:        * src/classes/classes.vcproj, src/include/pa_config_fixed.h,
                   11012:          src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
                   11013:          src/main/main.vcproj, src/main/pa_globals.C,
                   11014:          src/targets/cgi/parser3.vcproj,
                   11015:          src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj,
                   11016:          configure, configure.in, src/include/pa_version.h: . killing
                   11017:          gdome [what a relief]
                   11018: 
                   11019:        * tests/: 097.html, 106.html, 108.html, 110.html, 112.html,
                   11020:          113.html, 114.html, 115.html, 116.html, 117.html, Makefile,
                   11021:          run_parser.sh, results/001.processed, results/002.processed,
                   11022:          results/003.processed, results/004.processed,
                   11023:          results/005.processed, results/006.processed,
                   11024:          results/008.processed, results/009.processed,
                   11025:          results/010.processed, results/011.processed,
                   11026:          results/012.processed, results/013.processed,
                   11027:          results/014.processed, results/015.processed,
                   11028:          results/016.processed, results/017.processed,
                   11029:          results/018.processed, results/020.processed,
                   11030:          results/021.processed, results/022.processed,
                   11031:          results/023.processed, results/024.processed,
                   11032:          results/025.processed, results/026.processed,
                   11033:          results/027.processed, results/028.processed,
                   11034:          results/029.processed, results/030.processed,
                   11035:          results/031.processed, results/032.processed,
                   11036:          results/033.processed, results/034.processed,
                   11037:          results/035.processed, results/036.processed,
                   11038:          results/037.processed, results/038.processed,
                   11039:          results/039.processed, results/040.processed,
                   11040:          results/041.processed, results/042.processed,
                   11041:          results/043.processed, results/044.processed,
                   11042:          results/045.processed, results/046.processed,
                   11043:          results/047.processed, results/048.processed,
                   11044:          results/049.processed, results/050.processed,
                   11045:          results/051.processed, results/052.processed,
                   11046:          results/053.processed, results/054.processed,
                   11047:          results/055.processed, results/056.processed,
                   11048:          results/057.processed, results/058.processed,
                   11049:          results/059.processed, results/060.processed,
                   11050:          results/061.processed, results/062.processed,
                   11051:          results/063.processed, results/064.processed,
                   11052:          results/065.processed, results/066.processed,
                   11053:          results/067.processed, results/068.processed,
                   11054:          results/069.processed, results/070.processed,
                   11055:          results/071.processed, results/072.processed,
                   11056:          results/073.processed, results/074.processed,
                   11057:          results/075.processed, results/076.processed,
                   11058:          results/077.processed, results/078.processed,
                   11059:          results/079.processed, results/080.processed,
                   11060:          results/081.processed, results/082.processed,
                   11061:          results/083.processed, results/084.processed,
                   11062:          results/085.processed, results/086.processed,
                   11063:          results/087.processed, results/088.processed,
                   11064:          results/089.processed, results/090.processed,
                   11065:          results/091.processed, results/092.processed,
                   11066:          results/093.processed, results/094.processed,
                   11067:          results/095.processed, results/096.processed,
                   11068:          results/097.processed, results/099.processed,
                   11069:          results/100.processed, results/101.processed,
                   11070:          results/102.processed, results/104.processed,
                   11071:          results/105.processed, results/106.processed,
                   11072:          results/107.processed, results/108.processed,
                   11073:          results/109.processed, results/110.processed,
                   11074:          results/111.processed, results/112.processed,
                   11075:          results/113.processed, results/114.processed,
                   11076:          results/115.processed, results/117.processed,
                   11077:          results/119.processed, results/120.processed,
                   11078:          results/121.processed, results/122.processed,
                   11079:          results/123.processed, results/124.processed,
                   11080:          results/125.processed, results/126.processed,
                   11081:          results/127.processed, results/128.processed,
                   11082:          results/129.processed, results/130.processed,
                   11083:          results/131.processed, results/132.processed,
                   11084:          results/133.processed, results/134.processed,
                   11085:          results/135.processed, results/136.processed,
                   11086:          results/138.processed, results/139.processed,
                   11087:          results/140.processed, results/141.processed,
                   11088:          results/142.processed, results/143.processed,
                   11089:          results/144.processed, results/145.processed,
                   11090:          results/146.processed, results/147.processed,
                   11091:          results/148.processed, results/149.processed, results/auto.p: .
                   11092:          now works if we turn off default auto.p
                   11093: 
1.116     moko     11094:        * configure: . makes
1.95      moko     11095: 
                   11096:        * src/types/pa_vxnode.C: . less warnings
                   11097: 
                   11098:        * src/types/pa_vxnode.C, tests/142.html, tests/144.html,
                   11099:          tests/145.html, tests/149.html, tests/descript.ion,
                   11100:          tests/outputs/d.cmd, tests/results/142.processed,
                   11101:          tests/results/143.processed, tests/results/144.processed,
                   11102:          tests/results/145.processed, tests/results/146.processed,
                   11103:          tests/results/147.processed, tests/results/148.processed,
                   11104:          tests/results/149.processed: . removed .nodeValue from all node
                   11105:          types other than 5 (grabbed piece from gdome)
                   11106: 
                   11107:        * tests/: 137.html, results/137.processed: . not handled this case
                   11108:          yet. code does not hang from inserting parent into child,
                   11109:          considering thing minor issue -- nodes are removed from source
                   11110:          anyway, don't know why shold that be an error after all
                   11111: 
                   11112:        * src/targets/cgi/parser3.C: . style
                   11113: 
                   11114:        * src/classes/xnode.C: . "xml.dom" . xnode.select* now works on
                   11115:          xdoc too [were barking "not element"]
                   11116: 
                   11117: 2005-12-16  paf
                   11118: 
                   11119:        * tests/: 146.html, 147.html, 148.html: . more tests
                   11120: 
                   11121:        * src/classes/xnode.C: . also bark on possible errors
                   11122: 
                   11123:        * src/types/: pa_vxdoc.C, pa_vxnode.C, pa_vxnode.h: + xdoc DOM
                   11124:          props
                   11125: 
                   11126:        * src/: types/pa_value.h, types/pa_vvoid.h, main/compile.tab.C,
                   11127:          main/compile.y: merged from HEAD ! fixed overoptimized
                   11128:          ^call(false) case. (confused it with ^call[] case)
                   11129: 
                   11130:        * src/main/: compile.tab.C, compile.y: ! fixed overoptimized
                   11131:          ^call(false) case. (confused it with ^call[] case)
                   11132: 
                   11133:        * tests/: 142.html, 143.html, 144.html, 145.html: . dom [part]
                   11134: 
                   11135:        * tests/: 006.html, 034.html, 057.html, Makefile, make_tests.cmd,
                   11136:          results/001.processed, results/002.processed,
                   11137:          results/003.processed, results/004.processed,
                   11138:          results/005.processed, results/006.processed,
                   11139:          results/008.processed, results/009.processed,
                   11140:          results/010.processed, results/011.processed,
                   11141:          results/012.processed, results/013.processed,
                   11142:          results/014.processed, results/015.processed,
                   11143:          results/016.processed, results/017.processed,
                   11144:          results/018.processed, results/019.processed,
                   11145:          results/020.processed, results/021.processed,
                   11146:          results/022.processed, results/023.processed,
                   11147:          results/024.processed, results/025.processed,
                   11148:          results/026.processed, results/027.processed,
                   11149:          results/028.processed, results/029.processed,
                   11150:          results/030.processed, results/031.processed,
                   11151:          results/032.processed, results/033.processed,
                   11152:          results/034.processed, results/035.processed,
                   11153:          results/036.processed, results/037.processed,
                   11154:          results/038.processed, results/039.processed,
                   11155:          results/040.processed, results/041.processed,
                   11156:          results/042.processed, results/043.processed,
                   11157:          results/044.processed, results/045.processed,
                   11158:          results/046.processed, results/047.processed,
                   11159:          results/048.processed, results/049.processed,
                   11160:          results/050.processed, results/051.processed,
                   11161:          results/052.processed, results/053.processed,
                   11162:          results/054.processed, results/055.processed,
                   11163:          results/056.processed, results/057.processed,
                   11164:          results/058.processed, results/059.processed,
                   11165:          results/060.processed, results/061.processed,
                   11166:          results/062.processed, results/063.processed,
                   11167:          results/064.processed, results/065.processed,
                   11168:          results/066.processed, results/067.processed,
                   11169:          results/068.processed, results/069.processed,
                   11170:          results/070.processed, results/071.processed,
                   11171:          results/072.processed, results/073.processed,
                   11172:          results/074.processed, results/075.processed,
                   11173:          results/076.processed, results/077.processed,
                   11174:          results/078.processed, results/079.processed,
                   11175:          results/080.processed, results/081.processed,
                   11176:          results/082.processed, results/083.processed,
                   11177:          results/084.processed, results/085.processed,
                   11178:          results/086.processed, results/087.processed,
                   11179:          results/088.processed, results/089.processed,
                   11180:          results/090.processed, results/091.processed,
                   11181:          results/092.processed, results/093.processed,
                   11182:          results/094.processed, results/095.processed,
                   11183:          results/096.processed, results/097.processed,
                   11184:          results/099.processed, results/101.processed,
                   11185:          results/102.processed, results/104.processed,
                   11186:          results/105.processed, results/106.processed,
                   11187:          results/107.processed, results/108.processed,
                   11188:          results/109.processed, results/110.processed,
                   11189:          results/111.processed, results/112.processed,
                   11190:          results/113.processed, results/114.processed,
                   11191:          results/115.processed, results/116.processed,
                   11192:          results/117.processed, results/118.processed,
                   11193:          results/119.processed, results/120.processed,
                   11194:          results/121.processed, results/122.processed,
                   11195:          results/123.processed, results/124.processed,
                   11196:          results/125.processed, results/126.processed,
                   11197:          results/127.processed, results/128.processed,
                   11198:          results/129.processed, results/130.processed,
                   11199:          results/131.processed, results/132.processed,
                   11200:          results/133.processed, results/134.processed,
                   11201:          results/135.processed, results/136.processed,
                   11202:          results/137.processed, results/138.processed,
                   11203:          results/139.processed, results/140.processed,
                   11204:          results/141.processed: . refreshed old tests, made them work
                   11205:          without auto.p (in utf8) . things noted: . gif got encoded
                   11206:          differently . exif 0000:00:00 decoded now into 0000:00:00 (were
                   11207:          some strange year)
                   11208: 
                   11209:        * INSTALL: . revived linux libgc fix
                   11210: 
                   11211:        * INSTALL, configure.in, src/lib/Makefile.am: . sweetest part [no
                   11212:          glib/gdome in INSTALL and patches]
                   11213: 
                   11214:        * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   11215:          include/pa_charset.h, include/pa_config_includes.h,
                   11216:          include/pa_globals.h, include/pa_memory.h, include/pa_request.h,
                   11217:          include/pa_xml_exception.h, lib/cord/Makefile.am,
                   11218:          lib/cord/cord.vcproj, lib/cord/cordbscs.c, lib/cord/cordprnt.c,
                   11219:          lib/cord/cordxtra.c, main/compile.tab.C, main/pa_charset.C,
                   11220:          main/pa_globals.C, main/pa_memory.C, main/pa_request.C,
                   11221:          main/pa_stylesheet_connection.C, main/pa_xml_exception.C,
                   11222:          types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
                   11223:          types/pa_vxnode.h: . started killing gdome
                   11224: 
                   11225: 2005-12-13  paf
                   11226: 
                   11227:        * src/main/: pa_request.C: merged from HEAD ! when code in
                   11228:          @unhandled_exception thrown another exception, print correct
                   11229:          origin (earlier code in catch of exception inside of
                   11230:          @unhandled_exception grabbed parent_frame(original_exception)
                   11231:          origin and printed it, instead of true origin)
                   11232: 
                   11233:        * src/main/pa_request.C: ! when code in @unhandled_exception thrown
                   11234:          another exception, print correct origin (earlier code in catch of
                   11235:          exception inside of @unhandled_exception grabbed
                   11236:          parent_frame(original_exception) origin and printed it, instead
                   11237:          of true origin)
                   11238: 
                   11239: 2005-12-09  paf
                   11240: 
                   11241:        * INSTALL: . updated INSTALL doc to work around linux stack base
                   11242:          detection problem, due to change in gc6.4 code
                   11243: 
                   11244:        * src/main/: pa_string.C: merged from 3.1.5 ! regex tainting were
                   11245:          ignored in ^string.matched :(
                   11246: 
                   11247:        * src/main/pa_string.C: ! regex tainting were ignored in
                   11248:          ^string.matched :(
                   11249: 
                   11250:        * ChangeLog, INSTALL, configure, configure.in, src/classes/date.C,
                   11251:          src/include/pa_config_fixed.h, src/include/pa_version.h,
                   11252:          src/main/compile.y, src/main/compile_tools.h,
                   11253:          src/main/pa_charset.C, src/main/pa_common.C,
                   11254:          src/main/pa_globals.C, src/main/pa_string.C,
                   11255:          src/targets/cgi/getopt.c, src/targets/isapi/parser3isapi.C,
                   11256:          src/types/pa_vmail.C: . merged latest fixes from 3.2.0
                   11257: 
                   11258: 2005-12-08  paf
                   11259: 
                   11260:        * src/types/pa_vmail.C: merged from 3.2.0 ! bcc line longer then
                   11261:          500 chars now handled OK [were wrapped on 500th char according to
                   11262:          rfc, but sendmail failed to unwrap it properly]
                   11263: 
                   11264:        * src/types/pa_vmail.C: ! bcc line longer then 500 chars now
                   11265:          handled OK [were wrapped on 500th char according to rfc, but
                   11266:          sendmail failed to unwrap it properly]
                   11267: 
                   11268:        * src/targets/isapi/parser3isapi.C: . less warnings
                   11269: 
                   11270:        * src/targets/isapi/parser3isapi.C: . undone some strange change
                   11271:          since 3.1.5
                   11272: 
                   11273:        * src/targets/isapi/parser3isapi.C: . merged from 3.1.5 release
                   11274:          link fixes
                   11275: 
                   11276:        * src/: classes/date.C, include/pa_config_fixed.h,
                   11277:          main/compile.tab.C, main/compile.y, main/compile_tools.h,
                   11278:          main/pa_charset.C, main/pa_common.C, main/pa_globals.C,
                   11279:          main/pa_string.C, targets/cgi/getopt.c: . less warnings
                   11280: 
                   11281:        * src/include/pa_config_fixed.h: . removed outdated string origins
                   11282:          [in current storage scheme there's no place for them. someday we
                   11283:          can add third CORD to store origins and special version of parser
                   11284:          which stores origins there [separate binary]]
                   11285: 
                   11286: 2005-12-07  paf
                   11287: 
                   11288:        * src/targets/isapi/parser3isapi.C: . now links in release mode
                   11289: 
                   11290:        * src/include/pa_version.h: makefiles
                   11291: 
                   11292:        * src/include/pa_version.h: . not beta
                   11293: 
                   11294:        * configure, configure.in, src/include/pa_version.h: not beta
                   11295: 
                   11296: 2005-12-06  paf
                   11297: 
                   11298:        * src/types/: pa_wcontext.C, pa_wcontext.h: ! after long discussion
                   11299:          [some details here http://i2/tasks/edit/?id=4869912143891354460]
                   11300:          decided to undo the change ^call[$void] passes void. now it will
                   11301:          pass empty string again.
                   11302: 
                   11303:        * src/main/: compile.tab.C, compile.y: . version readded
                   11304: 
                   11305:        * src/classes/op.C: . in this version there is no ^switch[$nothing]
                   11306:          = ^switch[void] problem
                   11307: 
                   11308: 2005-12-01  paf
                   11309: 
                   11310:        * src/classes/op.C: mreged from HEAD . bugfix ^switch[$void_value]
                   11311:          caused ^case[string] to be coerced to double since searching
                   11312:          value were not string (it was vvoid)
                   11313: 
                   11314:        * src/classes/op.C: . bugfix ^switch[$void_value] caused
                   11315:          ^case[string] to be coerced to double since searching value were
                   11316:          not string (it was vvoid)
                   11317: 
                   11318:        * INSTALL: . compiled with       libxml2 = 2.6.22       libxslt =
                   11319:          1.1.15       glib = 1.2.10       gdome2 = 0.8.1
                   11320: 
                   11321: 2005-11-30  paf
                   11322: 
                   11323:        * src/types/pa_vdate.h: merged from HEAD: ! bugfix: to drop TZ on
                   11324:          win32 must putenv("TZ="), on unix works only putenv("TZ")
                   11325: 
                   11326:        * src/types/pa_vdate.h: ! bugfix: to drop TZ on win32 must
                   11327:          putenv("TZ="), on unix works only putenv("TZ")
                   11328: 
                   11329:        * INSTALL: . xml libs versions updated
                   11330: 
                   11331:        * src/main/pa_globals.C: //20051130 trying to remove this, author
                   11332:          claims that fixed a lot there // 20040920 for now both
                   11333:          workarounds needed. wait for new libxml/xsl versions
                   11334: 
                   11335: 2005-11-28  paf
                   11336: 
                   11337:        * src/classes/table.C: merged from HEAD: ! nameless table has
                   11338:          columns==0
                   11339: 
                   11340:        * src/classes/table.C: ! nameless table has columns==0
                   11341: 
                   11342:        * src/main/pa_http.C: merged from HEAD: ! status line check made
                   11343:          earlier [was totally wrong]
                   11344: 
                   11345:        * src/main/pa_http.C: ! status line check made earlier [was totally
                   11346:          wrong]
                   11347: 
                   11348: 2005-11-25  paf
                   11349: 
                   11350:        * src/include/pa_array.h: -this reduces speed(table::load) strange.
                   11351:          undoing for now...
                   11352: 
                   11353:        * src/include/pa_version.h: -this reduces speed(table::load),
                   11354:          strange. undoing
                   11355: 
                   11356:        * src/classes/op.C: merged from HEAD + ^while(){}[SEPARATOR]
                   11357: 
                   11358:        * src/classes/op.C: + ^while(){}[SEPARATOR]
                   11359: 
                   11360:        * src/include/pa_array.h: + optimistics added: all arrays (table
                   11361:          rows) now grow size*=2, like in .NET ArrayList.EnsureCapacity,
                   11362:          this speeds things up and saves memory a LOT! (not noticed
                   11363:          negative effect on syntetic tests, future will tell...)
                   11364: 
                   11365:        * src/include/pa_memory.h: . removed GC_DEBUG for debug version, it
                   11366:          changed gc_malloc implementation, which obscured profiling
                   11367: 
                   11368:        * src/classes/table.C: merged from HEAD: + optimized
                   11369:          table::load/sql, now row ArrayString-s allocated with
                   11370:          columns.count() elements and don't always grow from
                   11371:          count=3[realloc,realloc]
                   11372: 
                   11373:        * src/classes/table.C: + optimized table::load/sql, now row
                   11374:          ArrayString-s allocated with columns.count() elements and don't
                   11375:          always grow from count=3[realloc,realloc]
                   11376: 
                   11377:        * src/classes/table.C: merged from HEAD: . ^table.save unused
                   11378:          buffer after save
                   11379: 
                   11380:        * src/classes/table.C: . ^table.save unused buffer after save
                   11381: 
                   11382: 2005-11-24  paf
                   11383: 
                   11384:        * configure.in: . merged glib2-config patch
                   11385: 
                   11386:        * configure.in: + trying to find glib2-config
                   11387: 
                   11388:        * src/: classes/file.C, include/pa_common.h, main/execute.C,
                   11389:          main/pa_common.C, main/pa_request.C: merged from HEAD: ! changed
                   11390:          file/dir_readable to simple file/dir_exist, this would help in
                   11391:          situations "class not found because .p file has bad rights" << in
                   11392:          that case error would be explicit "access denied to 'this' file"
                   11393: 
1.116     moko     11394:        * aclocal.m4, configure, src/include/pa_config_auto.h.in: makefiles
1.95      moko     11395: 
                   11396:        * src/: classes/file.C, include/pa_common.h, main/execute.C,
                   11397:          main/pa_common.C, main/pa_request.C: ! changed file/dir_readable
                   11398:          to simple file/dir_exist, this would help in situations "class
                   11399:          not found because .p file has bad rights" << in that case error
                   11400:          would be explicit "access denied to 'this' file"
                   11401: 
                   11402:        * src/: classes/file.C, include/Makefile.am, include/pa_common.h,
                   11403:          include/pa_http.h, main/Makefile.am, main/main.vcproj,
                   11404:          main/pa_common.C, main/pa_http.C: merged from HEAD: +!
                   11405:          ^file::exec/cgi[script;$.charset[changed]
                   11406:          $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
                   11407:          encoded in $.charset charset
                   11408: 
                   11409:        * src/classes/file.C: +! ^file::exec/cgi[script;$.charset[changed]
                   11410:          $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
                   11411:          encoded in $.charset charset
                   11412: 
                   11413:        * src/: include/Makefile.am, include/pa_common.h,
                   11414:          include/pa_http.h, main/Makefile.am, main/main.vcproj,
                   11415:          main/pa_common.C, main/pa_http.C: . extracted http:// into
                   11416:          separate file [preparation for
                   11417:          ^file::cgi[script;$.form[$.field1[]
                   11418: 
                   11419: 2005-11-22  paf
                   11420: 
                   11421:        * src/: include/pa_version.h, main/compile.tab.C: makefiles
                   11422: 
                   11423:        * acinclude.m4, configure.in: . merged underquting fixes
                   11424: 
1.116     moko     11425:        * src/include/pa_config_auto.h.in: configure+makes
1.95      moko     11426: 
                   11427:        * src/classes/op.C: . overmerged a little
                   11428: 
                   11429:        * src/main/compile.tab.C: Makefile
                   11430: 
                   11431:        * src/main/: pa_common.C: . less gcc warnings
                   11432: 
                   11433:        * src/classes/op.C: merged from HEAD: + $exception.handled[cache]
                   11434:          now reports original exception if we have no old cache
                   11435: 
                   11436:        * src/classes/op.C: + $exception.handled[cache] now reports
                   11437:          original exception if we have no old cache
                   11438: 
                   11439:        * src/: classes/op.C, include/pa_string.h, main/untaint.C: merged
                   11440:          from HEAD: + ^taint/untaint[regex] << escapes these:
                   11441:          \^$.[]|()?*+{}
                   11442: 
                   11443:        * src/: classes/op.C, include/pa_string.h, main/untaint.C: +
                   11444:          ^taint/untaint[regex] << escapes these: \^$.[]|()?*+{}
                   11445: 
                   11446:        * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
                   11447:          getenv-ed variable, which does not work both on win32&unix.
                   11448:          copied old TZ value now
                   11449: 
                   11450:        * src/types/pa_vdate.h: merged from 3.1.5: ! date TZ save/restore
                   11451:          stored pointer to getenv-ed variable, which does not work both on
                   11452:          win32&unix. copied old TZ value now
                   11453: 
                   11454:        * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
                   11455:          getenv-ed variable, which does not work both on win32&unix.
                   11456:          copied old TZ value now
                   11457: 
                   11458:        * src/types/pa_vresponse.C: merged from HEAD: + $response:headers
                   11459:          access to internal hash
                   11460: 
                   11461:        * src/types/pa_vresponse.C: + $response:headers access to internal
                   11462:          hash
                   11463: 
                   11464:        * src/targets/isapi/parser3isapi.C: merged from HEAD: +
                   11465:          GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
                   11466:          isapi] this reduces number of "GC Warning: Repeated allocation of
                   11467:          very large block" messages to only important onces
                   11468: 
                   11469:        * src/targets/isapi/parser3isapi.C: +
                   11470:          GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
                   11471:          isapi] this reduces number of "GC Warning: Repeated allocation of
                   11472:          very large block" messages to only important onces
                   11473: 
                   11474:        * src/classes/string.C: merged from HEAD: + removed limitation on
                   11475:          ^string/int/double:sql{}[$.default[({param style})] ]
                   11476: 
                   11477:        * src/classes/string.C: + removed limitation on
                   11478:          ^string/int/double:sql{}[$.default[({param style})] ]
                   11479: 
                   11480:        * src/main/pa_common.C: merged from HEAD: + removed "use either uri
                   11481:          with ?params or $.form option" limitation
                   11482: 
                   11483:        * src/main/pa_common.C: + removed "use either uri with ?params or
                   11484:          $.form option" limitation
                   11485: 
                   11486:        * src/: classes/file.C, classes/string.C, include/pa_common.h,
                   11487:          main/pa_common.C: merged from HEAD: + ^file.base64[] encode +
                   11488:          ^file::base64[encoded] decode
                   11489: 
                   11490:        * src/: classes/file.C, classes/string.C, include/pa_common.h,
                   11491:          main/pa_common.C: + ^file.base64[] encode +
                   11492:          ^file::base64[encoded] decode
                   11493: 
                   11494:        * src/classes/: file.C, string.C: + ^string.base64[] encode +
                   11495:          ^string:base64[encoded] decode
                   11496: 
                   11497:        * src/: classes/string.C, include/pa_common.h, main/pa_common.C: +
                   11498:          ^string:base64[in] encode + ^string.base64[] decode
                   11499: 
                   11500: 2005-11-21  paf
                   11501: 
                   11502:        * src/classes/file.C: + merged from HEAD:
                   11503:          ^file::create[text;file.xml;^untaint[xml]{data}]
                   11504: 
                   11505:        * src/classes/file.C: +
                   11506:          ^file::create[text;file.xml;^untaint[xml]{data}]
                   11507: 
                   11508:        * src/main/pa_request.C: ! merged: $response:body[file] now
                   11509:          differes from :download, it does not return content-disposition
                   11510:          at all now [previusely it returned valueless content-disposition]
                   11511: 
                   11512:        * src/main/pa_request.C: ! $response:body[file] now differes from
                   11513:          :download, it does not return content-disposition at all now
                   11514:          [previusely it returned valueless content-disposition]
                   11515: 
                   11516:        * src/main/: compile.tab.C, compile.y: ! overoptimized void
                   11517:          literals, reverted to just vvod, recreating empty array with each
                   11518:          void_value token. that's absolutely needed, since that array
                   11519:          grows
                   11520: 
                   11521:        * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
                   11522:          types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
                   11523:          types/pa_vmethod_frame.h: + merged: expression literals:
                   11524:          true/false. ^format[$.indent(true)]
                   11525: 
                   11526:        * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
                   11527:          types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
                   11528:          types/pa_vmethod_frame.h: + expression literals: true/false.
                   11529:          ^format[$.indent(true)]
                   11530: 
                   11531:        * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
                   11532:          merged: $env:PARSER_VERSION reports "3.1.5beta (compiled on
                   11533:          i386-pc-win32)"
                   11534: 
                   11535:        * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
                   11536:          $env:PARSER_VERSION reports "3.1.5beta (compiled on
                   11537:          i386-pc-win32)"
                   11538: 
                   11539: 2005-11-18  paf
                   11540: 
                   11541:        * src/classes/: double.C, int.C: ! ^int/double:sql{select
                   11542:          null}[$.default(123)] will now return default value
                   11543: 
                   11544:        * src/classes/op.C: + merged ^cache[] << returns current cache
                   11545:          expiration time
                   11546: 
                   11547:        * src/classes/op.C: + ^cache[] << returns current cache expiration
                   11548:          time
                   11549: 
                   11550:        * src/classes/table.C: ! merged ^table::create[not'nameless';
                   11551:          failed << Exception.problem_source pointed to local var!
                   11552: 
                   11553:        * src/classes/table.C: ! ^table::create[not'nameless'; failed <<
                   11554:          Exception.problem_source pointed to local var!
                   11555: 
                   11556:        * src/main/pa_common.C: ! merged: file::load[binary;fileOfZeroSize]
                   11557:          now loads VFile.ptr!=0, so such files can be saved now
                   11558: 
                   11559:        * src/main/pa_common.C: ! file::load[binary;fileOfZeroSize] now
                   11560:          loads VFile.ptr!=0, so such files can be saved now
                   11561: 
                   11562:        * src/include/pa_dir.h: ! merged: file:list now sees .xxx files,
                   11563:          only . and .. now removed from list [were removed all .*]
                   11564: 
                   11565:        * src/include/pa_dir.h: ! file:list now sees .xxx files, only . and
                   11566:          .. now removed from list [were removed all .*]
                   11567: 
                   11568:        * src/lib/sdbm/apr_file_io.C: ! merged from 3.1.5: hashfile file
                   11569:          open error now checked, were not :( [stole that piece from apache
                   11570:          1.3 sources]
                   11571: 
                   11572:        * src/lib/sdbm/apr_file_io.C: ! hashfile file open error now
                   11573:          checked, were not :( [stole that piece from apache 1.3 sources]
                   11574: 
                   11575:        * src/main/pa_request.C: ! merged from 3.1.5: ensured proper
                   11576:          untainting of @main result if returned by $result or
                   11577:          $response:body
                   11578: 
                   11579:        * src/main/pa_request.C: ! ensured proper untainting of @main
                   11580:          result if returned by $result or $response:body
                   11581: 
                   11582:        * src/main/pa_common.C: ! merged from 3.1.5: fixed file load memory
                   11583:          issue: now tries to guess content-length and allocates one big
                   11584:          piece if possible [regretfully gc_realloc works as malloc+free,
                   11585:          leaving lots of holes behind]
                   11586: 
                   11587:        * src/: classes/memory.C, main/compile.tab.C, main/pa_common.C: !
                   11588:          fixed file load memory issue: now tries to guess content-length
                   11589:          and allocates one big piece if possible [regretfully gc_realloc
                   11590:          works as malloc+free, leaving lots of holes behind]
                   11591: 
                   11592: 2005-11-16  paf
                   11593: 
                   11594:        * src/: include/pa_common.h, classes/file.C, classes/table.C,
                   11595:          main/compile.tab.C, main/pa_common.C: merged to HEAD: !
                   11596:          table::save with enclosers now doubles them: "->"" !
                   11597:          table::save/load do not remove elements from options hash
                   11598: 
                   11599:        * src/main/compile.y: ! merged to HEAD: ^if(-f "...") now works
                   11600:          [were overoptimized ^if(double_literal), compiler confused
                   11601:          OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
                   11602: 
                   11603:        * src/main/: compile.tab.C, compile.y: ! ^if(-f "...") now works
                   11604:          [were overoptimized ^if(double_literal), compiler confused
                   11605:          OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
                   11606: 
                   11607:        * src/: classes/file.C, classes/table.C, include/pa_common.h,
                   11608:          main/pa_common.C: ! table::save with enclosers now doubles them:
                   11609:          "->"" ! table::save/load do not remove elements from options hash
                   11610: 
                   11611: 2005-11-03  paf
                   11612: 
1.116     moko     11613:        * src/main/: Makefile.am, compile.tab.C: removed $< from .y
                   11614:          compilation, not all makefiles liked that
1.95      moko     11615: 
                   11616: 2005-08-30  paf
                   11617: 
                   11618:        * src/classes/op.C: merge . speedup check of [DEFAULT]
                   11619: 
                   11620:        * src/classes/op.C: . speedup check of [DEFAULT]
                   11621: 
                   11622: 2005-08-26  paf
                   11623: 
                   11624:        * src/: classes/date.C, types/pa_vdate.h: merged + date.week
                   11625: 
                   11626:        * src/: classes/date.C, types/pa_vdate.h: + date.week
                   11627: 
                   11628:        * src/classes/table.C: merged ! ^table::create[bad]{xxx} now
                   11629:          complains about bad!=nameless
                   11630: 
                   11631:        * src/classes/table.C: ! ^table::create[bad]{xxx} now complains
                   11632:          about bad!=nameless
                   11633: 
                   11634:        * src/classes/: hash.C, string.C, table.C, void.C: merged !
                   11635:          optional options were allowed to be empty. were checked
                   11636:          if(is_string), changed to !defined||is_string to allow void
                   11637: 
                   11638:        * src/: targets/isapi/parser3isapi.C, classes/hash.C,
                   11639:          classes/string.C, classes/table.C, classes/void.C: ! optional
                   11640:          options were allowed to be empty. were checked if(is_string),
                   11641:          changed to !defined||is_string to allow void
                   11642: 
                   11643:        * src/types/pa_vmethod_frame.h: merged ! many classes/*  used
                   11644:          as_junction where they needed as_int/double, so failed with
                   11645:          recent "(const) now no junction" optimization
                   11646: 
                   11647:        * src/classes/: double.C, int.C, math.C, op.C, string.C, table.C:
                   11648:          merged ! many classes/*  used as_junction where they needed
                   11649:          as_int/double, so failed with recent "(const) now no junction"
                   11650:          optimization
                   11651: 
                   11652:        * src/: classes/double.C, classes/int.C, classes/math.C,
                   11653:          classes/op.C, classes/string.C, classes/table.C,
                   11654:          main/compile.tab.C, types/pa_vmethod_frame.h: ! many classes/*
                   11655:          used as_junction where they needed as_int/double, so failed with
                   11656:          recent "(const) now no junction" optimization
                   11657: 
                   11658: 2005-08-24  paf
                   11659: 
                   11660:        * src/targets/isapi/: parser3isapi.C, parser3isapi.vcproj: ! on
                   11661:          windows 2003 DllMain receivese \\?\ prefix to fullspec of .dll,
                   11662:          stripped it
                   11663: 
                   11664: 2005-08-09  paf
                   11665: 
                   11666:        * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
                   11667:          not cleared
                   11668: 
                   11669:        * src/: classes/classes.C, classes/classes.h, classes/date.C,
                   11670:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   11671:          classes/hashfile.C, classes/image.C, classes/int.C,
                   11672:          classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
                   11673:          classes/response.C, classes/string.C, classes/table.C,
                   11674:          classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   11675:          include/pa_array.h, include/pa_cache_managers.h,
                   11676:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   11677:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   11678:          include/pa_dictionary.h, include/pa_dir.h,
                   11679:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   11680:          include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
                   11681:          include/pa_operation.h, include/pa_os.h, include/pa_request.h,
                   11682:          include/pa_request_charsets.h, include/pa_request_info.h,
                   11683:          include/pa_sapi.h, include/pa_socks.h,
                   11684:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   11685:          include/pa_stack.h, include/pa_string.h,
                   11686:          include/pa_stylesheet_connection.h,
                   11687:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   11688:          include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
                   11689:          include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
                   11690:          lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
                   11691:          lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
                   11692:          lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
                   11693:          main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
                   11694:          main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
                   11695:          main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
                   11696:          main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
                   11697:          main/pa_os.C, main/pa_request.C, main/pa_socks.C,
                   11698:          main/pa_sql_driver_manager.C, main/pa_string.C,
                   11699:          main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
                   11700:          main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
                   11701:          main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
                   11702:          targets/cgi/pa_threads.C, targets/cgi/parser3.C,
                   11703:          targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
                   11704:          types/pa_junction.h, types/pa_method.h, types/pa_property.h,
                   11705:          types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
                   11706:          types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
                   11707:          types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
                   11708:          types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
                   11709:          types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
                   11710:          types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
                   11711:          types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
                   11712:          types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
                   11713:          types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
                   11714:          types/pa_vmemory.h, types/pa_vmethod_frame.C,
                   11715:          types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
                   11716:          types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
                   11717:          types/pa_vresponse.C, types/pa_vresponse.h,
                   11718:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   11719:          types/pa_vstateless_object.h, types/pa_vstatus.C,
                   11720:          types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
                   11721:          types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
                   11722:          types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   11723:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
                   11724:          types/pa_wcontext.h, types/pa_wwrapper.h: 2005
                   11725: 
                   11726:        * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
                   11727:          pa_vmethod_frame.h: merged from HEAD ! simplified (double)
                   11728:          speedup consequent checks in vmethod_frame
                   11729: 
                   11730:        * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
                   11731:          not cleared
                   11732: 
                   11733:        * src/: classes/file.C, main/pa_exec.C: merged +file::cgi/exec now
                   11734:          params: 50 max (were 10)
                   11735: 
                   11736:        * src/: classes/file.C, main/pa_exec.C: + file::cgi/exec now
                   11737:          params: 50 max (were 10)
                   11738: 
                   11739:        * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
                   11740:          pa_vmethod_frame.h, pa_vvoid.C, pa_vvoid.h, pa_wcontext.C,
                   11741:          pa_wcontext.h: + ^call[$void] param inside now is void (were:
                   11742:          empty string) ! simplified (double) speedup consequent checks in
                   11743:          vmethod_frame
                   11744: 
                   11745:        * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: merged +
                   11746:          optimized constants in expressions vstring->vdouble + optimized
                   11747:          ^call(vdouble), no junction creation, no calls later
                   11748: 
                   11749: 2005-08-08  paf
                   11750: 
                   11751:        * src/main/: compile.tab.C, compile.y, compile_tools.C,
                   11752:          compile_tools.h: merged + optimized constants in expressions
                   11753:          vstring->vdouble + optimized ^call(vdouble), no junction
                   11754:          creation, no calls later
                   11755: 
                   11756:        * src/types/pa_vdouble.h: merged . double values without fractional
                   11757:          part now default printed as %.0f instead of %g
                   11758: 
                   11759:        * src/types/pa_vdouble.h: . double values without fractional part
                   11760:          now default printed as %.0f instead of %g
                   11761: 
                   11762:        * src/classes/hashfile.C: . merged ! second hashfile::open would
                   11763:          cause an exception
                   11764: 
                   11765:        * src/classes/hashfile.C: ! second hashfile::open would cause an
                   11766:          exception
                   11767: 
                   11768:        * src/: classes/classes.h, main/execute.C, types/pa_junction.h,
                   11769:          types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
                   11770:          types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
                   11771:          types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
                   11772:          types/pa_vimage.C, types/pa_vimage.h, types/pa_vjunction.h,
                   11773:          types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
                   11774:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
                   11775:          types/pa_vresponse.h, types/pa_vstateless_class.C,
                   11776:          types/pa_vstateless_object.h, types/pa_vvoid.h,
                   11777:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
                   11778:          merged VJunction(new Junction) optimization from 3.1.4
                   11779: 
                   11780:        * src/: main/execute.C, types/pa_junction.h, types/pa_vjunction.h,
                   11781:          types/pa_vstateless_class.C: + optimized new VJunction(new
                   11782:          Junction(params)) to new VJunction(params), thousands of mallocs
                   11783:          removed
                   11784: 
                   11785: 2005-08-05  paf
                   11786: 
                   11787:        * src/: include/pa_memory.h, main/compile.tab.C, main/compile.y,
                   11788:          types/pa_vdouble.h, types/pa_vmethod_frame.C,
                   11789:          types/pa_vmethod_frame.h: + optimized ^call(vdouble), no junction
                   11790:          creation, no calls later
                   11791: 
                   11792:        * src/: classes/classes.C, classes/classes.h, classes/date.C,
                   11793:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   11794:          classes/hashfile.C, classes/image.C, classes/int.C,
                   11795:          classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
                   11796:          classes/response.C, classes/string.C, classes/table.C,
                   11797:          classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   11798:          include/pa_array.h, include/pa_cache_managers.h,
                   11799:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   11800:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   11801:          include/pa_dictionary.h, include/pa_dir.h,
                   11802:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   11803:          include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
                   11804:          include/pa_operation.h, include/pa_os.h, include/pa_request.h,
                   11805:          include/pa_request_charsets.h, include/pa_request_info.h,
                   11806:          include/pa_sapi.h, include/pa_socks.h,
                   11807:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   11808:          include/pa_stack.h, include/pa_string.h,
                   11809:          include/pa_stylesheet_connection.h,
                   11810:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   11811:          include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
                   11812:          include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
                   11813:          lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
                   11814:          lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
                   11815:          lib/smtp/smtp.h, main/compile.C, main/compile.y,
                   11816:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   11817:          main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
                   11818:          main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
                   11819:          main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
                   11820:          main/pa_memory.C, main/pa_os.C, main/pa_request.C,
                   11821:          main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
                   11822:          main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
                   11823:          main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
                   11824:          main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
                   11825:          targets/cgi/pa_threads.C, targets/cgi/parser3.C,
                   11826:          targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
                   11827:          types/pa_junction.h, types/pa_method.h, types/pa_value.C,
                   11828:          types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
                   11829:          types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
                   11830:          types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
                   11831:          types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
                   11832:          types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
                   11833:          types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.h,
                   11834:          types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
                   11835:          types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
                   11836:          types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemory.h,
                   11837:          types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
                   11838:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
                   11839:          types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
                   11840:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   11841:          types/pa_vstateless_object.h, types/pa_vstatus.C,
                   11842:          types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
                   11843:          types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
                   11844:          types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   11845:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
                   11846:          types/pa_wcontext.h, types/pa_wwrapper.h: . 2005 ;)
                   11847: 
                   11848:        * src/: lib/cord/cord.vcproj, lib/gd/gd.vcproj,
                   11849:          lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/pcre.vcproj,
                   11850:          lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
                   11851:          lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/compile.tab.C,
                   11852:          main/compile.y, main/compile_tools.C, main/compile_tools.h,
                   11853:          targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj: +
                   11854:          optimized constants in expressions vstring->vdouble
                   11855: 
                   11856: 2005-07-29  paf
                   11857: 
                   11858:        * src/types/pa_vclass.C: . shaped up error messages a bit
                   11859: 
                   11860:        * src/types/pa_vclass.C: + property getter can now be overridden
                   11861: 
                   11862:        * src/: main/execute.C, types/pa_vclass.C, types/pa_vobject.C: !
                   11863:          bug fix: static parent fields were not replaced in case
                   11864:          $derived:field[put] + property setter can now be overridden
                   11865: 
                   11866: 2005-07-28  paf
                   11867: 
                   11868:        * configure, configure.in, src/classes/classes.h,
                   11869:          src/classes/date.C, src/classes/file.C, src/classes/hash.C,
                   11870:          src/classes/hashfile.C, src/classes/image.C, src/classes/op.C,
                   11871:          src/classes/table.C, src/classes/xdoc.C, src/classes/xnode.C,
                   11872:          src/classes/xnode.h, src/include/pa_hash.h,
                   11873:          src/include/pa_version.h, src/main/execute.C,
1.116     moko     11874:          src/types/Makefile.am, src/types/pa_method.h,
                   11875:          src/types/pa_value.h, src/types/pa_vclass.C,
                   11876:          src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
                   11877:          src/types/pa_vconsole.h, src/types/pa_vcookie.C,
                   11878:          src/types/pa_vcookie.h, src/types/pa_vhash.h,
                   11879:          src/types/pa_vhashfile.h, src/types/pa_vimage.C,
                   11880:          src/types/pa_vimage.h, src/types/pa_vmethod_frame.h,
                   11881:          src/types/pa_vobject.C, src/types/pa_vobject.h,
                   11882:          src/types/pa_vproperty.h, src/types/pa_vrequest.C,
                   11883:          src/types/pa_vrequest.h, src/types/pa_vresponse.C,
                   11884:          src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
                   11885:          src/types/pa_vstateless_class.h,
1.95      moko     11886:          src/types/pa_vstateless_object.h, src/types/pa_vvoid.h,
                   11887:          src/types/pa_vxnode.C, src/types/pa_vxnode.h,
                   11888:          src/types/pa_wwrapper.h: + 3.2.0 beta: merged from
                   11889:          dynamic_fields_join
                   11890: 
                   11891:        * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
                   11892:          classes/xnode.C, include/pa_hash.h, main/execute.C,
                   11893:          types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
                   11894:          types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
                   11895:          types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
                   11896:          types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
                   11897:          types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
                   11898:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
                   11899:          types/pa_vresponse.h, types/pa_vstateless_object.h,
                   11900:          types/pa_vvoid.h, types/pa_vxnode.C, types/pa_vxnode.h,
                   11901:          types/pa_wwrapper.h: ! restored put_element('replace' param), and
                   11902:          restored its checks in vobject.put_element->static fields |
                   11903:          dynamic properties
                   11904: 
                   11905: 2005-07-27  paf
                   11906: 
                   11907:        * src/types/pa_vclass.C: ! changed to GET_ SET_ prefixes. for there
                   11908:          is some old code containing @set_name $name
                   11909: 
                   11910:        * src/types/pa_vobject.h: . fixed warning
                   11911: 
                   11912:        * configure, configure.in, src/include/pa_version.h,
1.116     moko     11913:          src/types/Makefile.am: 3.2.0beta started
1.95      moko     11914: 
                   11915:        * src/: classes/xnode.C, include/pa_hash.h,
                   11916:          types/pa_vstateless_class.C: ! new asserts were all false.
                   11917:          regretfully reverted them all to checks
                   11918: 
                   11919:        * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
                   11920:          classes/op.C, main/execute.C, types/pa_method.h,
                   11921:          types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
                   11922:          types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
                   11923:          types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
                   11924:          types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
                   11925:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
                   11926:          types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
                   11927:          types/pa_vstateless_object.h, types/pa_vvoid.h,
                   11928:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
                   11929:          joined_dynamic_fields: removed unused param from put_method
                   11930:          (returned to 3 params)
                   11931: 
                   11932:        * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vclass.h:
                   11933:          joined_dynamic_fields: dynamic get/set works with overriding
                   11934:          props [alpha2]
                   11935: 
                   11936:        * src/types/pa_vclass.C: joined_dynamic_fields: dynamic get/set
                   11937:          works [alfa]
                   11938: 
                   11939:        * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
                   11940:          classes/op.C, include/pa_hash.h, main/execute.C,
                   11941:          types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
                   11942:          types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
                   11943:          types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
                   11944:          types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
                   11945:          types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
                   11946:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
                   11947:          types/pa_vresponse.h, types/pa_vstateless_class.C,
                   11948:          types/pa_vstateless_object.h, types/pa_vvoid.h,
                   11949:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
                   11950:          joined_dynamic_fields: just compiled
                   11951: 
                   11952:        * src/: classes/date.C, classes/file.C, classes/hash.C,
                   11953:          classes/hashfile.C, classes/image.C, classes/table.C,
                   11954:          classes/xdoc.C, classes/xnode.h, main/execute.C,
                   11955:          types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
                   11956:          types/pa_vstateless_class.h: joined_dynamic_fields: started
                   11957: 
                   11958:        * src/types/pa_vobject.C: . object setters [only started, does not
                   11959:          work yet]
                   11960: 
                   11961:        * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vobject.C: .
                   11962:          object setters [only started, does not work yet]
                   11963: 
                   11964: 2005-07-26  paf
                   11965: 
                   11966:        * src/: include/pa_request.h, main/execute.C: . properties: set
                   11967:          works [alpha2]. for classes. todo: for objects
                   11968: 
                   11969:        * src/: classes/classes.h, include/pa_hash.h, main/execute.C,
                   11970:          types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
                   11971:          types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
                   11972:          types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
                   11973:          types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
                   11974:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
                   11975:          types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
                   11976:          types/pa_vstateless_object.h, types/pa_vvoid.h,
                   11977:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
                   11978:          properties: set works [alpha1]
                   11979: 
                   11980: 2005-07-25  paf
                   11981: 
                   11982:        * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h,
                   11983:          types/pa_vstateless_class.C, types/pa_vstateless_class.h: .
                   11984:          properties: started, get works [alpha1, other approach]
                   11985: 
                   11986:        * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h: .
                   11987:          properties: started, get works [alpha2]
                   11988: 
                   11989:        * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
                   11990:          pa_vstateless_class.h: . properties: started, get works [alpha]
                   11991: 
                   11992: 2005-07-15  paf
                   11993: 
                   11994:        * src/: classes/classes.h, classes/op.C, main/execute.C,
                   11995:          types/pa_junction.h, types/pa_property.h, types/pa_value.h,
                   11996:          types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
                   11997:          types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
                   11998:          types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
                   11999:          types/pa_vimage.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
                   12000:          types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
                   12001:          types/pa_vresponse.C, types/pa_vresponse.h,
                   12002:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   12003:          types/pa_vstateless_object.h, types/pa_vvoid.h,
                   12004:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.h,
                   12005:          types/pa_wwrapper.h, types/types.vcproj: + started property
                   12006:          [getters work but think of changing them too to precaching]
                   12007: 
                   12008: 2005-07-08  paf
                   12009: 
                   12010:        * src/main/pa_request.C: ! bugfix: $response:body[nonfile] caused
                   12011:          gpf
                   12012: 
                   12013: 2005-06-28  paf
                   12014: 
                   12015:        * src/: classes/file.C, main/untaint.C: ! string invariant violated
                   12016:          in passing empty strings to file::exec/cgi environment
                   12017: 
                   12018: 2005-06-06  paf
                   12019: 
                   12020:        * src/classes/: hash.C, string.C, table.C: ! bugfix ^string:sql
                   12021:          ^table:sql ^hash:sql now DO process $.bind option
                   12022: 
                   12023: 2005-05-24  paf
                   12024: 
                   12025:        * src/classes/file.C: ! bugfix ^file::load[mode;name;$.offset
                   12026:          $.limit] now work again [support was broken in 3.1.4]
                   12027: 
                   12028:        * src/: main/pa_string.C, classes/op.C: . steps toward removing
                   12029:          ALL_INTERIOR_POINTERS
                   12030: 
                   12031: 2005-05-12  paf
                   12032: 
                   12033:        * configure: 3.1.5beta
                   12034: 
                   12035:        * src/main/pa_common.C: ! bugfix -- recv()==0 is not an error
                   12036: 
                   12037:        * src/main/pa_common.C: ! bugfix ^file::load[mode;name;$.offset
                   12038:          $.limit] now work again [support was broken in 3.1.4]
                   12039: 
                   12040:        * src/lib/gd/gif.C: ! fixed image.fill, not it does not depend on
                   12041:          line-width  [was refusing to fill if line-width >1, thanks to
                   12042:          Seras <seras@pinxit.lt> for repro case
                   12043: 
                   12044: 2005-04-25  paf
                   12045: 
                   12046:        * src/types/pa_vdate.h: ! getenv("TZ")==0? TZ environment restored
                   12047:          correctly
                   12048: 
                   12049: 2005-04-19  paf
                   12050: 
                   12051:        * src/types/pa_vdate.h: bugfix: initial $date.TZ is 0, that results
                   12052:          in VString violating invariant!!
                   12053: 
                   12054:        * src/types/pa_vdate.h: bugfix: TZ now restored after roll if were
                   12055:          getenv("TZ")==null
                   12056: 
                   12057: 2005-04-08  paf
                   12058: 
                   12059:        * src/main/pa_charset.C: bugfix: UTF8->one-byte-per-char-encoding
                   12060:          bugfix: when there is no char in charset one byte produces 6
                   12061:          (&#255; <<max). increased buffer size!
                   12062: 
                   12063: 2005-03-23  paf
                   12064: 
                   12065:        * src/: types/pa_vdate.h, classes/date.C: ! bugfix:
                   12066:          ^date.sql-string now takes TZ into account
                   12067: 
                   12068: 2005-03-16  paf
                   12069: 
                   12070:        * INSTALL, src/include/pa_stack.h: . compiled on freebsd 5.3 with
                   12071:          gcc 3.4
                   12072: 
                   12073:        * src/types/pa_vhash.C: . warning about eof eol
                   12074: 
                   12075: 2005-02-17  paf
                   12076: 
                   12077:        * operators.txt, src/classes/op.C: + operator ^sleep(double
                   12078:          seconds)
                   12079: 
                   12080: 2005-02-02  paf
                   12081: 
                   12082:        * src/classes/xnode.C: beauty: removed needless includes
                   12083: 
                   12084: 2005-01-31  paf
                   12085: 
                   12086:        * src/types/pa_vmail.C: change: $.partX now always 1...  change:
                   12087:          $.partNoNumber now alias to $.part1
                   12088: 
                   12089:        * src/types/pa_vmail.C: change: incoming letter part contains
                   12090:          "content-disposition" header with any value? now considering that
                   12091:          part to be "file#" [for text/plain text/html were $.text#
                   12092:          $.html#]
                   12093: 
                   12094:        * INSTALL: updatet to latest working versions available
                   12095: 
                   12096: 2005-01-20  paf
                   12097: 
                   12098:        * configure.in, src/include/pa_version.h: version
                   12099: 
                   12100: 2005-01-19  paf
                   12101: 
1.116     moko     12102:        * src/: lib/gd/Makefile.am, lib/ltdl/Makefile.am,
                   12103:          targets/cgi/parser3.C, types/Makefile.am: forgotten makefiles.
                   12104:          couple warnings in parser3.C
1.95      moko     12105: 
                   12106: 2004-12-23  paf
                   12107: 
                   12108:        * src/main/pa_sql_driver_manager.C: sql connect string, rsplit @
                   12109: 
                   12110:        * src/main/pa_exec.C: win32: bugfix: file::cgi/exec now set current
                   12111:          dir to directory of script (when shbang used), not to directory
                   12112:          of its interpreter
                   12113: 
                   12114:        * src/include/pa_version.h: compiled on win32...
                   12115: 
                   12116:        * src/targets/cgi/parser3.C: now, when version (compiled on HOST),
                   12117:          we need more hspace
                   12118: 
                   12119:        * configure, configure.in, src/include/pa_version.h: configured
                   12120:          host to pa_version. will be displayed everywhere
                   12121: 
                   12122:        * src/main/pa_request.C: new: @unhandled_exception can prevent
                   12123:          exception from being logged by setting $exception.handled(1)
                   12124: 
                   12125:        * operators.txt, src/classes/file.C: change:
                   12126:          ^file::sql{query}[[options]] options: $.name[file name]
                   12127:          $.content-type[application/what]
                   12128: 
                   12129:        * src/: include/pa_common.h, main/pa_common.C,
                   12130:          types/pa_vhashfile.C: beauty: hashfile::open now creates dir for
                   12131:          new file
                   12132: 
                   12133:        * src/: classes/table.C, types/pa_vhash.C, types/pa_vhash.h:
                   12134:          bugfix: table->hash now regards _default
                   12135: 
                   12136:        * src/types/pa_vmethod_frame.h: bugfix: when method junction was
                   12137:          created by accessing $name_of_method it acquired bad self=closest
                   12138:          methodframe; instead of proper self (current class)
                   12139: 
                   12140:        * src/types/pa_vhashfile.C: bugfix: reading empty string from
                   12141:          hashfile produced bad cord
                   12142: 
                   12143: 2004-12-10  paf
                   12144: 
                   12145:        * src/: lib/smtp/comms.C, main/pa_common.C: DONT_LINGER can cause
                   12146:          subsequent failures though defined in .h
                   12147: 
                   12148:        * src/main/pa_common.C: comment on volatile
                   12149: 
                   12150:        * src/: include/pa_config_auto.h.in, main/pa_common.C: http: unix:
                   12151:          alarm function were not used since the beginning due to stupid
                   12152:          error [setsigjmp were not checked in configure.in]
                   12153: 
                   12154:        * src/main/pa_common.C: http: timeout setsockopt [if possible] on
                   12155:          unix too
                   12156: 
                   12157:        * src/main/pa_common.C: http: exception status of send/recv errors
                   12158:          change to most probable http.timeout
                   12159: 
                   12160:        * src/main/pa_common.C: win32: http connection $.timeout option now
                   12161:          works [setsockopt on send/receive]
                   12162: 
                   12163: 2004-12-08  paf
                   12164: 
                   12165:        * src/: classes/mail.C, types/pa_vmail.C: bugfix: mail body now
                   12166:          cstr-ed knowing mail charset, and untainting uri lang now knows
                   12167:          proper charset
                   12168: 
                   12169: 2004-11-24  paf
                   12170: 
                   12171:        * src/classes/hash.C: hash: adding/cloning adds/clones _default now
                   12172: 
                   12173:          $hash[  $.a[1]  $._default[def] ] #$hash2[^hash::create[$hash]]
                   12174:          $hash2[^hash::create[]] ^hash2.add[$hash] $hash2.shit
                   12175: 
                   12176: 2004-11-12  paf
                   12177: 
                   12178:        * src/types/pa_vmail.C: bugfix: mail:send[$.date[]] were ignored
                   12179:          [since 3.0.4]
                   12180: 
                   12181: 2004-11-09  paf
                   12182: 
                   12183:        * src/targets/cgi/parser3.C: debug: PA_DEBUG_CGI_ENTRY_EXIT if on,
                   12184:          writes basics to c:\parser3.log
                   12185: 
                   12186: 2004-10-21  paf
                   12187: 
                   12188:        * src/classes/xnode.C: bugfix: xnode.getAttribute[NS] now return
                   12189:          tainted strings [were returning clean onces]
                   12190: 
                   12191: 2004-10-15  paf
                   12192: 
                   12193:        * src/types/pa_vdouble.h: bugfix: ^for[i](1;1.5){} << did two
                   12194:          cycles(i=1; i=2), which was wrong, now does ONE
                   12195: 
                   12196: 2004-10-12  paf
                   12197: 
                   12198:        * etc/parser3.charsets/windows-1251.cfg: euro promille +/-
                   12199: 
                   12200: 2004-10-07  paf
                   12201: 
                   12202:        * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
                   12203:          main/pa_globals.C: debugger help: PA_RELEASE_ASSERTS enables
                   12204:          release asserts
                   12205: 
                   12206:        * src/: main/pa_string.C, include/pa_string.h: debugger help:
                   12207:          String.dump() to stdout in detailed form  [were String.v() in
                   12208:          short form]
                   12209: 
                   12210:        * src/lib/cord/cordbscs.c: debugger help: CORD_dump now dumpts
                   12211:          \t\r\n as @#| and truncates long char sequences less
                   12212: 
                   12213: 2004-10-06  paf
                   12214: 
                   12215:        * src/: include/pa_socks.h, main/pa_common.C, main/pa_socks.C:
                   12216:          win32 beauty: socket errors properly decoded
                   12217: 
                   12218: 2004-10-05  paf
                   12219: 
                   12220:        * src/: include/pa_request.h, main/pa_request.C: bugfix:
                   12221:          request::configure_user/admin done always, even if no
                   12222:          file-to-process useful in @unhandled_exception [say, if they
                   12223:          would want to mail by SMTP something]
                   12224: 
                   12225:        * src/main/pa_request.C: bugfix: cookie(and mail:recieved) fills
                   12226:          now performed prior to file loading [and @auto executing] thus
                   12227:          making $cookie:value available in @auto and in
                   12228:          @unhandled_exception when IIS is configured to run interpreter
                   12229:          even if no file exist
                   12230: 
                   12231: 2004-09-20  paf
                   12232: 
                   12233:        * src/main/pa_globals.C: libxml has bugs: it calls xmlMallocAtomic
                   12234:          somewhere where it should have called xmlMalloc and it calls
                   12235:          xmlFree when it should have not called it.  inserted two
                   12236:          workarounds: xmlMallocAtomic implemented as xmlMalloc, and
                   12237:          xmlFree just ignored.  put away a testcase, maybe someday libxml
                   12238:          author would fix all that.  until that day: we have SLOW garbage
                   12239:          collecting when many xml objects are alive hint: do
                   12240:          ^memory:compact[] before xdoc::create
                   12241: 
                   12242: 2004-09-17  paf
                   12243: 
                   12244:        * src/classes/file.C: bugfix: file::cgi headers were lost [typo
                   12245:          error from 3.0.8 version]
                   12246: 
                   12247: 2004-09-14  paf
                   12248: 
                   12249:        * src/types/pa_vhashfile.C: bugfix: hashfile.clear deleted only
                   12250:          part bugfix: hashfile.foreach iterated only part if hashfile were
                   12251:          modified inside
                   12252: 
                   12253: 2004-09-13  paf
                   12254: 
                   12255:        * src/main/pa_string.C: bugfix: $s[+008] ^eval($s) now parsed OK
                   12256:          [were as octal]
                   12257: 
                   12258:        * src/types/pa_vhashfile.C: beauty: not reproduced
                   12259:          $hashfile.key[$novalue] bug [reported by motorin], inserted
                   12260:          safety-check
                   12261: 
                   12262:        * src/types/pa_vhashfile.C: change: empty keys now error in parser
                   12263:          [not something obscure from sdbm lib]
                   12264: 
                   12265:        * src/types/pa_vhashfile.C: bugfix: error numbers now from errno.h
                   12266:          = strerror now returnes something and we can properly report that
                   12267:          to client
                   12268: 
                   12269:        * src/lib/sdbm/sdbm_private.h: change: limit on length(key+value)
                   12270:          now 8008 bytes, were 1008. perl sdbm compatibility now ruined
                   12271: 
                   12272:        * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
                   12273:          [tainted as-is] this helps //[space][newline] to remain as-is and
                   12274:          not be unnecessary optimized away [ruining javascript]
                   12275: 
                   12276:        * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
                   12277:          [tainted as-is]
                   12278: 
                   12279:        * src/classes/mail.C: bugfix: typo error
                   12280: 
                   12281: 2004-09-09  paf
                   12282: 
                   12283:        * src/main/pa_common.C: bugfix: loads headers with both \r\n and \n
                   12284:          separators bugfix: loads header with endings \r\n\r\n and \n\n
                   12285:          (bloody yandex.server)
                   12286: 
                   12287: 2004-09-06  paf
                   12288: 
                   12289:        * src/main/pa_charset.C: bugfix: two-bytes invalid chars in
                   12290:          TranscodeFromUTF8 considered valid. only >2bytes-long now %HH
                   12291:          encoded
                   12292: 
                   12293: 2004-09-01  paf
                   12294: 
                   12295:        * src/types/pa_vmail.C: change: multipart/mixed changed to
                   12296:          multipart/related outlook express have no problems showing
                   12297:          unrelated attachments.  todo: someday figure out a way of
                   12298:          multipart/mixed    multipart/related       text/html
                   12299:          image/xxx application/octet-stream << true attachments
                   12300: 
                   12301:        * src/types/pa_vmail.C: new:
                   12302:          ^mail:send[$.file[$.content-disposition can be overriden new:
                   12303:          empty mail header fields removed from letter
                   12304: 
                   12305:        * src/: classes/mail.C, include/pa_config_fixed.h,
                   12306:          types/pa_value.C, types/pa_value.h, types/pa_vmail.C: new:
                   12307:          ^mail:send[    $.file[       $.any[header]
                   12308: 
                   12309: 2004-08-30  paf
                   12310: 
                   12311:        * src/: include/pa_config_fixed.h, main/pa_common.C: beauty: less
                   12312:          warnings
                   12313: 
                   12314:        * src/main/pa_common.C: beauty: do not bother with charset
                   12315:          detection when ^file::load[binary
                   12316: 
                   12317: 2004-08-27  paf
                   12318: 
                   12319:        * src/main/pa_common.C: hack: for yandex.server http server
                   12320: 
                   12321: 2004-08-18  paf
                   12322: 
                   12323:        * src/main/pa_request.C: bugfix: Accept-Ranges: bytes  when sending
                   12324:          possibly-chunked response
                   12325: 
                   12326: 2004-08-17  paf
                   12327: 
                   12328:        * src/classes/file.C: bugfix: $f[^file::load[;http://]]
                   12329:          $f.content-type now = that of http response
                   12330: 
                   12331:        * src/classes/file.C: bugfix: $f[^file::load[;http://]]
                   12332:          $f.content-type now = that of http response
                   12333: 
                   12334: 2004-07-30  paf
                   12335: 
                   12336:        * src/: include/pa_request.h, main/pa_request.C,
                   12337:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C: bugfix:
                   12338:          win32: system&parser exceptions in release mode reported properly
                   12339:          parser exception in exception handler WERE mistakenly reported as
                   12340:          system exception, without details [in apache & isapi] +some
                   12341:          beauty in exception text
                   12342: 
                   12343:        * src/: include/pa_exception.h, main/pa_request.C,
                   12344:          targets/cgi/parser3.C: bugfix: win32: system&parser exceptions in
                   12345:          release mode reported properly parser exception in exception
                   12346:          handler WERE mistakenly reported as system exception, without
                   12347:          details
                   12348: 
                   12349:        * src/main/execute.C: beauty: simplified system exception handling
                   12350: 
                   12351: 2004-07-29  paf
                   12352: 
                   12353:        * src/classes/table.C: bugfix:
                   12354:          ^table.save[export.csv;$.separator[^;]] now works fine [separator
                   12355:          were ignored, and \t used unconditionally]
                   12356: 
                   12357:        * src/types/Makefile.am: added vhash.c
                   12358: 
                   12359: 2004-07-28  paf
                   12360: 
                   12361:        * src/: classes/date.C, classes/image.C, classes/math.C,
                   12362:          lib/ltdl/ltdl.c, lib/pcre/pcre_parser_ctype.c, lib/smtp/comms.C,
                   12363:          main/pa_common.C, targets/cgi/parser3.C, types/pa_vform.C,
                   12364:          types/pa_vmail.C: bugfix: isspace((unsigned char)c) everywhere.
                   12365:          failed on russian letters
                   12366: 
                   12367:        * src/: main/pa_string.C, types/pa_vmail.C, main/pa_common.C:
                   12368:          bugfix: isspace((unsigned char)c) everywhere. failed on russian
                   12369:          letters
                   12370: 
                   12371:        * src/main/pa_exec.C: bugfix: win32: chdir not needed, dir passwed
                   12372:          as 'currentDirectory' parameter to CreateProcess
                   12373: 
                   12374: 2004-07-27  paf
                   12375: 
                   12376:        * src/targets/cgi/parser3.vcproj: beauty: win32:
                   12377:          globaloptimizations ON, release:mapfile ON todo: copy .mapfile
                   12378:          from release somewhere [to help searching for unhandled system
                   12379:          exceptions]
                   12380: 
                   12381:        * src/types/pa_vdate.h: check: for invalid datetime after temporary
                   12382:          TZ shift
                   12383: 
                   12384:        * src/types/pa_vdate.h: bugfix: time checked not only at set_time
                   12385:          but also in ctor
                   12386: 
                   12387: 2004-07-26  paf
                   12388: 
                   12389:        * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
                   12390:          src/main/pa_request.C, src/types/pa_vfile.h,
                   12391:          src/types/pa_vhash.C, src/types/pa_vhash.h,
                   12392:          src/types/types.vcproj: new: $response:body/download[
                   12393:          $.file[name on disk]    $.name[of file for user]
                   12394:          $.mdate[date of last-modified. default from directory] ]
                   12395: 
                   12396:        * src/classes/file.C: moving file:send somewhere else..
                   12397: 
                   12398:        * src/: classes/file.C, include/pa_sapi.h, main/pa_common.C,
                   12399:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C: patched:
                   12400:          ^file:send by Victor Fedoseev <vvf_ru@mail.ru> todo: turn it to
                   12401:          $response:download[ $.filename[filename] $.option[] ,, ]
                   12402: 
                   12403:        * src/classes/file.C: beauty: invalid mode thoroughly reported
                   12404: 
                   12405: 2004-07-21  paf
                   12406: 
                   12407:        * src/types/pa_vmail.C: bugfix: too long header values now splitted
                   12408:          to several lines
                   12409: 
                   12410:          were: header: vaaaaaaaaaaaalue now: header: vaaaaaa  aaalue
                   12411: 
                   12412:          note: ms outlook[!express] shows only first 255 characters of
                   12413:          subject
                   12414: 
                   12415: 2004-07-15  paf
                   12416: 
                   12417:        * src/main/pa_os.C: bugfix: locks now compiled in [were mistakenly
                   12418:          off]
                   12419: 
                   12420: 2004-07-14  paf
                   12421: 
                   12422:        * src/classes/table.C: bugfix: $.bind values now got untainted
                   12423:          according to lang  [were: as-is]
                   12424: 
                   12425: 2004-07-07  paf
                   12426: 
                   12427:        * src/classes/op.C: bugfix: cache with 2 params caused assertion,
                   12428:          checked that
                   12429: 
                   12430:        * src/main/pa_exec.C: bufix: on unix AND win32 environment string
                   12431:          now untainted according to their languages.  were: as-is.
                   12432:          EVERYWHERE
                   12433: 
                   12434:        * src/: classes/file.C, main/pa_exec.C: bufix: on unix AND win32
                   12435:          environment string now untainted according to their languages.
                   12436:          were: as-is. EVERYWHERE
                   12437: 
                   12438:        * src/main/pa_exec.C: bufix: on unix environment string now
                   12439:          untainted according to their languages.  were: as-is. on win32:
                   12440:          ok
                   12441: 
                   12442:        * parser3.vssscc: ...would not go unnoticed
                   12443: 
                   12444:        * src/main/pa_charset.C: convinience: transcodeFromUTF8 now never
                   12445:          fails. in case on input appears nonutf, those bytes will be
                   12446:          printed in %HH form. that can be easily decoded/recovered.
                   12447: 
                   12448:          this form is quite noticable, and hopefully would not go noticed
                   12449: 
                   12450: 2004-07-06  paf
                   12451: 
                   12452:        * src/main/pa_exec.C: bufix: on unix environment string now
                   12453:          untainted according to their languages.  were: as-is. on win32:
                   12454:          ok
                   12455: 
                   12456: 2004-07-01  paf
                   12457: 
                   12458:        * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
                   12459:          lib/gd/gd.vcproj, lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
                   12460:          lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
                   12461:          lib/pcre/pcre_parser_ctype.vcproj, lib/smtp/smtp.vcproj,
                   12462:          main/main.vcproj, targets/cgi/parser3.vcproj,
                   12463:          targets/isapi/parser3isapi.vcproj, types/types.vcproj: win32:
                   12464:          option: global optimization ON
                   12465: 
                   12466:        * src/main/untaint.C: workaround kinda bug in libxml: life requires
                   12467:          to do xdoc::create{invalid chars} standard disables chars less
                   12468:          then \x20, except tab, cr, lf.
                   12469: 
                   12470:          changed tainting so that those become '!'
                   12471: 
                   12472: 2004-06-25  paf
                   12473: 
                   12474:        * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
                   12475:          int on odd address [prev bugfix failed due to superwize
                   12476:          optimizer, which turned memcpy into same 'ld' asm command]
                   12477: 
                   12478:        * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
                   12479:          int on odd address
                   12480: 
                   12481: 2004-06-22  paf
                   12482: 
                   12483:        * src/sql/pa_sql_driver.h: note: about possible optimization
                   12484: 
                   12485:        * operators.txt, src/classes/hash.C, src/classes/memory.C,
                   12486:          src/classes/string.C, src/classes/table.C, src/classes/void.C,
                   12487:          src/include/pa_config_includes.h: new:        ^void:sql{call
                   12488:          paf(:a)}[                $.bind[                         $.a[2]
                   12489:                 ]       ] output variables work.  todo: check in out
                   12490:          variables
                   12491: 
                   12492: 2004-06-18  paf
                   12493: 
                   12494:        * src/: classes/file.C, classes/hash.C, classes/string.C,
                   12495:          classes/table.C, classes/void.C, include/pa_globals.h,
                   12496:          include/pa_sql_connection.h, main/compile.tab.C,
                   12497:          sql/pa_sql_driver.h: started:         ^void:sql{call paf(:a)}[
                   12498:                      $.bind[                         $.a[2]          ]
                   12499:          ] input variables work.  todo:output
                   12500: 
                   12501:        * src/targets/cgi/parser3.C: bugfix: iis specific
                   12502:          http://parser3/_bug.html?404;http://hpsv/test/ now $request:uri
                   12503:          /_bug.html?404;http://hpsv/test/
                   12504:          --------------------------------------------------------------------------------
                   12505:          $request:query IIS-STATUS=404&IIS-DOCUMENT=http://hpsv/test/
                   12506:          --------------------------------------------------------------------------------
                   12507:          IIS-STATUS="404" IIS-DOCUMENT="http://hpsv/test/"
                   12508: 
                   12509: 2004-06-16  paf
                   12510: 
                   12511:        * src/targets/cgi/parser3.C: new: iis specific
                   12512:          http://parser3/_bug.html?404;http://server/_bug.html?f=v now
                   12513:          $request:query
                   12514:          IIS-STATUS=404&IIS-DOCUMENT=http://server/_bug.html&f=v
                   12515:          $form:fields IIS-STATUS="404"
                   12516:          IIS-DOCUMENT="http://server/_bug.html" f="v"
                   12517: 
                   12518:          todo: isapi too
                   12519: 
                   12520: 2004-05-26  paf
                   12521: 
                   12522:        * src/include/pa_version.h: 3.1.3
                   12523: 
                   12524:        * operators.txt: beauty: removed outdated level 'table'
                   12525: 
                   12526:        * etc/parser3.charsets/x-mac-cyrillic.cfg: added: thanks to konst
                   12527: 
                   12528:        * src/main/pa_string.C: beauty: removed 3 warnings
                   12529: 
                   12530:        * src/: include/pa_string.h, classes/table.C, main/untaint.C,
                   12531:          classes/op.C: beauty: removed outdated level 'table'
                   12532: 
                   12533: 2004-05-25  paf
                   12534: 
                   12535:        * src/lib/sdbm/apr_file_io.C: bugfix: bad seek wrapper
                   12536:          implementation. mistery: how anything worked
                   12537: 
                   12538:        * src/sql/pa_sql_driver.h: beauty: param renamed and comment
                   12539:          changed, it is now safe to use url if pointers to it are stored
                   12540:          to gc mem
                   12541: 
                   12542:        * src/: main/pa_exec.C, types/pa_vhashfile.C: bugfix: hashfile
                   12543:          unknown errors reported and not cause SIGSEGV now
                   12544: 
                   12545: 2004-05-24  paf
                   12546: 
                   12547:        * src/: include/pa_string.h, lib/cord/cordbscs.c,
                   12548:          lib/cord/include/cord.h, lib/cord/cordxtra.c: cancel: more speed,
                   12549:          less memory: CORD_chars_block originally intended to ...  it was
                   12550:          good that CORD_chars_block were not used: it consumes more memory
                   12551:          [and, might be slow too] undoing that. [and removed that func so
                   12552:          that it would not confuse parser developer in future]
                   12553: 
                   12554:        * src/: include/pa_string.h, lib/cord/include/cord.h: more speed,
                   12555:          less memory: CORD_chars_block originally intended to
                   12556:          speedup/reduce mem usage were forgotten, and were used stupid
                   12557:          CORD_chars
                   12558: 
                   12559:        * src/include/pa_config_auto.h.in: bugfix: bigendian check added
                   12560: 
                   12561:        * src/include/: pa_config_fixed.h, pa_string.h: bugfix: on
                   12562:          BIGENDIAN processors space-conserving mech failed, causing
                   12563:          SIGSEGV/SIGBUS and SAPI::abort("unknown untaint lang#%d",
                   12564:          (1|2|3));
                   12565: 
                   12566: 2004-05-14  paf
                   12567: 
                   12568:        * src/types/: Makefile.am, pa_vvoid.C, pa_vvoid.h, types.vcproj:
                   12569:          bugfix: void now has vfile value, and $response:body[] works OK
                   12570: 
                   12571: 2004-05-12  paf
                   12572: 
                   12573:        * src/types/: pa_vbool.h, pa_vhash.h, pa_vhashfile.h, pa_vtable.h:
                   12574:          beauty: ^if(def $bool) now equals ^if($bool) and shaped up other
                   12575:          sources to use is_defined() {return as_bool();} along VBool
                   12576: 
                   12577: 2004-05-11  paf
                   12578: 
                   12579:        * src/include/pa_exec.h: bugfix: gpf on file::exec/cgi because of
                   12580:          referencing to local objects
                   12581: 
                   12582:        * src/: classes/mail.C, include/pa_exec.h, main/compile.tab.C,
                   12583:          types/pa_vmail.C, types/pa_vmail.h: bugfix: bcc with sendmail now
                   12584:          left intact
                   12585: 
                   12586: 2004-04-15  paf
                   12587: 
                   12588:        * src/classes/date.C: merged: beauty: unused var removed
                   12589: 
                   12590:        * src/classes/date.C: beauty: unused var removed
                   12591: 
                   12592:        * src/include/: pa_exec.h: bugfix: interface without pointer
                   12593:          provoked bug
                   12594: 
                   12595: 2004-04-09  paf
                   12596: 
                   12597:        * src/types/pa_vform.C: merge: bugfix: form:imap were incorrect
                   12598: 
                   12599:        * src/types/pa_vform.C: bugfix: form:imap were incorrect
                   12600: 
                   12601: 2004-04-08  paf
                   12602: 
                   12603:        * src/classes/date.C: new: ^date::create[y-m-d
                   12604:          h-M-s>>.milliseconds<<] now allowed, ignored so far
                   12605: 
                   12606:        * src/main/pa_xml_io.C: merged: bugfix /etc/xml/catalog
                   12607: 
                   12608:        * src/main/pa_xml_io.C: bugfix: in safe mode -- disabled attempts
                   12609:          to consult default catalog [usually, that file belongs to other
                   12610:          user/group]
                   12611: 
                   12612: 2004-04-06  paf
                   12613: 
                   12614:        * src/main/pa_common.C: beauty: gcc warning removed
                   12615: 
                   12616:        * src/main/: compile.tab.C, compile.y: bugfix: gcc refused to
                   12617:          accept that trick, trying other
                   12618: 
                   12619:        * src/main/: compile.tab.C, compile.y: bugfix: step3 to fix
                   12620:          explicit result problem
                   12621: 
                   12622:        * src/main/: compile.tab.C, compile.y: bugfix: step2 to fix
                   12623:          explicit result problem
                   12624: 
                   12625:        * src/main/: compile.tab.C, compile.y: bugfix: step1 to fix
                   12626:          explicit result problem
                   12627: 
                   12628:        * operators.txt, src/classes/string.C: new: ^string.append[string]
                   12629: 
                   12630:        * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
                   12631:          main/execute.C: attempt_check_call_in_explicit_result_mode:
                   12632:          failed
                   12633: 
                   12634:        * src/main/pa_common.C: bugfix: of 1.175 bugfix:
                   12635:          http://i.p.a.ddress gethostbyaddr added [on some platforms
                   12636:          gethostbyname failed with such 'domains'] now checked properly,
                   12637:          were: needless reverse/forward dns lookup
                   12638: 
                   12639:        * src/main/pa_common.C: bugfix: of 1.175 bugfix:
                   12640:          http://i.p.a.ddress gethostbyaddr added [on some platforms
                   12641:          gethostbyname failed with such 'domains'] now checked properly,
                   12642:          were: needless reverse/forward dns lookup
                   12643: 
                   12644:        * src/main/: compile.C, compile.tab.C, compile.y: reimplemented:
                   12645:          @method[][result] means "no string output here" moved to lexical
                   12646:          level [on grammar level it were too difficult]
                   12647: 
                   12648:        * operators.txt, src/include/pa_string.h, src/main/compile.tab.C,
                   12649:          src/main/compile.y, src/main/compile_tools.h,
                   12650:          src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h: new:
                   12651:          @method[][result] means "no string output here", implemented part
                   12652:          of that idea: compiler throws away string literal generation
                   12653:          code. and barks nonwhitespace chars
                   12654: 
                   12655:        * operators.txt: truth: removed comment about $ORIGIN
                   12656: 
                   12657: 2004-04-05  paf
                   12658: 
                   12659:        * configure.in, src/doc/html2chm.cmd, src/doc/sources2html.cmd,
                   12660:          src/include/pa_version.h, src/main/pa_common.C,
                   12661:          src/targets/isapi/parser3isapi.C: merged with 3.1.3
                   12662: 
                   12663:        * etc/parser3.charsets/x-mac-cyrillic.cfg: added: donated by
                   12664:          Konstantin Tomashevitch [mailto:konst@design.ru]
                   12665: 
                   12666:        * src/doc/html2chm.cmd: beauty: no need in bg here
                   12667: 
                   12668:        * src/doc/sources2html.cmd: beauty: same window, in bg it
                   12669:          interfered with FAR console
                   12670: 
                   12671:        * configure, configure.in: 3.1.3
                   12672: 
                   12673:        * src/targets/isapi/parser3isapi.C: beauty: removed some warnings
                   12674: 
                   12675:        * src/main/pa_common.C: removed warning
                   12676: 
                   12677:        * src/include/pa_version.h: 3.1.3
                   12678: 
                   12679: 2004-04-02  paf
                   12680: 
                   12681:        * src/main/pa_string.C: bugfix: $s[009] ^s.int[] now 9, were error
                   12682: 
                   12683:        * src/targets/cgi/parser3.C: new: CGI_PARSER_LOG env variable
                   12684:          allows to specify where to put parser log file
                   12685: 
                   12686: 2004-04-01  paf
                   12687: 
                   12688:        * src/classes/table.C: bugfix: bugfix: table::load last line
                   12689:          without tab and enter were ignored
                   12690: 
                   12691:        * src/: include/pa_cache_managers.h, include/pa_globals.h,
                   12692:          include/pa_socks.h, main/pa_cache_managers.C, main/pa_globals.C,
                   12693:          main/pa_socks.C, targets/cgi/parser3.C,
                   12694:          targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.def:
                   12695:          bugfix: sql connections now are disconnected
                   12696: 
                   12697: 2004-03-30  paf
                   12698: 
                   12699:        * src/classes/table.C: bugfix: table::load last line without tab
                   12700:          and enter were ignored
                   12701: 
                   12702:        * src/classes/table.C: bufix: if last table lines were commented,
                   12703:          gpfed
                   12704: 
                   12705:        * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
                   12706:          doc/ClassExample3.dox, doc/chmhelper.pl, doc/class.dox,
                   12707:          doc/compiler.dox, doc/doxygen.cfg, doc/exception.dox,
                   12708:          doc/executor.dox, doc/footer.htm, doc/index.dox, doc/memory.dox,
                   12709:          doc/methoded.dox, doc/object.dox, doc/string.dox,
                   12710:          doc/targets.dox, doc/value.dox, include/pa_version.h,
                   12711:          main/pa_cache_managers.C, main/pa_stylesheet_connection.C,
                   12712:          targets/isapi/parser3isapi.vcproj, types/pa_vform.C: merged
                   12713:          bugfixes from 3.1.2, changed version to 3.1.3beta
                   12714: 
                   12715: 2004-03-29  paf
                   12716: 
                   12717:        * src/types/pa_vhashfile.C: bugfix: empty key on hashfile.get
                   12718:          causes gpf
                   12719: 
                   12720:        * src/doc/: ClassExample1.dox, ClassExample2.dox,
                   12721:          ClassExample3.dox, chmhelper.pl, class.dox, compiler.dox,
                   12722:          doxygen.cfg, exception.dox, executor.dox, footer.htm, index.dox,
                   12723:          memory.dox, methoded.dox, object.dox, string.dox, targets.dox,
                   12724:          value.dox: translated to english
                   12725: 
                   12726: 2004-03-25  paf
                   12727: 
                   12728:        * src/targets/isapi/parser3isapi.vcproj: beauty: one more
                   12729:          parser3project dependency removed
                   12730: 
                   12731:        * src/main/: pa_cache_managers.C, pa_stylesheet_connection.C:
                   12732:          bugfix: refused to compile without xml
                   12733: 
                   12734:        * src/types/pa_vform.C: beauty: removed warning
                   12735: 
                   12736:        * src/classes/classes.vcproj: merged bugfix: now all compiles in
                   12737:          any folder [removed last ;) folder dependency]
                   12738: 
                   12739:        * src/classes/classes.vcproj: bugfix: now all compiles in any
                   12740:          folder [removed last ;) folder dependency]
                   12741: 
                   12742:        * src/include/pa_version.h: release
                   12743: 
                   12744:        * src/lib/gd/gif.C: new: ^image.pixel(outof;bounds) now returns -1
                   12745: 
                   12746:        * src/classes/table.C: beauty: comment& more meaningful error
                   12747:          message
                   12748: 
                   12749:        * src/classes/hash.C: bugfix: ^hash::sql{one column} now produces
                   12750:          $.hash[$.column_value1(true) ... ] [were producing some strang
                   12751:          thing]
                   12752: 
                   12753: 2004-03-23  paf
                   12754: 
                   12755:        * src/: classes/image.C, main/pa_common.C: bugfix: ^image.polyline
                   12756:          and http status line parsing checked number of columns in table
                   12757:          [user reported an assert]
                   12758: 
                   12759:        * operators.txt: example: on hashfile
                   12760: 
                   12761:        * src/: classes/op.C, types/pa_value.C, types/pa_wcontext.C:
                   12762:          bugfix: junction reattach now actually reattaches a junction to
                   12763:          new wcontext [were only assigning it to junction, which caused
                   12764:          junction tracking to loose junction, and it's context were not
                   12765:          killed, and it tried to process in invalid context, gpf]
                   12766: 
                   12767:        * src/targets/cgi/parser3.C: debug helper added
                   12768: 
                   12769: 2004-03-19  paf
                   12770: 
                   12771:        * src/types/pa_wcontext.C: beauty: error messages removed duplicate
                   12772:          "type(type)" in braces
                   12773: 
                   12774: 2004-03-10  paf
                   12775: 
                   12776:        * operators.txt, src/classes/xdoc.C, src/classes/xnode.C,
                   12777:          src/classes/xnode.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
                   12778:          src/types/pa_vxnode.C, src/types/pa_vxnode.h: new: refined
                   12779:          solution to search-in-namespaces problem:
                   12780:          $xdoc.search-namespaces.x[http://pif.design.ru/]
                   12781:          $nodes[^xdoc.select[//x:second]]
                   12782: 
                   12783:        * operators.txt, src/classes/xnode.C: new: xnode.select*[xpath
                   12784:          expression][[NAMESPACES HASH]] allows to search for info in
                   12785:          namespaces
                   12786: 
                   12787:          $nodes[^xdoc.select[//x:second][
                   12788:          $.x[http://pif.design.ru/] ]]
                   12789: 
                   12790: 2004-03-09  paf
                   12791: 
                   12792:        * operators.txt, src/main/pa_common.C: new:
                   12793:          ^file::load[...][options]         $.form[
                   12794:          !$.field1[string]
                   12795:          !$.field2[^table::create{one_column_only^#0Avalue1^#0Avalue2}]
                   12796:               ]         !$.body[string]
                   12797: 
                   12798:          GET ?here notGET(POST, HEAD, others) in content-type:
                   12799:          application/x-www-form-urlencoded
                   12800: 
                   12801:          todo: upload files ability
                   12802: 
                   12803:        * src/lib/cord/cordxtra.c: bugfix: CORD_pos were not fixed
                   12804:          properly, done
                   12805: 
                   12806: 2004-03-05  paf
                   12807: 
                   12808:        * operators.txt, src/main/pa_common.C: new: file::load[;http://
                   12809:          GET/POST $.form[$.fields started, not tested yet
                   12810:          todo:$.field[table] for multiple values
                   12811: 
                   12812:        * operators.txt: new: http:// options $.user $.password basic
                   12813:          authorization
                   12814: 
                   12815:        * src/main/pa_common.C: beauty: link to rtf added
                   12816: 
                   12817:        * operators.txt, src/include/pa_common.h, src/main/pa_common.C:
                   12818:          new: http:// options $.user $.password basic authorization
                   12819: 
                   12820:        * src/main/pa_common.C: beauty: removed needless vars
                   12821: 
                   12822:        * operators.txt: new: pgsql option [like that recently added to
                   12823:          oracle driver]             ClientCharset=parser-charset <<
                   12824:          charset in which parser thinks client works
                   12825: 
                   12826:        * operators.txt: new: odbc option [like that recently added to
                   12827:          oracle driver]             ClientCharset=parser-charset <<
                   12828:          charset in which parser thinks client works
                   12829: 
                   12830:        * src/sql/pa_sql_driver.h: beauty: important warning added
                   12831: 
                   12832:        * etc/parser3.charsets/koi8-r.cfg: there's special code for grad
                   12833:          char!
                   12834: 
                   12835:        * etc/parser3.charsets/windows-1251.cfg: typo
                   12836: 
                   12837: 2004-03-04  paf
                   12838: 
                   12839:        * src/main/pa_sql_driver_manager.C: speedup: charset lookups
                   12840:          cached, sql transcoding now goes faster
                   12841: 
                   12842:        * operators.txt: new: mysql option [like that recently added to
                   12843:          oracle driver]             ClientCharset=parser-charset <<
                   12844:          charset in which parser thinks client works
                   12845: 
                   12846:        * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: keyboard
                   12847:          typo error
                   12848: 
                   12849:        * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: typograph
                   12850:          chars commented
                   12851: 
                   12852: 2004-03-03  paf
                   12853: 
                   12854:        * INSTALL: note: added on libgc on FreeBSD, thanks to Andrey N.
                   12855:          Pazychev <135@ugtel.ru> and Goor <goor@hotbox.ru>
                   12856: 
                   12857: 2004-03-02  paf
                   12858: 
                   12859:        * operators.txt: new[update typo]:     !^void.left(n)
                   12860:          nothing     !^void.right(n)        nothing     !^void.mid(p[;n])
                   12861:                nothing
                   12862: 
                   12863:        * operators.txt, src/classes/void.C: new:     !^void.left(n)
                   12864:          nothing     !^void.right(n)        nothing     !^void.pos(p[;n])
                   12865:                nothing
                   12866: 
                   12867:        * operators.txt, src/classes/file.C, src/include/pa_string.h: new:
                   12868:          ^file::sql[[name_to_become_$.name]]{} query result must be one
                   12869:          row with columns:   first: data   second: file name   third:
                   12870:          content-type
                   12871: 
                   12872:        * operators.txt, src/classes/file.C: ^file.sql-string[] inside
                   12873:          ^connect gets properly escaped string, which can be passed to
                   12874:          request now this for mysql only. it's up to parser sql driver to
                   12875:          fix zeros properly
                   12876: 
                   12877:        * INSTALL: note: added on building apache with this option:
                   12878:          --enable-shared=max thanks to Victor Fedoseev <vvf_ru@mail.ru>
                   12879: 
                   12880: 2004-03-01  paf
                   12881: 
                   12882:        * src/targets/isapi/parser3isapi.C: new: apache module & isapi
                   12883:          extension memory:compact befor processingrequest
                   12884: 
                   12885:        * operators.txt, src/classes/hash.C: new: ^hash._keys[>>name<<] to
                   12886:          call sole column of result
                   12887: 
                   12888:        * operators.txt, src/classes/image.C, src/lib/gd/gif.C,
                   12889:          src/lib/gd/gif.h: new: ^image.pixel(x;y)[(color)]         get/set
                   12890:          pixel color
                   12891: 
                   12892:        * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
                   12893:          beauty: image -- less checks [were ugly impl]
                   12894: 
                   12895:        * src/classes/string.C: bugfix: ^string.left/right/mid with
                   12896:          negative values now considered bad
                   12897: 
                   12898:        * src/main/pa_common.C: bugfix: INADDR_NONE not everywhere defined
                   12899: 
                   12900:        * src/: classes/xdoc.C, types/pa_vxdoc.h: bugfix: boolean output
                   12901:          options now have unified defaults [after transform
                   12902:          indent/omit-xml-declaration/standalone 'default' erroreously
                   12903:          meant 'true']
                   12904: 
                   12905:        * src/main/pa_common.C: bugfix: http://i.p.a.ddress gethostbyaddr
                   12906:          added [on some platforms gethostbyname failed with such
                   12907:          'domains']
                   12908: 
                   12909:        * src/include/pa_config_auto.h.in: no select check, no define
                   12910: 
                   12911:        * src/classes/string.C: feature: ^string.trim both parameters may
                   12912:          be empty-strings, meaning kind=both chars=whitespaces
                   12913: 
                   12914:        * src/lib/smtp/comms.C: bugfix: use SO_LINGER if no SO_DONTLINGER
                   12915:          exist
                   12916: 
                   12917:        * src/classes/string.C: check: trim 'chars' must not be empty,
                   12918:          exception if it is
                   12919: 
                   12920:        * src/classes/string.C: changed: ^string.trim [] << both,
                   12921:          whitespaces [start|both|end] << kind, whitespaces
                   12922:          [start|both|end;chars]  full
                   12923: 
                   12924: 2004-02-27  paf
                   12925: 
                   12926:        * operators.txt, src/classes/string.C, src/main/pa_string.C: new
                   12927:          method: ^string.trim[start|both|end[;chars]]        default
                   12928:          'chars' -- whitespace chars finished
                   12929: 
                   12930:        * operators.txt, src/classes/string.C, src/include/pa_string.h,
                   12931:          src/main/pa_string.C: new method:
                   12932:          ^string.trim[start|both|end[;chars]]        default 'chars' --
                   12933:          whitespace chars   started, only start works
                   12934: 
                   12935:        * src/main/compile.C: bugfix: line numbers after
                   12936:          ^process{}[$.line(-10]] can be negative, allowed to print they as
                   12937:          signed
                   12938: 
                   12939:        * src/main/untaint.C: speed: there's no \n chars in output
                   12940:          [normally], so no need to optimize them they could be retrived
                   12941:          from databases, though. but 1. should be replaced 2. if not
                   12942:          optimized, no harm done
                   12943: 
                   12944:        * src/main/pa_exec.C: bugfix: waitpid could be interrupted --
                   12945:          ^file::exec/cgi could return invalid status & zombie child can
                   12946:          remain for short period until process exists [very bad in
                   12947:          mod_parser3] http://i2/tasks/edit/?id=4629451867179521923
                   12948: 
                   12949:        * src/lib/smtp/smtp.h: bugfix: SMTP buffer overflow could allow
                   12950:          malicious SMTP server to attack as by returning too long status
                   12951:          responses http://i2/tasks/edit/?id=4629448401140924947
                   12952: 
                   12953: 2004-02-26  paf
                   12954: 
                   12955:        * operators.txt: feature: ^process...{CODE}[now has options] which
                   12956:          are         $.main[to what to rename @main]         $.file[file,
                   12957:          from which (user says) goes that CODE]         $.lineno(line
                   12958:          number in that file, where CODE starts. may be negative)
                   12959: 
                   12960:        * operators.txt, src/classes/op.C, src/include/pa_request.h,
                   12961:          src/main/compile.C, src/main/compile_tools.h,
                   12962:          src/main/pa_request.C: feature: ^process...{CODE}[now has
                   12963:          options] which are         $.main[to what to rename @main]
                   12964:          $.file[file, from which (user says) goes that CODE]
                   12965:          $.lineno(line number in that file, where CODE starts. may be
                   12966:          negative)
                   12967: 
                   12968: 2004-02-25  paf
                   12969: 
1.116     moko     12970:        * etc/parser3.charsets/Makefile.am: bugfix: @sysconfdir@ used [were
                   12971:          old @charsetsdir@ recently erased from configure.in]
1.95      moko     12972: 
                   12973:        * src/classes/hash.C: feature: ^hash::sql{one colum result} now
                   12974:          produces hash of column=>1
                   12975: 
                   12976:        * src/lib/smtp/smtp.h: beauty: couple of #ifdef-s to compile even
                   12977:          with incomplete errno constants set
                   12978: 
                   12979: 2004-02-24  paf
                   12980: 
                   12981:        * src/lib/smtp/smtp.C: smtp on unix: authors of lib/smtp never read
                   12982:          "man select"
                   12983: 
                   12984:        * src/main/pa_os.C: beauty: <0 better then ==-1
                   12985: 
                   12986:        * src/lib/smtp/comms.C: smtp on unix: steps to work on unix
                   12987: 
                   12988:        * src/lib/smtp/: smtp.C: smtp on unix: steps to work on unix
                   12989: 
1.116     moko     12990:        * src/classes/Makefile.am: smtp on unix: steps to work on unix
1.95      moko     12991: 
                   12992:        * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp on
                   12993:          unix: steps to work on unix [extracted 'to']
                   12994: 
                   12995:        * src/classes/mail.C: smtp on unix: steps to work on unix
                   12996: 
                   12997:        * src/lib/smtp/smtp.C: smtp on unix: compiled on win32
                   12998: 
1.116     moko     12999:        * src/: lib/smtp/Makefile.am, lib/smtp/comms.C, lib/smtp/smtp.C,
                   13000:          lib/smtp/smtp.h, targets/cgi/Makefile.am: started porting smtp to
                   13001:          unix [testing on solaris]
1.95      moko     13002: 
                   13003: 2004-02-20  paf
                   13004: 
                   13005:        * src/classes/xdoc.C: beauty: ugly code removed, thanks to egr for
                   13006:          pointing that out
                   13007: 
                   13008:        * src/classes/xdoc.C: bugfix: <tag attr="&#digital_entity;" bug
                   13009:          fixed again [same solution, mistanenly removed one line]
                   13010: 
                   13011: 2004-02-19  paf
                   13012: 
                   13013:        * src/: classes/date.C, classes/image.C, types/pa_vdate.h: feature:
                   13014:          date::create from bad datetime in spring daylightsaving hole now
                   13015:          OK for all platforms [on some platforms it failed]
                   13016: 
                   13017:        * src/classes/: date.C, image.C: beauty: date::create[bad date time
                   13018:          in daylightsaving hole] now throws error
                   13019: 
                   13020:        * src/classes/date.C: comment: mistake fixed
                   13021: 
                   13022: 2004-02-18  paf
                   13023: 
                   13024:        * src/: classes/xdoc.C, include/pa_charset.h: beauty: xdoc.string
                   13025:          now renderes in $request:charset, but in header puts
                   13026:          $response:charset todo: make that default only so that coder
                   13027:          could override that
                   13028: 
                   13029:        * src/classes/xdoc.C: beauty: xhtml doctype-public/system forcly
                   13030:          turns off omit-xml-declaration
                   13031: 
                   13032:        * src/classes/xdoc.C: feature: reimplemented xhtml output, see
                   13033:          /.xsl for sample
                   13034: 
                   13035: 2004-02-17  paf
                   13036: 
                   13037:        * src/classes/xdoc.C: beauty: needless helper class removed
                   13038: 
                   13039:        * src/classes/xdoc.C: beauty: method=html outputxmlbuffer not
                   13040:          copied extra time
                   13041: 
                   13042:        * src/classes/xdoc.C: bugfound: meta again, now somewhere in xhtml
                   13043:          part of libxml
                   13044: 
                   13045:        * src/classes/xdoc.C: new: xhtml now works [libxslt prevented
                   13046:          libxml to do the work] <xsl:output        method="html"
                   13047:          doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
                   13048:          doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
                   13049:          />
                   13050: 
                   13051:        * src/classes/xdoc.C: beauty: no <meta ... charset generated
                   13052: 
                   13053:        * src/types/pa_vxdoc.h: bugfix: ^xdoc::transform [note double :]
                   13054:          caused assertion
                   13055: 
                   13056:        * src/classes/hash.C: bugfix: ^hash.add[$hash] ^hash.sub[$hash]
                   13057:          could hang. now such add does nothing, sub clears $hash
                   13058: 
                   13059:        * src/main/untaint.C: bugfix: one last char prior to "spaces<" were
                   13060:          not made quoted-printable
                   13061: 
                   13062:        * src/main/pa_uue.C: bugfix: uuencoded finish char adding violated
                   13063:          string invariant
                   13064: 
                   13065: 2004-02-16  paf
                   13066: 
                   13067:        * src/main/pa_globals.C: bugfix: xml errors copy from library now
                   13068:          cleared [were not cleared properly]
                   13069: 
                   13070: 2004-02-13  paf
                   13071: 
1.116     moko     13072:        * src/include/pa_version.h: prerelease
1.95      moko     13073: 
                   13074:        * src/main/pa_stylesheet_connection.C: change: .xsl.stamp now not
                   13075:          used, introducing dependencies timestamp check
                   13076: 
                   13077:        * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
                   13078:          include/pa_xml_io.h, main/Makefile.am, main/compile.tab.C,
                   13079:          main/main.vcproj, main/pa_globals.C, main/pa_xml_io.C: change:
                   13080:          .xsl.stamp now not used, introducing dependencies timestamp check
                   13081: 
1.150     moko     13082:        * configure.in: auto.p: @conf made relative
1.95      moko     13083: 
                   13084: 2004-02-12  paf
                   13085: 
                   13086:        * src/types/pa_vform.C: bugfix: empty values[recently allowed]
                   13087:          ruined empty <input type=file> submits. parser thought there were
                   13088:          nameless empty file and $form:field got value of type 'file'
                   13089: 
                   13090:        * INSTALL: --without-threads
                   13091: 
                   13092:        * src/include/pa_sapi.h: 2004
                   13093: 
                   13094: 2004-02-11  paf
                   13095: 
                   13096:        * src/: classes/classes.C, classes/classes.h, classes/date.C,
                   13097:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   13098:          classes/hashfile.C, classes/image.C, classes/int.C,
                   13099:          classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
                   13100:          classes/response.C, classes/string.C, classes/table.C,
                   13101:          classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   13102:          include/pa_array.h, include/pa_cache_managers.h,
                   13103:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   13104:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   13105:          include/pa_dictionary.h, include/pa_dir.h,
                   13106:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   13107:          include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
                   13108:          include/pa_operation.h, include/pa_os.h, include/pa_request.h,
                   13109:          include/pa_request_charsets.h, include/pa_request_info.h,
                   13110:          include/pa_socks.h, include/pa_sql_connection.h,
                   13111:          include/pa_sql_driver_manager.h, include/pa_stack.h,
                   13112:          include/pa_string.h, include/pa_stylesheet_connection.h,
                   13113:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   13114:          include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
                   13115:          include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
                   13116:          lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
                   13117:          lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
                   13118:          lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
                   13119:          main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
                   13120:          main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
                   13121:          main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
                   13122:          main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
                   13123:          main/pa_os.C, main/pa_request.C, main/pa_socks.C,
                   13124:          main/pa_sql_driver_manager.C, main/pa_string.C,
                   13125:          main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
                   13126:          main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
                   13127:          sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
                   13128:          targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
                   13129:          types/pa_junction.h, types/pa_method.h, types/pa_value.C,
                   13130:          types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
                   13131:          types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
                   13132:          types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
                   13133:          types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
                   13134:          types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
                   13135:          types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
                   13136:          types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
                   13137:          types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
                   13138:          types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
                   13139:          types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
                   13140:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
                   13141:          types/pa_vresponse.h, types/pa_vstateless_class.C,
                   13142:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   13143:          types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
                   13144:          types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
                   13145:          types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   13146:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
                   13147:          types/pa_wcontext.h, types/pa_wwrapper.h: 2004
                   13148: 
                   13149:        * src/main/pa_globals.C: beauty: typo caused gc.log warnings with
                   13150:          debug version of gc.dll
                   13151: 
                   13152:        * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
                   13153:          lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
                   13154:          lib/pcre/pcre_parser_ctype.vcproj, lib/sdbm/sdbm.vcproj,
                   13155:          lib/smtp/smtp.vcproj, main/main.vcproj, main/pa_globals.C,
                   13156:          targets/cgi/parser3.C, targets/cgi/parser3.vcproj,
                   13157:          targets/isapi/parser3isapi.vcproj, types/types.vcproj: migrated
                   13158:          to latest libxml[2.6.5] and libgdome[1.1.2] simplified lib build
                   13159:          processes
                   13160: 
                   13161:        * src/: classes/classes.vcproj, lib/gd/gd.vcproj, main/main.vcproj,
                   13162:          main/pa_globals.C, targets/cgi/parser3.vcproj,
                   13163:          targets/isapi/parser3isapi.vcproj, types/types.vcproj: continued
                   13164:          changes to reflect libxml xsl new folders
                   13165: 
                   13166:        * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
                   13167:          lib/smtp/smtp.vcproj, main/main.vcproj,
                   13168:          targets/cgi/parser3.vcproj, types/types.vcproj: continued changes
                   13169:          to reflect libxml xsl new folders
                   13170: 
                   13171:        * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
                   13172:          lib/smtp/smtp.vcproj, main/main.vcproj,
                   13173:          targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
                   13174:          types/types.vcproj: started changes to reflect libxml xsl new
                   13175:          folders
                   13176: 
                   13177:        * ChangeLog, parser3.sln, src/classes/classes.vcproj,
                   13178:          src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
                   13179:          src/main/compile.tab.C, src/main/main.vcproj,
                   13180:          src/main/pa_globals.C, src/targets/cgi/parser3.vcproj,
                   13181:          src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
                   13182:          started changes to reflect libxml xsl new folders
                   13183: 
                   13184: 2004-02-10  paf
                   13185: 
                   13186:        * INSTALL: critical: libxslt1.1.2 wanted at least libxml2.6.3 to
                   13187:          compile. recommened latest libxml up to date
                   13188: 
                   13189:        * INSTALL: critical: prior to 1.0.30 had bug: "a segfault on
                   13190:          pattern compilation errors", on which spent 4 hours worktime. use
                   13191:          versions higher than that. recommended now latest up to date
                   13192: 
                   13193: 2004-02-06  paf
                   13194: 
                   13195:        * src/main/: pa_sql_driver_manager.C, pa_stylesheet_manager.C:
                   13196:          beauty: unified destructing style
                   13197: 
                   13198:        * src/main/untaint.C: beauty: removed old def/ifdef
                   13199: 
                   13200:        * src/main/untaint.C: beauty: coredump @unknown untaint language
                   13201:          now
                   13202: 
                   13203: 2004-02-03  paf
                   13204: 
                   13205:        * src/: classes/image.C, main/pa_exec.C, main/pa_memory.C,
                   13206:          targets/isapi/parser3isapi.C, types/pa_value.C,
                   13207:          types/pa_vcookie.C: beauty: %u is more simple=proper for size_t
                   13208:          then %ld/%lu
                   13209: 
                   13210:        * src/main/pa_common.C: typo: %l -> %u
                   13211: 
                   13212:        * src/classes/xdoc.C: bugfix: libxml: FOR UTF-8 TOO russian letters
                   13213:          in attributes or documents-results of transform now not &#04xx;
                   13214: 
                   13215:        * src/classes/xnode.C: memleaks found: not fixed yet. todo
                   13216: 
                   13217:        * src/main/pa_charset.C: bugfix: forgot to undo some
                   13218: 
                   13219:        * src/main/pa_charset.C: beauty: uncomment
                   13220:          PA_PATCHED_LIBXML_BACKWARD to link with old patched libxml
                   13221:          libraries
                   13222: 
                   13223: 2004-02-02  paf
                   13224: 
                   13225:        * src/types/pa_vcookie.C: bugfix: erasing cookie: params now output
                   13226:          $cookie:example[    $.value[value]  $.path[/there/] ]
                   13227: 
                   13228:          $cookie:example[        $.value[]       $.expires[session]
                   13229:          $.path[/there/]         $.domain[test.com] ]
                   13230: 
                   13231:        * src/types/pa_vform.C: bugfix: empty values with
                   13232:          enctype=multipart/form-data now produce entries in $form:tables
                   13233:          <form method=post enctype=multipart/form-data> <input type=hidden
                   13234:          name=a> <input type=hidden name=b>
                   13235: 
                   13236:          <input type=submit> </form> $k[^form:fields._keys[]] ^eval($k)
                   13237:          <hr> <pre>$request:body
                   13238: 
                   13239: 2004-01-30  paf
                   13240: 
                   13241:        * src/classes/xdoc.C: bugfix: libxml: russian letters in attributes
                   13242:          or documents-results of transform now not &#04xx;
                   13243: 
                   13244:        * src/classes/date.C: bugfix: ^date::create[invalid fields now
                   13245:          produce exception.
                   13246: 
                   13247:        * src/: classes/date.C, include/pa_string.h, main/pa_string.C:
                   13248:          bugfix: ^date::create[invalid fields now produce exception.
                   13249: 
                   13250:        * ChangeLog, src/classes/date.C: bugfix: ^date::create[invalid
                   13251:          year] now produces exception. todo: check other fields
                   13252: 
                   13253: 2004-01-29  paf
                   13254: 
                   13255:        * src/include/pa_memory.h: typo error
                   13256: 
                   13257:        * src/include/pa_memory.h: bugfix: [potential] strdup copied one
                   13258:          more byte then specified, then zeroed it << useless and
                   13259:          potentially harmful(could gpf)
                   13260: 
                   13261: 2004-01-22  paf
                   13262: 
                   13263:        * src/classes/xdoc.C: bugfix: when stylesheet contains error, gpf
                   13264: 
                   13265:        * src/main/untaint.C: merged: bugfix from 3.1.1 on whitespace
                   13266:          optimization
                   13267: 
                   13268:        * src/main/untaint.C: bugfix: whitespace now optimized properly
                   13269:          [were bug: ^taint[1 & 2]="1 &2"
                   13270: 
                   13271:        * src/main/pa_globals.C: beauty: bigger buffer for xml-related
                   13272:          errors
                   13273: 
                   13274:        * src/main/pa_common.C: merged: bugfix from 3.1.1 on memory
                   13275:          overflow
                   13276: 
                   13277:        * src/main/pa_common.C: bugfix: buffer overflow * in libxml&xsl
                   13278:          error-reporting code * in parser-error reporting code [when no
                   13279:          @unhandled_exception defined]
                   13280: 
                   13281:          fixed in one place: my *snprintf override
                   13282: 
                   13283: 2004-01-13  paf
                   13284: 
                   13285:        * operators.txt: typo erro
                   13286: 
                   13287: 2003-12-25  paf
                   13288: 
                   13289:        * src/main/pa_common.C: bugfix: ^file::load[binary;http:// now not
                   13290:          garbled  [pieces after zero bytes were removed]
                   13291: 
                   13292: 2003-12-22  paf
                   13293: 
1.116     moko     13294:        * src/include/Makefile.am: bugfix: removed from dist:
                   13295:          src/include/pa_config_auto.h which were configured for
1.95      moko     13296:          make-dist-platform and badly updated proper config file in target
                   13297:          [when .tar used for updating existing source tree]
                   13298: 
                   13299:        * ChangeLog, operators.txt, src/classes/op.C,
                   13300:          src/include/pa_sql_connection.h,
                   13301:          src/include/pa_sql_driver_manager.h,
                   13302:          src/main/pa_sql_driver_manager.C, src/sql/pa_sql_driver.h:
                   13303:          feature: sql introducing ability to transcode charsets
                   13304: 
                   13305: 2003-12-19  paf
                   13306: 
                   13307:        * src/main/pa_sql_driver_manager.C: beauty: more straighforward
                   13308:          error message
                   13309: 
                   13310:        * src/main/pa_charset.C: bugfix: memory for charsethandler
                   13311:          structure for libxml now allocated properly
                   13312: 
                   13313: 2003-12-17  paf
                   13314: 
                   13315:        * src/types/pa_vfile.C: beauty: removed outdated cast
                   13316: 
                   13317:        * src/main/pa_common.C: bugfix: empty http response caused gpf
                   13318: 
                   13319:        * src/include/pa_string.h: bugfix: removed too strong a assert
                   13320: 
                   13321:        * src/main/pa_globals.C: bugfix: removed false warning [warning:
                   13322:          unreported xmlGenericErrors]
                   13323: 
                   13324: 2003-12-15  paf
                   13325: 
                   13326:        * src/classes/xdoc.C: bugfix: taint uri under ^xdoc::create{now
                   13327:          works}
                   13328: 
                   13329: 2003-12-11  paf
                   13330: 
                   13331:        * operators.txt, src/types/pa_vstatus.C:     !$status:pid process
                   13332:          id
                   13333:              !$status:tid thread id
                   13334: 
                   13335:        * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
                   13336:          main/pa_globals.C, main/pa_request.C, types/pa_vstatus.C:
                   13337:          bugfix(solaris): removed dependency on object initialization
                   13338:          order [one more place]
                   13339: 
                   13340:        * src/: classes/file.C, classes/mail.C, classes/op.C,
                   13341:          classes/xdoc.C, main/pa_request.C, types/pa_vimage.C,
                   13342:          types/pa_vmath.C, types/pa_vstatus.C: beauty cancel: gcc does not
                   13343:          understand that
                   13344: 
                   13345:        * src/: classes/file.C, classes/mail.C, classes/op.C,
                   13346:          classes/xdoc.C, include/pa_cache_managers.h,
                   13347:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   13348:          include/pa_stylesheet_manager.h, main/pa_request.C,
                   13349:          main/pa_stylesheet_manager.C, types/pa_vimage.C,
                   13350:          types/pa_vmath.C, types/pa_vstatus.C: beauty: removed redundant
                   13351:          ctor call [relying on implicit String::Body(cstr) call]
                   13352: 
                   13353:        * src/main/: pa_cache_managers.C, pa_sql_driver_manager.C,
                   13354:          pa_stylesheet_manager.C: bugfix(solaris): removed dependency on
                   13355:          object initialization order [two places]
                   13356: 
                   13357: 2003-12-10  paf
                   13358: 
                   13359:        * src/include/pa_sql_connection.h: bugfix: $status:sql.cache back
                   13360:          << time now ok
                   13361: 
                   13362:        * operators.txt, src/main/pa_sql_driver_manager.C,
                   13363:          src/main/pa_stylesheet_manager.C: $status:stylesheet.cache back
                   13364:          operational
                   13365: 
                   13366:        * ChangeLog, operators.txt, src/classes/xdoc.C,
                   13367:          src/include/pa_charset.h, src/include/pa_sql_connection.h,
                   13368:          src/main/pa_charset.C, src/main/pa_sql_driver_manager.C,
                   13369:          src/main/pa_string.C, src/types/pa_vxdoc.h: $status:sql.cache
                   13370:          back operational
                   13371: 
                   13372: 2003-12-02  paf
                   13373: 
                   13374:        * src/types/pa_vmail.C: bugfix:
                   13375:          ^mail:send[$.file[$.value[>>xxxx<<]] now untaints properly [were:
                   13376:          as-is forced]
                   13377: 
                   13378:        * src/main/pa_xml_io.C: bugfix: on some platforms one can't throw
                   13379:          exceptions out of libxml callbacks: reimplemented error handling
                   13380:          of http://localhost, parser://method and safemode check callbacks
                   13381: 
                   13382:        * src/main/pa_string.C: bugfix: SPARC gpf on %4!=0 address int ref
                   13383:          [merged from HEAD]
                   13384: 
                   13385:        * src/classes/image.C: nothing: comment removed
                   13386: 
                   13387:        * src/main/pa_string.C: bugfix: sparc gpf on reading %4!=0
                   13388:          addresses to int
                   13389: 
                   13390: 2003-12-01  paf
                   13391: 
                   13392:        * src/main/pa_xml_io.C: bugfix: typo
                   13393: 
                   13394:        * src/main/pa_globals.C: bugfix: win32: compile prob
                   13395: 
                   13396:        * src/classes/xdoc.C: bugfix: typo
                   13397: 
                   13398:        * src/main/pa_xml_io.C: todo: safe mode check not to throw
                   13399:          exception
                   13400: 
                   13401:        * src/main/pa_xml_io.C: bugfix: http://localhost typo error
                   13402: 
                   13403: 2003-11-28  paf
                   13404: 
                   13405:        * src/main/pa_xml_io.C: installed safe-mode checker as filter of
                   13406:          all xml documents read
                   13407: 
                   13408:        * src/main/pa_xml_io.C: http://localhost/ now checked for safe mode
                   13409: 
                   13410:        * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
                   13411:          include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
                   13412:          replaced original open mech of xdoc::create & co to use libxml
                   13413:          open, so that this would work for root document todo: safe mode
                   13414:          checks to libxml: ideally to some 1 point
                   13415: 
                   13416:        * src/main/pa_xml_io.C: comment
                   13417: 
                   13418:        * operators.txt, src/main/pa_xml_io.C: leading / in
                   13419:          http://parser[abscent params]
                   13420: 
                   13421:        * operators.txt, src/include/pa_request.h, src/main/pa_xml_io.C:
                   13422:          works.  todo: maybe replace original open mech of xdoc::create &
                   13423:          co to use libxml open, so that this would work for root document
                   13424: 
                   13425:          $xdoc[^xdoc::create{<?xml version="1.0"?> <!DOCTYPE test SYSTEM
                   13426:          "parser://method/params/here"> <test>   &test^; </test> }]
                   13427: 
                   13428:          ^taint[^xdoc.string[]]
                   13429: 
                   13430:          @method[param] <!ENTITY test
                   13431:          "test-entity-value+$form:user+$param!">
                   13432: 
                   13433: 2003-11-27  paf
                   13434: 
                   13435:        * src/main/pa_xml_io.C: libxml: started parser://methodcall/params
                   13436: 
                   13437:        * src/classes/date.C: bugfix: typo error
                   13438: 
                   13439: 2003-11-26  paf
                   13440: 
                   13441:        * operators.txt, src/include/Makefile.am, src/include/pa_globals.h,
                   13442:          src/main/Makefile.am, src/main/main.vcproj,
                   13443:          src/main/pa_globals.C, src/main/pa_request.C,
                   13444:          src/include/pa_xml_io.h, src/main/pa_xml_io.C: simplification:
                   13445:          xml errors to hash<thread_id,error> reorganization: xml io moved
                   13446:          to pa_xml_io.C/h
                   13447: 
                   13448:        * src/types/pa_value.h: warnings: --
                   13449: 
                   13450: 2003-11-25  paf
                   13451: 
                   13452:        * src/classes/table.C: bugfix: wrong sequence. [sadly no waring
                   13453:          whatever)
                   13454: 
                   13455:        * src/classes/table.C: bugfix: a, c?x:y, z in gcc considered(?) as
                   13456:          a, (c?x:y, z)
                   13457: 
                   13458:        * src/main/untaint.C: bugfix: consequences of not reading this
                   13459:          comment: CORD_pos_chars_left /* Number of characters in cache.
                   13460:          <= 0 ==> none    */
                   13461: 
                   13462:        * src/include/pa_array.h: removed needless checks
                   13463: 
                   13464: 2003-11-24  paf
                   13465: 
                   13466:        * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
                   13467:          removed limit: now $form:xxx can be accessed anytime, even in
                   13468:          @auto/conf [and request/response:charset still can be changed
                   13469:          anytime]
                   13470: 
                   13471:        * src/main/pa_common.C: bugfix: ^file::load[binary;http://...]
                   13472:          now not transcodes response body
                   13473: 
                   13474:        * operators.txt, src/types/pa_vxnode.C, src/types/pa_vxnode.h:
                   13475:          $xdoc[^xdoc::create[test]] $tn[^xdoc.createTextNode[text node
                   13476:          value]] $dummy[^xdoc.firstChild.appendChild[$tn]]
                   13477:          $xdoc.firstChild.firstChild.nodeValue[different]
                   13478:          ^taint[^xdoc.string[]]
                   13479: 
                   13480:        * src/: include/pa_hash.h, types/types.vcproj: linker HPUX nongnu
                   13481:          workaround: static Hash::allocates -> static Hash_allocates
                   13482: 
                   13483: 2003-11-21  paf
                   13484: 
1.116     moko     13485:        * Makefile.am, configure, configure.in, src/classes/Makefile.am,
                   13486:          src/include/pa_config_auto.h.in, src/targets/cgi/Makefile.am,
                   13487:          src/types/Makefile.am: rearrange: gd&smtp moved to src/lib
1.95      moko     13488: 
                   13489:        * src/classes/classes.vcproj: rearrange: gd&smtp moved to src/lib
                   13490: 
                   13491:        * src/classes/mail.C: bugfix: typo
                   13492: 
                   13493:        * parser3.sln, src/classes/Makefile.am, src/lib/Makefile.am,
1.116     moko     13494:          src/lib/gd/Makefile.am, src/lib/gd/gd.vcproj, src/lib/gd/gif.C,
                   13495:          src/lib/gd/gif.h, src/lib/gd/gifio.C, src/lib/gd/mtables.h,
                   13496:          src/lib/smtp/Makefile.am, src/lib/smtp/comms.C,
                   13497:          src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
1.95      moko     13498:          src/lib/smtp/smtp.vcproj: rearrange: gd&smtp moved to src/lib
                   13499: 
                   13500:        * src/main/pa_exec.C: bug in safe mode
                   13501: 
                   13502:        * src/include/Makefile.am: pa_xml_exception.h
                   13503: 
                   13504:        * src/targets/isapi/parser3isapi.C: more warnings --
                   13505: 
                   13506: 2003-11-20  paf
                   13507: 
                   13508:        * src/: classes/math.C, classes/op.C, classes/string.C,
                   13509:          main/pa_charset.C, main/pa_dictionary.C, main/pa_string.C,
                   13510:          types/pa_value.C, main/pa_dir.C, main/pa_table.C: more warnings
                   13511:          --
                   13512: 
                   13513:        * src/: main/pa_charset.C, main/pa_string.C, types/pa_vxnode.C:
                   13514:          more warnings --
                   13515: 
                   13516:        * src/classes/xdoc.C: more warnings --
                   13517: 
                   13518:        * src/classes/: date.C, image.C, xdoc.C: more warnings --
                   13519: 
                   13520:        * src/: main/pa_sql_driver_manager.C, main/untaint.C,
                   13521:          types/pa_vcookie.C, types/pa_vmail.C: more warnings --
                   13522: 
                   13523:        * src/: classes/date.C, classes/file.C, classes/hash.C,
                   13524:          classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
                   13525:          classes/table.C, include/pa_cache_managers.h,
                   13526:          include/pa_stylesheet_connection.h, main/pa_request.C,
                   13527:          types/pa_vdate.h, types/pa_vhashfile.C, types/pa_vimage.h,
                   13528:          types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: more warnings
                   13529:          --
                   13530: 
                   13531:        * src/main/: execute.C, pa_request.C: old forgotten todo: when
                   13532:          can't report problem (undefined @unhandled_exception) problem
                   13533:          source string were not reported
                   13534: 
                   13535:        * src/: classes/classes.C, classes/classes.h, classes/date.C,
                   13536:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   13537:          classes/hashfile.C, classes/image.C, classes/int.C,
                   13538:          classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
                   13539:          classes/response.C, classes/string.C, classes/table.C,
                   13540:          classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   13541:          include/pa_array.h, include/pa_cache_managers.h,
                   13542:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   13543:          include/pa_config_fixed.h, include/pa_dictionary.h,
                   13544:          include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
                   13545:          include/pa_globals.h, include/pa_hash.h, include/pa_memory.h,
                   13546:          include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
                   13547:          include/pa_request.h, include/pa_request_charsets.h,
                   13548:          include/pa_request_info.h, include/pa_sapi.h, include/pa_socks.h,
                   13549:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   13550:          include/pa_stack.h, include/pa_string.h,
                   13551:          include/pa_stylesheet_connection.h,
                   13552:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   13553:          include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
                   13554:          include/pa_xml_exception.h, lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
                   13555:          lib/sdbm/apr_file_io.C, lib/sdbm/apr_strings.C, main/compile.C,
                   13556:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   13557:          main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
                   13558:          main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
                   13559:          main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
                   13560:          main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
                   13561:          main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
                   13562:          main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
                   13563:          main/pa_uue.C, main/pa_xml_exception.C, main/untaint.C,
                   13564:          sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
                   13565:          targets/cgi/parser3.C, targets/isapi/pa_threads.C,
                   13566:          targets/isapi/parser3isapi.C, types/pa_junction.h,
                   13567:          types/pa_method.h, types/pa_value.C, types/pa_value.h,
                   13568:          types/pa_vbool.h, types/pa_vclass.C, types/pa_vclass.h,
                   13569:          types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
                   13570:          types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
                   13571:          types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
                   13572:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
                   13573:          types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
                   13574:          types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
                   13575:          types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
                   13576:          types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
                   13577:          types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
                   13578:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
                   13579:          types/pa_vresponse.h, types/pa_vstateless_class.C,
                   13580:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   13581:          types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
                   13582:          types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
                   13583:          types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   13584:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
                   13585:          types/pa_wcontext.h, types/pa_wwrapper.h: static const char *
                   13586:          const IDENT
                   13587: 
                   13588:        * src/: include/pa_array.h, include/pa_pool.h,
                   13589:          include/pa_request.h, include/pa_string.h, include/pa_table.h,
                   13590:          main/compile_tools.h, main/pa_common.C, types/pa_vhash.h,
                   13591:          types/pa_wcontext.h: more warnings --
                   13592: 
                   13593:        * src/: classes/classes.vcproj, classes/date.C, classes/double.C,
                   13594:          classes/file.C, classes/hash.C, classes/hashfile.C,
                   13595:          classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
                   13596:          classes/memory.C, classes/op.C, classes/string.C,
                   13597:          classes/table.C, classes/xdoc.C, classes/xnode.C,
                   13598:          include/pa_config_includes.h, include/pa_operation.h,
                   13599:          include/pa_sql_connection.h, include/pa_table.h,
                   13600:          include/pa_types.h, lib/ltdl/config_fixed.h,
                   13601:          lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/maketables.c,
                   13602:          lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
                   13603:          lib/sdbm/apr_file_io.C, main/compile.tab.C, main/execute.C,
                   13604:          main/main.vcproj, main/pa_cache_managers.C, main/pa_charset.C,
                   13605:          main/pa_common.C, main/pa_dir.C, main/pa_exec.C,
                   13606:          main/pa_globals.C, main/pa_os.C, main/pa_request.C,
                   13607:          main/pa_string.C, main/pa_table.C, targets/cgi/parser3.vcproj,
                   13608:          targets/isapi/parser3isapi.vcproj, types/pa_value.h,
                   13609:          types/pa_vconsole.h, types/pa_vdate.h, types/pa_vfile.h,
                   13610:          types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vimage.h,
                   13611:          types/pa_vmail.C, types/pa_vobject.C,
                   13612:          types/pa_vstateless_class.h, types/pa_vtable.C,
                   13613:          types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
                   13614:          types/pa_vxnode.h, types/types.vcproj: turned on warnings level4
                   13615:          on all projects (except libltdl=off & libsdbm=level3) found
                   13616:          several unitialized vars
                   13617: 
                   13618: 2003-11-19  paf
                   13619: 
                   13620:        * src/classes/op.C: more ansi C++ comp
                   13621: 
                   13622:        * operators.txt, src/classes/op.C, src/include/pa_request.h,
                   13623:          src/main/pa_request.C: ^cache[...]{body}{catch block with
                   13624:          $exception.handled[cache] meaning "get expired cache, if any.
                   13625:          else error"}
                   13626: 
                   13627:        * src/: classes/op.C, include/pa_os.h, include/pa_request.h,
                   13628:          main/pa_common.C: cache: ^cache[] fallback todo: kinda ^try:
                   13629:          ^cache[...]{body}{catch code with $exception.cache field}
                   13630: 
                   13631: 2003-11-12  paf
                   13632: 
                   13633:        * src/classes/xnode.C: replaceChild: 2nd param now named oldChild
                   13634:          [copy/paste bug]
                   13635: 
                   13636: 2003-11-11  paf
                   13637: 
                   13638:        * src/types/: pa_value.h, pa_vfile.h: more C++ compatible [HP C++
                   13639:          failed]
                   13640: 
                   13641: 2003-11-10  paf
                   13642: 
                   13643:        * src/types/pa_vconsole.h: flush
                   13644: 
                   13645:        * operators.txt, src/main/pa_request.C, src/types/Makefile.am,
                   13646:          src/types/types.vcproj, src/types/pa_vconsole.h: $console:line
                   13647:          read/write  [for nntp]
                   13648: 
                   13649:        * operators.txt: mysql: transaction support: ?autocommit=0
                   13650: 
                   13651:        * operators.txt: comment: updated
                   13652: 
                   13653:        * src/types/: pa_vhashfile.C, pa_vhashfile.h: add: hashfile old
                   13654:          serialize version and exipire now removes entries
                   13655: 
                   13656:        * operators.txt: ^hashfile.delete[] removes files altogether [and
                   13657:          dir, if could]
                   13658: 
                   13659:        * src/: classes/hashfile.C, include/pa_common.h, main/pa_common.C,
                   13660:          types/pa_vhashfile.C, types/pa_vhashfile.h: ^hashfile.delete[]
                   13661:          removes files altogether [and dir, if could]
                   13662: 
                   13663:        * src/lib/sdbm/sdbm.c: bugfix: sdbm: .h said it's OK to remove
                   13664:          nonexistent pair. .c coded that that was error. fixed
                   13665: 
                   13666:        * src/types/pa_vhashfile.C: sdbm: exception type change to
                   13667:          file.access [regretfull can't split it to different exceptions
                   13668:          without modifying sdbm source wich would prefer not to]
                   13669: 
                   13670: 2003-11-07  paf
                   13671: 
                   13672:        * src/: classes/date.C, classes/file.C, classes/hash.C,
                   13673:          classes/hashfile.C, classes/image.C, classes/table.C,
                   13674:          classes/xdoc.C, include/Makefile.am, include/pa_array.h,
                   13675:          include/pa_pool.h, include/pa_request.h, main/Makefile.am,
                   13676:          main/execute.C, main/main.vcproj, main/pa_pool.C,
                   13677:          main/pa_request.C, targets/cgi/parser3.C, types/pa_vclass.C,
                   13678:          types/pa_vclass.h, types/pa_vhashfile.h, types/pa_vobject.h,
                   13679:          types/pa_vstateless_class.h: resurrected: pool idea. now only for
                   13680:          destructing objects at request processing end
                   13681: 
                   13682: 2003-11-06  paf
                   13683: 
                   13684:        * src/: classes/Makefile.am, types/Makefile.am: .am sdbm INCLUDES
                   13685:          updates
                   13686: 
                   13687:        * parser3.sln, src/targets/cgi/Makefile.am: .vcproj & .am updated
                   13688:          to include sdbm
                   13689: 
1.116     moko     13690:        * src/include/: pa_config_includes.h, pa_version.h: our
                   13691:          replacements of max& co only for cpp
1.95      moko     13692: 
                   13693:        * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C: move to
                   13694:          upper dir, .am updated
                   13695: 
                   13696:        * tests/todo.txt: hashfile: done
                   13697: 
                   13698:        * operators.txt, src/types/pa_vhashfile.C: hashfile: clear &
                   13699:          expiration [time in value. todo: move time to key]
                   13700: 
                   13701:        * src/types/pa_vhashfile.C: hashfile: foreach body can bodify $self
                   13702: 
                   13703:        * src/types/pa_vhashfile.C: hashfile: clear now works [were trying
                   13704:          to do that in foreach, no errors, but surely wrong]
                   13705: 
                   13706:        * operators.txt, src/types/pa_vhashfile.C,
                   13707:          src/types/pa_vhashfile.h: hashfile: clear and proper locking
                   13708: 
                   13709:        * operators.txt, src/classes/hash.C, src/classes/hashfile.C,
                   13710:          src/types/pa_vhashfile.C, src/types/pa_vhashfile.h: hashfile:
                   13711:          foreach
                   13712: 
                   13713:        * src/classes/hashfile.C, src/types/pa_vhashfile.C,
                   13714:          src/types/pa_vhashfile.h, operators.txt: hashfile: hash
                   13715: 
                   13716:        * operators.txt, src/classes/hashfile.C, src/types/pa_vhashfile.C,
                   13717:          src/types/pa_vhashfile.h, tests/todo.txt: hashfile: delete
                   13718: 
                   13719:        * src/: include/pa_memory.h, targets/cgi/parser3.C,
                   13720:          types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
                   13721:          types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile implemented
                   13722:          get/put [raw]
                   13723: 
                   13724:        * src/: classes/op.C, main/pa_os.C: just linked
                   13725: 
                   13726:        * src/: classes/xdoc.C, classes/xnode.C, types/pa_vxnode.h:
                   13727:          XmlException changes
                   13728: 
                   13729:        * src/: include/pa_charset.h, include/pa_globals.h,
                   13730:          include/pa_stylesheet_connection.h, main/pa_exception.C:
                   13731:          XmlException changes
                   13732: 
                   13733:        * src/lib/sdbm/: sdbm.c, sdbm.vcproj: just compiled
                   13734: 
                   13735:        * src/: include/pa_common.h, include/pa_exception.h,
                   13736:          main/main.vcproj, main/pa_common.C, include/pa_os.h,
                   13737:          include/pa_xml_exception.h, main/pa_os.C, lib/sdbm/sdbm.vcproj,
                   13738:          main/pa_xml_exception.C: locking move to pa_os [along with
                   13739:          pa_sleep] apr-impl locking done
                   13740: 
                   13741:        * configure, configure.in, operators.txt, parser3.sln,
                   13742:          src/classes/classes.vcproj, src/classes/hashfile.C,
                   13743:          src/classes/xdoc.C, src/include/pa_config_fixed.h,
                   13744:          src/include/pa_exception.h, src/include/pa_globals.h,
                   13745:          src/include/pa_memory.h, src/include/pa_version.h,
                   13746:          src/lib/ltdl/libltdl.vcproj, src/lib/ltdl/libltdl.vcproj.vspscc,
                   13747:          src/lib/ltdl/ltdl.vcproj, src/lib/ltdl/ltdl.vcproj.vspscc,
                   13748:          src/main/compile.tab.C, src/main/main.vcproj,
                   13749:          src/main/pa_charset.C, src/targets/cgi/parser3.vcproj,
                   13750:          src/types/Makefile.am, src/types/pa_vhash.C,
                   13751:          src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
                   13752:          src/types/pa_vxnode.h, src/types/types.vcproj: hashfile: started
                   13753:          again with sdbm from apache
                   13754: 
                   13755: 2003-11-05  paf
                   13756: 
                   13757:        * src/: classes/classes.vcproj, include/pa_config_fixed.h,
                   13758:          main/main.vcproj, targets/cgi/parser3.vcproj: not has to be in
                   13759:          \parser3project dir anymore
                   13760: 
                   13761:        * src/main/pa_charset.C: bugfix: had broken binary search [copied
                   13762:          thoughtlessly from xalan]
                   13763: 
                   13764:        * src/lib/sdbm/: Makefile.am, sdbm.c, sdbm_hash.c, sdbm_lock.c,
                   13765:          sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h: original
                   13766:          from httpd-2.0.43\srclib\apr-util\dbm\sdbm
                   13767: 
                   13768:        * src/main/helpers/CaseFolding.txt:
                   13769:          http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
                   13770: 
                   13771: 2003-11-04  paf
                   13772: 
                   13773:        * operators.txt: comment: ^mail:send[$.options[
                   13774: 
                   13775:        * src/classes/table.C: compiled on unix
                   13776: 
1.116     moko     13777:        * src/classes/Makefile.am: classes.C to rebuild last
1.95      moko     13778: 
                   13779:        * src/classes/mail.C: compiled on unix
                   13780: 
                   13781:        * operators.txt, src/classes/mail.C, src/types/pa_vmail.C,
                   13782:          src/types/pa_vmail.h:     !^mail:send[
                   13783:                  $.options[unix: string to append to sendmail command
                   13784:          line]
                   13785: 
                   13786:        * operators.txt, src/classes/table.C, src/main/pa_string.C,
                   13787:          tests/todo.txt: ^table.save[...          $.separator[^#09]
                   13788:          $.encloser["] <nothing> by default
                   13789: 
                   13790:        * operators.txt, src/classes/table.C, tests/todo.txt: ^table::load
                   13791:                 !$.separator[^#09]         !$.encloser["] <nothing> by
                   13792:          default
                   13793: 
                   13794: 2003-11-03  paf
                   13795: 
                   13796:        * operators.txt, src/classes/table.C, src/main/pa_common.C:
                   13797:          ^table::load[; options:         !$.column-separator[^#09]
                   13798:          !$.column-encloser["]
                   13799: 
                   13800:        * operators.txt, src/include/pa_config_fixed.h,
                   13801:          src/types/pa_vrequest.C: $request:document-root
                   13802: 
                   13803:        * src/targets/cgi/parser3.C: beauty: SIGUSRX removed qs= printing
                   13804:          [already included into uri=xxx]
                   13805: 
                   13806:        * operators.txt, src/classes/image.C, tests/todo.txt:
                   13807:          ^image.gif[filename] for $response:download
                   13808: 
                   13809:        * src/classes/date.C: minor precaution
                   13810: 
                   13811:        * operators.txt, src/classes/date.C:     !^date::unix-timestamp()
                   13812:              !^date.unix-timestamp[]
                   13813: 
                   13814: 2003-10-30  paf
                   13815: 
                   13816:        * operators.txt, src/classes/date.C, src/types/pa_vdate.h: merged
                   13817:          from 3.0.8: ^date.roll[TZ;GMT] $date.hour
                   13818: 
                   13819:        * src/classes/: date.C, image.C: improvement diagnostics:
                   13820:          $now[^date::create[$undefined]] now is error
                   13821: 
                   13822:        * src/main/pa_common.C: read errors would now be reported 'actually
                   13823:          read -1 bytes'
                   13824: 
                   13825: 2003-10-24  paf
                   13826: 
                   13827:        * Makefile.am, src/classes/Makefile.am, src/lib/cord/Makefile.am,
                   13828:          src/lib/md5/Makefile.am, src/lib/pcre/Makefile.am,
                   13829:          src/main/Makefile.am, src/targets/cgi/Makefile.am,
                   13830:          src/targets/isapi/Makefile.am: .dsp/w -> .vcproj/sln
                   13831: 
                   13832: 2003-10-22  paf
                   13833: 
                   13834:        * src/include/pa_request.h: fixed: $h[^hash::create[]] $$h[1]
                   13835: 
                   13836: 2003-10-21  paf
                   13837: 
                   13838:        * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
                   13839:          fixed: string.match[g] without <'> option produced columns with
                   13840:          NULL's, which gpf'ed at table.save time
                   13841: 
                   13842:        * src/: classes/op.C, include/pa_request.h: fixed: false 'endless
                   13843:          recoursion' message with intensive throw-catches fixed: incorrect
                   13844:          name and line (one name upper then needed) in error message about
                   13845:          problems inside try block
                   13846: 
                   13847: 2003-10-10  paf
                   13848: 
                   13849:        * src/: include/pa_string.h, main/compile.tab.C: CORD_chr does not
                   13850:          check offset argument for validity did that in String::Body::pos
                   13851:          myself http://i2/tasks/edit/?id=4577425257580789777
                   13852: 
                   13853: 2003-10-07  paf
                   13854: 
                   13855:        * src/main/: compile.tab.C, compile.y: ^if ( better error:
                   13856:          .html(1:4): parse error, expecting `'['' or `'{'' or `'(''  now
                   13857: 
                   13858: 2003-10-03  paf
                   13859: 
                   13860:        * parser3.sln, src/include/pa_dictionary.h,
                   13861:          src/main/pa_dictionary.C, src/main/pa_string.C,
                   13862:          src/targets/cgi/parser3.vcproj: dictionary optimized by
                   13863:          precalculating cstr&length
                   13864: 
                   13865: 2003-10-02  paf
                   13866: 
                   13867:        * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
                   13868:          main/execute.C, main/pa_request.C, main/pa_sql_driver_manager.C,
                   13869:          main/pa_stylesheet_manager.C: bugfix: ^throw context were
                   13870:          saved/restored incompletely http://www.parser.ru/forum/?id=21484
                   13871: 
                   13872: 2003-09-30  paf
                   13873: 
                   13874:        * src/main/pa_string.C: string::replace bug fix [were ignoring
                   13875:          occurrances after lang-mismatched
                   13876: 
                   13877: 2003-09-29  paf
                   13878: 
                   13879:        * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: generated by
                   13880:          helper
                   13881: 
                   13882:        * src/main/pa_string.C: string::serialize bug fix with
                   13883:          zero-terminator
                   13884: 
                   13885:        * src/classes/table.C: ^nameless_table.save column row now has no
                   13886:          \t at the end
                   13887: 
                   13888:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
                   13889:          @postprocess  now takes $response:body/download
                   13890: 
                   13891:        * src/classes/form.C: better error message: MAX_POST_SIZE_NAME to
                   13892:          error message
                   13893: 
                   13894:        * src/classes/string.C: bugfix: s.right(>s.length) returned nothing
                   13895: 
                   13896:        * src/classes/table.C: bugfix: flip: must produce nameless
                   13897:          http://i2/tasks/edit/?id=4573405524674081244
                   13898: 
                   13899:        * src/: include/pa_charset.h, main/pa_charset.C, main/pa_string.C,
                   13900:          main/helpers/simple_folding.pl: utf-8 upper/lower
                   13901: 
                   13902:        * src/main/pa_common.C: bugfix: utf signature were not ignored due
                   13903:          to typo error http://i2/tasks/edit/?id=4573354650786434584
                   13904: 
                   13905: 2003-09-26  paf
                   13906: 
                   13907:        * src/main/untaint.C: removed needless field
                   13908: 
                   13909:        * src/main/untaint.C: removed needless const
                   13910: 
                   13911:        * src/: include/pa_string.h, main/pa_common.C, main/pa_string.C:
                   13912:          String.for_each bug fixed [omited one-char cases]
                   13913: 
                   13914:        * src/include/pa_stack.h: bugfix: before collecting garbage,
                   13915:          runtime-executor stack were cleared... BADLY
                   13916: 
                   13917:        * src/main/pa_string.C: ^stirng.replace code used old
                   13918:          param-convention on langs.append, fixed that search fo the like,
                   13919:          found none
                   13920: 
                   13921:        * src/: classes/op.C, include/pa_string.h, main/pa_string.C:
                   13922:          string::serialize/deserialize implemented Language enum assigned
                   13923:          meaningful letters [more convinient for debugging. read warning
                   13924:          before adding/changing anything]
                   13925: 
                   13926: 2003-09-25  paf
                   13927: 
                   13928:        * src/: include/pa_string.h, include/pa_version.h,
                   13929:          main/pa_string.C, main/untaint.C: templates and anonymous unions
                   13930:          differences on unix
                   13931: 
                   13932:        * parser3.sln, src/classes/file.C, src/classes/image.C,
                   13933:          src/classes/mail.C, src/classes/op.C, src/classes/table.C,
                   13934:          src/classes/xdoc.C, src/classes/xnode.C,
                   13935:          src/include/pa_cache_managers.h, src/include/pa_charset.h,
                   13936:          src/include/pa_charsets.h, src/include/pa_common.h,
                   13937:          src/include/pa_request.h, src/include/pa_sql_driver_manager.h,
                   13938:          src/include/pa_string.h, src/include/pa_stylesheet_manager.h,
                   13939:          src/include/pa_table.h, src/lib/cord/cordbscs.c,
                   13940:          src/lib/cord/cordprnt.c, src/lib/cord/cordxtra.c,
                   13941:          src/lib/cord/include/cord.h, src/main/compile.tab.C,
                   13942:          src/main/compile_tools.h, src/main/pa_charset.C,
                   13943:          src/main/pa_charsets.C, src/main/pa_common.C, src/main/pa_exec.C,
                   13944:          src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
                   13945:          src/main/pa_string.C, src/main/pa_stylesheet_manager.C,
                   13946:          src/main/untaint.C, src/types/pa_value.h, src/types/pa_vimage.C,
                   13947:          src/types/pa_vmail.C, src/types/pa_vmath.C,
                   13948:          src/types/pa_vstateless_class.h, src/types/pa_vstatus.C,
                   13949:          src/types/pa_vxnode.C: string_fragments_to_cord merged to HEAD
                   13950: 
                   13951:        * src/main/: compile.tab.C, pa_string.C: string: debug: .v()
                   13952:          functions aligned to that of eeparser3 look
                   13953: 
                   13954:        * src/lib/cord/cordprnt.c: removed warnings
                   13955: 
                   13956: 2003-09-24  paf
                   13957: 
                   13958:        * src/: classes/file.C, classes/image.C, classes/mail.C,
                   13959:          classes/op.C, classes/xdoc.C, classes/xnode.C,
                   13960:          include/pa_cache_managers.h, include/pa_charset.h,
                   13961:          include/pa_charsets.h, include/pa_common.h, include/pa_request.h,
                   13962:          include/pa_sql_driver_manager.h, include/pa_string.h,
                   13963:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   13964:          main/compile_tools.h, main/pa_charset.C, main/pa_charsets.C,
                   13965:          main/pa_common.C, main/pa_exec.C, main/pa_request.C,
                   13966:          main/pa_sql_driver_manager.C, main/pa_string.C,
                   13967:          main/pa_stylesheet_manager.C, main/untaint.C, types/pa_value.h,
                   13968:          types/pa_vimage.C, types/pa_vmail.C, types/pa_vmath.C,
                   13969:          types/pa_vstateless_class.h, types/pa_vstatus.C,
                   13970:          types/pa_vxnode.C: v() functions of String::Body,
                   13971:          String::Languages and String itself StringBody->String::Body
                   13972: 
                   13973:        * src/: include/pa_string.h, lib/cord/cordbscs.c,
                   13974:          lib/cord/include/cord.h: CORD_append_block showed no efficiency =
                   13975:          never optimized anything.  todo: somehow speed up harder cases:
                   13976:          concatenationA+concatenationB when last block of A and first of B
                   13977:          contain same letters
                   13978: 
                   13979:        * src/: include/pa_string.h, lib/cord/cordbscs.c,
                   13980:          lib/cord/include/cord.h: langs: speed up by joining adjucent
                   13981:          blocks of same char [CORD_append_block]
                   13982: 
                   13983:        * src/: include/pa_string.h, lib/cord/cordbscs.c,
                   13984:          lib/cord/include/cord.h, main/pa_string.C: aval/ works! todo:
                   13985:          save space by extending blocks when appending block with c ==
                   13986:          lastblock.c
                   13987: 
                   13988:        * src/: include/pa_string.h, main/pa_string.C: aval is not actually
                   13989:          working yet :( but more working &understood :)
                   13990: 
                   13991:        * src/: classes/table.C, include/pa_string.h,
                   13992:          lib/cord/include/cord.h, main/pa_string.C: aval/ works!
                   13993: 
                   13994: 2003-09-23  paf
                   13995: 
                   13996:        * src/main/untaint.C: $a[ok!] $a works!
                   13997: 
                   13998:        * src/main/untaint.C: something even more works :)
                   13999: 
                   14000:        * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
                   14001:          something more works :)
                   14002: 
                   14003:        * src/: include/pa_string.h, lib/cord/cordbscs.c,
                   14004:          lib/cord/cordxtra.c: something already works :)
                   14005: 
                   14006:        * src/: include/pa_string.h, main/untaint.C: just compiled todo:
                   14007:          serialize&deserialize
                   14008: 
                   14009:        * src/: classes/table.C, include/pa_string.h, lib/cord/cordbscs.c,
                   14010:          lib/cord/cordxtra.c, lib/cord/include/cord.h, main/pa_string.C,
                   14011:          main/untaint.C: main idea implemented, details left
                   14012: 
                   14013: 2003-09-22  paf
                   14014: 
                   14015:        * src/: classes/memory.C, include/pa_memory.h: #ifdef GC_DEBUG
                   14016: 
                   14017:        * src/classes/xnode.C: copy/paste comment bugfix
                   14018: 
                   14019:        * src/: include/pa_memory.h, main/pa_globals.C: when xml memory
                   14020:          allocator returns 0, just die.
                   14021:          http://i2/tasks/edit/?id=4570798492410259445
                   14022: 
                   14023:        * src/classes/xdoc.C: copy/paste comment bugfix
                   14024: 
                   14025:        * src/classes/: xdoc.C, xnode.C: new DOM2 methods from Alexandr
                   14026:          Egorov <egr> (all?) xdoc: createAttributeNS createElementNS
                   14027:          xnode: getAttributeNS setAttributeNS removeAttributeNS
                   14028:          getAttributeNodeNS setAttributeNodeNS hasAttribute hasAttributeNS
                   14029: 
                   14030:        * src/lib/cord/cordxtra.c: CORD_pos bugfix [failed to find 8bit
                   14031:          chars due to bitwise operation signed-char error]
                   14032: 
                   14033: 2003-09-19  paf
                   14034: 
                   14035:        * src/types/pa_wcontext.C: output message: more practical
                   14036:          suggestion
                   14037: 
                   14038:        * src/main/pa_common.C, operators.txt: merged
                   14039:          $f[^file::load[binary;http://...]] $f.tables
                   14040: 
                   14041: 2003-09-02  paf
                   14042: 
                   14043:        * src/main/pa_common.C: printf is buffered, write(1 is not. can't
                   14044:          flush stdout without referencing 'stdout' symbol. to hell with
                   14045:          non-ansi libraries without 'stdout' symbol
                   14046: 
                   14047:        * src/main/pa_common.C: got rid of 'stdout' symbol reference on
                   14048:          unix (users reported problems with some old libc)
                   14049: 
                   14050:        * src/types/pa_vdate.h: forgot initializer
                   14051: 
                   14052: 2003-09-01  paf
                   14053: 
                   14054:        * src/: classes/date.C, include/pa_common.h, main/compile.tab.C,
                   14055:          main/pa_common.C, types/pa_vdate.h: $date.TZ ^date.roll[TZ;new
                   14056:          zone]
                   14057: 
                   14058:        * src/classes/image.C: memory handling bugs [unpatched 'new' calls]
                   14059: 
                   14060: 2003-08-19  paf
                   14061: 
                   14062:        * src/types/: pa_value.C, pa_value.h, pa_vdate.h, pa_vrequest.C,
                   14063:          pa_vstring.h, pa_vxdoc.C, pa_vxnode.C: bark intefrace obsoleted,
                   14064:          simplified a little
                   14065: 
                   14066:        * src/types/: pa_vhash.C, pa_vhash.h: _default+foreach bug refix
                   14067:          [lost fix from 3.0.8]
                   14068: 
                   14069:        * src/types/pa_vcookie.C: in VC7 if(type var=xxx){ }else{   now
                   14070:          visible here }
                   14071: 
                   14072:          bug fix
                   14073: 
                   14074:        * src/: include/pa_memory.h, types/pa_value.h: -= few warnings
                   14075: 
                   14076:        * src/main/compile.tab.C: initialized couple of variables about
                   14077:          which user reported runtime problems when parser were compiled
                   14078:          with VC7, warning level4.  study shows that later in bison
                   14079:          they've fixed that. would migrate to latest bison someday
                   14080: 
                   14081:        * src/types/pa_vmail.C: turned  off recoding in gmime (were still
                   14082:          recoding headers)
                   14083: 
                   14084:        * src/types/pa_vmail.C: works as before, same charset problems:
                   14085:          gmime recodes to UTF-8 only headers, not body. so not recoding
                   14086:          anything for now
                   14087: 
                   14088:        * src/types/: pa_vmail.C, pa_vmail.h: parses headers, still
                   14089:          problems with body
                   14090: 
                   14091:        * src/types/pa_vmail.C: mail_receive just compiled
                   14092: 
                   14093: 2003-08-18  paf
                   14094: 
                   14095:        * src/: classes/classes.vcproj, include/pa_config_fixed.h,
                   14096:          main/main.vcproj, types/types.vcproj: win32: continued process
                   14097:          detaching from \parser3project directory
                   14098: 
                   14099:        * gnu.dsp, parser3.dsw, src/classes/classes.dsp,
                   14100:          src/lib/cord/cord.dsp, src/lib/ltdl/libltdl.dsp,
                   14101:          src/lib/md5/md5.dsp, src/lib/pcre/pcre.dsp,
                   14102:          src/lib/pcre/pcre_dftables.dsp,
                   14103:          src/lib/pcre/pcre_parser_ctype.dsp, src/main/main.dsp,
                   14104:          src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
                   14105:          src/types/types.dsp: moved to MSVC 7
                   14106: 
                   14107:        * gnu.vcproj.vspscc, parser3.vssscc,
                   14108:          src/classes/classes.vcproj.vspscc,
                   14109:          src/lib/cord/cord.vcproj.vspscc,
                   14110:          src/lib/ltdl/libltdl.vcproj.vspscc,
                   14111:          src/lib/md5/md5.vcproj.vspscc,
                   14112:          src/lib/pcre/pcre_dftables.vcproj.vspscc,
                   14113:          src/lib/pcre/pcre_parser_ctype.vcproj.vspscc,
                   14114:          src/lib/pcre/pcre.vcproj.vspscc, src/main/main.vcproj.vspscc,
                   14115:          src/targets/isapi/parser3isapi.vcproj.vspscc,
                   14116:          src/types/types.vcproj.vspscc, src/targets/cgi/parser3.vcproj:
                   14117:          moved to MSVC 7
                   14118: 
                   14119:        * parser3.sln, gnu.vcproj, src/classes/classes.vcproj,
                   14120:          src/lib/cord/cord.vcproj, src/lib/ltdl/libltdl.vcproj,
                   14121:          src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
                   14122:          src/lib/pcre/pcre_dftables.vcproj,
                   14123:          src/lib/pcre/pcre_parser_ctype.vcproj, src/main/main.vcproj,
                   14124:          src/targets/cgi/parser3.vcproj,
                   14125:          src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
                   14126:          new VS project files
                   14127: 
                   14128:        * ~sak5c961f3101c36563.tmp: Temporary file created by Visual Studio
                   14129:          .NET to detect Jalindi Igloo capabilities.
                   14130: 
                   14131:        * ChangeLog, configure, configure.in, src/classes/Makefile.am,
1.116     moko     14132:          src/classes/classes.awk, src/doc/footer.htm,
                   14133:          src/include/pa_config_fixed.h, src/include/pa_version.h,
                   14134:          src/lib/Makefile.am, src/main/compile.tab.C,
1.95      moko     14135:          src/main/pa_charset.C, src/main/pa_string.C, src/main/untaint.C,
                   14136:          src/types/pa_vmail.C: merged 3.1.0 latest changes
                   14137: 
                   14138: 2003-08-15  paf
                   14139: 
                   14140:        * src/main/untaint.C: email addresses in forms:   "non-ascii" <yyy>
                   14141:          non-ascii <yyy> now encoded correctly [kinda merge from 3.0.8]
                   14142: 
                   14143:        * src/main/untaint.C: email addresses in forms:   "non-ascii" <yyy>
                   14144:          non-ascii <yyy> now encoded correctly
                   14145: 
                   14146: 2003-07-29  paf
                   14147: 
1.116     moko     14148:        * src/classes/: Makefile.am, classes.awk: classes.awk added to make
                   14149:          dist
1.95      moko     14150: 
                   14151:        * src/types/pa_vmail.C: just started --with-mail-receive
                   14152: 
                   14153: 2003-07-28  paf
                   14154: 
1.116     moko     14155:        * src/: classes/Makefile.am, lib/Makefile.am: removed circular
                   14156:          dependence in src/classes, src/lib/gc now in dist
1.95      moko     14157: 
                   14158:        * src/main/pa_string.C: ^cache bug fix [were not working at all]
                   14159: 
                   14160: 2003-07-25  paf
                   14161: 
                   14162:        * src/doc/footer.htm: year
                   14163: 
                   14164: 2003-07-24  paf
                   14165: 
                   14166:        * src/: include/pa_config_fixed.h, main/pa_charset.C: bad #endif
                   14167:          fix
                   14168: 
                   14169:        * src/include/pa_version.h: release
                   14170: 
1.116     moko     14171:        * src/lib/gc/include/: Makefile.am, gc.h: moved tempate_gc to HEAD
1.95      moko     14172: 
                   14173:        * ChangeLog, src/classes/classes.dsp, src/main/main.dsp,
                   14174:          src/main/pa_globals.C, src/targets/cgi/parser3.dsp,
                   14175:          src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: cvs:
                   14176:          getting rid of win32xml pseudo project
                   14177: 
                   14178:        * src/main/: compile.tab.C, pa_memory.C: moved tempate_gc to HEAD
                   14179: 
1.116     moko     14180:        * ChangeLog, INSTALL, Makefile.am, acsite.m4, configure,
                   14181:          configure.in, operators.txt, parser3.dsw,
1.95      moko     14182:          etc/parser3.charsets/koi8-r.cfg,
1.116     moko     14183:          etc/parser3.charsets/windows-1251.cfg, src/classes/Makefile.am,
1.95      moko     14184:          src/classes/classes.C, src/classes/classes.awk,
                   14185:          src/classes/classes.dsp, src/classes/classes.h,
                   14186:          src/classes/date.C, src/classes/double.C, src/classes/file.C,
                   14187:          src/classes/form.C, src/classes/hash.C, src/classes/image.C,
                   14188:          src/classes/int.C, src/classes/mail.C, src/classes/math.C,
                   14189:          src/classes/memory.C, src/classes/op.C, src/classes/response.C,
                   14190:          src/classes/string.C, src/classes/table.C, src/classes/void.C,
                   14191:          src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
                   14192:          src/doc/exception.dox, src/doc/index.dox, src/doc/memory.dox,
                   14193:          src/doc/string.dox, src/include/Makefile.am,
1.116     moko     14194:          src/include/pa_array.h, src/include/pa_cache_managers.h,
                   14195:          src/include/pa_charset.h, src/include/pa_charsets.h,
                   14196:          src/include/pa_common.h, src/include/pa_config_auto.h.in,
                   14197:          src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
                   14198:          src/include/pa_dictionary.h, src/include/pa_dir.h,
                   14199:          src/include/pa_exception.h, src/include/pa_exec.h,
                   14200:          src/include/pa_globals.h, src/include/pa_hash.h,
                   14201:          src/include/pa_memory.h, src/include/pa_opcode.h,
                   14202:          src/include/pa_operation.h, src/include/pa_pool.h,
                   14203:          src/include/pa_pragma_pack_begin.h,
1.95      moko     14204:          src/include/pa_pragma_pack_end.h, src/include/pa_request.h,
                   14205:          src/include/pa_request_charsets.h, src/include/pa_request_info.h,
                   14206:          src/include/pa_sapi.h, src/include/pa_socks.h,
                   14207:          src/include/pa_sql_connection.h,
                   14208:          src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
                   14209:          src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
                   14210:          src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
                   14211:          src/include/pa_threads.h, src/include/pa_types.h,
1.116     moko     14212:          src/include/pa_uue.h, src/lib/Makefile.am,
                   14213:          src/lib/cord/Makefile.am, src/lib/cord/cord.dsp,
                   14214:          src/lib/cord/cordbscs.c, src/lib/cord/cordprnt.c,
                   14215:          src/lib/cord/cordxtra.c, src/lib/cord/source.url,
                   14216:          src/lib/cord/include/Makefile.am, src/lib/cord/include/cord.h,
1.95      moko     14217:          src/lib/cord/include/ec.h,
                   14218:          src/lib/cord/include/private/Makefile.am,
                   14219:          src/lib/cord/include/private/cord_pos.h, src/lib/gc/Makefile.am,
1.116     moko     14220:          src/lib/ltdl/libltdl.dsp, src/lib/md5/pa_md5.h,
                   14221:          src/lib/md5/pa_md5c.c, src/lib/pcre/pcre.h,
1.95      moko     14222:          src/lib/pcre/pcre_parser_ctype.c, src/main/Makefile.am,
1.116     moko     14223:          src/main/compile.C, src/main/compile.tab.C, src/main/compile.y,
                   14224:          src/main/compile_tools.C, src/main/compile_tools.h,
                   14225:          src/main/execute.C, src/main/main.dsp, src/main/pa_array.C,
                   14226:          src/main/pa_cache_managers.C, src/main/pa_charset.C,
                   14227:          src/main/pa_charsets.C, src/main/pa_common.C,
                   14228:          src/main/pa_dictionary.C, src/main/pa_dir.C,
                   14229:          src/main/pa_exception.C, src/main/pa_exec.C,
1.95      moko     14230:          src/main/pa_globals.C, src/main/pa_hash.C, src/main/pa_pool.C,
                   14231:          src/main/pa_request.C, src/main/pa_socks.C,
                   14232:          src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
                   14233:          src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
1.116     moko     14234:          src/main/pa_uue.C, src/main/untaint.C, src/sql/pa_sql_driver.h,
                   14235:          src/targets/Makefile.am, src/targets/cgi/Makefile.am,
                   14236:          src/targets/cgi/getopt.c, src/targets/cgi/getopt.h,
                   14237:          src/targets/cgi/pa_pool.C, src/targets/cgi/pa_threads.C,
                   14238:          src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
                   14239:          src/targets/cgi/pool_storage.h, src/targets/cgi/pp3.cmd,
                   14240:          src/targets/isapi/Makefile.am, src/targets/isapi/pa_pool.C,
1.95      moko     14241:          src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
                   14242:          src/targets/isapi/parser3isapi.dsp,
                   14243:          src/targets/isapi/pool_storage.h, src/types/Makefile.am,
1.116     moko     14244:          src/types/pa_junction.h, src/types/pa_method.h,
                   14245:          src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
1.95      moko     14246:          src/types/pa_vclass.C, src/types/pa_vclass.h,
                   14247:          src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
                   14248:          src/types/pa_vcookie.h, src/types/pa_vdate.h,
                   14249:          src/types/pa_vdouble.h, src/types/pa_venv.h,
                   14250:          src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
                   14251:          src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
                   14252:          src/types/pa_vimage.C, src/types/pa_vimage.h,
                   14253:          src/types/pa_vint.h, src/types/pa_vjunction.h,
                   14254:          src/types/pa_vmail.C, src/types/pa_vmail.h, src/types/pa_vmath.C,
                   14255:          src/types/pa_vmath.h, src/types/pa_vmemory.h,
                   14256:          src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
                   14257:          src/types/pa_vobject.C, src/types/pa_vobject.h,
                   14258:          src/types/pa_vrequest.C, src/types/pa_vrequest.h,
                   14259:          src/types/pa_vresponse.C, src/types/pa_vresponse.h,
                   14260:          src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
                   14261:          src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
                   14262:          src/types/pa_vstatus.h, src/types/pa_vstring.C,
                   14263:          src/types/pa_vstring.h, src/types/pa_vtable.C,
                   14264:          src/types/pa_vtable.h, src/types/pa_vvoid.h,
                   14265:          src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
                   14266:          src/types/pa_vxnode.C, src/types/pa_vxnode.h,
                   14267:          src/types/pa_wcontext.C, src/types/pa_wcontext.h,
                   14268:          src/types/pa_wwrapper.h, src/types/types.dsp: moved tempate_gc to
                   14269:          HEAD
                   14270: 
                   14271:        * tests/: 001.html, 002.html, 003.html, 004.html, 005.html,
                   14272:          006.html, 007.html, 008.html, 009.html, 010.html, 011.html,
                   14273:          012.html, 013.html, 014.html, 015.html, 016.html, 017.html,
                   14274:          018.html, 019.html, 019paf2001.gif, 020.html, 021.html, 022.html,
                   14275:          023.html, 024.html, 025.html, 026.html, 027.html, 028.html,
                   14276:          029.html, 030.html, 031.html, 032.html, 033.html, 034.html,
                   14277:          035.html, 036.html, 037.html, 038.html, 039.html, 040.html,
                   14278:          041.html, 042.html, 043.html, 044.html, 045.html, 046.html,
                   14279:          047.html, 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p,
                   14280:          052.html, 053.html, 054.html, 055.html, 056.html, 057.html,
                   14281:          058.html, 058_paf2000.png, 059.html, 060.html, 061.dat, 061.html,
                   14282:          062.html, 063.html, 064.html, 065.html, 066.html, 067.html,
                   14283:          068.html, 069.html, 070.html, 071.html, 072.html, 073.html,
                   14284:          074.html, 075.html, 076.html, 077.html, 078.html, 079.html,
                   14285:          080.html, 081.html, 082.html, 083.html, 084.html, 085.html,
                   14286:          086.html, 087.html, 088.html, 089.html, 090.html, 091.html,
                   14287:          092.html, 093.html, 094.html, 095.html, 096.html, 097.html,
                   14288:          098.html, 098font.gif, 099.html, 100.html, 101.html, 102.html,
                   14289:          103.html, 103mark.gif, 103paf2001.gif, 104.html, 105.html,
                   14290:          106.html, 107.html, 108.html, 108.xsl, 109.html, 110.html,
                   14291:          111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
                   14292:          117.html, 118.html, 119.html, 120.html, 121.html, 122.html,
                   14293:          123.html, 124.html, 125.html, 126.html, 127.html, 128.html,
                   14294:          129.html, 130.html, 131.html, 132.html, 133.html, 134.html,
                   14295:          135.html, 136.html, 137.html, 138.html, 139.html, 140.html,
                   14296:          141.html, Makefile, descript.ion, run_parser.sh, 022_dir/a.html,
                   14297:          022_dir/b.txt, 022_dir/c.htm, 096_dir/163.jpg, 096_dir/188.jpg,
                   14298:          outputs/create-dir, results/001.processed, results/002.processed,
                   14299:          results/003.processed, results/004.processed,
                   14300:          results/005.processed, results/006.processed,
                   14301:          results/007.processed, results/008.processed,
                   14302:          results/009.processed, results/010.processed,
                   14303:          results/011.processed, results/012.processed,
                   14304:          results/013.processed, results/014.processed,
                   14305:          results/015.processed, results/016.processed,
                   14306:          results/017.processed, results/018.processed,
                   14307:          results/019.processed, results/020.processed,
                   14308:          results/021.processed, results/022.processed,
                   14309:          results/023.processed, results/024.processed,
                   14310:          results/025.processed, results/026.processed,
                   14311:          results/027.processed, results/028.processed,
                   14312:          results/029.processed, results/030.processed,
                   14313:          results/031.processed, results/032.processed,
                   14314:          results/033.processed, results/034.processed,
                   14315:          results/035.processed, results/036.processed,
                   14316:          results/037.processed, results/038.processed,
                   14317:          results/039.processed, results/040.processed,
                   14318:          results/041.processed, results/042.processed,
                   14319:          results/043.processed, results/044.processed,
                   14320:          results/045.processed, results/046.processed,
                   14321:          results/047.processed, results/048.processed,
                   14322:          results/049.processed, results/050.processed,
                   14323:          results/051.processed, results/052.processed,
                   14324:          results/053.processed, results/054.processed,
                   14325:          results/055.processed, results/056.processed,
                   14326:          results/057.processed, results/058.processed,
                   14327:          results/059.processed, results/060.processed,
                   14328:          results/061.processed, results/062.processed,
                   14329:          results/063.processed, results/064.processed,
                   14330:          results/065.processed, results/066.processed,
                   14331:          results/067.processed, results/068.processed,
                   14332:          results/069.processed, results/070.processed,
                   14333:          results/071.processed, results/072.processed,
                   14334:          results/073.processed, results/074.processed,
                   14335:          results/075.processed, results/076.processed,
                   14336:          results/077.processed, results/078.processed,
                   14337:          results/079.processed, results/080.processed,
                   14338:          results/081.processed, results/082.processed,
                   14339:          results/083.processed, results/084.processed,
                   14340:          results/085.processed, results/086.processed,
                   14341:          results/087.processed, results/088.processed,
                   14342:          results/089.processed, results/090.processed,
                   14343:          results/091.processed, results/092.processed,
                   14344:          results/093.processed, results/094.processed,
                   14345:          results/095.processed, results/096.processed,
                   14346:          results/097.processed, results/098.processed,
                   14347:          results/099.processed, results/100.processed,
                   14348:          results/101.processed, results/102.processed,
                   14349:          results/103.processed, results/104.processed,
                   14350:          results/105.processed, results/106.processed,
                   14351:          results/107.processed, results/108.processed,
                   14352:          results/109.processed, results/110.processed,
                   14353:          results/111.processed, results/112.processed,
                   14354:          results/113.processed, results/114.processed,
                   14355:          results/115.processed, results/116.processed,
                   14356:          results/117.processed, results/118.processed,
                   14357:          results/119.processed, results/120.processed,
                   14358:          results/121.processed, results/122.processed,
                   14359:          results/123.processed, results/124.processed,
                   14360:          results/125.processed, results/126.processed,
                   14361:          results/127.processed, results/128.processed,
                   14362:          results/129.processed, results/130.processed,
                   14363:          results/131.processed, results/132.processed,
                   14364:          results/133.processed, results/134.processed,
                   14365:          results/135.processed, results/136.processed,
                   14366:          results/137.processed, results/138.processed,
                   14367:          results/139.processed, results/140.processed,
                   14368:          results/141.processed: merged(copied) to HEAD from template_gc
                   14369: 
                   14370:        * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: more step
                   14371:          towards \parser3project not having to be in root
                   14372: 
                   14373:        * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c: apache
                   14374:          module compiled [were minor unnecessary changes in lib/md5
                   14375:          interface]
                   14376: 
                   14377:        * src/include/pa_version.h: release
                   14378: 
                   14379:        * parser3.dsw, src/main/pa_globals.C: relative paths to xml&gc libs
                   14380: 
                   14381:        * src/classes/math.C: merged uuid bugfix
                   14382: 
                   14383:        * tests/: 141.html, results/141.processed: fixed bug with
                   14384:          too-small-a-buffer
                   14385: 
                   14386:        * src/classes/math.C: uuid bugfix
                   14387: 
                   14388:        * tests/: 141.html, Makefile, results/005.processed,
                   14389:          results/030.processed, results/075.processed,
                   14390:          results/078.processed: to reflect date format change (were -
                   14391:          become ' ')
                   14392: 
                   14393:        * src/classes/math.C: uuid bugfix
                   14394: 
                   14395:        * parser3.dsw, src/main/pa_globals.C: few paths for libxml
                   14396:          debug/release changes
                   14397: 
                   14398:        * src/lib/md5/pa_md5c.c: PA_ -> pa_
                   14399: 
                   14400: 2003-07-23  paf
                   14401: 
                   14402:        * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
                   14403:          renamed a little [to move to comman naming conv]
                   14404: 
1.116     moko     14405:        * src/targets/Makefile.am: apache13 splitted to simplify apache
                   14406:          build
1.95      moko     14407: 
                   14408:        * src/: include/pa_request.h, include/pa_stack.h, main/execute.C,
                   14409:          main/pa_request.C, main/pa_sql_driver_manager.C,
                   14410:          main/pa_stylesheet_manager.C, targets/isapi/parser3isapi.dsp:
                   14411:          stack top_index() fixed
                   14412: 
                   14413:        * src/main/pa_globals.C: minor style changes
                   14414: 
                   14415:        * src/: classes/op.C, include/pa_sql_connection.h: connection
                   14416:          closing/caching fixed [connections were not closed/put to cache]
                   14417: 
                   14418: 2003-07-22  paf
                   14419: 
                   14420:        * INSTALL: gc part updated stightly
                   14421: 
                   14422:        * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: updated to
                   14423:          new sapi interface
                   14424: 
                   14425:        * src/classes/file.C: comment on OS
                   14426: 
                   14427:        * src/main/pa_string.C: removed reduntant invariant check [there is
                   14428:          one deeper in cord lib]
                   14429: 
                   14430:        * src/main/pa_exec.C: on win32 bugfix in handling shbang
                   14431: 
                   14432:        * src/main/pa_memory.C: out of memory is no longer coredump
                   14433: 
                   14434:        * INSTALL: disable-threads adviced
                   14435: 
                   14436: 2003-07-21  paf
                   14437: 
1.116     moko     14438:        * src/classes/Makefile.am: removed circular dependency on classes.C
1.95      moko     14439: 
                   14440:        * src/classes/file.C: file::exec/cgi environment variables now must
                   14441:          be UPPERCASE and A-Z 0-9 _-
                   14442: 
                   14443:        * src/classes/file.C: env passing fixed
                   14444: 
                   14445:        * src/main/pa_common.C: http:// CRLF now [merged from HEAD]
                   14446: 
                   14447:        * src/main/pa_common.C: http:// CRLF now
                   14448: 
                   14449: 2003-07-02  paf
                   14450: 
                   14451:        * operators.txt, src/types/pa_vstatus.C: renamed $memory:status
                   14452:          fields to reflect their real meaning
                   14453: 
                   14454: 2003-06-27  paf
                   14455: 
                   14456:        * src/: classes/file.C, include/pa_charset.h, include/pa_exec.h,
                   14457:          include/pa_hash.h, main/pa_charset.C: merged from HEAD
                   14458:          file::exec/cgi .charset
                   14459: 
                   14460: 2003-06-26  paf
                   14461: 
                   14462:        * ChangeLog, src/classes/file.C, src/classes/hash.C,
                   14463:          src/classes/image.C, src/classes/op.C, src/classes/string.C,
                   14464:          src/classes/table.C: fixed several uninitialized local
                   14465:          structures.  notably ^hash.foreach now inserts delimiters
                   14466:          properly [were inserting it before first body]
                   14467: 
                   14468: 2003-06-24  paf
                   14469: 
                   14470:        * src/include/pa_hash.h: simplified HASH_ALLOCATES_COUNT
                   14471: 
                   14472: 2003-06-20  paf
                   14473: 
                   14474:        * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
                   14475:          src/main/pa_globals.C: introducing
                   14476:          $f[^file::load[binary;http://...]] $f.tables
                   14477: 
                   14478: 2003-06-06  paf
                   14479: 
                   14480:        * src/types/: pa_vhash.h: $hash.field lookup first now: along with
                   14481:          table. [were method lookup: inconsistent]
                   14482: 
                   14483: 2003-06-02  paf
                   14484: 
                   14485:        * src/include/pa_memory.h: empty string clone fixed to return
                   14486:          writable memory
                   14487: 
                   14488:        * src/main/pa_common.C: fix_line_breaks bug fix [terminating zero
                   14489:          were not appended] which violated string invariant
                   14490: 
                   14491: 2003-05-30  paf
                   14492: 
                   14493:        * src/types/pa_value.C: date format now Sun, 06 Nov 1994 08:49:37
                   14494:          GMT  ; RFC 822, updated by RFC 1123 [as in HEAD]
                   14495: 
                   14496:        * src/main/pa_common.C: date format now Sun, 06 Nov 1994 08:49:37
                   14497:          GMT  ; RFC 822, updated by RFC 1123
                   14498: 
                   14499:        * src/: classes/file.C, classes/form.C, targets/cgi/parser3.C,
                   14500:          targets/isapi/parser3isapi.C: initialized request_info properly
                   14501: 
                   14502:        * src/classes/xnode.C: found minor bug, commended for future
                   14503: 
                   14504: 2003-05-28  paf
                   14505: 
                   14506:        * src/classes/form.C: request_info.content_length can't be <0,
                   14507:          size_t for some time
                   14508: 
                   14509: 2003-05-26  paf
                   14510: 
                   14511:        * src/: classes/file.C, classes/string.C, main/pa_string.C: few
                   14512:          forgotten <0 changed to !=STRING_NOT_FOUND
                   14513: 
                   14514:        * src/classes/math.C: merged ffffu from HEAD
                   14515: 
                   14516: 2003-05-11  paf
                   14517: 
                   14518:        * src/main/pa_globals.C: xml memory debugging functions (ifdefed)
                   14519: 
                   14520:        * src/types/: pa_vxdoc.h, pa_vxnode.h: think that found cause of
                   14521:          premature doc free.  transformed document had xmlDoc reference
                   14522:          stored to non-gc-memory (libgdome) added holding-reference
                   14523: 
                   14524: 2003-04-29  paf
                   14525: 
                   14526:        * src/main/pa_globals.C: started digging on double free.  on win32
                   14527:          found that that's perfectly normal.
                   14528: 
                   14529: 2003-04-25  paf
                   14530: 
                   14531:        * src/classes/table.C: table.join bug fix  [bad limit check]
                   14532: 
                   14533:        * src/classes/math.C: merged from HEAD: simpiler hash_string
                   14534: 
                   14535:        * src/classes/math.C: snprintf(buf, 3) become (buf,2) and failed to
                   14536:          print anything.  changed to quicker and simplier code
                   14537: 
                   14538:        * src/classes/hash.C: allowed ^hash::create[^rem{xxx}]   [were to
                   14539:          strict a check]
                   14540: 
                   14541:        * src/: classes/table.C, lib/md5/pa_md5c.c: minor compile errors
                   14542: 
                   14543: 2003-04-24  paf
                   14544: 
                   14545:        * src/include/pa_table.h: too strict assert loosened
                   14546: 
                   14547:        * src/lib/: md5/pa_md5c.c, pcre/pcre.h: thanks to Ilia Soldis
                   14548:          <soldis@infolio.ru> for reporing this ansi c fiolation syntax
                   14549:          report
                   14550: 
                   14551: 2003-04-21  paf
                   14552: 
1.116     moko     14553:        * src/targets/cgi/Makefile.am: pp3 added to .am
1.95      moko     14554: 
                   14555:        * src/main/pa_globals.C: pcre memory management changed to use GC
                   14556:          memory
                   14557: 
                   14558:        * src/main/pa_globals.C: 2.5.6 version of libxml allows to install
                   14559:          xmlMallocAtomic [author agreed to my suggestion], used that
                   14560: 
                   14561:        * src/types/pa_vmail.C: ^mail:send[$.body backward compatibility
                   14562: 
                   14563:        * src/: targets/cgi/parser3.C, types/pa_value.C, types/pa_value.h,
                   14564:          types/pa_vmail.C: attributed_meaning_to_string added
                   14565:          L_UNSPECIFIED piece which was sortof OK, but violated string
                   14566:          invariant [assertion barked on that] changed to L_PASS_APPEND,
                   14567:          made that param obligatory
                   14568: 
                   14569:        * src/main/pa_string.C: String::ArrayFragment::append_positions bug
                   14570:          fixed [assert helped]
                   14571: 
                   14572:        * src/include/pa_string.h: assert added [looking for bug]
                   14573: 
                   14574:        * src/main/pa_request.C: merged from HEAD: "x:..." and "\\..." file
                   14575:          names on Win32 considered disk-global
                   14576: 
                   14577:        * src/main/pa_request.C: "x:..." and "\\..." file names on Win32
                   14578:          considered disk-global
                   14579: 
                   14580: 2003-04-18  paf
                   14581: 
                   14582:        * src/main/untaint.C: merged from HEAD: enabled '~' letter in
                   14583:          filenames
                   14584: 
                   14585:        * src/main/untaint.C: enabled '~' letter in filenames
                   14586: 
                   14587: 2003-04-16  paf
                   14588: 
                   14589:        * src/classes/file.C: small bug introduced in autoptr times fixed
                   14590: 
                   14591:        * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: merged from
                   14592:          HEAD
                   14593: 
1.116     moko     14594:        * src/classes/table.C: fix: gcc reported tiny error
1.95      moko     14595: 
                   14596: 2003-04-15  paf
                   14597: 
                   14598:        * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
                   14599:          src/lib/md5/pa_md5c.c, tests/141.html,
                   14600:          tests/results/141.processed: merged from head ^math:uuid[]
                   14601:          ^math:uid64[] ^math:md5[string]
                   14602: 
                   14603:          test added: 141.html
                   14604: 
                   14605:        * operators.txt, src/classes/math.C: ^math:uid64[]
                   14606: 
                   14607:        * src/classes/math.C: ^math:uuid[]
                   14608: 
                   14609:        * operators.txt, src/classes/math.C: ^math:uuid[]
                   14610: 
                   14611:        * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
                   14612:          src/lib/md5/pa_md5c.c: ^math:md5[string] 16-byte digest
                   14613: 
                   14614:        * operators.txt, src/classes/file.C, src/include/pa_common.h,
                   14615:          src/include/pa_config_fixed.h, src/main/pa_common.C:
                   14616:          ^file::load[mode;name;     $.offset     $.limit
                   14617: 
                   14618: 2003-04-14  paf
                   14619: 
                   14620:        * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
                   14621:          started ^math:md5
                   14622: 
                   14623:        * src/classes/table.C, src/include/pa_array.h,
                   14624:          src/include/pa_table.h, src/main/pa_table.C, tests/140.html,
                   14625:          tests/results/140.processed: table $.reverse option works in
                   14626:          create&co table $.distinct[tables] bug fix merged
                   14627: 
                   14628:        * src/: classes/table.C, include/pa_table.h: table
                   14629:          $.distinct[tables] bug fixed
                   14630: 
                   14631:        * src/classes/table.C: more warnings
                   14632: 
                   14633:        * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C:
                   14634:          removed checks in table::set_current, moved them back to
                   14635:          table::locate implemented table::create/join ñ $.reverse
                   14636: 
                   14637:        * src/: include/pa_table.h, main/pa_array.C, main/pa_table.C:
                   14638:          removed checks in table::set_current, moved them back to
                   14639:          table::locate
                   14640: 
                   14641: 2003-04-11  paf
                   14642: 
                   14643:        * operators.txt, src/classes/date.C, src/classes/table.C,
                   14644:          src/include/pa_array.h, src/include/pa_common.h,
                   14645:          src/include/pa_config_includes.h, src/include/pa_string.h,
                   14646:          src/include/pa_table.h, src/main/pa_request.C,
                   14647:          src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
                   14648:          src/main/pa_table.C: merged from HEAD from
                   14649:          before_append_array_limit_sense_change to
                   14650:          after_append_array_limit_sense_change
                   14651: 
                   14652:        * src/classes/table.C: typo
                   14653: 
                   14654:        * operators.txt, src/classes/date.C, src/classes/table.C,
                   14655:          src/include/pa_array.h, src/include/pa_common.h,
                   14656:          src/include/pa_config_includes.h, src/include/pa_globals.h,
                   14657:          src/include/pa_table.h, src/main/pa_array.C,
                   14658:          src/main/pa_globals.C, src/main/pa_request.C,
                   14659:          src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
                   14660:          src/main/pa_table.C: append_array_limit_sense_change locate
                   14661:          accepts options same as create new option: $.reverse(1)   [do not
                   14662:          work in table::create]
                   14663: 
                   14664:        * src/: include/pa_common.h, main/pa_common.C: gcc didn't like
                   14665:          (stat xxx,
                   14666: 
                   14667:        * src/classes/: table.C: typo
                   14668: 
                   14669:        * tests/: 130.html, 131.html, 132.html, 133.html, 134.html,
                   14670:          135.html, 136.html, 137.html, 138.html, 139.html, descript.ion,
                   14671:          results/130.processed, results/131.processed,
                   14672:          results/132.processed, results/133.processed,
                   14673:          results/134.processed, results/135.processed,
                   14674:          results/136.processed, results/137.processed,
                   14675:          results/138.processed, results/139.processed: added few mustfail
                   14676:          tests 130.html mustfail: empty regexp 131.html mustfail: invalid
                   14677:          date/time 132.html mustfail: access to junction outside of
                   14678:          context 133.html mustfail: access to junction outside of context,
                   14679:          case version 134.html mustfail: hash: adding a key inside of
                   14680:          foreach 135.html mustfail: modifying system class 136.html
                   14681:          mustfail: $.name outside of $hash[here] 137.html mustfail:
                   14682:          appendChild without import 138.html mustfail: invalid encoding
                   14683:          inside of xml 139.html mustfail: bad XPath
                   14684: 
                   14685:        * operators.txt, src/classes/table.C, tests/084.html,
                   14686:          tests/125.html, tests/126.html, tests/127.html, tests/128.html,
                   14687:          tests/129.html, tests/results/125.processed,
                   14688:          tests/results/126.processed, tests/results/127.processed,
                   14689:          tests/results/128.processed, tests/results/129.processed: merged
                   14690:          from HEAD ^table.hash[key][$.distinct[tables]]
                   14691: 
                   14692:          maked appropriate tests [changed one old nonconforming]
                   14693: 
                   14694:        * operators.txt, src/classes/table.C:
                   14695:          ^table.hash[key][$.distinct[tables]]
                   14696: 
                   14697:        * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
                   14698:          merged fix for found very old xml (dom) bug: were passing
                   14699:          domString objects and later ERROREOUSLY freed them
                   14700: 
                   14701:        * INSTALL, src/include/pa_charset.h, src/lib/Makefile.am,
                   14702:          src/main/pa_charset.C: re-added libgdome patch. regretfully
                   14703:          libgdome bug can not be worked around
                   14704: 
                   14705: 2003-04-10  paf
                   14706: 
                   14707:        * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
                   14708:          found very old xml (dom) bug: were passing domString objects and
                   14709:          later ERROREOUSLY freed them
                   14710: 
                   14711:        * src/doc/string.dox, src/include/pa_memory.h,
                   14712:          src/include/pa_string.h, src/lib/cord/cordbscs.c,
                   14713:          src/main/pa_string.C, src/types/pa_vform.C, src/types/pa_vform.h,
                   14714:          tests/123.html, tests/124.html, tests/results/001.processed,
                   14715:          tests/results/002.processed, tests/results/003.processed,
                   14716:          tests/results/004.processed, tests/results/005.processed,
                   14717:          tests/results/006.processed, tests/results/008.processed,
                   14718:          tests/results/009.processed, tests/results/010.processed,
                   14719:          tests/results/011.processed, tests/results/012.processed,
                   14720:          tests/results/013.processed, tests/results/014.processed,
                   14721:          tests/results/015.processed, tests/results/016.processed,
                   14722:          tests/results/017.processed, tests/results/018.processed,
                   14723:          tests/results/020.processed, tests/results/021.processed,
                   14724:          tests/results/022.processed, tests/results/023.processed,
                   14725:          tests/results/024.processed, tests/results/025.processed,
                   14726:          tests/results/026.processed, tests/results/027.processed,
                   14727:          tests/results/028.processed, tests/results/029.processed,
                   14728:          tests/results/030.processed, tests/results/031.processed,
                   14729:          tests/results/032.processed, tests/results/033.processed,
                   14730:          tests/results/034.processed, tests/results/035.processed,
                   14731:          tests/results/036.processed, tests/results/037.processed,
                   14732:          tests/results/038.processed, tests/results/039.processed,
                   14733:          tests/results/040.processed, tests/results/041.processed,
                   14734:          tests/results/042.processed, tests/results/043.processed,
                   14735:          tests/results/044.processed, tests/results/045.processed,
                   14736:          tests/results/046.processed, tests/results/047.processed,
                   14737:          tests/results/048.processed, tests/results/049.processed,
                   14738:          tests/results/050.processed, tests/results/051.processed,
                   14739:          tests/results/052.processed, tests/results/053.processed,
                   14740:          tests/results/054.processed, tests/results/055.processed,
                   14741:          tests/results/056.processed, tests/results/057.processed,
                   14742:          tests/results/058.processed, tests/results/059.processed,
                   14743:          tests/results/060.processed, tests/results/061.processed,
                   14744:          tests/results/062.processed, tests/results/063.processed,
                   14745:          tests/results/064.processed, tests/results/065.processed,
                   14746:          tests/results/066.processed, tests/results/067.processed,
                   14747:          tests/results/068.processed, tests/results/069.processed,
                   14748:          tests/results/070.processed, tests/results/071.processed,
                   14749:          tests/results/072.processed, tests/results/073.processed,
                   14750:          tests/results/074.processed, tests/results/075.processed,
                   14751:          tests/results/076.processed, tests/results/077.processed,
                   14752:          tests/results/078.processed, tests/results/079.processed,
                   14753:          tests/results/080.processed, tests/results/081.processed,
                   14754:          tests/results/082.processed, tests/results/083.processed,
                   14755:          tests/results/084.processed, tests/results/085.processed,
                   14756:          tests/results/086.processed, tests/results/087.processed,
                   14757:          tests/results/088.processed, tests/results/089.processed,
                   14758:          tests/results/090.processed, tests/results/091.processed,
                   14759:          tests/results/092.processed, tests/results/093.processed,
                   14760:          tests/results/094.processed, tests/results/095.processed,
                   14761:          tests/results/096.processed, tests/results/097.processed,
                   14762:          tests/results/101.processed, tests/results/102.processed,
                   14763:          tests/results/104.processed, tests/results/105.processed,
                   14764:          tests/results/106.processed, tests/results/107.processed,
                   14765:          tests/results/108.processed, tests/results/109.processed,
                   14766:          tests/results/110.processed, tests/results/111.processed,
                   14767:          tests/results/112.processed, tests/results/113.processed,
                   14768:          tests/results/114.processed, tests/results/115.processed,
                   14769:          tests/results/116.processed, tests/results/117.processed,
                   14770:          tests/results/118.processed, tests/results/119.processed,
                   14771:          tests/results/120.processed, tests/results/121.processed,
                   14772:          tests/results/122.processed, tests/results/123.processed,
                   14773:          tests/results/124.processed: new convention: char* never 0.
                   14774:          assert in cord on that
                   14775: 
                   14776:        * src/main/pa_charset.C: couple more asserts
                   14777: 
                   14778:        * src/: main/pa_charset.C, include/pa_charset.h: little transcodes
                   14779:          speedup
                   14780: 
                   14781:        * src/main/pa_charset.C: couple assertions on fantastic situations
                   14782:          added [may be those is the case now?]
                   14783: 
                   14784:        * src/main/pa_charset.C: bugfix on memory buffer overrun [but
                   14785:          that's memory from gc_malloc, not from g_malloc :(, but would
                   14786:          hope]
                   14787: 
                   14788:        * src/main/pa_charset.C: bugfix on memory buffer overrun [but
                   14789:          that's memory from gc_malloc, not from g_malloc :(, but would
                   14790:          hope]
                   14791: 
                   14792:        * src/main/pa_charset.C: checked custom malloc for returning 0
                   14793: 
                   14794: 2003-04-09  paf
                   14795: 
                   14796:        * src/classes/date.C: merged ^date.roll changes
                   14797: 
                   14798:        * src/classes/date.C: ^date.roll bug fix
                   14799: 
                   14800:        * src/classes/date.C: ^date.roll now throws less errors: month
                   14801:          shifts handles end of month situation by reducing day number
                   14802:          hour-hole shift reduces hour to recover
                   14803: 
                   14804:        * src/targets/cgi/pp3.cmd: custom profiling script: plist/ST <<
                   14805:          Sort by function time
                   14806: 
                   14807:        * operators.txt, src/main/pa_charset.C, src/main/pa_common.C:
                   14808:          http://   $.charset[] param done
                   14809: 
                   14810:        * tests/: 122.html, results/122.processed: 122 date test <= and ==
                   14811:          added [after volatile fix. passes on win&intel-solaris]
                   14812: 
                   14813: 2003-04-08  paf
                   14814: 
                   14815:        * src/: classes/file.C, classes/op.C, classes/table.C,
                   14816:          classes/xdoc.C, include/pa_charset.h, include/pa_charsets.h,
                   14817:          include/pa_common.h, include/pa_request_charsets.h,
                   14818:          main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
                   14819:          main/pa_exec.C, main/pa_request.C, main/untaint.C,
                   14820:          types/pa_value.h, types/pa_vmail.C, types/pa_vrequest.C,
                   14821:          types/pa_vresponse.C: started http://   $.charset[] param and
                   14822:          http response charset detection just compiled.  todo:test
                   14823: 
                   14824:        * src/main/pa_common.C: merged PA_USE_ALARM bugfix from HEAD
                   14825: 
                   14826:        * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
                   14827:          main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vform.C,
                   14828:          types/pa_vmail.C: changed transcode param converntion  along with
                   14829:          string creating convention -- all strings are zero-terminated,
                   14830:          this allowed to fix one remaining String("123", 2) case
                   14831: 
                   14832:        * src/: classes/date.C, classes/file.C, classes/hash.C,
                   14833:          classes/op.C, classes/string.C, classes/table.C,
                   14834:          include/pa_charset.h, include/pa_memory.h, include/pa_string.h,
                   14835:          main/compile.tab.C, main/pa_charset.C, main/pa_exec.C,
                   14836:          main/pa_request.C, main/pa_string.C, main/pa_uue.C,
                   14837:          main/untaint.C, types/pa_vfile.C, types/pa_vfile.h,
                   14838:          types/pa_vform.C, types/pa_vform.h, types/pa_vmail.C: pa_vform
                   14839:          violated String::invariant. started fixing [not compiled now]
                   14840: 
                   14841:        * src/: classes/string.C, include/pa_string.h, lib/cord/cordbscs.c,
                   14842:          main/compile.tab.C, main/compile.y, main/pa_string.C,
                   14843:          main/untaint.C, targets/cgi/parser3.C: number of string style
                   14844:          improvements & optimizations
                   14845: 
                   14846:        * src/classes/xnode.C: =0 bug fix [left from autoptr default ctor
                   14847:          :(]
                   14848: 
                   14849:        * src/main/untaint.C: removed redundant & in CORD_pos param passing
                   14850:          [for it's a pointer really]
                   14851: 
                   14852:        * src/main/untaint.C: CORD_pos_advance turned out to have limit on
                   14853:          'n' param. worked that around
                   14854: 
                   14855:        * src/lib/cord/: Makefile.am, cordbscs.c, source.url: From: "Boehm,
                   14856:          Hans" <hans_boehm@hp.com> To: "'Alexandr Petrosian (PAF)'"
                   14857:          <PAF@design.ru>; "Boehm, Hans" <hans_boehm@hp.com> Sent: Tuesday,
                   14858:          April 08, 2003 2:16 AM Subject: RE: libgc 6.2.alpha4
                   14859:          cord/cordbscs.c/CORD_cat bug [were: CORD__extend_path bug?
                   14860: 
                   14861:          Thanks for the bug report and patch.
                   14862: 
                   14863:          I hadn't looked at this code in a while.  Reading it now, it
                   14864:          seems to me that the tests should also be ">= MAX_DEPTH" to
                   14865:          comply with the invariant, though that may not matter a lot.  I
                   14866:          changed that, too.
                   14867: 
                   14868:          Hans
                   14869: 
                   14870: 2003-04-07  paf
                   14871: 
                   14872:        * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
                   14873:          merged from head:safe mode error message now includes numbers
                   14874: 
                   14875:        * src/main/execute.C: n-th attempt to make a=a work with double.
                   14876:          problem: as_double returns it's result in fp-register compiler
                   14877:          optimizes access to that register after b->as_double, and just
                   14878:          compares ALREADY_STORED_VALUE with prev-calculated a->as_double
                   14879:          from memory.  _SAME_ double values do not match here.  when
                   14880:          forced to REload fp-register, values do match.
                   14881: 
                   14882:          tried to make them volatile.
                   14883: 
                   14884:        * src/main/execute.C: n-th attempt to make a=a work with double.
                   14885:          problem: as_double returns it's result in fp-register compiler
                   14886:          optimizes access to that register after b->as_double, and just
                   14887:          compares ALREADY_STORED_VALUE with prev-calculated a->as_double
                   14888:          from memory.  _SAME_ double values do not match here.  when
                   14889:          forced to REload fp-register, values do match.
                   14890: 
                   14891:          tried to make them volatile.
                   14892: 
                   14893:        * src/types/pa_vobject.h: small style change
                   14894: 
                   14895:        * src/: lib/cord/cordbscs.c, include/pa_string.h: CORD_cat bugfix
                   14896: 
                   14897:        * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C: safe
                   14898:          mode error message now includes numbers
                   14899: 
                   14900:        * src/: main/untaint.C, targets/cgi/parser3.C: unknown untaint lang
                   14901:          now causes death
                   14902: 
                   14903: 2003-04-04  paf
                   14904: 
                   14905:        * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C:
                   14906:          incorportated pa_exec patch by From: "Victor Fedoseev"
                   14907:          <vvf_ru@mail.ru> To: "Alexandr Petrosian (PAF)" <PAF@design.ru>
                   14908:          Sent: Thursday, January 23, 2003 9:14 AM
                   14909: 
                   14910:          huge speedup on ^file::cgi with big result
                   14911: 
                   14912:        * src/classes/table.C: sort table with 0 rows bug fixed
                   14913: 
                   14914:        * src/types/pa_vhash.h: $hash._default showed in foreach & co bug
                   14915:          fix http://i2/tasks/edit/?id=4493701604654042676
                   14916: 
                   14917:          @main[] $with_default[  $.a[1]  $._default[default from
                   14918:          with_default] ] ^show[$with_default]
                   14919: 
                   14920:          $to_add_to[     $.b[2] ] ^to_add_to.add[$with_default]
                   14921:          =$to_add_to.xxx=<br>
                   14922: 
                   14923:          ^show[$to_add_to]
                   14924: 
                   14925:          $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
                   14926:          ^show[$cloned]
                   14927: 
                   14928:          @show[hash] ^hash.foreach[k;v]{         $k = $v <br>
                   14929: 
                   14930:          }  <hr>
                   14931: 
                   14932:        * src/classes/hash.C: $hash._default showed in foreach & co bug fix
                   14933:          http://i2/tasks/edit/?id=4493701604654042676
                   14934: 
                   14935:          @main[] $with_default[  $.a[1]  $._default[default from
                   14936:          with_default] ] ^show[$with_default]
                   14937: 
                   14938:          $to_add_to[     $.b[2] ] ^to_add_to.add[$with_default]
                   14939:          =$to_add_to.xxx=<br>
                   14940: 
                   14941:          ^show[$to_add_to]
                   14942: 
                   14943:          $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
                   14944:          ^show[$cloned]
                   14945: 
                   14946:          @show[hash] ^hash.foreach[k;v]{         $k = $v <br>
                   14947: 
                   14948:          }  <hr>
                   14949: 
                   14950:        * src/types/pa_vmail.C: mail receive: .txt attachemnts bug fix
                   14951:          http://i2/tasks/edit/?id=4507350336410850921
                   14952: 
                   14953:        * src/classes/xdoc.C: memory allocation func bugfix
                   14954:          http://i2/tasks/edit/?id=4499303470368629745
                   14955: 
                   14956:        * src/classes/math.C: allowed random 1...
                   14957: 
                   14958:        * src/classes/math.C: allowed random 0..
                   14959: 
                   14960:        * src/main/pa_globals.C: exif mem leak
                   14961:          http://i2/tasks/edit/?id=4480590323629807263
                   14962: 
                   14963:        * src/: classes/classes.dsp, main/main.dsp,
                   14964:          targets/cgi/parser3.dsp, types/pa_vmail.C, types/types.dsp: buf
                   14965:          fix http://i2/tasks/edit/?id=4493946731322521294
                   14966:          $.to[billgates@microsoft.com BCc: send-spam-to@someemails.ru ]
                   14967: 
                   14968:        * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
                   14969:          lib/pcre/pcre.dsp, main/compile.tab.C, main/main.dsp,
                   14970:          main/pa_globals.C, targets/cgi/parser3.dsp, types/types.dsp:
                   14971:          links to xml libs made relative, no need to unpack parser3project
                   14972:          to /parser3project.
                   14973: 
                   14974:        * src/main/: compile.tab.C, compile.y, compile_tools.h: error
                   14975:          column more precise - tab handling bug fixed
                   14976: 
                   14977:        * src/main/: compile.tab.C, compile.y: more understandable error
                   14978:          message in case @CLASS with more then one line inside
                   14979: 
                   14980:        * src/targets/cgi/parser3.C: more understandable error message in
                   14981:          case of errors in @unhandled_exception
                   14982: 
                   14983: 2003-04-03  paf
                   14984: 
                   14985:        * INSTALL, src/include/pa_operation.h, src/include/pa_request.h,
                   14986:          src/main/compile.tab.C, src/main/compile.y,
                   14987:          src/main/compile_tools.C, src/main/compile_tools.h,
                   14988:          src/main/execute.C, src/main/pa_request.C: debug info format
                   14989:          simplified, now it's: OP_VALUE Operation::Origin << here value*
                   14990: 
                   14991:          higher limits:   file number (max: 255)   line number (max:
                   14992:          64535)   column number (max: 255)
                   14993: 
                   14994:        * src/classes/math.C: top limit
                   14995: 
                   14996:        * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
                   14997:          precise parse error position in case of
                   14998: 
                   14999:          ^bug ]
                   15000: 
                   15001:        * src/classes/op.C, src/main/pa_request.C, tests/042.html: test 042
                   15002:          changed to realities, and passed [bug fixed]
                   15003: 
                   15004:        * src/: classes/op.C, include/pa_request.h, main/compile.C,
                   15005:          main/compile.tab.C, main/compile.y, main/compile_tools.C,
                   15006:          main/compile_tools.h, main/pa_request.C: introducing
                   15007:          ^process...[main-method-alias]
                   15008: 
                   15009:        * src/: classes/date.C, classes/image.C, classes/op.C,
                   15010:          classes/string.C, classes/table.C, classes/xdoc.C,
                   15011:          types/pa_vmethod_frame.h: MethodParams& now [methods without
                   15012:          params receive zero reference, but they are expected not to look
                   15013:          there]
                   15014: 
                   15015:        * operators.txt, src/classes/date.C, src/classes/double.C,
                   15016:          src/classes/file.C, src/classes/hash.C, src/classes/image.C,
                   15017:          src/classes/int.C, src/classes/mail.C, src/classes/math.C,
                   15018:          src/classes/memory.C, src/classes/op.C, src/classes/response.C,
                   15019:          src/classes/string.C, src/classes/table.C, src/classes/void.C,
                   15020:          src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
                   15021:          src/main/execute.C, src/types/pa_method.h: MethodParams& now
                   15022:          [methods without params receive zero reference, but they are
                   15023:          expected not to look there]
                   15024: 
                   15025:        * operators.txt, src/classes/op.C, src/include/pa_request.h,
                   15026:          src/main/pa_request.C, src/types/pa_vmethod_frame.h:
                   15027:          ^process...[filename] useful for better error reporting
                   15028:          [file/line/col]
                   15029: 
                   15030:        * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
                   15031:          types/pa_vstring.h: slightly improved error messages text: 1. is
                   15032:          '%s', it 2. method undefined in case of ^void[]
                   15033: 
                   15034:        * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
                   15035:          include/pa_types.h, main/execute.C, main/pa_request.C: exception
                   15036:          handling done. now we have error columns todo: test it
                   15037: 
                   15038:        * src/: classes/op.C, include/pa_request.h: removed from trace 'a'
                   15039:          exception when ^try{    ^throw[a;1] }{    ^throw[b;2] }
                   15040: 
                   15041:          this makes life easier: were: bad stack order -- were in
                   15042:          exception catch unwind order, which didn't match execution order
                   15043: 
                   15044:          @main[] ^try{   ^first[] }{     ^throw[c;3] }
                   15045: 
                   15046:          @first[] ^throw[a;1]
                   15047: 
                   15048:          showed throw a first throw b try
                   15049: 
                   15050:          which is no good
                   15051: 
                   15052:        * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
                   15053:          main/compile.tab.C, main/execute.C, main/pa_request.C: strack
                   15054:          trace reset after handled exception [old bug fixed]
                   15055: 
                   15056:        * src/main/: compile.tab.C, compile.y: parse position old bug
                   15057:          fixed.  position reporting made precise [both, in parse erros and
                   15058:          runtime errors]
                   15059: 
                   15060: 2003-04-02  paf
                   15061: 
                   15062:        * src/: include/pa_operation.h, include/pa_request.h,
                   15063:          main/compile.C, main/compile.tab.C, main/compile.y,
                   15064:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   15065:          main/pa_exception.C, main/pa_request.C: debug info: started
                   15066:          using.  todo:complete
                   15067: 
                   15068:        * src/: classes/op.C, include/pa_operation.h, include/pa_request.h,
                   15069:          main/compile.C, main/compile.tab.C, main/compile.y,
                   15070:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   15071:          main/pa_request.C: prepared debug info todo:use it
                   15072: 
                   15073:        * src/include/pa_operation.h: strange mistake fixed: forgot to
                   15074:          return Operation class->union after switching from autoptrs.
                   15075: 
                   15076:        * tests/: Makefile, results/108.processed, results/117.processed:
                   15077:          meta considered OK [it's up to coder now to remove it not needed]
                   15078: 
                   15079:        * src/main/pa_dictionary.C, tests/Makefile: replace bug fix [broke
                   15080:          Dictionary constructor when moved to gc]
                   15081: 
                   15082:        * src/main/pa_common.C: uncommented http:// file loading
                   15083: 
                   15084:        * src/include/pa_array.h, src/main/execute.C,
                   15085:          src/targets/cgi/parser3.C, tests/run_parser.sh: gif encoder bug
                   15086:          fix [gdGrowingBuf]
                   15087: 
                   15088:        * configure.in, src/lib/Makefile.am: removed patches
                   15089: 
                   15090:        * configure, src/include/pa_config_auto.h.in,
                   15091:          src/main/pa_charset.C: --enable-assertions autoconf-ed
                   15092: 
                   15093:        * src/main/pa_common.C: uncommented http:// file loading
                   15094: 
                   15095:        * src/: classes/xdoc.C, types/pa_vxdoc.h: removed ref leak in
                   15096:          xdoc::create/load
                   15097: 
                   15098:        * src/: classes/form.C, classes/hash.C, classes/image.C,
                   15099:          classes/string.C, classes/table.C, classes/void.C,
                   15100:          include/pa_common.h, main/pa_common.C, main/pa_request.C,
                   15101:          main/pa_sql_driver_manager.C, main/pa_string.C: all calls to
                   15102:          String::String(str,helper_length) are checked.  found/fixed one
                   15103:          place: $request:body now zero-terminated,
                   15104: 
                   15105:        * src/: classes/op.C, classes/table.C, include/pa_request.h,
                   15106:          main/compile_tools.C, main/execute.C, types/pa_value.h,
                   15107:          types/pa_vbool.h, types/pa_vclass.h, types/pa_vdate.h,
                   15108:          types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
                   15109:          types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
                   15110:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vstring.h,
                   15111:          types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
                   15112:          types/pa_vxnode.h: more locally scoped vars in execute (more
                   15113:          easily optimizable)
                   15114: 
                   15115:        * src/: classes/table.C, include/pa_table.h, main/pa_table.C: few
                   15116:          for(size_t i=0...) -> for(Array_iterator... i(..); i.has_next()
                   15117: 
                   15118:        * src/: include/pa_array.h, include/pa_stack.h,
                   15119:          include/pa_string.h, main/compile_tools.C, main/main.dsp,
                   15120:          main/pa_table.C, types/pa_vmethod_frame.C: array get/put check
                   15121:          become assertion iterator in methodframe filler
                   15122: 
                   15123:        * src/: include/pa_array.h, include/pa_stack.h, main/main.dsp,
                   15124:          targets/cgi/parser3.C: array::get/put inlined
                   15125: 
                   15126:        * src/: lib/cord/cordbscs.c, main/pa_globals.C: globals.c:
                   15127:          gc_substitute_memory_management_functions +installed CORD_oom
                   15128:          function
                   15129: 
                   15130:        * configure.in, src/classes/xnode.C, src/include/pa_config_fixed.h,
                   15131:          src/include/pa_config_includes.h, src/include/pa_string.h,
                   15132:          src/lib/cord/cordbscs.c, src/main/pa_memory.C,
                   15133:          src/targets/cgi/parser3.C: converted debug hacks to ANSI
                   15134:          assertions started configure.in --enable-assertions
                   15135: 
                   15136: 2003-04-01  paf
                   15137: 
                   15138:        * src/: classes/xdoc.C, classes/xnode.h, include/pa_memory.h,
                   15139:          main/pa_memory.C, targets/cgi/parser3.C, types/pa_vxdoc.h,
                   15140:          types/pa_vxnode.C, types/pa_vxnode.h: memory bug debugged down:
                   15141:          gdome uses glib memory, and stores last pointer to xmlDoc there,
                   15142:          gc misses that and collects valid memory fixed by remembering
                   15143:          xmlDoc from dom object in xdoc.  todo: do something with
                   15144:          premature free of xdoc with xnodes/node values referring into it
                   15145: 
                   15146:        * src/classes/: mail.C: typo fix
                   15147: 
                   15148:        * src/main/pa_memory.C: bug() to set bpt in (memory.c) some .am
                   15149:          changes
                   15150: 
                   15151:        * src/: include/pa_memory.h, main/pa_common.C, main/pa_globals.C,
                   15152:          main/pa_memory.C: moved memory debugging to global level: to
                   15153:          pa_gc_malloc
                   15154: 
                   15155:        * src/: main/pa_globals.C, targets/cgi/parser3.C: xml memory
                   15156:          debugging showed no errors. todo: debug parser memory
                   15157: 
                   15158:        * src/targets/cgi/: parser3.C, parser3.dsp: more build
                   15159:          configurations
                   15160: 
                   15161:        * src/: classes/classes.dsp, include/pa_config_fixed.h,
                   15162:          main/compile.tab.C, main/main.dsp, main/pa_globals.C,
                   15163:          targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
                   15164:          types/types.dsp: prepared xml-static configuration
                   15165: 
                   15166: 2003-03-31  paf
                   15167: 
                   15168:        * INSTALL, src/classes/xdoc.C, src/main/pa_globals.C,
                   15169:          src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp: started
                   15170:          xml lib memory debugging, simple checks failed: it seems that
                   15171:          library does realloc(bad ptr), and recording those ptrs in heap
                   15172:          [for debugging] was bad: heap situation changes = everything
                   15173:          works fine
                   15174: 
                   15175:        * src/: main/pa_charset.C, include/pa_charset.h: worked around
                   15176:          xmlRegisterCharEncodingHandler limitation [currently imposed
                   15177:          limit of 10 user-defined charsets]
                   15178: 
                   15179: 2003-03-28  paf
                   15180: 
                   15181:        * src/main/execute.C: execution stack copied to local register
                   15182:          variable, removed lots [~2e7) of memory accesses
                   15183: 
                   15184: 2003-03-27  paf
                   15185: 
                   15186:        * src/: classes/xdoc.C, main/pa_globals.C: XML memory funcs to GC
                   15187:          works in debug, but fails in release todo: fix that
                   15188: 
                   15189:        * src/: classes/xdoc.C, main/compile.tab.C, main/pa_globals.C,
                   15190:          targets/cgi/parser3.C: forgot to merge XML memory funcs
                   15191:          replacement from gc branch
                   15192: 
                   15193:        * src/main/pa_exec.C: introducing append_help_length [radical
                   15194:          improvement here]
                   15195: 
                   15196:        * src/targets/cgi/parser3.C: GC_java_finalization turned off [was
                   15197:          'not recommened' in gc.h, on win32 noticed no difference]
                   15198: 
                   15199:        * src/include/pa_array.h: returned checked array get [were disabled
                   15200:          for debugging] result:not slower [don't understand that, it were
                   15201:          INLINED] todo: find out a way of inlining it!
                   15202: 
                   15203:        * src/: include/pa_string.h, lib/gc/include/gc.h,
                   15204:          lib/gc/include/gc_fake.h, main/compile.tab.C,
                   15205:          targets/cgi/parser3.C, main/pa_memory.C, targets/cgi/parser3.dsp:
                   15206:          convention changed: all resulting strings are zero-terminated
                   15207: 
                   15208:        * src/: classes/date.C, classes/file.C, classes/hash.C,
                   15209:          classes/string.C, classes/table.C, classes/void.C,
                   15210:          include/pa_string.h, lib/cord/cord.dsp, lib/cord/cordbscs.c,
                   15211:          lib/cord/include/cord.h, main/compile.tab.C, main/compile.y,
                   15212:          main/compile_tools.h, main/pa_common.C, main/pa_exec.C,
                   15213:          main/pa_request.C, main/pa_string.C, main/pa_uue.C,
                   15214:          sql/pa_sql_driver.h, types/pa_value.C, types/pa_venv.h,
                   15215:          types/pa_vfile.C, types/pa_vmail.C: introducing
                   15216:          append_help_length [radical improvement here]
                   15217: 
                   15218:        * src/: classes/memory.C, include/pa_array.h, include/pa_hash.h,
                   15219:          include/pa_memory.h, lib/cord/cord.dsp, lib/cord/cordxtra.c,
                   15220:          lib/gc/include/gc.h, main/pa_memory.C, targets/cgi/parser3.C,
                   15221:          targets/cgi/parser3.dsp, types/pa_vstatus.C: disabled gc, become
                   15222:          even slower
                   15223: 
                   15224:        * src/: classes/string.C, classes/table.C, include/pa_array.h,
                   15225:          include/pa_stack.h, include/pa_string.h, main/compile_tools.C,
                   15226:          main/pa_string.C, main/untaint.C, types/pa_vmethod_frame.C: fixed
                   15227:          clients of &get(): most to use non-ref version, some[in tight
                   15228:          places] to get_unchecked_ref
                   15229: 
                   15230:        * src/doc/memory.dox: forgot to add
                   15231: 
                   15232:        * src/: classes/classes.dsp, classes/memory.C, classes/xdoc.C,
                   15233:          include/pa_array.h, include/pa_request.h, include/pa_stack.h,
                   15234:          include/pa_string.h, lib/cord/cord.dsp, lib/ltdl/libltdl.dsp,
                   15235:          lib/md5/md5.dsp, lib/pcre/pcre.dsp, main/compile.tab.C,
                   15236:          main/compile.y, main/compile_tools.C, main/compile_tools.h,
                   15237:          main/main.dsp, main/pa_string.C, targets/cgi/parser3.C,
                   15238:          targets/cgi/parser3.dsp, types/pa_vmail.C,
                   15239:          types/pa_vmethod_frame.C, types/types.dsp: Array::put(index,
                   15240:          T>>&<< removed after Stack::pop wiping removed [moved to separate
                   15241:          func] other Array & removed
                   15242: 
                   15243: 2003-03-26  paf
                   15244: 
                   15245:        * src/: classes/classes.dsp, classes/file.C, classes/op.C,
                   15246:          classes/table.C, include/pa_array.h, include/pa_charset.h,
                   15247:          include/pa_stack.h, include/pa_string.h, include/pa_table.h,
                   15248:          lib/cord/cord.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
                   15249:          lib/pcre/pcre.dsp, main/compile.tab.C, main/compile.y,
                   15250:          main/main.dsp, main/pa_charset.C, main/pa_common.C,
                   15251:          main/pa_exec.C, main/pa_sql_driver_manager.C,
                   15252:          main/pa_stylesheet_manager.C, main/pa_table.C,
                   15253:          targets/cgi/parser3.C, targets/cgi/parser3.dsp,
                   15254:          types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
                   15255:          types/pa_vobject.C, types/pa_vobject.h, types/types.dsp:
                   15256:          pre-evaluated .count() in some places
                   15257: 
                   15258:        * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
                   15259:          lib/pcre/pcre.dsp, main/main.dsp, targets/cgi/parser3.dsp,
                   15260:          types/types.dsp: .dsp profiling updated
                   15261: 
                   15262:        * src/: classes/classes.dsp, lib/cord/cord.dsp,
                   15263:          lib/ltdl/libltdl.dsp, lib/md5/md5.dsp, main/main.dsp,
                   15264:          targets/cgi/parser3.dsp, types/types.dsp: started profiling
                   15265: 
                   15266:        * src/: classes/classes.dsp, lib/cord/cord.dsp, main/compile.tab.C,
                   15267:          main/compile_tools.h, main/main.dsp, targets/cgi/parser3.dsp,
                   15268:          targets/isapi/parser3isapi.dsp, types/types.dsp: .dsp updated to
                   15269:          use lib/gc,lib/cord
                   15270: 
1.116     moko     15271:        * acsite.m4, src/classes/Makefile.am, src/classes/mail.C,
                   15272:          src/classes/math.C, src/classes/op.C, src/include/pa_common.h,
1.95      moko     15273:          src/include/pa_config_auto.h.in, src/include/pa_config_fixed.h,
                   15274:          src/include/pa_config_includes.h, src/include/pa_request.h,
                   15275:          src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
                   15276:          src/include/pa_stylesheet_connection.h, src/include/pa_version.h,
1.116     moko     15277:          src/lib/Makefile.am, src/lib/cord/Makefile.am,
1.95      moko     15278:          src/lib/cord/include/Makefile.am,
1.116     moko     15279:          src/lib/cord/include/private/Makefile.am, src/main/Makefile.am,
                   15280:          src/main/pa_exec.C, src/main/pa_string.C, src/main/untaint.C,
                   15281:          src/targets/cgi/Makefile.am, src/types/Makefile.am,
                   15282:          src/types/pa_vclass.h, src/types/pa_vcookie.h,
                   15283:          src/types/pa_vform.h, src/types/pa_vhash.h,
                   15284:          src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.h,
                   15285:          src/types/pa_vresponse.h, src/types/pa_vstateless_class.h,
                   15286:          src/types/pa_vstatus.C, src/types/pa_vstatus.h,
                   15287:          src/types/pa_vtable.h, src/types/pa_vxdoc.h: configured math
                   15288:          funcs ported pa_exec
1.95      moko     15289: 
                   15290:        * src/lib/: cord/include/gc.h, gc/include/gc.h: introducing lib/gc
                   15291: 
                   15292:        * src/lib/cord/include/: cord.h, ec.h, gc.h, private/cord_pos.h:
                   15293:          bundled gc includes
                   15294: 
                   15295:        * src/: classes/op.C, include/pa_array.h,
                   15296:          include/pa_sql_connection.h, include/pa_string.h,
                   15297:          include/pa_version.h, main/compile.tab.C, main/compile.y,
                   15298:          main/execute.C, main/pa_common.C, main/pa_exception.C,
                   15299:          main/pa_request.C, main/pa_string.C, targets/cgi/parser3.C,
                   15300:          targets/cgi/parser3.dsp: a number of bugfixes [while testing
                   15301:          first real site (aval)]
                   15302: 
                   15303: 2003-03-25  paf
                   15304: 
                   15305:        * operators.txt, src/main/pa_sql_driver_manager.C,
                   15306:          src/types/pa_vstatus.C: $status.memory used free since_compact
                   15307:          process
                   15308: 
                   15309:        * src/: include/pa_sql_connection.h, main/pa_globals.C,
                   15310:          main/untaint.C, sql/pa_sql_driver.h: untaint.C L_SQL
                   15311: 
                   15312:        * src/main/: pa_charset.C, untaint.C: untaint.C L_MAIL_HEADER
                   15313: 
                   15314:        * src/main/pa_request.C, src/main/untaint.C, src/types/pa_value.C,
                   15315:          src/types/pa_value.h, src/types/pa_vfile.h,
                   15316:          src/types/pa_vobject.C, src/types/pa_vobject.h,
                   15317:          src/types/pa_vstring.C, src/types/pa_vstring.h, tests/121.html,
                   15318:          tests/results/121.processed: untaint.C L_URI
                   15319: 
                   15320:        * operators.txt, src/classes/Makefile.am, src/classes/classes.dsp,
                   15321:          src/classes/op.C, src/main/pa_request.C, src/types/Makefile.am,
                   15322:          src/types/pa_venv.h, src/types/types.dsp, src/classes/memory.C,
                   15323:          src/types/pa_vmemory.h: ^memory:compact[]
                   15324: 
                   15325:        * tests/results/109.processed: it was a bug in parser. updated 109
                   15326:          test result
                   15327: 
                   15328:        * src/classes/xdoc.C, tests/Makefile: fixed transform params2
                   15329: 
                   15330:        * src/main/pa_charset.C, src/targets/cgi/parser3.C, tests/Makefile,
                   15331:          tests/results/107.processed: fixed dom language [values are now
                   15332:          considered tainted.  it was a bug in parser. updated 107 test
                   15333:          result
                   15334: 
                   15335:        * src/classes/xdoc.C: fixed transform params
                   15336: 
                   15337:        * src/: include/pa_stylesheet_manager.h,
                   15338:          main/pa_stylesheet_manager.C: fixed stylesheet caching
                   15339: 
                   15340:        * src/: include/pa_memory.h, main/pa_charset.C: memory: new 'new'
                   15341:          overloads for structure handling
                   15342: 
                   15343:        * src/: classes/image.C, classes/xdoc.C, classes/xnode.C,
                   15344:          include/pa_string.h, main/pa_string.C, types/pa_vxnode.C: removed
                   15345:          StringBody(0) ambiguilty, introducting static
                   15346:          StringBody::Format(int)
                   15347: 
                   15348:        * src/: main/pa_request.C, types/pa_vxnode.C: vxnode compiled xml
                   15349:          linked
                   15350: 
                   15351:        * src/types/pa_vxdoc.C: vxdoc compiled
                   15352: 
                   15353:        * src/: classes/xnode.C, classes/xnode.h, include/pa_memory.h,
                   15354:          types/pa_vxdoc.h, types/pa_vxnode.h: xnode.C compiled, doc/node
                   15355:          finalizers isntalled
                   15356: 
                   15357:        * src/: classes/image.C, classes/xdoc.C, classes/xnode.h,
                   15358:          doc/exception.dox, doc/index.dox, include/pa_charset.h,
                   15359:          include/pa_memory.h, include/pa_request.h, include/pa_string.h,
                   15360:          main/pa_charset.C, main/pa_memory.C, main/pa_string.C: xdoc.C
                   15361:          compiled todo: xnode.C / finalizers
                   15362: 
                   15363:        * src/doc/string.dox: updated: new string internals
                   15364: 
                   15365: 2003-03-24  paf
                   15366: 
                   15367:        * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   15368:          include/pa_charset.h, include/pa_config_fixed.h,
                   15369:          include/pa_request.h, include/pa_stylesheet_connection.h,
                   15370:          include/pa_stylesheet_manager.h, main/pa_charset.C,
                   15371:          main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
                   15372:          main/pa_stylesheet_manager.C, types/pa_vxdoc.h,
                   15373:          types/pa_vxnode.h: started XML
                   15374: 
                   15375:        * src/main/: pa_common.C, pa_sql_driver_manager.C: http://
                   15376: 
                   15377:        * src/: classes/file.C, classes/image.C, classes/mail.C,
                   15378:          include/pa_string.h, main/pa_common.C,
                   15379:          main/pa_sql_driver_manager.C: introducing string[body]::pos(char)
                   15380: 
                   15381:        * src/: classes/file.C, classes/image.C, classes/mail.C,
                   15382:          include/pa_memory.h, include/pa_string.h, main/pa_common.C,
                   15383:          main/pa_request.C, main/pa_sql_driver_manager.C,
                   15384:          types/pa_vimage.h: size_t pos everywhere checks changed to check
                   15385:          for eq STRING_NOT_FOUND
                   15386: 
                   15387:        * src/main/pa_string.C, src/main/untaint.C, tests/Makefile: string
                   15388:          optimize bit implemented
                   15389: 
                   15390:        * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
                   15391:          String::ArrayFragment::append_positions fixed
                   15392: 
                   15393:        * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
                   15394:          String::this_starts fixed
                   15395: 
                   15396:        * src/main/pa_string.C, tests/Makefile: string::pos fixed
                   15397: 
                   15398:        * src/: include/pa_hash.h, main/execute.C, main/pa_string.C:
                   15399:          hashcode implemented fully, including per-char callback [it can
                   15400:          be - substr CORD node]
                   15401: 
                   15402:        * src/: include/pa_array.h, main/compile.tab.C: gif encoding
                   15403:          rewritten to rewalloc with 100byte buf ahead
                   15404: 
                   15405:        * src/classes/image.C, src/classes/op.C, src/classes/table.C,
                   15406:          src/include/pa_string.h, src/main/compile.tab.C,
                   15407:          src/main/compile.y, src/main/execute.C, src/main/pa_common.C,
                   15408:          src/main/untaint.C, tests/Makefile: attempt to do gif encoding to
                   15409:          CORD_ec [bad] would rewrite as realloc now
                   15410: 
                   15411:        * src/: classes/date.C, classes/file.C, classes/form.C,
                   15412:          classes/image.C, classes/math.C, classes/op.C, classes/table.C,
                   15413:          include/pa_cache_managers.h, include/pa_charsets.h,
                   15414:          include/pa_common.h, include/pa_request.h,
                   15415:          include/pa_sql_driver_manager.h, include/pa_table.h,
                   15416:          main/pa_charset.C, main/pa_exception.C, main/pa_exec.C,
                   15417:          main/pa_globals.C, main/pa_request.C, main/pa_uue.C,
                   15418:          targets/isapi/parser3isapi.C, types/pa_value.C, types/pa_value.h,
                   15419:          types/pa_vmail.C, types/pa_vmethod_frame.C,
                   15420:          types/pa_vstateless_class.h: 2*2 worked :)
                   15421: 
                   15422:        * parser3.dsw, src/classes/date.C, src/classes/file.C,
                   15423:          src/include/pa_exec.h, src/include/pa_string.h,
                   15424:          src/main/pa_exec.C, src/main/pa_sql_driver_manager.C: empty run
                   15425:          passed OK
                   15426: 
                   15427:        * src/: classes/hash.C, classes/string.C, classes/table.C,
                   15428:          types/pa_value.C: all linked todo: debug
                   15429: 
                   15430:        * src/: classes/mail.C, main/pa_request.C, targets/cgi/parser3.C,
                   15431:          types/pa_vstateless_class.C: all compiled.  todo:link
                   15432: 
                   15433:        * src/types/pa_wcontext.C: pa_wcontext.C compiled
                   15434: 
                   15435:        * src/types/pa_vtable.C: pa_vtable.C compiled
                   15436: 
                   15437:        * src/types/pa_vstring.C: pa_vstring.C compiled
                   15438: 
                   15439:        * src/types/pa_vstatus.C: pa_vstatus.C compiled
                   15440: 
                   15441:        * src/types/: pa_vmath.C, pa_vmethod_frame.C, pa_vmethod_frame.h,
                   15442:          pa_vobject.C, pa_vrequest.C, pa_vresponse.C,
                   15443:          pa_vstateless_class.C, pa_vstateless_class.h:
                   15444:          pa_vstateless_class.C compiled
                   15445: 
                   15446:        * src/: classes/xdoc.C, types/pa_vmail.C, types/pa_vmail.h,
                   15447:          types/pa_vmath.C: pa_vmail.C compiled
                   15448: 
                   15449:        * src/types/: pa_vhash.C, pa_vimage.C: pa_vimage.C compiled
                   15450: 
                   15451:        * src/types/pa_vform.C: pa_vform.C compiled
                   15452: 
                   15453:        * src/types/pa_vfile.C: pa_vfile.C compiled
                   15454: 
                   15455:        * src/types/: pa_value.h, pa_vclass.C, pa_vcookie.C,
                   15456:          pa_vstateless_class.C: pa_vcookie.C compiled
                   15457: 
                   15458:        * src/: classes/string.C, types/pa_value.C, types/pa_value.h,
                   15459:          types/pa_vhash.h: pa_value.C compiled
                   15460: 
                   15461:        * src/: main/execute.C, main/pa_string.C, types/pa_wcontext.h:
                   15462:          classes.lib main.lib compiled
                   15463: 
                   15464:        * src/classes/void.C: void.C compiled
                   15465: 
                   15466:        * src/: classes/string.C, classes/table.C, include/pa_string.h,
                   15467:          main/pa_string.C, types/pa_vtable.C, types/pa_vtable.h: table.C
                   15468:          compiled
                   15469: 
                   15470:        * src/: classes/string.C, include/pa_request.h,
                   15471:          include/pa_string.h, main/pa_string.C: string.C compiled
                   15472: 
                   15473:        * src/: classes/op.C, classes/string.C, classes/table.C,
                   15474:          classes/void.C, include/pa_sql_connection.h, include/pa_string.h,
                   15475:          main/pa_request.C, main/pa_string.C: op.C compiled
                   15476: 
                   15477:        * src/classes/: math.C, op.C: math.C compiled
                   15478: 
                   15479:        * src/: classes/mail.C, classes/string.C, classes/table.C,
                   15480:          types/pa_vmail.h: mail.C compiled
                   15481: 
                   15482:        * src/classes/: int.C, table.C: int.C compiled
                   15483: 
                   15484:        * src/: classes/hash.C, classes/image.C, classes/string.C,
                   15485:          classes/table.C, include/pa_memory.h, include/pa_string.h,
                   15486:          main/pa_memory.C, types/pa_vimage.h, types/pa_vmail.C: image.C
                   15487:          compiled
                   15488: 
                   15489:        * src/: classes/hash.C, classes/string.C, classes/table.C,
                   15490:          classes/void.C, classes/xdoc.C, include/pa_request.h,
                   15491:          include/pa_sql_connection.h: hash.C compiled
                   15492: 
                   15493:        * src/: classes/classes.C, classes/classes.awk, classes/classes.h,
                   15494:          classes/date.C, classes/double.C, classes/file.C, classes/form.C,
                   15495:          classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
                   15496:          classes/math.C, classes/op.C, classes/response.C,
                   15497:          classes/string.C, classes/table.C, classes/void.C,
                   15498:          classes/xdoc.C, classes/xnode.C, include/pa_memory.h,
                   15499:          include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
                   15500:          main/pa_string.C, types/pa_vdate.h, types/pa_vmethod_frame.h:
                   15501:          file.C table.C compiled
                   15502: 
                   15503:        * src/: include/pa_string.h, main/pa_string.C, main/pa_uue.C,
                   15504:          main/untaint.C: main.lib compiled
                   15505: 
                   15506: 2003-03-21  paf
                   15507: 
                   15508:        * src/: classes/op.C, include/pa_cache_managers.h,
                   15509:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   15510:          include/pa_stylesheet_manager.h, main/pa_exception.C,
                   15511:          main/pa_globals.C, main/pa_sql_driver_manager.C,
                   15512:          sql/pa_sql_driver.h, types/pa_vimage.C: pa_sql_driver_manager.C
                   15513:          compiled
                   15514: 
                   15515:        * src/: classes/hash.C, classes/image.C, classes/op.C,
                   15516:          classes/xdoc.C, classes/xnode.C, include/pa_common.h,
                   15517:          include/pa_hash.h, include/pa_request.h, include/pa_string.h,
                   15518:          main/compile.C, main/pa_common.C, main/pa_request.C,
                   15519:          types/pa_vmail.C, types/pa_vresponse.C, types/pa_vxnode.C:
                   15520:          pa_request.C compiled
                   15521: 
                   15522:        * src/: classes/hash.C, classes/mail.C, classes/op.C,
                   15523:          include/pa_request.h, main/execute.C, main/pa_request.C,
                   15524:          types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
                   15525:          types/pa_vhash.h, types/pa_vimage.C, types/pa_vmethod_frame.h,
                   15526:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
                   15527:          types/pa_vresponse.h, types/pa_vtable.C: pa_request.C 50%
                   15528:          compiled
                   15529: 
                   15530:        * src/: include/pa_exec.h, include/pa_string.h, main/pa_exec.C,
                   15531:          main/pa_string.C: pa_exec.C compiled [win32 only for now]  todo:
                   15532:          on unix
                   15533: 
                   15534:        * src/: include/pa_charset.h, include/pa_charsets.h,
                   15535:          include/pa_exec.h, main/compile.tab.C, main/pa_charset.C,
                   15536:          main/pa_charsets.C, main/pa_dictionary.C, main/pa_exec.C:
                   15537:          pa_charsets.C compiled
                   15538: 
                   15539:        * src/: classes/image.C, classes/mail.C, classes/op.C,
                   15540:          include/pa_request.h, include/pa_string.h, main/compile.tab.C,
                   15541:          main/compile.y, main/execute.C, main/pa_common.C,
                   15542:          main/pa_request.C, types/pa_junction.h, types/pa_method.h,
                   15543:          types/pa_vcode_frame.h, types/pa_vimage.h,
                   15544:          types/pa_vmethod_frame.h: execute.C compiled
                   15545: 
                   15546:        * src/: classes/classes.C, classes/classes.h, classes/date.C,
                   15547:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   15548:          classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
                   15549:          classes/op.C, classes/string.C, classes/table.C, classes/void.C,
                   15550:          classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   15551:          include/pa_cache_managers.h, include/pa_charsets.h,
                   15552:          include/pa_common.h, include/pa_exec.h, include/pa_memory.h,
                   15553:          include/pa_operation.h, include/pa_request.h, include/pa_sapi.h,
                   15554:          include/pa_sql_driver_manager.h, include/pa_string.h,
                   15555:          include/pa_stylesheet_connection.h,
                   15556:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   15557:          main/compile.C, main/compile.tab.C, main/compile.y,
                   15558:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   15559:          main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
                   15560:          main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C,
                   15561:          main/pa_string.C, main/pa_stylesheet_manager.C, main/untaint.C,
                   15562:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                   15563:          types/pa_junction.h, types/pa_method.h, types/pa_value.C,
                   15564:          types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
                   15565:          types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
                   15566:          types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
                   15567:          types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
                   15568:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
                   15569:          types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
                   15570:          types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
                   15571:          types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
                   15572:          types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
                   15573:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
                   15574:          types/pa_vresponse.h, types/pa_vstateless_class.C,
                   15575:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   15576:          types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
                   15577:          types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
                   15578:          types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   15579:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
                   15580:          types/pa_wcontext.h, types/pa_wwrapper.h: introducing StringBody
                   15581:          [C++ CORD wrapper]
                   15582: 
                   15583:        * src/: lib/cord/cordbscs.c, main/pa_string.C: test14 [bug fixed]
                   15584: 
                   15585:        * src/: classes/file.C, include/pa_charset.h, main/pa_charset.C:
                   15586:          $file::exec/cgi[script;    $.charset[this is script's charset]
                   15587: 
                   15588:          command line, env values, input got transcoded before call
                   15589:          stdout, stderr got transcoded after call
                   15590: 
                   15591:        * src/classes/file.C: ^file::exec/cgi now does not pass post data
                   15592:          by default.  use: ^file::exec[...;$.stdin[$request.body]
                   15593: 
                   15594:        * src/main/pa_common.C: } typo bug fix
                   15595: 
                   15596:        * src/main/pa_common.C: } typo bug fix
                   15597: 
                   15598: 2003-03-20  paf
                   15599: 
                   15600:        * src/: include/pa_string.h, lib/cord/cordbscs.c, main/pa_string.C,
                   15601:          main/untaint.C: cord bug fix, but still errors todo: clear out
                   15602: 
                   15603:        * src/include/pa_string.h: more tests
                   15604: 
                   15605:        * src/main/pa_string.C: string.pos fixed
                   15606: 
1.116     moko     15607:        * src/lib/: ltdl/config_fixed.h, ltdl/configure, ltdl/configure.in,
                   15608:          ltdl/libltdl.dsp, ltdl/ltdl.c, ltdl/ltdl.h, pcre/dftables.c,
                   15609:          pcre/get.c, pcre/internal.h, pcre/maketables.c, pcre/pcre.c,
                   15610:          pcre/pcre.h, pcre/pcre_parser_ctype.c, pcre/study.c: undone bad
                   15611:          replaces
1.95      moko     15612: 
                   15613:        * src/: classes/image.C, include/pa_dictionary.h,
                   15614:          include/pa_string.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
                   15615:          lib/pcre/internal.h, lib/pcre/pcre.c, lib/pcre/study.c,
                   15616:          main/compile.tab.C, main/pa_dictionary.C, main/pa_string.C,
                   15617:          main/untaint.C, types/pa_vmail.C: more tests [bugs fixed]
                   15618: 
                   15619:        * src/include/pa_string.h: warning
                   15620: 
                   15621:        * src/include/pa_string.h: this_starts fixed
                   15622: 
                   15623:        * src/: include/pa_string.h, main/pa_string.C: added: assertion on
                   15624:          new String ctor & append params convention
                   15625: 
                   15626:        * src/: classes/file.C, classes/hash.C, classes/image.C,
                   15627:          classes/mail.C, classes/op.C, classes/string.C, classes/table.C,
                   15628:          classes/xdoc.C, include/pa_common.h, include/pa_memory.h,
                   15629:          include/pa_string.h, main/compile.tab.C, main/pa_common.C,
                   15630:          main/pa_exception.C, main/pa_exec.C,
                   15631:          main/pa_sql_driver_manager.C, main/pa_string.C,
                   15632:          main/pa_stylesheet_manager.C, main/untaint.C,
                   15633:          targets/isapi/parser3isapi.C, types/pa_vimage.C,
                   15634:          types/pa_vmail.C: more tests OK
                   15635: 
                   15636:        * src/: include/pa_array.h, include/pa_hash.h, include/pa_memory.h,
                   15637:          include/pa_string.h, main/pa_memory.C, main/pa_string.C: test:
                   15638:          gc/exit runned OK
                   15639: 
                   15640:        * src/types/pa_vmail.C: another naming problem: should not name
                   15641:          vars like that: unpredictable close caused problems with later
                   15642:          sending mail: Mar 20 06:39:53 pt-6 sendmail[19044]: File
                   15643:          descriptors missing on startup: stdin; Bad file number
                   15644: 
                   15645:          todo: find out why so many filters(stream) here. probably wrong?
                   15646: 
                   15647:        * src/: include/pa_dictionary.h, include/pa_string.h,
                   15648:          main/pa_common.C, main/pa_dictionary.C, main/pa_string.C,
                   15649:          main/untaint.C: test compiled
                   15650: 
                   15651:        * src/: classes/image.C, classes/mail.C, classes/math.C,
                   15652:          classes/string.C, include/pa_dictionary.h, include/pa_hash.h,
                   15653:          include/pa_memory.h, include/pa_string.h, lib/cord/cordbscs.c,
                   15654:          lib/cord/cordxtra.c, lib/pcre/dftables.c, lib/pcre/get.c,
                   15655:          lib/pcre/maketables.c, lib/pcre/pcre.c, lib/pcre/pcre.h,
                   15656:          lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
                   15657:          main/compile.tab.C, main/pa_common.C, main/pa_dictionary.C,
                   15658:          main/pa_exec.C, main/pa_memory.C, main/pa_request.C,
                   15659:          main/pa_string.C, main/untaint.C, types/pa_vfile.h,
                   15660:          types/pa_vmail.C: untaint.C 99% [except mail&sql&optimize]
                   15661: 
                   15662:        * parser3.dsw, src/classes/file.C, src/classes/image.C,
                   15663:          src/classes/op.C, src/classes/string.C, src/classes/table.C,
                   15664:          src/classes/xdoc.C, src/classes/xnode.C, src/include/pa_common.h,
                   15665:          src/include/pa_memory.h, src/include/pa_request.h,
                   15666:          src/include/pa_request_charsets.h,
                   15667:          src/include/pa_sql_connection.h, src/include/pa_string.h,
                   15668:          src/main/compile.tab.C, src/main/execute.C,
                   15669:          src/main/pa_charset.C, src/main/pa_common.C,
                   15670:          src/main/pa_exception.C, src/main/pa_exec.C,
                   15671:          src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
                   15672:          src/main/pa_stylesheet_manager.C, src/main/untaint.C,
                   15673:          src/sql/pa_sql_driver.h, src/targets/cgi/parser3.C,
                   15674:          src/targets/isapi/parser3isapi.C, src/types/pa_value.C,
                   15675:          src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
                   15676:          src/types/pa_venv.h, src/types/pa_vform.C, src/types/pa_vmail.C,
                   15677:          src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
                   15678:          src/types/pa_vobject.C, src/types/pa_vresponse.C,
                   15679:          src/types/pa_vstatus.C, src/types/pa_vstring.C,
                   15680:          src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
                   15681:          src/types/pa_vxnode.C, src/types/pa_wcontext.h: untaint.C 30%,
                   15682:          pa_common.C [done, without http for now]
                   15683: 
                   15684: 2003-03-19  paf
                   15685: 
                   15686:        * src/: classes/date.C, classes/form.C, classes/hash.C,
                   15687:          classes/image.C, classes/mail.C, classes/op.C, classes/xdoc.C,
                   15688:          classes/xnode.C, include/pa_array.h, include/pa_config_fixed.h,
                   15689:          include/pa_exception.h, include/pa_memory.h, include/pa_sapi.h,
                   15690:          include/pa_string.h, include/pa_table.h, main/compile.C,
                   15691:          main/compile_tools.C, main/execute.C, main/pa_charset.C,
                   15692:          main/pa_common.C, main/pa_exception.C, main/pa_request.C,
                   15693:          main/pa_socks.C, main/pa_string.C, main/pa_table.C,
                   15694:          main/untaint.C, targets/cgi/parser3.C, targets/cgi/parser3.dsp,
                   15695:          types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.h,
                   15696:          types/pa_vform.C, types/pa_vmail.C, types/pa_vmethod_frame.h,
                   15697:          types/pa_vstateless_class.h, types/pa_vtable.C,
                   15698:          types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.C,
                   15699:          types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
                   15700:          types/pa_wwrapper.h: started test
                   15701: 
1.116     moko     15702:        * src/lib/pcre/: dftables.c, get.c, maketables.c, pcre.c, pcre.dsp,
                   15703:          pcre.h, pcre_parser_ctype.c, study.c: restored bad replaces
1.95      moko     15704: 
                   15705:        * src/: classes/op.C, include/pa_array.h, include/pa_memory.h,
                   15706:          include/pa_string.h, main/pa_string.C: string compiled todo: test
                   15707:          it
                   15708: 
                   15709:        * src/: classes/classes.dsp, classes/string.C, classes/table.C,
                   15710:          include/pa_array.h, include/pa_common.h, include/pa_dictionary.h,
                   15711:          include/pa_exception.h, include/pa_string.h, include/pa_table.h,
                   15712:          lib/cord/cord.dsp, main/compile.tab.C, main/main.dsp,
                   15713:          main/pa_common.C, main/pa_string.C, targets/cgi/parser3.dsp,
                   15714:          types/pa_method.h, types/pa_value.h, types/pa_vmethod_frame.C,
                   15715:          types/pa_vmethod_frame.h, types/types.dsp: string
                   15716:          reimplementation with cord+array<fragment>: 70%
                   15717: 
                   15718: 2003-03-18  paf
                   15719: 
                   15720:        * src/: classes/date.C, classes/file.C, classes/form.C,
                   15721:          classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
                   15722:          classes/op.C, classes/string.C, classes/table.C, classes/xdoc.C,
                   15723:          classes/xnode.C, include/pa_hash.h, include/pa_string.h,
                   15724:          main/pa_string.C, types/pa_vmail.C: lots of replacements, todo:we
                   15725:          can ignore lang in cmp and pos really,             but would
                   15726:          split properly!
                   15727: 
                   15728:        * src/lib/cord/: cord.dsp, cordbscs.c, cordprnt.c, cordxtra.c: gc:
                   15729:          cord part made parser/src/lib: it's not compiled into libgc by
                   15730:          default
                   15731: 
                   15732:        * parser3.dsw, src/classes/classes.dsp, src/classes/classes.h,
                   15733:          src/classes/date.C, src/classes/double.C, src/classes/file.C,
                   15734:          src/classes/form.C, src/classes/hash.C, src/classes/image.C,
                   15735:          src/classes/int.C, src/classes/mail.C, src/classes/math.C,
                   15736:          src/classes/op.C, src/classes/response.C, src/classes/string.C,
                   15737:          src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
                   15738:          src/classes/xnode.C, src/classes/xnode.h,
                   15739:          src/include/Makefile.am, src/include/pa_cache_managers.h,
                   15740:          src/include/pa_charset.h, src/include/pa_charsets.h,
                   15741:          src/include/pa_common.h, src/include/pa_dictionary.h,
                   15742:          src/include/pa_exception.h, src/include/pa_exec.h,
                   15743:          src/include/pa_globals.h, src/include/pa_hash.h,
                   15744:          src/include/pa_memory.h, src/include/pa_pool.h,
                   15745:          src/include/pa_request.h, src/include/pa_request_charsets.h,
                   15746:          src/include/pa_sapi.h, src/include/pa_sql_connection.h,
                   15747:          src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
                   15748:          src/include/pa_stylesheet_connection.h,
                   15749:          src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
                   15750:          src/include/pa_uue.h, src/lib/pcre/get.c, src/main/Makefile.am,
                   15751:          src/main/compile.C, src/main/compile.tab.C,
                   15752:          src/main/compile_tools.C, src/main/compile_tools.h,
                   15753:          src/main/execute.C, src/main/main.dsp, src/main/pa_charset.C,
                   15754:          src/main/pa_charsets.C, src/main/pa_common.C,
                   15755:          src/main/pa_dictionary.C, src/main/pa_exception.C,
                   15756:          src/main/pa_exec.C, src/main/pa_globals.C, src/main/pa_memory.C,
                   15757:          src/main/pa_pool.C, src/main/pa_request.C,
                   15758:          src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
                   15759:          src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
                   15760:          src/main/pa_uue.C, src/main/untaint.C, src/targets/cgi/parser3.C,
                   15761:          src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
                   15762:          src/types/pa_junction.h, src/types/pa_method.h,
                   15763:          src/types/pa_value.C, src/types/pa_value.h,
                   15764:          src/types/pa_vclass.C, src/types/pa_vclass.h,
                   15765:          src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
                   15766:          src/types/pa_vcookie.h, src/types/pa_vdate.h,
                   15767:          src/types/pa_vdouble.h, src/types/pa_venv.h,
                   15768:          src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
                   15769:          src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
                   15770:          src/types/pa_vimage.C, src/types/pa_vimage.h,
                   15771:          src/types/pa_vint.h, src/types/pa_vmail.C, src/types/pa_vmail.h,
                   15772:          src/types/pa_vmath.C, src/types/pa_vmath.h,
                   15773:          src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
                   15774:          src/types/pa_vobject.C, src/types/pa_vobject.h,
                   15775:          src/types/pa_vrequest.C, src/types/pa_vrequest.h,
                   15776:          src/types/pa_vresponse.C, src/types/pa_vresponse.h,
                   15777:          src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
                   15778:          src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
                   15779:          src/types/pa_vstatus.h, src/types/pa_vstring.C,
                   15780:          src/types/pa_vstring.h, src/types/pa_vtable.C,
                   15781:          src/types/pa_vtable.h, src/types/pa_vvoid.h,
                   15782:          src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
                   15783:          src/types/pa_vxnode.C, src/types/pa_vxnode.h,
                   15784:          src/types/pa_wcontext.C, src/types/pa_wcontext.h,
                   15785:          src/types/pa_wwrapper.h, src/types/types.dsp: started porting to
                   15786:          gc: PA_Object done lots of replacements also
                   15787: 
                   15788:        * src/: include/pa_pool.h, main/execute.C, targets/cgi/pa_pool.C:
                   15789:          gc logging
                   15790: 
                   15791: 2003-03-17  paf
                   15792: 
                   15793:        * src/: classes/date.C, classes/file.C, classes/form.C,
                   15794:          classes/image.C, classes/mail.C, classes/op.C, classes/table.C,
                   15795:          classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
                   15796:          include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
                   15797:          include/pa_string.h, include/pa_types.h, main/compile.C,
                   15798:          main/compile.tab.C, main/execute.C, main/pa_charset.C,
                   15799:          main/pa_common.C, main/pa_exception.C, main/pa_exec.C,
                   15800:          main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
                   15801:          main/pa_sql_driver_manager.C, main/pa_string.C,
                   15802:          main/pa_stylesheet_manager.C, main/pa_uue.C, main/untaint.C,
                   15803:          targets/cgi/pa_pool.C, targets/cgi/parser3.C,
                   15804:          targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
                   15805:          types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.C,
                   15806:          types/pa_vform.C, types/pa_vint.h, types/pa_vmail.C,
                   15807:          types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
                   15808:          types/pa_vxnode.h: libgc attempt
                   15809: 
                   15810: 2003-03-13  paf
                   15811: 
                   15812:        * src/: include/pa_sql_driver_manager.h,
                   15813:          main/pa_sql_driver_manager.C, targets/cgi/parser3.C: lt_dlexit
                   15814:          called
                   15815: 
                   15816:        * src/: include/pa_request.h, lib/ltdl/libltdl.dsp,
                   15817:          lib/md5/md5.dsp, main/compile.tab.C, main/execute.C,
                   15818:          main/pa_request.C, targets/cgi/parser3.C, types/pa_value.C,
                   15819:          types/pa_value.h, types/pa_vobject.h,
                   15820:          types/pa_vstateless_class.h, types/pa_vstatus.C, types/types.dsp:
                   15821:          set_base, set_derived simplified [counter leaks fixed]
                   15822: 
                   15823:        * ChangeLog, src/include/pa_config_fixed.h, src/types/pa_vstatus.C,
                   15824:          src/types/types.dsp: incorporated status class patch From:
                   15825:          "Victor Fedoseev" <vvf_ru@mail.ru> Sent: Thursday, January 23,
                   15826:          2003 8:14 AM
                   15827: 
                   15828:          now we have $status.rusage.maxrss,tv_sec,tv_usec un WIN32 [plus
                   15829:          Win32 specific: QuotaPeakNonPagedPoolUsage
                   15830:          QuotaPeakPagedPoolUsage PeakPagefileUsage]
                   15831: 
                   15832: 2003-03-12  paf
                   15833: 
1.116     moko     15834:        * configure, configure.in, src/lib/ltdl/configure,
                   15835:          src/lib/ltdl/configure.in, src/targets/cgi/Makefile.am:
1.95      moko     15836:          lib/ltdl/Makefile now created by /configure.in only [were by
                   15837:          lib/ltdl/configure.in OVERWRITE]
                   15838: 
1.116     moko     15839:        * configure, configure.in, src/targets/cgi/Makefile.am: libstdc++
                   15840:          linkage fixed for g++ 3.2.2
1.95      moko     15841: 
                   15842:        * src/include/pa_stylesheet_manager.h: gcc 3.2 rightliy complained
                   15843:          on using privately declared class [fixed]
                   15844: 
                   15845:        * src/: include/pa_sql_driver_manager.h, main/compile.tab.C: gcc
                   15846:          3.2 rightliy complained on using privately declared class [fixed]
                   15847: 
                   15848:        * src/targets/cgi/parser3.C: 1. more detailed log on signals.  2.
                   15849:          sigpipe before request constructor now causes death
                   15850: 
                   15851:        * src/: include/pa_request.h, main/compile.tab.C, main/execute.C,
                   15852:          targets/cgi/parser3.C: SIGPIPE now can be intercepted and does
                   15853:          not cause exception in exception handler
                   15854: 
1.116     moko     15855:        * configure, configure.in, src/targets/cgi/Makefile.am: configure
                   15856:          now default links libstdc++ statically.  that can be overriden by
                   15857:          --with-dynamic-stdcpp
1.95      moko     15858: 
                   15859: 2003-03-11  paf
                   15860: 
                   15861:        * src/: main/compile.tab.C, main/compile.y, sql/pa_sql_driver.h,
                   15862:          types/pa_vstateless_class.C, types/pa_vstateless_class.h: removed
                   15863:          necessity of libstdc++
                   15864: 
                   15865:        * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
                   15866: 
                   15867:        * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
                   15868: 
                   15869: 2003-03-08  paf
                   15870: 
                   15871:        * tests/Makefile: make install & co
                   15872: 
                   15873:        * src/: include/pa_request.h, classes/op.C: removing
                   15874:          vclass,object.h -> pa_request.h dependency
                   15875: 
                   15876:        * src/: classes/mail.C, classes/response.C, include/pa_request.h,
                   15877:          main/pa_request.C: removing vform,response,cookie.h ->
                   15878:          pa_request.h dependency
                   15879: 
                   15880:        * src/include/pa_request.h: removing vmail.h -> pa_request.h
                   15881:          dependency [testing...]
                   15882: 
                   15883:        * src/: include/pa_config_fixed.h, types/pa_vxdoc.C: yet another
                   15884:          return 0; fixed
                   15885: 
                   15886:        * src/: include/pa_config_fixed.h, types/pa_vmail.C,
                   15887:          types/pa_vmail.h: vmail.C received just compiled [not tested]
                   15888: 
                   15889:        * src/classes/xdoc.C: forgotten: global xdoc when ndef XML
                   15890: 
                   15891:        * src/main/pa_request.C: forgotten: ifdef XML
                   15892: 
                   15893:        * src/main/pa_request.C: forgotten: ifdef XML
                   15894: 
                   15895:        * src/targets/cgi/parser3.C: todo: move to latest xml version on
                   15896:          win32 and run memleak tests again
                   15897: 
                   15898:        * src/targets/cgi/parser3.C: charsets: see some strange things with
                   15899:          old xml lib-- it's internal memory handling has faults
                   15900: 
                   15901:        * src/: include/pa_types.h, main/pa_charset.C: charsets: fixed
                   15902:          problems when transcode from charset A to A.
                   15903: 
                   15904:        * src/: main/untaint.C, types/pa_vmail.C: mail: transcode fixed.
                   15905:          todo: still problems when transcode from charset A to A.
                   15906: 
                   15907:        * src/: classes/hash.C, classes/mail.C, classes/string.C,
                   15908:          classes/table.C, include/pa_array.h,
                   15909:          main/pa_sql_driver_manager.C, types/pa_vmail.C, types/pa_vmail.h:
                   15910:          started full-scale-site-test [~ http://parser.ru sources]
                   15911: 
                   15912:          some fixes
                   15913: 
                   15914:        * tests/: 021.html, 031.html, 033.html, 109.html, 110.html,
                   15915:          111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
                   15916:          117.html, 118.html, 119.html, 120.html, results/109.processed,
                   15917:          results/110.processed, results/111.processed,
                   15918:          results/112.processed, results/113.processed,
                   15919:          results/114.processed, results/115.processed,
                   15920:          results/116.processed, results/117.processed,
                   15921:          results/118.processed, results/119.processed,
                   15922:          results/120.processed: xml: tests 109 dom create/show 110 xpath
                   15923:          selectSingle 111 xdoc.create from tainted & 112
                   15924:          xdoc.create/output with russian attr value 113 xpath
                   15925:          selectString/Number 114 dom attributes.count 115 xpath selectBool
                   15926:          116 output media-type change 117 transform by dom stylesheet 118
                   15927:          empty transform result 119 dom setAttribute 120 nbsp letter
                   15928:          output
                   15929: 
                   15930:          =END OF PREPARED XML TESTS=
                   15931: 
                   15932: 2003-03-07  paf
                   15933: 
                   15934:        * src/classes/xdoc.C, src/include/pa_charset.h,
                   15935:          src/include/pa_stylesheet_connection.h, tests/108.html,
                   15936:          tests/108.xsl, tests/results/108.processed: xml: test 108
                   15937:          transform with params [bugs fixed]
                   15938: 
                   15939:        * src/: main/pa_charset.C, targets/cgi/parser3.C: fixed: mem leak
                   15940:          from copy/paste bug
                   15941: 
                   15942:        * src/classes/xdoc.C, src/include/pa_charset.h,
                   15943:          src/include/pa_request.h, src/main/execute.C,
                   15944:          src/main/pa_charset.C, src/main/pa_exception.C,
                   15945:          src/main/pa_globals.C, src/main/pa_request.C,
                   15946:          src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
                   15947:          src/types/pa_vxnode.C, tests/107.html,
                   15948:          tests/results/107.processed: xml: test: 107 bug fixes
                   15949: 
                   15950:        * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   15951:          types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   15952:          types/pa_vxnode.C, types/pa_vxnode.h: test: 107 bug fixes
                   15953: 
                   15954:        * tests/: 106.html, results/106.processed: test: 106 xdoc create,
                   15955:          string
                   15956: 
                   15957:        * src/: include/pa_charset.h, main/pa_charset.C: xml: charset two
                   15958:          mem alloc functions used for different cases [libxml, libxsl]
                   15959: 
                   15960:        * src/classes/classes.C: fixed: prevent system classes from
                   15961:          modification to lock ALL the classes, not only directly used
                   15962: 
                   15963:        * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h: xml:
                   15964:          linked
                   15965: 
                   15966:        * src/: classes/xdoc.C, types/pa_vxdoc.h: xdoc.C compiled
                   15967: 
                   15968: 2003-03-06  paf
                   15969: 
                   15970:        * src/classes/xdoc.C: xdoc.C 50%
                   15971: 
                   15972:        * src/: classes/xnode.C, classes/xnode.h, include/pa_charset.h,
                   15973:          include/pa_memory.h, include/pa_request.h, include/pa_string.h,
                   15974:          main/pa_globals.C, main/pa_request.C,
                   15975:          main/pa_stylesheet_manager.C: xnode.C compiled
                   15976: 
                   15977:        * src/: include/pa_stylesheet_connection.h,
                   15978:          include/pa_stylesheet_manager.h, main/pa_sql_driver_manager.C,
                   15979:          main/pa_stylesheet_manager.C: xml: stylesheet&manager done
                   15980: 
                   15981:        * src/: include/pa_memory.h, include/pa_stylesheet_connection.h,
                   15982:          include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
                   15983:          xml: stylesheet&manager STARTED
                   15984: 
                   15985:        * src/: include/pa_globals.h, main/pa_charset.C,
                   15986:          main/pa_exception.C, main/pa_globals.C: xml: exceptions
                   15987: 
                   15988:        * src/: include/pa_charset.h, include/pa_config_fixed.h,
                   15989:          include/pa_memory.h, include/pa_pool.h, main/pa_charset.C,
                   15990:          main/pa_memory.C, main/pa_pool.C, types/pa_vxdoc.C,
                   15991:          types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: xml:
                   15992:          charsets
                   15993: 
                   15994:        * tests/023.html: in some cases it rounded up badly. postponing
                   15995:          solution of that problem, making more simple test
                   15996: 
                   15997:        * tests/: 058_paf2000.png, results/058.processed: .png added with
                   15998:          -kb now
                   15999: 
                   16000:        * src/: include/pa_charset.h, include/pa_charsets.h,
                   16001:          main/pa_charset.C, main/pa_charsets.C: charset_utf8 declaration
                   16002:          moved to charsets.C
                   16003: 
                   16004: 2003-03-05  paf
                   16005: 
                   16006:        * src/classes/string.C, src/include/pa_string.h,
                   16007:          src/main/pa_string.C, tests/105.html,
                   16008:          tests/results/105.processed: String::match bug fixed
                   16009: 
                   16010:        * src/classes/op.C, src/main/main.dsp, tests/104.html,
                   16011:          tests/results/104.processed: ^bpt operator added [does int3 in
                   16012:          debug build on win32]
                   16013: 
                   16014:        * tests/: 057.html, results/057.processed: test bug fixed
                   16015: 
1.116     moko     16016:        * src/targets/cgi/Makefile.am: linker needed more tricks to link OK
1.95      moko     16017: 
                   16018:        * src/classes/math.C: can be: crypt in -lcrypt OK, but crypt.h be
                   16019:          missing
                   16020: 
1.116     moko     16021:        * src/: include/Makefile.am, main/Makefile.am, types/Makefile.am:
                   16022:          forgotten files added to Makes
1.95      moko     16023: 
                   16024:        * ltmain.sh: ltmain.sh added
                   16025: 
                   16026:        * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
                   16027:          change undone ;(
                   16028: 
                   16029:        * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
                   16030:          made static
                   16031: 
                   16032:        * src/: classes/math.C, classes/op.C, classes/string.C,
1.116     moko     16033:          main/pa_exec.C, targets/cgi/Makefile.am: gcc more happy.
                   16034:          todo:make linker happy
1.95      moko     16035: 
                   16036:        * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C: pa_exec
                   16037:          env param made optional
                   16038: 
                   16039: 2003-03-04  paf
                   16040: 
                   16041:        * src/: classes/image.C, include/pa_request.h, include/pa_stack.h,
                   16042:          types/pa_vimage.h: number of gcc compiler bugs fixed
                   16043: 
                   16044:        * tests/: 103.html, 103mark.gif, 103paf2001.gif,
                   16045:          results/103.processed: tests: 103 image.copy transparence test
                   16046: 
                   16047:        * src/main/execute.C, tests/101.html, tests/102.html,
                   16048:          tests/results/101.processed, tests/results/102.processed: tests:
                   16049:          101 method/variable name conflict test 102 form fields change
                   16050:          should not not change anything [bug fix]
                   16051: 
                   16052:        * tests/: 057.html, 099.html, 100.html, results/057.processed,
                   16053:          results/099.processed, results/100.processed: tests: 57 date
                   16054:          create 2002: added 99,100 response:body/download
                   16055: 
                   16056:        * src/classes/image.C, tests/098.html, tests/098font.gif,
                   16057:          tests/results/098.processed: test: 98 image font text [bug fixed]
                   16058: 
                   16059:        * src/main/pa_common.C, src/targets/cgi/parser3.C, tests/097.html,
                   16060:          tests/results/097.processed: test: 97 file::load http://  [bugs
                   16061:          fixed]
                   16062: 
                   16063:        * src/classes/hash.C, src/classes/image.C, src/classes/table.C,
                   16064:          src/include/pa_memory.h, tests/096.html, tests/096_dir/163.jpg,
                   16065:          tests/096_dir/188.jpg, tests/results/096.processed: tests: 96
                   16066:          image EXIF  [bug fixed]
                   16067: 
                   16068:        * src/classes/table.C, src/main/execute.C, tests/061.dat,
                   16069:          tests/061.html, tests/062.html, tests/063.html, tests/064.html,
                   16070:          tests/065.html, tests/066.html, tests/067.html, tests/068.html,
                   16071:          tests/069.html, tests/070.html, tests/071.html, tests/072.html,
                   16072:          tests/073.html, tests/074.html, tests/075.html, tests/076.html,
                   16073:          tests/077.html, tests/078.html, tests/080.html, tests/081.html,
                   16074:          tests/082.html, tests/083.html, tests/084.html, tests/085.html,
                   16075:          tests/086.html, tests/087.html, tests/088.html, tests/089.html,
                   16076:          tests/090.html, tests/091.html, tests/092.html, tests/093.html,
                   16077:          tests/094.html, tests/095.html, tests/results/061.processed,
                   16078:          tests/results/062.processed, tests/results/063.processed,
                   16079:          tests/results/064.processed, tests/results/065.processed,
                   16080:          tests/results/066.processed, tests/results/067.processed,
                   16081:          tests/results/068.processed, tests/results/069.processed,
                   16082:          tests/results/070.processed, tests/results/071.processed,
                   16083:          tests/results/072.processed, tests/results/073.processed,
                   16084:          tests/results/074.processed, tests/results/075.processed,
                   16085:          tests/results/076.processed, tests/results/077.processed,
                   16086:          tests/results/078.processed, tests/results/080.processed,
                   16087:          tests/results/081.processed, tests/results/082.processed,
                   16088:          tests/results/083.processed, tests/results/084.processed,
                   16089:          tests/results/085.processed, tests/results/086.processed,
                   16090:          tests/results/087.processed, tests/results/088.processed,
                   16091:          tests/results/089.processed, tests/results/090.processed,
                   16092:          tests/results/091.processed, tests/results/092.processed,
                   16093:          tests/results/093.processed, tests/results/094.processed,
                   16094:          tests/results/095.processed, tests/079.html,
                   16095:          tests/results/079.processed: tests: 61 file::stat size 62
                   16096:          string->int autoconvert 63 double .int,dec,div,mul 64 date
                   16097:          compare 65 file: basename,justname,justext 66 math:crypt 67
                   16098:          string.match simple on long 68 string.match normalized simple on
                   16099:          long 69 string.int 70 file::stat content-type 71 table.join 72
                   16100:          hash parameter conditional pass 73 date daylightsaving,yearday 74
                   16101:          date arithmetics 75 response date values/attributes 76 string.pos
                   16102:          of void, void.pos 77 syntax parsing 78 cookie tainting 79 switch
                   16103:          with local 80 scientific numeric literal in string autoconvert 81
                   16104:          xor: logical and numerical 82 for delims 83 menu delims 84
                   16105:          table.hash distinct 85 long string  replace 86 throw+catch
                   16106:          current language preserve 87 bit shifts 88 junction tests +
                   16107:          $caller test 89 hash.foreach selfmodification 90 int/void to int
                   16108:          91 $caller test 92 junction is + def junction tests 93 $caller
                   16109:          test 94 syntax test 95 table.hash(keygenerator)  [bug fixed]
                   16110: 
                   16111:        * src/main/: execute.C, pa_table.C: test: 59 table.locate [bug
                   16112:          fixed] 60 string eq string [bug fixed]
                   16113: 
                   16114:        * tests/: 053.html, 054.html, 055.html, 056.html, 057.html,
                   16115:          058.html, 058_paf2000.png, 059.html, 060.html,
                   16116:          results/053.processed, results/054.processed,
                   16117:          results/055.processed, results/056.processed,
                   16118:          results/057.processed, results/058.processed,
                   16119:          results/059.processed, results/060.processed: test: 53
                   16120:          string.replace 54 junctions 55 table.hash 56 call indirect 57
                   16121:          date.create[string] 58 image.measure[png]
                   16122: 
                   16123:        * tests/: 052.html, outputs/049.processed, outputs/050.processed,
                   16124:          outputs/051.processed, results/052.processed: test: 52
                   16125:          pre/match/post test: passed AS-IT-WERE, but wrong :) separate
                   16126:          task: fix that
                   16127: 
                   16128: 2003-03-03  paf
                   16129: 
                   16130:        * tests/: 043.html, 044.html, 045.html, 046.html, 047.html,
                   16131:          048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p, Makefile,
                   16132:          parser-cygwin.sh, parser-unix.sh, run_parser.sh,
                   16133:          outputs/049.processed, outputs/050.processed,
                   16134:          outputs/051.processed, results/001.processed,
                   16135:          results/002.processed, results/003.processed,
                   16136:          results/005.processed, results/006.processed,
                   16137:          results/008.processed, results/009.processed,
                   16138:          results/011.processed, results/012.processed,
                   16139:          results/013.processed, results/014.processed,
                   16140:          results/015.processed, results/016.processed,
                   16141:          results/017.processed, results/020.processed,
                   16142:          results/021.processed, results/022.processed,
                   16143:          results/024.processed, results/025.processed,
                   16144:          results/026.processed, results/027.processed,
                   16145:          results/028.processed, results/029.processed,
                   16146:          results/030.processed, results/031.processed,
                   16147:          results/049.processed, results/050.processed,
                   16148:          results/051.processed, results/043.processed,
                   16149:          results/044.processed, results/045.processed,
                   16150:          results/046.processed, results/047.processed,
                   16151:          results/048.processed: tests: 43,44,45 date rolls 46
                   16152:          autoevaluating junction 47 table.select 48 name with subvar 49
                   16153:          hash-creating switch 50 process 51 started parent/child, works as
                   16154:          it were but it were NOT GOOD, created separate task  to fix that
                   16155: 
                   16156:        * tests/: 042.html, results/042.processed: test: 42
                   16157:          exception.handled
                   16158: 
                   16159:        * tests/: 041.html, results/041.processed: test: 41 table.locate by
                   16160:          expression
                   16161: 
                   16162:        * tests/: 040.html, results/040.processed: test: 39 method result
                   16163:          of type table 40 method param junction auto evaluate
                   16164: 
                   16165:        * tests/: 039.html, results/039.processed: test: 37 method result
                   16166:          of type table
                   16167: 
                   16168:        * src/main/pa_request.C, src/types/pa_vmath.C, tests/033.html,
                   16169:          tests/034.html, tests/035.html, tests/036.html, tests/037.html,
                   16170:          tests/038.html, tests/results/033.processed,
                   16171:          tests/results/034.processed, tests/results/035.processed,
                   16172:          tests/results/036.processed, tests/results/037.processed,
                   16173:          tests/results/038.processed: tests: 33 string.replace 34
                   16174:          string.upper 35 table created 36 local/global vars with juntions
                   16175:          37 table clone 38 math PI & number formatting
                   16176: 
                   16177:          math class registring typo fixed
                   16178: 
                   16179:        * src/classes/op.C, src/include/pa_request.h,
                   16180:          src/include/pa_string.h, src/main/execute.C,
                   16181:          src/main/pa_request.C, src/main/pa_string.C, src/main/untaint.C,
                   16182:          src/types/pa_vcode_frame.h, src/types/pa_wcontext.h,
                   16183:          tests/032.html, tests/results/032.processed: uchar changed to
                   16184:          String_UL in all places [was not everywhere] untaint test: 032
                   16185: 
                   16186:        * src/targets/cgi/parser3.C, tests/004.html, tests/Makefile,
                   16187:          tests/results/004.processed, tests/parser-cygwin.sh,
                   16188:          tests/parser-unix.sh: removed -H command line key, now testing
                   16189:          using .sh file with SERVER_SOFTWARE=xxx
                   16190: 
                   16191: 2003-02-26  paf
                   16192: 
                   16193:        * src/main/execute.C, src/types/pa_vstateless_class.h,
                   16194:          tests/024.html, tests/025.html, tests/026.html, tests/027.html,
                   16195:          tests/028.html, tests/029.html, tests/030.html, tests/031.html,
                   16196:          tests/results/024.processed, tests/results/025.processed,
                   16197:          tests/results/026.processed, tests/results/027.processed,
                   16198:          tests/results/028.processed, tests/results/029.processed,
                   16199:          tests/results/030.processed, tests/results/031.processed: fixed
                   16200:          bug with name_cstr mutable CharPtr more tests
                   16201: 
                   16202:        * src/: include/pa_sapi.h, main/pa_globals.C, main/pa_memory.C,
                   16203:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C: SAPI::abort
                   16204:          << abort.  die now just exits
                   16205: 
                   16206:        * src/classes/classes.awk, src/classes/classes.h,
                   16207:          src/classes/date.C, src/classes/double.C, src/classes/file.C,
                   16208:          src/classes/form.C, src/classes/hash.C, src/classes/image.C,
                   16209:          src/classes/int.C, src/classes/mail.C, src/classes/math.C,
                   16210:          src/classes/op.C, src/classes/response.C, src/classes/string.C,
                   16211:          src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
                   16212:          src/classes/xnode.C, src/include/pa_memory.h,
                   16213:          src/include/pa_sapi.h, src/targets/cgi/parser3.C,
                   16214:          src/targets/isapi/parser3isapi.C, src/types/pa_venv.h,
                   16215:          src/types/pa_vform.C, tests/015.html, tests/016.html,
                   16216:          tests/017.html, tests/018.html, tests/019.html,
                   16217:          tests/019paf2001.gif, tests/020.html, tests/021.html,
                   16218:          tests/022.html, tests/023.html, tests/022_dir/a.html,
                   16219:          tests/022_dir/b.txt, tests/022_dir/c.htm,
                   16220:          tests/results/015.processed, tests/results/016.processed,
                   16221:          tests/results/017.processed, tests/results/018.processed,
                   16222:          tests/results/019.processed, tests/results/020.processed,
                   16223:          tests/results/021.processed, tests/results/022.processed,
                   16224:          tests/results/023.processed: methoded_array now contains all Mxxx
                   16225:          classes SAPI::get_env now returns info on pool more tests
                   16226: 
                   16227:        * src/include/pa_array.h, src/include/pa_hash.h,
                   16228:          src/include/pa_memory.h, src/main/pa_charset.C, tests/001.html,
                   16229:          tests/002.html, tests/003.html, tests/004.html, tests/005.html,
                   16230:          tests/006.html, tests/007.html, tests/008.html, tests/009.html,
                   16231:          tests/010.html, tests/011.html, tests/012.html, tests/013.html,
                   16232:          tests/014.html, tests/Makefile, tests/outputs/create-dir,
                   16233:          tests/results/001.processed, tests/results/002.processed,
                   16234:          tests/results/003.processed, tests/results/004.processed,
                   16235:          tests/results/005.processed, tests/results/006.processed,
                   16236:          tests/results/007.processed, tests/results/008.processed,
                   16237:          tests/results/009.processed, tests/results/010.processed,
                   16238:          tests/results/011.processed, tests/results/012.processed,
                   16239:          tests/results/013.processed, tests/results/014.processed: hash
                   16240:          cloning fixed
                   16241: 
                   16242: 2003-02-25  paf
                   16243: 
                   16244:        * src/main/pa_common.C: typo fixed
                   16245: 
                   16246: 2003-02-24  paf
                   16247: 
                   16248:        * src/types/pa_vcookie.C: fixed all places with bad get_string(0)
                   16249:          [one remained]
                   16250: 
                   16251:        * src/: include/pa_request.h, main/execute.C: few bad get_string(0)
                   16252:          [should have been get_string(&pool)] todo: check other such calls
                   16253: 
                   16254:        * src/: main/compile.tab.C, main/execute.C, types/pa_vfile.h:
                   16255:          test10, bad lookups
                   16256: 
                   16257:          xxx* xxx=smartptr.get(); << is bad style, after ";" original
                   16258:          object got destructed, and xxx points to sky
                   16259: 
                   16260:        * ChangeLog, src/classes/string.C: match bug fixed
                   16261: 
                   16262:        * src/types/pa_vmail.C: body [text/html] transcoded to
                   16263:          $.charset[specified] now
                   16264: 
                   16265:        * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
                   16266:          which failed to handle sigsetjmp+throw: crashed inside of
                   16267:          pre-throw code.  rewritten simplier [though duplicating
                   16268:          closesocket code]
                   16269: 
                   16270:        * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
                   16271:          which failed to handle sigsetjmp+throw: crashed inside of
                   16272:          pre-throw code.  rewritten simplier [though duplicating
                   16273:          closesocket code]
                   16274: 
                   16275: 2003-02-21  paf
                   16276: 
                   16277:        * operators.txt, src/targets/cgi/parser3.C, src/types/pa_vcookie.C:
                   16278:          $cookie:name[$.expires[date << can be now]]
                   16279: 
                   16280:          written makefile with regression tests [raw]
                   16281: 
                   16282:        * src/targets/cgi/parser3.C: MAKE_TEST must be used inside of 'make
                   16283:          tests' only [it's not forcing CGI mode now] now use -H to output
                   16284:          CGI header when parser used in command line [useful for tests
                   16285:          also]
                   16286: 
                   16287:        * src/targets/cgi/parser3.C: MAKE_TEST environment variable
                   16288:          switches on CGI mode, and is used in regression tests
                   16289: 
                   16290:        * src/: include/pa_request.h, main/pa_request.C,
                   16291:          targets/cgi/parser3.C, types/pa_vcookie.h, types/pa_venv.h: env
                   16292:          fixed
                   16293: 
                   16294:        * src/: include/pa_memory.h, main/pa_memory.C: inlined memory
                   16295:          handling pa_*
                   16296: 
                   16297:        * src/: include/pa_memory.h, main/pa_memory.C, include/pa_array.h,
                   16298:          include/pa_exception.h, include/pa_pool.h, main/Makefile.am,
                   16299:          main/main.dsp, main/pa_array.C, main/pa_pool.C: reorganized
                   16300:          memory handling files
                   16301: 
                   16302:        * src/main/pa_array.C: pool::format_integer terminator fixed
                   16303: 
                   16304:        * src/: main/execute.C, targets/cgi/parser3.C: release mode now
                   16305:          compiles OK test to show benefits of free
                   16306: 
                   16307:        * src/: classes/file.C, classes/image.C, classes/mail.C,
                   16308:          classes/op.C, classes/xdoc.C, main/pa_charset.C, main/pa_exec.C,
                   16309:          main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
                   16310:          types/pa_vimage.C, types/pa_vxdoc.h: fixed all cstr's that must
                   16311:          use pool [as the one in ^process]
                   16312: 
                   16313:        * src/classes/op.C: fixed process.  sould now check for all cstr's
                   16314:          -- some must use pool [as the one in ^process]
                   16315: 
                   16316: 2003-02-20  paf
                   16317: 
                   16318:        * src/: classes/date.C, classes/double.C, classes/file.C,
                   16319:          classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
                   16320:          classes/math.C, classes/op.C, classes/response.C,
                   16321:          classes/string.C, classes/table.C, classes/void.C,
                   16322:          classes/xdoc.C, classes/xnode.C, main/pa_string.C,
                   16323:          types/pa_method.h, types/pa_value.C, types/pa_vmethod_frame.h:
                   16324:          string cmp fixed
                   16325: 
                   16326:        * src/: include/pa_config_fixed.h, targets/cgi/parser3.C: form
                   16327:          values passed OK now
                   16328: 
                   16329: 2003-02-19  paf
                   16330: 
                   16331:        * src/: classes/form.C, include/pa_charset.h, include/pa_pool.h,
                   16332:          main/pa_charset.C, main/pa_exception.C, main/pa_request.C,
                   16333:          main/pa_stylesheet_manager.C, targets/cgi/parser3.C,
                   16334:          targets/isapi/parser3isapi.dsp, types/pa_vcookie.C,
                   16335:          types/pa_vform.C, types/pa_vmail.C, types/pa_vxnode.C: found&kill
                   16336:          all remaning leaks resulted from pooled::malloc calls [excluding
                   16337:          in gd -- planning complete rewrite extremely ugly code]
                   16338: 
                   16339:        * src/targets/isapi/: pa_pool.C, pool_storage.h: removed unneeded
                   16340:          files
                   16341: 
                   16342: 2003-02-17  paf
                   16343: 
                   16344:        * src/: classes/date.C, classes/double.C, classes/file.C,
                   16345:          classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
                   16346:          classes/response.C, classes/string.C, classes/table.C,
                   16347:          classes/xdoc.C, classes/xnode.h, include/pa_stack.h,
                   16348:          include/pa_stylesheet_connection.h,
                   16349:          include/pa_stylesheet_manager.h, sql/pa_sql_driver.h,
                   16350:          types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
                   16351:          types/pa_vform.C, types/pa_vform.h, types/pa_vimage.h,
                   16352:          types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
                   16353:          types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
                   16354:          types/pa_wcontext.h, types/pa_wwrapper.h: fixed all remained bugs
                   16355:          of unitialized simple-typed field
                   16356: 
                   16357:        * src/: classes/classes.C, classes/classes.h, main/execute.C,
                   16358:          main/pa_charset.C, main/pa_request.C: another bug of unitialized
                   16359:          simple-typed field fixed.  todo: find&kill all like that one
                   16360: 
                   16361:        * src/: main/execute.C, targets/cgi/pa_pool.C,
                   16362:          targets/cgi/parser3.C, targets/cgi/pool_storage.h: few bugs in
                   16363:          debug output fixed
                   16364: 
                   16365:        * src/: include/pa_stack.h, main/compile.C, main/execute.C,
                   16366:          main/pa_request.C: stack-stored items need extra .ref to prevent
                   16367:          object_ptr from delete[them]
                   16368: 
                   16369:        * src/: classes/date.C, classes/op.C, classes/table.C,
                   16370:          classes/xdoc.C, classes/xnode.C, include/pa_array.h,
                   16371:          include/pa_charset.h, main/Makefile.am, main/main.dsp,
                   16372:          main/pa_charset.C, main/pa_common.C,
                   16373:          main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
                   16374:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                   16375:          types/pa_vmail.C: fixed more leaks resulted from pooled::malloc
                   16376:          calls
                   16377: 
                   16378:        * src/: main/pa_request.C, targets/cgi/parser3.C, types/pa_vfile.C:
                   16379:          couple mem leaks rusulted from old pooled::malloc usage.
                   16380:          todo:find more like those
                   16381: 
                   16382:        * src/main/: compile.C, compile_tools.C: 2*2!
                   16383: 
                   16384:        * src/: include/pa_array.h, include/pa_request.h, main/execute.C:
                   16385:          stackItem fixed [there were no string on stack before]
                   16386: 
                   16387:        * src/: main/execute.C, main/pa_request.C,
                   16388:          types/pa_vmethod_frame.C: first letters out OK
                   16389: 
                   16390:        * src/: classes/classes.C, include/pa_array.h, include/pa_hash.h,
                   16391:          include/pa_pool.h, include/pa_request.h, main/pa_request.C,
                   16392:          main/pa_string.C, main/untaint.C, types/pa_value.h,
                   16393:          types/pa_vint.h, types/pa_vstateless_class.h, types/pa_vstring.h,
                   16394:          types/pa_vvoid.h, types/pa_wcontext.h: class fields of simple
                   16395:          type not initialized with zeros :( while class fields of class
                   16396:          types initialized with default constructors.  learn C++
                   16397: 
                   16398:        * src/: classes/classes.awk, classes/double.C, classes/file.C,
                   16399:          classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
                   16400:          classes/math.C, classes/xdoc.C, classes/xnode.C,
                   16401:          include/pa_array.h, include/pa_string.h, main/pa_exec.C,
                   16402:          types/pa_vmail.C: parser3.exe - 0 error(s), 0 warning(s)
                   16403: 
                   16404: 2003-02-14  paf
                   16405: 
                   16406:        * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
                   16407:          13 link errors
                   16408: 
                   16409:        * src/: classes/file.C, include/pa_request.h, main/pa_request.C,
                   16410:          main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
                   16411:          types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
                   16412:          types/pa_vimage.C, types/pa_vtable.C: all compiled, only 14 link
                   16413:          errors :)
                   16414: 
                   16415:        * src/: classes/classes.C, classes/classes.awk, classes/file.C,
                   16416:          classes/hash.C, classes/mail.C, classes/op.C,
                   16417:          include/pa_common.h, include/pa_request.h, include/pa_sapi.h,
                   16418:          main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C,
                   16419:          targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C:
                   16420:          classes.lib - 0 error(s), 0 warning(s) parser.C compiled
                   16421: 
                   16422:        * src/: classes/classes.dsp, classes/op.C, classes/string.C,
                   16423:          classes/table.C, include/pa_common.h, include/pa_globals.h,
                   16424:          include/pa_pool.h, include/pa_request.h, main/pa_globals.C,
                   16425:          main/pa_request.C, types/pa_value.h, types/pa_vhash.h,
                   16426:          types/pa_vint.h, types/types.dsp: op compiled
                   16427: 
                   16428:        * src/: classes/classes.dsp, classes/response.C, classes/string.C,
                   16429:          include/pa_dictionary.h, include/pa_string.h, main/pa_string.C,
                   16430:          main/untaint.C, types/pa_vtable.h: string, response compiled
                   16431: 
                   16432: 2003-02-07  paf
                   16433: 
                   16434:        * src/: classes/table.C, types/pa_vtable.h: table compiled
                   16435: 
                   16436: 2003-02-06  paf
                   16437: 
                   16438:        * src/: classes/mail.C, include/pa_request.h, main/pa_request.C:
                   16439:          mail compiled
                   16440: 
                   16441:        * src/: classes/image.C, classes/string.C, classes/xdoc.C,
                   16442:          include/pa_common.h, include/pa_hash.h, main/pa_common.C,
                   16443:          types/pa_vfile.h, types/pa_vimage.h: image compiled
                   16444: 
                   16445:        * src/classes/: file.C, form.C: form compiled
                   16446: 
                   16447:        * src/: classes/classes.dsp, classes/file.C, include/pa_common.h,
                   16448:          include/pa_exec.h, main/pa_common.C, main/pa_exec.C,
                   16449:          types/pa_vfile.C, types/pa_vfile.h: file compiled
                   16450: 
                   16451:        * src/: classes/hash.C, classes/math.C, types/pa_vmath.C,
                   16452:          types/pa_vmath.h: math compiled [win32]
                   16453: 
                   16454:        * src/: classes/hash.C, include/pa_hash.h, include/pa_table.h,
                   16455:          types/pa_vstring.h: hash compiled
                   16456: 
                   16457: 2003-02-04  paf
                   16458: 
                   16459:        * src/: classes/date.C, classes/hash.C, include/pa_exec.h,
                   16460:          include/pa_hash.h, include/pa_request.h, include/pa_string.h,
                   16461:          include/pa_table.h, main/pa_common.C, main/pa_exec.C,
                   16462:          main/pa_string.C, types/pa_method.h, types/pa_vform.C,
                   16463:          types/pa_vhash.h: hash 50% compiled
                   16464: 
                   16465:        * src/: classes/date.C, classes/file.C, classes/hash.C,
                   16466:          classes/image.C, classes/mail.C, classes/math.C, classes/op.C,
                   16467:          classes/string.C, classes/table.C, classes/xdoc.C,
                   16468:          classes/xnode.C, include/pa_request.h, main/pa_globals.C,
                   16469:          main/pa_string.C: date compiled
                   16470: 
                   16471:        * src/classes/: classes.dsp, double.C: double compiled
                   16472: 
                   16473:        * src/: classes/date.C, classes/double.C, classes/file.C,
                   16474:          classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
                   16475:          classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
                   16476:          classes/string.C, classes/table.C, classes/void.C,
                   16477:          classes/xdoc.C, classes/xnode.C, types/pa_vdouble.h,
                   16478:          types/pa_vhash.h, types/pa_vint.h, types/pa_vstring.h,
                   16479:          types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.h: int
                   16480:          compiled
                   16481: 
                   16482:        * src/: classes/date.C, classes/double.C, classes/file.C,
                   16483:          classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
                   16484:          classes/math.C, classes/op.C, classes/response.C,
                   16485:          classes/string.C, classes/table.C, classes/void.C,
                   16486:          classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   16487:          types/pa_vvoid.h: void  compiled :)
                   16488: 
                   16489:        * src/: include/pa_globals.h, main/pa_cache_managers.C,
                   16490:          main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
                   16491:          main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
                   16492:          main/pa_globals.C, main/pa_pool.C, main/pa_sql_driver_manager.C,
                   16493:          main/pa_string.C, main/pa_uue.C, main/untaint.C,
                   16494:          types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.C,
                   16495:          types/pa_vimage.C, types/pa_vmath.C, types/pa_vrequest.C,
                   16496:          types/pa_vresponse.C, types/pa_vstateless_class.C,
                   16497:          types/pa_vstatus.C, types/pa_vstring.C, types/pa_vtable.C,
                   16498:          types/pa_wcontext.C, types/types.dsp: removed stupid
                   16499:          value_includes.h
                   16500: 
                   16501:        * src/types/: pa_value.C, pa_value_includes.h, pa_vrequest.C:
                   16502:          trying to remove stupid value_includes.h
                   16503: 
                   16504:        * src/main/pa_exec.C: pa_exec compiled on win32
                   16505: 
                   16506:        * src/main/pa_exec.C: libmain.a compiled on six [unix]
                   16507: 
                   16508:        * src/: include/pa_globals.h, include/pa_request.h,
                   16509:          types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
                   16510:          types/pa_vcookie.C, types/pa_vdate.h, types/pa_vfile.C,
                   16511:          types/pa_vfile.h, types/pa_vmail.C, types/pa_vobject.C,
                   16512:          types/pa_vrequest.C, types/pa_vstateless_class.C,
                   16513:          types/pa_vstatus.C, types/pa_vtable.C: libtypes.a compiled gcc
                   16514: 
                   16515:        * src/: include/pa_config_includes.h, include/pa_dictionary.h,
                   16516:          main/pa_common.C, main/pa_dictionary.C, main/pa_exec.C,
                   16517:          main/pa_socks.C: libmain.a gcc and mail.lib msvc++ compiled
                   16518: 
                   16519:        * src/: include/pa_array.h, include/pa_config_includes.h,
                   16520:          include/pa_dictionary.h, main/pa_dictionary.C, main/pa_exec.C,
                   16521:          main/pa_socks.C, main/pa_sql_driver_manager.C: gcc libmain.a
                   16522:          compiled
                   16523: 
                   16524:        * src/main/pa_globals.C: merged changes from 1.149-1.150 (stupid
                   16525:          name conflicts)
                   16526: 
                   16527:        * src/: main/compile_tools.h, main/execute.C, main/pa_table.C,
                   16528:          types/pa_vmethod_frame.h, types/pa_vvoid.h: yuk: gcc on cygwin
                   16529:          yelds "virtual memory exhausted" while trying to compile
                   16530:          execute.C [eating up to 127MB]
                   16531: 
                   16532: 2003-02-03  paf
                   16533: 
                   16534:        * src/: include/pa_config_includes.h, include/pa_hash.h,
                   16535:          include/pa_operation.h, include/pa_pool.h, include/pa_string.h,
                   16536:          main/pa_common.C, types/pa_value.C, types/pa_value.h,
                   16537:          types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
                   16538:          types/pa_vint.h, types/pa_vjunction.h,
                   16539:          types/pa_vstateless_class.h, types/pa_vstring.h, types/types.dsp:
                   16540:          started gcc compiling pa_common compiled
                   16541: 
                   16542:        * src/: include/pa_exception.h, include/pa_pool.h,
                   16543:          main/pa_exception.C: exception gcc change #1
                   16544: 
1.116     moko     16545:        * src/include/: Makefile.am, pa_hash.h, pa_pool.h: gcc refused to
                   16546:          compile _P identifier. it replaced it to some strange 0x0000040
1.95      moko     16547: 
                   16548:        * src/types/: pa_vmath.C, pa_vmethod_frame.C: vmath compiled
                   16549: 
                   16550:        * src/types/pa_vtable.C: vtable compiled
                   16551: 
                   16552:        * src/types/: pa_vstring.C, pa_vstring.h: vstring compiled
                   16553: 
                   16554:        * src/: include/pa_cache_managers.h, main/pa_request.C,
                   16555:          types/pa_vstatus.C, types/pa_vstatus.h: vstatus compiled
                   16556: 
                   16557:        * src/types/pa_vstateless_class.C: vstateless_class compiled
                   16558: 
                   16559:        * src/types/: pa_vresponse.C, pa_vresponse.h: vresponse compiled
                   16560: 
                   16561:        * src/types/pa_vrequest.C: vrequest compiled
                   16562: 
                   16563:        * src/types/: pa_value.C, pa_value.h, pa_vclass.C, pa_vclass.h,
                   16564:          pa_vobject.C, pa_vobject.h: vobject compiled
                   16565: 
                   16566:        * src/: classes/form.C, classes/mail.C, include/pa_request.h,
                   16567:          main/pa_globals.C, main/pa_request.C, types/pa_value.h,
                   16568:          types/pa_vform.C, types/pa_vmail.C, types/pa_vmail.h: vmail
                   16569:          compiled
                   16570: 
                   16571:        * src/types/: pa_vimage.C, pa_vimage.h: vimage compiled
                   16572: 
                   16573:        * src/: include/pa_pool.h, main/pa_request.C, types/pa_value.C,
                   16574:          types/pa_vclass.C, types/pa_vcookie.C, types/pa_vcookie.h,
                   16575:          types/pa_vform.C, types/pa_vform.h, types/pa_vobject.h: vform
                   16576:          compiled
                   16577: 
                   16578:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
                   16579:          main.lib - 0 error(s), 0 warning(s)
                   16580: 
                   16581:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
                   16582:          types/pa_value.h, types/pa_vmethod_frame.h: execute compiled
                   16583: 
                   16584: 2003-01-31  paf
                   16585: 
                   16586:        * src/: include/pa_array.h, include/pa_operation.h,
                   16587:          include/pa_request.h, main/execute.C, main/main.dsp,
                   16588:          types/pa_vjunction.h: started last file from main library:
                   16589:          execute
                   16590: 
                   16591:        * src/: include/pa_request.h, include/pa_sapi.h,
                   16592:          main/compile.tab.C, main/compile.y, main/compile_tools.h,
                   16593:          main/pa_request.C, targets/cgi/parser3.C,
                   16594:          targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vfile.h,
                   16595:          types/pa_vhash.h: pa_request compiled
                   16596: 
                   16597:        * src/: classes/op.C, classes/string.C, include/pa_common.h,
                   16598:          include/pa_globals.h, include/pa_request.h,
                   16599:          include/pa_sql_connection.h, main/compile.tab.C, main/compile.y,
                   16600:          main/execute.C, main/main.dsp, main/pa_common.C,
                   16601:          main/pa_globals.C, main/pa_request.C, types/pa_value.h,
                   16602:          types/pa_vcode_frame.h, types/pa_vcookie.h, types/pa_vform.h,
                   16603:          types/pa_vmail.C, types/pa_vmail.h, types/pa_vresponse.h,
                   16604:          types/pa_vtable.h, types/pa_wcontext.C, types/pa_wcontext.h,
                   16605:          types/types.dsp: most pa_request compiled
                   16606: 
                   16607:        * src/: classes/classes.C, classes/classes.h, classes/date.C,
                   16608:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   16609:          classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
                   16610:          classes/op.C, classes/response.C, classes/string.C,
                   16611:          classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
                   16612:          classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
                   16613:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   16614:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   16615:          include/pa_dictionary.h, include/pa_dir.h,
                   16616:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   16617:          include/pa_hash.h, include/pa_opcode.h, include/pa_operation.h,
                   16618:          include/pa_pool.h, include/pa_request.h,
                   16619:          include/pa_request_charsets.h, include/pa_request_info.h,
                   16620:          include/pa_sapi.h, include/pa_socks.h,
                   16621:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   16622:          include/pa_stack.h, include/pa_string.h,
                   16623:          include/pa_stylesheet_connection.h,
                   16624:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   16625:          include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
                   16626:          lib/ltdl/config_fixed.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
                   16627:          lib/md5/pa_md5.h, lib/md5/pa_md5c.c, lib/pcre/dftables.c,
                   16628:          lib/pcre/get.c, lib/pcre/maketables.c, lib/pcre/pcre.c,
                   16629:          lib/pcre/pcre.h, lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
                   16630:          main/compile.C, main/compile.tab.C, main/compile.y,
                   16631:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   16632:          main/main.dsp, main/pa_cache_managers.C, main/pa_charset.C,
                   16633:          main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
                   16634:          main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
                   16635:          main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
                   16636:          main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
                   16637:          main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
                   16638:          main/untaint.C, sql/pa_sql_driver.h, targets/cgi/getopt.c,
                   16639:          targets/cgi/getopt.h, targets/cgi/pa_pool.C,
                   16640:          targets/cgi/pa_threads.C, targets/cgi/parser3.C,
                   16641:          targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
                   16642:          targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
                   16643:          targets/isapi/pool_storage.h, types/pa_value.C, types/pa_value.h,
                   16644:          types/pa_value_includes.h, types/pa_vbool.h, types/pa_vclass.C,
                   16645:          types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
                   16646:          types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
                   16647:          types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
                   16648:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
                   16649:          types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
                   16650:          types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
                   16651:          types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
                   16652:          types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
                   16653:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
                   16654:          types/pa_vresponse.h, types/pa_vstateless_class.C,
                   16655:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   16656:          types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
                   16657:          types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
                   16658:          types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   16659:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
                   16660:          types/pa_wcontext.h, types/pa_wwrapper.h: grammar compiled
                   16661: 
                   16662:        * ChangeLog, src/classes/classes.h, src/classes/op.C,
                   16663:          src/include/pa_cache_managers.h, src/include/pa_charset.h,
                   16664:          src/include/pa_charsets.h, src/include/pa_common.h,
                   16665:          src/include/pa_dictionary.h, src/include/pa_exception.h,
                   16666:          src/include/pa_exec.h, src/include/pa_pool.h,
                   16667:          src/include/pa_request.h, src/include/pa_sapi.h,
                   16668:          src/include/pa_sql_connection.h,
                   16669:          src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
                   16670:          src/include/pa_table.h, src/include/pa_uue.h, src/main/compile.C,
                   16671:          src/main/compile.tab.C, src/main/compile_tools.C,
                   16672:          src/main/compile_tools.h, src/main/main.dsp,
                   16673:          src/main/pa_charset.C, src/main/pa_charsets.C,
                   16674:          src/main/pa_common.C, src/main/pa_dictionary.C,
                   16675:          src/main/pa_exception.C, src/main/pa_exec.C,
                   16676:          src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
                   16677:          src/main/pa_string.C, src/main/pa_table.C, src/main/pa_uue.C,
                   16678:          src/main/untaint.C, src/types/pa_value.C, src/types/pa_value.h,
                   16679:          src/types/pa_vclass.h, src/types/pa_vcookie.C,
                   16680:          src/types/pa_vcookie.h, src/types/pa_vdate.h,
                   16681:          src/types/pa_vdouble.h, src/types/pa_venv.h,
                   16682:          src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.h,
                   16683:          src/types/pa_vhash.h, src/types/pa_vimage.C,
                   16684:          src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.C,
                   16685:          src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
                   16686:          src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
                   16687:          src/types/pa_vobject.C, src/types/pa_vobject.h,
                   16688:          src/types/pa_vrequest.C, src/types/pa_vrequest.h,
                   16689:          src/types/pa_vresponse.C, src/types/pa_vresponse.h,
                   16690:          src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
                   16691:          src/types/pa_vstateless_object.h, src/types/pa_vstatus.h,
                   16692:          src/types/pa_vstring.h, src/types/pa_vtable.h,
                   16693:          src/types/pa_vvoid.h, src/types/pa_wcontext.C,
                   16694:          src/types/pa_wcontext.h, src/types/pa_wwrapper.h: ConstStringPtr
                   16695:          died, long live StringPtr
                   16696: 
                   16697: 2003-01-30  paf
                   16698: 
                   16699:        * src/: include/pa_charset.h, include/pa_request.h,
                   16700:          include/pa_sql_driver_manager.h, main/compile.tab.C,
                   16701:          main/compile.y, main/compile_tools.h, main/pa_request.C,
                   16702:          types/pa_vobject.h, types/pa_vstatus.h: grammar compiled
                   16703: 
                   16704:        * src/: classes/classes.h, include/pa_pool.h, main/compile.C,
                   16705:          main/compile.tab.C, types/pa_value.h, types/pa_vfile.h,
                   16706:          types/pa_vhash.h, types/pa_vmethod_frame.h,
                   16707:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   16708:          types/types.dsp: vstateless_class compiled
                   16709: 
                   16710:        * src/main/compile.C: compile compiled
                   16711: 
                   16712:        * src/: include/pa_array.h, include/pa_operation.h,
                   16713:          include/pa_table.h, main/compile_tools.C, main/compile_tools.h,
                   16714:          main/pa_table.C: compile_tools compiled
                   16715: 
                   16716:        * src/: include/pa_operation.h, main/compile.y,
                   16717:          main/compile_tools.C, main/compile_tools.h: started
                   16718:          compile_tools. vagues ideas of how to free compiled code
                   16719: 
                   16720:        * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C,
                   16721:          main/main.dsp, types/pa_value.C, types/pa_value.h,
                   16722:          types/pa_vmethod_frame.h, types/pa_vstateless_class.h: value
                   16723:          compiled
                   16724: 
                   16725: 2003-01-29  paf
                   16726: 
                   16727:        * src/: include/pa_globals.h, include/pa_request.h,
                   16728:          main/pa_globals.C, main/pa_request.C, types/pa_value.h,
                   16729:          types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
                   16730:          types/pa_wcontext.h, types/types.dsp: vmethodframe, pa_request.h
                   16731:          compiled
                   16732: 
                   16733:        * src/lib/ltdl/config_fixed.h: libltdl compiled without warnings
                   16734:          now
                   16735: 
                   16736:        * src/: include/pa_array.h, include/pa_exception.h,
                   16737:          include/pa_pool.h, main/pa_exception.C: gd compiled
                   16738: 
                   16739:        * src/types/: pa_vfile.C, pa_vfile.h, pa_vimage.C, pa_vimage.h: gd
                   16740:          compiled
                   16741: 
                   16742:        * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
                   16743:          types/pa_value.C, types/pa_value.h, types/pa_vfile.C,
                   16744:          types/pa_vfile.h: vfile compiled
                   16745: 
                   16746:        * src/: include/pa_common.h, include/pa_globals.h,
                   16747:          include/pa_string.h, main/pa_globals.C, types/pa_value.C,
                   16748:          types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
                   16749:          types/pa_vform.C, types/pa_vform.h: vcookie compiled
                   16750: 
                   16751:        * src/: include/pa_exception.h, main/pa_cache_managers.C,
                   16752:          main/pa_charsets.C, main/pa_common.C, main/pa_dir.C,
                   16753:          main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
                   16754:          main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
                   16755:          main/pa_uue.C: #include "pa_value_includes.h" everywhere in main
                   16756: 
                   16757:        * src/: include/pa_request_charsets.h, include/pa_request_info.h,
                   16758:          main/main.dsp, main/untaint.C: more compiled
                   16759: 
                   16760:        * src/: include/pa_charsets.h, include/pa_request.h,
                   16761:          include/pa_request_info.h, include/pa_string.h,
                   16762:          main/pa_charsets.C, types/pa_vrequest.C, types/pa_vresponse.C,
                   16763:          types/pa_vresponse.h: vrequest compiled
                   16764: 
                   16765:        * src/types/: pa_value.h, pa_vdate.h, pa_vform.h, pa_vhash.h,
                   16766:          pa_vobject.C, pa_vobject.h, pa_vrequest.C, pa_vresponse.C,
                   16767:          pa_vresponse.h, pa_wcontext.h: vrequest compiled
                   16768: 
                   16769:        * src/: classes/classes.h, include/pa_charset.h,
                   16770:          include/pa_charsets.h, include/pa_globals.h, include/pa_pool.h,
                   16771:          include/pa_request.h, include/pa_string.h, main/main.dsp,
                   16772:          main/pa_charset.C, main/pa_charsets.C, main/pa_globals.C,
                   16773:          main/untaint.C, types/pa_value.h, types/pa_vdouble.h,
                   16774:          types/pa_vfile.h, types/pa_vint.h, types/pa_vmath.C,
                   16775:          types/pa_vrequest.C, types/pa_vrequest.h,
                   16776:          types/pa_vstateless_class.h, types/pa_vstring.h,
                   16777:          types/pa_vvoid.h: vrequest,vdouble,vint compiled
                   16778: 
                   16779:        * src/: classes/classes.h, classes/math.C, include/pa_pool.h,
                   16780:          include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
                   16781:          main/main.dsp, types/pa_value.h, types/pa_vbool.h,
                   16782:          types/pa_vclass.h, types/pa_vdouble.h, types/pa_venv.h,
                   16783:          types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
                   16784:          types/pa_vjunction.h, types/pa_vmath.C, types/pa_vmath.h,
                   16785:          types/pa_vobject.h, types/pa_vstateless_class.h,
                   16786:          types/pa_vstateless_object.h, types/pa_vstatus.h,
                   16787:          types/pa_vstring.h, types/types.dsp: vmath compiled
                   16788: 
                   16789: 2003-01-28  paf
                   16790: 
                   16791:        * src/: classes/classes.h, classes/date.C, classes/file.C,
                   16792:          classes/hash.C, classes/image.C, classes/table.C, classes/xdoc.C,
                   16793:          classes/xnode.h, main/execute.C, main/main.dsp, types/pa_value.h,
                   16794:          types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C,
                   16795:          types/pa_vobject.h, types/pa_vstateless_class.h: started main:
                   16796:          compile_tools
                   16797: 
                   16798:        * src/: include/pa_charset.h, include/pa_exception.h,
                   16799:          include/pa_request.h, include/pa_string.h, main/untaint.C:
                   16800:          untaint compiled
                   16801: 
                   16802:        * ChangeLog, src/include/pa_array.h, src/include/pa_string.h,
                   16803:          src/main/execute.C, src/main/untaint.C, src/types/pa_vmail.C:
                   16804:          more compiled.  struck with string::store_to needing to know
                   16805:          source/client charsets
                   16806: 
                   16807:        * src/: include/pa_exception.h, include/pa_uue.h, main/pa_uue.C,
                   16808:          types/pa_vfile.h: uue compiled
                   16809: 
                   16810:        * src/: include/pa_table.h, main/pa_string.C, main/pa_table.C:
                   16811:          table compiled
                   16812: 
                   16813:        * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
                   16814:          main/pa_globals.C, main/pa_sql_driver_manager.C: globals compiled
                   16815: 
                   16816:        * src/: include/pa_charset.h, main/pa_charset.C,
                   16817:          main/pa_charsets.C: charset/s simplified [charset::pool_for_load
                   16818:          introduced]
                   16819: 
                   16820:        * src/: classes/date.C, include/pa_charset.h,
                   16821:          include/pa_charsets.h, include/pa_globals.h, main/pa_charset.C,
                   16822:          main/pa_charsets.C, main/pa_globals.C, main/pa_request.C:
                   16823:          pa_charsets compiled
                   16824: 
                   16825:        * src/: include/pa_array.h, include/pa_exec.h, include/pa_hash.h,
                   16826:          include/pa_pool.h, main/pa_exec.C: pa_exec win32 compiled
                   16827: 
                   16828:        * src/: include/pa_pool.h, main/pa_common.C, types/pa_vdouble.h:
                   16829:          common compiled
                   16830: 
                   16831:        * src/: include/pa_charsets.h, main/pa_charsets.C,
                   16832:          main/pa_sql_driver_manager.C: pa_charsets compiled
                   16833: 
                   16834:        * src/: include/pa_array.h, include/pa_charset.h,
                   16835:          include/pa_charsets.h, include/pa_pool.h,
                   16836:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   16837:          include/pa_stack.h, include/pa_string.h,
                   16838:          main/pa_sql_driver_manager.C, types/pa_vhash.h, types/pa_vint.h:
                   16839:          sql_driver_manager compiled
                   16840: 
                   16841:        * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: ukranian
                   16842:          letter i with two dots added to koi, all ukranian letters added
                   16843:          to win1251.
                   16844: 
                   16845:          typographic simbol 0xb9 deleted from win1251 [strange one & were
                   16846:          abscent from koi]
                   16847: 
                   16848: 2003-01-27  paf
                   16849: 
                   16850:        * src/: include/pa_exception.h, include/pa_sql_connection.h,
                   16851:          include/pa_sql_driver_manager.h, include/pa_string.h,
                   16852:          main/pa_common.C, main/pa_exec.C, main/pa_sql_driver_manager.C,
                   16853:          sql/pa_sql_driver.h: paused on sql_manager
                   16854: 
                   16855:        * src/: include/pa_cache_managers.h, include/pa_pool.h,
                   16856:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   16857:          include/pa_stack.h, main/pa_sql_driver_manager.C,
                   16858:          types/pa_vtable.h, types/pa_vvoid.h: vtable compiled
                   16859: 
                   16860:        * src/: classes/op.C, include/pa_globals.h, include/pa_hash.h,
                   16861:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   16862:          include/pa_table.h, main/pa_sql_driver_manager.C,
                   16863:          main/pa_table.C: table compiled
                   16864: 
                   16865:        * src/: include/pa_cache_managers.h, main/pa_cache_managers.C:
                   16866:          cache_managers compiled
                   16867: 
                   16868:        * src/: include/pa_array.h, include/pa_charset.h,
                   16869:          include/pa_pool.h, main/pa_charset.C: charset compiled
                   16870: 
                   16871:        * src/: include/pa_pool.h, main/pa_common.C: common compiled
                   16872: 
                   16873:        * src/: include/pa_array.h, include/pa_common.h, include/pa_hash.h,
                   16874:          include/pa_pool.h, include/pa_string.h, main/pa_common.C,
                   16875:          main/pa_string.C, types/pa_value.C, types/pa_value.h,
                   16876:          types/pa_vhash.h, types/pa_vint.h, types/pa_vstateless_class.h,
                   16877:          types/pa_wcontext.C, types/pa_wcontext.h: wcontext compiled
                   16878: 
                   16879: 2003-01-24  paf
                   16880: 
                   16881:        * src/: classes/classes.C, classes/classes.h, include/pa_array.h,
                   16882:          include/pa_common.h, include/pa_globals.h, include/pa_hash.h,
                   16883:          include/pa_pool.h, include/pa_string.h, main/pa_common.C,
                   16884:          main/pa_globals.C, main/pa_string.C, types/pa_value.h,
                   16885:          types/pa_vbool.h, types/pa_vdouble.h, types/pa_vhash.h,
                   16886:          types/pa_vint.h, types/pa_vjunction.h,
                   16887:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   16888:          types/pa_vstatus.h, types/pa_vstring.h: more patched
                   16889: 
                   16890:        * src/: classes/op.C, include/pa_array.h, include/pa_exception.h,
                   16891:          include/pa_hash.h, include/pa_pool.h, include/pa_string.h,
                   16892:          include/pa_table.h, main/pa_dictionary.C, main/pa_exception.C,
                   16893:          main/pa_string.C, main/pa_table.C: string compiled
                   16894: 
                   16895:        * src/: include/pa_array.h, include/pa_common.h,
                   16896:          include/pa_dictionary.h, include/pa_exception.h,
                   16897:          include/pa_pool.h, include/pa_string.h, include/pa_table.h,
                   16898:          main/pa_common.C, main/pa_dictionary.C, main/pa_exception.C,
                   16899:          main/pa_string.C: dictionary compiled
                   16900: 
                   16901: 2003-01-23  paf
                   16902: 
                   16903:        * src/: include/pa_array.h, include/pa_common.h,
                   16904:          include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
                   16905:          include/pa_request.h, include/pa_string.h, main/pa_common.C,
                   16906:          main/pa_exception.C, main/pa_globals.C, types/pa_value.C,
                   16907:          types/pa_value.h: resurrected pool in new sense: now it's
                   16908:          factory, producing&accounting memory chunks for read[autofree]
                   16909:          buffers
                   16910: 
                   16911:        * src/: include/pa_array.h, include/pa_exception.h,
                   16912:          include/pa_hash.h, include/pa_pool.h, include/pa_table.h,
                   16913:          main/pa_exception.C, main/pa_table.C: table compiled
                   16914: 
                   16915:        * src/: classes/image.C, classes/op.C, include/pa_array.h,
                   16916:          include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
                   16917:          include/pa_pool.h, include/pa_pragma_pack_begin.h,
                   16918:          include/pa_pragma_pack_end.h, include/pa_sapi.h,
                   16919:          include/pa_string.h, include/pa_table.h, include/pa_types.h,
                   16920:          main/pa_exception.C, main/pa_globals.C, main/pa_string.C,
                   16921:          main/pa_table.C: aint that easy
                   16922: 
                   16923:        * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
                   16924:          main/main.dsp: continued with Hash
                   16925: 
                   16926:        * src/main/pa_common.C: connect_string allocated on heap[wes on
                   16927:          stack] now. and exception can be reported OK now [can be reported
                   16928:          outside of pro c with that stack]
                   16929: 
                   16930: 2003-01-22  paf
                   16931: 
                   16932:        * src/: include/pa_array.h, include/pa_charset.h,
                   16933:          include/pa_dictionary.h, include/pa_hash.h, include/pa_pool.h,
                   16934:          include/pa_string.h, main/pa_array.C, main/pa_hash.C,
                   16935:          main/pa_pool.C, main/pa_string.C: started auto_ptr.  PA_Object is
                   16936:          base: contains references_count.  auto_ptr template calls
                   16937:          add_ref/release
                   16938: 
                   16939: 2003-01-21  paf
                   16940: 
                   16941:        * src/: classes/classes.C, classes/classes.h, classes/date.C,
                   16942:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   16943:          classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
                   16944:          classes/op.C, classes/response.C, classes/string.C,
                   16945:          classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
                   16946:          classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
                   16947:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   16948:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   16949:          include/pa_dictionary.h, include/pa_dir.h,
                   16950:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   16951:          include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
                   16952:          include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
                   16953:          include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
                   16954:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   16955:          include/pa_stack.h, include/pa_string.h,
                   16956:          include/pa_stylesheet_connection.h,
                   16957:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   16958:          include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
                   16959:          lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
                   16960:          lib/pcre/pcre_parser_ctype.c, main/compile.C,
                   16961:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   16962:          main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
                   16963:          main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
                   16964:          main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
                   16965:          main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
                   16966:          main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
                   16967:          main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
                   16968:          main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
                   16969:          targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
                   16970:          targets/cgi/parser3.C, targets/cgi/pool_storage.h,
                   16971:          targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
                   16972:          targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
                   16973:          types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
                   16974:          types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
                   16975:          types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
                   16976:          types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
                   16977:          types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
                   16978:          types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
                   16979:          types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
                   16980:          types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
                   16981:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
                   16982:          types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
                   16983:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   16984:          types/pa_vstateless_object.h, types/pa_vstatus.C,
                   16985:          types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
                   16986:          types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
                   16987:          types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
                   16988:          types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
                   16989:          types/pa_wwrapper.h, main/compile.tab.C, main/compile.y:
                   16990:          2002->2003
                   16991: 
                   16992: 2003-01-16  paf
                   16993: 
                   16994:        * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
                   16995:          src/main/pa_globals.C: http:// introducing     $.any-status(1)
                   16996: 
                   16997:        * operators.txt, src/include/pa_config_fixed.h,
                   16998:          src/main/pa_common.C: http request now return status. and not
                   16999:          fail on status!=200
                   17000: 
                   17001: 2003-01-15  paf
                   17002: 
                   17003:        * src/main/pa_globals.C: localized pa_xmlFileRead/Close
                   17004: 
                   17005: 2003-01-14  paf
                   17006: 
                   17007:        * src/lib/ltdl/: config.guess, config.sub, install-sh, missing,
                   17008:          mkinstalldirs: removed some ancient files [they in / really]
                   17009: 
                   17010:        * src/lib/ltdl/: config_fixed.h, libltdl.dsp, ltdl.c: ltdl.c
                   17011:          regretfully needed patch in two places.  in config_fixed.h made
                   17012:          stubs for lib to compile in MSVC
                   17013: 
                   17014: 2003-01-13  paf
                   17015: 
                   17016:        * config.guess, config.sub, ltmain.sh: removed last piece of
                   17017:          configure.in(libtool) hacks
                   17018: 
1.116     moko     17019:        * src/lib/ltdl/: COPYING.LIB, acinclude.m4, config.h,
1.95      moko     17020:          config_auto.h.in, configure, configure.in, libltdl.dsp, ltdl.c,
                   17021:          ltdl.h: moved to latest libtool (1.4.3)
                   17022: 
                   17023: 2003-01-10  paf
                   17024: 
                   17025:        * src/lib/ltdl/: configure, configure.in: PROG_NM
                   17026: 
                   17027:        * src/main/pa_globals.C: moved to latest xml lib versions, changed
                   17028:          patches.        libxml2 >= 2.5.1
                   17029:          [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz]        libxslt >= 1.0.23
                   17030:          [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz]        gdome2 >= 0.7.2
                   17031:          [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
                   17032: 
                   17033:        * INSTALL: moved to latest versions of xml libs       libxml2 >=
                   17034:          2.5.1 [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz]       libxslt >=
                   17035:          1.0.23 [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz]       gdome2 >=
                   17036:          0.7.2 [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
                   17037: 
                   17038: 2003-01-09  paf
                   17039: 
                   17040:        * INSTALL: xml,xslt,gdome lib urls updated
                   17041: 
                   17042:        * config.guess, config.sub, missing, mkinstalldirs,
1.116     moko     17043:          src/include/pa_config_auto.h.in, src/lib/ltdl/config_auto.h.in,
1.95      moko     17044:          src/lib/ltdl/configure, src/lib/ltdl/configure.in,
1.116     moko     17045:          src/targets/cgi/Makefile.am: moved to autoconf 2.57 & automake
                   17046:          1.7.2
1.95      moko     17047: 
                   17048:        * depcomp: moving to automake 1.7.2
                   17049: 
                   17050: 2002-12-27  paf
                   17051: 
                   17052:        * src/include/pa_version.h: 0007
                   17053: 
                   17054:        * src/doc/: aliased.dox, index.dox, module.dox, pooled.dox: removed
                   17055:          outdated parts, made links to language docs
                   17056: 
                   17057:        * src/include/pa_config_auto.h.in: comment
                   17058: 
                   17059: 2002-12-26  paf
                   17060: 
                   17061:        * src/classes/file.C: ^file:fullpath[a.gif] when document root did
                   17062:          not contain trailing / fixed.
                   17063: 
                   17064:        * INSTALL: changing SAFE_MODE politics
                   17065: 
                   17066:        * src/include/pa_config_auto.h.in: changing SAFE_MODE politics
                   17067: 
                   17068:        * src/main/: pa_common.C, pa_exec.C: changing SAFE_MODE politics
                   17069: 
                   17070: 2002-12-25  paf
                   17071: 
                   17072:        * src/main/pa_globals.C: optimized-xml
                   17073: 
                   17074:        * src/main/pa_globals.C: optimized-as-is
                   17075: 
                   17076: 2002-12-24  paf
                   17077: 
                   17078:        * src/main/: pa_common.C, pa_pool.C: pool::copy on zero size|ptr
                   17079:          fixed [were really called with zero size when .html?a=&b=]
                   17080: 
                   17081:        * src/classes/mail.C: $MAIL in @conf now invalid when configured
                   17082:          with --with-sendmail
                   17083: 
                   17084:        * src/main/pa_exec.C: fork/pipe error now [old always-pipe-error
                   17085:          fixed]
                   17086: 
                   17087: 2002-12-23  paf
                   17088: 
                   17089:        * src/types/pa_vcookie.C: $cookie:field[put value] fixed [were
                   17090:          ignoring parameters & were storing only string with default
                   17091:          expires
                   17092: 
                   17093:        * src/main/pa_charset.C: From: "Victor Fedoseev" <vvf_ru@mail.ru>
                   17094:          To: "Alexandr Petrosian (PAF)" <PAF@design.ru> Sent: Monday,
                   17095:          December 23, 2002 4:22 AM Subject: bug â
                   17096:          Charset::transcode_buf2xchar
                   17097: 
                   17098: 2002-12-20  paf
                   17099: 
                   17100:        * src/targets/cgi/parser3.C: removed last \n appending in non-win32
                   17101:          non-cgi [script] runs
                   17102: 
                   17103: 2002-12-19  paf
                   17104: 
                   17105:        * INSTALL: --without-iconv recommended [it crashes on some systems
                   17106:          [tested on elik]] moreover, it's not needed there [parser
                   17107:          registers charsets itself]
                   17108: 
                   17109:        * INSTALL: --without-iconv recommended [it crashes on some systems
                   17110:          [tested on elik]]
                   17111: 
                   17112:        * operators.txt, src/include/pa_globals.h,
                   17113:          src/include/pa_request.h, src/main/pa_globals.C,
                   17114:          src/main/pa_request.C: $response:download
                   17115: 
                   17116:        * src/classes/mail.C: 'to' check bugfix [now checked only on ms
                   17117:          compiler [win32]].
                   17118: 
                   17119: 2002-12-18  paf
                   17120: 
                   17121:        * src/classes/xdoc.C: doc->URL on xdoc.load set correctly now
                   17122: 
                   17123: 2002-12-17  paf
                   17124: 
                   17125:        * src/targets/cgi/parser3.C: merged die&iis changes
                   17126: 
                   17127:        * src/targets/cgi/parser3.C: 1. on win32 in die: abort() reverted
                   17128:          to exit(1) 2. more flexible iilegal call check
                   17129: 
                   17130: 2002-12-16  paf
                   17131: 
                   17132:        * ltmain.sh: some automakes silly insist on having this handy
                   17133: 
                   17134:        * src/main/untaint.C: filespec russian small 'r' changed to latin
                   17135:          'p' bug fix
                   17136: 
                   17137: 2002-12-15  paf
                   17138: 
                   17139:        * src/main/untaint.C: filespec russian small 'r' changed to latin
                   17140:          'p'
                   17141: 
                   17142:        * configure.in, src/include/pa_config_auto.h.in,
                   17143:          src/main/compile.C, src/main/pa_common.C: merged small changes
                   17144:          from branch 6 to HEAD
                   17145: 
                   17146:        * src/main/compile.C: removed warning
                   17147: 
                   17148:        * src/main/pa_common.C: ftruncate having checked
                   17149: 
                   17150:        * configure.in, src/include/pa_version.h: new version
                   17151: 
                   17152: 2002-12-14  paf
                   17153: 
                   17154:        * src/classes/table.C: removed unnecessary code
                   17155: 
                   17156:        * src/sql/pa_sql_driver.h: exception type fixed
                   17157: 
                   17158: 2002-12-09  paf
                   17159: 
                   17160:        * src/types/pa_vvoid.h: $void.store[now] error
                   17161: 
                   17162:        * src/targets/cgi/parser3.C: ::die now tries to write core dump
                   17163: 
                   17164:        * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: ::die now
                   17165:          tries to write core dump
                   17166: 
                   17167:        * src/targets/cgi/parser3.C: ::die now tries to write core dump
                   17168: 
                   17169:        * src/: classes/hash.C, classes/string.C, classes/table.C,
                   17170:          classes/void.C, main/pa_sql_driver_manager.C,
                   17171:          sql/pa_sql_driver.h: changed exception handling mech in sql
                   17172:          handlers #2
                   17173: 
                   17174:        * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: changed
                   17175:          exception handling mech in sql handlers
                   17176: 
                   17177:        * src/sql/pa_sql_driver.h: changed exception handling mech in sql
                   17178:          handlers
                   17179: 
                   17180:        * src/: classes/hash.C, classes/string.C, classes/table.C,
                   17181:          classes/void.C, main/pa_sql_driver_manager.C,
                   17182:          sql/pa_sql_driver.h: changed exception handling mech in sql
                   17183:          handlers
                   17184: 
1.116     moko     17185:        * configure.in: removed configure.in:AC_LIBTOOL, it caused automake
                   17186:          to write makefile which used libtool to install things, which is
                   17187:          not needed
1.95      moko     17188: 
                   17189: 2002-12-06  paf
                   17190: 
                   17191:        * operators.txt, src/main/compile.tab.C, src/types/pa_vhash.h:
                   17192:          $hash.fields -- pseudo field to make 'hash' more like 'table'
                   17193: 
                   17194: 2002-12-05  paf
                   17195: 
                   17196:        * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp
                   17197:          cc/bcc OK now
                   17198: 
                   17199:        * src/main/untaint.C: mail header closed properly
                   17200: 
                   17201:        * src/: main/pa_common.C, main/untaint.C, types/pa_vmail.C: mail
                   17202:          header ',' allowed.  still bugs in smtp [only one receiptient
                   17203:          works, cc, bcc ignored now, and MAILED ;)]
                   17204: 
                   17205:          [strncpy killed, memnchr used]
                   17206: 
                   17207:        * src/main/pa_table.C: table-copy now current=0
                   17208: 
                   17209:        * src/main/: pa_array.C, pa_table.C: wow! found/fixed bug in
                   17210:          lowlevel proc
                   17211: 
                   17212:        * src/targets/cgi/parser3.C: more checks on
                   17213:          http://domain/parser.cgi start [maybe some getenv returns "",
                   17214:          checked that now
                   17215: 
                   17216:        * src/targets/cgi/parser3.C: more checks on
                   17217:          http://domain/parser.cgi start [maybe some getenv returns "",
                   17218:          checked that now
                   17219: 
                   17220:        * src/targets/cgi/parser3.C: error logging made unbuffered [so that
                   17221:          out-of-mem errors reached log]
                   17222: 
                   17223:        * src/: classes/mail.C, targets/cgi/parser3.C, types/pa_vmail.C:
                   17224:          mail:send MIME-Version default
                   17225: 
                   17226:        * src/main/main.dsp: pa_version included into main.dsp
                   17227: 
                   17228: 2002-12-04  paf
                   17229: 
                   17230:        * src/types/pa_vform.C: $form:field string value cut by premature 0
                   17231: 
                   17232:        * parser3.dsw, src/main/compile.tab.C, src/main/main.dsp:
                   17233:          lib/libltdl -> lib/ltdl Win32 changes. s
                   17234: 
                   17235:        * src/classes/classes.awk: more strict *.C$
                   17236: 
                   17237:        * gnu.dsp: restored
                   17238: 
1.116     moko     17239:        * configure.in, gnu.dsp, src/lib/Makefile.am,
                   17240:          src/lib/ltdl/Makefile.am, src/lib/ltdl/README,
                   17241:          src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
                   17242:          src/lib/ltdl/config.h, src/lib/ltdl/config.sub,
                   17243:          src/lib/ltdl/config_auto.h.in, src/lib/ltdl/config_fixed.h,
                   17244:          src/lib/ltdl/configure, src/lib/ltdl/configure.in,
                   17245:          src/lib/ltdl/install-sh, src/lib/ltdl/libltdl.dsp,
                   17246:          src/lib/ltdl/ltdl.c, src/lib/ltdl/ltdl.h: src/lib/ltdl/Makefile
                   17247:          now created with /configure, not ltdl/configure, so it does have
                   17248:          no problems with automake.  ltdl/configure
                   17249:          AC_OUTPUT(Makefile<<removed)
1.95      moko     17250: 
                   17251: 2002-12-02  paf
                   17252: 
                   17253:        * operators.txt: removed outdated status:db
                   17254: 
                   17255:        * ChangeLog, src/classes/mail.C, src/include/pa_common.h,
                   17256:          src/main/pa_common.C, src/main/pa_request.C,
                   17257:          src/types/pa_vcookie.C, src/types/pa_vmail.C: http header lang of
                   17258:          tainted parts becomes http-header
                   17259: 
                   17260: 2002-11-29  paf
                   17261: 
                   17262:        * src/classes/date.C, src/classes/image.C, operators.txt: exif
                   17263:          dates now objects of type date
                   17264: 
                   17265:        * src/classes/image.C: file.seek removed [it were used in image.C
                   17266:          only, and for parser user this  means that jpeg image has bad
                   17267:          size in fragment's header] now used image.format
                   17268: 
                   17269:        * src/: include/pa_common.h, main/pa_common.C,
                   17270:          types/pa_vresponse.C, types/pa_vresponse.h: http:// param values
                   17271:          now handled exactly like $response:header values.  e.g. can be
                   17272:          hash [can have subattributes] & contain date values.
                   17273: 
                   17274:        * src/main/pa_common.C: http:// param values lang forced URI
                   17275: 
                   17276:        * src/main/pa_common.C: http:// tainted partes now %xx
                   17277: 
                   17278: 2002-11-28  paf
                   17279: 
                   17280:        * operators.txt: http.timeout
                   17281: 
                   17282:        * src/classes/image.C: ^image.length now counts interchar space.
                   17283:          plus space after last char
                   17284: 
                   17285:        * src/main/pa_string.C: PCRE_DOLLAR_ENDONLY
                   17286: 
                   17287:        * src/classes/image.C: ^image.font width measurer now scans full
                   17288:          height [were -1]
                   17289: 
                   17290:        * configure.in: stopped double libltdl/Makefile generation
                   17291: 
                   17292:        * src/classes/image.C: ^image.text now outputs one pixel HIGHER
                   17293:          chars [one top horizontal line of 1pixel height were missing]
                   17294: 
                   17295:        * src/classes/op.C: ^cache bug fixed.  stupid compiler allowed
                   17296:          'false' to go into (Hash *) parameter
                   17297: 
                   17298: 2002-11-27  paf
                   17299: 
                   17300:        * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
                   17301:          types/pa_vmail.C: response:body[file]  if file nows it's name now
                   17302:          returns content-disposition: >>attachment<<
                   17303: 
                   17304:        * src/classes/image.C: ^image.font << bad font file-size now
                   17305:          properly reported
                   17306: 
                   17307: 2002-11-26  paf
                   17308: 
                   17309:        * src/main/pa_request.C: fixed lang in reponse header
                   17310: 
                   17311:        * src/main/pa_common.C: utf8 prefix ignored @read text
                   17312: 
                   17313:        * operators.txt, src/main/pa_common.C: http:// response status!=200
                   17314:          made exception: http.status with source=bad status#
                   17315: 
                   17316: 2002-11-25  paf
                   17317: 
                   17318:        * configure.in, src/classes/image.C,
                   17319:          src/include/pa_config_auto.h.in,
                   17320:          src/include/pa_config_includes.h, src/main/Makefile.am,
1.116     moko     17321:          src/main/pa_common.C, src/main/pa_globals.C: http:// and image
                   17322:          const void related probs fixed
1.95      moko     17323: 
                   17324:        * operators.txt, src/main/pa_common.C: http fields now UPPERCASE
                   17325: 
                   17326:          $file[^file::load[http://there]] $file.SERVER
                   17327: 
                   17328:        * src/: classes/file.C, classes/image.C, classes/xdoc.C,
                   17329:          include/pa_common.h, main/pa_common.C, main/pa_request.C: checked
                   17330:          http options [invalid onces now reported] made default
                   17331:          user-agent: paf
                   17332: 
                   17333:        * operators.txt, src/classes/file.C, src/classes/table.C,
                   17334:          src/classes/xdoc.C, src/include/pa_common.h,
                   17335:          src/include/pa_globals.h, src/main/pa_common.C,
                   17336:          src/main/pa_globals.C, src/main/pa_request.C,
                   17337:          src/types/pa_vfile.C, src/types/pa_vfile.h: table/xdoc/file::load
                   17338:          now understand http:// prefix and additional params, sample:
                   17339:          $rates[^xdoc::load[http://www.cbr.ru/scripts/XML_daily.asp?date_req=02/03/2002;
                   17340:          $.USER-AGENT[parser3] ]]
                   17341: 
                   17342: 2002-11-22  paf
                   17343: 
                   17344:        * src/classes/image.C, src/include/pa_globals.h,
                   17345:          src/main/execute.C, src/main/pa_globals.C, src/types/pa_vimage.C,
                   17346:          src/types/pa_vimage.h, operators.txt: $image.exif support
                   17347:          $image.exif.DateTime & co
                   17348: 
                   17349: 2002-11-21  paf
                   17350: 
                   17351:        * src/main/: pa_exec.C, untaint.C: cstr(UL_UNSPECIFIED) [not
                   17352:          _PASS_APPENDED)
                   17353: 
                   17354:        * src/classes/image.C: jpeg size measure fixed: were badly skipping
                   17355:          EXIF information [were big block and it's size were considered
                   17356:          negative :(]
                   17357: 
                   17358:        * operators.txt, src/classes/image.C, src/include/pa_common.h,
                   17359:          src/main/pa_common.C, src/types/pa_vmail.C: image.measure
                   17360:          internals rewritten. no there's reader.seek, and all's ready for
                   17361:          EXIF extraction [now we fail to measure files with EXIF info]
                   17362: 
                   17363:        * src/main/pa_common.C: O_TRUNCATE killed, ftruncate  used instead:
                   17364:          O_TRUNC truncates even exclusevely write-locked file [thanks to
                   17365:          Igor Milyakov <virtan@rotabanner.com> for discovering]
                   17366: 
                   17367: 2002-11-20  paf
                   17368: 
                   17369:        * src/targets/cgi/parser3.C: logging @signal += query_string
                   17370: 
                   17371:        * configure.in, src/include/pa_config_auto.h.in,
                   17372:          src/include/pa_config_includes.h, src/targets/cgi/parser3.C:
                   17373:          comment
                   17374: 
                   17375:        * src/targets/cgi/parser3.C: SIGNALS overriden @ main top
                   17376: 
                   17377:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
                   17378:          targets/cgi/parser3.C: SIGUSR1 >> writes to error_log uri of
                   17379:          currently processed document SIGPIPE >> interrupts request
                   17380:          processing [exception = DB rollback]
                   17381: 
                   17382:        * src/main/pa_exec.C: comment
                   17383: 
                   17384:        * src/main/pa_exec.C: pa_exec: data written only if size>0
                   17385: 
                   17386:        * operators.txt, src/classes/file.C: ^file::exec/cgi[file;$.stdin[]
                   17387:          << disable HTTP-POST repassing
                   17388: 
                   17389:        * src/: include/pa_config_fixed.h, main/pa_common.C,
                   17390:          main/pa_exec.C, targets/cgi/parser3.C: ^file:exec/cgi [pa_exec]
                   17391:          pipe read errors now checked
                   17392: 
                   17393: 2002-11-19  paf
                   17394: 
                   17395:        * src/targets/cgi/parser3.C: removed #ifdef WIN32 around check of
                   17396:          CGI: Illegal call
                   17397: 
                   17398: 2002-11-01  paf
                   17399: 
                   17400:        * src/main/execute.C: comment
                   17401: 
                   17402: 2002-10-31  paf
                   17403: 
                   17404:        * src/main/execute.C: found out why, checked that for now.  todo:
                   17405:          find out a way for that user could do that
                   17406: 
                   17407:        * src/types/pa_vstateless_object.h: object put replaces static
                   17408:          parent if any
                   17409: 
                   17410:        * src/types/pa_vobject.C: object put replaces static parent if any
                   17411: 
                   17412:        * src/: classes/form.C, classes/mail.C, classes/op.C,
                   17413:          classes/xnode.h, main/compile.tab.C, main/execute.C,
                   17414:          main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
                   17415:          types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
                   17416:          types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
                   17417:          types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
                   17418:          types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
                   17419:          types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
                   17420:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
                   17421:          types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
                   17422:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   17423:          types/pa_vstateless_object.h, types/pa_vstatus.C,
                   17424:          types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
                   17425:          types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
                   17426:          types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
                   17427:          types/pa_wwrapper.h: static fix merged
                   17428: 
                   17429:        * src/: main/compile.tab.C, types/pa_vobject.C: killed
                   17430:          $virtual_fields in dynamic, but one can reach derived
                   17431:          static[class] variable from base
                   17432: 
                   17433:        * src/: classes/op.C, types/pa_value.h, types/pa_vmethod_frame.h,
                   17434:          types/pa_vobject.C, types/pa_vobject.h,
                   17435:          types/pa_vstateless_class.C, types/pa_vstateless_class.h: fixed
                   17436:          statics, left $virtual_fields in dynamic
                   17437: 
                   17438:        * src/types/: pa_vobject.C, pa_vstateless_class.C: realized that
                   17439:          one can't remember derivates in base class: there's so many of
                   17440:          them.  also there can be no virtual method calls in static
                   17441:          classes
                   17442: 
                   17443:        * src/: classes/form.C, classes/mail.C, classes/op.C,
                   17444:          classes/xnode.h, main/execute.C, main/pa_request.C,
                   17445:          types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
                   17446:          types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
                   17447:          types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
                   17448:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
                   17449:          types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
                   17450:          types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
                   17451:          types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
                   17452:          types/pa_vresponse.C, types/pa_vresponse.h,
                   17453:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   17454:          types/pa_vstateless_object.h, types/pa_vstatus.C,
                   17455:          types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
                   17456:          types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
                   17457:          types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
                   17458:          types/pa_wwrapper.h: static call $self fixed
                   17459: 
                   17460:        * src/main/execute.C: comment
                   17461: 
                   17462:        * src/: classes/op.C, types/pa_value.h, types/pa_vobject.h:
                   17463:          ^process[$caller.self]{...} now compiles to last derived object
                   17464:          part of that 'self'
                   17465: 
                   17466: 2002-10-29  paf
                   17467: 
                   17468:        * src/targets/isapi/parser3isapi.C: comment on 404 bad status
                   17469:          re-passing [iis to blame]
                   17470: 
                   17471:        * src/classes/string.C: changed string.save to pass current sql
                   17472:          connection to cstr thus one can ^connect[some server]{
                   17473:          $s[insert into table x (x) values (^taint[sql]{value})]
                   17474:          ^s.save[some.sql] } and he'd get in some.sql file code with
                   17475:          properly escaped.  [tried in mssql->mysql export->import of
                   17476:          binary data]
                   17477: 
                   17478: 2002-10-25  paf
                   17479: 
                   17480:        * src/types/pa_vresponse.C: case insensitive response user fields
                   17481:          get/put
                   17482: 
                   17483:        * src/: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
                   17484:          types/pa_vresponse.C: saving for maybe-future
                   17485: 
                   17486: 2002-10-23  paf
                   17487: 
                   17488:        * operators.txt, src/classes/table.C: ^table.hash{code}...
                   17489:          ^table.hash(expr)...
                   17490: 
                   17491:        * src/types/pa_vmail.C: email whitespace trimBoth-ed
                   17492: 
                   17493: 2002-10-22  paf
                   17494: 
                   17495:        * src/types/: pa_vform.C, pa_vform.h: removed needless
                   17496:          VForm::Append...(...Value)
                   17497: 
                   17498:        * src/main/execute.C: $.name outside of $name[...] checked
                   17499: 
                   17500:        * src/main/: compile.tab.C, compile.y: lexer changed to fix
                   17501:          ^call[]^#HH bug [that situation yelded no EON, which whas wrong]
                   17502: 
                   17503: 2002-10-21  paf
                   17504: 
                   17505:        * operators.txt, src/types/pa_vform.C, src/types/pa_vform.h:
                   17506:          $form:qtail $form:imap.x/y
                   17507: 
                   17508:        * operators.txt, src/types/pa_vform.C: $form:nameless =
                   17509:          "?value&...", "...&value&...", "...&value"
                   17510: 
                   17511:        * operators.txt, src/types/pa_vform.C: $form:image-map
                   17512: 
                   17513:        * operators.txt, src/classes/file.C: /some/page.html:
                   17514:          ^file:fullpath[a.gif] => /some/a.gif
                   17515: 
                   17516: 2002-10-17  paf
                   17517: 
                   17518:        * src/main/: compile.tab.C, compile.y: operators precedence changed
                   17519:          a little: logical not and bitwise negation precedence made
                   17520:          highest, << and >> bitshits precedence made equal [were << higher
                   17521:          than >>]
                   17522: 
                   17523:        * src/classes/op.C: exception handling fixed [were bad with
                   17524:          contexts]
                   17525: 
                   17526: 2002-10-16  paf
                   17527: 
                   17528:        * src/: classes/op.C, include/pa_request.h, main/execute.C,
                   17529:          main/pa_request.C: Request::self considered equal to
                   17530:          VMethodFrame::self, and removed, Request::get_self() mapped to
                   17531:          VMethodFrame.self()
                   17532: 
                   17533:        * src/: classes/op.C, main/pa_request.C: VMainClass now has name =
                   17534:          $hash in open field now gives old good error meesage
                   17535: 
                   17536: 2002-10-15  paf
                   17537: 
                   17538:        * src/types/pa_vjunction.h: ^if(def $junction){was true}{now false}
                   17539:          use ^if($junction is junction){was and now true}
                   17540: 
                   17541:        * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
                   17542:          include/pa_pool.h, main/pa_charset.C, main/pa_pool.C,
                   17543:          types/pa_vxnode.C: xml->parser strings now have origin, which
                   17544:          points to place where value left xml library and came to parser:
                   17545:          place of dom field extraction/call
                   17546: 
                   17547:        * src/: classes/op.C, include/pa_opcode.h, include/pa_request.h,
                   17548:          main/compile.tab.C, main/compile.y, main/execute.C,
                   17549:          types/pa_vmethod_frame.h: removed last pieces of old code
                   17550:          allowing $junction.xxx at compile time
                   17551: 
                   17552:        * ChangeLog, src/classes/op.C, src/main/compile.tab.C,
                   17553:          src/main/compile.y, src/types/pa_vmethod_frame.h: process[self]
                   17554:          objects also considered [were only classes]
                   17555: 
                   17556:        * ChangeLog, src/classes/op.C, src/include/pa_request.h,
                   17557:          src/types/pa_vmethod_frame.h: ^process[CLASS]{body} now executed
                   17558:          with CLASS self.  [   (request&method_frame).self temporarily
                   17559:          changed   ]
                   17560: 
                   17561:        * src/classes/: hash.C, op.C: method_frame now always changed, with
                   17562:          no exception to native calls.  for&foreach changed to use
                   17563:          method_frame.caller for their var's name context
                   17564: 
                   17565:        * src/: main/execute.C, targets/cgi/parser3.C,
                   17566:          types/pa_vstateless_class.C, types/pa_vstateless_class.h:
                   17567:          compiling to system classes disabled
                   17568: 
                   17569:        * operators.txt, src/classes/op.C:
                   17570:          ^process[$caller.CLASS]{code-string} added
                   17571: 
                   17572:        * operators.txt, src/classes/op.C, src/main/compile.tab.C,
                   17573:          src/main/compile.y, src/main/execute.C, src/main/pa_request.C,
                   17574:          src/types/Makefile.am, src/types/pa_vjunction.C,
                   17575:          src/types/pa_vjunction.h, src/types/pa_vmethod_frame.h,
                   17576:          src/types/types.dsp: removed $junction.get $junction.set[]
                   17577:          introducing $caller
                   17578: 
                   17579:        * src/types/pa_value.h: removed outdated comments. doxygen would
                   17580:          find them lower by inheritance tree
                   17581: 
                   17582:        * src/types/pa_vjunction.C: ident
                   17583: 
                   17584: 2002-10-14  paf
                   17585: 
                   17586:        * src/classes/op.C: process compiles to code's class class
                   17587: 
                   17588:        * src/: classes/form.C, classes/mail.C, classes/op.C,
                   17589:          include/pa_request.h, main/compile.C, main/compile.tab.C,
                   17590:          main/compile.y, main/execute.C, main/pa_request.C,
                   17591:          types/pa_vstateless_class.h: operators now main-class-methods
                   17592: 
                   17593:        * src/: classes/op.C, include/pa_request.h: ^try{^call{}} now has
                   17594:          better stack trace [has "call" & co there]
                   17595: 
                   17596:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
                   17597:          operators @auto now executed in MAIN context
                   17598: 
                   17599:        * src/main/execute.C: operator execution context now = MAIN, not
                   17600:          closest stack frame
                   17601: 
                   17602:          @touchit[] $i[after]
                   17603: 
                   17604:          ----t.html $i[before] << local ^touchit[] $i << now 'before',
                   17605:          were 'after'
                   17606: 
                   17607:          ---t.html $i[before] << notlocal [main] ^touchit[] $i << now
                   17608:          'after'
                   17609: 
                   17610:        * src/main/execute.C: comment
                   17611: 
                   17612:        * src/types/: pa_vclass.C, pa_vobject.h, pa_vstateless_class.C,
                   17613:          pa_vstateless_class.h: $form:CLASS resurrected [wes killed in
                   17614:          action]
                   17615: 
                   17616:        * src/types/pa_vxnode.C: misreplace fixed
                   17617: 
                   17618:        * configure, configure.in, src/include/pa_config_auto.h.in,
                   17619:          src/types/pa_vstatus.C, operators.txt:
                   17620:          $status:rusage.tv_secs/usecs introduced
                   17621: 
                   17622: 2002-10-09  paf
                   17623: 
                   17624:        * src/classes/: double.C, int.C, string.C: ^string.int[] now failes
                   17625:          on empty string [or uses (default)]
                   17626: 
                   17627: 2002-10-08  paf
                   17628: 
                   17629:        * src/main/untaint.C: mail header quoted printable changed after
                   17630:          RFC reread
                   17631: 
                   17632:        * operators.txt: plan on ^if(method
                   17633: 
                   17634:        * src/types/pa_vxnode.C: misreplace
                   17635: 
                   17636: 2002-09-24  paf
                   17637: 
1.116     moko     17638:        * src/targets/cgi/Makefile.am: LIBS were bad name in .am
1.95      moko     17639: 
                   17640:        * src/types/pa_vmail.C: HAVE_TIMEZONE & co now checked and
                   17641:          mailreceive would compile on freebsd now
                   17642: 
                   17643:        * src/include/pa_config_fixed.h, src/types/pa_vmail.C, acconfig.h,
                   17644:          configure, configure.in, src/include/pa_config_auto.h.in,
1.116     moko     17645:          src/targets/cgi/Makefile.am: HAVE_TIMEZONE & co now checked and
                   17646:          mailreceive would compile on freebsd now
1.95      moko     17647: 
                   17648:        * src/: classes/file.C, main/untaint.C: 1.  file spec language
                   17649:          changed: now there are only few chars are untainted: * ? ' " < >
                   17650:          | and, on unix, : \ ~ [russian letters and SPACES now enabled,
                   17651:          one should use ^untaint[uri]{...} now]
                   17652: 
                   17653:          2.  $list[^file:list[dir]] now returns simply tainted names in
                   17654:          $list.name, not tainted as filespec
                   17655: 
                   17656:          @russianindex[] #dir with files with russian-lang names
                   17657:          $where[dir]
                   17658: 
                   17659:          $dir[^file:list[$where;\.txt^$]] ^dir.menu{     <a
                   17660:          href=$where/^untaint[uri]{$dir.name}>$dir.name</a><br> }
                   17661: 
                   17662: 2002-09-23  paf
                   17663: 
                   17664:        * src/types/pa_vdouble.h: double->int round added
                   17665: 
                   17666:        * src/classes/date.C: date bug fix, now
                   17667:          round(floatDays*secondsPerDay)
                   17668: 
                   17669:        * src/classes/date.C: date bug fix, now
                   17670:          round(floatDays*secondsPerDay)
                   17671: 
                   17672: 2002-09-20  paf
                   17673: 
                   17674:        * src/main/execute.C: code junction calls disabled [before: code
                   17675:          was compiled in such a way, that there were no code-junctions in
                   17676:          OP_CALL]
                   17677: 
                   17678:          this now error: @badjunctioncall[] ^badjunctioncallinside{code}
                   17679: 
                   17680:          @badjunctioncallinside[code] ^code[]
                   17681: 
                   17682:        * src/main/: compile.tab.C, compile.y: changed grammer on junction
                   17683:          expanding to include ^junction.method
                   17684: 
                   17685:        * src/main/pa_common.C: -d "DIR/" now true
                   17686: 
                   17687:        * src/classes/xdoc.C: xdoc::create[name] now sets $request:charset
                   17688:          as internal xdoc encoding, and after decoding attributes set by
                   17689:          dom functions now encoded OK, not as digital entities
                   17690: 
                   17691:        * src/classes/xdoc.C: empty transform result, being taken as file
                   17692:          now returns empty file, not raises stupid error about "stat-ed
                   17693:          file"
                   17694: 
                   17695:        * src/types/pa_vhash.h: hash.foreach modification of existing keys
                   17696:          allowed
                   17697: 
                   17698:        * src/types/types.dsp: introducing $junction.get/put(1) one can
                   17699:          write iterators now:
                   17700: 
                   17701:          ^user-foreach[key;value]{$key=$value<br>}
                   17702: 
                   17703:          @user-foreach[key;value;code] ^for[i](1;10){    $code.key($i)
                   17704:          $code.value($i*2)       $code }
                   17705: 
                   17706:        * src/main/compile_tools.h: mistype
                   17707: 
1.116     moko     17708:        * src/targets/cgi/Makefile.am: binaries now depend on makefiles,
                   17709:          thus taking linking options configure changes into account [were:
                   17710:          ignoring]
1.95      moko     17711: 
                   17712:        * src/types/: pa_vjunction.C, Makefile.am: introducing
                   17713:          $junction.get/put(1) one can write iterators now:
                   17714: 
                   17715:          ^user-foreach[key;value]{$key=$value<br>}
                   17716: 
                   17717:          @user-foreach[key;value;code] ^for[i](1;10){    $code.key($i)
                   17718:          $code.value($i*2)       $code }
                   17719: 
                   17720:        * src/: include/pa_opcode.h, include/pa_request.h,
                   17721:          main/compile.tab.C, main/compile.y, main/execute.C,
                   17722:          main/main.dsp, targets/cgi/parser3.dsp, types/pa_vjunction.h:
                   17723:          introducing $junction.get/put(1) one can write iterators now:
                   17724: 
                   17725:          ^user-foreach[key;value]{$key=$value<br>}
                   17726: 
                   17727:          @user-foreach[key;value;code] ^for[i](1;10){    $code.key($i)
                   17728:          $code.value($i*2)       $code }
                   17729: 
                   17730: 2002-09-19  paf
                   17731: 
1.116     moko     17732:        * Makefile.am: new: make commit
1.95      moko     17733: 
                   17734:        * aclocal.m4: forced to be older
                   17735: 
                   17736: 2002-09-18  paf
                   17737: 
                   17738:        * parser3.dsw, src/include/pa_opcode.h, src/main/compile.tab.C,
                   17739:          src/main/compile.y, src/main/execute.C: << >> int shifts
                   17740: 
                   17741:        * src/: include/pa_common.h, include/pa_request.h,
                   17742:          main/pa_common.C, main/pa_request.C: auto.p exists but unreadable
                   17743:          - now this - fatal error
                   17744: 
                   17745:        * src/classes/file.C: ^file::exec/cgi $.stdin[can be file now] so
                   17746:          that one can pass binary data there
                   17747: 
                   17748:        * src/: classes/date.C, classes/double.C, classes/file.C,
                   17749:          classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
                   17750:          classes/op.C, classes/response.C, classes/string.C,
                   17751:          classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
                   17752:          include/pa_request.h: pa_request contexts made privated, plus
                   17753:          get_{self/method_frame} to read.  Request_context_saver used in
                   17754:          ^try to save flang too.  [were not saved]
                   17755: 
                   17756:        * src/types/pa_vresponse.C: header value chains joined before
                   17757:          output, this should help $.subject[$var $var] from being
                   17758:          converted to subject: ?koi8-r?Q?...?= ?koi8-r?Q?...?=
                   17759: 
                   17760: 2002-09-17  paf
                   17761: 
                   17762:        * src/: main/execute.C, types/pa_value.h, types/pa_vmethod_frame.h:
                   17763:          removed changes, operators executed with calling self.  lots of
                   17764:          code with ^include code relies on defined/defining self variables
                   17765: 
                   17766:          $a[1] ^include[print_a.p] print_a.p: $a
                   17767: 
                   17768:          ^include[set_a.p] a=$a set_a.p: $a[1]
                   17769: 
                   17770:        * src/: classes/op.C, main/execute.C, main/pa_request.C,
                   17771:          types/pa_value.C, types/pa_value.h, types/pa_vmethod_frame.h,
                   17772:          types/pa_vstateless_class.h: operators now executed with MAIN
                   17773:          self.  it's for ^include sake, too strong a change
                   17774: 
                   17775:        * src/classes/op.C: made place for ^process to compile it's code to
                   17776:          in case of no self
                   17777: 
                   17778:        * src/main/execute.C: found ancient param to Junction, removed.
                   17779:          allowed passing self to native_code_operators [for ^process to
                   17780:          work, she needs self]
                   17781: 
                   17782:        * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
                   17783:          types/pa_vstateless_class.h: found ancient param to Junction,
                   17784:          removed.  allowed passing self to native_code_operators [for
                   17785:          ^process to work, she needs self]
                   17786: 
                   17787:        * src/: main/execute.C, main/pa_request.C, types/pa_value.C,
                   17788:          types/pa_value.h, types/pa_vmethod_frame.h,
                   17789:          types/pa_vstateless_class.h: allowed Request.self to be 0,
                   17790:          checked that in VMethodFrame get/put and $self.
                   17791: 
                   17792:        * src/classes/: table.C, xdoc.C: table::sql  options table::create
                   17793:          copy options options checked, wrong option now fatal error
                   17794: 
                   17795:        * src/main/pa_string.C: string.replace fixed [were missing words on
                   17796:          pieces boundaries]
                   17797: 
1.150     moko     17798:        * configure, configure.in: .so now detected [can be .sl on hpux,
                   17799:          .dll on cygwin, .so in other cases)
1.95      moko     17800: 
                   17801:        * configure, configure.in: .so now detected [can be .sl on hpux,
                   17802:          .dll on cygwin, .so in other cases)
                   17803: 
                   17804:        * operators.txt, src/classes/hash.C, src/classes/table.C,
                   17805:          src/include/pa_globals.h, src/main/pa_globals.C: table.sql
                   17806:          hash::sql flag to allow duplicate keys [$.distinct(1/0)] first
                   17807:          record taken [were last]
                   17808: 
                   17809:        * src/: classes/hash.C, classes/table.C,
                   17810:          include/pa_sql_connection.h: table.sql hash::sql duplicate keys
                   17811:          now errors
                   17812: 
                   17813:        * src/classes/hash.C: foreach delims bug fixed [were ,2,3]
                   17814: 
                   17815:        * src/classes/: op.C, table.C: menu/for delims bug fixed [were
                   17816:          ,2,3]
                   17817: 
                   17818: 2002-09-16  paf
                   17819: 
                   17820:        * src/classes/file.C: file::cgi line ends can be both unix & dos.
                   17821:          and they can be unix [\n\n] on win when 'use CGI' used, it causes
                   17822:          stdout to be binary.  now detected closest header break.
                   17823: 
                   17824:        * src/: main/untaint.C, types/pa_vmail.C: mail:send closing ?=  now
                   17825:          closed right
                   17826: 
                   17827: 2002-09-13  paf
                   17828: 
                   17829:        * operators.txt, src/main/compile.tab.C, src/main/compile.y,
                   17830:          src/main/compile_tools.h: (expression #comment)
                   17831: 
                   17832:          (multiline expression #comment  line2  #comment )
                   17833: 
                   17834:          (expression #comment with (brackets) comment) << OK
                   17835: 
                   17836:        * operators.txt, src/main/compile.tab.C, src/main/compile.y: !|
                   17837:          bitwise !|| numerical xor now [preparing for expression
                   17838:          #comments]
                   17839: 
                   17840:        * src/main/: compile.tab.C, compile.y: @method[$name] now parse
                   17841:          error
                   17842: 
                   17843:        * src/: include/pa_config_fixed.h, main/pa_socks.C: HAVE_WINSOCK_H
                   17844:          cheched in pa_socks.C
                   17845: 
1.116     moko     17846:        * configure, configure.in, src/include/pa_config_auto.h.in:
                   17847:          HAVE_WINSOCK_H created in configure.in
1.95      moko     17848: 
                   17849:        * src/: main/compile.tab.C, main/compile.y, types/pa_vresponse.C:
                   17850:          cookie date now clean [were mistakenly tainted & that worked bad
                   17851:          with opera -- 'happily' that worked OK with msie]
                   17852: 
                   17853: 2002-09-12  paf
                   17854: 
                   17855:        * src/types/: pa_vclass.C, pa_vmail.C, pa_vobject.C: VObject &
                   17856:          VClass get_element now first looks to fields, next to methods &
                   17857:          co todo: the rest reason: more speed
                   17858: 
                   17859:        * src/main/untaint.C: quoted printable encoding stops before
                   17860:          \s*<...>$
                   17861: 
                   17862:        * src/main/untaint.C: quoted printable ' ' now =20 and encoding
                   17863:          stops before <...>$
                   17864: 
                   17865: 2002-09-11  paf
                   17866: 
                   17867:        * src/: main/pa_charset.C, targets/cgi/parser3.dsp: while fixing (
                   17868:          xmlCharEncodingInput/OutputFunc callbacks returned bad value )
                   17869:          forgot to check users of those funcs. not all were using that
                   17870:          return value convention
                   17871: 
                   17872:        * src/lib/pcre/ibm-1254.ucm, etc/parser3.charsets/windows-1254.cfg:
                   17873:          windows-1254 added
                   17874: 
                   17875: 2002-09-10  paf
                   17876: 
                   17877:        * src/: classes/op.C, main/execute.C, types/pa_wcontext.h:
                   17878:          VCodeFrame parent param were specified badly
                   17879: 
                   17880:        * src/: main/execute.C, types/pa_value.h, types/pa_wwrapper.h:
                   17881:          WWrapper which used in constructing objects(second param to sql
                   17882:          method) ^...sql{}[$.default{code}] now has parent, wich helps
                   17883:          code in hash to survivi
                   17884: 
                   17885:        * src/: include/pa_request.h, main/execute.C: removed redundant
                   17886:          param to execute [stack said 'thanks']
                   17887: 
                   17888:        * src/: classes/op.C, main/execute.C, types/pa_value.C,
                   17889:          types/pa_value.h, types/pa_vcode_frame.h,
                   17890:          types/pa_vmethod_frame.h, types/pa_wcontext.C,
                   17891:          types/pa_wcontext.h, types/pa_wwrapper.h: moved junction kill
                   17892:          responsibility to wcontext
                   17893: 
                   17894:        * src/classes/file.C: decided not to log exec's with stderr, that
                   17895:          could be warnings, and it's up to scritper to log/show them
                   17896: 
                   17897:        * src/: classes/double.C, main/execute.C: double:sql badly called
                   17898:          write_assign_lang, not write_no_lang, thus doing unnecessary
                   17899:          double/string converstion, which were loosing time&precesion
                   17900: 
                   17901:        * src/: main/pa_charset.C, types/pa_vmail.C:
                   17902:          xmlCharEncodingInput/OutputFunc callbacks returned bad value in
                   17903:          case of unfinished in buffer processing, causing accidental
                   17904:          transcode stop [in case that source enc != utf-8 & there is
                   17905:          incomplete utf-8 sequence at the end of 16000block iside of
                   17906:          libxml lib] tfm readed & code updated
                   17907: 
                   17908: 2002-09-04  paf
                   17909: 
                   17910:        * configure: makes with sjlj
                   17911: 
                   17912:        * INSTALL, src/include/pa_config_fixed.h,
                   17913:          src/include/pa_sql_connection.h,
                   17914:          src/main/pa_sql_driver_manager.C: -with-sjlj-exceptions define
                   17915:          checked.  on win32 it made default
                   17916: 
                   17917:        * src/include/pa_config_auto.h.in: sjlj define
                   17918: 
                   17919:        * configure, configure.in: introducing --with-sjlj-exceptions [hpux
                   17920:          can not work with longjump/throw pair, and one must switch that
                   17921:          on there.  todo: detect that automatically]
                   17922: 
                   17923:        * src/types/pa_vxnode.C: removed too strong checks of
                   17924:          xnode.elements.  now, for instance, if element does not have any
                   17925:          attributes, $xnode.attributes is void, not error
                   17926: 
                   17927: 2002-09-02  paf
                   17928: 
                   17929:        * operators.txt, src/main/execute.C, src/targets/cgi/parser3.dsp:
                   17930:          removed double_result, didn't help
                   17931: 
                   17932:        * src/main/execute.C: double_result made to move that var away from
                   17933:          hungry g++ optimizer (-O2), before: it were optimized and
                   17934:          comparison operators worked badly
                   17935: 
                   17936:        * src/types/pa_vdate.h: removed debug
                   17937: 
1.116     moko     17938:        * Makefile.am, src/types/pa_vdate.h: happy now only install-exec
1.95      moko     17939: 
                   17940:        * src/main/execute.C: fixed numeric < & co so that thay now use
                   17941:          c=a-b, c OPERATOR 0.  this works fine on solaris/intel for still
                   17942:          unknown reason.
                   17943: 
                   17944: 2002-08-29  paf
                   17945: 
                   17946:        * parser3.dsw, src/classes/classes.dsp, src/classes/hash.C,
                   17947:          src/classes/op.C, src/classes/string.C, src/include/pa_request.h,
                   17948:          src/lib/md5/md5.dsp, src/main/execute.C, src/main/main.dsp,
                   17949:          src/main/pa_request.C, src/targets/cgi/parser3.dsp,
                   17950:          src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vmail.C,
                   17951:          src/types/pa_vmethod_frame.h, src/types/pa_wcontext.h,
                   17952:          src/types/types.dsp: junction_cleaner moved to auto VMethodFrame
                   17953:          [called less frequent, allowed to remove ugly
                   17954:          Junction.change_context-s from many places, switch,
                   17955:          mail:send..html{}, ..] request.root renamed to method_frame [more
                   17956:          easyreading] ancient {...PUSH/POPs...} changed to stack vars
                   17957:          [speed up]
                   17958: 
                   17959: 2002-08-28  paf
                   17960: 
                   17961:        * src/types/pa_vcookie.C: $cookie:name[&] $cookie:name << now
                   17962:          tainted
                   17963: 
                   17964:        * src/types/pa_vcookie.C: fixed cookie delete when
                   17965:          $cookie:name[$.value[]]
                   17966: 
                   17967:        * operators.txt, src/classes/string.C:
                   17968:          ^string.split[delim[;options]]
                   17969: 
                   17970: 2002-08-27  paf
                   17971: 
1.116     moko     17972:        * etc/parser3.charsets/Makefile.am: merged from 3.0.0005
1.95      moko     17973: 
                   17974:        * operators.txt, src/main/compile.tab.C, src/main/compile.y: # now
                   17975:          delimiter
                   17976: 
                   17977:        * INSTALL: recommended latest gmime 1.0.5
                   17978: 
                   17979: 2002-08-26  paf
                   17980: 
                   17981:        * configure, configure.in: apache13/hook added to make dist.
                   17982: 
                   17983: 2002-08-23  paf
                   17984: 
                   17985:        * src/: include/pa_common.h, main/pa_common.C,
                   17986:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C: when auto.p
                   17987:          beside binary [cgi, isapi] not accessible [due to bad rights or
                   17988:          whatever] it's error now
                   17989: 
                   17990: 2002-08-21  paf
                   17991: 
1.116     moko     17992:        * Makefile.am: can use: make happy equals to make update install
1.95      moko     17993: 
                   17994:        * src/main/: compile.tab.C, compile.y, compile_tools.C,
                   17995:          compile_tools.h: "BASE:" "BASE::" syntax allowed, means "base
                   17996:          class".  compiled as if here they named base class
                   17997: 
                   17998:        * src/main/pa_string.C: fixed bad language bug, [were wrong string
                   17999:          cloning constructor]
                   18000: 
                   18001:        * src/: main/execute.C, types/pa_vobject.h: fixed virtual calls
                   18002: 
1.150     moko     18003:        * src/: targets/cgi/parser3.C, types/pa_vfile.C, types/pa_vmail.C:
1.95      moko     18004:          $mail.received.file.value.content-type fixed
                   18005: 
                   18006: 2002-08-20  paf
                   18007: 
                   18008:        * src/classes/file.C: fixed language of file:file result
                   18009: 
                   18010:        * operators.txt, src/classes/void.C: ^void.pos[...] = -1 merged
                   18011:          from 3.0.0005
                   18012: 
                   18013:        * operators.txt, src/classes/void.C: ^void.pos[...] = -1
                   18014: 
                   18015:        * operators.txt, src/classes/void.C: ^void.length[] = 0 merged from
                   18016:          3.0.0005
                   18017: 
                   18018:        * src/classes/void.C, operators.txt: ^void.length[] = 0
                   18019: 
                   18020: 2002-08-19  paf
                   18021: 
                   18022:        * src/classes/xdoc.C: xdoc getElementsByTagName, ...NS overriden,
                   18023:          work now
                   18024: 
                   18025:        * src/: classes/xnode.C, types/pa_vxdoc.C: xdoc.fields fixed [were
                   18026:          error in xnode, which were not catched in xdoc]
                   18027: 
                   18028:        * src/: include/pa_stylesheet_connection.h, main/pa_globals.C:
                   18029:          prepared:        // validate each document after load/create (?)
                   18030:                 //xmlDoValidityCheckingDefaultValue = 1;
                   18031: 
                   18032: 2002-08-15  paf
                   18033: 
                   18034:        * src/classes/classes.h: write to static var caused useless
                   18035:          Exception, introduced Methoded::put_element wich consumes those
                   18036: 
                   18037:        * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
                   18038:          src/types/pa_vcookie.C, src/types/pa_vdate.h,
                   18039:          src/types/pa_vresponse.C, src/types/pa_vresponse.h:
                   18040:          $response:field[date] $response:field[$.xxx[date]]
                   18041: 
                   18042:        * src/: classes/hash.C, classes/string.C, classes/table.C,
                   18043:          classes/void.C, include/pa_sql_connection.h: fixed source of
                   18044:          ^hash::sql{bad}
                   18045: 
                   18046:        * operators.txt: $request:body unprecessed POST request body
                   18047: 
                   18048:        * src/types/pa_vrequest.C: $request:body unprecessed POST request
                   18049: 
                   18050:        * src/types/: pa_value.h, pa_vdate.h, pa_vrequest.C, pa_vxdoc.C,
                   18051:          pa_vxnode.C: few barks: bark("%s field not found", 0, &aname)
                   18052: 
                   18053:        * operators.txt, src/classes/form.C, src/include/pa_pool.h,
                   18054:          src/include/pa_request.h, src/main/pa_pool.C,
                   18055:          src/types/pa_vform.C, src/types/pa_vform.h: planning/preparing_to
                   18056:          $request:body r.post_data now const
                   18057: 
                   18058:        * src/: classes/image.C, classes/op.C, classes/xdoc.C,
                   18059:          classes/xnode.C, main/execute.C, types/pa_value.h,
                   18060:          types/pa_vhash.h, types/pa_vobject.C, types/pa_vobject.h,
                   18061:          types/pa_vtable.h: instead of type() checking everywhere used
                   18062:          Value.as now user descendants can be used in params.
                   18063: 
                   18064:          VObject::as_*, is_defined now taken from bases.  xtable(table)
                   18065:          ^if($xtable) now OK
                   18066: 
                   18067:        * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
                   18068:          types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
                   18069:          types/pa_vxdoc.C, types/pa_vxdoc.h: is->as
                   18070: 
                   18071: 2002-08-14  paf
                   18072: 
                   18073:        * src/: classes/xnode.h, main/execute.C, targets/cgi/parser3.dsp,
                   18074:          types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
                   18075:          types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
                   18076:          types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
                   18077:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
                   18078:          types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
                   18079:          types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
                   18080:          types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
                   18081:          types/pa_vresponse.C, types/pa_vresponse.h,
                   18082:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   18083:          types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
                   18084:          types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
                   18085:          types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
                   18086:          types/pa_vxnode.h, types/pa_wwrapper.h: is now works with VObject
                   18087:          & VClass
                   18088: 
                   18089:        * src/types/pa_vmail.C: mail: turned off utf8 to source transcoding
                   18090: 
                   18091:        * src/targets/cgi/: fixopt.C, fixopt.h, parser3.C, Makefile.am:
                   18092:          removed fixopt stupidity. on stupid linux use cd /document/root
                   18093:          ../cgi/parser3 script
                   18094: 
                   18095:        * src/targets/cgi/fixopt.C: fixopt now preprocesses command line
                   18096:          params, splitting them by space, excluding argv[0], argv[argc-1]
                   18097: 
                   18098:        * src/targets/cgi/: Makefile.am, parser3.C, parser3.dsp, fixopt.C,
                   18099:          fixopt.h: fixopt now preprocesses command line params, splitting
                   18100:          them by space, excluding argv[0], argv[argc-1]
                   18101: 
                   18102:        * src/targets/cgi/parser3.C: -f config file
                   18103: 
                   18104:        * src/targets/cgi/parser3.C: fixed .log file dir
                   18105: 
                   18106: 2002-08-13  paf
                   18107: 
                   18108:        * src/types/pa_vobject.C: allow override parent variables, useful
                   18109:          for form descendants [in vobject too, were in vclass]
                   18110: 
                   18111:        * src/types/pa_vclass.C: allow override parent variables, useful
                   18112:          for form descendants
                   18113: 
                   18114:        * src/types/pa_vclass.C: checked: form[vclass]fields can be
                   18115:          overwritten in derived(table)
                   18116: 
                   18117:        * src/: classes/form.C, classes/mail.C, classes/op.C,
                   18118:          classes/xnode.h, include/pa_request.h, main/execute.C,
                   18119:          main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
                   18120:          types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
                   18121:          types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
                   18122:          types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
                   18123:          types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
                   18124:          types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
                   18125:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
                   18126:          types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
                   18127:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   18128:          types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
                   18129:          types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
                   18130:          types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
                   18131:          types/pa_vxnode.h, types/pa_wwrapper.h: introduced
                   18132:          Value::get_element(..., bool looking_down) [needed to exclude
                   18133:          endless recoursion]
                   18134: 
                   18135:        * src/types/: pa_vclass.C, pa_vobject.C: reorganized modules todo:
                   18136:          fix bug with put endless recoursion todo: check 'as'
                   18137: 
                   18138:        * src/types/: Makefile.am, pa_vclass.h, pa_vobject.h, types.dsp:
                   18139:          reorganized modules todo: fix bug with put endless recoursion
                   18140:          todo: check 'as'
                   18141: 
                   18142:        * src/types/pa_vobject.h: checked: table fields can be overwritten
                   18143:          in derived(table)
                   18144: 
                   18145:        * src/types/pa_vobject.h: derived classes can have fields of their
                   18146:          own now
                   18147: 
                   18148:        * src/: classes/table.C, types/pa_vtable.C, types/pa_vtable.h:
                   18149:          fixed error message on using non-created table
                   18150: 
                   18151:        * src/: classes/form.C, classes/hash.C, classes/mail.C,
                   18152:          classes/op.C, classes/xnode.h, include/pa_request.h,
                   18153:          main/compile.C, main/compile.tab.C, main/execute.C,
                   18154:          main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
                   18155:          types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
                   18156:          types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
                   18157:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
                   18158:          types/pa_vimage.C, types/pa_vimage.h, types/pa_vmail.C,
                   18159:          types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
                   18160:          types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
                   18161:          types/pa_vresponse.C, types/pa_vresponse.h,
                   18162:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   18163:          types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
                   18164:          types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
                   18165:          types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
                   18166:          types/pa_vxnode.h, types/pa_wwrapper.h: VObject.get/out now
                   18167:          looking down/up tree todo: fix error message on non-constructed
                   18168:          parents
                   18169: 
                   18170: 2002-08-12  paf
                   18171: 
                   18172:        * src/types/: pa_vstateless_class.h, pa_vstateless_object.h: table
                   18173:          derived OK
                   18174: 
                   18175:        * src/main/execute.C: ^base:create[] dynamic call rewritten todo:
                   18176:          thorough testing
                   18177: 
                   18178:        * src/: main/compile.tab.C, main/compile.y, main/execute.C,
                   18179:          main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
                   18180:          types/pa_vobject.h, types/pa_vstateless_class.h,
                   18181:          types/pa_vstateless_object.h, types/pa_wcontext.h,
                   18182:          types/pa_valiased.C, types/pa_valiased.h, types/Makefile.am:
                   18183:          ^base:create[] dynamic call rewritten todo: thorough testing
                   18184: 
                   18185:        * src/types/: pa_value.h, pa_vclass.h, pa_vobject.h: VObject ctor
                   18186:          now instantates base class, remembers it and saves child in
                   18187:          parent VObject.get_class now returns last child = downward
                   18188:          virtual calls OK
                   18189: 
                   18190:        * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
                   18191:          types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
                   18192:          types/pa_vimage.h, types/pa_vint.h, types/pa_vmethod_frame.h,
                   18193:          types/pa_vobject.h, types/pa_vresponse.h,
                   18194:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   18195:          types/pa_vstring.h, types/pa_vtable.h, types/pa_vxdoc.h,
                   18196:          types/pa_vxnode.h, types/pa_wcontext.h, types/types.dsp: killed
                   18197:          VAliased [redundant], moved $CLASS to VObject only [parser class
                   18198:          instance]
                   18199: 
                   18200:        * src/main/pa_request.C: $response:body[file] content-type check
                   18201:          fixed [were bad when content-type is hash]
                   18202: 
                   18203: 2002-08-09  paf
                   18204: 
                   18205:        * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
                   18206:          types/pa_vobject.h, types/pa_vxdoc.h: started as()
                   18207: 
                   18208: 2002-08-08  paf
                   18209: 
                   18210:        * operators.txt, src/classes/date.C, src/include/pa_globals.h,
                   18211:          src/main/pa_globals.C: year column in month calendar [week year]
                   18212: 
                   18213:        * src/main/execute.C: error reporting on object writes to MAIN
                   18214:          improved [were ruind with fixing $obj[^if(1){$obj}] ]
                   18215: 
                   18216:        * operators.txt, src/types/pa_vdate.h: $date.yearday
                   18217:          $date.daylightsaving
                   18218: 
                   18219:        * src/: classes/mail.C, types/pa_vmail.C: in letter texts one can
                   18220:          use tainted data now. only she must specify the language.
                   18221: 
                   18222:          ^mail:send[     $.from[paf@mail.design.ru]
                   18223:          $.to[paf@mail.design.ru]        $.subject[^taint[uri][ìîñêâà]=2]
                   18224:                $.text[^taint[uri][ìîñêâà]=] ]
                   18225: 
                   18226:        * src/: classes/file.C, classes/op.C, types/pa_vfile.C: ^process
                   18227:          now prints more precise origin
                   18228: 
                   18229:        * src/include/pa_string.h: String::first_char now not fails on
                   18230:          empty strings ^if(-f '') now ok and in 3 other places.
                   18231: 
                   18232:        * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
                   18233:          String::first_char now not fails on empty strings ^if(-f '') now
                   18234:          ok and in 3 other places.
                   18235: 
                   18236: 2002-08-07  paf
                   18237: 
                   18238:        * src/: classes/string.C, main/pa_string.C: ^string.mid(0;bad)
                   18239:          fixed
                   18240: 
                   18241:        * src/main/pa_string.C: ^string.mid(0;bad) fixed
                   18242: 
                   18243:        * src/: main/execute.C, types/pa_vcode_frame.h,
                   18244:          types/pa_vmethod_frame.h, types/pa_wcontext.C,
                   18245:          types/pa_wcontext.h, types/pa_wwrapper.h: vcodeframe were
                   18246:          mistakenly not completely transparent to object writes.
                   18247:          $hash[^if(1){$hash}] now works
                   18248: 
                   18249:        * operators.txt, src/classes/op.C: ^cache...{...^cache<<to past...}
                   18250:          now erasing cache file [there were bad check on that]
                   18251: 
                   18252:        * src/: classes/classes.dsp, classes/table.C,
                   18253:          lib/pcre/pcre_parser_ctype.dsp, main/pa_array.C, types/types.dsp:
                   18254:          all Debug dirs in .dsp now named 'Debug'
                   18255: 
1.116     moko     18256:        * etc/parser3.charsets/Makefile.am: all included into dist
1.95      moko     18257: 
                   18258:        * operators.txt, src/classes/mail.C: exception_type  email.send
                   18259: 
                   18260:        * operators.txt, src/types/pa_vmail.C: exception_type  email.format
                   18261: 
                   18262:        * src/types/pa_vmail.C: mail:send empty  email checked
                   18263: 
                   18264: 2002-08-06  paf
                   18265: 
                   18266:        * operators.txt, src/classes/table.C, src/include/pa_array.h,
                   18267:          src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
                   18268:          ^table::create[$source;$.options] ^table::join[$source;$.options]
                   18269: 
                   18270:        * operators.txt, src/classes/hash.C, src/classes/string.C,
                   18271:          src/classes/table.C: sql options can be string now ^xxx:sql{...}[
                   18272:          #  $.default() }
                   18273: 
                   18274:        * src/classes/file.C: $f[file::cgi] $f.UPPER case fields
                   18275: 
                   18276:        * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
                   18277:          main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h:
                   18278:          $file.content-type [instead of .mime-type] now works for
                   18279:          file::stat also
                   18280: 
                   18281:        * src/main/pa_request.C: case insensitive mime_type_of
                   18282: 
                   18283: 2002-08-05  paf
                   18284: 
                   18285:        * src/types/pa_vxnode.C: xnode.childNodes  now 0... [were 1...]
                   18286: 
                   18287:        * src/types/pa_vmail.C: file buffer relocated to parser heap
                   18288: 
                   18289:        * operators.txt: comment on date:calendar week column
                   18290: 
                   18291:        * src/main/pa_common.C: write checked
                   18292: 
                   18293:        * src/main/: pa_common.C: write checked
                   18294: 
                   18295:        * src/classes/date.C: +1 buf size for stupid snprintfs
                   18296: 
                   18297:        * src/: classes/date.C, include/pa_globals.h, main/pa_globals.C:
                   18298:          month calendar week column [ISO 8601 Week Numbers]
                   18299: 
                   18300: 2002-08-02  paf
                   18301: 
                   18302:        * src/: include/pa_config_fixed.h, main/pa_string.C,
                   18303:          targets/cgi/getopt.c, targets/cgi/parser3.C: removed #define
                   18304:          DEBUG*
                   18305: 
                   18306:        * configure, configure.in, src/include/pa_version.h: release
                   18307:          3_0_0005
                   18308: 
                   18309:        * src/types/: pa_vclass.h, pa_vform.C, pa_vobject.h: opera
                   18310:          multipart post fixed
                   18311: 
                   18312:        * operators.txt, src/main/pa_request.C, src/types/pa_vform.C:
                   18313:          response transcoded source->client only when text/* or simple
                   18314:          onoverridden $response:body
                   18315: 
                   18316: 2002-08-01  paf
                   18317: 
                   18318:        * src/: classes/classes.C, classes/classes.h, classes/date.C,
                   18319:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   18320:          classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
                   18321:          classes/op.C, classes/response.C, classes/string.C,
                   18322:          classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
                   18323:          classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
                   18324:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   18325:          include/pa_config_fixed.h, include/pa_dictionary.h,
                   18326:          include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
                   18327:          include/pa_globals.h, include/pa_hash.h, include/pa_opcode.h,
                   18328:          include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
                   18329:          include/pa_socks.h, include/pa_sql_connection.h,
                   18330:          include/pa_sql_driver_manager.h, include/pa_stack.h,
                   18331:          include/pa_string.h, include/pa_stylesheet_connection.h,
                   18332:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   18333:          include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
                   18334:          lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
                   18335:          lib/pcre/pcre_parser_ctype.c, main/compile.C, main/compile.tab.C,
                   18336:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   18337:          main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
                   18338:          main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
                   18339:          main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
                   18340:          main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
                   18341:          main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
                   18342:          main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
                   18343:          main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
                   18344:          targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
                   18345:          targets/cgi/parser3.C, targets/cgi/pool_storage.h,
                   18346:          targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
                   18347:          targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
                   18348:          types/pa_valiased.C, types/pa_valiased.h, types/pa_value.C,
                   18349:          types/pa_value.h, types/pa_vbool.h, types/pa_vclass.h,
                   18350:          types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
                   18351:          types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
                   18352:          types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
                   18353:          types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
                   18354:          types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
                   18355:          types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
                   18356:          types/pa_vmethod_frame.h, types/pa_vobject.h,
                   18357:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
                   18358:          types/pa_vresponse.h, types/pa_vstateless_class.C,
                   18359:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   18360:          types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
                   18361:          types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
                   18362:          types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   18363:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
1.119     moko     18364:          types/pa_wcontext.h, types/pa_wwrapper.h: Date: now
1.95      moko     18365: 
                   18366:        * src/: classes/classes.C, classes/classes.dsp, classes/classes.h,
                   18367:          classes/date.C, classes/double.C, classes/file.C, classes/form.C,
                   18368:          classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
                   18369:          classes/math.C, classes/op.C, classes/response.C,
                   18370:          classes/string.C, classes/table.C, classes/void.C,
                   18371:          classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   18372:          include/pa_array.h, include/pa_cache_managers.h,
                   18373:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   18374:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   18375:          include/pa_dictionary.h, include/pa_dir.h,
                   18376:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   18377:          include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
                   18378:          include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
                   18379:          include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
                   18380:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   18381:          include/pa_stack.h, include/pa_string.h,
                   18382:          include/pa_stylesheet_connection.h,
                   18383:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   18384:          include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
                   18385:          lib/md5/pa_md5.h, lib/md5/pa_md5c.c, main/compile.C,
                   18386:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   18387:          main/main.dsp, main/pa_array.C, main/pa_cache_managers.C,
                   18388:          main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
                   18389:          main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
                   18390:          main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
                   18391:          main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
                   18392:          main/pa_sql_driver_manager.C, main/pa_string.C,
                   18393:          main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
                   18394:          main/untaint.C, sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
                   18395:          targets/cgi/pa_threads.C, targets/cgi/parser3.C,
                   18396:          targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
                   18397:          targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
                   18398:          targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
                   18399:          targets/isapi/pool_storage.h, types/pa_valiased.C,
                   18400:          types/pa_valiased.h, types/pa_value.C, types/pa_value.h,
                   18401:          types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
                   18402:          types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
                   18403:          types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
                   18404:          types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
                   18405:          types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
                   18406:          types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
                   18407:          types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
                   18408:          types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
                   18409:          types/pa_vresponse.C, types/pa_vresponse.h,
                   18410:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   18411:          types/pa_vstateless_object.h, types/pa_vstatus.C,
                   18412:          types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
                   18413:          types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
                   18414:          types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
                   18415:          types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
                   18416:          types/pa_wwrapper.h, types/types.dsp, Makefile.am,
                   18417:          classes/Makefile.am, main/Makefile.am, targets/cgi/Makefile.am,
                   18418:          types/Makefile.am: ident.C* removed
                   18419: 
                   18420:        * operators.txt, src/classes/file.C, src/main/pa_request.C:
                   18421:          file:find[/can/do/this/now.txt]
                   18422: 
                   18423:        * src/targets/cgi/parser3.C: usage to stdout now
                   18424: 
                   18425: 2002-07-31  paf
                   18426: 
                   18427:        * src/types/pa_vmail.C: mail: errors-to: now default "postmaster"
                   18428: 
                   18429:        * src/: classes/mail.C, types/pa_vmail.C: mail: errors-to: now
                   18430:          default "postmaster"
                   18431: 
                   18432:        * src/: classes/mail.C, types/pa_vmail.C: mail from/to now must be.
                   18433:          -f postmaster now default sendmail key word "postmaster"
                   18434:          replaced to $.from
                   18435: 
                   18436: 2002-07-30  paf
                   18437: 
1.116     moko     18438:        * configure, configure.in, src/targets/cgi/pa_config_paths.h.in,
                   18439:          src/targets/cgi/parser3.C: removed pa_config_paths.h
1.95      moko     18440: 
                   18441:        * src/main/pa_charset.C: comment
                   18442: 
                   18443:        * src/main/pa_charset.C: UTF-8 to 1byte charset convert, no char in
                   18444:          table, &#decimal;
                   18445: 
                   18446:        * src/main/pa_request.C: comment
                   18447: 
                   18448:        * etc/parser3.charsets/windows-1251.cfg: section sign [russian
                   18449:          paragraf]
                   18450: 
                   18451: 2002-07-11  paf
                   18452: 
                   18453:        * src/main/pa_exec.C: build command line badly added params twice
                   18454:          [and first time without ' ']. double wrong. fixed.
                   18455: 
                   18456:        * src/main/pa_exec.C: invalid .exe caused error message with params
                   18457:          wich parser did not provide = reported badly.  fixed that.
                   18458: 
                   18459:        * src/classes/mail.C: $MAIL[ # xxx ]
                   18460: 
                   18461:          now ok
                   18462: 
                   18463:        * operators.txt: plan: sql detailed exception
                   18464: 
                   18465: 2002-07-01  paf
                   18466: 
                   18467:        * src/: classes/form.C, main/pa_request.C: @conf bug fixed
                   18468:          [MForm.configure_admin were called when request.main_class ==0
                   18469: 
                   18470:        * src/classes/form.C: 10*0x400*400 bug fix [4M not 10M]
                   18471: 
                   18472:        * src/classes/form.C: content_length type fix
                   18473: 
                   18474: 2002-06-30  paf
                   18475: 
                   18476:        * src/classes/mail.C: merged from 4
                   18477: 
                   18478:        * src/classes/mail.C: restored $MAIL
                   18479: 
                   18480: 2002-06-28  paf
                   18481: 
                   18482:        * configure, configure.in: removed paths.h
                   18483: 
1.116     moko     18484:        * configure, src/include/pa_version.h,
1.95      moko     18485:          src/targets/cgi/pa_config_paths.h.in: lates changes from 4 build
                   18486:          merged, makes updated
                   18487: 
                   18488:        * ChangeLog, configure, operators.txt, src/classes/xdoc.C,
                   18489:          src/include/pa_charset.h, src/include/pa_config_fixed.h,
                   18490:          src/include/pa_pool.h, src/include/pa_version.h,
                   18491:          src/main/pa_charset.C, src/main/pa_pool.C,
                   18492:          src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
                   18493:          src/types/pa_vmail.C: merged latest updates to head
                   18494: 
                   18495: 2002-06-27  paf
                   18496: 
                   18497:        * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: post-build
                   18498:          not error now
                   18499: 
                   18500:        * operators.txt, src/classes/xdoc.C, src/include/pa_charset.h,
                   18501:          src/include/pa_config_fixed.h, src/include/pa_pool.h,
                   18502:          src/main/pa_charset.C, src/main/pa_pool.C:
                   18503:          ^xdoc::create[[uri]]... base uri for document being created,
                   18504:          imports and other relative file names would be relative to this
                   18505:          uri default uri=path_translated
                   18506: 
                   18507:        * src/classes/xdoc.C: xsltParseStylesheetDoc bug workaround
                   18508: 
                   18509: 2002-06-26  paf
                   18510: 
                   18511:        * configure, configure.in, src/include/pa_version.h:
                   18512:          release_3_0_0004
                   18513: 
                   18514:        * src/main/pa_string.C: blank string '', ' <whitespace>' considered
                   18515:          0 now
                   18516: 
                   18517:        * src/targets/cgi/parser3.C: /cgi-bin/parser empty filename checked
                   18518: 
                   18519: 2002-06-25  paf
                   18520: 
                   18521:        * src/main/pa_string.C: emtpy string, or string of whitespaces
                   18522:          considered bad number now
                   18523: 
                   18524:        * operators.txt, src/classes/xdoc.C: ^xdoc.transform[xdoc <<can be
                   18525:          now
                   18526: 
                   18527:        * operators.txt, src/classes/string.C: ^string.normalize  [old
                   18528:          name: optimize
                   18529: 
                   18530:        * configure, configure.in, src/include/pa_config_auto.h.in: crypt
                   18531:          library configured
                   18532: 
                   18533:        * src/main/pa_request.C: configure_admin forced if no @conf
                   18534: 
1.150     moko     18535:        * operators.txt, src/classes/math.C, src/types/pa_vmail.C:
                   18536:          ^math:crypt updated to generate random salt when needed and to
                   18537:          call system crypt() if not $apr1$ prefix
1.95      moko     18538: 
                   18539: 2002-06-24  paf
                   18540: 
                   18541:        * INSTALL: --with-static/shared-mailreceive described
                   18542: 
                   18543:        * src/include/pa_config_fixed.h: ssize_t fixed
                   18544: 
1.116     moko     18545:        * configure, configure.in, src/include/pa_config_auto.h.in,
                   18546:          src/targets/cgi/Makefile.am, src/types/Makefile.am,
1.95      moko     18547:          src/types/pa_vmail.C: $mail:received makes update
                   18548: 
                   18549:        * src/: include/pa_config_fixed.h, types/pa_vmail.C: #ifdef
                   18550:          WITH_MAILRECEIVE
                   18551: 
                   18552:        * src/targets/cgi/parser3.C: #ifdef WITH_MAILRECEIVE
                   18553: 
                   18554:        * src/targets/cgi/: getopt.c, getopt.h: introducing parser -m
                   18555:          option, for $mail:receive
                   18556: 
                   18557:        * src/types/: pa_vmail.C, pa_vmail.h: uue to separate file
                   18558:          introducting $message:received ^mail:send rewritten with backward
                   18559:          comp
                   18560: 
                   18561:        * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
                   18562:          targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
                   18563:          types/types.dsp: win32xml win32mailreceive pseudomodules paths
                   18564:          now
                   18565: 
                   18566:        * operators.txt, src/classes/mail.C, src/include/Makefile.am,
                   18567:          src/include/pa_charset.h, src/include/pa_config_fixed.h,
                   18568:          src/include/pa_request.h, src/include/pa_string.h,
                   18569:          src/include/pa_uue.h, src/main/Makefile.am, src/main/main.dsp,
                   18570:          src/main/pa_globals.C, src/main/pa_request.C,
                   18571:          src/main/pa_string.C, src/main/pa_uue.C,
                   18572:          src/targets/cgi/Makefile.am, src/targets/cgi/parser3.C,
                   18573:          src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
                   18574:          src/types/pa_vform.C, src/types/pa_vform.h, src/types/types.dsp:
                   18575:          uue to separate file introducting $message:received ^mail:send
                   18576:          rewritten with backward comp
                   18577: 
                   18578: 2002-06-21  paf
                   18579: 
1.116     moko     18580:        * src/lib/: Makefile.am, md5/pa_md5.h: lib restructure apache .am &
                   18581:          co changes
1.95      moko     18582: 
1.116     moko     18583:        * configure, configure.in, src/lib/md5/Makefile.am,
                   18584:          src/lib/md5/pa_md5c.c, src/targets/cgi/Makefile.am: lib
                   18585:          restructure .in and .am files appropriate changes
1.95      moko     18586: 
                   18587:        * src/lib/md5/: md5.dsp, pa_md5.h, pa_md5c.c: moved libltdl and
                   18588:          pcre to libs/ added libs/md5 which is linked to non-apache
                   18589:          targets ^math:crypt[password;$apr1$salt]
                   18590: 
                   18591:        * INSTALL, configure.in, operators.txt, parser3.dsw,
                   18592:          src/Makefile.am, src/classes/Makefile.am,
                   18593:          src/classes/classes.dsp, src/classes/math.C,
                   18594:          src/lib/md5/Makefile.am, src/lib/pcre/LICENCE,
1.116     moko     18595:          src/lib/pcre/Makefile.am, src/lib/pcre/README,
                   18596:          src/lib/pcre/Tech.Notes, src/lib/pcre/dftables.c,
                   18597:          src/lib/pcre/get.c, src/lib/pcre/ibm-1250.ucm,
                   18598:          src/lib/pcre/ibm-1251.ucm, src/lib/pcre/ibm-1257.ucm,
                   18599:          src/lib/pcre/internal.h, src/lib/pcre/maketables.c,
                   18600:          src/lib/pcre/pcre-2_08.tar.gz, src/lib/pcre/pcre.3,
                   18601:          src/lib/pcre/pcre.3.html, src/lib/pcre/pcre.3.txt,
                   18602:          src/lib/pcre/pcre.c, src/lib/pcre/pcre.dsp, src/lib/pcre/pcre.h,
1.95      moko     18603:          src/lib/pcre/pcre_dftables.dsp, src/lib/pcre/pcre_parser_ctype.c,
                   18604:          src/lib/pcre/pcre_parser_ctype.dsp,
                   18605:          src/lib/pcre/ruspart_win2koi.pl, src/lib/pcre/study.c,
                   18606:          src/lib/pcre/win-koi.tab, src/main/Makefile.am,
                   18607:          src/main/compile.tab.C, src/main/main.dsp,
                   18608:          src/targets/cgi/Makefile.am, src/targets/cgi/parser3.dsp,
                   18609:          src/targets/isapi/parser3isapi.dsp, src/types/Makefile.am,
                   18610:          src/types/types.dsp, src/lib/Makefile.am: moved libltdl and pcre
                   18611:          to libs/ added libs/md5 which is linked to non-apache targets
                   18612:          ^math:crypt[password;$apr1$salt]
                   18613: 
                   18614: 2002-06-20  paf
                   18615: 
1.150     moko     18616:        * INSTALL, configure, configure.in, operators.txt,
                   18617:          src/classes/file.C, src/classes/op.C, src/doc/doxygen.cfg,
                   18618:          src/include/pa_globals.h, src/include/pa_request.h,
                   18619:          src/main/execute.C, src/main/pa_request.C,
                   18620:          src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
                   18621:          src/types/pa_vmethod_frame.h: marged latest HEAD updates, mainly
                   18622:          file:justname&co & @auto/conf[filespec
1.95      moko     18623: 
                   18624:        * operators.txt, src/classes/file.C:
                   18625:          !^file:dirname[/a/some.tar.gz]=/a
                   18626:              !^file:dirname[/a/b/]=/a
                   18627:              !^file:basename[/a/some.tar.gz]=some.tar.gz
                   18628:              !^file:justname[/a/some.tar.gz]=some.tar
                   18629:              !^file:justext[/a/some.tar.gz]=gz
                   18630: 
                   18631:        * src/: classes/op.C, include/pa_request.h, main/execute.C,
                   18632:          main/pa_request.C, types/pa_vmethod_frame.h: introducing
                   18633:          @conf/auto[filespec]
                   18634: 
1.116     moko     18635:        * configure: parser3.conf renamed to auto.p autoconf changes
1.95      moko     18636: 
1.150     moko     18637:        * INSTALL, configure.in, operators.txt, src/doc/doxygen.cfg,
1.95      moko     18638:          src/include/pa_globals.h, src/targets/cgi/parser3.C,
                   18639:          src/targets/isapi/parser3isapi.C: parser3.conf renamed to auto.p
                   18640: 
                   18641: 2002-06-18  paf
                   18642: 
                   18643:        * configure, configure.in, src/include/pa_version.h: version to
                   18644:          configure.in
                   18645: 
                   18646:        * INSTALL: reflected .conf.dist dir change
                   18647: 
1.150     moko     18648:        * Makefile.am, configure, configure.in,
1.116     moko     18649:          etc/parser3.charsets/Makefile.am: parser3.conf.dist moved to bin,
1.95      moko     18650:          .in & *.am updated
                   18651: 
                   18652:        * src/classes/file.C: strncasecmp
                   18653: 
                   18654:        * src/classes/file.C: strcasecmp
                   18655: 
1.150     moko     18656:        * etc/Makefile.am: bin/parser3.conf.dist [moved from etc
1.95      moko     18657: 
                   18658:        * src/classes/file.C: ^file::exec[script;$.bad error case
                   18659:          insensitive check now
                   18660: 
                   18661:        * src/classes/file.C: ^file::exec[script;$.bad now error, not skip
                   18662: 
                   18663:        * configure, configure.in, src/include/pa_pool.h,
                   18664:          src/include/pa_types.h: pack configure.in detection simplified.
                   18665:          figured out that gcc on sparc not that stupid as thought
                   18666:          previously: on sparc: when it sees packed class it modifies it's
                   18667:          field-access-code to byte operations [stb, ldub] instead of 4byte
                   18668:          operations [st, lduh] so packed must be all parts of packed
                   18669:          class, i.e. it's parents&fields(classes).  for now it's only
                   18670:          String that packed and what was wrong is that it's parent -
                   18671:          Pooled, were not packed. fixed that.
                   18672: 
                   18673: 2002-06-14  paf
                   18674: 
                   18675:        * operators.txt: more precise xml-to-text options
                   18676: 
                   18677:        * operators.txt, src/types/pa_vxnode.C: xnode
                   18678:          attribute_node.name/value xnode pi.node.data
                   18679: 
                   18680: 2002-06-12  paf
                   18681: 
1.116     moko     18682:        * configure, configure.in, src/targets/cgi/Makefile.am,
                   18683:          src/targets/cgi/parser3.C: removed root conf define creation
1.95      moko     18684: 
                   18685:        * INSTALL, configure.in, operators.txt, etc/Makefile.am,
                   18686:          src/include/pa_globals.h, src/include/pa_request.h,
                   18687:          src/main/compile.tab.C, src/main/pa_globals.C,
                   18688:          src/main/pa_request.C, src/targets/cgi/parser3.C,
                   18689:          src/targets/isapi/parser3isapi.C: parser3.conf now one and only
                   18690: 
                   18691:        * src/classes/mail.C: sendmail -ti [default now]
                   18692: 
                   18693:        * src/: classes/mail.C, main/pa_request.C: $MAIL $CHARSETS allowed
                   18694:          to be strings. for convinient #ing
                   18695: 
                   18696:        * src/: include/pa_globals.h, include/pa_request.h, main/execute.C,
                   18697:          main/pa_globals.C, main/pa_request.C: @rootconf [were @conf]
                   18698: 
                   18699:        * src/: include/pa_globals.h, include/pa_request.h, main/main.dsp,
                   18700:          main/pa_globals.C, main/pa_request.C: @conf
                   18701: 
                   18702: 2002-06-11  paf
                   18703: 
                   18704:        * src/classes/file.C: check simplified
                   18705: 
                   18706:        * src/: classes/file.C, targets/cgi/parser3.dsp,
                   18707:          targets/isapi/parser3isapi.C: suexec env keys filter plus CGI_ as
                   18708:          valid prefix
                   18709: 
                   18710:        * src/: classes/file.C, include/pa_request.h, include/pa_sapi.h,
                   18711:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
                   18712:          file::exec/cgi to pass HTTP_ vars introducing SAPI::environment
                   18713: 
                   18714: 2002-06-10  paf
                   18715: 
                   18716:        * operators.txt, src/classes/op.C, src/include/pa_common.h,
                   18717:          src/main/pa_common.C: lock failures reported now
                   18718: 
                   18719:        * src/main/compile_tools.C: ^if(" 1 "){y} bug fixed optimization
                   18720:          string->double @ compile time were not-enough-checking...
                   18721: 
                   18722:        * src/main/: compile.tab.C, pa_string.C: whitespace after number in
                   18723:          autoconvert now ignored
                   18724: 
                   18725:        * src/types/: pa_vform.C, pa_vform.h: $form: not determined yet
                   18726:          check
                   18727: 
                   18728:        * src/classes/mail.C: mail netscape attachment name fixed. todo:
                   18729:          $response:body content-type:name
                   18730: 
                   18731:        * configure, configure.in: hpux check, nsl link, no socket
                   18732: 
                   18733:        * operators.txt: old merge conflict removed
                   18734: 
                   18735:        * configure, configure.in: pack even address access on sparc&co
                   18736:          arch checked in configure
                   18737: 
                   18738:        * configure, src/include/pa_version.h: makes
                   18739: 
                   18740:        * configure, configure.in, src/include/pa_version.h: makes
                   18741: 
                   18742:        * src/main/untaint.C: (bug#2) mail subject got always prepended
                   18743:          with charset even when all letters were 7bit one
                   18744: 
                   18745:        * src/main/pa_common.C: merged fixed -d (bug)
                   18746: 
                   18747:        * src/main/pa_common.C: fixed -d (bug)
                   18748: 
                   18749: 2002-06-03  paf
                   18750: 
                   18751:        * ChangeLog, operators.txt, etc/parser3.charsets/windows-1251.cfg,
                   18752:          src/classes/classes.dsp, src/main/compile.tab.C,
                   18753:          src/main/main.dsp, src/main/pa_globals.C,
                   18754:          src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
                   18755:          src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: fixed
                   18756:          .dsp-s along with reorganized cvs modules dirs structure
                   18757: 
                   18758:        * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
                   18759:          main/pa_globals.C, targets/cgi/parser3.dsp,
                   18760:          targets/isapi/parser3isapi.dsp, types/types.dsp: reorganized cvs
                   18761:          modules
                   18762: 
                   18763: 2002-05-28  paf
                   18764: 
                   18765:        * src/targets/cgi/parser3.C: info.uri now ""
                   18766: 
                   18767: 2002-05-17  paf
                   18768: 
                   18769:        * src/classes/: table.C: ^table.save << checked empty
                   18770:          pre/match/post columns
                   18771: 
                   18772: 2002-05-16  paf
                   18773: 
                   18774:        * src/classes/image.C: image::measure can png now
                   18775: 
                   18776: 2002-05-15  paf
                   18777: 
                   18778:        * operators.txt, src/classes/date.C: ^date::create[%H:%M[:%S]]
                   18779:          added
                   18780: 
                   18781:        * etc/parser3.charsets/windows-1251.cfg: 0x forgot, fixed
                   18782: 
                   18783:        * operators.txt, src/classes/date.C: ^date::create[%Y[-%m[-%d[
                   18784:          %H[:%M[:%S]]]]]] [-%m now
                   18785: 
                   18786: 2002-05-14  paf
                   18787: 
                   18788:        * etc/parser3.charsets/: windows-1251.cfg: added 3 quotes
                   18789: 
                   18790: 2002-05-07  paf
                   18791: 
                   18792:        * ChangeLog, src/classes/classes.dsp, src/classes/op.C,
                   18793:          src/include/pa_globals.h, src/include/pa_request.h,
                   18794:          src/include/pa_table.h, src/main/compile.tab.C,
                   18795:          src/main/compile.y, src/main/main.dsp, src/main/pa_globals.C,
                   18796:          src/main/pa_request.C, src/main/pa_table.C,
                   18797:          src/targets/isapi/pa_pool.C, src/targets/isapi/parser3isapi.C,
                   18798:          src/targets/isapi/parser3isapi.dsp,
                   18799:          src/targets/isapi/pool_storage.h, src/types/types.dsp: Table
                   18800:          name2number field now &.  main_method_name now on Request pool
                   18801:          rather on global_pool [Junction+VJunction created on same pool as
                   18802:          name = were created on global pool, causing mem leaks]
                   18803: 
                   18804:        * src/: classes/classes.dsp, classes/op.C, include/pa_globals.h,
                   18805:          include/pa_request.h, include/pa_table.h, main/compile.tab.C,
                   18806:          main/compile.y, main/main.dsp, main/pa_globals.C,
                   18807:          main/pa_request.C, main/pa_table.C, targets/isapi/pa_pool.C,
                   18808:          targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
                   18809:          targets/isapi/pool_storage.h, types/types.dsp: Table name2number
                   18810:          field now &.  main_method_name now on Request pool rather on
                   18811:          global_pool [Junction+VJunction created on same pool as name =
                   18812:          were created on global pool, causing mem leaks]
                   18813: 
                   18814: 2002-05-06  paf
                   18815: 
                   18816:        * src/: main/pa_globals.C, targets/cgi/parser3.C,
                   18817:          targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
                   18818:          100*40 bytes per request memory leak [nonpool malloc in globals]
                   18819: 
                   18820:        * src/: main/pa_globals.C, targets/cgi/parser3.C,
                   18821:          targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
                   18822:          100*40 bytes per request memory leak [nonpool malloc in globals]
                   18823: 
                   18824: 2002-04-30  paf
                   18825: 
                   18826:        * configure, src/include/pa_version.h: version now not b
                   18827: 
                   18828:        * src/targets/cgi/parser3.C: request.uri now never 0
                   18829: 
                   18830: 2002-04-29  paf
                   18831: 
                   18832:        * configure.in: removed b
                   18833: 
                   18834:        * src/: classes/op.C, include/pa_exception.h, main/pa_request.C:
                   18835:          Exception::comment/type checked in (), no there's no empty
                   18836:          type/comment by default
                   18837: 
                   18838:        * ChangeLog, src/doc/ClassExample1.dox, src/doc/ClassExample3.dox,
                   18839:          src/doc/aliased.dox, src/doc/methoded.dox, src/doc/string.dox,
                   18840:          src/doc/value.dox, src/include/pa_exception.h,
                   18841:          src/main/pa_request.C, src/targets/cgi/parser3.C: merged from
                   18842:          0001
                   18843: 
                   18844: 2002-04-26  paf
                   18845: 
                   18846:        * src/: doc/doxygen.cfg, targets/cgi/parser3.dsp: doxygen dot image
                   18847:          size reduced
                   18848: 
                   18849: 2002-04-25  paf
                   18850: 
                   18851:        * src/targets/cgi/: parser3.C: setenv in .htaccess when cgi is not
                   18852:          under that dir got REDIRECT_ prefix before HTTP_PARSER_x_CONFIG,
                   18853:          now that took into account
                   18854: 
                   18855:        * operators.txt, src/classes/date.C: ^date::create[2002-12-33
                   18856:          01:03:04]
                   18857: 
                   18858:        * ChangeLog, operators.txt, src/classes/date.C:
                   18859:          ^date::create[2002-12-33 01:03:04]
                   18860: 
                   18861:        * ChangeLog: updated changelog
                   18862: 
                   18863:        * src/classes/table.C: removed restriction on column count to
                   18864:          ^table.hash to work, now must be >0 [were >1]
                   18865: 
                   18866: 2002-04-24  paf
                   18867: 
                   18868:        * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
                   18869:          targets/cgi/parser3.C, targets/cgi/parser3.dsp,
                   18870:          targets/isapi/parser3isapi.dsp, types/types.dsp: MSVC profile
                   18871:          targets
                   18872: 
                   18873: 2002-04-23  paf
                   18874: 
                   18875:        * operators.txt, src/classes/string.C:
                   18876:          int/double/string:sql{}[$.default{code}] fixed [were barking:
                   18877:          "junction used outside of context"]
                   18878: 
                   18879: 2002-04-22  paf
                   18880: 
                   18881:        * types.txt, src/classes/string.C, src/include/pa_string.h,
                   18882:          src/main/pa_string.C, src/types/pa_vstring.C,
                   18883:          src/types/pa_vstring.h: ^string.optimize[]
                   18884: 
                   18885:        * src/: include/pa_globals.h, include/pa_table.h,
                   18886:          main/pa_globals.C, main/pa_string.C, main/pa_table.C: fixed match
                   18887:          table template
                   18888: 
                   18889:        * src/classes/: string.C: optimize removed from string
                   18890:          .left/right/pos
                   18891: 
                   18892:        * src/main/execute.C: rolled back to
                   18893:          before_killing_userjunction_contexts
                   18894: 
                   18895:        * src/main/execute.C: user junctions context killed
                   18896: 
                   18897:        * src/main/execute.C: junctions to local contexts got
                   18898:          cleanized&checked later
                   18899: 
                   18900: 2002-04-19  paf
                   18901: 
                   18902:        * src/: classes/string.C, include/pa_request.h,
                   18903:          include/pa_string.h, main/pa_request.C, main/pa_string.C,
                   18904:          types/pa_vstring.C, types/pa_vstring.h: string now optimized
                   18905:          prior to .left .right .mid .pos .match when that is profitable,
                   18906:          and always before .replace when $ORIGINS(1) optimization disabled
                   18907:          economy from not wasting mem on lots of strings which occur by
                   18908:          lots of String:mid calls to get parts of source string between
                   18909:          found_occurances
                   18910: 
                   18911:        * src/classes/file.C: ovector now local economy: 16 bytes per
                   18912:          ^file:list
                   18913: 
                   18914:        * src/: include/pa_globals.h, include/pa_table.h,
                   18915:          main/pa_globals.C, main/pa_string.C: String::match table columns
                   18916:          globalized, not created @ each ^match anymore economy:
                   18917:          sizeof(Array)+space on 3+x cells=24+ bytes per ^match
                   18918: 
                   18919:        * src/: classes/op.C, classes/string.C, types/pa_value.h: VTable
                   18920:          removed from each String::match replace iteration, and made
                   18921:          stacked sizeof(VTable)=12bytes economy on each replace code
                   18922: 
                   18923:        * src/doc/footer.htm: 2001,
                   18924: 
                   18925:        * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
                   18926:          string.match[]['] option enables generation of $match.prematch
                   18927:          .match .postmatch columns
                   18928: 
                   18929:        * src/main/pa_string.C: String::match options analized without
                   18930:          cstr-ing them now
                   18931: 
                   18932:        * src/doc/: doxygen.cfg, footer.htm, html2chm.cmd, postbuild.txt,
                   18933:          sources2html.cmd, view_chm.cmd, view_html.cmd, chmhelper.pl:
                   18934:          config updated to doxygen 1.2.15, created helper which fixes
                   18935:          minor bugs in chm project files & htm tree.  changed extension to
                   18936:          .htm
                   18937: 
                   18938: 2002-04-18  paf
                   18939: 
                   18940:        * src/doc/doxygen.cfg: .chi generation disabled
                   18941: 
                   18942:        * src/: classes/classes.h, classes/xdoc.C, classes/xnode.C,
                   18943:          classes/xnode.h, types/pa_vxdoc.C: xdoc(xnode) now fully -
                   18944:          fields&methods
                   18945: 
                   18946:        * src/: classes/classes.h, classes/hash.C, types/pa_value.h,
                   18947:          types/pa_vbool.h, types/pa_vcookie.h, types/pa_vdate.h,
                   18948:          types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.h,
                   18949:          types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
                   18950:          types/pa_vjunction.h, types/pa_vobject.h, types/pa_vrequest.h,
                   18951:          types/pa_vresponse.h, types/pa_vstateless_class.h,
                   18952:          types/pa_vstateless_object.h, types/pa_vstatus.h,
                   18953:          types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h,
                   18954:          types/pa_vxdoc.h, types/pa_vxnode.h: fclass_real lowered from
                   18955:          VStateless_class to VObject
                   18956: 
                   18957:        * src/: main/pa_request.C, types/pa_valiased.h,
                   18958:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   18959:          types/pa_vstring.h: VStateless_string_object speicalized light
                   18960:          version of VStateless_object
                   18961: 
                   18962:        * src/classes/op.C: ^throw comment param made optional
                   18963: 
                   18964:        * src/types/: pa_valiased.C, pa_valiased.h, pa_vclass.h,
                   18965:          pa_vobject.h, pa_wcontext.C: VAliased get/set alias now virtual
                   18966:          and implemented down in VClass, fclass_alias removed,
                   18967: 
                   18968:        * src/types/pa_value.C: forced to cut that from .h because of
                   18969:          VStateless_class usage [undefined in .h]
                   18970: 
                   18971:        * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
                   18972:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   18973:          main/pa_request.C, types/pa_vmethod_frame.h: OP_GET_METHOD_FRAME
                   18974:          merged with OP_CALL, VCodeFrame move to stack [no more heap waste
                   18975:          on each CALL]
                   18976: 
                   18977:        * src/: classes/classes.h, classes/date.C, classes/double.C,
                   18978:          classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
                   18979:          classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
                   18980:          classes/response.C, classes/string.C, classes/table.C,
                   18981:          classes/void.C, classes/xnode.C, include/pa_globals.h,
                   18982:          include/pa_request.h, main/execute.C, main/pa_globals.C,
                   18983:          main/pa_request.C, types/Makefile.am, types/pa_value.h,
                   18984:          types/pa_vdouble.h, types/pa_vform.C, types/pa_vhash.h,
                   18985:          types/pa_vint.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
                   18986:          types/pa_vstateless_class.h, types/pa_wcontext.C,
                   18987:          types/pa_wcontext.h, types/pa_wwrapper.h, types/types.dsp:
                   18988:          removed Value::fname
                   18989: 
                   18990: 2002-04-17  paf
                   18991: 
                   18992:        * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
                   18993:          doc/ClassExample3.dox, doc/compiler.dox, doc/module.dox,
                   18994:          doc/pooled.dox, doc/string.dox, doc/targets.dox,
                   18995:          include/pa_pool.h, include/pa_types.h: dox updated to current
                   18996:          state, PTHROW freshen to throw & co
                   18997: 
                   18998:        * src/types/pa_vhash.h: vstring wrong parent fixed
                   18999: 
                   19000:        * src/classes/op.C: taint local result var bug fixed
                   19001: 
                   19002: 2002-04-16  paf
                   19003: 
                   19004:        * asm.txt, form.txt, lang.txt, sql.txt: removed outdated. see in
                   19005:          Attic asm.txt as most interesting
                   19006: 
                   19007:        * src/: main/pa_request.C, targets/isapi/parser3isapi.C: removed
                   19008:          check, preventing content-length: 0 from appearing
                   19009: 
                   19010:        * src/main/execute.C: $result in @main now taken into account as in
                   19011:          usual functions
                   19012: 
                   19013:        * src/: doc/postbuild.txt, main/execute.C: $result in @postprocess
                   19014:          & @unhandled_exception now taken into account as in usual
                   19015:          functions
                   19016: 
                   19017:        * src/doc/postbuild.txt: instructions on post .html build
                   19018: 
                   19019:        * src/doc/: doxygen.cfg, html2chm.cmd: .chm file only now, no .chi
                   19020: 
                   19021:        * src/: classes/file.C, main/pa_exec.C: stderr of execs mark as
                   19022:          tainted
                   19023: 
                   19024:        * src/main/pa_request.C: uri in error log
                   19025: 
                   19026:        * src/: classes/date.C, main/compile.tab.C, targets/cgi/parser3.C:
                   19027:          cheched date:create(days) param for validity [later were assumed
                   19028:          valid and crashed on invalid onces]
                   19029: 
                   19030:        * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
                   19031:          main/execute.C, targets/cgi/parser3.C: OP_CALL -> OP_CALL__WRITE
                   19032:          and used that for removing VString wrapper
                   19033: 
                   19034:        * src/classes/op.C: exception2vhash file now tainted
                   19035: 
                   19036:        * src/classes/op.C: _process pseudo origin copied from local var to
                   19037:          heap
                   19038: 
                   19039:        * src/classes/op.C: extra check on empty file in origin in _execute
                   19040: 
                   19041: 2002-04-15  paf
                   19042: 
                   19043:        * src/: main/execute.C, types/pa_value.h: fixed name update
                   19044: 
                   19045:        * src/classes/: file.C, op.C, table.C: finished dual write_xxx_lang
                   19046:          functions
                   19047: 
                   19048:        * src/: classes/file.C, classes/hash.C, classes/op.C,
                   19049:          include/pa_request.h, main/execute.C, types/pa_wcontext.h:
                   19050:          started dual write_xxx_lang functions, if checked & works
                   19051: 
                   19052:        * src/: classes/date.C, classes/file.C, classes/mail.C,
                   19053:          classes/string.C, classes/xnode.C, include/pa_request.h,
                   19054:          types/pa_value.h, types/pa_wcontext.h: removed absolutely
                   19055:          unnecessary VString shells
                   19056: 
                   19057:        * src/main/execute.C: CodeFrame soul fixed [mistakenly killed by
                   19058:          prev changes]
                   19059: 
                   19060:        * src/: classes/image.C, classes/op.C, classes/string.C,
                   19061:          classes/table.C, include/pa_request.h, main/execute.C,
                   19062:          types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
                   19063:          StringOrValue wcontext result, now ready for dual writes
                   19064: 
                   19065:        * src/targets/cgi/parser3.C: ctime sometimes can be just "",
                   19066:          checked that
                   19067: 
                   19068:        * src/main/: compile.tab.C, compile.y, compile_tools.C,
                   19069:          compile_tools.h, execute.C: OP_GET_ELEMENT+OP_GET_ELEMENT__WRITE
                   19070:          changed to OP_WRITE_VALUE in var get cases
                   19071: 
                   19072:        * src/: classes/op.C, include/pa_globals.h, include/pa_opcode.h,
                   19073:          include/pa_request.h, main/compile.tab.C, main/compile.y,
                   19074:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   19075:          main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C:
                   19076:          switch in hash constructor fixed [were problems with using of
                   19077:          stacked wwrapper after it's death]
                   19078: 
                   19079: 2002-04-12  paf
                   19080: 
                   19081:        * operators.txt, src/classes/table.C: table.select(expression) 0
                   19082: 
                   19083: 2002-04-11  paf
                   19084: 
                   19085:        * src/: classes/string.C, include/pa_request.h, main/execute.C:
                   19086:          Request::process_internal codeFrame & wwrapper stacked [not
                   19087:          wasting  heap anymore]
                   19088: 
                   19089: 2002-04-10  paf
                   19090: 
                   19091:        * src/: classes/double.C, classes/file.C, classes/hash.C,
                   19092:          classes/image.C, classes/int.C, classes/math.C, classes/op.C,
                   19093:          classes/string.C, classes/table.C, classes/void.C,
                   19094:          classes/xdoc.C, include/pa_request.h, main/execute.C,
                   19095:          main/pa_string.C: killed Request::process() wrapping
                   19096:          VString(String) in case we need only String
                   19097: 
                   19098:        * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
                   19099:          killed 8 bytes from String.head
                   19100: 
                   19101: 2002-04-09  paf
                   19102: 
                   19103:        * src/: main/compile.tab.C, targets/cgi/parser3.C,
                   19104:          targets/isapi/parser3isapi.C: removed {   char *a;   {      /*sub
                   19105:          local*/char b[...];      a=b; situations
                   19106: 
                   19107:        * operators.txt, src/classes/xdoc.C: xslt params made literal
                   19108: 
                   19109:        * src/classes/xdoc.C: xslt params fixed
                   19110: 
                   19111:        * src/: main/pa_common.C, targets/cgi/parser3.C,
                   19112:          types/pa_vdouble.h, types/pa_vint.h: int/double get_string now
                   19113:          not pool.malloc(MAX_NUMBER) but really neaded
                   19114: 
                   19115:        * operators.txt, src/classes/double.C, src/classes/int.C:
                   19116:          int/double.int/double(default)
                   19117: 
                   19118: 2002-04-04  paf
                   19119: 
                   19120:        * src/: include/pa_string.h, main/pa_string.C: fixed string.replace
                   19121:          [when reconstructing pieces were split by
                   19122:          max_integral(piece.size), thus some strings to replace happen to
                   19123:          be split into two = not replaced)
                   19124: 
                   19125:        * src/targets/cgi/: parser3.C, parser3.dsp: document root in
                   19126:          standalone version = current dir
                   19127: 
                   19128:        * src/targets/cgi/parser3.C: document root in standalone version =
                   19129:          current dir
                   19130: 
                   19131: 2002-04-03  paf
                   19132: 
                   19133:        * configure, configure.in: more checks on nonexistent charset
                   19134: 
1.116     moko     19135:        * INSTALL, configure, configure.in: root config configure options
1.95      moko     19136: 
                   19137: 2002-04-02  paf
                   19138: 
                   19139:        * src/main/compile.C: parser.compile [exception name more like in
                   19140:          doc]
                   19141: 
                   19142: 2002-04-01  paf
                   19143: 
                   19144:        * src/: classes/mail.C, include/pa_string.h, main/untaint.C,
                   19145:          targets/isapi/parser3isapi.dsp: mail subject encoding taken from
                   19146:          .content-type.charset, not .charset
                   19147: 
                   19148: 2002-03-29  paf
                   19149: 
                   19150:        * etc/parser3.charsets/koi8-r.cfg: koi8-r += ukranian letters
                   19151: 
                   19152:        * operators.txt, src/classes/date.C: ^date::create now may not
                   19153:          supply day, default 1.  checked 29.03 -> 29.02 roll on non 366
                   19154:          days' year.  | 31.05->31.04   roll
                   19155: 
                   19156: 2002-03-28  paf
                   19157: 
                   19158:        * operators.txt, src/classes/date.C, src/classes/op.C,
                   19159:          src/include/pa_globals.h, src/include/pa_hash.h,
                   19160:          src/main/pa_globals.C, src/types/pa_vdate.h: ^cache[file][date]{
                   19161:          ^cache(seconds)    ^cache[date] }
                   19162: 
                   19163:        * src/classes/: xdoc.C, xnode.C, xnode.h: removed redundant pool
                   19164:          param
                   19165: 
                   19166: 2002-03-27  paf
                   19167: 
                   19168:        * operators.txt, src/classes/date.C, src/classes/double.C,
                   19169:          src/classes/file.C, src/classes/form.C, src/classes/hash.C,
                   19170:          src/classes/image.C, src/classes/int.C, src/classes/mail.C,
                   19171:          src/classes/math.C, src/classes/op.C, src/classes/string.C,
                   19172:          src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
                   19173:          src/classes/xnode.C, src/include/pa_exception.h,
                   19174:          src/include/pa_request.h, src/include/pa_stylesheet_connection.h,
                   19175:          src/main/compile.C, src/main/compile_tools.C, src/main/execute.C,
                   19176:          src/main/pa_array.C, src/main/pa_charset.C,
                   19177:          src/main/pa_charsets.C, src/main/pa_common.C,
                   19178:          src/main/pa_dictionary.C, src/main/pa_exception.C,
                   19179:          src/main/pa_exec.C, src/main/pa_pool.C, src/main/pa_request.C,
                   19180:          src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
                   19181:          src/main/pa_string.C, src/main/pa_table.C, src/main/untaint.C,
                   19182:          src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
                   19183:          src/types/pa_value.h, src/types/pa_vcookie.C,
                   19184:          src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vhash.h,
                   19185:          src/types/pa_vmethod_frame.h, src/types/pa_vstatus.C,
                   19186:          src/types/pa_vtable.C, src/types/pa_vxdoc.h,
                   19187:          src/types/pa_vxnode.h, src/types/pa_wcontext.C,
                   19188:          src/types/pa_wwrapper.h: assigned exception types
                   19189: 
                   19190:        * operators.txt, src/classes/op.C, src/include/pa_config_fixed.h,
                   19191:          src/include/pa_request.h, src/main/execute.C,
                   19192:          src/main/pa_request.C: decided agains resetting exception_trace,
                   19193:          just changed name
                   19194: 
                   19195: 2002-03-26  paf
                   19196: 
                   19197:        * src/: include/pa_common.h, main/pa_exec.C: windows exec chdir
                   19198:          fixed
                   19199: 
                   19200:        * src/classes/op.C: forced language of $source field of exception
                   19201:          to 'tainted', so that sql-langed-frags could be outputed outside
                   19202:          of connect
                   19203: 
                   19204:        * operators.txt: removed date.roll limit of +-1 offset
                   19205: 
                   19206:        * src/classes/date.C: removed date.roll limit of +-1 offset
                   19207: 
                   19208:        * operators.txt, src/classes/date.C: fixed date roll on
                   19209:          daylightsaving days mktime took into account tm_isdst flag, which
                   19210:          remained from BEFORE roll, but should have been reset
                   19211: 
                   19212: 2002-03-25  paf
                   19213: 
                   19214:        * operators.txt, src/targets/cgi/parser3.C:
                   19215:          http_site_config_filespec
                   19216: 
                   19217:        * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
                   19218:          main/pa_exec.C: f(!forced_allow) to allow --with-sendmail to work
                   19219:          with any/both --disable-foreign-group-files --disable-execs
                   19220: 
                   19221:        * INSTALL: "--with=sendmail=COMMAND" comment
                   19222: 
                   19223:        * INSTALL, configure, configure.in, src/classes/mail.C,
                   19224:          src/include/pa_config_auto.h.in, src/main/pa_exec.C,
1.116     moko     19225:          src/targets/cgi/Makefile.am: --disable-foreign-group-files now
                   19226:          disables execs also.  introducing --sendmail
1.95      moko     19227: 
                   19228:        * operators.txt: pgsql options comment
                   19229: 
                   19230:        * INSTALL: comment on --disable-link-stdcpp
                   19231: 
1.116     moko     19232:        * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
                   19233:          libstdc++ link skipping configure option
1.95      moko     19234: 
                   19235:        * src/: classes/op.C, include/pa_sql_connection.h: sql connection
                   19236:          with error were put to cache with 'marked_to_rollback' flag, all
                   19237:          consequent even OK requests rolled back
                   19238: 
                   19239: 2002-03-22  paf
                   19240: 
                   19241:        * src/main/pa_exec.C: createprocess nowindow flag check on readfile
                   19242:          false return
                   19243: 
                   19244:        * operators.txt: few comments on sets
                   19245: 
                   19246: 2002-03-18  paf
                   19247: 
                   19248:        * operators.txt, src/classes/op.C, src/include/pa_exception.h,
                   19249:          src/include/pa_globals.h, src/include/pa_request.h,
                   19250:          src/include/pa_stack.h, src/main/pa_globals.C,
                   19251:          src/main/pa_request.C: introducing ^try
                   19252: 
                   19253:        * src/: main/pa_charset.C, targets/isapi/pa_threads.C,
                   19254:          types/pa_vdouble.h: removed some tested @tests
                   19255: 
                   19256: 2002-03-15  paf
                   19257: 
                   19258:        * operators.txt, src/classes/table.C: ^table.locate(logical expr)
                   19259: 
                   19260: 2002-03-13  paf
                   19261: 
                   19262:        * src/main/pa_exception.C: checked not-pooled malloc
                   19263: 
                   19264: 2002-03-11  paf
                   19265: 
                   19266:        * INSTALL, configure, configure.in,
                   19267:          src/include/pa_config_auto.h.in: --disable-foreign-group-files
                   19268: 
                   19269:        * src/main/pa_common.C: --disable-foreign-group-files
                   19270: 
                   19271:        * INSTALL: --disable-execs
                   19272: 
                   19273:        * src/main/pa_exec.C: --disable-execs
                   19274: 
                   19275:        * configure, configure.in, src/include/pa_config_auto.h.in:
                   19276:          --disable-execs
                   19277: 
                   19278:        * src/: include/pa_config_fixed.h, main/pa_exec.C: --disable-execs
                   19279: 
                   19280:        * src/types/pa_vfile.C: $file.text now 0A linebreaks,
                   19281:          file::exec/cgi linebreaks "0D0A" changed to 0A onces
                   19282: 
                   19283: 2002-03-05  paf
                   19284: 
                   19285:        * operators.txt, src/classes/date.C: date week calendar columns
                   19286:          named
                   19287: 
                   19288:        * operators.txt, src/classes/date.C: date week calendar columns
                   19289:          named
                   19290: 
                   19291:        * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: iis5 now
                   19292:          requires headers to be terminated with \r\n manually [refuses to
                   19293:          separate header/body itself]
                   19294: 
                   19295:        * src/: main/pa_globals.C, targets/cgi/parser3.C,
                   19296:          targets/isapi/parser3isapi.C: isapi site config beside .dll
                   19297: 
                   19298: 2002-03-04  paf
                   19299: 
                   19300:        * src/: classes/op.C, types/pa_vfile.C: process body now evaluated
                   19301:          in PASS language
                   19302: 
                   19303:        * src/: classes/op.C, include/pa_string.h, main/pa_string.C: string
                   19304:          deserialize checks on broken file
                   19305: 
                   19306:        * src/targets/isapi/: pa_threads.C, parser3isapi.C,
                   19307:          parser3isapi.dsp: isapi updated
                   19308: 
                   19309: 2002-03-01  paf
                   19310: 
                   19311:        * src/main/pa_exec.C: execle -> execve, now argc OK
                   19312: 
                   19313: 2002-02-28  paf
                   19314: 
                   19315:        * src/main/untaint.C: removed some debug comments
                   19316: 
                   19317:        * src/main/pa_charsets.C: when placing charset to cache using
                   19318:          global name now [were request]
                   19319: 
                   19320:        * configure, configure.in: apache module updated
                   19321: 
                   19322:        * src/main/pa_string.C: origin by first piece preferred before last
                   19323:          piece
                   19324: 
                   19325: 2002-02-27  paf
                   19326: 
                   19327:        * src/main/pa_charset.C: size_t
                   19328: 
                   19329:        * INSTALL: shared/static-xml with-pathlink
                   19330: 
                   19331:        * operators.txt: SMTP comment
                   19332: 
                   19333: 2002-02-26  paf
                   19334: 
                   19335:        * src/main/pa_exec.C: more precise names for vars, cosmetic
                   19336: 
                   19337:        * src/classes/xnode.C: in some situation, xpath query returned
                   19338:          result with type NODESET, but empty nodeset member field, checked
                   19339:          that
                   19340: 
                   19341: 2002-02-22  paf
                   19342: 
                   19343:        * INSTALL: without-zlib comment
                   19344: 
                   19345:        * etc/parser3.charsets/windows-1251.cfg: &deg;
                   19346: 
                   19347:        * configure, configure.in: glib###.a detection fixed
                   19348: 
                   19349:        * INSTALL: hashfile removed from INSTALL
                   19350: 
1.116     moko     19351:        * Makefile.am: make update
1.95      moko     19352: 
                   19353:        * src/main/pa_string.C: string iterators fixed again, so were
                   19354:          String::join_chain
                   19355: 
                   19356:        * src/main/pa_string.C: string iterators fixed again, so were
                   19357:          String::join_chain
                   19358: 
                   19359:        * src/: include/pa_string.h, main/pa_string.C: string iterators
                   19360:          fixed again, so were String::join_chain
                   19361: 
                   19362:        * src/types/pa_vcookie.C: cookie "expires=0" =  "session"
                   19363: 
                   19364:        * operators.txt, src/types/pa_vcookie.C: cookie "expires=0" =
                   19365:          "session"
                   19366: 
1.116     moko     19367:        * configure, configure.in, src/include/pa_config_auto.h.in:
                   19368:          --with-shared-xml --with-static-xml
1.95      moko     19369: 
                   19370:        * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
                   19371:          targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
                   19372:          types/types.dsp: *.dsp: removed refereces to win32db & ancient
                   19373:          xalan&xml
                   19374: 
                   19375:        * acconfig.h: acconfig move in cvs[from src/libltdl to /]
                   19376: 
                   19377:        * operators.txt, src/classes/classes.dsp, src/main/main.dsp,
                   19378:          src/types/types.dsp: removed hashfile support from sources for
                   19379:          now
                   19380: 
1.116     moko     19381:        * configure, configure.in, src/classes/Makefile.am,
1.95      moko     19382:          src/classes/hashfile.C, src/include/Makefile.am,
1.116     moko     19383:          src/include/pa_config_auto.h.in, src/include/pa_db_connection.h,
                   19384:          src/include/pa_db_manager.h, src/include/pa_db_table.h,
                   19385:          src/main/Makefile.am, src/main/pa_db_connection.C,
1.95      moko     19386:          src/main/pa_db_manager.C, src/main/pa_db_table.C,
1.116     moko     19387:          src/main/pa_globals.C, src/targets/cgi/Makefile.am,
                   19388:          src/types/Makefile.am, src/types/pa_vhashfile.C,
                   19389:          src/types/pa_vhashfile.h: removed hashfile support for now
1.95      moko     19390: 
                   19391: 2002-02-21  paf
                   19392: 
                   19393:        * src/main/untaint.C: removed debug code, activated commented-for
                   19394:          debug parts
                   19395: 
1.116     moko     19396:        * Makefile.am: make cvsupdate
1.95      moko     19397: 
                   19398:        * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
                   19399:          main/untaint.C: STRING_*FOREACH_ROW changed to stop at
                   19400:          append_row, not at link zero now string to string appending works
                   19401: 
                   19402: 2002-02-20  paf
                   19403: 
                   19404:        * src/: include/pa_string.h, main/execute.C, main/untaint.C,
                   19405:          targets/cgi/pa_pool.C, targets/cgi/parser3.C: //#define
                   19406:          DEBUG_STRING_APPENDS_VS_EXPANDS
                   19407: 
                   19408:        * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
                   19409:          economy: 22%
                   19410: 
                   19411:        * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
                   19412:          space uptimized: string::link_row removed
                   19413: 
                   19414:        * src/: include/pa_string.h, include/pa_stylesheet_connection.h,
                   19415:          main/pa_db_manager.C, main/pa_dictionary.C, main/pa_string.C,
                   19416:          main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
                   19417:          types/pa_vstring.h: speed uptimized: string::is_empty
                   19418: 
                   19419:        * operators.txt, src/include/pa_common.h,
                   19420:          src/include/pa_config_fixed.h, src/include/pa_string.h,
                   19421:          src/include/pa_types.h, src/main/compile.tab.C,
                   19422:          src/main/execute.C, src/main/pa_string.C, src/main/untaint.C,
                   19423:          src/targets/cgi/pa_pool.C, src/targets/cgi/parser3.C: strign to
                   19424:          string append optimiziation idea and estimates
                   19425: 
                   19426: 2002-02-19  paf
                   19427: 
                   19428:        * src/classes/math.C: not used directly [but erroreously reported
                   19429:          that 'is', thus registering twice&other probs]
                   19430: 
                   19431:        * src/classes/: xdoc.C, xnode.C: getElementsByTagName and *NS moved
                   19432:          to node [element]
                   19433: 
                   19434:        * src/main/compile.C: without string_origins parse error
                   19435:          file+line+col possible
                   19436: 
                   19437:        * src/main/: compile.C: without string_origins not worked
                   19438: 
                   19439: 2002-02-18  paf
                   19440: 
                   19441:        * src/types/pa_vdouble.h: since we have in_expression removed that
                   19442:          trick i've installed into double::as_string
                   19443: 
                   19444:        * src/main/pa_globals.C: extern "C" was removed too fast
                   19445: 
                   19446:        * src/: include/pa_opcode.h, include/pa_request.h,
                   19447:          main/compile.tab.C, main/compile.y, main/execute.C,
                   19448:          types/pa_wcontext.h: in_expression aimed to solve old problem
                   19449:          with string/nonstring values, now in expressions double/int
                   19450:          values are passed as-is, without stupid tostring/fromstring
                   19451:          conversions
                   19452: 
                   19453:        * src/main/: main.dsp, pa_globals.C: removed unneded #ifdef
                   19454:          __cplusplus } #endif
                   19455: 
                   19456:        * src/main/compile.tab.C: bison env set so one could compile
                   19457:          without cygwin installed
                   19458: 
                   19459:        * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
                   19460:          targets/cgi/parser3.dsp, types/types.dsp: win32xml now contains
                   19461:          gnome xml libs parser .dsp-s changed accordingly
                   19462: 
                   19463:        * operators.txt, src/targets/cgi/parser3.C: PARSER_ROOT_CONFIG
                   19464: 
                   19465:        * operators.txt, src/classes/date.C: date::create [were date::set,
                   19466:          with backward comp
                   19467: 
                   19468:        * src/classes/math.C: math:random range check fixed
                   19469: 
                   19470:        * src/main/: compile.tab.C, compile.y: integer  division stops name
                   19471: 
                   19472:        * INSTALL: local install comment
                   19473: 
1.116     moko     19474:        * ltconfig, ltmain.sh: removed libtool subpart files
1.95      moko     19475: 
1.116     moko     19476:        * acinclude.m4, aclocal.m4, configure, configure.in,
                   19477:          src/include/pa_config_auto.h.in,
                   19478:          src/include/pa_config_includes.h, src/targets/cgi/Makefile.am,
                   19479:          src/targets/cgi/parser3.C: removed libtool usage from build mech
1.95      moko     19480: 
                   19481:        * operators.txt: \ comment
                   19482: 
                   19483: 2002-02-13  paf
                   19484: 
                   19485:        * src/include/pa_config_includes.h: sys/time time both included
                   19486:          now.  vaguely remember confilicts on this on some system [not on
                   19487:          six|ablv] so when would see them again would think up proper
                   19488:          check
                   19489: 
1.116     moko     19490:        * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
                   19491:          --with-glib-config CXXLINK=$(CC) for targets/cgi/parser3
1.95      moko     19492: 
                   19493:        * src/main/pa_common.C: truncation never occured when writing files
                   19494:          on unix [since i've changed cache mech] fix
                   19495: 
                   19496:        * src/main/pa_common.C: strnchr: sanity check added
                   19497: 
                   19498:        * etc/parser3.charsets/windows-1257.cfg: id added
                   19499: 
                   19500:        * etc/parser3.charsets/windows-1257.cfg, src/targets/cgi/parser3.C:
                   19501:          baltic charset file generated, in generation script ispunct check
                   19502:          added
                   19503: 
                   19504: 2002-02-08  paf
                   19505: 
1.116     moko     19506:        * src/: include/Makefile.am, sql/Makefile.am,
                   19507:          targets/isapi/Makefile.am: forgotten makes
1.95      moko     19508: 
                   19509:        * src/types/: pa_vcookie.C: VCookie::fill_fields one check
                   19510:          forgotten
                   19511: 
                   19512:        * src/types/pa_vcookie.C: VCookie::fill_fields one check forgotten
                   19513: 
                   19514:        * INSTALL, README: install&others updated
                   19515: 
                   19516:        * AUTHORS, COPYING, ChangeLog, INSTALL: install&others updated
                   19517: 
1.116     moko     19518:        * Makefile.am, configure, configure.in,
                   19519:          etc/parser3.charsets/Makefile.am, src/Makefile.am,
                   19520:          src/classes/Makefile.am, src/main/Makefile.am,
                   19521:          src/main/pa_status_provider.C, src/targets/Makefile.am,
                   19522:          src/targets/cgi/Makefile.am, src/types/Makefile.am: 'make dist'
                   19523:          works
1.95      moko     19524: 
                   19525:        * src/: classes/classes.C, classes/classes.h, classes/date.C,
                   19526:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   19527:          classes/hashfile.C, classes/int.C, classes/mail.C,
                   19528:          classes/math.C, classes/op.C, classes/response.C,
                   19529:          classes/string.C, classes/table.C, classes/void.C,
                   19530:          classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   19531:          include/pa_array.h, include/pa_cache_managers.h,
                   19532:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   19533:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   19534:          include/pa_db_connection.h, include/pa_db_manager.h,
                   19535:          include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
                   19536:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   19537:          include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
                   19538:          include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
                   19539:          include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
                   19540:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   19541:          include/pa_stack.h, include/pa_string.h,
                   19542:          include/pa_stylesheet_connection.h,
                   19543:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   19544:          include/pa_threads.h, include/pa_types.h, main/compile.C,
                   19545:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   19546:          main/pa_array.C, main/pa_cache_managers.C, main/pa_charsets.C,
                   19547:          main/pa_db_connection.C, main/pa_db_manager.C,
                   19548:          main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
                   19549:          main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
                   19550:          main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
                   19551:          main/pa_sql_driver_manager.C, main/pa_status_provider.C,
                   19552:          main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
                   19553:          sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
                   19554:          targets/cgi/pa_threads.C, targets/cgi/pool_storage.h,
                   19555:          targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
                   19556:          targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
                   19557:          types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
                   19558:          types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
                   19559:          types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
                   19560:          types/pa_venv.h, types/pa_vfile.h, types/pa_vform.h,
                   19561:          types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.h,
                   19562:          types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
                   19563:          types/pa_vmethod_frame.h, types/pa_vobject.h,
                   19564:          types/pa_vrequest.h, types/pa_vresponse.h,
                   19565:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   19566:          types/pa_vstateless_object.h, types/pa_vstatus.C,
                   19567:          types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
                   19568:          types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
                   19569:          types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h,
                   19570:          classes/image.C, main/pa_common.C, main/pa_exec.C,
                   19571:          main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
                   19572:          types/pa_vfile.C, types/pa_vform.C, types/pa_vhashfile.C,
                   19573:          types/pa_vimage.C, types/pa_vrequest.C, types/pa_vresponse.C,
                   19574:          types/pa_vstring.C, types/pa_vtable.C, types/pa_vxdoc.C,
                   19575:          types/pa_vxnode.C, main/pa_charset.C: name spelling
                   19576: 
                   19577:        * src/: classes/classes.C, classes/classes.h, classes/date.C,
                   19578:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   19579:          classes/hashfile.C, classes/image.C, classes/int.C,
                   19580:          classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
                   19581:          classes/string.C, classes/table.C, classes/void.C,
                   19582:          classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   19583:          include/pa_array.h, include/pa_cache_managers.h,
                   19584:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   19585:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   19586:          include/pa_db_connection.h, include/pa_db_manager.h,
                   19587:          include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
                   19588:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   19589:          include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
                   19590:          include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
                   19591:          include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
                   19592:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   19593:          include/pa_stack.h, include/pa_string.h,
                   19594:          include/pa_stylesheet_connection.h,
                   19595:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   19596:          include/pa_threads.h, include/pa_types.h, main/compile.C,
                   19597:          main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
                   19598:          main/execute.C, main/pa_array.C, main/pa_cache_managers.C,
                   19599:          main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
                   19600:          main/pa_db_connection.C, main/pa_db_manager.C,
                   19601:          main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
                   19602:          main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
                   19603:          main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
                   19604:          main/pa_socks.C, main/pa_sql_driver_manager.C,
                   19605:          main/pa_status_provider.C, main/pa_string.C,
                   19606:          main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
                   19607:          sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
                   19608:          targets/cgi/pa_threads.C, targets/cgi/parser3.C,
                   19609:          targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
                   19610:          targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
                   19611:          targets/isapi/pool_storage.h, types/pa_valiased.C,
                   19612:          types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
                   19613:          types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
                   19614:          types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
                   19615:          types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
                   19616:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
                   19617:          types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
                   19618:          types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
                   19619:          types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
                   19620:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
                   19621:          types/pa_vresponse.h, types/pa_vstateless_class.C,
                   19622:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   19623:          types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
                   19624:          types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
                   19625:          types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   19626:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
                   19627:          types/pa_wcontext.h, types/pa_wwrapper.h: 2002
                   19628: 
                   19629: 2002-02-07  paf
                   19630: 
                   19631:        * src/main/pa_socks.C: swapped headers to avoid compiler warnings
                   19632: 
1.116     moko     19633:        * configure, configure.in, src/include/pa_config_auto.h.in,
                   19634:          src/main/pa_common.C, src/main/pa_socks.C: compiled under cygwin
                   19635:          added yet another locking function: fcntl
1.95      moko     19636: 
                   19637:        * config.sub: on cygwin configure passes it with strange i1586
                   19638:          const, hacked it to mean i586
                   19639: 
                   19640:        * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
                   19641:          disabled $if reference due to conflicts with local variables
                   19642: 
                   19643:        * operators.txt, src/classes/xdoc.C, src/include/pa_config_fixed.h:
                   19644:          xdoc::set obsolete now, now xdoc::create, with both sences
                   19645: 
                   19646:        * operators.txt, src/classes/table.C, src/include/pa_array.h,
                   19647:          src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
                   19648:          table::create now // 'set' name obsolete now table clone.
                   19649: 
                   19650:        * operators.txt, src/classes/string.C,
                   19651:          src/include/pa_config_fixed.h, src/main/compile.tab.C:
                   19652:          ^int/double/string.format now can be called with normal []
                   19653:          brackets, not stupid {} as it were implemented for some strange
                   19654:          reason.  retaining backward compatibility due to some
                   19655:          already-implemented servers
                   19656: 
                   19657:        * src/: include/pa_array.h, main/compile.C, main/compile.tab.C,
                   19658:          main/compile.y, main/compile_tools.C, main/compile_tools.h:
                   19659:          operators now detected by check at name_without_curly_rdive_read
                   19660:          rule whether diving code constists only of
                   19661:          OP_VALUE+string+OP_GET_ELEMENT.  and last op code substituted
                   19662:          with OP_GET_ELEMENT_OR_OPERATOR to form
                   19663:          OP_VALUE+string+OP_GET_ELEMENT_OR_OPERATOR.  code
                   19664: 
                   19665: 2002-02-06  paf
                   19666: 
                   19667:        * configure, configure.in: prefix expanded, grr
                   19668: 
                   19669:        * operators.txt, src/classes/mail.C: mail:send config changed
                   19670: 
                   19671: 2002-02-05  paf
                   19672: 
                   19673:        * operators.txt: regex options commented
                   19674: 
                   19675:        * src/main/: pa_exec.C: argv0 now correct
                   19676: 
                   19677:        * src/types/pa_vstatus.C: status:rusage 3
                   19678: 
                   19679:        * src/types/pa_vstatus.C: status:rusage 2
                   19680: 
                   19681:        * operators.txt: status:rusage described int operators
                   19682: 
                   19683:        * src/types/pa_vstatus.C: status:rusage 1
                   19684: 
                   19685:        * configure.in, src/types/Makefile.am, src/types/pa_vstatus.h,
                   19686:          src/types/types.dsp: status:rusage
                   19687: 
                   19688:        * configure.in, operators.txt, src/classes/file.C,
                   19689:          src/classes/op.C, src/include/pa_common.h,
                   19690:          src/include/pa_config_includes.h, src/main/compile.tab.C,
                   19691:          src/main/pa_common.C: rewritten ^cache to use
                   19692:          non-blocking-exclusive-caches
                   19693: 
                   19694:        * src/main/pa_common.C: text file read mode on win32 adjusted
                   19695:          [speed impact. was off for debugging purpose, but forgotten
                   19696:          afterwards]
                   19697: 
                   19698: 2002-02-01  paf
                   19699: 
                   19700:        * src/classes/op.C: file_write does EX lock after create, while
                   19701:          file_read does SH after open, so there's a moment after create
                   19702:          but before EX lock when read can sneak into, and read
                   19703:          just-created-for-writing-and-not-yet-locked file, added a check
                   19704:          for that in ^cache...read
                   19705: 
                   19706: 2002-01-31  paf
                   19707: 
                   19708:        * src/main/: compile.y, compile.tab.C: disabled operator call after
                   19709:          ^xxx:
                   19710: 
                   19711:        * src/main/: compile.tab.C, execute.C: made operators lookup first
                   19712:          in ^xxx situation.  so that one could not do $if[1] ^if[xxx]
                   19713: 
                   19714:        * src/: include/pa_opcode.h, include/pa_request.h, main/compile.C,
                   19715:          main/compile.tab.C, main/compile.y, main/compile_tools.C,
                   19716:          main/compile_tools.h, main/execute.C, types/pa_wcontext.h:
                   19717:          operators check 6.1 rewritten. now check is done at compile time
                   19718: 
                   19719:        * src/main/execute.C: operators check 5 floated up old error of
                   19720:          staying in 'entered class/object' state after $a($a..) it
                   19721:          prevented operators from being called thereafter
                   19722: 
                   19723:        * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
                   19724:          main/execute.C: operators check 4 floated up old error of staying
                   19725:          in 'entered object' state after ^a.a(a) it prevented operators
                   19726:          from being called thereafter
                   19727: 
                   19728:        * src/main/execute.C: operators check 3 floated up old error of
                   19729:          staying in 'entered class' state after $a:a(a) it prevented
                   19730:          operators from being called thereafter
                   19731: 
                   19732:        * src/: main/execute.C, types/pa_wcontext.h: operators check 2
                   19733:          floated up old error of staying in 'entered class' state after
                   19734:          $a:a[a] it prevented operators from being called thereafter
                   19735: 
                   19736:        * src/main/execute.C: operators check, thay mistakenly seen in
                   19737:          $class:operator   $object.operators contexts
                   19738: 
                   19739:        * src/: classes/xdoc.C, targets/cgi/parser3.dsp: now compiles under
                   19740:          win32
                   19741: 
1.116     moko     19742:        * INSTALL, configure, configure.in, ident.awk, etc/Makefile.am,
                   19743:          src/classes/Makefile.am, src/main/Makefile.am,
                   19744:          src/targets/cgi/Makefile.am,
1.95      moko     19745:          src/targets/cgi/pa_config_paths.h.in, src/targets/cgi/parser3.C,
1.116     moko     19746:          src/types/Makefile.am: lowered indent.awk back to src/
1.95      moko     19747: 
1.116     moko     19748:        * AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, NEWS, README,
                   19749:          acinclude.m4, aclocal.m4, asm.txt, config.guess, config.sub,
                   19750:          configure, configure.in, form.txt, ident.awk, install-sh,
                   19751:          lang.txt, ltconfig, ltmain.sh, missing, mkinstalldirs,
                   19752:          operators.txt, parser3.dsw, sql.txt, types.txt, etc/Makefile.am,
1.95      moko     19753:          etc/parser3.charsets/Makefile.am,
                   19754:          etc/parser3.charsets/koi8-r.cfg,
                   19755:          etc/parser3.charsets/windows-1250.cfg,
                   19756:          etc/parser3.charsets/windows-1251.cfg, src/Makefile.am,
1.116     moko     19757:          src/classes/Makefile.am, src/include/pa_config_auto.h.in,
                   19758:          src/main/Makefile.am, src/targets/cgi/Makefile.am,
                   19759:          src/targets/cgi/parser3.C, src/types/Makefile.am: moved etc&www
                   19760:          out of src, moved configure&co out of src added windows-1250.cfg
1.95      moko     19761:          straightened installation scripts procedure made
                   19762:          targets/cgi/parser3.C be dependant on ./configure --sysconfdir
                   19763:          change
                   19764: 
                   19765: 2002-01-30  paf
                   19766: 
                   19767:        * src/classes/xdoc.C: acconfig.h changed [comments before #undefs
                   19768:          removed] those comments were a mistake, and prevented libltdl
                   19769:          from function properly
                   19770: 
                   19771: 2002-01-29  paf
                   19772: 
1.116     moko     19773:        * src/: Makefile.am, classes/Makefile.am: removed libltdl/libtool
                   19774:          creation [modified acinclude.m4 which were creating int into just
                   19775:          assignment LIBTOOL=../libtool] added default system
                   19776:          config&charsetts prepared 'make install', now it installs
                   19777:          targets/cgi/parser3 into bin directory etc/parser3.conf &
                   19778:          etc/parser3.charsets/* into $sysconfdir and
1.95      moko     19779:          $sysconfdir/parser3.charsets respectively
                   19780: 
                   19781:        * src/: classes/xdoc.C, include/pa_charset.h, include/pa_globals.h,
                   19782:          main/pa_globals.C: few forgotten ifdef XML added
                   19783: 
                   19784: 2002-01-28  paf
                   19785: 
1.116     moko     19786:        * src/: classes/Makefile.am, targets/cgi/Makefile.am: xalan-patch
1.95      moko     19787:          removed
                   19788: 
                   19789:        * src/main/pa_exception.C: dom|generic error output fix
                   19790: 
                   19791:        * src/classes/xnode.C: xdoc.importNode 3 [check err]
                   19792: 
                   19793:        * src/classes/xnode.C: xdoc.importNode 2 [mistype err]
                   19794: 
                   19795:        * src/: classes/xnode.C, types/pa_vxdoc.h: xdoc.importNode 1
                   19796:          [fixed as_node helper func to accept docs]
                   19797: 
                   19798:        * src/: classes/xdoc.C, classes/xnode.h, main/pa_exception.C:
                   19799:          xdoc.importNode 0
                   19800: 
                   19801:        * src/classes/xdoc.C: xdoc::set now untaints OK
                   19802: 
                   19803: 2002-01-25  paf
                   19804: 
                   19805:        * src/main/: compile.tab.C, compile.y: #comment  before @ after
                   19806:          @SPECIAL now works OK
                   19807: 
                   19808:        * src/main/: pa_exec.C: unix: exec now does chdir to script dir
                   19809: 
                   19810:        * src/main/pa_exec.C: max arg count now 10, and proper message on
                   19811:          violation that added
                   19812: 
                   19813:        * src/classes/hash.C: unified  hash::sql, now
                   19814:          ^hash::sql{query}[[$.limit(2) $.offset(4)]]
                   19815: 
                   19816:        * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
                   19817:          ^file:lock[filename]{code}
                   19818: 
                   19819:        * src/: classes/file.C, classes/op.C, classes/string.C,
                   19820:          classes/table.C, classes/xdoc.C, include/pa_common.h,
                   19821:          main/pa_common.C, types/pa_vfile.h: removed redundant pool param
                   19822:          to some pa_common funcs
                   19823: 
                   19824:        * src/: include/pa_charset.h, main/pa_globals.C:
                   19825:          http://localhost/abc -> $ENV{DOCUMENT_ROOT}/abc | ./abc
                   19826: 
                   19827:        * src/: include/pa_charset.h, main/pa_charset.C,
                   19828:          include/pa_config_fixed.h, main/compile.tab.C: typedef XMLCh...
                   19829:          not stupid illegal define
                   19830: 
                   19831: 2002-01-24  paf
                   19832: 
                   19833:        * src/include/pa_version.h: changed version number
                   19834: 
                   19835:        * src/: classes/hashfile.C, include/pa_db_table.h,
                   19836:          include/pa_opcode.h, main/compile.tab.C, main/compile.y,
                   19837:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   19838:          main/pa_db_connection.C, main/pa_db_table.C,
                   19839:          types/pa_vhashfile.C, types/pa_vhashfile.h: merged from r17 -
                   19840:          hashfile without logfiles
                   19841: 
                   19842:        * src/: classes/hashfile.C, include/pa_db_table.h,
                   19843:          main/compile.tab.C, main/pa_db_connection.C, main/pa_db_table.C,
                   19844:          types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile: removed use
                   19845:          of transactions [libdb removed DB_INIT_LOCK, DB_INIT_LOG,
                   19846:          DB_INIT_TXN init bits, thus got rid of huge log files, which
                   19847:          cluttered disk without huge need]
                   19848: 
                   19849:        * src/classes/: xdoc.C, xnode.C, xnode.h: gdome_xml_doc_get_xmlDoc
                   19850:          handy macro, which is strangly abscent in dome lib
                   19851: 
                   19852:        * src/classes/xdoc.C: xsltSaveResultTo checked <0 response
                   19853: 
                   19854:        * src/classes/xdoc.C: checked empty response
                   19855: 
                   19856:        * src/classes/xnode.C: xdoc.select fixed context node [were always
                   19857:          /, not self node]
                   19858: 
                   19859:        * src/classes/xnode.C: xnode.select returns array always now, in
                   19860:          case 'nothing found' returns empty array
                   19861: 
                   19862:        * src/classes/xnode.C: xpath nodes select bug [0] instead of [i],
                   19863:          be more tender with ctrl/c/v
                   19864: 
                   19865: 2002-01-23  paf
                   19866: 
                   19867:        * src/: classes/xdoc.C, main/pa_globals.C: xdoc::load/set entities
                   19868:          substituted.         // 2. when dom tree with entites goes under
                   19869:          transform text nodes        // got [erroreosly] cut on first
                   19870:          entity occurance
                   19871: 
                   19872:        * src/types/pa_vdouble.h: double prec. todo: get rid of
                   19873:          twice-converting
                   19874: 
                   19875:        * src/types/pa_vdouble.h: %.20E now float format when %g produced
                   19876:          'e' in output this is for regretful twice-converting here:
                   19877:          $a(double value) when they write double falue  they convert it to
                   19878:          string first, thus %g were losing precesion.
                   19879: 
                   19880:          todo: think up some way to remove double->string string->double
                   19881:          twice-converting
                   19882: 
                   19883:        * src/: classes/xdoc.C, main/pa_globals.C, types/pa_vdouble.h:
                   19884:          %.20E now default float format this is for regretful
                   19885:          twice-converting here: $a(double value) when they write double
                   19886:          falue  they convert it to string first, thus %g were losing
                   19887:          precesion.
                   19888: 
                   19889:          todo: think up some way to remove double->string string->double
                   19890:          twice-converting
                   19891: 
                   19892:        * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
                   19893:          main/pa_globals.C: xmlSubstituteEntitiesDefault(1) now global,
                   19894:          reasons in comment inside
                   19895: 
                   19896:        * src/main/pa_globals.C: xslt linked dynamically. [mistekenly were
                   19897:          statically linked]
                   19898: 
                   19899:        * src/: include/pa_exception.h, main/compile.tab.C,
                   19900:          main/pa_exception.C: removed exception va_list constructor.  1.
                   19901:          not needed anymore 2. there were a conflict[causing errors]
                   19902:          between ctor(, va_list) ctor(, ...) compiler[both msvc and gcc]
                   19903:          never detected an ambiguilty here, compiling ctor(, "hello") into
                   19904:          ctor(, va_list) which, of course, caused gpf
                   19905: 
                   19906:        * src/main/pa_globals.C: removed debug xslt messages
                   19907: 
                   19908: 2002-01-22  paf
                   19909: 
                   19910:        * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
                   19911:          main/pa_globals.C: xsl stylesheet load: parsed entities, this
                   19912:          helps compiling stylesheet properly.  example: this refused to
                   19913:          work,             <b>&laquo;<xsl:value-of select="@title"
                   19914:          />&raquo;</b> stranly worked only this way:
                   19915:          <b>&#171;<xsl:value-of select="@title" />&raquo;</b>
                   19916: 
                   19917:          docs says "set it to 1", never going into details, so I decided
                   19918:          to try NOT to do that
                   19919: 
                   19920:        * src/classes/table.C: join behaived badly in case named tables
                   19921:          structure mismatched: 0 strings sneaked into dest failing
                   19922:          afterwards.  replaced them with empty strings
                   19923: 
                   19924: 2002-01-21  paf
                   19925: 
                   19926:        * src/main/pa_charset.C: checked empty transcoders in
                   19927:          transcode_cstr|buf
                   19928: 
                   19929:        * src/classes/xdoc.C: xdoc::load error source = filespec
                   19930: 
                   19931:        * src/classes/xdoc.C: transform error source now
                   19932:          stylesheet_filespec
                   19933: 
1.116     moko     19934:        * src/: classes/xdoc.C, classes/xnode.C,
1.95      moko     19935:          include/pa_stylesheet_connection.h, main/pa_charset.C,
                   19936:          main/pa_globals.C, main/pa_sql_driver_manager.C,
1.116     moko     19937:          main/pa_stylesheet_manager.C, targets/cgi/Makefile.am: autoconf
                   19938:          gnome
1.95      moko     19939: 
                   19940:        * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
                   19941:          include/pa_globals.h, include/pa_stylesheet_connection.h,
                   19942:          main/pa_exception.C, main/pa_globals.C, targets/cgi/pa_threads.C:
                   19943:          xslt generic error 1
                   19944: 
                   19945:        * src/: include/pa_stylesheet_connection.h, main/pa_exception.C:
                   19946:          xml generic message 1
                   19947: 
                   19948:        * src/classes/table.C: ^table::load empty lines or #comments before
                   19949:          headline
                   19950: 
                   19951:        * src/: include/pa_array.h, include/pa_globals.h,
                   19952:          include/pa_request.h, include/pa_threads.h, main/pa_array.C,
                   19953:          main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
                   19954:          targets/cgi/pa_threads.C, targets/isapi/pa_threads.C: xml generic
                   19955:          errors 0
                   19956: 
                   19957: 2002-01-16  paf
                   19958: 
                   19959:        * src/: classes/hash.C, classes/op.C, classes/string.C,
                   19960:          classes/table.C, classes/void.C, classes/xdoc.C,
                   19961:          include/pa_db_connection.h, include/pa_request.h,
                   19962:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   19963:          include/pa_stylesheet_connection.h,
                   19964:          include/pa_stylesheet_manager.h, main/pa_request.C,
                   19965:          main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
                   19966:          targets/cgi/pool_storage.h: auto closers to sql_connection,
                   19967:          stylesheet_connection auto destroyers to remaining gnome objects
                   19968: 
                   19969:        * src/classes/xdoc.C: few comments
                   19970: 
                   19971: 2002-01-15  paf
                   19972: 
                   19973:        * src/classes/xdoc.C: xdoc   file   save   string
                   19974: 
                   19975:          ready.  todo: error handling
                   19976: 
                   19977:        * src/classes/xdoc.C: xdoc save rewritten using
                   19978:          xmlAllocOutputBuffer less mallocs, more reallocs. less fragmented
                   19979:          result
                   19980: 
                   19981:        * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C:
                   19982:          started output options parsing
                   19983: 
                   19984: 2002-01-14  paf
                   19985: 
                   19986:        * src/classes/xdoc.C: method
                   19987: 
                   19988:        * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
                   19989:          include/pa_pool.h, include/pa_stylesheet_connection.h,
                   19990:          main/main.dsp, main/pa_charset.C, main/pa_globals.C,
                   19991:          main/pa_pool.C, main/pa_stylesheet_manager.C, types/pa_vxdoc.h:
                   19992:          xslt transform0.  TODO:   use output options   handle errors
                   19993: 
                   19994:        * src/classes/: xdoc.C, xnode.C: ^xdoc.file
                   19995: 
                   19996: 2002-01-11  paf
                   19997: 
                   19998:        * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
                   19999:          main/compile_tools.C, main/compile_tools.h, main/execute.C:
                   20000:          partial logical && || evaluation
                   20001: 
                   20002:        * src/classes/xnode.C: xpath selectNodes
                   20003: 
                   20004:        * src/: classes/xnode.C, include/pa_charset.h: xpath selectNode 3:
                   20005:          string/number/bool
                   20006: 
                   20007:        * src/classes/xnode.C: xpath selectNode 2
                   20008: 
                   20009:        * src/: classes/xnode.C, include/pa_charset.h, main/pa_charset.C:
                   20010:          xpath selectNode 1
                   20011: 
                   20012: 2002-01-10  paf
                   20013: 
                   20014:        * src/classes/xnode.C: xpath selectNode -100 [just written]
                   20015: 
                   20016:        * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
                   20017:          include/pa_exception.h, include/pa_pool.h, main/pa_charset.C,
                   20018:          main/pa_pool.C: GdomeDOMString_auto_ptr  c++ wrapper [calls
                   20019:          refcounter]
                   20020: 
                   20021: 2001-12-29  paf
                   20022: 
                   20023:        * src/: classes/xdoc.C, include/pa_exception.h, main/pa_charset.C,
                   20024:          main/pa_exception.C, main/pa_globals.C: xdoc ^set ^string with
                   20025:          glib works 0
                   20026: 
                   20027: 2001-12-28  paf
                   20028: 
                   20029:        * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C,
                   20030:          main/pa_exception.C: started glib transcoders
                   20031: 
                   20032:        * src/main/pa_globals.C: renamed gdome to libgdome.dll
                   20033: 
                   20034:        * src/: classes/classes.dsp, classes/mail.C, classes/xdoc.C,
                   20035:          classes/xnode.C, classes/xnode.h, include/pa_exception.h,
                   20036:          include/pa_globals.h, main/compile.tab.C, main/main.dsp,
                   20037:          main/pa_charset.C, main/pa_dir.C, main/pa_exception.C,
                   20038:          main/pa_exec.C, main/pa_globals.C, main/pa_socks.C,
                   20039:          targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vxdoc.C,
                   20040:          types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: gnome
                   20041:          libs just compiled in.  no refcounting no xpath no xslt   yet
                   20042: 
                   20043: 2001-12-27  paf
                   20044: 
                   20045:        * src/: include/pa_charset.h, include/pa_common.h,
                   20046:          include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
                   20047:          main/main.dsp, main/pa_charset.C, main/pa_charsets.C,
                   20048:          main/pa_globals.C, main/pa_pool.C, targets/cgi/parser3.C,
                   20049:          targets/cgi/parser3.dsp, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   20050:          types/pa_vxnode.C, types/pa_vxnode.h, types/types.dsp: going away
                   20051:          from xalan&xerces, started the process.  globals [initialization
                   20052:          pool [charset update charset [transcodings vxnode vxdoc [DOM
                   20053:          calls
                   20054: 
                   20055:        * src/classes/Makefile.am: going away from xalan&xerces, not needed
                   20056:          anymore
                   20057: 
                   20058: 2001-12-26  paf
                   20059: 
                   20060:        * src/: include/pa_charset.h, include/pa_charsets.h,
                   20061:          main/pa_charset.C, main/pa_charsets.C, main/pa_request.C: charset
                   20062:          key globalized [bug]
                   20063: 
                   20064: 2001-12-25  paf
                   20065: 
                   20066:        * src/: classes/mail.C, classes/table.C, include/pa_string.h,
                   20067:          main/pa_string.C: table set & append changed splitting languages,
                   20068:          separators now can be clean AND as-is same to mail command line
                   20069:          $MAIN:MAIL.progX arguments
                   20070: 
                   20071: 2001-12-24  paf
                   20072: 
                   20073:        * src/classes/mail.C: one parted text messages - no multipart
                   20074:          mime-type anymore.  for convinient if $.attach-ments
                   20075: 
                   20076:        * src/: classes/hashfile.C, classes/op.C, main/pa_db_table.C,
                   20077:          main/pa_string.C: read from cache size check updated
                   20078: 
                   20079:        * src/main/: pa_string.C: String::join_chain another ugly bug :(
                   20080: 
                   20081: 2001-12-21  paf
                   20082: 
                   20083:        * src/classes/date.C: date:sql-string now returns localtime
                   20084: 
                   20085:        * src/main/pa_request.C: $result in @main actually not working, to
                   20086:          hell with it for now
                   20087: 
                   20088:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
                   20089:          types/pa_vmethod_frame.h, types/pa_wcontext.h: $result in @main
                   20090:          @postprocess @exception
                   20091: 
                   20092:        * src/main/execute.C: junction evaluation canceled - endless
                   20093:          recursion detected
                   20094: 
                   20095: 2001-12-19  paf
                   20096: 
                   20097:        * src/main/pa_charset.C: charset->charset transcoding via unicode
                   20098:          intermediate
                   20099: 
                   20100:        * src/main/pa_request.C: CLASS_PATH now / = DOCUMENT_ROOT
                   20101: 
                   20102:        * src/classes/hashfile.C: ^hashfile.open DB_HOME now relative
                   20103: 
                   20104:        * src/classes/op.C: ^cache keypath now relative
                   20105: 
                   20106:        * src/classes/mail.C: changed weighting prior to sort
                   20107: 
                   20108:        * src/: classes/mail.C, include/pa_config_fixed.h: to/from 0 check
                   20109:          were missing
                   20110: 
                   20111: 2001-12-17  paf
                   20112: 
                   20113:        * src/main/pa_charset.C: ifndef XML were bad type
                   20114: 
                   20115:        * src/: include/pa_db_table.h, main/pa_db_table.C: db_table used
                   20116:          outdated unset services_pool
                   20117: 
                   20118:        * src/: classes/mail.C, include/pa_charsets.h, include/pa_string.h,
                   20119:          main/pa_charsets.C, main/untaint.C, types/pa_vrequest.C,
                   20120:          types/pa_vresponse.C: ^mail:send[    $.charset[zzz] addded
                   20121: 
                   20122:        * src/main/untaint.C: allowed space in filespec
                   20123: 
                   20124:        * src/main/pa_charset.C: empty bufs transcode [forgot check :(]
                   20125: 
                   20126:        * src/classes/image.C: no govno
                   20127: 
                   20128:        * src/classes/image.C: govno
                   20129: 
                   20130: 2001-12-16  paf
                   20131: 
                   20132:        * src/include/: pa_charset.h, pa_charsets.h: forgot to add
                   20133: 
                   20134:        * src/: main/Makefile.am, main/pa_charset.C, types/Makefile.am:
                   20135:          charset_connection&manager replaced by charset&charsets
                   20136: 
                   20137:        * src/main/pa_charset.C: name_cstr 0
                   20138: 
                   20139:        * src/main/untaint.C: uri lang now knows about client/source
                   20140:          charsets
                   20141: 
                   20142:        * src/: classes/file.C, classes/math.C, classes/op.C,
                   20143:          classes/string.C, classes/table.C, classes/xdoc.C,
                   20144:          include/pa_array.h, include/pa_cache_managers.h,
                   20145:          include/pa_charset_connection.h, include/pa_charset_manager.h,
                   20146:          include/pa_common.h, include/pa_db_connection.h,
                   20147:          include/pa_db_manager.h, include/pa_db_table.h,
                   20148:          include/pa_dictionary.h, include/pa_exception.h,
                   20149:          include/pa_exec.h, include/pa_globals.h, include/pa_hash.h,
                   20150:          include/pa_opcode.h, include/pa_pool.h, include/pa_request.h,
                   20151:          include/pa_sapi.h, include/pa_socks.h,
                   20152:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   20153:          include/pa_string.h, include/pa_stylesheet_connection.h,
                   20154:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   20155:          include/pa_transcoder.h, main/compile_tools.h, main/main.dsp,
                   20156:          main/pa_charset.C, main/pa_charset_connection.C,
                   20157:          main/pa_charset_manager.C, main/pa_charsets.C, main/pa_globals.C,
                   20158:          main/pa_pool.C, main/pa_request.C, main/pa_string.C,
                   20159:          main/pa_transcoder.C, main/untaint.C, types/pa_vfile.C,
                   20160:          types/pa_vform.C, types/pa_vform.h, types/pa_vrequest.C,
                   20161:          types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
                   20162:          types/types.dsp: introducing Charset
                   20163: 
                   20164: 2001-12-14  paf
                   20165: 
                   20166:        * src/: include/pa_request.h, include/pa_transcoder.h,
                   20167:          main/pa_request.C, main/pa_transcoder.C, types/pa_vform.C,
                   20168:          types/pa_vform.h: transcodeToUTF8[were FromUTF8] for forms todo:
                   20169:          uri lang
                   20170: 
                   20171:        * src/main/pa_transcoder.C: transcodeToUTF8, now form&uri lang
                   20172: 
                   20173:        * src/targets/cgi/Makefile.am: -I../../pcre  to .am
                   20174: 
                   20175:        * src/: include/pa_globals.h, main/pa_globals.C: removed unused
                   20176:          defalts_name global
                   20177: 
                   20178:        * src/: include/pa_charset_connection.h, include/pa_pool.h,
                   20179:          include/pa_request.h, main/main.dsp,
                   20180:          main/pa_charset_connection.C, main/pa_charset_manager.C,
                   20181:          main/pa_request.C, types/Makefile.am, types/pa_vrequest.C,
                   20182:          types/pa_vrequest.h, types/pa_vresponse.h, types/types.dsp,
                   20183:          include/pa_transcoder.h, main/pa_transcoder.C, main/Makefile.am:
                   20184:          changed charset model.  now important: $request:charset
                   20185:          $response:charset while $response:content-type.charset become
                   20186:          unimportant [informational]
                   20187: 
                   20188: 2001-12-13  paf
                   20189: 
                   20190:        * src/targets/: cgi/pa_pool.C, isapi/pa_pool.C: EOL@EOF
                   20191: 
                   20192:        * src/classes/xdoc.C: rewritten auto_ptr part other way2, because
                   20193:          of stupid gcc 2.96 /usr/include/g++-3/memory:40: candidates are:
                   20194:          auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with
                   20195:          _Tp = FormatterListener] /usr/include/g++-3/memory:48:
                   20196:          auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &)
                   20197:          [with _Tp1 = FormatterListener, _Tp = FormatterListener]
                   20198: 
                   20199:        * src/: classes/xdoc.C, main/pa_sql_driver_manager.C: rewritten
                   20200:          auto_ptr part other way, because of stupid gcc 2.96
                   20201:          /usr/include/g++-3/memory:40: candidates are: auto_ptr<_Tp>
                   20202:          &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with _Tp =
                   20203:          FormatterListener] /usr/include/g++-3/memory:48:
                   20204:          auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &) [with
                   20205:          _Tp1 = FormatterListener, _Tp = FormatterListener]
                   20206: 
                   20207:        * src/classes/xdoc.C: removed extra inc
                   20208: 
                   20209:        * src/targets/cgi/: pa_pool.C, parser3.C: msvc heap debugging flag
                   20210: 
                   20211:        * src/include/pa_types.h: msvc head debugging flag
                   20212: 
                   20213:        * src/classes/xdoc.C: freed up listener
                   20214: 
                   20215:        * src/classes/string.C: change msg '... code is not code'
                   20216: 
                   20217:        * src/: main/pa_db_connection.C, main/pa_db_manager.C,
                   20218:          main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
                   20219:          targets/cgi/pool_storage.h: couple cache expiratiors were wrong
                   20220:          [past/future prob]
                   20221: 
                   20222:        * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
                   20223:          include/pa_config_fixed.h, include/pa_db_manager.h,
                   20224:          include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
                   20225:          main/pa_cache_managers.C, main/pa_globals.C: ~Cache_managers
                   20226: 
                   20227:        * src/: include/pa_config_fixed.h, main/pa_common.C,
                   20228:          main/pa_string.C: removed signed mismatch warnings
                   20229: 
                   20230:        * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: removed
                   20231:          'expires' from header outputs
                   20232: 
                   20233:        * src/main/pa_string.C: string::recustruct erroreusly used outdated
                   20234:          row ptr
                   20235: 
                   20236:        * src/classes/file.C: file::cgi bug, request_method were passed to
                   20237:          SERVER_PROTOCOL but SERVER_PROTOCOL were forgotten
                   20238: 
                   20239:        * src/classes/xdoc.C: lang list updated
                   20240: 
                   20241: 2001-12-10  paf
                   20242: 
                   20243:        * src/classes/math.C: ^math:random(n) now yields[0;n) not [0;n]
                   20244: 
                   20245:        * src/main/untaint.C: FILE_SPEC untainting changed so that one can
                   20246:          erase files like that, knowing their full name introducing   //
                   20247:          theoretical problem with, for instance, "_2B" and "." fragments,
                   20248:          // they would yield the same    // because
                   20249:          need_file_encode('_')=false  // but we need to delete such files
                   20250:          somehow, getting names from ^index
                   20251: 
                   20252:        * src/main/pa_string.C: ^string.replace bug fixed [bad
                   20253:          string::join_chank break]
                   20254: 
                   20255: 2001-12-07  paf
                   20256: 
                   20257:        * src/: classes/hashfile.C, classes/op.C, classes/table.C,
                   20258:          include/pa_common.h, include/pa_config_auto.h.in,
                   20259:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   20260:          include/pa_db_table.h, include/pa_request.h, main/pa_common.C,
                   20261:          main/pa_db_table.C, main/pa_request.C, main/pa_string.C,
                   20262:          types/pa_vhashfile.C: merged from r14_simple_cache
                   20263: 
                   20264:        * src/main/pa_string.C: stupid sparc architecture failed to access
                   20265:          short at odd address 0x311f0 <deserialize__6StringUiPvUiPCc+16>:
                   20266:             lduh  [ %i2 + 1 ], %l0
                   20267: 
                   20268:          bus error, fixed that
                   20269: 
                   20270:        * src/main/pa_string.C: strange string deserialize bug on
                   20271:          client[pmts], a bit shortened,
                   20272: 
                   20273:        * src/include/pa_config_auto.h.in: makes
                   20274: 
                   20275:        * src/: include/pa_common.h, include/pa_config_fixed.h,
                   20276:          include/pa_config_includes.h, main/pa_common.C: exclusive lock
                   20277:          file write shared lock file read
                   20278: 
                   20279:        * src/: classes/op.C, include/pa_common.h,
                   20280:          include/pa_config_fixed.h, main/pa_common.C: ^cache operator
                   20281: 
                   20282: 2001-12-06  paf
                   20283: 
                   20284:        * src/: classes/op.C, classes/table.C, include/pa_request.h,
                   20285:          main/pa_request.C: #ifdef RESOURCES_DEBUG
                   20286: 
                   20287:        * src/: main/compile.tab.C, targets/cgi/parser3.C: removed debug
                   20288:          info
                   20289: 
                   20290:        * src/classes/hashfile.C: removed transaction from ^cache
                   20291: 
                   20292: 2001-12-05  paf
                   20293: 
                   20294:        * src/targets/cgi/: parser3.C: fatal error reporting fixed.  in
                   20295:          IIS5 there were a prob with illegal call check
                   20296: 
                   20297: 2001-12-04  paf
                   20298: 
                   20299:        * src/: classes/op.C, classes/table.C, include/pa_request.h,
                   20300:          main/pa_request.C: measures to log
                   20301: 
                   20302: 2001-11-23  paf
                   20303: 
                   20304:        * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
                   20305:          main/pa_common.C, main/pa_db_table.C, main/pa_string.C,
                   20306:          types/pa_vhashfile.C: merged from _0014, 1
                   20307: 
                   20308:        * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
                   20309:          main/pa_common.C, main/pa_db_table.C, types/pa_vhashfile.C:
                   20310:          hashfile bugfix2 more wrong sizes.  ^cache behaviour changed: if
                   20311:          ^cache(33) would change
                   20312: 
                   20313:          0660 bits in file_write & hashfile create
                   20314: 
                   20315:        * src/main/: pa_db_table.C, pa_string.C: cache bugfix [wrong types
                   20316:          after pa_string optimization]
                   20317: 
                   20318: 2001-11-22  paf
                   20319: 
                   20320:        * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
                   20321:          table.offset[whence]
                   20322: 
                   20323:        * src/classes/op.C: process cstr(,connection)
                   20324: 
                   20325:        * src/classes/op.C: process now gets its body on current language,
                   20326:          not as-is
                   20327: 
                   20328:        * src/main/untaint.C: ORIGINS mode removed UHTML
                   20329: 
                   20330:        * src/main/untaint.C: ORIGINS mode was bad - forgot about optimize
                   20331:          bit
                   20332: 
1.116     moko     20333:        * src/classes/xdoc.C: cached xslt [removed nocache forcing]
1.95      moko     20334: 
                   20335: 2001-11-21  paf
                   20336: 
                   20337:        * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h:
                   20338:          <xsl:output output options made identical to xsl:output
                   20339:          attributes exclusion:    cdata-section-elements what xalan can do
                   20340:          but that not used now:    it can escape and remove CDATA sections
                   20341: 
                   20342:        * src/: main/untaint.C, targets/cgi/parser3.C: optimized \r
                   20343:          produced by xslt
                   20344: 
                   20345:        * src/targets/cgi/parser3.C: removed debug cgi||1
                   20346: 
                   20347:        * src/main/: pa_string.C, untaint.C: cached some string::size() es
                   20348: 
                   20349:        * src/: classes/table.C, main/pa_string.C, main/untaint.C,
                   20350:          targets/cgi/parser3.C: table.append bug fixed: forgot to switch
                   20351:          default language for {code}, it happen to change it's language
                   20352:          from CLEAN, so later refused to split by CLEAN \t
                   20353: 
                   20354: 2001-11-20  paf
                   20355: 
1.116     moko     20356:        * src/: classes/Makefile.am, classes/table.C, main/Makefile.am,
                   20357:          main/pa_exception.C, types/Makefile.am: moved ident.C & co to
1.95      moko     20358:          bottom of dependeces, so that errors would popup quicklier, fixed
                   20359:          line numbering in table::sql
                   20360: 
                   20361: 2001-11-19  paf
                   20362: 
                   20363:        * src/: classes/op.C, include/pa_request.h, include/pa_string.h,
                   20364:          include/pa_types.h, main/pa_globals.C, main/pa_request.C,
                   20365:          main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
                   20366:          targets/isapi/parser3isapi.C, types/pa_wcontext.C,
                   20367:          types/pa_wcontext.h: UL_CLEAN pieces now inherit UL_OPTIMIZED_BIT
                   20368:          at wcontext.write
                   20369: 
1.116     moko     20370:        * src/targets/: Makefile.am, cgi/parser3.C: #if _MSC_VER
1.95      moko     20371:          _set_new_handler
                   20372: 
1.116     moko     20373:        * src/targets/: cgi/parser3.C, isapi/parser3isapi.C:
                   20374:          set_new_handler in apache&isapi
1.95      moko     20375: 
                   20376: 2001-11-16  paf
                   20377: 
                   20378:        * src/targets/cgi/parser3.C: pool debug @ die
                   20379: 
                   20380:        * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
                   20381:          removed 8 bytes from String, 2 bytes from
                   20382:          string::chunk::row::item
                   20383: 
                   20384:        * src/main/pa_string.C: removed 1+4 bytes from String
                   20385: 
                   20386:        * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
                   20387:          types/pa_vstring.C: removed 1+4 bytes from String
                   20388: 
                   20389:        * src/main/pa_pool.C: introducing estimating String::cstr_bufsize,
                   20390:          0
                   20391: 
                   20392:        * src/: include/pa_globals.h, include/pa_string.h,
                   20393:          include/pa_types.h, main/pa_globals.C, main/pa_pool.C,
                   20394:          main/pa_request.C, main/untaint.C, sql/pa_sql_driver.h,
                   20395:          targets/cgi/parser3.C: introducing estimating
                   20396:          String::cstr_bufsize, 0
                   20397: 
                   20398:        * src/: main/pa_pool.C, include/pa_pool.h: die in pool::fail
                   20399: 
                   20400:        * src/: targets/cgi/parser3.C, main/pa_pool.C: die in pool::fail
                   20401: 
                   20402:        * src/: main/execute.C, main/pa_pool.C, targets/cgi/parser3.C,
                   20403:          include/pa_pool.h: die in pool::fail
                   20404: 
                   20405: 2001-11-15  paf
                   20406: 
                   20407:        * src/: include/pa_exception.h, main/execute.C, main/main.dsp,
                   20408:          main/pa_exception.C, targets/cgi/parser3.C: exception with
                   20409:          dynamic buffer re-back now with counter
                   20410: 
                   20411:        * src/: include/pa_exception.h, main/pa_exception.C: exception with
                   20412:          static buffer back
                   20413: 
                   20414:        * src/targets/cgi/parser3.C: std::
                   20415: 
                   20416:        * src/: classes/classes.awk, include/pa_config_auto.h.in,
                   20417:          include/pa_config_includes.h: setnewhandler check
                   20418: 
1.116     moko     20419:        * src/include/pa_config_auto.h.in: makes
1.95      moko     20420: 
                   20421:        * src/targets/cgi/parser3.C: set_new_handler started
                   20422: 
                   20423: 2001-11-14  paf
                   20424: 
                   20425:        * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
                   20426:          was wrong
                   20427: 
                   20428:        * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
                   20429:          was wrong
                   20430: 
                   20431:        * src/main/pa_request.C: z
                   20432: 
                   20433:        * src/: include/pa_common.h, main/pa_common.C: snprintf on buffer
                   20434:          full returns win32 -1 solaris >buffer_size
                   20435: 
                   20436:          checked all that
                   20437: 
                   20438:        * src/classes/op.C: ^untaint{body} as-is default now
                   20439: 
                   20440:        * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
                   20441:          types/pa_vstateless_class.h, types/pa_vstateless_object.h: merged
                   20442:          with no_bad_constructors_try
                   20443: 
                   20444:        * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
                   20445:          types/pa_vstateless_class.h, types/pa_vstateless_object.h: fixed
                   20446:          this: $bred[^string::length[]] $bred[^response::clear[]]
                   20447:          $bred[^int::int[]]
                   20448: 
                   20449:          now VObject creation moved into overriden
                   20450:          VClass::create_new_value, thus 0 from create_new_value means that
                   20451:          class has no ctors
                   20452: 
                   20453: 2001-11-13  paf
                   20454: 
                   20455:        * src/classes/classes.C: returned accedently removed if in foreach
                   20456:          callbacks [when hash no-0-restructure]
                   20457: 
                   20458: 2001-11-12  paf
                   20459: 
                   20460:        * src/main/pa_pool.C: changed xdoc createXXX politics, now string
                   20461:          passed as-is to method, xalan makes & into &amp; itself
                   20462: 
                   20463:        * src/classes/date.C: date.roll parser2 alg used
                   20464: 
                   20465:        * src/: classes/classes.C, classes/hash.C, classes/xdoc.C,
                   20466:          include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
                   20467:          main/pa_dictionary.C, main/pa_hash.C,
                   20468:          main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C: hash
                   20469:          now does not containt 0 values. put 0 actullay removes.  no check
                   20470:          on 0 value in foreach now required
                   20471: 
                   20472: 2001-11-11  paf
                   20473: 
                   20474:        * src/sql/pa_sql_driver.h: removed extra constructor, doc
                   20475: 
                   20476:        * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: CRLF
                   20477: 
                   20478:        * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql
                   20479:          driver initialize not const
                   20480: 
                   20481: 2001-11-10  paf
                   20482: 
                   20483:        * src/main/pa_exec.C: doc
                   20484: 
                   20485: 2001-11-09  paf
                   20486: 
                   20487:        * src/classes/: string.C, xdoc.C: xdoc::set{code} now untaints
                   20488:          param properly
                   20489: 
                   20490:        * src/classes/string.C: string.save now does untainting before
                   20491:          saving
                   20492: 
                   20493:        * src/main/pa_common.C: line endings fixing fixed last piece[was
                   20494:          still cstr oriented]
                   20495: 
                   20496:        * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
                   20497:          line endings fixing got rid of cstr, now must work ok with post
                   20498:          multipart
                   20499: 
                   20500:        * src/types/pa_vform.C: line endings fixed at post / multipart /
                   20501:          not file  also now
                   20502: 
                   20503: 2001-11-08  paf
                   20504: 
                   20505:        * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
                   20506:          include/pa_db_manager.h, include/pa_sql_driver_manager.h,
                   20507:          include/pa_stylesheet_manager.h, main/pa_charset_manager.C,
                   20508:          main/pa_db_manager.C, main/pa_sql_driver_manager.C,
                   20509:          main/pa_stylesheet_manager.C: restructured Cache manager to be
                   20510:          simple parent, not second parent [gcc 2.96 strangly refused to
                   20511:          call virtual from second parent]
                   20512: 
1.116     moko     20513:        * src/: include/pa_common.h, main/Makefile.am,
                   20514:          targets/cgi/pa_pool.C: makes
1.95      moko     20515: 
                   20516:        * src/: include/pa_request.h, main/pa_request.C,
                   20517:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C: apache
                   20518:          'status' class enabler
                   20519: 
                   20520:          <Location /parser-status.html> ParserStatusAllowed </Location>
                   20521: 
                   20522:        * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
                   20523:          include/pa_db_manager.h, include/pa_sql_driver_manager.h,
                   20524:          include/pa_stylesheet_manager.h, main/main.dsp,
                   20525:          main/pa_cache_managers.C, main/pa_charset_manager.C,
                   20526:          main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
                   20527:          main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
                   20528:          types/pa_vstatus.h: cache_managers, maybe-expiring every request
                   20529:          todo: apache 'status' class enabler
                   20530: 
                   20531: 2001-11-05  paf
                   20532: 
                   20533:        * src/main/: pa_db_connection.C, pa_db_manager.C: expiration from
                   20534:          debug to normal
                   20535: 
                   20536:        * src/main/: pa_db_connection.C, pa_db_manager.C, pa_request.C:
                   20537:          hence i removed skipping 0 values in hash::for_each-es we need to
                   20538:          check cleaned cache items manually. few more checks.
                   20539: 
                   20540:          expiring to 0 time was wrong, changed to 'now' time
                   20541: 
                   20542:        * src/targets/cgi/parser3.C: read can return 0, that means sort of
                   20543:          sig_pipe on freebsd [moko's experiments].   checked that in cgi,
                   20544:          on apache already done :)
                   20545: 
                   20546:        * src/main/: pa_db_connection.C, pa_db_manager.C: hence i removed
                   20547:          skipping 0 values in hash::for_each-es we need to check cleaned
                   20548:          cache items manually
                   20549: 
                   20550:        * src/main/: pa_db_connection.C, pa_db_table.C:
                   20551:          parser_multithreaded check was wrong
                   20552: 
                   20553:        * src/: classes/classes.C, classes/classes.h, classes/date.C,
                   20554:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   20555:          classes/hashfile.C, classes/image.C, classes/int.C,
                   20556:          classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
                   20557:          classes/string.C, classes/table.C, classes/void.C,
                   20558:          classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   20559:          include/pa_array.h, include/pa_charset_connection.h,
                   20560:          include/pa_charset_manager.h, include/pa_common.h,
                   20561:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   20562:          include/pa_db_connection.h, include/pa_db_manager.h,
                   20563:          include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
                   20564:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   20565:          include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
                   20566:          include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
                   20567:          include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
                   20568:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   20569:          include/pa_stack.h, include/pa_string.h,
                   20570:          include/pa_stylesheet_connection.h,
                   20571:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   20572:          include/pa_threads.h, include/pa_types.h, main/compile.C,
                   20573:          main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
                   20574:          main/execute.C, main/pa_array.C, main/pa_charset_connection.C,
                   20575:          main/pa_charset_manager.C, main/pa_common.C,
                   20576:          main/pa_db_connection.C, main/pa_db_manager.C,
                   20577:          main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
                   20578:          main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
                   20579:          main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
                   20580:          main/pa_socks.C, main/pa_sql_driver_manager.C,
                   20581:          main/pa_status_provider.C, main/pa_string.C,
                   20582:          main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
                   20583:          sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
                   20584:          targets/cgi/pa_threads.C, targets/cgi/parser3.C,
                   20585:          targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
                   20586:          targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
                   20587:          targets/isapi/pool_storage.h, types/pa_valiased.C,
                   20588:          types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
                   20589:          types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
                   20590:          types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
                   20591:          types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
                   20592:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
                   20593:          types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
                   20594:          types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
                   20595:          types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
                   20596:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
                   20597:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   20598:          types/pa_vstateless_object.h, types/pa_vstatus.h,
                   20599:          types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.C,
                   20600:          types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
                   20601:          types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
                   20602:          types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
                   20603:          $status:db fixed used not initialized in db_connection & db_table
                   20604: 
                   20605:        * src/: include/pa_charset_connection.h, main/pa_charset_manager.C:
                   20606:          $status:charset
                   20607: 
                   20608:        * src/: classes/xdoc.C, include/pa_db_connection.h,
                   20609:          include/pa_stylesheet_connection.h,
                   20610:          include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C,
                   20611:          types/pa_vstatus.h: $status:stylesheet
                   20612: 
                   20613:        * src/: include/pa_charset_manager.h, include/pa_db_manager.h,
                   20614:          include/pa_request.h, include/pa_sql_connection.h,
                   20615:          include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
                   20616:          main/main.dsp, main/pa_charset_manager.C, main/pa_common.C,
                   20617:          main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
                   20618:          main/pa_sql_driver_manager.C, main/pa_status_provider.C,
                   20619:          main/pa_stylesheet_manager.C, types/pa_vstatus.h,
                   20620:          types/pa_vxnode.C, types/types.dsp: started status parser class
                   20621: 
                   20622: 2001-11-01  paf
                   20623: 
                   20624:        * src/include/pa_config_auto.h.in: makes
                   20625: 
                   20626:        * src/main/pa_hash.C: removed old extra include
                   20627: 
                   20628:        * src/: classes/math.C, include/pa_common.h: HAVE_TRUNC HAVE_ROUND
                   20629:          checks [for hp, there are such in math.h]
                   20630: 
                   20631:        * src/classes/op.C: ^for endless loop check strightened
                   20632: 
                   20633:        * src/: classes/hash.C, classes/op.C, main/execute.C: changed root
                   20634:          behavior in native calls.  it left unchanged, so ^for ^foreach &
                   20635:          co can use r.root to write their i & key,value there
                   20636: 
                   20637:        * src/classes/op.C: detected for var storage bug, fixed.
                   20638:          todo:foreach
                   20639: 
                   20640:        * src/: classes/hash.C, classes/xdoc.C, classes/xnode.C,
                   20641:          include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
                   20642:          types/pa_vhash.h, types/pa_vxnode.C: hash locking disabled
                   20643:          changing of hash inside of foreach
                   20644: 
                   20645:        * src/: classes/hash.C, classes/hashfile.C, types/pa_vhashfile.C:
                   20646:          ^hashfile.foreach[key|value]{body}[[separator]|{separator}] prev
                   20647:          were hash.foreach
                   20648: 
                   20649:        * src/: classes/hash.C, classes/op.C, types/pa_vmethod_frame.h,
                   20650:          types/pa_vstring.C, types/pa_vstring.h:
                   20651:          ^foreach[key|value]{body}[[separator]|{separator}]
                   20652: 
                   20653:        * src/: classes/hash.C, include/pa_hash.h, main/pa_hash.C,
                   20654:          types/pa_vcookie.C: ^hash.delete[key]
                   20655: 
                   20656: 2001-10-31  paf
                   20657: 
                   20658:        * src/main/: compile.C, pa_common.C: completely empty file now
                   20659:          considered "read", not ignored [not perfect trick used]
                   20660: 
                   20661:        * src/main/pa_common.C: simplier common ifdefs
                   20662: 
                   20663:        * src/main/pa_common.C: typing bug in common - bad ifdeff
                   20664: 
                   20665:        * src/main/pa_db_connection.C: z
                   20666: 
                   20667:        * src/main/: pa_db_connection.C, pa_sql_driver_manager.C:       //
                   20668:          lockdetector flags
                   20669:                  dbenv.lk_detect=DB_LOCK_RANDOM;
                   20670: 
                   20671:        * src/main/pa_sql_driver_manager.C: hiding passwords and addresses
                   20672:          from accidental show [imagine user forgot @exception]
                   20673: 
                   20674:        * src/classes/table.C: ^table.save[[nameless|+append;]path]
                   20675: 
                   20676:        * src/: classes/file.C, classes/image.C, classes/mail.C,
                   20677:          classes/string.C, classes/xnode.C, include/pa_common.h,
                   20678:          main/pa_common.C: ^string.save[[append;]path]
                   20679: 
                   20680:        * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
                   20681:          main/execute.C: \ in expression: int divide 10/3=3
                   20682: 
                   20683:        * src/types/pa_vhashfile.h: hashfile  ^delete to do something only
                   20684:          inside of ^cache
                   20685: 
                   20686:        * src/: include/pa_threads.h, main/pa_db_connection.C,
                   20687:          main/pa_db_table.C, targets/cgi/pa_threads.C,
                   20688:          targets/isapi/pa_threads.C: libdb DB_THREAD flag only when really
                   20689:          needed
                   20690: 
                   20691: 2001-10-30  paf
                   20692: 
                   20693:        * src/: classes/classes.dsp, main/main.dsp,
                   20694:          targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
                   20695:          types/types.dsp: enabled debug incremental compile
                   20696: 
                   20697:        * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
                   20698:          form post data line endings not reformatted now.
                   20699: 
                   20700:        * src/types/: pa_vform.C, pa_vform.h: AppendFormEntry length param
                   20701:          now required [had bug when file= has no value]
                   20702: 
                   20703:        * src/main/: pa_db_connection.C, pa_db_manager.C, pa_db_table.C,
                   20704:          pa_exec.C, pa_request.C, pa_sql_driver_manager.C, pa_string.C:
                   20705:          cstr(asis) default param removed
                   20706: 
                   20707:        * src/classes/xdoc.C: rolled back {} in xdoc.createTextNode for now
                   20708: 
                   20709:        * src/classes/xdoc.C: rolled back {} in xdoc.createElement for now
                   20710: 
                   20711:        * src/include/pa_dir.h: LOAD_DIR fixed
                   20712: 
                   20713:        * src/types/pa_vform.C: VForm::AppendFormEntry {length convention
                   20714:          was broken} fix_line_breaks
                   20715: 
                   20716:        * src/include/: pa_config_fixed.h, pa_pragma_pack_begin.h,
                   20717:          pa_pragma_pack_end.h, pa_string.h, pa_types.h: String & Origin
                   20718:          packed with #pragma pack
                   20719: 
1.116     moko     20720:        * src/include/pa_config_auto.h.in: pragma detection
1.95      moko     20721: 
                   20722: 2001-10-29  paf
                   20723: 
                   20724:        * src/types/pa_wcontext.h: bitfield syntax stricter
                   20725: 
                   20726:        * src/: classes/file.C, types/pa_vimage.C: image&file couple stack
                   20727:          string hash.puts
                   20728: 
                   20729:        * src/include/pa_sql_connection.h: SQL_CONNECTION_FUNC_GUARDED name
                   20730: 
                   20731:        * src/include/pa_sql_connection.h: there were one wrong
                   20732:          SQL_CONNECTION_FUNC_GUARDED [failed]
                   20733: 
                   20734:        * src/targets/isapi/pa_pool.C: added isapi&apache real_malloc debug
                   20735:          param.someday either ifdef or remove it
                   20736: 
                   20737:        * src/targets/cgi/: pa_pool.C, parser3.C: removed debug defines
                   20738: 
                   20739:        * src/main/untaint.C: optimizing returned after debugging
                   20740: 
                   20741:        * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
                   20742:          main/untaint.C: memory hunging #pragma pack(1)
                   20743: 
                   20744:          16 419 844 13 169 394
                   20745: 
                   20746:        * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
                   20747:          targets/cgi/pa_pool.C: String size_t replace to uint in proper
                   20748:          places [todo:Array]
                   20749: 
                   20750:        * src/: main/execute.C, targets/cgi/pa_pool.C,
                   20751:          targets/cgi/parser3.dsp, types/pa_wcontext.h,
                   20752:          types/pa_wwrapper.h: debugging memory WContext flags to bits
                   20753: 
                   20754:          total 5 652 652/158731 total 5 469 332/158731
                   20755: 
                   20756:        * src/: include/pa_array.h, main/pa_array.C: debugging memory
                   20757:          Array:: without cache in get/put now
                   20758: 
                   20759:          [Mon Oct 29 18:23:02 2001] total 5 796 092/158731 [Mon Oct 29
                   20760:          18:25:27 2001] total 5 652 652/158731
                   20761: 
                   20762:        * src/: include/pa_string.h, main/pa_string.C,
                   20763:          targets/cgi/pa_pool.C: debugging memory String::fused_rows func
                   20764:          now
                   20765: 
                   20766:          [Mon Oct 29 17:55:45 2001] total 5917436/158731 [Mon Oct 29
                   20767:          18:11:53 2001] total 5796092/158731
                   20768: 
                   20769:        * src/: classes/file.C, include/pa_hash.h, include/pa_string.h,
                   20770:          main/pa_globals.C, targets/cgi/pa_pool.C: debugging memory hash
                   20771:          key ref now
                   20772: 
                   20773:          [Mon Oct 29 16:01:17 2001] total 17050496/202647 [Mon Oct 29
                   20774:          17:11:17 2001] total 16867948/202658
                   20775: 
                   20776:        * src/: classes/file.C, classes/image.C, classes/string.C,
                   20777:          classes/xdoc.C, include/pa_pool.h, include/pa_string.h,
                   20778:          main/execute.C, main/pa_array.C, main/pa_common.C,
                   20779:          main/pa_hash.C, main/pa_sql_driver_manager.C, main/pa_string.C,
                   20780:          main/untaint.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C,
                   20781:          types/pa_vcookie.C, types/pa_vstring.h: debuggging memory.
                   20782:          string::as_int/double now usually uses stack, not heap [200K out
                   20783:          of 17M :)] VString(String&) not copies reference [29M -> 17M]
                   20784: 
                   20785:        * src/main/pa_sql_driver_manager.C: ping to have services [old
                   20786:          hiding bug]
                   20787: 
                   20788:        * src/Makefile.am: .am order
                   20789: 
                   20790:        * src/: include/pa_array.h, include/pa_charset_manager.h,
                   20791:          include/pa_db_connection.h, include/pa_db_manager.h,
                   20792:          include/pa_db_table.h, include/pa_hash.h, include/pa_request.h,
                   20793:          include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
                   20794:          include/pa_threads.h, types/pa_valiased.h, types/pa_vhashfile.h,
                   20795:          types/pa_vstateless_class.h, types/pa_wcontext.h: gcc 3.0.1
                   20796:          required "friend class"
                   20797: 
                   20798:          ../include/pa_request.h:51: friend declaration requires
                   20799:          class-key, i.e. `friend    class Temp_lang'
                   20800: 
                   20801:        * src/: include/pa_exception.h, include/pa_sql_connection.h,
                   20802:          main/pa_exception.C, main/pa_sql_driver_manager.C,
                   20803:          sql/pa_sql_driver.h: sql driver impl changed in _throw part.
                   20804: 
                   20805:          the idea is to #1 jump to C++ some function to main body, where
                   20806:          every function stack frame has exception unwind information and
                   20807:          from there... #2 propagate_exception()
                   20808: 
                   20809: 2001-10-28  paf
                   20810: 
                   20811:        * src/main/pa_db_connection.C: removed old consts
                   20812: 
                   20813:        * src/main/pa_db_connection.C: expire table [was accidently pasted
                   20814:          with wrong type/cast]
                   20815: 
                   20816:        * src/main/: pa_db_connection.C, pa_db_table.C: exception
                   20817:          translation
                   20818: 
1.116     moko     20819:        * src/: classes/Makefile.am, targets/cgi/Makefile.am: db makes.
1.95      moko     20820:          remember to build DB2 with -fexceptions!!!
                   20821: 
                   20822:        * src/main/pa_db_table.C: DB_RMW defed
                   20823: 
                   20824:        * src/: include/pa_config_auto.h.in, include/pa_config_fixed.h,
                   20825:          include/pa_db_connection.h, include/pa_db_manager.h,
                   20826:          include/pa_db_table.h, main/pa_db_connection.C,
                   20827:          main/pa_db_table.C: db2 on linux with DB 2.4.14: (6/2/98)
                   20828: 
                   20829: 2001-10-27  paf
                   20830: 
                   20831:        * src/: classes/hashfile.C, include/pa_db_connection.h,
                   20832:          include/pa_db_table.h, main/pa_db_connection.C,
                   20833:          main/pa_db_manager.C, main/pa_db_table.C, main/pa_globals.C,
                   20834:          types/pa_vhashfile.C: DB2 ifdefs
                   20835: 
1.116     moko     20836:        * src/: classes/Makefile.am, include/pa_config_fixed.h,
                   20837:          main/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
1.95      moko     20838:          makes with DB2
                   20839: 
1.116     moko     20840:        * src/: include/pa_config_auto.h.in, main/Makefile.am,
                   20841:          types/Makefile.am: makes db
1.95      moko     20842: 
                   20843:        * src/: main/pa_globals.C, targets/cgi/parser3.dsp,
                   20844:          targets/isapi/parser3isapi.dsp: vc projects libdb ifdefed into
                   20845:          globals.C
                   20846: 
                   20847:        * src/: classes/hashfile.C, include/pa_db_connection.h,
                   20848:          include/pa_db_table.h, main/pa_db_connection.C,
                   20849:          main/pa_db_table.C: ^hashfile.clear[]
                   20850: 
                   20851:        * src/classes/classes.awk: no $ in var names
                   20852: 
                   20853:        * src/main/: pa_db_connection.C, pa_db_manager.C: db expiration
                   20854:          connection&table [forgotten calls]
                   20855: 
                   20856: 2001-10-26  paf
                   20857: 
                   20858:        * src/main/pa_db_connection.C: db checkpoints
                   20859: 
                   20860:        * src/: include/pa_db_connection.h, main/pa_db_connection.C: db
                   20861:          checkpoints
                   20862: 
                   20863:        * src/classes/xdoc.C: xdoc createTextNode createElement UL_XML
                   20864:          default. but entities still reparsed. todo: tothink
                   20865: 
                   20866:        * src/main/pa_db_connection.C: db recover mech 2
                   20867: 
                   20868:        * src/: classes/hashfile.C, include/pa_db_connection.h,
                   20869:          include/pa_db_manager.h, include/pa_db_table.h,
                   20870:          include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
                   20871:          main/pa_db_table.C, main/pa_hash.C, types/pa_vhashfile.C,
                   20872:          types/pa_vhashfile.h: db connections & tables now cached at
                   20873:          create time & multithreaded
                   20874: 
                   20875:        * src/: classes/xdoc.C, types/pa_vxdoc.h: transform2 for
                   20876:          parsed_source
                   20877: 
                   20878:        * src/main/pa_db_connection.C: about to remove connection from
                   20879:          vhashfile
                   20880: 
                   20881:        * src/: main/pa_db_table.C, classes/hashfile.C: db: child
                   20882:          transaction commit/rollback responsibility left to parent [as it
                   20883:          sould - else there were a bug with double free]
                   20884: 
                   20885:        * src/include/pa_db_table.h: db: child transaction commit/rollback
                   20886:          responsibility left to parent [as it sould - else there were a
                   20887:          bug with double free]
                   20888: 
                   20889: 2001-10-25  paf
                   20890: 
                   20891:        * src/: classes/hashfile.C, include/pa_common.h,
                   20892:          include/pa_db_connection.h, include/pa_db_manager.h,
                   20893:          main/main.dsp, main/pa_db_connection.C, main/pa_db_manager.C,
                   20894:          types/pa_vhashfile.C, types/pa_vhashfile.h,
                   20895:          include/pa_db_table.h, main/pa_db_table.C: started db_home
                   20896:          [multiple, cached] todo: autorecover [tried, but not succeded,
                   20897:          yet]
                   20898: 
                   20899:        * src/include/pa_dir.h: ancient gpf on dir not found fixed
                   20900: 
                   20901:        * src/: include/pa_db_connection.h, main/pa_db_manager.C:
                   20902:          transaction parent passed
                   20903: 
                   20904: 2001-10-24  parser
                   20905: 
1.116     moko     20906:        * src/classes/Makefile.am: makes
1.95      moko     20907: 
                   20908:        * src/targets/: cgi/pool_storage.h, isapi/parser3isapi.C,
                   20909:          isapi/pool_storage.h: pool_storage fixed
                   20910: 
                   20911:        * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C,
                   20912:          types/pa_vform.h: form fix_line_breaks
                   20913: 
1.116     moko     20914:        * src/targets/cgi/pool_storage.h: makes
1.95      moko     20915: 
                   20916:        * src/: classes/Makefile.am, targets/cgi/Makefile.am,
                   20917:          targets/cgi/pool_storage.h: makes
                   20918: 
                   20919:        * src/sql/pa_sql_driver.h: version
                   20920: 
                   20921:        * src/: include/pa_common.h, main/Makefile.am, main/pa_common.C,
                   20922:          types/pa_vform.C, types/pa_vform.h: .am
                   20923: 
                   20924:        * src/main/: pa_db_connection.C, pa_db_manager.C: hashfile setted
                   20925:          this: DB_RMW Acquire write locks instead of read locks when doing
                   20926:          the retrieval. Setting this flag may decrease the likelihood of
                   20927:          deadlock during a read-modify-write cycle by immediately
                   20928:          acquiring the write lock during the read part of the cycle so
                   20929:          that another thread of control acquiring a read lock for the same
                   20930:          item, in its own read-modify-write cycle, will not result in
                   20931:          deadlock
                   20932: 
                   20933:        * src/targets/isapi/parser3isapi.dsp: doc
                   20934: 
                   20935:        * src/: classes/hashfile.C, types/pa_vhashfile.h: hashfile 1
                   20936: 
                   20937:        * src/: classes/hashfile.C, include/pa_request.h: hashfile.cache 0
                   20938: 
                   20939:        * src/: classes/hashfile.C, include/pa_db_connection.h,
                   20940:          main/pa_db_connection.C: hashfile expired deleted from db when
                   20941:          get & iterate
                   20942: 
                   20943:        * src/: main/pa_db_connection.C, types/pa_vhashfile.C: hashfile
                   20944:          expiring 1
                   20945: 
                   20946:        * src/types/: pa_vhashfile.C, pa_vhashfile.h: hashfile expiring 0
                   20947: 
                   20948:        * src/: main/pa_db_connection.C, types/pa_vhashfile.C:
                   20949:          db_connection not bothers with key when not returning expired
                   20950:          data
                   20951: 
                   20952:        * src/: include/pa_db_connection.h, main/pa_db_connection.C,
                   20953:          types/pa_vhashfile.C: db_cursor constructor public now
                   20954: 
                   20955:        * src/: include/pa_db_connection.h, main/pa_db_connection.C,
                   20956:          types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile data
                   20957:          stamped, todo: put_element analize
                   20958: 
                   20959:        * src/: include/pa_db_connection.h, include/pa_string.h,
                   20960:          main/pa_db_connection.C, main/pa_string.C: hashfile pieced
                   20961:          serialize. todo stamp
                   20962: 
                   20963: 2001-10-23  parser
                   20964: 
                   20965:        * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
                   20966:          classes/image.C, classes/mail.C, classes/response.C,
                   20967:          classes/string.C, classes/table.C, classes/xdoc.C,
                   20968:          include/pa_config_fixed.h, include/pa_db_connection.h,
                   20969:          main/pa_common.C, main/pa_db_connection.C, main/pa_request.C,
                   20970:          types/pa_value.h, types/pa_vcookie.C, types/pa_vhash.h,
                   20971:          types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vresponse.h,
                   20972:          types/pa_vtable.C: ^hashfile.hash[]
                   20973: 
                   20974:        * src/: classes/hashfile.C, classes/xdoc.C,
                   20975:          include/pa_config_fixed.h, main/pa_db_manager.C,
                   20976:          main/pa_globals.C: ifdefs so it compiled without db
                   20977: 
                   20978:        * src/: classes/hashfile.C, include/pa_db_connection.h,
                   20979:          include/pa_db_manager.h, main/pa_db_connection.C,
                   20980:          main/pa_db_manager.C, types/pa_vhashfile.h:
                   20981:          ^hashfile.transaction{code} ^hashfile:clear[filename]
                   20982:          ^hashfile.delete[key]
                   20983: 
                   20984: 2001-10-22  parser
                   20985: 
                   20986:        * src/targets/: cgi/pa_pool.C, cgi/parser3.C, cgi/parser3.dsp,
                   20987:          cgi/pool_storage.h, isapi/pool_storage.h: cgi += pool cleanups
                   20988: 
                   20989:        * src/: classes/classes.dsp, classes/hashfile.C, classes/xdoc.C,
                   20990:          classes/xnode.C, include/pa_charset_connection.h,
                   20991:          include/pa_db_connection.h, include/pa_db_manager.h,
                   20992:          include/pa_exception.h, include/pa_sapi.h,
                   20993:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   20994:          include/pa_stylesheet_connection.h,
                   20995:          include/pa_stylesheet_manager.h,
                   20996:          include/pa_xslt_stylesheet_manager.h, main/main.dsp,
                   20997:          main/pa_db_connection.C, main/pa_db_manager.C,
                   20998:          main/pa_exception.C, main/pa_globals.C, main/pa_pool.C,
                   20999:          main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
                   21000:          main/pa_xslt_stylesheet_manager.C, targets/cgi/parser3.C,
                   21001:          targets/isapi/parser3isapi.C, types/pa_vhashfile.C,
                   21002:          types/pa_vhashfile.h, types/pa_vxdoc.C, types/pa_vxnode.C,
                   21003:          types/types.dsp: hashfile 0
                   21004: 
                   21005:        * src/types/pa_vhashfile.C: z
                   21006: 
                   21007:        * src/: classes/classes.dsp, classes/hashfile.C,
                   21008:          include/pa_config_fixed.h, main/execute.C,
                   21009:          targets/cgi/parser3.dsp, types/pa_vhashfile.C,
                   21010:          types/pa_vhashfile.h, types/types.dsp: hashfile -100
                   21011: 
                   21012:        * src/targets/isapi/parser3isapi.C: SEH minor ifdef changes
                   21013: 
                   21014:        * src/: include/pa_exception.h, include/pa_request.h,
                   21015:          main/execute.C, main/pa_exception.C, main/pa_request.C,
                   21016:          targets/cgi/parser3.C, targets/cgi/parser3.dsp,
                   21017:          types/pa_vclass.h, types/pa_vobject.h: stack backtrace
                   21018: 
                   21019: 2001-10-19  parser
                   21020: 
                   21021:        * src/include/pa_pool.h: header
                   21022: 
                   21023:        * src/main/pa_pool.C: auto compiled on gcc
                   21024: 
                   21025:        * src/classes/image.C: comment
                   21026: 
1.116     moko     21027:        * src/: include/pa_pool.h, main/pa_common.C: makes
1.95      moko     21028: 
                   21029:        * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   21030:          types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
                   21031:          types/pa_vxnode.h: xnode clone got freed
                   21032: 
                   21033:        * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
                   21034:          include/pa_types.h, main/pa_pool.C: first c++ exceptions result:
                   21035:          can free up xalandomstring resulting from pool::transcode
                   21036: 
                   21037:        * src/: classes/Makefile.am, classes/xdoc.C, classes/xnode.C,
                   21038:          include/pa_config_fixed.h, include/pa_exception.h,
                   21039:          include/pa_stylesheet_connection.h, main/pa_charset_connection.C,
                   21040:          main/pa_exception.C, main/pa_pool.C, types/pa_vxdoc.C,
                   21041:          types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: switched
                   21042:          to c++ exceptions 1xml configure fixed to exclude xalan-patch
                   21043:          from non-xml compile
                   21044: 
                   21045:        * src/main/pa_request.C: pool:: context - get_context
                   21046: 
                   21047:        * src/: classes/classes.h, classes/date.C, classes/double.C,
                   21048:          classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
                   21049:          classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
                   21050:          classes/string.C, classes/table.C, classes/void.C,
                   21051:          include/pa_config_fixed.h, include/pa_exception.h,
                   21052:          include/pa_pool.h, include/pa_request.h, include/pa_types.h,
                   21053:          main/compile.C, main/compile_tools.C, main/execute.C,
                   21054:          main/pa_array.C, main/pa_common.C, main/pa_dictionary.C,
                   21055:          main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
                   21056:          main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
                   21057:          main/pa_string.C, main/pa_table.C, main/untaint.C,
                   21058:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                   21059:          types/pa_value.h, types/pa_vbool.h, types/pa_vdouble.h,
                   21060:          types/pa_vfile.h, types/pa_vform.C, types/pa_vhash.h,
                   21061:          types/pa_vint.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
                   21062:          types/pa_vstateless_class.h, types/pa_vtable.C,
                   21063:          types/pa_wcontext.C, types/pa_wwrapper.h: switched to c++
                   21064:          exceptions 0
                   21065: 
                   21066:        * src/classes/classes.awk: $ removed
                   21067: 
                   21068: 2001-10-18  parser
                   21069: 
                   21070:        * src/types/pa_vcookie.C: cookie:CLASS
                   21071: 
                   21072:        * src/main/main.dsp: project
                   21073: 
                   21074:        * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C: vxdoc
                   21075:          set_document & ctor question "who owns document" solved
                   21076: 
                   21077:        * src/: classes/xdoc.C, main/pa_pool.C: extra free removed
                   21078: 
                   21079:        * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
                   21080:          main/pa_pool.C: encoding in dom creating funcs
                   21081: 
                   21082:        * src/: classes/xdoc.C, types/pa_vxdoc.h: dom created by create can
                   21083:          be transformed now
                   21084: 
                   21085:        * src/classes/xdoc.C: dom created by create can be transformed now
                   21086: 
                   21087:        * src/classes/xdoc.C: z
                   21088: 
                   21089:        * src/classes/xdoc.C: comment
                   21090: 
                   21091:        * src/: classes/xdoc.C, classes/xnode.C, main/compile.tab.C: xdoc
                   21092:          create now uses XercesDocumentBridge, appendChild&co now works
                   21093: 
                   21094:        * src/include/pa_stylesheet_connection.h: prev stylesheet destroyed
                   21095:          @ recompile
                   21096: 
                   21097:        * src/main/: compile.tab.C, compile.y, pa_request.C: ^: no colon in
                   21098:          $origin @exception[
                   21099: 
                   21100:        * src/classes/: xdoc.C, xnode.C: xdoc::create[] now. and all dom
                   21101:          tag names forced to XML lang
                   21102: 
                   21103:        * src/: classes/classes.dsp, classes/xdoc.C, types/types.dsp: fiew
                   21104:          leechy-found bugs in code&doc fixed
                   21105: 
                   21106: 2001-10-17  parser
                   21107: 
                   21108:        * src/: classes/classes.dsp, classes/string.C, main/pa_string.C,
                   21109:          types/pa_vxnode.h, types/types.dsp: string::mid fixed, string.mid
                   21110:          n functionality preserved
                   21111: 
                   21112:        * src/types/pa_vimage.h: removed unused vimage::save
                   21113: 
                   21114: 2001-10-16  parser
                   21115: 
                   21116:        * src/: classes/string.C, main/pa_string.C: $string.mid(p[;n])
                   21117: 
                   21118:        * src/classes/: xnode.C: removed few dom returns & changed op.txt
                   21119: 
                   21120:        * src/types/: pa_vhash.h, pa_vtable.h: hash can be used as boolean
                   21121: 
                   21122:        * src/classes/image.C: image.copy tolerance
                   21123: 
                   21124:        * src/classes/image.C: ::CopyResampled made gd2beta+my hands, very
                   21125:          ineffective, but works for small paleted image
                   21126: 
                   21127:        * src/types/pa_vimage.C: comment
                   21128: 
                   21129:        * src/classes/image.C: gd size/resize bugfix
                   21130: 
                   21131:        * src/: classes/classes.dsp, main/main.dsp,
                   21132:          targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
                   21133:          types/types.dsp: ident >nul 2>&1
                   21134: 
                   21135:        * src/main/pa_common.C: \r\n -> \n   DOS \r -> \n Macintosh on all
                   21136:          systems
                   21137: 
                   21138:        * src/: classes/image.C, types/pa_vimage.h: ^image.copy[source](src
                   21139:          x;src y;src w;src h;dst x;dst y[;dest w[;dest h]])
                   21140: 
                   21141: 2001-10-15  parser
                   21142: 
                   21143:        * src/main/execute.C: z
                   21144: 
                   21145:        * src/classes/: xdoc.C:     !::create{qualifiedName}
                   21146: 
                   21147:        * src/types/pa_vxnode.C:     document_type_node.
                   21148:                  !readonly attribute DOMString name
                   21149:              !notation_node.
                   21150:                  !readonly attribute DOMString publicId
                   21151:                  !readonly attribute DOMString systemId
                   21152: 
1.116     moko     21153:        * src/types/: pa_vcode_frame.h, pa_wcontext.C: code_frame fixed -
                   21154:          ::write badly passed string too transparently [failed to
                   21155:          intercept it]
1.95      moko     21156: 
                   21157:        * src/: classes/xdoc.C, classes/xnode.C, include/pa_config_fixed.h,
                   21158:          include/pa_request.h, main/pa_sql_driver_manager.C,
                   21159:          types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
                   21160:          types/pa_vxnode.h: DOM1 major addtion, only few
                   21161:          attributes/methods left
                   21162: 
                   21163: 2001-10-13  parser
                   21164: 
                   21165:        * src/: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
                   21166:          targets/isapi/parser3isapi.C: isapi&cgi couple non-pooled mallocs
                   21167:          in main handler
                   21168: 
                   21169:        * src/targets/isapi/pool_storage.h: isapi pool storage reverse
                   21170:          cleanups & frees order
                   21171: 
                   21172:        * src/types/pa_vcode_frame.h: couple comments
                   21173: 
                   21174:        * src/: main/execute.C, types/pa_vcode_frame.h: vcodeframe made
                   21175:          transparent enough to handle hash if creation&passing
                   21176: 
                   21177:        * src/: include/pa_config_fixed.h, main/execute.C,
                   21178:          main/pa_exception.C: noticed that vcodeframe not transparent
                   21179:          enough, would change now
                   21180: 
                   21181: 2001-10-12  parser
                   21182: 
                   21183:        * src/targets/isapi/parser3isapi.C: xalan&xerces multithread bug
                   21184:          fixed. initialization&free on each thread!
                   21185: 
                   21186:        * src/classes/: double.C, int.C, string.C: sql{}[$.default[({})]]
                   21187:          handling changed: now type of default param analized always, not
                   21188:          only at problem time, thus helping early problem spotting
                   21189: 
                   21190:        * src/: classes/classes.dsp, classes/xdoc.C, main/compile.tab.C,
                   21191:          main/main.dsp, main/pa_globals.C, targets/cgi/parser3.C,
                   21192:          targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
                   21193:          targets/isapi/parser3isapi.dsp, types/types.dsp: xalan&xerces
                   21194:          multithread bug fixed. initialization&free on each thread!
                   21195: 
                   21196: 2001-10-11  parser
                   21197: 
                   21198:        * src/classes/xnode.C: xnode.selectSingle now
                   21199: 
                   21200:        * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
                   21201:          include/pa_pool.h, include/pa_stylesheet_connection.h,
                   21202:          main/pa_exception.C, main/pa_pool.C: moved xslt exceptions
                   21203:          convertors out of Pool into Exception
                   21204: 
                   21205:        * src/main/pa_string.C: const
                   21206: 
                   21207:        * src/: include/pa_string.h, main/pa_string.C: restructured string:
                   21208:          linked pieces of same language together prior to String::replace
                   21209: 
                   21210:        * src/classes/hash.C:     !^hash.add[addme]
                   21211:              !^hash.sub[subme]
                   21212:              !^a.union[b] = new
                   21213:              !^a.intersection[b] = new
                   21214:              !^a.intersects[b] = bool
                   21215: 
                   21216:        * src/classes/hash.C:     !^hash::append[append_from]
                   21217: 
                   21218:        * src/: classes/hash.C, types/pa_vhash.h:
                   21219:          !^hash::create[[copy_from]]
                   21220: 
                   21221:        * src/: classes/string.C, classes/table.C, include/pa_globals.h,
                   21222:          include/pa_string.h, main/pa_globals.C, main/pa_string.C,
                   21223:          main/untaint.C, types/pa_vvoid.h: untaint lang origins table
                   21224:          fixed.  got rid of empty_string, which caused errors - it hasnt
                   21225:          exception but somebody[value.bark] tried to throw it on it's pool
                   21226: 
1.116     moko     21227:        * src/include/pa_config_auto.h.in: makes
1.95      moko     21228: 
                   21229: 2001-10-10  parser
                   21230: 
                   21231:        * src/: classes/op.C, main/compile.tab.C: ^error[msg]
                   21232: 
                   21233:        * src/main/: compile.tab.C, compile.y: ^a[
                   21234: 
                   21235:          @next_method  << now unclosed ] would be reported here
                   21236: 
                   21237:        * src/main/: compile.tab.C, compile.y: ^a[^b] more informative
                   21238:          compile error
                   21239: 
                   21240: 2001-10-09  parser
                   21241: 
1.116     moko     21242:        * src/: classes/Makefile.am, main/Makefile.am,
                   21243:          targets/cgi/Makefile.am, types/Makefile.am: makes
1.95      moko     21244: 
                   21245:        * src/classes/Makefile.am: makes
                   21246: 
                   21247:        * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: xml transform
                   21248:          win32 errors intercepted [xalan transformer patched and
                   21249:          incorporated]
                   21250: 
                   21251:        * src/: classes/classes.dsp, classes/xdoc.C,
                   21252:          include/pa_stylesheet_connection.h, main/main.dsp,
                   21253:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                   21254:          types/pa_vxdoc.h, types/pa_vxnode.h, types/types.dsp: xalan
                   21255:          patches starting
                   21256: 
                   21257:        * src/classes/: string.C, table.C: ^string.save[file]
                   21258: 
                   21259:        * src/classes/: date.C, table.C: calendar moved to date
                   21260: 
                   21261:        * src/classes/: op.C, table.C: table.hash[key field;value field(s)
                   21262:          string/table]  now
                   21263: 
                   21264:        * src/classes/: op.C, table.C: z
                   21265: 
                   21266:        * src/: classes/op.C, classes/table.C, types/pa_vfile.h,
                   21267:          types/pa_vimage.h, types/pa_vjunction.h, types/pa_vxdoc.h,
                   21268:          types/pa_vxnode.h: table:menu & op for delims made allowed not to
                   21269:          be code [be string..]
                   21270: 
                   21271:        * src/classes/: double.C, file.C, image.C, int.C, op.C, string.C,
                   21272:          table.C: lots of
                   21273:          params->as_int/double/as_string/as_junction/as_no_junction
                   21274:          messages added
                   21275: 
                   21276: 2001-10-08  parser
                   21277: 
                   21278:        * src/: classes/date.C, classes/image.C, classes/string.C,
                   21279:          classes/table.C, classes/void.C, include/pa_request.h:
                   21280:          params->as_int/double message added
                   21281: 
                   21282:        * src/classes/image.C: image:circle [and round arc] uses Bresenham
                   21283: 
                   21284:        * src/: classes/image.C, types/pa_vcookie.C, types/pa_vimage.C:
                   21285:          image:sector removed image:html internal "line-*" attribs
                   21286: 
                   21287:        * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
                   21288:          types/pa_vcookie.C: cookie urlencoded [netscape doc reread]
                   21289: 
                   21290:        * src/types/pa_vcookie.C: removing cookie made more netscape-like
                   21291:          way
                   21292: 
                   21293:        * src/: classes/file.C, classes/form.C, main/pa_common.C,
                   21294:          main/untaint.C: header untainting to UL_HTTP_HEADER,
                   21295:          UL_MAIL_HEADER made nonforced [only tainted pieces]
                   21296: 
                   21297:        * src/: include/pa_common.h, main/pa_common.C, main/untaint.C,
                   21298:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C: remove_crlf
                   21299:          @ SAPI::log
                   21300: 
                   21301:        * src/main/untaint.C: \r to ' ' in origins mode
                   21302: 
                   21303:        * src/classes/xdoc.C: xdoc:load exceptions intercepted [like in
                   21304:          set]
                   21305: 
                   21306:        * src/: classes/xdoc.C, include/pa_config_fixed.h,
                   21307:          main/compile.tab.C, types/pa_vxdoc.h: parsedSource produced by
                   21308:          nonstandard liaison freed up
                   21309: 
                   21310: 2001-10-07  parser
                   21311: 
                   21312:        * src/: include/pa_config_fixed.h, main/compile.tab.C: restored
                   21313:          project
                   21314: 
                   21315: 2001-10-05  parser
                   21316: 
                   21317:        * src/: classes/xdoc.C, include/pa_pool.h, main/main.dsp,
                   21318:          main/pa_pool.C: changed xdoc:set to prevent SAXParseException
                   21319:          from outputing to cerr.  lots of "todos"
                   21320: 
                   21321:        * src/main/untaint.C: http_header tainting more gentle with
                   21322:          enquoting now
                   21323: 
                   21324:        * src/: classes/xdoc.C, include/pa_dictionary.h, main/main.dsp,
                   21325:          main/pa_dictionary.C, main/pa_string.C, types/pa_vxdoc.h: started
                   21326:          xml errorhandler.  fixed string.replace a little, read @test
                   21327: 
                   21328:        * src/main/pa_string.C: found replace bug - first_that_starts(char
                   21329:          *) does not have limit, and looks further eos, fixing....
                   21330: 
                   21331:        * src/doc/: doxygen.cfg, html2chm.cmd, sources2html.cmd: paths
                   21332: 
                   21333:        * src/: classes/xdoc.C, main/compile.tab.C: xdoc.transform now
                   21334: 
                   21335:        * src/main/: pa_charset_connection.C: ctype another mem clear
                   21336:          bugfix
                   21337: 
1.116     moko     21338:        * src/main/: compile.tab.C, compile.y: disabled ^literals in names
                   21339:          $result[^[$p^]z] now works fine
1.95      moko     21340: 
                   21341:        * src/: include/pa_hash.h, main/pa_hash.C: Hash::size() calculated
                   21342:          wrong. fixed it
                   21343: 
                   21344:        * src/main/pa_charset_connection.C: unicode zero pair at the beging
                   21345:          of totable appered to be vital
                   21346: 
                   21347: 2001-10-04  parser
                   21348: 
                   21349:        * src/classes/image.C: ^image.length[text]
                   21350: 
                   21351: 2001-10-03  parser
                   21352: 
                   21353:        * src/main/pa_request.C: DEFAULT...charset was ignored when !XML
                   21354: 
                   21355:        * src/main/pa_request.C: restored pcre defaulting in request
                   21356:          [mindlessly "optimized" yesterday] comment left
                   21357: 
                   21358: 2001-10-02  parser
                   21359: 
                   21360:        * src/: main/pa_charset_manager.C,
                   21361:          include/pa_stylesheet_connection.h: forgot non-xml pool.*charset
                   21362:          needed
                   21363: 
                   21364:        * src/: include/pa_pool.h, main/pa_pool.C, types/pa_vresponse.h:
                   21365:          forgot non-xml pool.*charset needed
                   21366: 
                   21367:        * src/classes/table.C: # config comments fixed
                   21368: 
                   21369:        * src/: classes/table.C, main/pa_charset_connection.C: table:load &
                   21370:          charset_connection #comment now
                   21371: 
                   21372:        * src/: classes/classes.dsp, types/types.dsp: release projects
                   21373:          options fixed to use release msvcrt lib
                   21374: 
                   21375:        * src/main/pa_charset_connection.C: pcre tables now const inside
                   21376:          removed default - pcre handles that internally fixed bug on
                   21377:          not-cleaning tables [previously was calloced, now member]
                   21378: 
                   21379:        * src/: include/pa_request.h, main/pa_charset_connection.C,
                   21380:          main/pa_request.C, types/pa_vstring.h: pcre tables now const
                   21381:          inside removed default - pcre handles that internally fixed bug
                   21382:          on not-cleaning tables [previously was calloced, now member]
                   21383: 
                   21384:        * src/: include/pa_config_fixed.h, main/pa_charset_connection.C:
                   21385:          tested charset reload on file change @ apache version = OK tested
                   21386:          freeing up prev encoding on adding new = OK
                   21387: 
                   21388: 2001-10-01  parser
                   21389: 
                   21390:        * src/main/pa_charset_connection.C: removed entitify external hack
                   21391:          [internal installed]
                   21392: 
1.116     moko     21393:        * src/main/Makefile.am: makes+removed dtd
1.95      moko     21394: 
                   21395:        * src/: include/pa_charset_connection.h,
                   21396:          include/pa_charset_manager.h,
                   21397:          include/pa_xslt_stylesheet_manager.h, main/main.dsp,
                   21398:          main/pa_charset_connection.C, main/pa_charset_manager.C,
                   21399:          main/pa_request.C: charset loading & caching mech 0
                   21400: 
                   21401:        * src/: include/pa_stylesheet_connection.h,
                   21402:          include/pa_xslt_stylesheet_manager.h, main/main.dsp,
                   21403:          main/pa_globals.C, main/pa_request.C: would make charset loading
                   21404:          & caching mech now
                   21405: 
                   21406: 2001-09-30  parser
                   21407: 
                   21408:        * src/main/pa_request.C: forgot to fill toTable
                   21409: 
                   21410:        * src/: include/pa_config_fixed.h, main/pa_request.C: started
                   21411:          hack_s_maximumCharacterValues to XALAN_HACK_DIGITAL_ENTITIES but
                   21412:          failed on win32 for now..
                   21413: 
                   21414:        * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
                   21415:          now charsets table configuration variable is: CHARSETS
                   21416: 
                   21417:        * src/: classes/xdoc.C, include/pa_request.h, main/pa_request.C:
                   21418:          ctype with unicode 1. todo: no &#1055; entities on output somehow
                   21419: 
                   21420:        * src/: classes/file.C, classes/op.C, classes/string.C,
                   21421:          include/pa_request.h, main/pa_request.C: started ctype with
                   21422:          unicode values
                   21423: 
                   21424: 2001-09-28  parser
                   21425: 
                   21426:        * src/: main/pa_request.C, classes/mail.C, classes/op.C,
                   21427:          classes/xdoc.C, include/pa_stylesheet_connection.h: letter body
                   21428:          string passed AS-IS now
                   21429: 
                   21430:        * src/classes/: xdoc.C, xnode.C: xdoc addencoding works! invented a
                   21431:          way of user-configuring... todo: implement
                   21432: 
                   21433: 2001-09-27  parser
                   21434: 
                   21435:        * src/classes/table.C: table.sort changed to sort table itself
                   21436: 
                   21437:        * src/: classes/xdoc.C, targets/isapi/parser3isapi.dsp:
                   21438:          X^.getElementsByTagName[tagname] = array of xnode
                   21439:          X^.getElementsByTagNameNS[namespaceURI;localName] = array of
                   21440:          nodes removed - regretfully not supported @ xalan. maybe someday
                   21441:          would reimplement, if needed.
                   21442: 
                   21443:          win32build system: solved long waiting anti-non-started-apache
                   21444:          problem
                   21445: 
                   21446:        * src/: classes/classes.dsp, classes/xdoc.C, main/main.dsp,
                   21447:          targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
                   21448:          types/types.dsp: win32 ident make system so not to rebuild
                   21449:          library [ident.C.new]
                   21450: 
                   21451: 2001-09-26  parser
                   21452: 
                   21453:        * src/: classes/classes.dsp, classes/xdoc.C, classes/xnode.C,
                   21454:          classes/xnode.h, include/pa_config_fixed.h, main/main.dsp,
                   21455:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                   21456:          types/pa_vxnode.C, types/types.dsp: z
                   21457: 
                   21458:        * src/classes/classes.C: forgot one non-xml check
                   21459: 
1.116     moko     21460:        * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
                   21461:          targets/cgi/Makefile.am, types/Makefile.am: makes with clases.awk
1.95      moko     21462: 
                   21463:        * src/targets/cgi/parser3.C: z
                   21464: 
                   21465:        * src/: include/pa_config_fixed.h, targets/cgi/parser3.C,
                   21466:          targets/isapi/parser3isapi.C: #ifdef SMTP
                   21467: 
                   21468:        * src/: classes/classes.dsp, classes/dnode.C, classes/dnode.h,
                   21469:          classes/dom.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   21470:          main/compile.tab.C, types/pa_vdnode.C, types/pa_vdnode.h,
                   21471:          types/pa_vdom.C, types/pa_vdom.h, types/pa_vxdoc.C,
                   21472:          types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
                   21473:          types/types.dsp: xdoc&xnode now
                   21474: 
                   21475:        * src/: classes/classes.C, classes/classes.awk,
                   21476:          classes/classes.dsp, classes/classes.h, classes/date.C,
                   21477:          classes/dnode.C, classes/dnode.h, classes/dom.C,
                   21478:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   21479:          classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
                   21480:          classes/op.C, classes/response.C, classes/string.C,
                   21481:          classes/table.C, classes/void.C, include/pa_array.h,
                   21482:          include/pa_common.h, include/pa_config_fixed.h,
                   21483:          include/pa_config_includes.h, include/pa_dictionary.h,
                   21484:          include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
                   21485:          include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
                   21486:          include/pa_socks.h, include/pa_sql_connection.h,
                   21487:          include/pa_sql_driver_manager.h, include/pa_stack.h,
                   21488:          include/pa_string.h, include/pa_stylesheet_connection.h,
                   21489:          include/pa_table.h, include/pa_threads.h, include/pa_types.h,
                   21490:          include/pa_xslt_stylesheet_manager.h, main/compile.C,
                   21491:          main/compile.y, main/compile_tools.C, main/compile_tools.h,
                   21492:          main/execute.C, main/main.dsp, main/pa_array.C, main/pa_common.C,
                   21493:          main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
                   21494:          main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
                   21495:          main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
                   21496:          main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
                   21497:          main/pa_xslt_stylesheet_manager.C, main/untaint.C,
                   21498:          sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
                   21499:          targets/cgi/pa_threads.C, targets/cgi/parser3.C,
                   21500:          targets/cgi/parser3.dsp, targets/isapi/pa_pool.C,
                   21501:          targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
                   21502:          targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h,
                   21503:          types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
                   21504:          types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
                   21505:          types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
                   21506:          types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vdom.C,
                   21507:          types/pa_vdom.h, types/pa_vdouble.h, types/pa_venv.h,
                   21508:          types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
                   21509:          types/pa_vform.h, types/pa_vimage.C, types/pa_vimage.h,
                   21510:          types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
                   21511:          types/pa_vmethod_frame.h, types/pa_vobject.h,
                   21512:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
                   21513:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   21514:          types/pa_vstateless_object.h, types/pa_vstring.C,
                   21515:          types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
                   21516:          types/pa_vvoid.h, types/pa_wcontext.C, types/pa_wcontext.h,
                   21517:          types/pa_wwrapper.h, types/types.dsp: added ident.awk and
                   21518:          main.dsp splitted to main+classes+types along to .am
                   21519: 
                   21520:        * src/classes/Makefile.am: removed useless var
                   21521: 
                   21522:        * src/: classes/classes.cmd, main/main.dsp,
                   21523:          targets/cgi/parser3.dsp: moved classes.inc generation on win32 to
                   21524:          main.dsp
                   21525: 
                   21526: 2001-09-25  parser
                   21527: 
                   21528:        * src/include/pa_config_auto.h.in: xml on linux[elik] works! no
                   21529:          1251 though, todo ICU
                   21530: 
1.116     moko     21531:        * src/: Makefile.am, classes/Makefile.am, classes/dom.C,
1.95      moko     21532:          include/pa_stylesheet_connection.h, main/Makefile.am,
1.116     moko     21533:          main/pa_pool.C, targets/cgi/Makefile.am, types/Makefile.am,
                   21534:          types/pa_vdom.h: xml configure makes
1.95      moko     21535: 
                   21536: 2001-09-24  parser
                   21537: 
1.116     moko     21538:        * src/: classes/Makefile.am, include/pa_config_auto.h.in,
                   21539:          types/Makefile.am: makes
1.95      moko     21540: 
1.116     moko     21541:        * src/targets/cgi/Makefile.am: makefiles
1.95      moko     21542: 
                   21543:        * src/: Makefile.am, targets/Makefile.am, targets/cgi/pa_pool.C:
                   21544:          started unix makes update
                   21545: 
                   21546:        * src/: Makefile.am, main/Makefile.am, targets/cgi/Makefile.am:
                   21547:          started unix makes update
                   21548: 
                   21549:        * src/types/: pa_vdnode.C, pa_vvoid.h, pa_vtable.C: z
                   21550: 
                   21551:        * src/types/pa_value.h: z
                   21552: 
                   21553:        * src/types/: pa_vhash.h, pa_vtable.h, pa_vclass.h: fixed small
                   21554:          bugs with usinge hash/table in expressions
                   21555: 
                   21556:        * src/types/: pa_vfile.h, pa_vimage.h, pa_vstring.h: fiew wrong
                   21557:          resolved conflicts fixed [const]
                   21558: 
                   21559:        * src/: classes/classes.cmd, classes/image.C, classes/op.C,
                   21560:          classes/table.C, include/pa_request.h, include/pa_sapi.h,
                   21561:          main/compile.C, main/compile.tab.C, main/compile.y,
                   21562:          main/compile_tools.h, main/main.dsp, main/pa_common.C,
                   21563:          main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
                   21564:          targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vbool.h,
                   21565:          types/pa_vdate.h, types/pa_vdouble.h, types/pa_vform.C,
                   21566:          types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
                   21567:          types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h: merged3
                   21568:          with before_xml [merge2 actually didn't happen - i've created
                   21569:          tags on wrong branch. so this merge is in fact re-merge]
                   21570: 
                   21571: 2001-09-21  parser
                   21572: 
                   21573:        * src/: main/main.dsp, targets/cgi/parser3.dsp,
                   21574:          targets/isapi/parser3isapi.dsp: updated project files [/ sadly
                   21575:          produced "" in make file and sadly wrong interpreted on load]
                   21576: 
1.116     moko     21577:        * src/: classes/classes.h, classes/hash.C, classes/op.C,
                   21578:          classes/table.C, doc/doxygen.cfg, include/pa_common.h,
                   21579:          include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
                   21580:          include/pa_sql_driver_manager.h, include/pa_string.h,
                   21581:          main/compile.tab.C, main/main.dsp, main/pa_common.C,
                   21582:          main/pa_exec.C, main/pa_globals.C, targets/cgi/parser3.dsp,
                   21583:          targets/isapi/parser3isapi.dsp: merged with before_xml
1.95      moko     21584: 
                   21585:        * src/: classes/classes.C, classes/date.C, classes/dnode.C,
                   21586:          classes/dom.C, classes/file.C, classes/form.C, classes/int.C,
                   21587:          classes/mail.C, doc/doxygen.cfg, include/pa_config_fixed.h,
                   21588:          include/pa_pool.h, main/main.dsp, main/pa_globals.C,
                   21589:          main/pa_pool.C, main/pa_request.C,
                   21590:          main/pa_xslt_stylesheet_manager.C, targets/cgi/pa_pool.C,
                   21591:          targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
                   21592:          targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
                   21593:          targets/isapi/parser3isapi.dsp, types/pa_valiased.C,
                   21594:          types/pa_vcookie.C, types/pa_vdnode.C, types/pa_vdom.C,
                   21595:          types/pa_vfile.C, types/pa_vform.C, types/pa_vimage.C,
                   21596:          types/pa_vrequest.C, types/pa_vresponse.h,
                   21597:          types/pa_vstateless_class.C, types/pa_vstring.C,
                   21598:          types/pa_vtable.C, types/pa_wcontext.C: zillions of #ifdef XML
                   21599:          created new projects for sql drivers [planning to remove sql
                   21600:          drivers from main cvs project] first, will join latest changes
                   21601: 
                   21602:        * src/classes/: dom.C: defaulted dom writing methods encoding to
                   21603:          pool.get_charset
                   21604: 
                   21605:        * src/classes/dom.C: defaulted dom writing methods encoding to
                   21606:          pool.get_charset
                   21607: 
                   21608:        * src/include/pa_pool.h: defaulted dom writing methods encoding to
                   21609:          pool.get_charset
                   21610: 
                   21611:        * src/: classes/dom.C, include/pa_pool.h, main/pa_pool.C,
                   21612:          types/pa_vdnode.C, types/pa_vresponse.h: defaulted dom writing
                   21613:          methods encoding to pool.get_charset
                   21614: 
                   21615:        * src/: include/pa_pool.h, main/pa_pool.C: checked whether
                   21616:          transcoder were created right "unsupported encoding" message.
                   21617:          not @ set time, but @ use time, so until xml output functions
                   21618:          .string, .file, .save used - no encoding name check occur
                   21619: 
                   21620:          reduced transcode buffer size to 60 fixed pool cleanup - no
                   21621:          registration needed, pools are officially destructured
                   21622: 
                   21623: 2001-09-20  parser
                   21624: 
                   21625:        * src/classes/image.C: 20K preload on jpg measure [image::measure]
                   21626: 
                   21627:        * src/main/: pa_pool.C, pa_request.C: Pool::transcode defaults from
                   21628:          $MAIN:DEFAULTS.content-type[$.charset[here]]
                   21629: 
                   21630:        * src/: classes/dnode.C, classes/dom.C,
                   21631:          include/pa_config_includes.h, include/pa_globals.h,
                   21632:          include/pa_pool.h, main/main.dsp, main/pa_globals.C,
                   21633:          main/pa_pool.C, targets/cgi/parser3.dsp,
                   21634:          targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
                   21635:          types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vresponse.h:
                   21636:          Pool::transcode 0
                   21637: 
                   21638:        * src/classes/dom.C: dom. string save file moved output xml options
                   21639:          to last param and made it optional
                   21640: 
                   21641:        * src/types/pa_vdnode.C:     !$elementnode.attributes = hash of
                   21642:          dnodes
                   21643:              !$attributenode.specified = boolean
                   21644:                      true if the attribute received its value explicitly
                   21645:          in the XML document,
                   21646:                      or if a value was assigned programatically with the
                   21647:          setValue function.
                   21648:                  false if the attribute value came from the default value
                   21649:          declared in the document's DTD.
                   21650:              !$pinode.target = target of this processing instruction
                   21651:                  XML defines this as being the first token following the
                   21652:          markup
                   21653:                  that begins the processing instruction.
                   21654:                  XPath:
                   21655:              !^node.select[xpath/query/expression] = hash of 0->node0
                   21656:          1->node1
                   21657:              !^node.select-single[xpath/query/expression] = first node if
                   21658:          any
                   21659: 
                   21660:        * src/types/: pa_value.h, pa_vbool.h, pa_vdate.h, pa_vdouble.h,
                   21661:          pa_vhash.h, pa_vint.h, pa_vstring.h, pa_vtable.h, pa_vvoid.h:
                   21662:          some 'const's added
                   21663: 
                   21664:        * src/types/: pa_vhash.h, pa_vtable.h: table/hash  can be used in
                   21665:          expression context now, there value = size and boolean value
                   21666:          size!=0
                   21667: 
                   21668:        * src/types/: pa_vhash.h, pa_vstring.h, pa_vtable.h: table/hash
                   21669:          can be used in expression context now, there value = size and
                   21670:          boolean value size!=0
                   21671: 
                   21672:        * src/: classes/dnode.C, classes/dom.C, targets/cgi/parser3.dsp,
                   21673:          types/pa_vstring.h: dnode .file .string .save moved back to dom
                   21674:          due to strange xalan bug
                   21675: 
                   21676: 2001-09-18  parser
                   21677: 
                   21678:        * src/: classes/dnode.C, classes/dom.C, classes/hash.C,
                   21679:          classes/image.C, classes/op.C, classes/table.C,
                   21680:          include/pa_common.h, include/pa_globals.h, include/pa_request.h,
                   21681:          include/pa_sql_driver_manager.h, main/compile.C,
                   21682:          main/compile.tab.C, main/compile.y, main/compile_tools.h,
                   21683:          main/execute.C, main/pa_common.C, main/pa_request.C,
                   21684:          main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
                   21685:          targets/cgi/parser3.C, targets/cgi/parser3.dsp,
                   21686:          targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vform.C,
                   21687:          types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
                   21688:          types/pa_vimage.h, types/pa_vtable.h: merged latest bugfixes from
                   21689:          before_xml branch ^if(def $hash) now true only when
                   21690:          ^hash:_count[]!=0 moved .string .save .file from dom to dnode
                   21691: 
                   21692:        * src/: classes/op.C, main/execute.C: operators self changed to
                   21693:          root ^for variable context changed to self
                   21694: 
                   21695:        * src/types/: pa_vdnode.C, pa_vdom.h, pa_vhash.h, pa_vtable.h: dom,
                   21696:          dnode 1
                   21697: 
                   21698:        * src/: classes/dnode.C, classes/dnode.h, main/main.dsp,
                   21699:          types/pa_vdnode.C, types/pa_vdnode.h: dom, dnode 0
                   21700: 
                   21701:        * src/: classes/image.C, main/pa_string.C, main/pa_table.C: image:
                   21702:          poly* fixed
                   21703: 
                   21704: 2001-09-17  parser
                   21705: 
                   21706:        * src/: classes/dom.C, main/main.dsp, main/pa_globals.C,
                   21707:          types/pa_vdom.h: started dnode+dom
                   21708: 
                   21709:          dnode     DOM methods:     $node.name     $node.value
                   21710:          ...others...
                   21711: 
                   21712:              ^node.xpath[/rates/USD] = hash
                   21713:                  $hash[
                   21714:                          $.0[node0]
                   21715:                          $.1[node1]
                   21716:                  ]
                   21717: 
                   21718:        * src/: classes/image.C, types/pa_vimage.C: $image.line-style now
                   21719:          applies to all linear primitives
                   21720: 
                   21721:        * src/: classes/classes.h, classes/dom.C, classes/hash.C,
                   21722:          include/pa_stylesheet_connection.h, main/main.dsp,
                   21723:          targets/cgi/pa_pool.C, types/pa_vdom.h, types/pa_vfile.h,
                   21724:          types/pa_vimage.h: started dnode     DOM:     $node.name
                   21725:          $node.value     ...others...      ^node.xpath[/rates/USD] = hash
                   21726:          dom(dnode)
                   21727: 
                   21728:        * src/: classes/hash.C, main/compile.C, main/compile.tab.C,
                   21729:          main/compile.y, main/compile_tools.h, main/execute.C,
                   21730:          targets/cgi/parser3.C: expressions unary+ ^hash.count[] bugfix:
                   21731:          in expression compound($aa.zz.xx) names now can have minus '-' in
                   21732:          name after '.'
                   21733: 
                   21734: 2001-09-15  parser
                   21735: 
                   21736:        * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
                   21737:          image: $line-width ^line(...)[****   style]
                   21738: 
                   21739:        * src/: classes/dom.C, targets/isapi/parser3isapi.C,
                   21740:          targets/isapi/pool_storage.h, types/pa_vdom.h: fixed bug in isapi
                   21741:          pool_storage - cleanups first, allocations second.  apache wisely
                   21742:          does just like that
                   21743: 
                   21744:        * src/targets/isapi/: parser3isapi.C, pool_storage.h: pool_storage
                   21745:          rewritten using template, no bugs now
                   21746: 
                   21747:        * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/pa_pool.C,
                   21748:          targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
                   21749:          targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h:
                   21750:          poorly started isapi pool_storage, would rewrite using template
                   21751:          now
                   21752: 
                   21753:        * src/: classes/dom.C, classes/image.C, include/pa_pool.h,
                   21754:          include/pa_stylesheet_connection.h, main/main.dsp,
                   21755:          targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
                   21756:          targets/isapi/pool_storage.h, types/pa_vdom.C, types/pa_vdom.h:
                   21757:          xalan objects freed up [introducing Pool::register_cleanup]
                   21758: 
                   21759:        * src/: doc/doxygen.cfg, include/pa_sapi.h, types/pa_vdom.h:
                   21760:          comments
                   21761: 
                   21762: 2001-09-14  parser
                   21763: 
                   21764:        * src/main/: pa_sql_driver_manager.C, pa_xslt_stylesheet_manager.C:
                   21765:          z
                   21766: 
                   21767:        * src/: classes/dom.C, classes/file.C, classes/image.C,
                   21768:          classes/mail.C, include/pa_common.h,
                   21769:          include/pa_sql_driver_manager.h, include/pa_string.h,
                   21770:          include/pa_stylesheet_connection.h,
                   21771:          include/pa_xslt_stylesheet_manager.h, main/main.dsp,
                   21772:          main/pa_common.C, main/pa_exec.C, main/pa_globals.C,
                   21773:          main/pa_sql_driver_manager.C, main/pa_xslt_stylesheet_manager.C,
                   21774:          main/untaint.C, types/pa_vfile.C: dom.xslt  stylesheet
                   21775:          compiled&cached
                   21776: 
                   21777: 2001-09-13  parser
                   21778: 
                   21779:        * src/: classes/dom.C, classes/file.C, classes/image.C,
                   21780:          types/pa_vfile.C, types/pa_vfile.h: ^dom.file[] charset
                   21781: 
                   21782:        * src/classes/dom.C: dom:file content-type(.method)
                   21783: 
                   21784:        * src/: include/pa_common.h, include/pa_globals.h,
                   21785:          main/pa_common.C, main/pa_request.C: $MAIN:CLASS_PATH now can be
                   21786:          string now more informative error messages
                   21787: 
                   21788:        * src/: include/pa_globals.h, include/pa_request.h,
                   21789:          main/pa_request.C, targets/cgi/parser3.C,
                   21790:          targets/isapi/parser3isapi.C: ParserRootConfig .../parser3.conf
                   21791:          ParserSiteConfig .../parser3.conf
                   21792: 
                   21793:          cgi&isapi looks for {configure|c:\windows}/parser3.conf
                   21794: 
                   21795: 2001-09-12  parser
                   21796: 
                   21797:        * src/: classes/op.C, include/pa_sql_driver_manager.h,
                   21798:          main/pa_sql_driver_manager.C: ^connect[] ^connect[aaa] more
                   21799:          precise error reporting: "connection string must start with
                   21800:          protocol://" now
                   21801: 
                   21802:        * src/main/compile.tab.C: fixed - subname code parts actually []
                   21803:          braced
                   21804: 
                   21805:        * src/main/: compile.y, compile_tools.h: name.[part].xxx syntax
                   21806:          lexer on LS_USER level did [] matching without setting nestage,
                   21807:          introduced special LS_NAME_SQUARE_PART state
                   21808: 
                   21809: 2001-09-11  parser
                   21810: 
                   21811:        * src/: classes/dom.C, include/pa_string.h, main/pa_globals.C,
                   21812:          main/untaint.C: ^dom:set{<some>xml</some>} default language XML
                   21813:          languages+=xml
                   21814: 
                   21815:        * src/: classes/dom.C, types/pa_vdom.h: ^dom:set[<some>xml</some>]
                   21816: 
                   21817:        * src/classes/dom.C: ^dom:save/string/file[output options] output
                   21818:          options:     $.method[xml|html|text] detection fixed
                   21819: 
                   21820:        * src/types/pa_vdom.h: messages
                   21821: 
                   21822:        * src/classes/dom.C: ^dom:save/string/file[output options] output
                   21823:          options:     $.method[xml|html|text] detection fixed
                   21824: 
                   21825: 2001-09-10  parser
                   21826: 
                   21827:        * src/classes/dom.C: ^dom:save/string/file[output options] output
                   21828:          options:     $.method[xml|html|text] $.encoding[windows-1251|...]
                   21829: 
                   21830:        * src/classes/dom.C: ^dom.xslt[stylesheet filename][params hash
                   21831:          added]
                   21832: 
                   21833:        * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
                   21834:          ^dom.xslt[stylesheet filename] 0
                   21835: 
                   21836:        * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
                   21837:          ^dom.xslt[stylesheet filename] -1 doc is lying
                   21838: 
                   21839:        * src/classes/dom.C: ^dom.file[encoding] = file
                   21840: 
                   21841:        * src/classes/: dom.C: ^dom.string[encoding] 1
                   21842:          ^dom.save[encoding;filename]
                   21843: 
                   21844:        * src/classes/dom.C: ^dom.string[] 0
                   21845: 
                   21846:        * src/classes/dom.C: ^dom.save[b.xml] 1:error handling
                   21847: 
                   21848:        * src/: classes/dom.C, main/main.dsp, types/pa_vform.C,
                   21849:          types/pa_vform.h: ^dom.save[b.xml] 0
                   21850: 
                   21851: 2001-09-08  parser
                   21852: 
                   21853:        * src/types/pa_vform.C: $form:tables.name.field
                   21854: 
                   21855: 2001-09-07  parser
                   21856: 
                   21857:        * src/classes/table.C: table:empty removed, superceded by ^if(def
                   21858:          $table)...
                   21859: 
                   21860:        * src/targets/cgi/parser3.C: z
                   21861: 
                   21862:        * src/main/pa_string.C: $a[] ^if($a){y;n} is 'n' now  [conversion
                   21863:          from '' to int/double is 0]
                   21864: 
                   21865:        * src/: classes/dom.C, types/pa_value.h, types/pa_vtable.h: (def
                   21866:          $table) is false when table is empty
                   21867: 
                   21868:        * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
                   21869:          !$form:tables $atable[$form:tables.a]
                   21870:          ^atable.menu{a=$atable.element}[,]
                   21871: 
                   21872:        * src/: targets/cgi/parser3.dsp, types/pa_vform.C,
                   21873:          types/pa_vform.h, types/pa_vhash.h: !$form:fields
                   21874: 
1.116     moko     21875:        * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95      moko     21876:          types/pa_vdom.h, types/pa_vform.C: merged with successful start
                   21877:          of dom
                   21878: 
                   21879:        * src/: include/pa_hash.h, main/pa_hash.C, types/pa_vfile.h,
                   21880:          types/pa_vform.C, types/pa_vform.h: z
                   21881: 
                   21882:        * src/: main/pa_exception.C, types/pa_vform.C: getting FIRST form
                   21883:          element [not last]
                   21884: 
1.116     moko     21885:        * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95      moko     21886:          types/pa_vdom.h: introducing dom. dom:load[a.xml]
                   21887: 
                   21888: 2001-09-06  parser
                   21889: 
                   21890:        * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
                   21891:          table with one column 'element' and two rows: 1 and 2
                   21892: 
                   21893:        * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
                   21894:          table with one column 'element' and two rows: 1 and 2
                   21895: 
                   21896:        * src/: classes/void.C, main/pa_string.C, main/pa_table.C: fixed up
                   21897:          bad int/double conversions, and now $form:nonexistent.int(88)
                   21898:          would return 88
                   21899: 
                   21900:        * src/: classes/hash.C, include/pa_globals.h, main/pa_globals.C,
                   21901:          types/pa_vhash.h: now there's special hash key '_default'
                   21902:          [instead of ^_default method] $hash[         $.a[1]  $.b[2]
                   21903:          $._default[xx] ] $hash.c
                   21904: 
                   21905:        * src/main/: compile.tab.C, compile.y: ^if(0){}{ ^if(1){}^; } bug
                   21906:          fixed [thanks, fif], ^; were treated there non-literally
                   21907: 
                   21908:        * src/doc/doxygen.cfg: merged new default options from 1.2.10
                   21909:          doxygen
                   21910: 
                   21911:        * src/: classes/image.C, classes/op.C, classes/string.C,
                   21912:          classes/table.C, doc/doxygen.cfg, targets/isapi/parser3isapi.C,
                   21913:          types/pa_vtable.C: few #ifndef DOXYGEN
                   21914: 
                   21915: 2001-09-05  parser
                   21916: 
                   21917:        * src/classes/: string.C, table.C: sql options can be void [same as
                   21918:          image:html the other day]
                   21919: 
                   21920:        * src/targets/cgi/Makefile.am: .am undo
                   21921: 
                   21922:        * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
                   21923:          targets/cgi/parser3.C: #define STRINGIZE(name) #name does not
                   21924:          macro expantion on param, simply qoutes whatever passed, undone
                   21925: 
                   21926:        * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
                   21927:          targets/cgi/Makefile.am, targets/cgi/parser3.C: #define
                   21928:          STRINGIZE(name) #name invented
                   21929: 
                   21930:        * src/: classes/op.C, include/pa_sql_driver_manager.h,
                   21931:          main/pa_sql_driver_manager.C: #define MAIN_SQL_NAME "SQL" #define
                   21932:          MAIN_SQL_DRIVERS_NAME "drivers"
                   21933: 
                   21934:          moved to be availible to all users
                   21935: 
                   21936:        * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h:
                   21937:          SQL_DRIVER_CREATE_FUNC_NAME
                   21938: 
                   21939:        * src/classes/mail.C: MAIN:MAIL check fixed
                   21940: 
                   21941: 2001-09-04  parser
                   21942: 
                   21943:        * src/classes/image.C: image.html now can accept void params
                   21944: 
                   21945:        * src/targets/isapi/parser3isapi.C: z
                   21946: 
                   21947:        * src/targets/cgi/parser3.C: full_file_spec bug
                   21948: 
                   21949:        * src/targets/cgi/parser3.C: getenvcheck
                   21950: 
                   21951:        * src/targets/cgi/parser3.C: zz
                   21952: 
                   21953:        * src/targets/cgi/parser3.C: zzz
                   21954: 
                   21955:        * src/classes/date.C: date
                   21956: 
                   21957:        * src/classes/date.C: date:sql-string is now without ''
                   21958: 
1.116     moko     21959:        * src/: include/pa_config_auto.h.in, targets/cgi/Makefile.am,
1.95      moko     21960:          targets/cgi/parser3.C: configure --sysconfdir=sysadmin-controlled
                   21961:          auto.p location for targets/cgi/parser3, default[/usr/local/etc]
                   21962: 
1.116     moko     21963:        * src/include/pa_config_auto.h.in: makes
1.95      moko     21964: 
                   21965: 2001-09-03  parser
                   21966: 
                   21967:        * src/targets/cgi/parser3.C: /configure cgi SYSCONFDIR
                   21968: 
                   21969: 2001-09-01  parser
                   21970: 
                   21971:        * src/classes/image.C: letter_spacing
                   21972: 
                   21973:        * src/classes/image.C: image: font params changed
                   21974: 
                   21975:        * src/classes/image.C: image: as_int as_string used
                   21976: 
                   21977:        * src/types/pa_vmethod_frame.h: $result[] now gets properly
                   21978:          analized
                   21979: 
                   21980: 2001-08-31  parser
                   21981: 
                   21982:        * src/targets/cgi/parser3.C: z
                   21983: 
1.116     moko     21984:        * src/: include/pa_dir.h, targets/cgi/parser3.C: compiled under
                   21985:          cygwin
1.95      moko     21986: 
                   21987:        * src/classes/void.C: void:int/double += (default)
                   21988: 
                   21989:        * src/classes/image.C: image:font added space param image:font
                   21990:          changed charwidth alg, added kerning const[for now]
                   21991: 
                   21992:        * src/classes/: string.C, table.C: string:int/double (defaults)
                   21993: 
                   21994: 2001-08-29  parser
                   21995: 
                   21996:        * src/main/pa_exception.C: exception redundant debug info
                   21997: 
                   21998: 2001-08-28  parser
                   21999: 
                   22000:        * src/classes/image.C: image error msgs
                   22001: 
                   22002:        * src/classes/image.C: image: gifsize little endian
                   22003: 
                   22004:        * src/doc/doxygen.cfg: doxygen conf removed some garbage from under
                   22005:          doxygeneration
                   22006: 
                   22007:        * src/: classes/Makefile.am, main/Makefile.am,
                   22008:          targets/cgi/Makefile.am, types/Makefile.am: .am-s
                   22009: 
                   22010:        * src/: include/pa_dictionary.h, main/pa_dictionary.C,
                   22011:          main/pa_sql_driver_manager.C: NO_STRING_ORIGIN check3
                   22012: 
                   22013:        * src/main/compile.C: NO_STRING_ORIGIN check2
                   22014: 
                   22015:        * src/classes/table.C: NO_STRING_ORIGIN check
                   22016: 
                   22017:        * src/include/pa_dictionary.h: gcc: ../include/pa_dictionary.h:19:
                   22018:          storage class specifiers invalid in friend function declarations
                   22019: 
                   22020:        * src/: classes/op.C, main/compile.tab.C, main/pa_dir.C,
                   22021:          main/untaint.C, targets/cgi/parser3.C,
                   22022:          targets/isapi/parser3isapi.C: strncpy forced with zero ending in
                   22023:          case of limit
                   22024: 
                   22025:        * src/: classes/file.C, main/pa_common.C: file:move
                   22026:          autocreate/remove dest/src dir
                   22027: 
                   22028:        * src/: classes/string.C, include/pa_dictionary.h,
                   22029:          include/pa_string.h, main/pa_dictionary.C, main/pa_string.C,
                   22030:          main/untaint.C: pa_directory speeded up. moved zero 'from' check
                   22031:          to directory constructor.  string:replace
                   22032: 
                   22033: 2001-08-27  parser
                   22034: 
                   22035:        * src/classes/image.C: fixed jpgsize alg
                   22036: 
                   22037:        * src/classes/image.C: fixed jpgsize alg
                   22038: 
                   22039:        * src/main/pa_exception.C: z
                   22040: 
                   22041:        * src/main/pa_common.C: removed debug info from pa_common
                   22042: 
                   22043:        * src/: main/pa_request.C, targets/cgi/parser3.C: parser3 test.html
                   22044:          [auto.p from current dir loading]
                   22045: 
1.116     moko     22046:        * src/: main/pa_common.C, main/pa_exception.C,
                   22047:          main/pa_sql_driver_manager.C, targets/cgi/Makefile.am: configure
                   22048:          for solaris -lsocket
1.95      moko     22049: 
                   22050: 2001-08-24  parser
                   22051: 
                   22052:        * src/targets/cgi/parser3.C: not cgi extra \n 3
                   22053: 
                   22054:        * src/targets/cgi/parser3.C: not cgi extra \n 2
                   22055: 
                   22056:        * src/targets/cgi/parser3.C: not cgi extra \n
                   22057: 
                   22058:        * src/main/pa_sql_driver_manager.C: z
                   22059: 
                   22060:        * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C:
                   22061:          sql* removed services from disconnect - cross-request ideological
                   22062:          probs.
                   22063: 
                   22064:        * src/sql/pa_sql_driver.h: sql* removed services from disconnect -
                   22065:          cross-request ideological probs.  oracle - fixed bug: cs
                   22066:          allocated on request.pool and got freed before disconnect
                   22067: 
                   22068:        * src/classes/: file.C, form.C, mail.C, table.C: fiew non-pool
                   22069:          mallocs fixed
                   22070: 
                   22071: 2001-08-23  parser
                   22072: 
                   22073:        * src/classes/file.C: minor bug in file:save fixed
                   22074: 
                   22075:        * src/main/pa_sql_driver_manager.C: oracle: dlink
                   22076: 
                   22077: 2001-08-22  parser
                   22078: 
                   22079:        * src/: classes/file.C, main/compile.tab.C, types/pa_vfile.C,
                   22080:          types/pa_vfile.h: file:load|save[text|binary;
                   22081: 
                   22082:        * src/main/: compile.tab.C, compile.y: ^method[]^[^] literals []
                   22083: 
                   22084: 2001-08-21  parser
                   22085: 
                   22086:        * src/classes/: file.C, table.C: ^file:list
                   22087: 
                   22088: 2001-08-20  parser
                   22089: 
                   22090:        * src/: main/compile.tab.C, main/compile.y,
                   22091:          main/pa_sql_driver_manager.C, types/pa_value.h, types/pa_vbool.h,
                   22092:          types/pa_vdouble.h, types/pa_vint.h: $var(123) ^var.inc[]
                   22093:          recousively caused problems: inc incremeted 123 literal!! fixed
                   22094: 
                   22095: 2001-08-10  parser
                   22096: 
                   22097:        * src/main/: compile.tab.C, compile.y: [codes] name part syntax now
                   22098: 
                   22099:        * src/main/: compile.tab.C, compile.y: (codes) name part syntax
                   22100:          added
                   22101: 
                   22102:        * src/main/: compile.tab.C, compile.y: (codes) name part syntax
                   22103:          added
                   22104: 
                   22105:        * src/classes/table.C: table:sort restored [it was bad test :(]
                   22106: 
                   22107:        * src/types/: pa_value.h, pa_vstring.h: string now def only when ne
                   22108:          ''
                   22109: 
                   22110:        * src/main/: pa_request.C: wanted to make const int
                   22111:          MAX_EXECUTE_SECONDS=1;
                   22112: 
                   22113:          but couldnt, set_callback_and_alarm appeared to be not exported
                   22114:          :(
                   22115: 
                   22116:        * src/main/pa_string.C: string.match hanged on. there were a hang
                   22117:          check but it weren't wise enough
                   22118: 
                   22119:          @parse[dateString][tmp]
                   22120:          $tmp[^dateString.match[(\d\d\d\d-)?(\d\d-)?][g]] $tmp.1 $tmp.2
                   22121:          #end
                   22122: 
                   22123:          @main[] ^parse[2001-02-03]
                   22124: 
                   22125:        * src/classes/: table.C: table:sort now default desc
                   22126: 
                   22127:        * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
                   22128:          table.sort now creates new sorted table
                   22129: 
                   22130: 2001-08-09  parser
                   22131: 
                   22132:        * src/main/pa_string.C: $a[010] now ^if($a==10){true} were octal
                   22133: 
                   22134:        * src/classes/hash.C: hash:_default now [was hash:default]
                   22135: 
                   22136:        * src/classes/op.C: case without switch check added
                   22137: 
                   22138:        * src/types/pa_vcookie.C: cookie name&value origins added, more
                   22139:          precise $ORIGINS(1)
                   22140: 
                   22141:        * src/main/Makefile.am: .am
                   22142: 
                   22143:        * src/classes/void.C: void: int double  copy/paste from int: bug
                   22144:          fixed
                   22145: 
                   22146:        * src/classes/void.C: void: int double  copy/paste from int: bug
                   22147:          fixed
                   22148: 
                   22149: 2001-08-07  parser
                   22150: 
                   22151:        * src/: classes/double.C, classes/int.C, classes/string.C,
                   22152:          classes/table.C, include/pa_globals.h, main/pa_globals.C:
                   22153:          !^int/double:sql{query}[[$.limit(2) $.offset(4) $.default(0)]]
                   22154:          string, table
                   22155: 
                   22156:        * src/: classes/math.C, main/pa_request.C: math:random fixed. win32
                   22157:          srand made working
                   22158: 
                   22159: 2001-08-06  parser
                   22160: 
                   22161:        * src/: classes/mail.C, classes/op.C, include/pa_array.h,
                   22162:          include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
                   22163:          main/compile.tab.C, main/compile.y, main/pa_array.C,
                   22164:          main/pa_dictionary.C, main/pa_exec.C, main/pa_globals.C,
                   22165:          main/pa_hash.C, main/pa_request.C, main/pa_string.C: class_path
                   22166: 
                   22167:        * src/main/pa_exec.C: exec win32 real filename
                   22168: 
                   22169:        * src/classes/file.C: exec stderr out
                   22170: 
                   22171:        * src/classes/hash.C: hash:keys renamed to hash:_keys :(
                   22172: 
                   22173: 2001-08-03  parser
                   22174: 
                   22175:        * src/: classes/table.C, types/pa_vtable.h: vtable.locks killed
                   22176: 
                   22177: 2001-08-02  parser
                   22178: 
                   22179:        * src/: classes/string.C, classes/table.C, include/pa_array.h,
                   22180:          main/execute.C, main/pa_exec.C: introducing Array_iter
                   22181: 
                   22182:        * src/main/execute.C: detected quick_get recursion bug. changed to
                   22183:          get@execute, but needs array iterator, separate from array to
                   22184:          avoid it & use caching
                   22185: 
                   22186:        * src/main/: pa_dictionary.C, pa_globals.C: memset dictionary minor
                   22187:          bug fixed
                   22188: 
                   22189:        * src/: classes/classes.h, classes/op.C, include/pa_globals.h,
                   22190:          main/execute.C, main/pa_globals.C: found another multithread bug
                   22191:          in op.C (last, last global var killed) :)
                   22192: 
                   22193: 2001-08-01  parser
                   22194: 
                   22195:        * src/: include/pa_dictionary.h, include/pa_globals.h,
                   22196:          include/pa_string.h, main/main.dsp, main/pa_dictionary.C,
                   22197:          main/pa_globals.C, main/pa_request.C, main/pa_string.C,
                   22198:          main/untaint.C: speeded up typo-html replacements. introducing
                   22199:          Dictionary with first-char caching
                   22200: 
                   22201: 2001-07-31  parser
                   22202: 
                   22203:        * src/types/Makefile.am: pa_vtable.C added to .am
                   22204: 
                   22205:        * src/main/compile.tab.C: added, so that could be compiled even on
                   22206:          non-bison-enabled platforms
                   22207: 
                   22208: 2001-07-28  parser
                   22209: 
                   22210:        * src/classes/table.C: table:hash always produces hash, when can't
                   22211:          - empty
                   22212: 
                   22213:        * src/main/: compile.y, untaint.C: bug fix @ untaint when \r
                   22214:          skipped \n
                   22215: 
                   22216: 2001-07-27  parser
                   22217: 
                   22218:        * src/classes/: double.C, int.C, string.C: provided meaningful msg
                   22219:          on int/double/string :sql without result and default
                   22220: 
                   22221: 2001-07-26  parser
                   22222: 
                   22223:        * src/classes/op.C: fixed bad multithread bug with strangly global
                   22224:          OP
                   22225: 
                   22226:        * src/main/compile.y: $man[$.age[zzz]]  0
                   22227: 
                   22228:        * src/: include/pa_opcode.h, main/compile.y, main/execute.C: hash
                   22229:          creation syntax problem persists. restored $: for a while.
                   22230:          thinking of $man[$.age[zzz]] syntax now
                   22231: 
                   22232:        * src/: classes/double.C, classes/int.C, classes/string.C,
                   22233:          include/pa_opcode.h, main/compile.C, main/compile.y,
                   22234:          main/compile_tools.h, main/execute.C, types/pa_vcode_frame.h,
                   22235:          types/pa_vmethod_frame.h, types/pa_wcontext.h,
                   22236:          types/pa_wwrapper.h: fixing :: realization #1
                   22237: 
                   22238:        * src/: include/pa_opcode.h, main/compile.C, main/compile.y,
                   22239:          main/compile_tools.h, main/execute.C, main/pa_request.C,
                   22240:          types/pa_vmethod_frame.h: introducing :: this is constructor call
                   22241:          prefix.  ordinary : remains for static accesses
                   22242: 
                   22243: 2001-07-25  parser
                   22244: 
                   22245:        * src/types/pa_vtable.C: table: get_element order changeed. now: 1.
                   22246:          fields 2. methods 3. columns
                   22247: 
                   22248:        * src/types/: pa_vdouble.h, pa_vint.h: odbc: no result queries;
                   22249:          quote.  optimized double&int tostring-s
                   22250: 
                   22251:        * src/main/: compile.C, compile.y, compile_tools.h: allowed
                   22252:          whitespace before first method decl
                   22253: 
                   22254:        * src/classes/table.C: allowed nontable result in table:sql,
                   22255:          results in empty table
                   22256: 
                   22257:        * src/main/: compile.C, compile.y, compile_tools.h: allowed empty
                   22258:          lines before first method decl
                   22259: 
                   22260:        * src/: classes/table.C, main/main.dsp, types/pa_vtable.C,
                   22261:          types/pa_vtable.h: ^table.record[] now $table.fields
                   22262: 
                   22263:        * src/main/compile.y: $var[] is now empty string, not void
                   22264: 
                   22265:        * src/main/: compile.y, execute.C: $var[] is now empty string, not
                   22266:          void
                   22267: 
                   22268:        * src/: classes/string.C, include/pa_globals.h, main/execute.C,
                   22269:          main/pa_globals.C: match replace code context moved to implicit
                   22270:          $match context
                   22271: 
                   22272:        * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
                   22273:          main/compile_tools.h, main/execute.C: with killed, code storage
                   22274:          introduced with former 'with' syntax
                   22275: 
                   22276: 2001-07-24  parser
                   22277: 
                   22278:        * src/: main/compile.C, main/execute.C, main/pa_string.C,
                   22279:          types/pa_value.h: first get_element, next get operator
                   22280: 
                   22281:        * src/main/compile.y: removed @end handling
                   22282: 
                   22283:        * src/main/: compile.C, compile.y: @end handling method2
                   22284: 
                   22285:        * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
                   22286:          file:move
                   22287: 
                   22288:        * src/main/pa_common.C: file_read close @ eof when imgsize bug
                   22289:          fixed
                   22290: 
                   22291: 2001-07-23  parser
                   22292: 
                   22293:        * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql odbc
                   22294:          driver
                   22295: 
                   22296:        * src/classes/hash.C: changed sql driver query interface
                   22297: 
                   22298:        * src/: classes/hash.C, classes/string.C, classes/table.C,
                   22299:          classes/void.C, include/pa_sql_connection.h, sql/pa_sql_driver.h:
                   22300:          changed sql driver query interface
                   22301: 
                   22302: 2001-07-20  parser
                   22303: 
                   22304:        * src/types/pa_vrequest.C: X!$browser:type
                   22305: 
                   22306:        * src/: classes/file.C, classes/string.C, include/pa_string.h,
                   22307:          main/execute.C, main/pa_string.C, types/pa_valiased.C,
                   22308:          types/pa_valiased.h, types/pa_value.h, types/pa_vclass.h,
                   22309:          types/pa_vcookie.h, types/pa_vdate.h, types/pa_vfile.h,
                   22310:          types/pa_vform.h, types/pa_vhash.h, types/pa_vmath.h,
                   22311:          types/pa_vobject.h, types/pa_vrequest.C,
                   22312:          types/pa_vstateless_class.h, types/pa_vstateless_object.h: only
                   22313:          ^class:method dynamic calls allowed.  ^BASE.method call disabled.
                   22314:          BASE element globally removed
                   22315: 
                   22316: 2001-07-18  parser
                   22317: 
                   22318:        * src/classes/file.C: file:exec/cgi msg
                   22319: 
                   22320:        * src/classes/file.C: $file:exit-code renamed to 'status'
                   22321: 
                   22322:        * src/: classes/file.C, main/pa_exec.C: file:exec
                   22323: 
1.116     moko     22324:        * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
                   22325:          targets/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
                   22326:          removed $id from *.in *.am
1.95      moko     22327: 
                   22328:        * src/main/: pa_request.C, untaint.C: ORIGINS langs name
                   22329:          abbrevations
                   22330: 
                   22331:        * src/: classes/date.C, classes/mail.C, classes/math.C,
                   22332:          classes/string.C, classes/table.C, include/pa_globals.h,
                   22333:          include/pa_string.h, main/execute.C, main/pa_globals.C,
                   22334:          main/pa_request.C, main/pa_string.C, main/untaint.C,
                   22335:          types/pa_value.h, types/pa_vdouble.h, types/pa_vfile.h,
                   22336:          types/pa_vint.h, types/pa_vstring.C, types/pa_vstring.h:
                   22337:          $ORIGINS(1) output tracing mode
                   22338: 
                   22339: 2001-07-13  parser
                   22340: 
                   22341:        * src/: classes/double.C, classes/int.C, classes/string.C,
                   22342:          include/pa_request.h, main/execute.C, main/pa_request.C:
                   22343:          auto.p[@auto], /news/auto.p[no @auto], so that initializing
                   22344:          second would not call first @auto
                   22345: 
                   22346:        * src/main/: execute.C, pa_request.C: order of MAIN parents was
                   22347:          wrong, fixed
                   22348: 
                   22349: 2001-07-12  parser
                   22350: 
                   22351:        * src/types/pa_value.h: pa_value.putelement modification of system
                   22352:          classes prevented
                   22353: 
                   22354: 2001-07-11  parser
                   22355: 
                   22356:        * src/: classes/string.C, doc/sources2html.cmd: lr split now yelds
                   22357:          table $piece
                   22358: 
                   22359:        * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
                   22360:          types/pa_vstateless_class.h: $file created by file:state +=
                   22361:          .atime .mtime .ctime +found&fixed bug with exceptions on
                   22362:          get_junction-created objects [they were on wrong pool]
                   22363: 
                   22364: 2001-07-09  parser
                   22365: 
                   22366:        * src/main/untaint.C: qp wrong name
                   22367: 
                   22368:        * src/: classes/date.C, classes/string.C, classes/table.C,
                   22369:          main/compile.y: date format 0
                   22370: 
                   22371: 2001-07-07  parser
                   22372: 
                   22373:        * src/: classes/date.C, classes/table.C, include/pa_common.h,
                   22374:          include/pa_string.h, main/pa_common.C, types/pa_vdate.h: date
                   22375:          roll table calendar
                   22376: 
                   22377:        * src/: classes/Makefile.am, classes/date.C, classes/file.C,
                   22378:          classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
                   22379:          classes/op.C, classes/string.C, classes/table.C, classes/void.C,
                   22380:          include/pa_request.h, main/main.dsp, types/pa_value.h,
                   22381:          types/pa_vdate.h, types/pa_wcontext.C: date  now set $fields roll
                   22382:          string.  todo: sql, calendar
                   22383: 
                   22384: 2001-07-06  parser
                   22385: 
                   22386:        * src/: classes/math.C, include/pa_request.h, main/execute.C,
                   22387:          main/main.dsp, main/pa_request.C, types/pa_vmath.h: math 0
                   22388: 
                   22389: 2001-07-03  parser
                   22390: 
                   22391:        * src/: classes/Makefile.am, classes/math.C, classes/op.C,
                   22392:          classes/random.C, main/main.dsp: class random renamed to math,
                   22393:          operators became methods
                   22394: 
                   22395:        * src/classes/op.C:  pow sqrt
                   22396: 
                   22397:        * src/: classes/op.C, main/execute.C:  sin asin cos acos tan atan
                   22398: 
                   22399: 2001-07-02  parser
                   22400: 
                   22401:        * src/classes/table.C: ^table.columns column renamed from 'name' to
                   22402:          'column'
                   22403: 
                   22404:        * src/classes/hash.C: ^hash.keys[]
                   22405: 
                   22406:        * src/: classes/table.C, main/pa_table.C: ^table:columns[]
                   22407: 
                   22408:        * src/main/: compile.y, compile_tools.h: in expressions now allowed
                   22409:          'strings'
                   22410: 
                   22411: 2001-06-29  parser
                   22412: 
                   22413:        * src/main/: execute.C: /0  %0 checkes ver 2
                   22414: 
                   22415:        * src/main/execute.C: /0  %0 checke
                   22416: 
                   22417:        * src/classes/Makefile.am: nothing - void
                   22418: 
                   22419:        * src/classes/table.C: empty strings @ sql
                   22420: 
                   22421: 2001-06-28  parser
                   22422: 
                   22423:        * src/: classes/double.C, classes/file.C, classes/form.C,
                   22424:          classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
                   22425:          classes/op.C, classes/random.C, classes/response.C,
                   22426:          classes/string.C, classes/table.C, classes/void.C,
                   22427:          main/compile.C, main/compile_tools.C, main/execute.C,
                   22428:          main/pa_array.C, main/pa_common.C, main/pa_dir.C,
                   22429:          main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
                   22430:          main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
                   22431:          main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
                   22432:          main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
                   22433:          targets/isapi/parser3isapi.C, main/compile.y: */ static const
                   22434:          char *RCSId="$Id: double.C,v 1.31 2001/06/28 07:41:59 parser Exp
                   22435:          $";
                   22436: 
                   22437:        * src/: classes/double.C, classes/file.C, classes/form.C,
                   22438:          classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
                   22439:          classes/op.C, classes/random.C, classes/response.C,
                   22440:          classes/string.C, classes/table.C, classes/void.C,
                   22441:          main/compile.C, main/compile.y, main/compile_tools.C,
                   22442:          main/execute.C, main/pa_array.C, main/pa_common.C, main/pa_dir.C,
                   22443:          main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
                   22444:          main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
                   22445:          main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
                   22446:          main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
1.119     moko     22447:          targets/isapi/parser3isapi.C: static char *RCSId="Id";
1.95      moko     22448: 
                   22449:        * src/main/: compile.y, compile_tools.h: $:name: == ${name}:
                   22450:          $class:name: == ${class:name}:
                   22451: 
                   22452:        * src/classes/string.C: exactly one
                   22453: 
                   22454: 2001-06-27  parser
                   22455: 
                   22456:        * src/: classes/nothing.C, classes/void.C, types/pa_vnothing.h,
                   22457:          types/pa_vvoid.h: nothing renamed to void
                   22458: 
                   22459:        * src/classes/op.C: ^switch ^case
                   22460: 
                   22461:        * src/main/compile.y: nothing renamed to void
                   22462: 
                   22463:        * src/: classes/hash.C, classes/table.C, main/compile.y,
                   22464:          main/execute.C, main/main.dsp, main/pa_request.C,
                   22465:          targets/cgi/pa_pool.C, types/pa_value.h, types/pa_vcode_frame.h,
                   22466:          types/pa_vmethod_frame.h, types/pa_vtable.h: nothing renamed to
                   22467:          void
                   22468: 
                   22469:        * src/main/compile.y: lexer: $zzzz^zzzz were name part
                   22470: 
                   22471: 2001-05-28  parser
                   22472: 
                   22473:        * src/doc/html2chm.cmd: removed >a
                   22474: 
                   22475:        * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: release
                   22476:          project options [some bugs]
                   22477: 
                   22478:        * src/doc/sources2html.cmd: z
                   22479: 
                   22480:        * src/: classes/classes.C, main/compile.C, main/compile.y,
                   22481:          main/execute.C: operators are not in root class again
                   22482: 
                   22483: 2001-05-24  parser
                   22484: 
                   22485:        * src/targets/cgi/parser3.dsp: project file
                   22486: 
                   22487:        * src/: classes/op.C, main/pa_request.C, targets/cgi/parser3.C:
                   22488:          ^log ^exp
                   22489: 
                   22490:        * src/: main/pa_request.C, targets/cgi/parser3.C: // no _
                   22491:          conversions in @exception[params]
                   22492: 
                   22493:        * src/main/pa_request.C: // no _ conversions in @exception[params]
                   22494: 
                   22495: 2001-05-23  parser
                   22496: 
                   22497:        * src/main/pa_string.C: string cmp bug
                   22498: 
                   22499:        * src/classes/: mail.C, op.C: rem max 1000
                   22500: 
                   22501:        * src/: classes/op.C, main/compile.y: allow one empty line before
                   22502:          LS_DEF_NAME
                   22503: 
                   22504: 2001-05-22  parser
                   22505: 
                   22506:        * src/classes/op.C: if params code-required
                   22507: 
                   22508: 2001-05-21  parser
                   22509: 
                   22510:        * src/types/pa_vstring.C: eoleof
                   22511: 
                   22512:        * src/classes/Makefile.am: .AM
                   22513: 
                   22514:        * src/classes/nothing.C: resultless ^sql  moved to nothing:
                   22515: 
                   22516:        * src/classes/: nothing.C, op.C: 'unknown' renamed to 'nothing'
                   22517: 
                   22518:        * src/: classes/double.C, classes/nothing.C, classes/string.C,
                   22519:          classes/unknown.C, main/main.dsp, types/pa_vnothing.h,
                   22520:          types/pa_vunknown.h, classes/hash.C, main/compile.y,
                   22521:          main/execute.C, targets/cgi/pa_pool.C, types/pa_vcode_frame.h,
                   22522:          types/pa_vmethod_frame.h, types/pa_vtable.h, classes/table.C,
                   22523:          main/pa_request.C, types/pa_value.h: 'unknown' renamed to
                   22524:          'nothing'
                   22525: 
                   22526:        * src/types/: pa_vstring.C, pa_vstring.h: removed unnecessary
                   22527:          vstring::set_string
                   22528: 
                   22529:        * src/classes/: double.C, int.C, string.C: int,double;sql
                   22530: 
                   22531:        * src/: classes/hash.C, classes/int.C, classes/string.C,
                   22532:          classes/table.C, include/pa_string.h, main/pa_string.C,
                   22533:          types/pa_vstring.C, types/pa_vstring.h: started int:sql
                   22534: 
                   22535:        * src/: classes/classes.C, classes/hash.C, classes/op.C,
                   22536:          classes/table.C, main/compile.C, main/compile.y, main/execute.C:
                   22537:          hash:sql moved to main trunc. operators.txt updated
                   22538: 
                   22539:        * src/classes/: hash.C, op.C, table.C: hash:sql
                   22540: 
                   22541:        * src/classes/op.C: z
                   22542: 
                   22543:        * src/: main/compile.C, classes/classes.C: 1
                   22544: 
                   22545:        * src/: classes/classes.C, main/compile.C, main/compile.y,
                   22546:          main/execute.C: 0
                   22547: 
                   22548:        * src/main/execute.C: z
                   22549: 
                   22550:        * src/targets/cgi/parser3.C: z
                   22551: 
                   22552:        * src/targets/cgi/parser3.C: argv can be just "parser3". made
                   22553:          site_auto_path "." in that case
                   22554: 
                   22555:        * src/targets/cgi/: parser3.C: z
                   22556: 
                   22557:        * src/main/pa_request.C: .am
                   22558: 
                   22559:        * src/: main/pa_request.C, targets/cgi/parser3.C:
                   22560:          pcre_tables=pcre_default_tables;
                   22561: 
                   22562: 2001-05-19  parser
                   22563: 
                   22564:        * src/main/pa_string.C: z
                   22565: 
                   22566:        * src/: include/pa_string.h, main/untaint.C, targets/cgi/pa_pool.C:
                   22567:          introducing String::cstr_bufsize, returns just size+1 for as_is
                   22568:          target.
                   22569: 
                   22570:        * src/: main/untaint.C, targets/cgi/pa_pool.C,
                   22571:          targets/cgi/parser3.C: fixed bug in pre html untaint, wrong size
                   22572:          used, 4* mem wasted
                   22573: 
                   22574:        * src/classes/string.C: root context in match replace body now
                   22575:          unchanged
                   22576: 
                   22577:        * src/types/pa_value.h: parameter # 1 based
                   22578: 
                   22579:        * src/main/pa_common.C: common:  actual filename '%s'
                   22580: 
                   22581:        * src/classes/string.C: z
                   22582: 
                   22583:        * src/classes/Makefile.am: classes/.am
                   22584: 
                   22585:        * src/classes/: Makefile.am: classes/.am
                   22586: 
                   22587:        * src/: classes/Makefile.am, main/pa_sql_driver_manager.C,
                   22588:          targets/cgi/pa_pool.C: classes/.am
                   22589: 
                   22590: 2001-05-18  parser
                   22591: 
1.116     moko     22592:        * src/: include/pa_config_auto.h.in, targets/cgi/pa_pool.C: .am
                   22593:          pa_threads.C ins
1.95      moko     22594: 
                   22595:        * src/targets/cgi/Makefile.am: .am pa_threads.C added
                   22596: 
                   22597: 2001-05-17  parser
                   22598: 
                   22599:        * src/: classes/string.C, include/pa_config_fixed.h,
                   22600:          include/pa_config_includes.h, main/compile.y,
                   22601:          main/compile_tools.h, main/execute.C, main/pa_array.C,
                   22602:          main/pa_common.C, main/pa_dir.C, main/pa_hash.C, main/pa_pool.C,
                   22603:          main/untaint.C, types/pa_vcookie.C, types/pa_vfile.C,
                   22604:          types/pa_vform.C: #include "pa_config_includes.h" removed from
                   22605:          most .C
                   22606: 
                   22607:        * src/doc/html2chm.cmd: z
                   22608: 
                   22609:        * src/doc/: chm.cmd, doxygen.cmd, html2chm.cmd, sources2html.cmd,
                   22610:          view.cmd, view_chm.cmd, view_html.cmd: doc cmds
                   22611: 
                   22612:        * src/main/pa_sql_driver_manager.C: moved expiration to
                   22613:          get_connection_from_cache
                   22614: 
                   22615:        * src/main/pa_sql_driver_manager.C: cache expiration bf
                   22616: 
                   22617:        * src/: classes/classes.h, include/pa_sql_connection.h,
                   22618:          include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C:
                   22619:          cache expiration[use SQL_Driver::disconnect]
                   22620: 
                   22621:        * src/main/pa_table.C: table.locate current restored on "not found"
                   22622: 
                   22623:        * src/: main/execute.C, types/pa_vmethod_frame.h: endless recursion
                   22624:          line no
                   22625: 
                   22626:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
                   22627:          ANTI_ENDLESS_EXECUTE_RECOURSION
                   22628: 
                   22629:        * src/: classes/op.C, include/pa_sql_connection.h,
                   22630:          include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C,
                   22631:          sql/pa_sql_driver.h: fixed problem at last: 2connections own
                   22632:          1driver and set_services fight for driver::fservices. before fix
                   22633: 
                   22634:        * src/: classes/op.C, include/pa_config_fixed.h,
                   22635:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   22636:          main/pa_sql_driver_manager.C: found problem at last: 2connections
                   22637:          own 1driver and set_services fight for driver::fservices. before
                   22638:          fix
                   22639: 
                   22640:        * src/: include/pa_config_fixed.h, include/pa_threads.h,
                   22641:          targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
                   22642:          targets/isapi/pa_threads.C, targets/isapi/parser3isapi.dsp: added
                   22643:          pa_threads.C
                   22644: 
                   22645:        * src/include/pa_threads.h: removed targets/parser
                   22646: 
                   22647:        * src/include/: pa_array.h, pa_common.h, pa_config_fixed.h,
                   22648:          pa_config_includes.h, pa_exception.h, pa_exec.h, pa_globals.h,
                   22649:          pa_hash.h, pa_opcode.h, pa_pool.h, pa_request.h, pa_sapi.h,
                   22650:          pa_socks.h, pa_sql_connection.h, pa_stack.h, pa_string.h,
                   22651:          pa_table.h, pa_threads.h: #include "pa_config_includes.h" in all
                   22652:          headers
                   22653: 
                   22654:        * src/: classes/image.C, include/pa_sql_driver_manager.h,
                   22655:          main/pa_sql_driver_manager.C, main/pa_string.C: wrong includes
                   22656:          order prevented sqlmanager to see MULTYTHREAD define
                   22657: 
                   22658:        * src/: include/pa_config_fixed.h, include/pa_threads.h,
                   22659:          main/pa_sql_driver_manager.C: SYNCHRONIZED moved closer to caches
                   22660:          put/gets
                   22661: 
                   22662:        * src/: include/pa_hash.h, main/execute.C: removed /*SYNCHRONIZED*/
                   22663:          from hash.h
                   22664: 
                   22665:        * src/: classes/op.C, include/pa_sql_connection.h,
                   22666:          main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: connection
                   22667:          from cache ->set_services(&services);
                   22668: 
                   22669: 2001-05-16  parser
                   22670: 
                   22671:        * src/targets/cgi/parser3.C: z
                   22672: 
                   22673:        * src/: include/pa_pool.h, targets/cgi/pa_pool.C: removed pool
                   22674:          debug, #ifdefed some.  would debug later, on more precise sample
                   22675:          than stupid: @main[] $name[$z[]] ^for[i](0;10000-2){ $tail[9994]
                   22676:          $name.$tail[$tail!] $name.$tail } ok3
                   22677: 
                   22678:        * src/: include/pa_array.h, main/pa_array.C, targets/cgi/parser3.C:
                   22679:          removed array debug. before vstring rebasing
                   22680: 
                   22681:        * src/: include/pa_array.h, include/pa_string.h, main/execute.C,
                   22682:          main/pa_array.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C:
                   22683:          array debugged; adjusted
                   22684: 
                   22685:        * src/main/: pa_sql_driver_manager.C, pa_string.C:
                   22686:          SQL_Driver_manager line no for connect/charset errors
                   22687: 
                   22688: 2001-05-15  parser
                   22689: 
                   22690:        * src/: include/pa_array.h, include/pa_string.h, main/pa_array.C,
                   22691:          main/pa_string.C: string+array made linear grows
                   22692: 
                   22693:        * src/: include/pa_string.h, main/pa_string.C,
                   22694:          targets/cgi/pa_pool.C, targets/cgi/parser3.C: think that all must
                   22695:          grow lineary, not exponentialy
                   22696: 
                   22697:        * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C,
                   22698:          targets/cgi/pa_pool.C, targets/cgi/parser3.C: string fixed bug
                   22699:          with fullchunk cmps
                   22700: 
                   22701:        * src/targets/cgi/: pa_pool.C, parser3.C: main loss here: 5673321/
                   22702:          70041=           81
                   22703: 
                   22704:        * src/: include/pa_string.h, targets/cgi/pa_pool.C,
                   22705:          targets/cgi/parser3.C: detected huge mem allocation: size/times
                   22706:          malloc 27809390/368771, calloc 3232/83. would test now
                   22707: 
                   22708:        * src/: classes/random.C, main/compile.y, main/execute.C,
                   22709:          main/pa_request.C, types/pa_value.h, types/pa_vmethod_frame.h:
                   22710:          numbered params had wrong name - for instance: bad error message
                   22711:          in ^for[] bad body type. fixed
                   22712: 
                   22713: 2001-05-14  parser
                   22714: 
                   22715:        * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
                   22716:          main/untaint.C: ^string.upper|lower[]
                   22717: 
                   22718: 2001-05-11  parser
                   22719: 
                   22720:        * src/: classes/double.C, classes/image.C, classes/op.C,
                   22721:          classes/string.C, classes/table.C, classes/unknown.C,
                   22722:          main/execute.C, types/pa_value.h, types/pa_vbool.h,
                   22723:          types/pa_vdouble.h, types/pa_vint.h, types/pa_vstring.h,
                   22724:          types/pa_vunknown.h: op: MAX_LOOPS as_int
                   22725: 
                   22726:        * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: fixed some
                   22727:          .dsp for win32tools
                   22728: 
                   22729: 2001-05-11  paf
                   22730: 
                   22731:        * src/: classes/classes.cmd, classes/gawk.exe, classes/ls.exe,
                   22732:          main/bison.exe, targets/isapi/KILL.EXE, targets/isapi/PSTAT.EXE,
                   22733:          targets/isapi/istart.cmd, targets/isapi/istop.cmd,
                   22734:          targets/isapi/kill.pl: moved win32 helpers to /win32tools
                   22735: 
                   22736: 2001-05-10  paf
                   22737: 
                   22738:        * src/include/: pa_common.h, pa_config_includes.h: inline undefed
                   22739:          for C++, that's all
                   22740: 
1.116     moko     22741:        * src/include/: pa_config_auto.h.in, pa_config_fixed.h,
                   22742:          pa_config_includes.h: inline wonders
1.95      moko     22743: 
                   22744:        * src/: classes/Makefile.am, classes/hash.C, doc/doxygen.cfg,
                   22745:          doc/doxygen.cmd: hash.C added
                   22746: 
                   22747:        * src/: main/pa_request.C, types/pa_vrequest.C: op configured
                   22748: 
                   22749:        * src/main/compile.y: @end grammar: allowed zero strings in control
                   22750:          menthod
                   22751: 
                   22752:        * src/types/: pa_value.h, pa_vclass.h, pa_vstateless_class.h,
                   22753:          pa_vstateless_object.h: changed priority: field before method
                   22754:          lookup in vclass & vobject
                   22755: 
                   22756:        * src/: doc/doxygen.cmd, main/compile.y, types/pa_vobject.h:
                   22757:          grammar: priorities changes [lowerd && prior] vobject: now first
                   22758:          fields, next methods
                   22759: 
                   22760: 2001-05-08  paf
                   22761: 
                   22762:        * src/main/pa_table.C: table columnname2item on nameless ignored
                   22763:          bark=false. fixed
                   22764: 
                   22765:        * src/: classes/table.C, types/pa_value.h, types/pa_vhash.h,
                   22766:          types/pa_vmethod_frame.h: hash:default works at last!
                   22767: 
                   22768:        * src/: classes/mail.C, classes/table.C, doc/doxygen.cmd,
                   22769:          main/main.dsp, types/pa_vhash.h, types/pa_vstateless_class.h:
                   22770:          hash:default
                   22771: 
                   22772:        * src/classes/table.C: z
                   22773: 
                   22774:        * src/classes/table.C: table:hash always hash of hash now
                   22775: 
                   22776:        * src/classes/table.C: table:empty return bool now
                   22777: 
                   22778:        * src/: classes/table.C, doc/chm.cmd, include/pa_array.h,
                   22779:          include/pa_table.h, main/pa_table.C, types/pa_value.h,
                   22780:          types/pa_vtable.h: table:hash
                   22781: 
                   22782:        * src/classes/table.C: table:record have name
                   22783: 
                   22784:        * src/: classes/op.C, types/pa_vtable.h: allowed $table.2342734
                   22785:          returns vunknown
                   22786: 
                   22787:        * src/classes/: double.C, int.C, op.C, string.C:
                   22788:          int,double,string:int[] double[] string:length[] results now have
                   22789:          hames
                   22790: 
                   22791:        * src/: classes/op.C, classes/table.C, main/main.dsp,
                   22792:          types/pa_vtable.h: removed table:find. table:locate and op:eval
                   22793:          now return bool
                   22794: 
                   22795:        * src/: doc/chm.cmd, main/execute.C, types/pa_value.h: wrong pool
                   22796:          in method checkparams again. fixed
                   22797: 
                   22798: 2001-05-07  paf
                   22799: 
                   22800:        * src/doc/chm.cmd: cmd
                   22801: 
                   22802:        * src/: classes/image.C, classes/mail.C, classes/string.C,
                   22803:          doc/chm.cmd, include/pa_table.h, main/pa_table.C,
                   22804:          types/pa_value.h: method reported errors on wrong pool
                   22805: 
                   22806:        * src/main/execute.C: ^var[^class:var.method[]] is not constructor
                   22807:          now
                   22808: 
                   22809:        * src/: doc/ClassExample2.dox, doc/aliased.dox, doc/chm.cmd,
                   22810:          include/code.h, include/pa_opcode.h, main/compile.C,
                   22811:          main/compile_tools.h, main/execute.C, types/pa_value.h,
                   22812:          types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
                   22813:          types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
                   22814:          types/pa_vfile.h, types/pa_vform.h, types/pa_vhash.h,
                   22815:          types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
                   22816:          types/pa_vmethod_frame.h, types/pa_vobject.h,
                   22817:          types/pa_vrequest.h, types/pa_vresponse.h,
                   22818:          types/pa_vstateless_class.h, types/pa_vstring.h,
                   22819:          types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
                   22820:          types/pa_wwrapper.h: pa_code.h
                   22821: 
                   22822:        * src/doc/: chm.cmd, doxygen.cmd, view.cmd: dox cmd
                   22823: 
                   22824:        * src/: classes/string.C, classes/table.C, doc/ClassExample1.dox,
                   22825:          doc/ClassExample2.dox, doc/ClassExample3.dox, doc/aliased.dox,
                   22826:          doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
                   22827:          doc/doxygen.cmd, doc/executor.dox, doc/index.dox,
                   22828:          doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
                   22829:          doc/string.dox, doc/targets.dox, doc/value.dox, include/code.h,
                   22830:          include/pa_hash.h, include/pa_string.h, main/pa_request.C,
                   22831:          main/pa_sql_driver_manager.C, types/pa_vjunction.h,
                   22832:          types/pa_vtable.h: dox, split by not clean parts also
                   22833: 
                   22834:        * src/: include/pa_table.h, main/pa_table.C, types/pa_value.h,
                   22835:          types/pa_vtable.h: table: fields, then methods.  so to enable
                   22836:          'dir' fields & co. more
                   22837: 
                   22838:        * src/types/: pa_value.h, pa_vtable.h: table: fields, then methods.
                   22839:          so to enable 'dir' fields & co.
                   22840: 
                   22841:        * src/main/compile.y: grammar: @end
                   22842: 
                   22843: 2001-05-04  paf
                   22844: 
                   22845:        * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
                   22846:          doc/ClassExample3.dox, main/execute.C: dox: example1 updated
                   22847: 
                   22848:        * src/: classes/classes.h, classes/double.C, classes/file.C,
                   22849:          classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
                   22850:          classes/op.C, classes/random.C, classes/response.C,
                   22851:          classes/string.C, classes/table.C, classes/unknown.C,
                   22852:          doc/doxygen.cfg, doc/index.dox, main/pa_string.C: removed m-
                   22853:          method dox
                   22854: 
                   22855: 2001-05-03  paf
                   22856: 
                   22857:        * src/: classes/classes.h, classes/double.C, doc/aliased.dox,
                   22858:          doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
                   22859:          doc/doxygen.txt, doc/executor.dox, doc/index.dox,
                   22860:          doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
                   22861:          doc/string.dox, doc/targets.dox, doc/value.dox,
                   22862:          main/pa_request.C: dox splitted .dox files and added some
                   22863: 
                   22864:        * src/: classes/Makefile.am, doc/doxygen.txt: classes/am
                   22865: 
                   22866: 2001-05-02  paf
                   22867: 
                   22868:        * src/classes/: image.C, table.C: table:dir result are not tainted
                   22869:          by file_name  language now
                   22870: 
                   22871: 2001-04-28  paf
                   22872: 
                   22873:        * src/classes/classes.inc: removed classes.inc
                   22874: 
                   22875:        * src/: classes/classes.inc, main/Makefile.am: removed pa_methoded
                   22876:          from .am
                   22877: 
                   22878:        * src/classes/classes.awk: skipped classes in .awk
                   22879: 
                   22880:        * src/: classes/Makefile.am, classes/classes.C, classes/classes.h,
                   22881:          classes/classes.inc, classes/double.C, classes/file.C,
                   22882:          classes/form.C, classes/int.C, classes/op.C, classes/response.C,
                   22883:          classes/string.C, classes/table.C, classes/unknown.C,
                   22884:          include/pa_methoded.h, main/main.dsp, main/pa_methoded.C,
                   22885:          targets/cgi/parser3.C, types/pa_vdouble.h, types/pa_vfile.h,
                   22886:          types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h: renamed
                   22887:          pa_methoded back to classes/classes.h
                   22888: 
                   22889:        * src/: classes/Makefile.am, main/main.dsp: classes/Makefile.am
                   22890: 
                   22891:        * src/: classes/Makefile.am, classes/classes.awk,
                   22892:          classes/classes.cmd, classes/classes.inc, classes/gawk.exe,
                   22893:          classes/ls.exe, main/bison.exe: classes.inc autogenerator
                   22894: 
                   22895:        * src/: classes/classes.C, classes/classes.h, classes/double.C,
                   22896:          classes/file.C, classes/form.C, classes/int.C, classes/op.C,
                   22897:          classes/response.C, classes/string.C, classes/table.C,
                   22898:          classes/unknown.C, include/pa_methoded.h, main/Makefile.am,
                   22899:          main/main.dsp, main/pa_methoded.C, targets/cgi/parser3.C,
                   22900:          types/pa_vdouble.h, types/pa_vfile.h, types/pa_vform.h,
                   22901:          types/pa_vimage.h, types/pa_vint.h: classes/classes renamet to
                   22902:          include|main/pa_methoded
                   22903: 
                   22904:        * src/: include/pa_string.h, main/pa_globals.C, main/untaint.C,
                   22905:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C: z
                   22906: 
                   22907:        * src/: classes/form.C, include/pa_globals.h, main/pa_globals.C:
                   22908:          moved some configured data to request::classes_conf moved some
                   22909:          string crations from globals to M...  [works]
                   22910: 
                   22911:        * src/: classes/form.C, classes/mail.C, classes/op.C,
                   22912:          include/pa_globals.h, include/pa_request.h, main/pa_globals.C,
                   22913:          main/pa_request.C: moved some configured data to
                   22914:          request::classes_conf moved some string crations from globals to
                   22915:          M...
                   22916: 
                   22917:        * src/: classes/form.C, include/pa_request.h, main/pa_request.C:
                   22918:          about to move configured data to special request hash
                   22919: 
                   22920:        * src/: classes/classes.C, classes/classes.h, classes/file.C,
                   22921:          classes/form.C, classes/mail.C, include/pa_request.h,
                   22922:          main/pa_request.C: configure started
                   22923: 
                   22924:        * src/: main/execute.C, types/pa_wcontext.h: Methoded reorganized
                   22925:          2. todo: methoded-configure
                   22926: 
                   22927:        * src/: classes/_double.h, classes/_file.h, classes/_form.h,
                   22928:          classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
                   22929:          classes/_random.h, classes/_response.h, classes/_string.h,
                   22930:          classes/_table.h, classes/_unknown.h, classes/classes.inc,
                   22931:          classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
                   22932:          classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
                   22933:          classes/random.C, classes/response.C, classes/string.C,
                   22934:          classes/table.C, classes/unknown.C, include/pa_globals.h,
                   22935:          include/pa_request.h, main/compile.y, main/execute.C,
                   22936:          main/main.dsp, main/pa_globals.C, main/pa_request.C,
                   22937:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                   22938:          types/pa_value.h, types/pa_vcookie.h, types/pa_vdouble.h,
                   22939:          types/pa_venv.h, types/pa_vfile.h, types/pa_vform.C,
                   22940:          types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
                   22941:          types/pa_vrequest.h, types/pa_vresponse.h,
                   22942:          types/pa_vstateless_class.h, types/pa_vstring.h,
                   22943:          types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
                   22944:          classes/classes.C, classes/classes.h: Methoded reorganized. todo:
                   22945:          methoded-configure
                   22946: 
                   22947:        * src/: classes/file.C, classes/table.C, main/compile.y,
                   22948:          main/execute.C, main/pa_request.C, targets/cgi/parser3.C,
                   22949:          types/pa_vtable.h, types/pa_wcontext.h: removed ^a.menu{$name}
                   22950:          ability. now $a{^menu{$name}} or ^a.menu{$a.name}
                   22951: 
                   22952:        * src/: classes/_string.h, classes/classes.C, classes/classes.h,
                   22953:          classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
                   22954:          classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
                   22955:          classes/random.C, classes/response.C, classes/string.C,
                   22956:          classes/table.C, classes/unknown.C, include/pa_request.h,
                   22957:          main/compile.y, main/execute.C, main/pa_globals.C,
                   22958:          main/pa_request.C, types/pa_value.h, types/pa_vdouble.h,
                   22959:          types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
                   22960:          types/pa_vimage.h, types/pa_vint.h, types/pa_vresponse.h,
                   22961:          types/pa_vstring.h, types/pa_vtable.h, types/pa_vunknown.h:
                   22962:          beautifying just compiled. todo: debug, configure
                   22963: 
                   22964: 2001-04-27  paf
                   22965: 
                   22966:        * src/: classes/file.C, classes/image.C, classes/table.C,
                   22967:          main/execute.C, main/pa_request.C, types/pa_vstateless_class.h:
                   22968:          beautifying -99
                   22969: 
                   22970:        * src/: classes/_double.h, classes/_form.h, classes/_int.h,
                   22971:          classes/_response.h, classes/_unknown.h, classes/classes.C,
                   22972:          classes/classes.h, classes/double.C, classes/file.C,
                   22973:          classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
                   22974:          classes/op.C, classes/random.C, classes/response.C,
                   22975:          classes/string.C, include/pa_globals.h, main/main.dsp,
                   22976:          main/pa_globals.C, types/pa_vdouble.h, types/pa_vfile.h,
                   22977:          types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
                   22978:          types/pa_vresponse.h, types/pa_vstring.h, types/pa_vtable.h,
                   22979:          types/pa_vunknown.h: beautifying -100
                   22980: 
                   22981:        * src/main/compile.y: serge@ found @CLASS bug. fixed
                   22982: 
                   22983:        * src/: classes/_file.h, classes/_image.h, classes/_mail.h,
                   22984:          classes/_op.h, classes/_random.h, classes/_table.h,
                   22985:          classes/file.C, classes/image.C, classes/int.C, classes/mail.C,
                   22986:          classes/op.C, classes/random.C, classes/response.C,
                   22987:          classes/string.C, classes/table.C, classes/unknown.C,
                   22988:          include/pa_globals.h, main/main.dsp, main/pa_globals.C,
                   22989:          main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
                   22990:          types/pa_vcookie.h, types/pa_venv.h, types/pa_vrequest.h: started
                   22991:          beautifying
                   22992: 
                   22993: 2001-04-26  paf
                   22994: 
                   22995:        * src/: main/pa_request.C, types/pa_vfile.h: code documentation ++
                   22996: 
                   22997:        * src/: doc/doxygen.cfg, include/pa_socks.h, main/pa_socks.C: code
                   22998:          documentation ++
                   22999: 
                   23000:        * src/: classes/_exec.h, doc/doxygen.cfg,
                   23001:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   23002:          targets/cgi/pa_pool.C: code documentation ++
                   23003: 
                   23004:        * src/: classes/_image.h, classes/op.C, classes/random.C,
                   23005:          types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
                   23006:          types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
                   23007:          types/pa_vform.C, types/pa_vform.h, types/pa_vimage.C,
                   23008:          types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
                   23009:          types/pa_vmethod_frame.h, types/pa_vobject.h,
                   23010:          types/pa_vrequest.C, types/pa_vrequest.h,
                   23011:          types/pa_vstateless_class.C, types/pa_vstateless_object.h,
                   23012:          types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.h,
                   23013:          types/pa_vunknown.h, types/pa_wcontext.C, types/pa_wwrapper.h:
                   23014:          code documentation ++
                   23015: 
                   23016:        * src/: classes/image.C, classes/mail.C, classes/string.C,
                   23017:          classes/table.C, doc/doxygen.cfg, doc/doxygen.txt,
                   23018:          include/pa_array.h, include/pa_dir.h, include/pa_string.h,
                   23019:          main/compile_tools.h, main/pa_common.C, sql/pa_sql_driver.h,
                   23020:          types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
                   23021:          types/pa_vhash.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
                   23022:          types/pa_vobject.h, types/pa_vstateless_class.h,
                   23023:          types/pa_wcontext.h, types/pa_wwrapper.h: code documentation ++
                   23024: 
                   23025:        * src/main/: pa_request.C, pa_string.C: z
                   23026: 
                   23027:        * src/: include/pa_common.h, include/pa_types.h,
                   23028:          main/pa_sql_driver_manager.C: module [and, guess, isapi]
                   23029:          connection caching fixed.  request-pooled-url were stored into
                   23030:          global connectioncache
                   23031: 
                   23032: 2001-04-25  paf
                   23033: 
                   23034:        * src/: doc/doxygen.cfg, doc/doxygen.txt,
                   23035:          targets/isapi/parser3isapi.C: started doc / [doxygen.txt]
                   23036: 
                   23037:        * src/: include/code.h, include/pa_common.h, main/compile.y,
                   23038:          main/execute.C, main/pa_common.C: -d
                   23039: 
                   23040:        * src/: classes/file.C, main/pa_exec.C, targets/cgi/parser3.C:
                   23041:          illegal call check a bit improved, but still under iis no mapping
                   23042:          of dir with parser allowed!
                   23043: 
                   23044: 2001-04-24  paf
                   23045: 
                   23046:        * src/targets/Makefile.am: apache module lib .am
                   23047: 
                   23048:        * src/main/pa_exec.C: windows32 buildCommand
                   23049: 
                   23050: 2001-04-23  paf
                   23051: 
                   23052:        * src/targets/cgi/Makefile.am: win32 conditional
                   23053: 
                   23054:        * src/targets/cgi/Makefile.am: win32 conditional
                   23055: 
                   23056:        * src/targets/cgi/Makefile.am: liblink
                   23057: 
                   23058:        * src/: include/pa_array.h, main/pa_array.C, types/pa_vfile.h:
                   23059:          vfile fields return type
                   23060: 
                   23061:        * src/types/pa_vfile.h: vfile fields return type
                   23062: 
                   23063:        * src/include/pa_config_auto.h.in: .h.in
                   23064: 
                   23065:        * src/: classes/Makefile, main/Makefile, targets/cgi/Makefile,
                   23066:          types/Makefile: makefiles removed
                   23067: 
                   23068:        * src/: classes/Makefile, main/Makefile, main/pa_string.C,
                   23069:          targets/cgi/Makefile, types/Makefile: configure.in + makefiles
                   23070: 
                   23071:        * src/main/pa_string.C: tested OK /// @test really @b test: s x m
                   23072:          [tested: i & g ]
                   23073: 
                   23074:        * src/: classes/random.C, targets/cgi/parser3.C: redo failed ///
                   23075:          @test noticed series in isapi, check how initialize_random_class
                   23076:          is called! [must be called only once]
                   23077: 
                   23078:        * src/main/execute.C: operators first! so that ^table.menu{^rem{}}
                   23079:          would not be 'unknown column'
                   23080: 
                   23081:        * src/: classes/table.C, types/pa_vform.C, types/pa_vtable.h: ///
                   23082:          @test $a.menu{ $a[123] } and $a.menu{^table:set[]...}
                   23083: 
                   23084:        * src/: main/pa_request.C, targets/cgi/parser3.C: /// @test with
                   23085:          commandline start "parser3 a.html" so that ^load[a.cfg] worked!
                   23086:          [now doesnt]
                   23087: 
                   23088:        * src/targets/cgi/parser3.C: cgi cmdline ver
                   23089: 
                   23090:        * src/targets/cgi/parser3.C: cgi /// @test disable
                   23091:          /cgi-bin/parser3/auto.p
                   23092: 
                   23093:        * src/main/untaint.C: untaint without charset
                   23094: 
                   23095:        * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
                   23096:          main/pa_common.C: common: file_write /// @test mkdirs
                   23097:          file_delete rmdirs
                   23098: 
                   23099:        * src/main/untaint.C: mail header only once to =?
                   23100: 
                   23101:        * src/: classes/image.C, classes/mail.C, include/pa_globals.h,
                   23102:          include/pa_string.h, main/pa_exec.C, main/pa_request.C,
                   23103:          main/untaint.C: untaint -        @test optimize whitespaces for
                   23104:          all but 'html'
                   23105: 
                   23106:        * src/: classes/mail.C, include/pa_hash.h, include/pa_string.h,
                   23107:          main/pa_common.C, main/pa_hash.C, main/pa_request.C,
                   23108:          main/untaint.C: untaint -  @test mail-header
                   23109: 
                   23110: 2001-04-20  paf
                   23111: 
                   23112:        * src/: classes/string.C, classes/table.C, include/pa_globals.h,
                   23113:          include/pa_request.h, include/pa_string.h, main/compile.y,
                   23114:          main/pa_globals.C, main/pa_request.C, main/pa_string.C,
                   23115:          targets/cgi/parser3.C: $MAIN:LOCALE
                   23116: 
                   23117:        * src/main/untaint.C: z
                   23118: 
                   23119:        * src/: main/untaint.C, targets/cgi/parser3.C: fixed header "a/a"
                   23120: 
                   23121: 2001-04-19  paf
                   23122: 
                   23123:        * src/main/compile_tools.h: $a$b bugfix
                   23124: 
                   23125:        * src/targets/cgi/parser3.C: z
                   23126: 
                   23127:        * src/classes/file.C: z
                   23128: 
                   23129:        * src/: classes/file.C, include/pa_common.h, types/pa_vcookie.C:
                   23130:          done: header to $fields. waits for header '\' tricks
                   23131: 
                   23132:        * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
                   23133:          main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vcookie.C:
                   23134:          changed urlencode here and in untaint.C to HTTP standard's " and
                   23135:          \" mech
                   23136: 
                   23137:        * src/: main/pa_request.C, targets/isapi/parser3isapi.C: fixed
                   23138:          http://alx/~paf/ doesnt load /auto.p
                   23139: 
                   23140: 2001-04-18  paf
                   23141: 
                   23142:        * src/main/pa_request.C: 1
                   23143: 
                   23144:        * src/: main/Makefile.am, main/main.dsp, targets/cgi/Makefile.am:
                   23145:          linux @alx
                   23146: 
                   23147: 2001-04-17  paf
                   23148: 
                   23149:        * src/: classes/file.C, classes/image.C, doc/doxygen.cfg,
                   23150:          include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
                   23151:          sql/pa_sql_driver.h: SQL_Driver_services renamed. doxygen statics
                   23152:          enabled
                   23153: 
                   23154:        * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
                   23155:          classes/_exec.h, classes/_file.h, classes/_form.h,
                   23156:          classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
                   23157:          classes/_random.h, classes/_response.h, classes/_string.h,
                   23158:          classes/_table.h, classes/_unknown.h, classes/file.C,
                   23159:          classes/image.C, classes/mail.C, classes/op.C, classes/random.C,
                   23160:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   23161:          include/pa_hash.h, include/pa_sql_driver_manager.h,
                   23162:          include/pa_version.h, main/Makefile.am, main/compile.y,
                   23163:          main/pa_common.C, main/pa_exec.C, main/pa_socks.C,
                   23164:          main/pa_sql_driver_manager.C, sql/Makefile.am,
                   23165:          sql/pa_sql_driver.h, targets/cgi/Makefile.am,
                   23166:          targets/cgi/parser3.C, types/Makefile.am, types/pa_vcookie.C,
                   23167:          types/pa_vform.C, types/pa_vimage.h: exec @jav
                   23168: 
                   23169:        * src/: include/pa_sql_driver_manager.h,
                   23170:          main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
                   23171:          types/pa_vimage.h: sql driver interface now has initialize(client
                   23172:          .so)
                   23173: 
                   23174: 2001-04-16  paf
                   23175: 
                   23176:        * src/Makefile.am: compile2 cygwin
                   23177: 
                   23178:        * src/: include/pa_config_includes.h, main/pa_exec.C,
                   23179:          main/pa_socks.C, targets/cgi/Makefile.am: compile1 cygwin
                   23180: 
                   23181:        * src/targets/cgi/Makefile.am: compile0 jav
                   23182: 
                   23183:        * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
                   23184:          classes/_exec.h, classes/_file.h, classes/_form.h,
                   23185:          classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
                   23186:          classes/_random.h, classes/_response.h, classes/_string.h,
                   23187:          classes/_table.h, classes/_unknown.h, classes/image.C,
                   23188:          classes/mail.C, classes/op.C, classes/random.C,
                   23189:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   23190:          include/pa_hash.h, include/pa_version.h, main/Makefile.am,
                   23191:          main/compile.y, main/pa_common.C, main/pa_exec.C,
                   23192:          sql/Makefile.am, targets/cgi/Makefile.am, targets/cgi/parser3.C,
                   23193:          types/Makefile.am, types/pa_vcookie.C, types/pa_vform.C:
                   23194:          compile-1
                   23195: 
                   23196: 2001-04-15  paf
                   23197: 
                   23198:        * src/classes/op.C: z
                   23199: 
                   23200:        * src/classes/table.C: table:empty +=process
                   23201: 
                   23202:        * src/types/pa_value.h: MethodParams !junction
                   23203: 
                   23204:        * src/: classes/_string.h, classes/double.C, classes/file.C,
                   23205:          classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
                   23206:          classes/random.C, classes/response.C, classes/string.C,
                   23207:          classes/table.C, classes/unknown.C, main/pa_request.C:
                   23208:          MethodParams everywhere
                   23209: 
                   23210:        * src/: classes/op.C, include/pa_request.h, types/pa_value.h,
                   23211:          types/pa_vmethod_frame.h: MethodParams in op.C
                   23212: 
                   23213: 2001-04-12  paf
                   23214: 
                   23215:        * src/: classes/image.C, types/pa_vimage.h: image:font :text
                   23216: 
                   23217:        * src/: classes/_unknown.h, classes/unknown.C,
                   23218:          include/pa_globals.h, main/main.dsp, main/pa_globals.C,
                   23219:          types/pa_vunknown.h: ^unknown:int[]=0 double[]=0
                   23220: 
                   23221:        * src/: classes/image.C, main/pa_hash.C: hash bug fixed
                   23222: 
                   23223:        * src/classes/image.C: image:gif now does not have params
                   23224: 
                   23225:        * src/classes/image.C:
                   23226:          image:line/fill/rectangle/bar/replace/polygon/polybar
                   23227: 
                   23228:        * src/: classes/image.C, classes/op.C, main/execute.C,
                   23229:          types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
                   23230:          for var now written not to r.wcontext, but to r.root cleared
                   23231:          "entered_object" state
                   23232: 
                   23233: 2001-04-11  paf
                   23234: 
                   23235:        * src/classes/image.C: image:create image:load
                   23236: 
                   23237:        * src/: classes/image.C, main/main.dsp: gd with mem write + image
                   23238:          just compiled
                   23239: 
                   23240:        * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
                   23241:          todo: gif without file
                   23242: 
                   23243:        * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
                   23244:          started porting to Pooled descendant
                   23245: 
                   23246:        * src/: classes/image.C, main/execute.C, main/main.dsp,
                   23247:          main/pa_request.C, types/pa_vcframe.h, types/pa_vcode_frame.h,
                   23248:          types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
                   23249:          types/pa_vmframe.h: libimaging dead end: pil parses header in .py
                   23250: 
                   23251:        * src/: classes/image.C, include/pa_globals.h, main/main.dsp,
                   23252:          main/pa_globals.C, types/pa_vimage.C, types/pa_vimage.h: gd dead
                   23253:          end. switching to python imaging lib
                   23254: 
                   23255:        * src/main/main.dsp: gd+smtp made separate libs
                   23256: 
                   23257:        * src/: include/pa_globals.h, include/pa_string.h,
                   23258:          main/pa_common.C, main/pa_request.C, main/untaint.C,
                   23259:          types/pa_vfile.C, types/pa_vstring.C: fixed vstring:as_vfile
                   23260:          length
                   23261: 
                   23262:        * src/: classes/mail.C, classes/op.C, targets/cgi/parser3.C,
                   23263:          types/pa_value.h, types/pa_vfile.C, types/pa_vfile.h,
                   23264:          types/pa_vform.C, types/pa_vstring.C, types/pa_vstring.h: forced
                   23265:          UL_FILE_NAME of posted file name
                   23266: 
                   23267:        * src/: classes/image.C, main/pa_request.C, types/pa_vform.C: fixed
                   23268:          post [broke when moved post read to core]
                   23269: 
                   23270: 2001-04-10  paf
                   23271: 
                   23272:        * src/classes/image.C: image:html done
                   23273: 
                   23274:        * src/: classes/image.C, types/pa_vimage.C: jpg measure bugs fixed
                   23275: 
                   23276:        * src/classes/image.C: z
                   23277: 
                   23278:        * src/: classes/_image.h, classes/image.C, types/pa_vimage.C: image
                   23279:          forgotten!
                   23280: 
                   23281:        * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
                   23282:          main/pa_request.C, main/pa_string.C, main/untaint.C,
                   23283:          types/pa_vimage.h: image:measure -90
                   23284: 
                   23285:        * src/: classes/_double.h, classes/_file.h, classes/_form.h,
                   23286:          classes/_int.h, classes/_mail.h, classes/_op.h,
                   23287:          classes/_random.h, classes/_response.h, classes/_string.h,
                   23288:          classes/_table.h, classes/file.C, classes/mail.C,
                   23289:          include/pa_common.h, include/pa_globals.h, main/execute.C,
                   23290:          main/main.dsp, main/pa_common.C, main/pa_globals.C,
                   23291:          targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vfile.C,
                   23292:          types/pa_vfile.h, types/pa_vhash.h, types/pa_vimage.h,
                   23293:          types/pa_vresponse.h, types/pa_vstring.h: image:measure -100 just
                   23294:          compiled
                   23295: 
                   23296:        * src/classes/mail.C: minor bug with unclear from/to
                   23297: 
                   23298:        * src/classes/mail.C: sendmail unix skipping defaults
                   23299: 
                   23300:        * src/: classes/mail.C, include/pa_common.h, main/pa_common.C:
                   23301:          sendmail unix added defaults
                   23302: 
                   23303:        * src/classes/mail.C: unix sendmail compiled. todo:testing
                   23304: 
                   23305:        * src/: classes/mail.C, main/pa_globals.C: smtp some consts
                   23306: 
                   23307: 2001-04-09  paf
                   23308: 
                   23309:        * src/: classes/file.C, include/pa_exec.h, include/pa_sapi.h,
                   23310:          main/main.dsp, main/pa_exec.C, targets/cgi/parser3.C,
                   23311:          targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
                   23312:          targets/isapi/parser3isapi.dsp: all targets exec
                   23313: 
                   23314:        * src/: include/pa_sapi.h, include/pa_string.h,
                   23315:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                   23316:          targets/isapi/parser3isapi.dsp: sapi exec dead end. badly parsed
                   23317:          args in apache:util.script
                   23318: 
                   23319:        * src/include/pa_string.h: written but not tested exec with env for
                   23320:          unix
                   23321: 
                   23322:        * src/: classes/file.C, main/main.dsp, main/pa_request.C,
                   23323:          targets/cgi/parser3.C: exec win32 env
                   23324: 
                   23325:        * src/: classes/file.C, include/pa_hash.h, main/pa_hash.C: exec env
                   23326:          0
                   23327: 
                   23328:        * src/: classes/exec.C, classes/file.C, include/pa_globals.h,
                   23329:          main/execute.C, main/main.dsp, main/pa_globals.C,
                   23330:          main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h,
                   23331:          types/pa_vform.C, types/pa_vstring.C: exec4. todo env
                   23332: 
                   23333:        * src/: classes/exec.C, include/pa_common.h, main/pa_common.C,
                   23334:          main/untaint.C: exec3. decided exec:cgi to move to file:cgi
                   23335: 
                   23336:        * src/: classes/_exec.h, main/execute.C, main/pa_globals.C,
                   23337:          main/pa_request.C, types/pa_vcookie.C, types/pa_vfile.C: exec -2
                   23338: 
                   23339:        * src/: classes/_exec.h, classes/exec.C, include/pa_common.h,
                   23340:          include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
                   23341:          main/pa_common.C, main/pa_request.C, main/pa_string.C,
                   23342:          targets/cgi/parser3.C, targets/cgi/parser3.dsp,
                   23343:          targets/isapi/parser3isapi.C, types/pa_vform.C, types/pa_vform.h:
                   23344:          exec class just compiled. moved post read to request core
                   23345: 
                   23346:        * src/: classes/_op.h, include/pa_dir.h, include/pa_globals.h,
                   23347:          include/pa_sapi.h, main/main.dsp, main/pa_dir.C,
                   23348:          main/pa_globals.C, targets/cgi/parser3.C,
                   23349:          targets/cgi/parser3.dsp: problems with ^exec:cgi post data. they
                   23350:          are already read by vform
                   23351: 
                   23352: 2001-04-08  paf
                   23353: 
                   23354:        * src/: classes/file.C, classes/mail.C, classes/string.C,
                   23355:          include/pa_request.h, include/pa_string.h, main/pa_request.C:
                   23356:          uuencode. string<<
                   23357: 
                   23358: 2001-04-07  paf
                   23359: 
                   23360:        * src/classes/mail.C: z
                   23361: 
                   23362:        * src/classes/mail.C: z
                   23363: 
                   23364:        * src/classes/mail.C: ^mail[$attach
                   23365: 
                   23366:        * src/classes/mail.C: ^attach dead end
                   23367: 
                   23368:        * src/: include/pa_socks.h, main/main.dsp, main/pa_socks.C,
                   23369:          targets/cgi/parser3.C, targets/cgi/parser3.dsp,
                   23370:          targets/isapi/parser3isapi.C: mail:send 1
                   23371: 
                   23372:        * src/: classes/mail.C, main/pa_request.C: z
                   23373: 
                   23374:        * src/: classes/mail.C, include/pa_globals.h, include/pa_request.h,
                   23375:          main/main.dsp, main/pa_globals.C, main/pa_request.C: smtp just
                   23376:          compiled
                   23377: 
                   23378:        * src/classes/mail.C: +=
                   23379: 
                   23380:        * src/: classes/mail.C, include/pa_string.h: mail:send -1 text
                   23381:          prepared
                   23382: 
                   23383:        * src/: classes/_mail.h, classes/mail.C, include/pa_common.h,
                   23384:          include/pa_globals.h, include/pa_string.h, main/main.dsp,
                   23385:          main/pa_common.C, main/pa_globals.C, main/pa_request.C,
                   23386:          main/untaint.C, types/pa_vcookie.C: mail:send -10 just compiled
                   23387: 
                   23388: 2001-04-06  paf
                   23389: 
                   23390:        * src/: classes/table.C, include/pa_globals.h, main/pa_globals.C,
                   23391:          main/pa_string.C: table:dir 1
                   23392: 
                   23393:        * src/: classes/table.C, include/pa_dir.h, main/execute.C,
                   23394:          main/main.dsp, main/pa_dir.C: table:dir 0 [without regexp]
                   23395: 
                   23396:        * src/: classes/_op.h, classes/_root.h, classes/op.C,
                   23397:          classes/root.C, include/pa_globals.h, include/pa_request.h,
                   23398:          main/compile.C, main/execute.C, main/main.dsp, main/pa_globals.C,
                   23399:          main/pa_request.C: renamed 'root' to 'op'
                   23400: 
                   23401:        * src/classes/: _op.h, op.C: renamed from 'root'
                   23402: 
                   23403:        * src/types/pa_valiased.C: another root inherititance skipped
                   23404: 
                   23405:        * src/main/: compile.C, compile.y, execute.C: operators are now not
                   23406:          root methods of parent class. just 'ROOT' class
                   23407: 
                   23408:        * src/: classes/random.C, classes/table.C, main/pa_globals.C:
                   23409:          @office
                   23410: 
                   23411:        * src/: main/pa_request.C, sql/pa_sql_driver.h: mysql limit
                   23412: 
                   23413: 2001-04-05  paf
                   23414: 
                   23415:        * src/: main/execute.C, main/pa_request.C, main/pa_string.C,
                   23416:          types/pa_value.h, types/pa_vmframe.h, types/pa_wcontext.h:
                   23417:          constructor flag dropped at get_method_frame and remembered into
                   23418:          method_frame
                   23419: 
                   23420:        * src/: classes/file.C, classes/root.C, classes/string.C,
                   23421:          classes/table.C, main/pa_request.C: junction to code&expression
                   23422:          in errors
                   23423: 
                   23424:        * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
                   23425:          main/pa_string.C, targets/isapi/parser3isapi.dsp:
                   23426:          $LOCALE:ctype[Russian_Russia.1251]
                   23427: 
                   23428:        * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
                   23429:          include/pa_hash.h, include/pa_string.h, main/pa_hash.C,
                   23430:          main/pa_table.C: hash now not thread-safe.
                   23431: 
                   23432:        * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
                   23433:          main/untaint.C: z
                   23434: 
                   23435:        * src/: classes/random.C, classes/root.C, classes/table.C,
                   23436:          include/pa_sql_connection.h, include/pa_string.h, main/execute.C,
                   23437:          main/pa_sql_driver_manager.C, main/pa_string.C, main/untaint.C,
                   23438:          sql/pa_sql_driver.h, types/pa_vmframe.h, types/pa_wcontext.C,
                   23439:          types/pa_wcontext.h: sql quote. string untaint UL_SQL
                   23440: 
                   23441:        * src/: classes/table.C, include/pa_sql_connection.h,
                   23442:          main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql ping
                   23443: 
                   23444:        * src/classes/table.C: select * from hren error contains statement
                   23445: 
                   23446:        * src/: classes/table.C, include/pa_sql_connection.h,
                   23447:          include/pa_types.h, main/pa_sql_driver_manager.C, main/untaint.C,
                   23448:          sql/pa_sql_driver.h, targets/cgi/parser3.dsp: mysql 0
                   23449: 
                   23450:        * src/: classes/root.C, include/pa_sql_connection.h,
                   23451:          include/pa_sql_driver.h, main/main.dsp,
                   23452:          main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql driver
                   23453:          services for conv memory & error reporting
                   23454: 
                   23455: 2001-04-04  paf
                   23456: 
                   23457:        * src/doc/doxygen.cfg: z
                   23458: 
                   23459:        * src/include/pa_sql_driver.h: mysql connect
                   23460: 
                   23461:        * src/include/pa_sql_driver.h: mysql info
                   23462: 
                   23463:        * src/: classes/root.C, include/pa_sql_driver.h,
                   23464:          include/pa_sql_driver_manager.h, main/main.dsp,
                   23465:          main/pa_sql_driver_manager.C: more manager&connection&driver
                   23466: 
                   23467:        * src/sql/Makefile.am: forgot to add mysql client
                   23468: 
                   23469:        * src/: include/pa_sql_driver.h, include/pa_sql_driver_manager.h,
                   23470:          main/pa_sql_driver_manager.C: connect&sql -1000 just compiled
                   23471:          [forgot to add libltdl, added]
                   23472: 
                   23473:        * src/: Makefile.am, classes/root.C, classes/string.C,
                   23474:          classes/table.C, include/pa_globals.h, include/pa_hash.h,
                   23475:          include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
                   23476:          include/pa_string.h, include/pa_table.h, main/main.dsp,
                   23477:          main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
                   23478:          main/pa_string.C, main/pa_table.C, main/untaint.C: connect&sql
                   23479:          -1000 just compiled
                   23480: 
                   23481:        * src/: classes/random.C, classes/root.C, classes/table.C,
                   23482:          include/pa_globals.h, include/pa_pool.h, include/pa_request.h,
                   23483:          main/pa_request.C, types/pa_vclass.h: sql frame -10
                   23484: 
                   23485: 2001-04-03  paf
                   23486: 
                   23487:        * src/types/pa_vform.C: z
                   23488: 
                   23489:        * src/: classes/string.C, types/pa_vform.C: string:match replace
                   23490:          assigned lang
                   23491: 
                   23492:        * src/: classes/string.C, main/compile.y: grammar: fixed to allow
                   23493:          {}[]< empty []
                   23494: 
                   23495:        * src/: classes/file.C, classes/string.C, classes/table.C,
                   23496:          include/pa_string.h, main/pa_common.C, main/pa_string.C,
                   23497:          main/untaint.C: string:match replace 2.  string.cstr(forced lang)
                   23498: 
                   23499:        * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
                   23500:          string:match replace strange matches
                   23501: 
                   23502:        * src/classes/string.C: string:match replace 0
                   23503: 
                   23504:        * src/: classes/string.C, main/pa_string.C: string:match replace
                   23505:          prepared 2
                   23506: 
                   23507:        * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
                   23508:          string:match replace prepared
                   23509: 
                   23510:        * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
                   23511:          string:match replace -11
                   23512: 
                   23513:        * src/: classes/string.C, include/pa_globals.h,
                   23514:          include/pa_string.h, include/pa_threads.h, main/pa_globals.C,
                   23515:          main/pa_string.C, targets/isapi/parser3isapi.dsp: string:match 0
                   23516: 
                   23517:        * src/: classes/string.C, include/pa_globals.h,
                   23518:          include/pa_string.h, main/main.dsp, main/pa_globals.C,
                   23519:          main/pa_string.C: string:match [search] -1 just compiled
                   23520: 
                   23521:        * src/types/pa_vstring.C: z
                   23522: 
                   23523:        * src/: classes/double.C, classes/file.C, classes/form.C,
                   23524:          classes/int.C, classes/response.C, classes/root.C,
                   23525:          classes/string.C, classes/table.C, include/pa_string.h,
                   23526:          main/pa_string.C: string:match -10 [frame]
                   23527: 
                   23528:        * src/: classes/file.C, main/compile_tools.C, main/pa_common.C,
                   23529:          main/pa_request.C: z
                   23530: 
                   23531:        * src/: main/pa_common.C, main/untaint.C, targets/cgi/parser3.C,
                   23532:          targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h:
                   23533:          todo/tests
                   23534: 
                   23535:        * src/include/pa_common.h: z
                   23536: 
                   23537:        * src/: include/pa_globals.h, include/pa_hash.h, main/pa_globals.C,
                   23538:          main/pa_request.C, targets/cgi/parser3.C,
                   23539:          targets/isapi/parser3isapi.C, types/pa_vfile.C:
                   23540:          content-disposition
                   23541: 
                   23542:        * src/: include/pa_common.h, include/pa_globals.h,
                   23543:          main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
                   23544:          targets/isapi/parser3isapi.C, types/pa_value.h: main:post-process
                   23545: 
                   23546:        * src/: include/pa_common.h, include/pa_request.h,
                   23547:          include/pa_sapi.h, main/main.dsp, main/pa_common.C,
                   23548:          main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
                   23549:          types/pa_vfile.C, types/pa_vfile.h, types/pa_vstring.h: vfile in
                   23550:          response:body
                   23551: 
                   23552:        * src/classes/table.C: table:append now uses string::split
                   23553: 
                   23554:        * src/classes/table.C: z
                   23555: 
                   23556:        * src/: classes/file.C, classes/root.C, classes/string.C,
                   23557:          classes/table.C, doc/doxygen.cmd, doc/doxygen.txt,
                   23558:          doc/generate.cmd, include/pa_array.h, include/pa_request.h,
                   23559:          include/pa_string.h, main/execute.C, main/pa_string.C,
                   23560:          main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C:
                   23561:          string::pos & cmp & piece bugs fixed.  string::split new
                   23562:          table:load separated from set table:set implemented with clean \n
                   23563:          \t searches
                   23564: 
                   23565: 2001-04-02  paf
                   23566: 
                   23567:        * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
                   23568:          types/pa_valiased.C, types/pa_valiased.h, types/pa_vdouble.h,
                   23569:          types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
                   23570:          types/pa_vstring.h, types/pa_vtable.h: string::pos. about to use
                   23571:          it in table:set/load
                   23572: 
                   23573:        * src/: classes/table.C, include/pa_array.h, include/pa_string.h,
                   23574:          include/pa_table.h, main/execute.C, types/pa_value.h: table:join
                   23575: 
                   23576:        * src/classes/random.C: random:generate 1
                   23577: 
                   23578:        * src/: classes/_random.h, classes/random.C, include/pa_globals.h,
                   23579:          main/main.dsp, main/pa_globals.C, main/pa_request.C,
                   23580:          types/pa_value.h: random:generate
                   23581: 
                   23582: 2001-03-30  paf
                   23583: 
                   23584:        * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
                   23585:          todo: table flip and append. string::pos
                   23586: 
                   23587:        * src/: classes/double.C, classes/file.C, classes/int.C,
                   23588:          classes/response.C, classes/root.C, classes/string.C,
                   23589:          classes/table.C, main/compile.y, main/execute.C,
                   23590:          types/pa_value.h, types/pa_vstateless_class.C,
                   23591:          types/pa_vstateless_class.h: static|dynamic|any method
                   23592:          registration
                   23593: 
                   23594:        * src/: classes/file.C, classes/table.C, include/pa_table.h,
                   23595:          main/pa_table.C, types/pa_vstring.h, types/pa_wwrapper.h:
                   23596:          table:flip
                   23597: 
                   23598: 2001-03-29  paf
                   23599: 
                   23600:        * src/classes/string.C: string:xsplit forgot that they must result
                   23601:          in 1 row N column [not vice versa]
                   23602: 
                   23603:        * src/classes/string.C: z
                   23604: 
                   23605:        * src/classes/string.C: string: rsplit
                   23606: 
                   23607:        * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
                   23608:          string: lsplit
                   23609: 
                   23610:        * src/: classes/string.C, include/pa_string.h, main/execute.C,
                   23611:          main/pa_array.C, main/pa_string.C, types/pa_vtable.h: string:
                   23612:          lsplit -1
                   23613: 
                   23614:        * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
                   23615:          string: pos
                   23616: 
                   23617:        * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
                   23618:          string: pos -1
                   23619: 
                   23620:        * src/: classes/string.C, classes/table.C, include/pa_string.h,
                   23621:          main/compile.y, main/pa_request.C, main/pa_string.C,
                   23622:          main/untaint.C: string: left right mid
                   23623: 
                   23624:        * src/: classes/string.C, main/compile.y, main/compile_tools.C,
                   23625:          main/compile_tools.h, main/main.dsp, types/pa_value.h,
                   23626:          types/pa_vstring.h, types/pa_vunknown.h: empty params allowed. []
                   23627:          and [;] are different now.
                   23628: 
                   23629:        * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
                   23630:          main/untaint.C: pool.request undone
                   23631: 
                   23632:        * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
                   23633:          main/untaint.C: pool.request
                   23634: 
                   23635: 2001-03-28  paf
                   23636: 
                   23637:        * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
                   23638:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                   23639:          types/pa_value.h, types/pa_vrequest.C, types/pa_vunknown.h:
                   23640:          $request:browser [.type .version]; unknown.get_double now = 0.
                   23641: 
                   23642:        * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
                   23643:          include/pa_table.h, main/pa_globals.C, main/pa_request.C,
                   23644:          main/pa_table.C, types/pa_vfile.C, types/pa_vfile.h,
                   23645:          types/pa_vform.C: file:load autodetection of mime-type by
                   23646:          user-file-name
                   23647: 
                   23648:        * src/: classes/file.C, main/execute.C, main/pa_common.C,
                   23649:          main/untaint.C, targets/cgi/parser3.C, types/pa_vfile.C,
                   23650:          types/pa_vfile.h, types/pa_vform.C: file:load 1. tainted
                   23651: 
                   23652:        * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
                   23653:          types/pa_vfile.C, types/pa_vfile.h: started file:load. wrong
                   23654:          write. must be self.set
                   23655: 
                   23656:        * src/: classes/file.C, classes/root.C, classes/table.C,
                   23657:          include/pa_table.h, main/pa_table.C: table:locate1, file:test
                   23658: 
                   23659:        * src/: classes/table.C, include/pa_array.h, include/pa_hash.h,
                   23660:          include/pa_table.h, main/pa_array.C, main/pa_table.C,
                   23661:          types/pa_vtable.h: table:locate just compiled
                   23662: 
                   23663: 2001-03-27  paf
                   23664: 
                   23665:        * src/main/: execute.C, pa_common.C: fixed r/w context of
                   23666:          code-params2, fixed ntfs hardlink slow dir update
                   23667: 
                   23668:        * src/: main/execute.C, types/pa_value.h, types/pa_vmframe.h,
                   23669:          types/pa_wcontext.h: fixed r/w context of code-params
                   23670: 
                   23671:        * src/: classes/table.C, main/execute.C: about to change junction
                   23672:          rcontext!!
                   23673: 
                   23674:        * src/: classes/double.C, classes/int.C, classes/root.C,
                   23675:          classes/string.C, classes/table.C, main/compile_tools.C,
                   23676:          main/execute.C, main/pa_request.C, main/untaint.C,
                   23677:          types/pa_value.h, types/pa_vbool.h, types/pa_vcookie.C,
                   23678:          types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
                   23679:          types/pa_vmframe.h, types/pa_vstring.h, types/pa_vtable.h,
                   23680:          types/pa_vunknown.h: sort 0
                   23681: 
                   23682:        * src/types/: pa_valiased.C, pa_valiased.h, pa_vdouble.h,
                   23683:          pa_vfile.h, pa_vint.h, pa_vresponse.h, pa_vstring.h, pa_vtable.h:
                   23684:          renamed to are_static_calls_disabled
                   23685: 
                   23686:        * src/: classes/table.C, main/pa_common.C, main/pa_request.C,
                   23687:          targets/cgi/parser3.C, types/pa_value.h, types/pa_vbool.h,
                   23688:          types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
                   23689:          types/pa_vstring.h, types/pa_vunknown.h: continue on sort
                   23690: 
                   23691:        * src/main/compile.y: fixed minor bug in @mn[][] ...^{
                   23692: 
                   23693:        * src/: classes/table.C, include/pa_common.h, main/compile.y:
                   23694:          started table:sort fixed minor bug in #...^{
                   23695: 
                   23696:        * src/: classes/table.C, include/pa_common.h, main/compile.y,
                   23697:          main/execute.C, main/pa_common.C, main/pa_table.C: table:save
                   23698:          decided to have as it were. stepped back.  grammar: added 'in'
                   23699:          'is' 'lt'&co follow-space check
                   23700: 
                   23701: 2001-03-26  paf
                   23702: 
                   23703:        * src/: classes/file.C, classes/root.C, classes/table.C,
                   23704:          include/pa_common.h, include/pa_globals.h, include/pa_table.h,
                   23705:          main/pa_common.C, main/pa_globals.C, main/pa_request.C,
                   23706:          main/pa_table.C: moved ::save to pa_table.  disabled @auto
                   23707:          invocation in ^process
                   23708: 
                   23709:        * src/main/compile.y: grammar: [] 0params [;] 2 params (was 0)
                   23710: 
                   23711:        * src/: classes/table.C, include/pa_array.h, include/pa_table.h,
                   23712:          main/pa_array.C: table:record
                   23713: 
                   23714:        * src/: main/untaint.C, targets/cgi/parser3.C,
                   23715:          targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
                   23716:          targets/isapi/pool_storage.h, types/pa_valiased.h,
                   23717:          types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.h,
                   23718:          types/pa_vint.h, types/pa_vresponse.h, types/pa_vstring.h,
                   23719:          types/pa_vtable.h: z
                   23720: 
                   23721:        * src/: include/pa_pool.h, main/execute.C, types/pa_valiased.C,
                   23722:          types/pa_valiased.h, types/pa_value.h, types/pa_vdouble.h,
                   23723:          types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
                   23724:          types/pa_vstring.h, types/pa_vtable.h: disabled $a(123)
                   23725:          $b[$a.CLASS] ^b.inc[123] shit.  allowed no checks in native
                   23726:          method realisations on 'self' validity - they now can simply
                   23727:          assume that 'self' is V{Proper} .
                   23728: 
                   23729: 2001-03-25  paf
                   23730: 
                   23731:        * src/main/untaint.C: z
                   23732: 
                   23733:        * src/main/: pa_request.C, untaint.C: moved default typo-table to
                   23734:          lowlevel - it initialization could be skipped if failed in @auto.
                   23735:          so that exception report would use some table
                   23736: 
                   23737:        * src/main/pa_request.C: table empty lines ignored. system-default
                   23738:          content type assigned in output:result [can fail in main:auto and
                   23739:          skipped normal defaults extraction]
                   23740: 
                   23741:        * src/: include/pa_string.h, main/compile.y: #comment fixed minor
                   23742:          bug
                   23743: 
                   23744:        * src/main/: pa_globals.C, untaint.C: html-typo - moved all
                   23745:          processing to table [except preliminary \r\n \r \n replacements
                   23746:          to "\n"]
                   23747: 
                   23748:        * src/: classes/table.C, main/untaint.C: html-typo - decided to
                   23749:          move all the processing to table
                   23750: 
                   23751:        * src/: classes/table.C, include/pa_table.h, main/pa_globals.C,
                   23752:          main/pa_table.C, main/untaint.C: returned table originating.
                   23753:          useful for reporting typo table problems origin. think would be
                   23754:          useful somewhere else
                   23755: 
                   23756:        * src/main/untaint.C: typo  \r \r\n \n properly handled
                   23757: 
                   23758:        * src/: classes/table.C, include/pa_globals.h, include/pa_string.h,
                   23759:          include/pa_table.h, main/compile.y, main/compile_tools.C,
                   23760:          main/compile_tools.h, main/pa_globals.C, main/pa_request.C,
                   23761:          main/pa_string.C, main/pa_table.C, main/untaint.C,
                   23762:          types/pa_vcookie.h: typo & typo-default
                   23763: 
                   23764: 2001-03-24  paf
                   23765: 
                   23766:        * src/main/pa_common.C: z
                   23767: 
                   23768:        * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
                   23769:          targets/cgi/parser3.C: html-typo 2
                   23770: 
                   23771:        * src/: doc/doxygen.cfg, doc/doxygen.txt, doc/generate.cmd,
                   23772:          doc/view.cmd, include/pa_array.h, include/pa_globals.h,
                   23773:          include/pa_pool.h, include/pa_string.h, include/pa_table.h,
                   23774:          main/execute.C, main/pa_array.C, main/pa_globals.C,
                   23775:          main/pa_request.C, main/pa_string.C, main/untaint.C,
                   23776:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                   23777:          types/pa_value.h, types/pa_vtable.h: html-typo 0 html-typo 1.
                   23778:          noticed double default content-type prob. run cgi.cmd tomorrow
                   23779:          first html-typo sample. detected << problem: they become ltlt too
                   23780:          fast
                   23781: 
                   23782:        * src/main/compile.y: z
                   23783: 
                   23784:        * src/main/: compile.y, compile_tools.h: #comment
                   23785: 
                   23786:        * src/: classes/file.C, classes/root.C, classes/table.C,
                   23787:          include/pa_common.h, include/pa_request.h, main/compile.y,
                   23788:          main/pa_common.C, main/pa_request.C, main/pa_string.C,
                   23789:          targets/isapi/parser3isapi.C, types/pa_vfile.h: file_read
                   23790:          stringified
                   23791: 
                   23792:        * src/types/pa_valiased.C: decided to String-ify file_read
                   23793: 
                   23794:        * src/targets/: cgi/parser3.C, isapi/nt_log_events.mc,
                   23795:          isapi/parser3isapi.dsp: cgi: sapi::log
                   23796: 
                   23797:        * src/: include/pa_sapi.h, main/pa_common.C, main/pa_request.C,
                   23798:          targets/cgi/parser3.C, targets/isapi/nt_log_events.mc,
                   23799:          targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp: nt
                   23800:          error log experiments failed - cgi under iis got no access to
                   23801:          log. registereventsource simply failed with 5(illegal call) code,
                   23802:          while worked OK as standalone executable.  isapi: used
                   23803:          HSE_APPEND_LOG_PARAMETER feature
                   23804: 
                   23805:        * src/: include/pa_common.h, include/pa_globals.h,
                   23806:          main/pa_common.C, main/pa_globals.C, main/pa_request.C,
                   23807:          targets/isapi/parser3isapi.C: fixed default content-type
                   23808:          allocation storage
                   23809: 
                   23810:        * src/: include/pa_globals.h, include/pa_request.h,
                   23811:          main/pa_globals.C, main/pa_request.C: z
                   23812: 
                   23813:        * src/: include/pa_array.h, include/pa_hash.h,
                   23814:          include/pa_request.h, main/compile.y, main/pa_array.C,
                   23815:          main/pa_common.C, main/pa_hash.C, main/pa_request.C,
                   23816:          types/pa_vcookie.C: cyclic uses ignored. defaulted default
                   23817:          content-type
                   23818: 
                   23819:        * src/main/: compile.y, execute.C, main.dsp: @CLASS equals @BASE.
                   23820:          sanity
                   23821: 
                   23822:        * src/: main/pa_globals.C, types/pa_vclass.C, types/pa_vclass.h,
                   23823:          types/pa_vstateless_class.C, types/pa_vstateless_class.h: thrown
                   23824:          away freeze mech.  no danger now for you can't do
                   23825:          ^request:process[@new-method[] body] trick anymore.  still
                   23826:          remains $some_instance.process[@new-method[] possibility] but
                   23827:          would leave it as a feature.  see index for sample
                   23828: 
                   23829:        * src/: include/pa_common.h, main/pa_common.C,
                   23830:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C: auto.p
                   23831:          monkey every target
                   23832: 
                   23833:        * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
                   23834:          targets/cgi/parser3.C, targets/isapi/pool_storage.h,
                   23835:          types/pa_vform.C, types/pa_vform.h: auto.p monkey
                   23836: 
                   23837: 2001-03-23  paf
                   23838: 
                   23839:        * src/: include/pa_pool.h, main/pa_request.C,
                   23840:          targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
                   23841:          targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
                   23842:          targets/isapi/pool_storage.h: isapi: dumb pool storage
                   23843: 
                   23844:        * src/targets/isapi/pa_pool.C: decided to continue with extension
                   23845: 
                   23846:        * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: isapi: think
                   23847:          it would be better to rewrite as filter then to deal with pool
                   23848: 
                   23849:        * src/: main/main.dsp, targets/isapi/parser3isapi.C: isapi: docroot
                   23850:          now like in cgi, not from APPL_PHYSICAL_PATH
                   23851: 
                   23852:        * src/: classes/root.C, classes/table.C, include/pa_common.h,
                   23853:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   23854:          include/pa_string.h, include/pa_threads.h, include/pa_types.h,
                   23855:          include/pa_version.h, main/compile.y, main/execute.C,
                   23856:          main/pa_array.C, main/pa_common.C, main/pa_hash.C,
                   23857:          main/pa_pool.C, main/pa_request.C, main/pa_string.C,
                   23858:          main/untaint.C, targets/cgi/parser3.C,
                   23859:          targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vform.C:
                   23860:          cgi: reinvent document_root and request_uri under iis. autoconf
                   23861:          updated. introducing ap_config_includes
                   23862: 
                   23863:        * src/targets/cgi/parser3.C: cgi: reinvent document_root under iis
                   23864: 
                   23865:        * src/targets/cgi/parser3.C: cgi: only one pool now
                   23866: 
                   23867:        * src/: include/pa_globals.h, include/pa_sapi.h, main/main.dsp,
                   23868:          main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
                   23869:          targets/isapi/parser3isapi.C, types/pa_vcookie.C,
                   23870:          types/pa_venv.h, types/pa_vform.C: sapi made object
                   23871: 
                   23872:        * src/: include/pa_globals.h, main/pa_request.C,
                   23873:          targets/cgi/parser3.C, targets/cgi/parser3.dsp,
                   23874:          targets/isapi/parser3isapi.C, types/pa_vcookie.C,
                   23875:          types/pa_venv.h, types/pa_vform.C: all: sapi beauty
                   23876: 
                   23877:        * src/: main/pa_request.C, targets/cgi/parser3.C,
                   23878:          targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
                   23879:          isapi minor env beauty
                   23880: 
                   23881:        * src/: main/pa_request.C, targets/cgi/parser3.C,
                   23882:          targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
                   23883:          isapi document_root 0
                   23884: 
                   23885: 2001-03-22  paf
                   23886: 
                   23887:        * src/targets/isapi/parser3isapi.C: isapi keep-alive
                   23888: 
                   23889:        * src/targets/: cgi/vform_fields_fill.C, cgi/vform_fields_fill.h,
                   23890:          isapi/parser3isapi.C: z
                   23891: 
                   23892:        * src/: include/pa_pool.h, main/pa_request.C,
                   23893:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C: isapi 1
                   23894: 
                   23895:        * src/targets/isapi/: KILL.EXE, PSTAT.EXE, istart.cmd, istop.cmd,
                   23896:          kill.pl: isapi added utils
                   23897: 
                   23898:        * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/parser3.C,
                   23899:          targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
                   23900:          types/pa_vform.C: isapi 0
                   23901: 
                   23902:        * src/: include/pa_pool.h, targets/cgi/pa_pool.C,
                   23903:          targets/cgi/parser3.C, targets/cgi/parser3.dsp,
                   23904:          targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
                   23905:          targets/isapi/parser3isapi.def, targets/isapi/parser3isapi.dsp:
                   23906:          started isapi
                   23907: 
                   23908:        * src/: include/pa_globals.h, main/pa_common.C, main/pa_request.C:
                   23909:          some comments
                   23910: 
                   23911:        * src/: include/pa_globals.h, include/pa_request.h,
                   23912:          include/pa_types.h, main/pa_globals.C, main/pa_request.C,
                   23913:          targets/cgi/parser3.C, types/pa_vcookie.C: config of auto.p path:
                   23914:          parser_root_auto_path parser_site_auto_path
                   23915: 
                   23916:        * src/types/pa_vcookie.C: cookie attr decoded
                   23917: 
                   23918: 2001-03-21  paf
                   23919: 
                   23920:        * src/targets/cgi/parser3.C: z
                   23921: 
                   23922:        * src/include/pa_globals.h: post. todo: config of auto.p path
                   23923: 
                   23924:        * src/: include/pa_globals.h, targets/cgi/parser3.C,
                   23925:          types/pa_venv.h: in cookie & env. todo:post
                   23926: 
                   23927:        * src/: Makefile.am, classes/Makefile.am, classes/file.C,
                   23928:          classes/root.C, classes/table.C, include/pa_array.h,
                   23929:          include/pa_common.h, include/pa_globals.h, include/pa_pool.h,
                   23930:          include/pa_request.h, include/pa_string.h, main/Makefile.am,
                   23931:          main/compile.y, main/execute.C, main/main.dsp, main/pa_common.C,
                   23932:          main/pa_globals.C, main/pa_request.C, main/pa_string.C,
                   23933:          main/pa_table.C, main/untaint.C, targets/Makefile.am,
                   23934:          targets/cgi/Makefile.am, targets/cgi/parser3.C,
                   23935:          targets/cgi/parser3.dsp, types/Makefile.am, types/pa_vcookie.C,
                   23936:          types/pa_vform.C, types/pa_vstring.h, types/pa_wwrapper.h:
                   23937:          shifted apache branch on main trunc
                   23938: 
                   23939:        * src/: include/pa_common.h, include/pa_globals.h,
                   23940:          include/pa_pool.h, include/pa_request.h, main/main.dsp,
                   23941:          main/pa_common.C, main/pa_request.C, targets/cgi/parser3.dsp,
                   23942:          types/pa_vcookie.C, types/pa_vform.C, types/pa_vstring.h:
                   23943:          starting mod_parser3
                   23944: 
                   23945:        * src/targets/cgi/parser3.C: starting mod_parser3
                   23946: 
                   23947: 2001-03-20  paf
                   23948: 
                   23949:        * src/: main/pa_common.C, targets/cgi/Makefile.am,
                   23950:          targets/cgi/parser3.C: automake compiled and works. todo:make
                   23951:          win32 ifdefs work and add ifdef unistd
                   23952: 
                   23953:        * src/: classes/table.C, include/pa_common.h, include/pa_request.h,
                   23954:          main/Makefile.am, main/pa_common.C, main/pa_request.C,
                   23955:          main/pa_table.C, targets/cgi/Makefile.am, targets/cgi/parser3.C:
                   23956:          z
                   23957: 
                   23958:        * src/: include/pa_request.h, main/Makefile.am, main/compile.y,
                   23959:          main/execute.C, main/pa_common.C, types/Makefile.am: removing
                   23960:          locking
                   23961: 
                   23962:        * src/: classes/Makefile.am, types/Makefile.am: z
                   23963: 
                   23964:        * src/: Makefile.am, classes/file.C, classes/root.C,
                   23965:          classes/table.C, include/pa_array.h, include/pa_request.h,
                   23966:          include/pa_string.h, main/Makefile.am, main/execute.C,
                   23967:          main/pa_common.C, main/pa_globals.C, main/pa_request.C,
                   23968:          main/pa_string.C, main/untaint.C, targets/Makefile.am,
                   23969:          targets/cgi/Makefile.am, targets/cgi/parser3.C,
                   23970:          types/pa_vcookie.C, types/pa_wwrapper.h: String::UL_
                   23971: 
                   23972:        * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
                   23973:          main/pa_request.C, types/pa_vfile.h: ^table:save
                   23974: 
                   23975:        * src/: classes/file.C, classes/table.C, include/pa_array.h,
                   23976:          include/pa_common.h, include/pa_request.h, include/pa_string.h,
                   23977:          include/pa_table.h, include/pa_threads.h, main/pa_globals.C,
                   23978:          main/untaint.C, types/pa_valiased.h, types/pa_value.h,
                   23979:          types/pa_vform.h: z
                   23980: 
                   23981:        * src/include/pa_string.h: z
                   23982: 
                   23983:        * src/: classes/_request.h, classes/request.C, main/main.dsp,
                   23984:          main/pa_globals.C, types/pa_value.h, types/pa_vform.h,
                   23985:          types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
                   23986:          :Value
                   23987: 
                   23988:        * src/: classes/_request.h, classes/request.C, main/pa_globals.C,
                   23989:          types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
                   23990:          :VStateless_object
                   23991: 
                   23992:        * src/: classes/_response.h, classes/response.C, main/pa_globals.C,
                   23993:          types/pa_vform.h, types/pa_vresponse.h: VResponse moved to
                   23994:          :VStateless_object
                   23995: 
                   23996:        * src/: main/main.dsp, targets/cgi/parser3.dsp,
                   23997:          types/pa_valiased.C, types/pa_vform.h: commented VForm
                   23998: 
                   23999:        * src/: targets/cgi/pa_vform.C, types/pa_valiased.C,
                   24000:          types/pa_valiased.h, types/pa_value.h,
                   24001:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   24002:          types/pa_vstateless_object.h: moved common get_element part from
                   24003:          stateless object&class into VAliased
                   24004: 
                   24005:        * src/: classes/_env.h, classes/_table.h, classes/env.C,
                   24006:          classes/table.C, main/execute.C, main/main.dsp,
                   24007:          main/pa_globals.C, main/pa_request.C, types/pa_value.h,
                   24008:          types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.h: VEnv is
                   24009:          now :Value
                   24010: 
                   24011:        * src/: classes/_cookie.h, classes/_table.h, classes/cookie.C,
                   24012:          main/execute.C, main/main.dsp, main/pa_globals.C,
                   24013:          types/pa_vcookie.C, types/pa_vcookie.h: VCookie is now :Value
                   24014: 
                   24015:        * src/types/: pa_vfile.C, pa_vfile.h, pa_vstateless_object.h: vfile
                   24016:          doxx
                   24017: 
                   24018:        * src/: classes/_file.h, classes/file.C, include/pa_types.h,
                   24019:          main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
                   24020:          types/pa_valiased.h, types/pa_vfile.C, types/pa_vfile.h,
                   24021:          types/pa_vstateless_class.h, types/pa_vstateless_object.h: \ to /
                   24022:          and ^file:save
                   24023: 
                   24024: 2001-03-19  paf
                   24025: 
                   24026:        * src/types/pa_vfile.C: z
                   24027: 
                   24028:        * src/: classes/file.C, classes/request.C, classes/table.C,
                   24029:          include/pa_string.h, main/main.dsp, main/pa_pool.C,
                   24030:          main/pa_request.C, main/untaint.C, types/pa_value.h,
                   24031:          types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C: file 1
                   24032: 
                   24033:        * src/: classes/table.C, include/pa_common.h, include/pa_globals.h,
                   24034:          include/pa_string.h, include/pa_table.h, main/main.dsp,
                   24035:          main/pa_common.C, main/pa_globals.C, types/pa_value.h,
                   24036:          types/pa_vcookie.h, types/pa_venv.h, types/pa_vform.C,
                   24037:          types/pa_vform.h, types/pa_vrequest.h, types/pa_vtable.h,
                   24038:          classes/_file.h, classes/file.C, types/pa_vfile.C,
                   24039:          types/pa_vfile.h: file class just compiled
                   24040: 
                   24041:        * src/: classes/table.C, include/pa_pool.h, include/pa_request.h,
                   24042:          include/pa_table.h, include/pa_types.h, main/execute.C,
                   24043:          main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
                   24044:          types/pa_vclass.h, types/pa_vform.C, types/pa_vstateless_class.h,
                   24045:          types/pa_vstateless_object.h: ^table:set{default level: TABLE}
                   24046: 
                   24047:        * src/include/pa_pool.h: z
                   24048: 
                   24049:        * src/: include/pa_hash.h, include/pa_types.h, main/pa_common.C,
                   24050:          main/pa_hash.C, main/pa_request.C, types/pa_vcookie.C: renamed
                   24051:          Hash::Value to Val so to doxygen would finlly stop confusing
                   24052:          those Value-s
                   24053: 
                   24054:        * src/: include/code.h, include/pa_array.h, include/pa_common.h,
                   24055:          include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
                   24056:          include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
                   24057:          include/pa_string.h, include/pa_table.h, include/pa_threads.h,
                   24058:          include/pa_types.h, main/compile.C, main/compile.y,
                   24059:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   24060:          main/pa_array.C, main/pa_common.C, main/pa_exception.C,
                   24061:          main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
                   24062:          main/pa_request.C, main/pa_string.C, main/pa_table.C,
                   24063:          main/untaint.C, types/pa_valiased.h, types/pa_value.h: z
                   24064: 
                   24065:        * src/types/: pa_valiased.h, pa_vbool.h: doc: Value and it's
                   24066:          derivates somehow unlinked. don't know why yet
                   24067: 
                   24068:        * src/: include/code.h, include/pa_array.h, include/pa_pool.h,
                   24069:          include/pa_string.h, include/pa_threads.h, main/compile.C,
                   24070:          main/compile.y, main/compile_tools.C, main/compile_tools.h,
                   24071:          main/execute.C, main/pa_array.C, main/pa_common.C,
                   24072:          main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
                   24073:          main/pa_pool.C, main/pa_request.C, main/pa_string.C,
                   24074:          main/pa_table.C, main/untaint.C, types/pa_value.h: auto @brief
                   24075: 
                   24076:        * src/: classes/root.C, classes/table.C, main/pa_exception.C,
                   24077:          main/pa_request.C, targets/cgi/parser3.C, types/pa_vbool.h,
                   24078:          types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdouble.h,
                   24079:          types/pa_venv.h, types/pa_vform.h, types/pa_vint.h,
                   24080:          types/pa_vrequest.h: doc: detected Value derivates prob
                   24081: 
                   24082:        * src/include/pa_globals.h: z
                   24083: 
                   24084:        * src/: classes/_request.h, classes/request.C, include/code.h,
                   24085:          include/pa_array.h, include/pa_common.h, include/pa_exception.h,
                   24086:          include/pa_globals.h, include/pa_hash.h, include/pa_pool.h,
                   24087:          include/pa_request.h, include/pa_stack.h, include/pa_string.h,
                   24088:          include/pa_table.h, include/pa_threads.h, include/pa_types.h,
                   24089:          main/execute.C, main/pa_pool.C, main/pa_request.C,
                   24090:          main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
                   24091:          types/pa_value.h, types/pa_vform.C: doxygen include/, Value
                   24092: 
                   24093: 2001-03-18  paf
                   24094: 
                   24095:        * src/: classes/cookie.C, types/pa_vcookie.C, types/pa_vcookie.h:
                   24096:          cookie: allowed access to hash-assigned
                   24097: 
                   24098:        * src/targets/cgi/parser3.C: z
                   24099: 
                   24100:        * src/: classes/_cookie.h, classes/cookie.C, include/pa_common.h,
                   24101:          include/pa_globals.h, include/pa_request.h, include/pa_string.h,
                   24102:          include/pa_types.h, main/main.dsp, main/pa_common.C,
                   24103:          main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
                   24104:          main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
                   24105:          types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
                   24106:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
                   24107:          types/pa_vunknown.h: cookie class
                   24108: 
                   24109:        * src/main/pa_request.C: zero length output allowed
                   24110: 
                   24111:        * src/: classes/response.C, main/pa_request.C, types/pa_value.h,
                   24112:          types/pa_vhash.h, types/pa_vresponse.h: ^response:clear[]
                   24113: 
                   24114:        * src/: classes/root.C, main/pa_request.C: taint forgotten forced
                   24115:          lang switch
                   24116: 
                   24117:        * src/: classes/root.C, include/pa_globals.h, include/pa_string.h,
                   24118:          main/pa_globals.C, main/pa_request.C, main/pa_string.C,
                   24119:          types/pa_value.h, types/pa_vhash.h:
                   24120:          $defautl[$content-type[$value[text/html] $charset[windows-1251]]
                   24121: 
                   24122:        * src/main/execute.C: z
                   24123: 
                   24124:        * src/: classes/root.C, main/pa_request.C, main/untaint.C,
                   24125:          targets/cgi/parser3.C: taint[uri
                   24126: 
                   24127:        * src/: classes/request.C, classes/response.C, classes/root.C,
                   24128:          include/pa_common.h, include/pa_globals.h, include/pa_request.h,
                   24129:          include/pa_string.h, main/pa_common.C, main/pa_globals.C,
                   24130:          main/pa_request.C, targets/cgi/parser3.C: ^taint 0
                   24131: 
                   24132:        * src/: classes/root.C, classes/string.C, include/pa_string.h,
                   24133:          main/pa_globals.C, main/pa_request.C, main/pa_string.C,
                   24134:          types/pa_vdouble.h, types/pa_vform.C, types/pa_vint.h,
                   24135:          types/pa_vstateless_class.C: convinient string(pool, char *src,
                   24136:          bool tainted) ctor
                   24137: 
                   24138:        * src/: include/pa_hash.h, include/pa_request.h,
                   24139:          include/pa_string.h, main/pa_globals.C, main/pa_hash.C,
                   24140:          main/pa_request.C, main/pa_string.C, main/untaint.C,
                   24141:          targets/cgi/parser3.C: proper @exceptions params tainting
                   24142: 
                   24143:        * src/: include/pa_hash.h, main/pa_hash.C, targets/cgi/parser3.C:
                   24144:          response fields to header
                   24145: 
                   24146:        * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
                   24147:          z
                   24148: 
                   24149:        * src/: classes/_response.h, classes/response.C,
                   24150:          include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
                   24151:          main/compile.C, main/compile.y, main/execute.C, main/main.dsp,
                   24152:          main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
                   24153:          targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_value.h,
                   24154:          types/pa_vhash.h, types/pa_vrequest.h, types/pa_vresponse.h:
                   24155:          $response: 0  request::core exception rethrow
                   24156: 
                   24157: 2001-03-16  paf
                   24158: 
                   24159:        * src/: main/execute.C, main/main.dsp, types/pa_value.h,
                   24160:          types/pa_vrequest.h: native method' class call with less params
                   24161:          then needed error reporting
                   24162: 
                   24163:        * src/: classes/_request.h, classes/request.C,
                   24164:          include/pa_globals.h, include/pa_request.h, main/execute.C,
                   24165:          main/main.dsp, main/pa_globals.C, main/pa_request.C,
                   24166:          targets/cgi/parser3.C, types/pa_vform.C, types/pa_vrequest.C,
                   24167:          types/pa_vrequest.h: $request : query :uri
                   24168: 
                   24169:        * src/: include/pa_globals.h, main/execute.C, main/pa_globals.C,
                   24170:          types/pa_value.h, types/pa_vcframe.h, types/pa_vmframe.h,
                   24171:          types/pa_wcontext.h: $result
                   24172: 
                   24173:        * src/: main/execute.C, types/pa_vmframe.h: if(in "/news/")
                   24174: 
                   24175:        * src/: classes/double.C, include/code.h, main/compile.y,
                   24176:          main/compile_tools.C, main/compile_tools.h, main/execute.C: ()
                   24177:          and {} param wcontext conflict fixed by OP_EXPR_CODE__STORE_PARAM
                   24178: 
                   24179:        * src/: include/code.h, include/pa_hash.h, include/pa_request.h,
                   24180:          main/compile.y, main/execute.C, types/pa_value.h,
                   24181:          types/pa_vhash.h, types/pa_vstring.h, types/pa_vtable.h,
                   24182:          types/pa_wcontext.C, types/pa_wcontext.h: see () and {} param
                   24183:          wcontext conflict
                   24184: 
                   24185:        * src/: main/execute.C, types/pa_value.h,
                   24186:          types/pa_vstateless_object.h, types/pa_vstring.h: disabled
                   24187:          $string.field
                   24188: 
                   24189: 2001-03-15  paf
                   24190: 
                   24191:        * src/main/pa_request.C: news sample
                   24192: 
                   24193:        * src/: main/compile.y, main/execute.C, main/pa_request.C,
                   24194:          targets/cgi/parser3.C, types/pa_vstring.h: @exception
                   24195: 
                   24196:        * src/main/: compile.y, execute.C: z
                   24197: 
                   24198:        * src/: main/compile.y, main/pa_request.C, targets/cgi/parser3.C,
                   24199:          types/pa_vstring.h: pre-pre-pre-beta cgi under win32 apache pre
                   24200:          pre pre works
                   24201: 
                   24202:        * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
                   24203:          targets/cgi/parser3.C, types/pa_vform.C, types/pa_vform.h: vform
                   24204:          fillfields just compiled
                   24205: 
                   24206: 2001-03-14  paf
                   24207: 
                   24208:        * src/: include/pa_request.h, main/pa_request.C,
                   24209:          targets/cgi/parser3.C: z
                   24210: 
                   24211:        * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
                   24212:          targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h,
                   24213:          types/pa_vstring.h: limits -1
                   24214: 
                   24215:        * src/: include/pa_globals.h, include/pa_request.h,
                   24216:          include/pa_types.h, main/main.dsp, main/pa_globals.C,
                   24217:          main/pa_request.C, targets/cgi/parser3.C,
                   24218:          targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h:
                   24219:          request_info -1
                   24220: 
                   24221:        * src/: include/pa_globals.h, main/pa_globals.C,
                   24222:          targets/cgi/parser3.C, targets/cgi/parser3.dsp,
                   24223:          targets/cgi/vform_fields_fill.C, targets/cgi/vform_fields_fill.h:
                   24224:          vform_fields_fill
                   24225: 
                   24226:        * src/targets/cgi/parser3.C: #  if MSVC
                   24227: 
                   24228:        * src/: include/pa_common.h, include/pa_types.h, main/pa_request.C,
                   24229:          targets/cgi/parser3.C: PATH_DELIMITER_CHAR
                   24230: 
                   24231:        * src/targets/cgi/parser3.C: z
                   24232: 
                   24233:        * src/: include/core.h, include/pa_globals.h, include/pa_pool.h,
                   24234:          include/pa_string.h, include/pa_types.h, main/compile.y,
                   24235:          main/core.C, main/main.dsp, main/pa_globals.C, main/pa_request.C,
                   24236:          targets/cgi/pa_vform.C, targets/cgi/parser3.C,
                   24237:          targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vform.h,
                   24238:          types/pa_vunknown.h: global handler, exceptions in parser3
                   24239: 
                   24240: 2001-03-13  paf
                   24241: 
                   24242:        * src/: classes/form.C, main/compile.y, main/core.C,
                   24243:          types/pa_value.h, types/pa_vclass.h, types/pa_venv.h,
                   24244:          types/pa_vform.h, types/pa_vstateless_class.C,
                   24245:          types/pa_vstateless_class.h: form:fields removed. use $form.CLASS
                   24246:          instead
                   24247: 
                   24248:        * src/: include/core.h, include/pa_common.h, include/pa_request.h,
                   24249:          main/core.C, main/execute.C, main/main.dsp, main/pa_request.C,
                   24250:          targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vform.h:
                   24251:          started cgi target
                   24252: 
                   24253:        * src/: include/core.h, include/pa_common.h, include/pa_request.h,
                   24254:          main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C:
                   24255:          before error show with parser
                   24256: 
                   24257:        * src/: classes/_form.h, classes/form.C, include/core.h,
                   24258:          include/pa_request.h, main/core.C, main/pa_request.C,
                   24259:          targets/cgi/parser3.C, targets/cgi/parser3.dsp: z
                   24260: 
                   24261:        * src/targets/cgi/: parser.dsp, parser3.dsp: z
                   24262: 
                   24263:        * src/targets/cgi/: Makefile.am, pa_pool.C, pa_vform.C, parser.dsp,
                   24264:          parser3.C: renamed targets/ parser to cgi
                   24265: 
                   24266:        * src/: classes/double.C, classes/env.C, classes/int.C,
                   24267:          classes/root.C, classes/string.C, classes/table.C,
                   24268:          include/pa_request.h, types/pa_vhash.h: z
                   24269: 
                   24270:        * src/: classes/_env.h, classes/env.C, classes/root.C,
                   24271:          include/core.h, include/pa_pool.h, include/pa_request.h,
                   24272:          main/compile.C, main/compile.y, main/core.C, main/main.dsp,
                   24273:          main/pa_common.C, main/pa_request.C, types/pa_value.h,
                   24274:          types/pa_venv.h, types/pa_vstateless_class.h: started $form:
                   24275:          [historical moment :)]
                   24276: 
                   24277:        * src/: include/code.h, include/pa_string.h, main/compile.y,
                   24278:          main/execute.C, main/pa_string.C: 'value is type' expr operator
                   24279: 
                   24280:        * src/types/pa_venv.h: $ENV 1
                   24281: 
                   24282:        * src/main/execute.C: z
                   24283: 
                   24284:        * src/: main/execute.C, types/pa_value.h, types/pa_venv.h: for
                   24285:          future methods of ENV constructor if
                   24286: 
                   24287:        * src/: include/pa_request.h, types/pa_venv.h: $ENV 0.1 stateless
                   24288:          class
                   24289: 
                   24290:        * src/: classes/_double.h, classes/_env.h, classes/_int.h,
                   24291:          classes/_root.h, classes/_string.h, classes/_table.h,
                   24292:          classes/double.C, classes/env.C, classes/int.C, classes/root.C,
                   24293:          classes/string.C, classes/table.C, include/pa_request.h,
                   24294:          main/compile.C, main/compile_tools.h, main/core.C,
                   24295:          main/execute.C, main/main.dsp, main/pa_request.C,
                   24296:          types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
                   24297:          types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
                   24298:          types/pa_vobject.h, types/pa_vstateless_class.C,
                   24299:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   24300:          types/pa_wcontext.h: $ENV: re 0, stateless classes
                   24301: 
                   24302:        * src/: classes/_double.h, classes/_env.h, classes/_int.h,
                   24303:          classes/_root.h, classes/_string.h, classes/_table.h,
                   24304:          classes/double.C, classes/env.C, classes/int.C, classes/root.C,
                   24305:          classes/string.C, classes/table.C, include/pa_request.h,
                   24306:          main/compile.C, main/compile_tools.h, main/core.C,
                   24307:          main/execute.C, main/main.dsp, main/pa_request.C,
                   24308:          types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
                   24309:          types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
                   24310:          types/pa_vobject.h, types/pa_vstateless_class.C,
                   24311:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   24312:          types/pa_wcontext.h: $ENV: re 0, stateless classes
                   24313: 
                   24314:        * src/: include/pa_request.h, main/compile.C, main/execute.C,
                   24315:          main/pa_request.C, types/pa_value.h, types/pa_vmframe.h: fixed
                   24316:          yesterdays bad decision on execute_static_method
                   24317: 
                   24318:        * src/: classes/table.C, include/pa_types.h, main/pa_request.C: z
                   24319: 
                   24320:        * src/: classes/double.C, classes/int.C, classes/root.C,
                   24321:          types/pa_vdouble.h, types/pa_vint.h: Int,Double  dec mul div mod
                   24322: 
                   24323:        * src/main/pa_request.C: z
                   24324: 
                   24325:        * src/: classes/root.C, classes/table.C, include/pa_exception.h,
                   24326:          include/pa_pool.h: skipped_restructure_exceptions_dead_end
                   24327: 
                   24328:        * src/: classes/root.C, classes/table.C, include/pa_exception.h,
                   24329:          include/pa_pool.h, main/pa_request.C:
                   24330:          restructure_exceptions_dead_end
                   24331: 
                   24332:        * src/: classes/root.C, main/compile.y: ^if required junctions.
                   24333:          allowed ; inside {} to break params
                   24334: 
                   24335:        * src/classes/root.C: ^eval
                   24336: 
                   24337:        * src/: classes/_string.h, classes/double.C, classes/int.C,
                   24338:          classes/string.C, main/execute.C, types/pa_wcontext.h: int doube
                   24339:          string ^format
                   24340: 
                   24341:        * src/: main/execute.C, types/pa_wcontext.h: constructing flag not
                   24342:          'bad' but not 'enough'
                   24343: 
                   24344:        * src/: classes/double.C, classes/root.C, classes/table.C,
                   24345:          include/pa_common.h, include/pa_types.h, main/compile.y,
                   24346:          main/pa_common.C, main/pa_request.C, main/untaint.C,
                   24347:          types/pa_vdouble.h, types/pa_vint.h, types/pa_vtable.h,
                   24348:          types/pa_wwrapper.h: think constructing flag as is  is bad
                   24349: 
                   24350:        * src/: classes/double.C, classes/int.C, classes/root.C,
                   24351:          classes/string.C, classes/table.C, main/core.C, main/execute.C,
                   24352:          types/pa_vint.h: ^for
                   24353: 
                   24354: 2001-03-12  paf
                   24355: 
                   24356:        * src/classes/table.C: table ^empty
                   24357: 
                   24358:        * src/: classes/table.C, include/pa_table.h: table ^menu
                   24359: 
                   24360:        * src/: classes/root.C, classes/table.C, types/pa_vtable.h: table
                   24361:          ^offset ^line ^count
                   24362: 
                   24363:        * src/classes/root.C: ^round()  ^floor()        ^ceiling()
                   24364:          ^abs()  ^sign()
                   24365: 
                   24366:        * src/classes/: root.C, table.C: ^use
                   24367: 
                   24368:        * src/: classes/root.C, classes/table.C, include/pa_request.h,
                   24369:          main/compile.y, main/core.C, main/execute.C, types/pa_vclass.h,
                   24370:          types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
                   24371:          ^while. switched off wcontext.constructing after write(value) or
                   24372:          auto-vhash-constructing
                   24373: 
                   24374:        * src/: classes/root.C, classes/table.C, include/pa_request.h,
                   24375:          main/pa_request.C: fail_if_junction_ helper func
                   24376: 
                   24377:        * src/: classes/root.C, classes/table.C, include/pa_common.h,
                   24378:          include/pa_request.h, main/execute.C, main/main.dsp,
                   24379:          main/pa_common.C, main/pa_request.C: ^process error point by
                   24380:          actual method_name, not source.  ^load
                   24381: 
                   24382:        * src/types/pa_vtable.h: table: no, better with string in cells...
                   24383: 
                   24384:        * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C,
                   24385:          classes/_table.h, classes/table.C, main/untaint.C: z
                   24386: 
                   24387:        * src/: classes/root.C, include/pa_common.h, include/pa_string.h,
                   24388:          include/pa_table.h, main/core.C, main/execute.C,
                   24389:          main/pa_common.C, main/pa_request.C, main/pa_table.C,
                   24390:          types/pa_value.h: table:set 0
                   24391: 
                   24392:        * src/: classes/root.C, include/core.h, include/pa_array.h,
                   24393:          include/pa_request.h, include/pa_table.h, main/core.C,
                   24394:          main/main.dsp, main/pa_request.C, main/pa_table.C,
                   24395:          types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
                   24396:          types/pa_vdouble.h, types/pa_vint.h, types/pa_vmframe.h,
                   24397:          types/pa_vstring.h: freeze, ^table:create[] -1
                   24398: 
                   24399:        * src/: classes/root.C, types/pa_value.h: z
                   24400: 
                   24401:        * src/: classes/root.C, main/execute.C, types/pa_vclass.h: used
                   24402:          get_method in couple places optimizing them
                   24403: 
                   24404:        * src/classes/root.C: z
                   24405: 
                   24406:        * src/: classes/root.C, types/pa_vclass.h: process temp main
                   24407:          zeroing
                   24408: 
                   24409:        * src/: classes/double.C, classes/int.C, classes/root.C,
                   24410:          classes/string.C, include/pa_common.h, include/pa_request.h,
                   24411:          include/pa_string.h, include/pa_types.h, main/compile.C,
                   24412:          main/compile.y, main/compile_tools.h, main/execute.C,
                   24413:          main/pa_common.C, main/pa_request.C, types/pa_value.h,
                   24414:          types/pa_vmframe.h: ^process. actual names to store param and
                   24415:          check_actual_numbered_params for better place diagnostics
                   24416: 
                   24417:        * src/: classes/root.C, main/execute.C, main/main.dsp: setname for
                   24418:          method-junctions bug fixed
                   24419: 
                   24420:        * src/types/: pa_vdouble.h, pa_vint.h, pa_vobject.h,
                   24421:          pa_vstateless_object.h, pa_vstring.h: stateless_object
                   24422: 
                   24423: 2001-03-11  paf
                   24424: 
                   24425:        * src/: main/main.dsp, types/pa_value.h, types/pa_vdouble.h,
                   24426:          types/pa_vint.h, types/pa_vobject.h, types/pa_vstring.h: VString
                   24427:          VDouble VInt base now VObject_base - without fields
                   24428: 
                   24429:        * src/: classes/root.C, include/core.h, main/core.C: z
                   24430: 
                   24431:        * src/: classes/double.C, classes/int.C, classes/root.C,
                   24432:          classes/string.C, include/core.h, include/pa_hash.h,
                   24433:          include/pa_pool.h, include/pa_request.h, include/pa_string.h,
                   24434:          main/compile.C, main/core.C, main/pa_request.C: ^untaint 0
                   24435: 
                   24436:        * src/: classes/double.C, classes/int.C, classes/root.C,
                   24437:          include/pa_request.h, main/execute.C: intercept_string
                   24438: 
                   24439:        * src/: classes/double.C, classes/int.C, classes/root.C,
                   24440:          types/pa_vclass.C, types/pa_vclass.h: add_native_method helper
                   24441: 
                   24442:        * src/: classes/double.C, classes/int.C, include/pa_request.h:
                   24443:          ^inc-s(expr)
                   24444: 
                   24445:        * src/: classes/_double.h, classes/_env.h, classes/_int.h,
                   24446:          classes/_root.h, classes/_string.h, classes/double.C,
                   24447:          classes/env.C, classes/int.C, classes/root.C, classes/string.C,
                   24448:          include/code.h, include/core.h, include/pa_array.h,
                   24449:          include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
                   24450:          include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
                   24451:          include/pa_string.h, include/pa_table.h, include/pa_threads.h,
                   24452:          include/pa_types.h, main/compile.C, main/compile.y,
                   24453:          main/compile_tools.C, main/compile_tools.h, main/core.C,
                   24454:          main/execute.C, main/pa_array.C, main/pa_common.C,
                   24455:          main/pa_exception.C, main/pa_hash.C, main/pa_pool.C,
                   24456:          main/pa_request.C, main/pa_string.C, main/pa_table.C,
                   24457:          types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
                   24458:          types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
                   24459:          types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
                   24460:          types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
                   24461:          types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
                   24462:          types/pa_wcontext.h, types/pa_wwrapper.h: headers updated
                   24463: 
                   24464:        * src/: main/pa_request.C, types/pa_vhash.h: z
                   24465: 
                   24466:        * src/: include/core.h, include/pa_request.h, main/core.C,
                   24467:          main/main.dsp, main/pa_request.C: renamed AUTO: to MAIN:
                   24468: 
                   24469:        * src/: include/pa_valiased.h, include/pa_value.h,
                   24470:          include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
                   24471:          include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
                   24472:          include/pa_vjunction.h, include/pa_vmframe.h,
                   24473:          include/pa_vobject.h, include/pa_vstring.h,
                   24474:          include/pa_vunknown.h, include/pa_wcontext.h,
                   24475:          include/pa_wwrapper.h, main/compile.y, main/core.C,
                   24476:          main/main.dsp, main/pa_cframe.C, main/pa_request.C,
                   24477:          main/pa_value.C, main/pa_vclass.C, main/pa_wcontext.C,
                   24478:          types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
                   24479:          types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
                   24480:          types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
                   24481:          types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
                   24482:          types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
                   24483:          types/pa_wcontext.h, types/pa_wwrapper.h: splitted types from
                   24484:          include/
                   24485: 
                   24486: 2001-03-10  paf
                   24487: 
                   24488:        * src/: include/core.h, include/pa_request.h, main/core.C,
                   24489:          main/pa_request.C: run+auto=run
                   24490: 
                   24491:        * src/: classes/root.C, include/pa_request.h: minor if junction bug
                   24492: 
                   24493:        * src/: classes/_double.h, classes/_env.h, classes/_int.h,
                   24494:          classes/_root.h, classes/_string.h, classes/double.C,
                   24495:          classes/env.C, classes/int.C, classes/root.C, classes/string.C,
                   24496:          include/code.h, include/core.h, include/pa_array.h,
                   24497:          include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
                   24498:          include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
                   24499:          include/pa_string.h, include/pa_table.h, include/pa_threads.h,
                   24500:          include/pa_types.h, include/pa_valiased.h, include/pa_value.h,
                   24501:          include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
                   24502:          include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
                   24503:          include/pa_vjunction.h, include/pa_vmframe.h,
                   24504:          include/pa_vobject.h, include/pa_vstring.h,
                   24505:          include/pa_vunknown.h, include/pa_wcontext.h,
                   24506:          include/pa_wwrapper.h, main/compile.C, main/compile.y,
                   24507:          main/compile_tools.C, main/compile_tools.h, main/core.C,
                   24508:          main/execute.C, main/pa_array.C, main/pa_cframe.C,
                   24509:          main/pa_common.C, main/pa_exception.C, main/pa_hash.C,
                   24510:          main/pa_pool.C, main/pa_request.C, main/pa_string.C,
                   24511:          main/pa_table.C, main/pa_value.C, main/pa_vclass.C,
                   24512:          main/pa_wcontext.C: sources header
                   24513: 
                   24514:        * src/main/pa_request.C: auto..
                   24515: 
                   24516:        * src/: include/pa_request.h, main/compile.C, main/compile.y,
                   24517:          main/pa_request.C: auto tree0
                   24518: 
                   24519:        * src/: include/core.h, include/pa_request.h, main/compile.y,
                   24520:          main/core.C, main/pa_request.C: names to core.C
                   24521: 
                   24522:        * src/: include/core.h, include/pa_common.h, include/pa_pool.h,
                   24523:          include/pa_request.h, main/core.C, main/execute.C,
                   24524:          main/pa_common.C, main/pa_request.C: root auto.p loaded
                   24525: 
                   24526:        * src/: include/code.h, include/pa_request.h, include/pa_vint.h,
                   24527:          include/pa_vjunction.h, include/pa_vstring.h, main/compile.y,
                   24528:          main/compile_tools.C, main/compile_tools.h, main/execute.C:
                   24529:          optimized from OP_STRING+OP_WRITE to OP_STRING__WRITE
                   24530: 
                   24531:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
                   24532:          @auto[] realised. auto.p scan togo
                   24533: 
                   24534:        * src/: include/pa_request.h, main/execute.C: autocalc
                   24535:          code-junctions result now have names
                   24536: 
                   24537:        * src/: classes/double.C, classes/int.C, classes/root.C,
                   24538:          classes/string.C, include/pa_request.h, include/pa_string.h,
                   24539:          include/pa_wcontext.h, main/compile.y, main/execute.C,
                   24540:          main/pa_string.C, main/pa_wcontext.C: tainting 0
                   24541: 
                   24542:        * src/classes/env.C: env:file/line
                   24543: 
                   24544:        * src/: include/core.h, include/pa_array.h, include/pa_hash.h,
                   24545:          include/pa_request.h, include/pa_value.h, include/pa_vcframe.h,
                   24546:          include/pa_vdouble.h, include/pa_vint.h, include/pa_vstring.h,
                   24547:          include/pa_vunknown.h, include/pa_wcontext.h, main/compile.y,
                   24548:          main/compile_tools.C, main/compile_tools.h, main/core.C,
                   24549:          main/execute.C, main/main.dsp, main/pa_cframe.C,
                   24550:          main/pa_request.C, main/pa_wcontext.C: const fight finished
                   24551: 
                   24552:        * src/include/pa_vclass.h: const fight to go
                   24553: 
                   24554:        * src/: classes/_env.h, classes/env.C, classes/root.C,
                   24555:          include/pa_request.h, include/pa_vclass.h, main/core.C,
                   24556:          main/main.dsp: env0
                   24557: 
                   24558:        * src/: classes/_double.h, classes/_int.h, classes/_root.h,
                   24559:          classes/_string.h, classes/double.C, classes/int.C,
                   24560:          classes/root.C, classes/string.C, include/pa_request.h,
                   24561:          include/pa_string.h, include/pa_types.h, include/pa_vcframe.h,
                   24562:          include/pa_wcontext.h, main/core.C, main/main.dsp,
                   24563:          main/pa_cframe.C, main/pa_string.C, main/pa_vclass.C,
                   24564:          main/pa_wcontext.C: ^lang prepare0
                   24565: 
                   24566: 2001-03-09  paf
                   24567: 
                   24568:        * src/: include/pa_vmframe.h, main/compile.C, main/execute.C: expr
                   24569:          construct proper naming
                   24570: 
                   24571:        * src/: classes/_double.h, classes/_int.h, classes/_string.h,
                   24572:          classes/double.C, classes/int.C, classes/root.C,
                   24573:          classes/string.C, include/code.h, include/pa_value.h,
                   24574:          include/pa_vbool.h, include/pa_vdouble.h, include/pa_vint.h,
                   24575:          include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
                   24576:          main/compile.y, main/compile_tools.C, main/core.C,
                   24577:          main/execute.C, main/main.dsp: Int and Double classes with ^int[]
                   24578:          and ^double[]. fixed expr type
                   24579: 
                   24580:        * src/: classes/root.C, include/pa_request.h, main/execute.C:
                   24581:          ^string.length[]
                   24582: 
                   24583: 2001-03-08  paf
                   24584: 
                   24585:        * src/include/pa_vmframe.h: fixed forgotten method_frame my check
                   24586: 
                   24587:        * src/: include/pa_vclass.h, include/pa_vstring.h,
                   24588:          include/pa_wcontext.h, main/compile.y, main/core.C,
                   24589:          main/execute.C, main/main.dsp: dead end: vstring can't be
                   24590:          derivated from vobject
                   24591: 
                   24592:        * src/: include/pa_vclass.h, include/pa_vhash.h,
                   24593:          include/pa_vobject.h, include/pa_vstring.h, main/main.dsp: z
                   24594: 
                   24595:        * src/include/: pa_vclass.h, pa_vhash.h, pa_vobject.h: removes some
                   24596:          remained clone conseqs
                   24597: 
                   24598:        * src/main/pa_vclass.C: that were ok... [vclass were out of vcs]
                   24599: 
                   24600:        * src/main/pa_vclass.C: wow! vclass were out of vcs
                   24601: 
                   24602:        * src/: include/pa_bool.h, include/pa_double.h, include/pa_value.h,
                   24603:          include/pa_vbool.h, include/pa_vclass.h, include/pa_vdouble.h,
                   24604:          include/pa_vhash.h, include/pa_vjunction.h, include/pa_vmframe.h,
                   24605:          include/pa_vobject.h, include/pa_vstring.h,
                   24606:          include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
                   24607:          main/execute.C: withoud cloning. didn't need it actually, params
                   24608:          got passed from out unnamed ewpool
                   24609: 
                   24610:        * src/: include/pa_vdouble.h, include/pa_vhash.h,
                   24611:          include/pa_vjunction.h, include/pa_vobject.h,
                   24612:          include/pa_vunknown.h, main/compile.y: cloning dead end
                   24613: 
                   24614:        * src/: include/pa_bool.h, include/pa_double.h,
                   24615:          include/pa_valiased.h, include/pa_value.h, include/pa_vbool.h,
                   24616:          include/pa_vclass.h, include/pa_vdouble.h, include/pa_vhash.h,
                   24617:          include/pa_vjunction.h, include/pa_vmframe.h,
                   24618:          include/pa_vobject.h, include/pa_vstring.h,
                   24619:          include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
                   24620:          main/execute.C, main/main.dsp, main/pa_value.C: value.cloning so
                   24621:          to give params proper names
                   24622: 
                   24623:        * src/main/pa_wcontext.C: z
                   24624: 
                   24625:        * src/: include/pa_vmframe.h, main/execute.C: added names to
                   24626:          unknown values in get_element and unfilled params. removed wrong
                   24627:          name change in get_element
                   24628: 
                   24629:        * src/main/execute.C: z
                   24630: 
                   24631:        * src/main/execute.C: fixed problems calling operators in
                   24632:          constructors
                   24633: 
                   24634:        * src/: classes/root.C, include/pa_stack.h, main/execute.C:
                   24635:          detected problems calling operators in constructors
                   24636: 
                   24637:        * src/: classes/root.C, include/pa_request.h, main/execute.C:
                   24638:          autocalc def to string
                   24639: 
                   24640:        * src/: classes/root.C, include/pa_request.h, include/pa_value.h,
                   24641:          include/pa_vbool.h, include/pa_wwrapper.h, main/execute.C: ^if 0
                   24642: 
                   24643:        * src/classes/root.C: added root.c
                   24644: 
                   24645:        * src/: include/pa_request.h, include/pa_value.h,
                   24646:          include/pa_vcframe.h, include/pa_vmframe.h,
                   24647:          include/pa_wcontext.h, main/compile.C, main/compile.y,
                   24648:          main/core.C, main/execute.C, main/pa_cframe.C,
                   24649:          main/pa_wcontext.C: 'if' just compiled
                   24650: 
                   24651:        * src/: include/pa_vbool.h, include/pa_vdouble.h,
                   24652:          include/pa_vjunction.h, include/pa_vmframe.h,
                   24653:          include/pa_vstring.h, include/pa_wcontext.h, main/execute.C,
                   24654:          main/pa_wcontext.C: z
                   24655: 
                   24656:        * src/: include/pa_value.h, include/pa_vmframe.h, main/compile.y,
                   24657:          main/core.C, main/execute.C, main/main.dsp: z. detected probs
                   24658:          with parameter names  in operator methods
                   24659: 
                   24660:        * src/main/compile.y: minor renamings in .y
                   24661: 
                   24662:        * src/: include/pa_request.h, main/compile.C, main/compile.y,
                   24663:          main/core.C, main/main.dsp: introducing ROOT_CLASS.  it's default
                   24664:          @BASE.  changed 'RUN' assignment mech
                   24665: 
                   24666:        * src/main/execute.C: z
                   24667: 
                   24668:        * src/: include/code.h, main/compile.y, main/compile_tools.C,
                   24669:          main/compile_tools.h, main/execute.C: made class: dynamic, not
                   24670:          static. so to enable runtime ^use
                   24671: 
                   24672:        * src/main/compile.y: minor grammar bug with OP_CODE__STORE_PARAM
                   24673: 
                   24674:        * src/: include/code.h, main/compile.y, main/compile_tools.C,
                   24675:          main/execute.C: joined 2 into one OP_CODE__STORE_PARAM
                   24676: 
                   24677:        * src/main/execute.C: root root in code-junction
                   24678: 
                   24679: 2001-03-07  paf
                   24680: 
                   24681:        * src/include/: pa_value.h, pa_vclass.h, pa_vhash.h, pa_vmframe.h,
                   24682:          pa_vobject.h, pa_wwrapper.h: const in Value.get_element
                   24683: 
                   24684:        * src/: include/pa_stack.h, include/pa_value.h,
                   24685:          include/pa_vclass.h, include/pa_vhash.h, include/pa_vmframe.h,
                   24686:          include/pa_vobject.h, include/pa_wwrapper.h, main/execute.C:
                   24687:          fixed rwcontext of {} params up
                   24688: 
                   24689:        * src/main/: compile.y, compile_tools.h: ^func(params)
                   24690: 
                   24691:        * src/main/compile.y: .y priorities syntax shaped up a bit
                   24692: 
                   24693:        * src/: include/pa_hash.h, include/pa_value.h, include/pa_vhash.h,
                   24694:          include/pa_vunknown.h, main/compile.y, main/execute.C,
                   24695:          main/pa_hash.C: expr def in -f
                   24696: 
                   24697:        * src/main/: compile.y, execute.C: expr calls
                   24698: 
                   24699:        * src/main/: compile.y, execute.C, pa_string.C: bug in string.cmp
                   24700:          fixed
                   24701: 
                   24702:        * src/main/compile.y: expr quoted code
                   24703: 
                   24704:        * src/main/: compile.y, execute.C: expr whitespace solved. added ""
                   24705:          support0
                   24706: 
                   24707:        * src/main/compile.y: expr string comparisons 0
                   24708: 
                   24709:        * src/: include/pa_string.h, main/compile.y, main/execute.C,
                   24710:          main/pa_string.C: just compiled lt&co
                   24711: 
                   24712:        * src/main/execute.C: ^var.menu{$field} problem detected. that
                   24713:          $field not a $var.field
                   24714: 
                   24715: 2001-03-06  paf
                   24716: 
                   24717:        * src/main/compile.y: .y expr visible-shorter
                   24718: 
                   24719:        * src/: include/code.h, main/compile.y, main/execute.C: 1 problems
                   24720:          with skipping whitespace in yylex fixed 2 xors: # bitwise ##
                   24721:          logical
                   24722: 
                   24723:        * src/: include/pa_vstring.h, main/compile.y: problems with
                   24724:          skipping whitespace in yylex
                   24725: 
                   24726:        * src/include/pa_vbool.h: forgot this
                   24727: 
                   24728:        * src/: include/code.h, main/compile.y, main/execute.C: without
                   24729:          string ops in expressions 0
                   24730: 
                   24731:        * src/: include/pa_value.h, include/pa_vdouble.h,
                   24732:          include/pa_vstring.h, include/pa_vunknown.h, main/compile.y,
                   24733:          main/execute.C, main/main.dsp: !~
                   24734: 
                   24735:        * src/: include/pa_vcframe.h, include/pa_vclass.h,
                   24736:          include/pa_vdouble.h, include/pa_vhash.h, include/pa_vjunction.h,
                   24737:          include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
                   24738:          include/pa_vunknown.h, include/pa_wcontext.h,
                   24739:          include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
                   24740:          main/compile_tools.h, main/execute.C: +-*/
                   24741: 
                   24742:        * src/: include/pa_vdouble.h, main/compile.y, main/compile_tools.C,
                   24743:          main/compile_tools.h: grammar-1.1 $a(z) $a=0
                   24744: 
                   24745:        * src/: include/pa_value.h, include/pa_vdouble.h, main/compile.y,
                   24746:          main/execute.C: expr grammar-1 2*2=4.000000 :)
                   24747: 
                   24748:        * src/main/compile.y: expr grammar-1
                   24749: 
                   24750:        * src/main/compile.y: expr lexx1
                   24751: 
                   24752:        * src/main/: compile.y, execute.C, main.dsp: z
                   24753: 
                   24754:        * src/: include/code.h, include/pa_valiased.h, include/pa_value.h,
                   24755:          include/pa_vdouble.h, include/pa_vstring.h, main/compile.y,
                   24756:          main/execute.C: expr lex0 exec-1
                   24757: 
                   24758:        * src/: include/code.h, main/compile.y, main/compile_tools.h: g
                   24759: 
                   24760: 2001-02-26  paf
                   24761: 
                   24762:        * src/main/compile.y: max_string in yyerror bug fix
                   24763: 
                   24764: 2001-02-25  paf
                   24765: 
                   24766:        * src/: include/pa_value.h, include/pa_vmframe.h,
                   24767:          include/pa_wcontext.h, main/execute.C: VAliased3
                   24768: 
                   24769:        * src/include/: pa_value.h, pa_vmframe.h: VAliased2
                   24770: 
                   24771:        * src/main/execute.C: VAliased1
                   24772: 
                   24773:        * src/: include/pa_request.h, include/pa_value.h,
                   24774:          include/pa_vmframe.h, include/pa_wcontext.h, main/execute.C:
                   24775:          VAliased0
                   24776: 
                   24777:        * src/: include/pa_pool.h, include/pa_request.h,
                   24778:          include/pa_value.h, include/pa_vclass.h, include/pa_vmframe.h,
                   24779:          include/pa_vobject.h, main/core.C, main/execute.C, main/main.dsp:
                   24780:          VAliased just compiled
                   24781: 
                   24782:        * src/: include/pa_pool.h, include/pa_value.h, include/pa_vclass.h,
                   24783:          include/pa_vobject.h, main/execute.C: alias dead end
                   24784: 
                   24785:        * src/: include/pa_value.h, include/pa_vclass.h,
                   24786:          include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
                   24787:          main/main.dsp: no not get fields into interm VFielded class.
                   24788:          fields & staticfields 1
                   24789: 
                   24790:        * src/: include/pa_vcframe.h, include/pa_vmframe.h,
                   24791:          include/pa_vobject.h, include/pa_wcontext.h,
                   24792:          include/pa_wwrapper.h, main/core.C, main/execute.C,
                   24793:          main/main.dsp: would now get fields into interm VFielded class
                   24794: 
                   24795:        * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
                   24796:          include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
                   24797:          include/pa_wcontext.h, main/compile.y, main/core.C,
                   24798:          main/execute.C, main/main.dsp, main/pa_hash.C, main/pa_value.C,
                   24799:          main/pa_wcontext.C: virtuals2
                   24800: 
                   24801:        * src/main/compile.y: : 1
                   24802: 
                   24803:        * src/main/compile.y: rethought to $class:static.field.subfield
                   24804: 
                   24805:        * src/: include/pa_vclass.h, main/compile.y, main/execute.C:
                   24806:          $class:element
                   24807: 
                   24808:        * src/: include/pa_value.h, include/pa_vmframe.h,
                   24809:          include/pa_wwrapper.h, main/compile.y, main/execute.C,
                   24810:          main/pa_wcontext.C: before execute class calls rewrite
                   24811: 
                   24812:        * src/: include/pa_request.h, main/compile.C, main/core.C: default
                   24813:          name RUN, also alias
                   24814: 
                   24815:        * src/main/compile.y: escaping bug
                   24816: 
                   24817:        * src/: include/pa_request.h, include/pa_value.h,
                   24818:          include/pa_vobject.h, main/compile.y, main/compile_tools.h,
                   24819:          main/core.C, main/execute.C, main/pa_common.C: vobject1
                   24820: 
                   24821:        * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
                   24822:          include/pa_vmframe.h, include/pa_vobject.h,
                   24823:          include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
                   24824:          main/compile_tools.h, main/execute.C: ^class:method() just
                   24825:          compiled
                   24826: 
                   24827: 2001-02-24  paf
                   24828: 
                   24829:        * src/main/main.dsp: no bison -d
                   24830: 
                   24831:        * src/main/: compile.y, compile_tools.h: use0 line no on 'undef
                   24832:          class' err msg wrong
                   24833: 
                   24834:        * src/main/compile.y: z
                   24835: 
                   24836:        * src/main/: compile.y, core.C: yylex need some @special lines adj
                   24837: 
                   24838:        * src/: include/pa_request.h, include/pa_vclass.h, main/compile.C,
                   24839:          main/compile.y, main/compile_tools.h, main/core.C: modules0
                   24840: 
                   24841:        * src/: include/pa_vclass.h, main/core.C: z
                   24842: 
                   24843:        * src/: include/pa_value.h, include/pa_vclass.h,
                   24844:          include/pa_vobject.h, main/main.dsp: vobject00
                   24845: 
                   24846:        * src/main/pa_array.C: minor bug in expanding very small arrays.
                   24847:          60% from 1 were 0
                   24848: 
                   24849:        * src/: include/pa_value.h, include/pa_wcontext.h,
                   24850:          include/pa_wwrapper.h, main/execute.C, main/pa_value.C: it works
                   24851:          as bad as you've named it: wcontext.value() was not a perfect
                   24852:          idea
                   24853: 
                   24854:        * src/main/execute.C: codeframe1
                   24855: 
                   24856:        * src/: include/pa_value.h, include/pa_vcframe.h,
                   24857:          include/pa_vclass.h, include/pa_vframe.h, include/pa_vhash.h,
                   24858:          include/pa_vjunction.h, include/pa_vmframe.h,
                   24859:          include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
                   24860:          main/main.dsp, main/pa_cframe.C, main/pa_wcontext.C: codeframe
                   24861:          just compiled
                   24862: 
                   24863:        * src/: include/pa_vframe.h, main/compile.y: found junction
                   24864:          ideology @: ^x{$a()) must construct current wcontext element, so
                   24865:          smart wcontext handling needed
                   24866: 
                   24867:        * src/main/compile.y: fixed grammar bugs in constructor/params
                   24868:          klinch
                   24869: 
                   24870:        * src/main/: compile.y, execute.C: fixed empty constructor
                   24871:          optimized empty case. failed on calls - produced empty string
                   24872:          param
                   24873: 
                   24874:        * src/main/compile.y: fixed last \n macrotemplate strip bug
                   24875: 
                   24876:        * src/: include/code.h, include/pa_request.h, include/pa_value.h,
                   24877:          include/pa_vclass.h, include/pa_vframe.h, main/compile.y,
                   24878:          main/compile_tools.C, main/compile_tools.h, main/core.C,
                   24879:          main/execute.C: code junctions0. something wrong with last \n
                   24880:          macrotemplate strip
                   24881: 
                   24882:        * src/: include/pa_value.h, main/compile.C, main/core.C,
                   24883:          main/pa_value.C: minor error reporting format beautifyings
                   24884: 
                   24885:        * src/: include/pa_value.h, include/pa_vclass.h,
                   24886:          include/pa_vframe.h, main/core.C, main/execute.C,
                   24887:          main/pa_value.C: get_method RIP. junctions everywhere. call with
                   24888:          junctions0
                   24889: 
                   24890: 2001-02-23  paf
                   24891: 
                   24892:        * src/include/: pa_value.h, pa_vclass.h, pa_vframe.h,
                   24893:          pa_wwrapper.h: lara came, can't work, sorry :(
                   24894: 
                   24895:        * src/main/: compile.y, execute.C, main.dsp: rethought some. before
                   24896:          junction
                   24897: 
                   24898:        * src/: include/pa_vframe.h, include/pa_vunknown.h,
                   24899:          include/pa_wcontext.h, include/pa_wwrapper.h, main/core.C,
                   24900:          main/execute.C, main/main.dsp, main/pa_value.C: call0
                   24901: 
                   24902:        * src/: include/pa_hash.h, include/pa_value.h,
                   24903:          include/pa_wcontext.h, main/core.C, main/execute.C,
                   24904:          main/main.dsp, main/pa_hash.C: started call. store param, vframe
                   24905:          done
                   24906: 
                   24907:        * src/include/pa_wcontext.h: z
                   24908: 
                   24909:        * src/main/: compile.y, compile_tools.C, compile_tools.h: fixed
                   24910:          wrong grammar in complex constructor case
                   24911: 
                   24912:        * src/main/: compile.y, execute.C: empty constructor bug fixed
                   24913: 
                   24914:        * src/main/execute.C: with result rwpool
                   24915: 
                   24916:        * src/: include/pa_value.h, main/core.C, main/execute.C,
                   24917:          main/main.dsp: value named
                   24918: 
                   24919:        * src/: include/pa_value.h, include/pa_vstring.h, main/execute.C:
                   24920:          strign 2 value in 2 places in execute
                   24921: 
                   24922:        * src/: include/pa_value.h, include/pa_wcontext.h, main/compile.y,
                   24923:          main/execute.C, main/main.dsp, main/pa_array.C: auto VHash on
                   24924:          wcontext.put_element when wcontext fvalue==0
                   24925: 
                   24926: 2001-02-22  paf
                   24927: 
                   24928:        * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
                   24929:          include/pa_vhash.h, include/pa_vstring.h, include/pa_wcontext.h,
                   24930:          main/execute.C, main/main.dsp: auto VHash in pa.th.cre.at.e
                   24931: 
                   24932:        * src/: include/pa_wcontext.h, main/compile.y, main/execute.C:
                   24933:          erroreos checkout
                   24934: 
                   24935:        * src/: include/pa_request.h, main/compile.y: $self.put(val)
                   24936: 
                   24937:        * src/: include/pa_array.h, main/compile.y, main/compile_tools.C,
                   24938:          main/compile_tools.h, main/pa_array.C: $self.get
                   24939: 
                   24940:        * src/main/: compile.C, compile.y, compile_tools.C: z
                   24941: 
                   24942:        * src/main/compile.y: $: wasn't finished - $:sdf(sdf) troubled a
                   24943:          bit. finished now.
                   24944: 
                   24945:        * src/main/compile.y: $: finished
                   24946: 
                   24947:        * src/main/: compile.C, compile.y, execute.C: started : with $a.$:f
                   24948: 
                   24949:        * src/: include/code.h, main/compile_tools.C, main/compile_tools.h,
                   24950:          main/execute.C: OP_STRING better then some xxx _VALUE
                   24951: 
                   24952:        * src/: include/code.h, include/pa_vstring.h, main/compile.y,
                   24953:          main/compile_tools.C, main/compile_tools.h, main/execute.C:
                   24954:          string to vstring it .y all
                   24955: 
                   24956:        * src/: include/pa_request.h, include/pa_stack.h,
                   24957:          include/pa_wcontext.h, main/execute.C: z about to vstring it .y
                   24958:          all
                   24959: 
                   24960:        * src/main/: compile.C, core.C, execute.C, pa_string.C: more
                   24961:          precise parse error line:col
                   24962: 
                   24963:        * src/: include/pa_pool.h, include/pa_vclass.h, main/core.C,
                   24964:          main/pa_hash.C, main/pa_pool.C: TRY...
                   24965: 
                   24966:        * src/: include/pa_exception.h, include/pa_pool.h,
                   24967:          include/pa_request.h, include/pa_value.h, include/pa_wcontext.h,
                   24968:          main/compile.C, main/compile.y, main/compile_tools.C,
                   24969:          main/core.C, main/pa_array.C, main/pa_exception.C,
                   24970:          main/pa_hash.C, main/pa_pool.C, main/pa_string.C,
                   24971:          main/pa_table.C: removed exception from request
                   24972: 
                   24973:        * src/: include/pa_vstring.h, main/compile.C, main/core.C: added
                   24974:          some forgotten
                   24975: 
                   24976:        * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
                   24977:          include/pa_wcontext.h, main/compile.y, main/compile_tools.C,
                   24978:          main/compile_tools.h, main/execute.C, main/main.dsp: iiieeyys!
                   24979:          get/put simple vars to VClass works0
                   24980: 
                   24981:        * src/: include/pa_array.h, include/pa_wcontext.h,
                   24982:          main/pa_string.C: in process, but found that exceptions are too
                   24983:          global
                   24984: 
                   24985:        * src/: include/code.h, include/pa_string.h, include/pa_value.h,
                   24986:          include/pa_vclass.h, include/pa_wcontext.h, main/compile.y,
                   24987:          main/execute.C, main/pa_string.C: write_value write_string 0 it
                   24988:          seems wcontext must write strings regardles of fvalue!=0
                   24989: 
                   24990: 2001-02-21  paf
                   24991: 
                   24992:        * src/main/execute.C: tired :)
                   24993: 
                   24994:        * src/main/: compile.C, compile.y, execute.C: store0
                   24995: 
                   24996:        * src/: include/compile.h, include/execute.h, include/pa_array.h,
                   24997:          include/pa_request.h, include/pa_stack.h, include/pa_vclass.h,
                   24998:          include/pa_wcontext.h, main/compile.C, main/compile.y,
                   24999:          main/execute.C, main/main.dsp, main/pa_array.C,
                   25000:          main/pa_request.C: get put -1 [just compiled]
                   25001: 
                   25002:        * src/: include/core.h, include/pa_context.h, include/pa_request.h,
                   25003:          include/pa_vclass.h, include/pa_wcontext.h, main/core.C,
                   25004:          main/main.dsp, main/pa_request.C: request core methods0
                   25005: 
                   25006:        * src/: include/compile.h, include/pa_array.h, main/compile.C,
                   25007:          main/compile.y, main/execute.C: MAIN_METHOD_NAME ready to write
                   25008:          execute
                   25009: 
                   25010:        * src/: include/pa_exception.h, include/pa_value.h, main/compile.C,
                   25011:          main/compile.y, main/compile_tools.C, main/compile_tools.h: .y
                   25012:          methods and one_big_piece. now compile returns array<method*>
                   25013: 
                   25014:        * src/main/compile.y: more straightforward yylex[end]
                   25015: 
                   25016:        * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
                   25017:          string.operator==(char*)
                   25018: 
                   25019:        * src/: include/execute.h, include/pa_array.h, include/pa_value.h,
                   25020:          main/execute.C, main/pa_array.C: after array.const get wonders
                   25021: 
                   25022:        * src/include/: compile.h, pa_context.h, pa_hash.h, pa_request.h,
                   25023:          pa_string.h, pa_value.h: struck with const array.gets
                   25024: 
                   25025:        * src/main/: execute.C: z
                   25026: 
                   25027:        * src/main/: compile.y, execute.C: z
                   25028: 
                   25029:        * src/main/: compile.C, compile.y, compile_tools.h: error
                   25030:          processing in eval & yyerror so it wouldn't cause memleaks.
                   25031: 
                   25032:        * src/main/: compile.C, compile.y: failed to add absolute precies
                   25033:          parse error positions. leaving RIGHTMOST position as
                   25034:          @file[line:col]
                   25035: 
                   25036:        * src/: include/compile.h, main/compile.C, main/compile.y,
                   25037:          main/compile_tools.h: line numbers needed. would add them to .y
                   25038:          now internally. externally it's not as precise as needed
                   25039: 
                   25040:        * src/: include/code.h, include/pa_types.h, main/compile.C,
                   25041:          main/compile.y, main/compile_tools.C, main/compile_tools.h,
                   25042:          main/execute.C, main/main.dsp: .y to c++ hierarchy output fix.
                   25043:          compiler works ok
                   25044: 
                   25045: 2001-02-20  paf
                   25046: 
                   25047:        * src/main/: compile.C, compile.y, compile_tools.C,
                   25048:          compile_tools.h, execute.C, main.dsp: nestage probs, eof yylex
                   25049:          not perfect
                   25050: 
                   25051:        * src/: include/code.h, include/compile.h, include/execute.h,
                   25052:          include/pa_array.h, include/pa_common.h, include/pa_pool.h,
                   25053:          include/pa_string.h, include/pa_table.h, include/pa_types.h,
                   25054:          main/compile.C, main/compile.y, main/compile_tools.C,
                   25055:          main/compile_tools.h, main/core.C, main/execute.C, main/main.dsp,
                   25056:          main/pa_array.C, main/pa_common.C, main/pa_hash.C,
                   25057:          main/pa_string.C, main/pa_table.C: bison[yacc] first time
                   25058:          compiled.  execute=dump for now
                   25059: 
                   25060:        * src/main/core.C: core rewrite using yacc investigations now will
                   25061:          be compile[yacc]/execute[opcodes]
                   25062: 
                   25063: 2001-02-15  paf
                   25064: 
                   25065:        * src/: include/pa_value.h, main/core.C: maybe a-la yacc those ifs
                   25066:          rewrite as turing machine? for it seems it would be it's too many
                   25067:          ifs with this syntax now
                   25068: 
                   25069: 2001-02-14  paf
                   25070: 
                   25071:        * src/main/core.C: get_params 1
                   25072: 
                   25073:        * src/main/core.C: get_params figured ^menu[UNEVALUATED unthinked
                   25074:          :( ]
                   25075: 
                   25076:        * src/main/core.C: varios breaks
                   25077: 
                   25078:        * src/main/core.C: get names 3
                   25079: 
                   25080:        * src/main/core.C: get names 2
                   25081: 
                   25082:        * src/main/core.C: get names 1
                   25083: 
                   25084:        * src/: include/pa_string.h, main/core.C, main/pa_string.C: get
                   25085:          names 0
                   25086: 
                   25087:        * src/: include/pa_value.h, main/core.C, main/pa_string.C: process
                   25088:          text repassing2 operator static vars
                   25089: 
                   25090:        * src/: include/pa_context.h, include/pa_string.h, main/core.C,
                   25091:          main/pa_string.C: process text repassing
                   25092: 
                   25093:        * src/: include/pa_context.h, include/pa_value.h, main/core.C:
                   25094:          module:calls changes
                   25095: 
                   25096: 2001-02-13  paf
                   25097: 
                   25098:        * src/: include/pa_context.h, include/pa_value.h, main/core.C:
                   25099:          ^class:calls[] started
                   25100: 
                   25101:        * src/: include/pa_value.h, main/core.C: z
                   25102: 
                   25103:        * src/main/core.C: operators : and self. prefixes
                   25104: 
                   25105:        * src/main/core.C: z
                   25106: 
                   25107:        * src/: include/pa_string.h, main/pa_string.C: String_iterator
                   25108:          tested
                   25109: 
                   25110:        * src/: include/pa_string.h, main/pa_string.C: String_iterator
                   25111:          optimized
                   25112: 
                   25113:        * src/main/pa_string.C: String_iterator::skip_to optimized a bit.
                   25114:          would change privates to better support optimization
                   25115: 
                   25116:        * src/: include/pa_string.h, main/pa_string.C:
                   25117:          String_iterator::skip_to todo:optimize
                   25118: 
                   25119: 2001-02-12  paf
                   25120: 
                   25121:        * src/: include/pa_string.h, main/core.C, main/pa_string.C: started
                   25122:          String_iterator
                   25123: 
                   25124:        * src/: include/pa_context.h, include/pa_value.h, main/core.C: some
                   25125:          comments
                   25126: 
                   25127:        * src/: include/pa_context.h, include/pa_value.h, main/core.C: get
                   25128:          self/methodref joined
                   25129: 
                   25130: 2001-02-11  paf
                   25131: 
                   25132:        * src/: include/pa_context.h, include/pa_value.h, main/core.C,
                   25133:          main/main.dsp: core started.  core.C, context&value .h
                   25134: 
                   25135:        * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
                   25136:          include/pa_string.h, main/main.dsp, main/pa_array.C,
                   25137:          main/pa_hash.C, main/pa_pool.C, main/pa_string.C: :pooled
                   25138: 
                   25139: 2001-01-30  paf
                   25140: 
                   25141:        * src/: Makefile.am, main/Makefile.am, targets/Makefile.am: .am
                   25142:          comments
                   25143: 
                   25144:        * src/: include/pa_pool.h, main/Makefile.am, main/main.dsp,
                   25145:          main/pa_pool.C: moved pa_pool.C to be target specific
                   25146: 
                   25147:        * src/: include/pa_exception.h, include/pa_pool.h,
                   25148:          include/pa_table.h, main/pa_exception.C, main/pa_table.C: minor *
                   25149:          to & changes
                   25150: 
                   25151:        * src/: include/pa_exception.h, include/pa_pool.h,
                   25152:          include/pa_request.h, include/pa_table.h, main/pa_array.C,
                   25153:          main/pa_exception.C, main/pa_pool.C, main/pa_table.C: error
                   25154:          re-associated. that's much better even removed 'die' necessety
                   25155: 
                   25156:        * src/: include/pa_error.h, include/pa_exception.h,
                   25157:          include/pa_pool.h, include/pa_request.h, main/main.dsp,
                   25158:          main/pa_error.C, main/pa_exception.C, main/pa_pool.C,
                   25159:          targets/Makefile.am: lowered targets/parser into subdir, added
                   25160:          parser_Pool(Pool) failed to add. would think..
                   25161: 
                   25162:        * src/: include/pa_error.h, include/pa_hash.h, include/pa_string.h,
                   25163:          include/pa_table.h, main/pa_error.C, main/pa_hash.C,
                   25164:          main/pa_string.C, main/pa_table.C: Table more like C++ style
                   25165:          hence lots of 'const'
                   25166: 
                   25167:        * src/: include/pa_error.h, include/pa_request.h,
                   25168:          include/pa_string.h, include/pa_table.h, main/pa_error.C,
                   25169:          main/pa_table.C: Error fixed
                   25170: 
                   25171: 2001-01-29  paf
                   25172: 
                   25173:        * src/: include/pa_array.h, include/pa_common.h,
                   25174:          include/pa_error.h, include/pa_hash.h, include/pa_pool.h,
                   25175:          include/pa_request.h, include/pa_string.h, include/pa_table.h,
                   25176:          main/Makefile.am, main/pa_array.C, main/pa_common.C,
                   25177:          main/pa_error.C, main/pa_hash.C, main/pa_table.C: added forgotten
                   25178: 
                   25179:        * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
                   25180:          include/pa_string.h, include/pa_table.h, include/pa_types.h,
                   25181:          main/Makefile.am, main/main.dsp, main/pa_array.C, main/pa_hash.C,
                   25182:          main/pa_string.C, main/pa_table.C: Request Error Table
                   25183: 
                   25184:        * src/: include/pa_pool.h, main/pa_array.C: tested - decision "no
                   25185:          templates"
                   25186: 
                   25187:        * src/: include/pa_array.h, include/pa_pool.h, main/Makefile.am,
                   25188:          main/main.dsp, main/pa_array.C: templates failed no template
                   25189:          specializations [VC6], no library auto instantation [VC6, GNU c++
                   25190:          2.95.2-6 from latest cygwin]
                   25191: 
                   25192:        * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
                   25193:          include/pa_string.h, include/pa_table.h, include/pa_types.h,
                   25194:          main/main.dsp, main/pa_array.C, main/pa_string.C,
                   25195:          main/pa_table.C: Table started would test template Array now
                   25196: 
                   25197:        * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
                   25198:          String originating
                   25199: 
                   25200:        * src/: include/pa_hash.h, include/pa_pool.h, include/pa_threads.h,
                   25201:          main/pa_hash.C: made local Hash-es not thread safe=quicker by
                   25202:          SYNCHRONIZED(thread_safe)
                   25203: 
                   25204:        * src/include/: pa_array.h, pa_hash.h, pa_string.h: moved .h public
                   25205:          parts to top
                   25206: 
                   25207:        * src/: include/pa_hash.h, include/pa_threads.h, main/pa_hash.C,
                   25208:          main/pa_threads.C: decided on one global_mutex, like PHP as I can
                   25209:          see: needed only in global Hash now, made Hash:: put/get
                   25210:          SYNCHRONIZED
                   25211: 
                   25212:        * src/: include/pa_hash.h, include/pa_threads.h, main/main.dsp,
                   25213:          main/pa_threads.C: added pa_threads
                   25214: 
                   25215:          Mutex
                   25216: 
                   25217:        * src/include/pa_hash.h: some comments
                   25218: 
                   25219:        * src/: main/pa_array.C, include/pa_array.h, include/pa_pool.h:
                   25220:          Array& operator += (Array& src)
                   25221: 
                   25222:        * src/main/pa_array.C: expand not convinient, would rewrite
                   25223: 
                   25224:        * src/: include/pa_array.h, main/pa_array.C: Array::operator +=
                   25225:          (Array& src)
                   25226: 
                   25227:          rethought, would change now
                   25228: 
                   25229: 2001-01-27  paf
                   25230: 
                   25231:        * src/: include/pa_array.h, main/pa_array.C: array [] with chunk
                   25232:          caching
                   25233: 
                   25234:        * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
                   25235:          include/pa_string.h, main/pa_array.C, main/pa_string.C: array
                   25236:          cache rethought to chunk caching
                   25237: 
                   25238:        * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
                   25239:          include/pa_string.h, main/main.dsp, main/pa_array.C,
                   25240:          main/pa_hash.C, main/pa_string.C: Array 0
                   25241: 
                   25242:        * src/main/pa_string.C: String::operator ==
                   25243: 
                   25244:        * src/main/pa_hash.C: String(&String)
                   25245: 
                   25246:        * src/main/pa_hash.C: added pa_hash.C [forgotten]
                   25247: 
                   25248:        * src/: include/pa_hash.h, include/pa_string.h, include/pa_types.h,
                   25249:          main/main.dsp, main/pa_string.C: uint, and added pa_types &
                   25250:          pa_hash[forgotten]
                   25251: 
                   25252: 2001-01-26  paf
                   25253: 
                   25254:        * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
                   25255:          removed templates [vc++ suxx]
                   25256: 
                   25257:        * src/: include/pa_pool.h, include/pa_string.h, main/main.dsp,
                   25258:          main/pa_pool.C, main/pa_string.C: templates in VC++ suxx.
                   25259: 
                   25260:        * src/include/: pa_pool.h, pa_string.h: pa_pool split
                   25261: 
1.119     moko     25262:        * src/main/: main.dsp, pa_string.C: Id check
1.95      moko     25263: 
1.119     moko     25264:        * src/: main/pa_pool.C, main/pa_string.C, include/pa_pool.h: Id
1.95      moko     25265:          check
                   25266: 
                   25267:        * src/: include/pa_pool.h, main/pa_string.C: String prealloc &
                   25268:          dynamic row_count
                   25269: 
                   25270:        * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
                   25271:          main/main.dsp, main/pa_pool.C, main/pa_string.C,
                   25272:          targets/Makefile.am: Initial revision
                   25273: 
                   25274:        * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
                   25275:          main/main.dsp, main/pa_pool.C, main/pa_string.C,
                   25276:          targets/Makefile.am: creating parser3 module
                   25277: 

E-mail: