Annotation of parser3/ChangeLog, revision 1.201

1.201   ! moko        1: 2024-10-13  moko
        !             2: 
        !             3:        * src/types/pa_varray.h: ^array.$i[arg] is rare, thus checking i
        !             4:          with is_index() before calling index() for better error reporting
        !             5:          in method name typo (was invalid number, not method not found
        !             6:          exception).
        !             7: 
        !             8: 2024-10-08  moko
        !             9: 
        !            10:        * src/types/pa_varray.C: Visual Studio compatibilty issues fixed
        !            11: 
        !            12:        * src/include/pa_array.h: warnings war
        !            13: 
1.200     moko       14: 2024-10-05  moko
                     15: 
                     16:        * src/classes/table.C: ^table.cells[] / ^table.cells(limit) added,
                     17:          returns current row cells array (implements feature #1250)
                     18: 
                     19:        * tests/: 405.html, results/169.processed, results/405.processed:
                     20:          tests updated after ^string.split[;a] implemented (related to
                     21:          feature #1249)
                     22: 
                     23:        * src/classes/string.C: ^string.split[] - 'a' option added for
                     24:          splitting into an array (implements feature #1249)
                     25: 
                     26: 2024-10-04  moko
                     27: 
                     28:        * tests/: 431.html, results/431.processed: final code coverage
                     29:          array tests
                     30: 
                     31:        * src/: classes/array.C, include/pa_array.h, types/pa_varray.h:
                     32:          array: confirm_all_used() added and used where possible, expand()
                     33:          now expends faster
                     34: 
                     35: 2024-10-03  moko
                     36: 
                     37:        * tests/: 357.html, results/auto.p: max_recoursion -> max_recursion
                     38: 
                     39:        * tests/: 256.html, results/256.processed: test for
                     40:          $.date[unix-timestamp] handling large dates
                     41: 
                     42:        * src/: classes/file.C, classes/op.C, classes/reflection.C,
                     43:          classes/string.C, classes/table.C, include/pa_common.h,
                     44:          main/pa_common.C, main/pa_http.C, main/pa_request.C,
                     45:          types/pa_vdate.C, types/pa_vmethod_frame.h, types/pa_vtable.C:
                     46:          format replaced with pa_uitoa where applicable,
                     47:          $.date[unix-timestamp] fixed for handling large dates
                     48: 
                     49:        * tests/: 433.html, results/433.processed: more tests, including
                     50:          test for possible endless recursion in ^o.GET[]
                     51: 
                     52:        * src/types/pa_vobject.C: bugfix: detecting possible endless
                     53:          recursion in get_scalar_value inside ^o.GET[]
                     54: 
                     55:        * src/: classes/json.C, include/pa_request.h, main/execute.C,
                     56:          main/pa_request.C, types/pa_value.h, types/pa_vmethod_frame.C:
                     57:          Temp_recursion class added; spelling: $LIMITS.max_recoursion ->
                     58:          $LIMITS.max_recursion
                     59: 
                     60: 2024-10-02  moko
                     61: 
                     62:        * tests/: 253.html, 287.html, 430.html, 431.html, 433.html,
                     63:          results/253.processed, results/287.processed,
                     64:          results/430.processed, results/433.processed: more tests for full
                     65:          array and json code coverage
                     66: 
                     67:        * tests/: 433.html, results/433.processed: tests for hash functions
                     68:          with array param
                     69: 
                     70:        * src/classes/: array.C, hash.C: ^hash::create[$array] optimized
                     71: 
                     72:        * tests/: 432.html, results/432.processed: modified ^hash.at tests
                     73:          in 246.html used to test ^array.at, same result produced
                     74: 
                     75:        * tests/: 430.html, 431.html, results/430.processed,
                     76:          results/431.processed: more array tests for 100% code coverage
                     77:          (related to feature #930)
                     78: 
                     79:        * tests/: 427.html, 430.html, results/427.processed,
                     80:          results/430.processed: first portion of array tests added
                     81:          (related to feature #930)
                     82: 
                     83:        * src/classes/array.C: allow only whitespace string as argument for
                     84:          add and join
                     85: 
                     86:        * src/classes/array.C: add behavour for array synced with hash
                     87: 
                     88: 2024-09-30  moko
                     89: 
                     90:        * tests/: 429-sql.html, results/429-sql.processed: code coverage
                     91:          tests added
                     92: 
                     93:        * src/classes/array.C: $.distinct should not be used unless
                     94:          $.sparse(true)
                     95: 
                     96:        * tests/: 429-sql.html, results/388-sql.processed,
                     97:          results/429-sql.processed: tests for ^array::sql{}, including
                     98:          multi_statements mode (related to feature #930)
                     99: 
1.199     moko      100: 2024-09-29  moko
                    101: 
                    102:        * src/classes/array.C: synced ^array::sql multi_statements logic
                    103:          with ^hash::sql new behavour
                    104: 
                    105: 2024-09-28  moko
                    106: 
                    107:        * tests/: 428-sql.html, results/388-sql.processed,
                    108:          results/428-sql.processed: tests updated after column names were
                    109:          fixed in multi_statements mode (related to feature #1197)
                    110: 
                    111:        * src/classes/hash.C: column names are fixed for most cases in
                    112:          multi_statements mode (related to feature #1197)
                    113: 
                    114:        * tests/: 428-sql.html, results/195.processed,
                    115:          results/224.processed, results/239.processed,
                    116:          results/254.processed, results/261.processed,
                    117:          results/306.processed, results/333.processed,
                    118:          results/341.processed, results/343.processed,
                    119:          results/344.processed, results/348.processed,
                    120:          results/364.processed, results/389.processed,
                    121:          results/390.processed, results/415.processed,
                    122:          results/420.processed, results/421.processed: tests results
                    123:          updated after error messages spelling minor fixes
                    124: 
                    125:        * src/types/: pa_value.h, pa_vstateless_class.h: a bit more
                    126:          spelling
                    127: 
                    128:        * src/: classes/curl.C, classes/file.C, classes/hash.C,
                    129:          classes/image.C, classes/math.C, classes/string.C,
                    130:          classes/table.C, lib/memcached/pa_memcached.C, main/compile.y,
                    131:          main/execute.C, main/pa_charset.C, main/pa_common.C,
                    132:          main/pa_http.C, main/pa_request.C, main/pa_socks.C,
                    133:          main/pa_sql_driver_manager.C, types/pa_value.C, types/pa_value.h,
                    134:          types/pa_vmail.C, types/pa_vobject.C,
                    135:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                    136:          types/pa_vxdoc.C: minor error messages spelling fixes
                    137: 
                    138:        * src/: classes/array.C, types/pa_varray.h: initial ^array::sql{}
                    139:          implementation (related to feature #930)
                    140: 
                    141:        * tests/: 388-sql.html, results/388-sql.processed: test results
                    142:          updated after rows number ^file::sql{} check added
                    143: 
                    144:        * src/classes/file.C: rows number now checked in ^file::sql{}
                    145: 
                    146:        * tests/: 428-sql.html, results/428-sql.processed: more tests
                    147: 
                    148:        * tests/: 428-sql.html, results/428-sql.processed: more
                    149:          multi_statements testing before bugfix
                    150: 
                    151:        * tests/: 388-sql.html, 428-sql.html, results/388-sql.processed,
                    152:          results/428-sql.processed: support for multiple sql test files
                    153:          added
                    154: 
                    155:        * tests/: 388-sql.html, results/388-sql.processed: more sql testing
                    156: 
                    157:        * src/classes/hash.C: more accurate one_bool_column processing
                    158: 
                    159:        * tests/: 427.html, results/427.processed: Constructors as methods
                    160:          behavour documented in test
                    161: 
                    162:        * src/classes/hash.C: HashStringValue::Iterator used for options
                    163: 
                    164:        * tests/: 388-sql.html, results/388-sql.processed: even more tests
                    165: 
                    166:        * tests/: 388-sql.html, results/388-sql.processed: a bit more
                    167:          testing
                    168: 
                    169:        * tests/results/367-curl.processed: test result updated after
                    170:          server charset changed
                    171: 
                    172:        * tests/results/347-curl.processed: error messages updated
                    173: 
                    174:        * tests/results/: 346-curl.processed, 379-curl.processed,
                    175:          394-curl.processed: tests results updated after Type -> Exception
                    176:          type replacement
                    177: 
                    178:        * tests/results/388-sql.processed: tests result updated after Type
                    179:          -> Exception type
                    180: 
                    181: 2024-09-27  moko
                    182: 
                    183:        * src/classes/hash.C: minor simplification
                    184: 
                    185: 2024-09-24  moko
                    186: 
                    187:        * src/main/pa_string.C: atoui error messages improved
                    188: 
                    189:        * tests/: 165.html, 312.html, results/165.processed,
                    190:          results/312.processed, results/379.processed: tests updated after
                    191:          default endless loop limit increased, atoi error messages
                    192:          improved
                    193: 
                    194:        * src/classes/hash.C: VBool::get used, unification
                    195: 
1.198     moko      196: 2024-09-22  moko
                    197: 
                    198:        * src/classes/array.C: minor simplification
                    199: 
                    200:        * src/classes/array.C: ^array.left(N),
                    201:          ^array.right(N),^array.mid(P;N) added (related to feature #930)
                    202: 
                    203:        * src/: classes/array.C, include/pa_request.h, main/pa_request.C,
                    204:          types/pa_varray.C, types/pa_varray.h: $MAIN:LIMITS.max_array_size
                    205:          added, default 1000000 (related to feature #930)
                    206: 
                    207:        * tests/: 426.html, results/426.processed: test for negative limit
                    208:          and offset processing for table options added
                    209: 
                    210:        * src/: classes/table.C, include/pa_array.h, main/pa_table.C:
                    211:          bugfix: negative limit and offset processing for table options
                    212:          fixed
                    213: 
                    214: 2024-09-21  moko
                    215: 
                    216:        * src/: classes/array.C, types/pa_varray.h: join supports hash;
                    217:          ^for added that also iterates holes; ^remove added (related to
                    218:          feature #930)
                    219: 
                    220:        * src/classes/array.C: ^array.join[$another_array; $.limit(N)
                    221:          $.offset(M) ] added (related to feature #930)
                    222: 
                    223: 2024-09-20  moko
                    224: 
                    225:        * src/: classes/array.C, types/pa_varray.h: array:
                    226:          +foreach[value]{code}, + add[hash with numeric keys] (related to
                    227:          feature #930)
                    228: 
                    229: 2024-09-19  moko
                    230: 
                    231:        * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.h,
                    232:          main/execute.C, types/pa_varray.h: OP_CONSTRUCT_ARRAY added to
                    233:          support $a[v1;v2;...] syntax (related to feature #930)
                    234: 
                    235: 2024-09-17  moko
                    236: 
                    237:        * src/: classes/reflection.C, include/pa_request.h,
                    238:          main/compile_tools.h, main/pa_request.C:
                    239:          ^reflection:class_alias[existing class name;alias class name]
                    240:          added. The array class can now be redefined regardless of the
                    241:          $.replace(bool) option value (related to feature #930)
                    242: 
                    243:        * src/main/: compile.y, compile_tools.h: class_add return value
                    244:          inverted to add it to request class
                    245: 
                    246:        * src/: classes/array.C, include/pa_array.h, include/pa_request.h,
                    247:          include/pa_stack.h, types/pa_varray.C, types/pa_varray.h,
                    248:          types/pa_vmethod_frame.h: array: fused -> fsize, fit(index) to
                    249:          resize if required. spared array - added fused, append.
                    250: 
1.197     moko      251: 2024-09-16  moko
                    252: 
                    253:        * src/types/pa_varray.h: get moved to where it belongs
                    254: 
                    255: 2024-09-15  moko
                    256: 
                    257:        * src/: include/pa_array.h, types/pa_varray.h: more agressive
                    258:          expansion to minimize reallocs: fallocated/32 -> fallocated/4
                    259: 
                    260:        * tests/: 421.html, results/323.processed, results/421.processed:
                    261:          tests updated after 'spared-array' class renamed to 'array'
                    262:          following a discussion on the forum (related to feature #930)
                    263: 
                    264:        * src/: include/pa_array.h, types/pa_value.h, types/pa_varray.h,
                    265:          types/pa_vmail.C: initial SparseArray separation from Array,
                    266:          parser class now 'array'
                    267: 
                    268: 2024-09-14  moko
                    269: 
                    270:        * tests/: 030.html, results/030.processed: out of range expires
                    271:          check added
                    272: 
                    273:        * src/types/pa_vcookie.C: VDate range is narrower than gmtime, thus
                    274:          checking expires time using VDate
                    275: 
                    276: 2024-09-13  moko
                    277: 
                    278:        * src/: classes/array.C, classes/curl.C, classes/date.C,
                    279:          classes/file.C, classes/hash.C, classes/image.C, classes/json.C,
                    280:          classes/memcached.C, classes/op.C, classes/regex.C,
                    281:          classes/string.C, classes/xdoc.C, classes/xnode.C,
                    282:          main/execute.C, main/pa_http.C, main/pa_request.C,
                    283:          types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
                    284:          types/pa_vclass.h, types/pa_vcookie.C, types/pa_vhashfile.C,
                    285:          types/pa_vmail.C, types/pa_vobject.C, types/pa_vobject.h,
                    286:          types/pa_vxdoc.C, types/pa_vxdoc.h: optimization: Value::as()
                    287:          removed as dynamic_cast is faster, Value::is() is still required
                    288:          for is operator.
                    289: 
                    290: 2024-09-12  moko
                    291: 
                    292:        * src/: classes/file.C, classes/image.C, classes/reflection.C,
                    293:          classes/table.C, classes/xnode.C, include/pa_array.h,
                    294:          include/pa_string.h, main/pa_common.C, main/pa_request.C,
                    295:          main/pa_string.C, targets/cgi/pa_sapi_info.h, types/pa_vform.C,
                    296:          types/pa_vhash.h, types/pa_vtable.C, types/pa_vxnode.C: faster
                    297:          templated pa_itoa/pa_uitoa added to work with any integer type,
                    298:          String::Body::Format removed
                    299: 
                    300: 2024-09-10  moko
                    301: 
                    302:        * src/classes/array.C: append and insert methods added to
                    303:          sparse-array (related to feature #930)
                    304: 
                    305:        * tests/: 253.html, 255.html, 421.html, results/421.processed:
                    306:          tests updated after sparse-array was added to avoid ^json:parse[]
                    307:          using it in old tests (related to feature #930)
                    308: 
                    309:        * src/: classes/array.C, classes/json.C, types/pa_varray.C,
                    310:          types/pa_varray.h: sparse-array class added (initial feature #930
                    311:          implementation)
                    312: 
                    313:        * src/: classes/Makefile.am, types/Makefile.am: Makefiles update
                    314:          for sparse-array class files (related to feature #930)
                    315: 
                    316:        * src/: classes/json.C, include/pa_array.h, types/pa_value.h,
                    317:          types/pa_vhash.h: VArray support functions without actual VArray
                    318:          files (related to feature #930)
                    319: 
1.196     moko      320: 2024-09-07  moko
                    321: 
                    322:        * src/: classes/curl.C, classes/string.C, classes/table.C,
                    323:          include/pa_array.h, main/execute.C, main/pa_dictionary.C,
                    324:          main/pa_http.C, main/pa_sql_driver_manager.C,
                    325:          main/pa_stylesheet_manager.C, main/pa_table.C, types/pa_vclass.C,
                    326:          types/pa_vmethod_frame.C, types/pa_vstateless_class.C,
                    327:          types/pa_vtable.C, types/pa_wcontext.C: Array::Iterator unified
                    328:          with Hash::Iterator, has_next() replaced with operator bool
                    329:          (related to feature #930)
                    330: 
                    331:        * src/: classes/string.C, include/pa_array.h, main/pa_http.C,
                    332:          main/pa_table.C, types/pa_vclass.C, types/pa_vmethod_frame.C,
                    333:          types/pa_vstateless_class.C: Array class extended,
                    334:          Array::Iterator added and used (related to feature #930)
                    335: 
1.195     moko      336: 2024-08-26  moko
                    337: 
                    338:        * src/targets/cgi/parser3.C: under Windows back_slashes_to_slashes
                    339:          should be used on argv[0] as well to match document root.
                    340: 
1.194     moko      341: 2024-08-25  moko
                    342: 
                    343:        * src/main/pa_request.C: be more specific
                    344: 
                    345:        * src/targets/cgi/parser3.C: parser3 t.html now behaves identically
                    346:          to /usr/bin/parser3 t.html in terms of /etc/parser3/auto.p load
                    347:          (fixes bug #1244)
                    348: 
                    349:        * src/targets/cgi/parser3.C: avoid "parser allready configured"
                    350:          exception when ./parser3.cgi <file> is used; rsplit(..., '/') ||
                    351:          rsplit(..., '\\') is not correct when / and \ are mixed in path
                    352: 
                    353:        * src/targets/cgi/parser3.C: full_disk_path now uses pa_strcat()
                    354: 
1.193     moko      355: 2024-07-24  moko
                    356: 
                    357:        * src/: include/pa_config_includes.h, lib/gd/gifio.C,
                    358:          main/execute.C, main/pa_string.C: Warning war: clang changed
                    359:          -Wdeprecated-register warning to -Wregister, it's easier to
                    360:          remove all register vars then continue this fight. :)
                    361: 
                    362:        * src/main/: compile.y, compile.tab.C: warning war: register
                    363:          removed
                    364: 
1.192     moko      365: 2024-07-14  moko
                    366: 
                    367:        * src/targets/cgi/pa_sapi_info.h: When accessing $env:name,
                    368:          checking the HTTP request environment; if the variable is not
                    369:          present, checking the web server process environment (implements
                    370:          feature #1242)
                    371: 
1.191     moko      372: 2024-05-26  moko
                    373: 
                    374:        * tests/: 195.html, 229.html, results/096.processed,
                    375:          results/097.processed, results/158.processed,
                    376:          results/186.processed, results/273.processed,
                    377:          results/293.processed, results/317.processed,
                    378:          results/389.processed, results/402.processed: tests updated as
                    379:          single quote now escaped with &apos; in HTML tainting mode
                    380:          (related to feature #1241)
                    381: 
                    382:        * src/main/untaint.C: single quote now escaped with &apos; in HTML
                    383:          tainting mode (implements feature #1241)
                    384: 
                    385:        * tests/results/: 020.processed, 021.processed, 026.processed,
                    386:          042.processed, 043.processed, 057.processed, 110.processed,
                    387:          115.processed, 116.processed, 117.processed, 118.processed,
                    388:          119.processed, 120.processed, 125.processed, 126.processed,
                    389:          128.processed, 130.processed, 131.processed, 132.processed,
                    390:          133.processed, 135.processed, 136.processed, 138.processed,
                    391:          139.processed, 140.processed, 145.processed, 150.processed,
                    392:          151.processed, 165.processed, 174.processed, 181.processed,
                    393:          182.processed, 192.processed, 193.processed, 201.processed,
                    394:          213.processed, 224.processed, 226.processed, 230.processed,
                    395:          239.processed, 240.processed, 244.processed, 253.processed,
                    396:          254.processed, 261.processed, 264.processed, 269.processed,
                    397:          274.processed, 275.processed, 288.processed, 294.processed,
                    398:          296.processed, 303.processed, 306.processed, 307.processed,
                    399:          308.processed, 311.processed, 312.processed, 314.processed,
                    400:          315.processed, 316.processed, 320.processed, 323.processed,
                    401:          324.processed, 325.processed, 328.processed, 330.processed,
                    402:          332.processed, 333.processed, 337.processed, 338.processed,
                    403:          341.processed, 342.processed, 343.processed, 344.processed,
                    404:          345.processed, 348.processed, 352.processed, 356.processed,
                    405:          357.processed, 363.processed, 364.processed, 368.processed,
                    406:          372.processed, 373.processed, 376.processed, 378.processed,
                    407:          379.processed, 385.processed, 386.processed, 387.processed,
                    408:          389.processed, 390.processed, 395.processed, 397.processed,
                    409:          398.processed, 399.processed, 404.processed, 406.processed,
                    410:          413.processed, 414.processed, 420.processed, 421.processed,
                    411:          424.processed, auto.p: Type -> Exception type for readability
                    412: 
                    413:        * tests/: 119.html, 165.html, 175.html, 192.html, 213.html,
                    414:          217.html, 230.html, 240.html, 298.html, 380.html, 415.html,
                    415:          results/119.processed, results/165.processed,
                    416:          results/175.processed, results/192.processed,
                    417:          results/213.processed, results/217.processed,
                    418:          results/230.processed, results/240.processed,
                    419:          results/298.processed, results/380.processed,
                    420:          results/415.processed: try-catch, try-catch-comment used
                    421: 
                    422: 2024-05-21  moko
                    423: 
                    424:        * tests/: 169.html, 180.html, 195.html, 224.html, 246.html,
                    425:          results/180.processed, results/195.processed,
                    426:          results/224.processed, results/auto.p: @try-catch-comment added
                    427:          and used
                    428: 
                    429:        * tests/: 175.html, 256.html, 269.html, 283.html, 341.html,
                    430:          415.html, results/269.processed, results/283.processed,
                    431:          results/auto.p: more tests are updated to prepare for apostrophe
                    432:          escaping in HTML tainting
                    433: 
                    434:        * tests/results/: 181.processed, 294.processed, 296.processed,
                    435:          315.processed, 379.processed, 389.processed, auto.p:
                    436:          $exception.comment printed as-is for whitespace reporting and to
                    437:          prepare for apostrophe escaping in HTML mode
                    438: 
1.190     moko      439: 2024-05-11  moko
                    440: 
                    441:        * tests/: 099.html, 100.html, results/099.processed,
                    442:          results/100.processed: a test for non-UTF-8 filename* added
                    443:          (related to feature #1240)
                    444: 
                    445:        * tests/: 293.html, results/293.processed: tainting modes tests
                    446:          added
                    447: 
                    448:        * tests/results/: 099.processed, 100.processed, 205.processed,
                    449:          309.processed, 310.processed, 419.processed: tests results
                    450:          updated after filename* added (related to feature #1240)
                    451: 
                    452:        * src/: include/pa_common.h, main/pa_request.C: The filename*
                    453:          parameter was added to the Content-Disposition header to conform
                    454:          with RFC 6266, with code provided by Sumo (implements feature
                    455:          #1240)
                    456: 
                    457: 2024-05-10  moko
                    458: 
                    459:        * src/main/pa_http.C: Testing shows that TCP_NODELAY has no
                    460:          positive performance effect in our case
                    461: 
1.189     moko      462: 2024-03-27  moko
                    463: 
                    464:        * src/lib/pcre/pcre_internal.vcproj: pa_config_includes.h used
                    465:          (related to feature #1236)
                    466: 
                    467: 2024-03-15  moko
                    468: 
                    469:        * tests/: 413.html, results/413.processed: test for object still
                    470:          can be used as file parameter (related to bug #1218)
                    471: 
                    472:        * src/types/: pa_vobject.C, pa_vobject.h: regression fix: object
                    473:          still can be used in file context (fixes bug #1218)
                    474: 
                    475: 2024-03-14  moko
                    476: 
                    477:        * src/include/pa_string.h: ArrayString get() null result assert
                    478:          also added (related to bug #1238)
                    479: 
                    480:        * src/types/: pa_vstring.h, pa_vtable.C: VString() optimized;
                    481:          VString::empty() used instead of new VString()
                    482: 
                    483: 2024-03-12  moko
                    484: 
                    485:        * tests/: 379-curl.html, 379.html, results/379-curl.processed,
                    486:          results/379.processed: test added for cookie without value
                    487:          (related to bug #1238)
                    488: 
                    489:        * src/include/pa_string.h: In assertions enabled mode, ArrayString
                    490:          values are now required to be non-null (related to bug #1238)
                    491: 
                    492:        * src/main/pa_http.C: cookies without value are now parsed
                    493:          correctly (fixed bug #1238)
                    494: 
                    495: 2024-03-11  moko
                    496: 
                    497:        * tests/run_parser.sh: for better error reporting
                    498: 
1.188     moko      499: 2023-12-30  moko
                    500: 
                    501:        * tests/: 038.html, results/038.processed: test for atan2 added
                    502: 
                    503: 2023-12-29  moko
                    504: 
                    505:        * src/classes/math.C: atan2(y,x) math function added
                    506: 
1.187     moko      507: 2023-12-14  moko
                    508: 
                    509:        * tests/212.html: pcre2 compatibility (related to feature #1236)
                    510: 
                    511:        * tests/: 425.html, results/425.processed: test for pcre/pcre2
                    512:          exceptions and behavour added (related to feature #1236)
                    513: 
                    514: 2023-12-13  moko
                    515: 
                    516:        * buildall: by default parser is now bundled with pcre2 10.42,
                    517:          --without-pcre2 option added to build with pcre-8.45 (related to
                    518:          feature #1236)
                    519: 
                    520: 2023-12-12  moko
                    521: 
                    522:        * configure.ac, src/include/pa_config_auto.h.in: pcre2 library
                    523:          support added (implements feature #1236)
                    524: 
                    525:        * src/: include/pa_charset.h, include/pa_config_includes.h,
                    526:          lib/pcre/pa_pcre_internal.h, lib/pcre/pa_pcre_valid_utf8.c,
                    527:          main/pa_common.C, main/pa_globals.C, types/pa_vregex.C,
                    528:          types/pa_vregex.h: Adopted patch from Yavor Doganov
                    529:          <yavor@gnu.org> to add pcre2 library support (implements feature
                    530:          #1236)
                    531: 
1.186     moko      532: 2023-11-28  moko
                    533: 
                    534:        * src/include/pa_config_includes.h: warnings war continues
                    535: 
                    536:        * src/include/pa_config_includes.h: warning war
                    537: 
                    538:        * tests/: 424.html, results/424.processed: tests for '+' and '-'
                    539:          number strings, whitespace and sign in exception messages
                    540:          (related to bug #1234)
                    541: 
1.185     moko      542: 2023-11-26  moko
                    543: 
                    544:        * tests/: 274.html, results/224.processed, results/274.processed:
                    545:          tests for date double, int, bool added (related to feature #1235)
                    546: 
                    547:        * src/: classes/date.C, types/pa_vdate.h: double,int,bool methods
                    548:          added for date class (implements feature #1235)
                    549: 
                    550: 2023-11-23  moko
                    551: 
                    552:        * src/: classes/math.C, include/pa_string.h, main/pa_string.C: '+'
                    553:          and '-' strings are no longer can be treated as number 0,
                    554:          exception thrown (fixes bug #1234)
                    555: 
1.184     moko      556: 2023-11-18  moko
                    557: 
                    558:        * src/include/pa_types.h: minor
                    559: 
                    560:        * src/include/pa_dir.h: MAXPATH in UTF-16 chars, not bytes
                    561: 
                    562:        * tests/: 389.html, results/389.processed: error messages for some
                    563:          OS differs a bit, reducing failing tests for them
                    564: 
                    565: 2023-11-17  moko
                    566: 
                    567:        * tests/: 423.html, results/423.processed: test for optional
                    568:          @auto[] inheritance added (related to feature #1233)
                    569: 
                    570:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
                    571:          types/pa_vstateless_class.C: optional @auto[] inheritance
                    572:          implemented if defined with two args (path, class name)
                    573:          (implements feature #1233)
                    574: 
                    575:        * src/: classes/double.C, classes/int.C, classes/math.C,
                    576:          include/pa_random.h, include/pa_types.h, main/pa_common.C,
                    577:          types/pa_vdouble.h, types/pa_vint.h: clip2int,clip2uint added to
                    578:          sync double->int overflow behavour under different architectures
                    579:          (fixes bug #1232)
                    580: 
                    581:        * tests/: 422.html, results/422.processed: int clipping added
                    582: 
                    583: 2023-11-16  moko
                    584: 
                    585:        * tests/: 422.html, results/422.processed: test for int and uint
                    586:          overflow in ^n.format[d/u/x]
                    587: 
                    588:        * src/classes/math.C: bugfix: crc32 should not be negative (under
                    589:          Apple M1 when negative double converts to uint the result is 0)
                    590:          and crc32 should be 32 bits
                    591: 
                    592:        * src/main/pa_common.C: avoid (uint)<negative double> conversion as
                    593:          on Apple M1 it's 0
                    594: 
                    595:        * src/classes/file.C: bugfix: crc32 should not be negative (under
                    596:          Apple M1 when negative double converts to uint the result is 0)
                    597:          and crc32 should be 32 bits
                    598: 
1.183     moko      599: 2023-10-07  moko
                    600: 
                    601:        * src/: main/execute.C, types/pa_vdate.h: volatile added to sync
                    602:          behavour with other OP_NUM_*, related to bug #1230
                    603: 
                    604: 2023-10-06  moko
                    605: 
                    606:        * tests/: 338.html, results/338.processed: test for bug #1230 added
                    607: 
                    608:        * src/: main/execute.C, types/pa_vdate.h: force double operands to
                    609:          be converted to double to avoid 80 bit operations in x87 mode
                    610:          (fixes bug #1230)
                    611: 
                    612: 2023-10-05  moko
                    613: 
                    614:        * tests/420.html: add feature FEATURE_GET_ELEMENT4CALL disabled
                    615:          compatibility
                    616: 
                    617:        * tests/337.html: 2work without FEATURE_GET_ELEMENT4CALL
                    618: 
                    619:        * tests/: 421.html, results/421.processed: test to cover all
                    620:          classes and objects nonexistent method and field exceptions
                    621:          (related to feature #1080 and #1227)
                    622: 
                    623:        * tests/results/: 182.processed, 324.processed: undefined method ->
                    624:          <type> method not found exception (related to feature #1080)
                    625: 
                    626:        * src/types/: pa_vbool.h, pa_vconsole.h, pa_vdouble.h, pa_vint.h,
                    627:          pa_vregex.C, pa_vstateless_object.h: + VSimple_stateless_object,
                    628:          "element can not be fetched from" for them, "field not found" for
                    629:          all other types (related to bug #1227)
                    630: 
                    631: 2023-10-03  moko
                    632: 
                    633:        * src/types/pa_vstateless_class.h: "Source: <method name>, Comment:
                    634:          <type> method not found" exception now thrown for static calls
                    635:          instead of "undefined method" without class name (related to
                    636:          feature #1080)
                    637: 
                    638: 2023-10-02  moko
                    639: 
                    640:        * src/types/: pa_vdouble.h, pa_vhash.h, pa_vint.h, pa_vobject.C,
                    641:          pa_vstateless_object.h, pa_vstring.h, pa_vtable.C: "Source:
                    642:          <method name>, Comment: <type> method not found" exception now
                    643:          thrown for all dynamic objects instead of "undefined method"
                    644:          without class name (implements feature #1080)
                    645: 
1.182     moko      646: 2023-10-01  moko
                    647: 
                    648:        * src/classes/json.C: we don't have a dynamic json object.
                    649: 
                    650: 2023-09-28  moko
                    651: 
                    652:        * tests/: 420.html, results/261.processed, results/420.processed:
                    653:          tests updated after bug #1228 fix reverted
                    654: 
                    655:        * src/types/pa_vstring.h: revering fix for bug #1228, as empty or
                    656:          whitespace string is hash compatible, so we don't want $s.key to
                    657:          return a junction
                    658: 
                    659:        * tests/: 261.html, 420.html, results/261.processed,
                    660:          results/420.processed: test for bug #1227 added, test updated
                    661:          after bug #1228 fixed
                    662: 
                    663:        * src/types/: pa_vdouble.h, pa_vint.h: $int.field and $double.field
                    664:          now throws exception as $non-empty-string.field (fixes bug #1227)
                    665: 
                    666:        * src/types/pa_vstring.h: allow $string.method access (fixes bug
                    667:          #1228)
                    668: 
                    669: 2023-09-26  moko
                    670: 
                    671:        * AUTHORS, aclocal.m4, configure, src/classes/bool.C,
                    672:          src/classes/classes.C, src/classes/classes.awk,
                    673:          src/classes/classes.h, src/classes/curl.C, src/classes/date.C,
                    674:          src/classes/double.C, src/classes/file.C, src/classes/form.C,
                    675:          src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
                    676:          src/classes/inet.C, src/classes/int.C, src/classes/json.C,
                    677:          src/classes/mail.C, src/classes/math.C, src/classes/memcached.C,
                    678:          src/classes/memory.C, src/classes/op.C, src/classes/reflection.C,
                    679:          src/classes/regex.C, src/classes/response.C,
                    680:          src/classes/string.C, src/classes/table.C, src/classes/void.C,
                    681:          src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
                    682:          src/include/pa_array.h, src/include/pa_base64.h,
                    683:          src/include/pa_cache_managers.h, src/include/pa_charset.h,
                    684:          src/include/pa_charsets.h, src/include/pa_common.h,
                    685:          src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
                    686:          src/include/pa_dictionary.h, src/include/pa_dir.h,
                    687:          src/include/pa_exception.h, src/include/pa_exec.h,
                    688:          src/include/pa_globals.h, src/include/pa_hash.h,
                    689:          src/include/pa_http.h, src/include/pa_memory.h,
                    690:          src/include/pa_opcode.h, src/include/pa_operation.h,
                    691:          src/include/pa_os.h, src/include/pa_pool.h,
                    692:          src/include/pa_random.h, src/include/pa_request.h,
                    693:          src/include/pa_request_charsets.h, src/include/pa_request_info.h,
                    694:          src/include/pa_sapi.h, src/include/pa_socks.h,
                    695:          src/include/pa_sql_connection.h,
                    696:          src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
                    697:          src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
                    698:          src/include/pa_stylesheet_manager.h, src/include/pa_symbols.h,
                    699:          src/include/pa_table.h, src/include/pa_threads.h,
                    700:          src/include/pa_types.h, src/include/pa_uue.h,
                    701:          src/include/pa_xml_exception.h, src/include/pa_xml_io.h,
                    702:          src/lib/gd/gif.C, src/lib/gd/gif.h, src/lib/gd/gifio.C,
                    703:          src/lib/ltdl/configure, src/lib/md5/pa_md5.h,
                    704:          src/lib/md5/pa_md5c.c, src/lib/memcached/pa_memcached.C,
                    705:          src/lib/memcached/pa_memcached.h, src/lib/punycode/pa_idna.c,
                    706:          src/lib/punycode/pa_idna.h, src/lib/sdbm/pa_file_io.C,
                    707:          src/lib/sdbm/pa_strings.C, src/lib/smtp/comms.C,
                    708:          src/lib/smtp/smtp.C, src/lib/smtp/smtp.h, src/main/compile.C,
                    709:          src/main/compile.tab.C, src/main/compile.y,
                    710:          src/main/compile_tools.C, src/main/compile_tools.h,
                    711:          src/main/execute.C, src/main/pa_base64.C,
                    712:          src/main/pa_cache_managers.C, src/main/pa_charset.C,
                    713:          src/main/pa_charsets.C, src/main/pa_common.C,
                    714:          src/main/pa_dictionary.C, src/main/pa_dir.C,
                    715:          src/main/pa_exception.C, src/main/pa_exec.C,
                    716:          src/main/pa_globals.C, src/main/pa_http.C, src/main/pa_memory.C,
                    717:          src/main/pa_os.C, src/main/pa_pool.C, src/main/pa_random.C,
                    718:          src/main/pa_request.C, src/main/pa_socks.C,
                    719:          src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
                    720:          src/main/pa_stylesheet_connection.C,
                    721:          src/main/pa_stylesheet_manager.C, src/main/pa_symbols.C,
                    722:          src/main/pa_table.C, src/main/pa_threads.C, src/main/pa_uue.C,
                    723:          src/main/pa_xml_exception.C, src/main/pa_xml_io.C,
                    724:          src/main/untaint.C, src/main/helpers/simple_folding.pl,
                    725:          src/sql/pa_sql_driver.h, src/targets/apache/mod_parser3.c,
                    726:          src/targets/apache/mod_parser3_core.C,
                    727:          src/targets/apache/pa_httpd.h, src/targets/cgi/parser3.C,
                    728:          src/targets/isapi/parser3isapi.C, src/types/pa_junction.h,
                    729:          src/types/pa_method.h, src/types/pa_property.h,
                    730:          src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
                    731:          src/types/pa_vcaller_wrapper.h, src/types/pa_vclass.C,
                    732:          src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
                    733:          src/types/pa_vconsole.h, src/types/pa_vcookie.C,
                    734:          src/types/pa_vcookie.h, src/types/pa_vdate.C,
                    735:          src/types/pa_vdate.h, src/types/pa_vdouble.h,
                    736:          src/types/pa_venv.C, src/types/pa_venv.h, src/types/pa_vfile.C,
                    737:          src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vform.h,
                    738:          src/types/pa_vhash.C, src/types/pa_vhash.h,
                    739:          src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
                    740:          src/types/pa_vimage.C, src/types/pa_vimage.h,
                    741:          src/types/pa_vint.h, src/types/pa_vjunction.C,
                    742:          src/types/pa_vjunction.h, src/types/pa_vmail.C,
                    743:          src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
                    744:          src/types/pa_vmemcached.C, src/types/pa_vmemcached.h,
                    745:          src/types/pa_vmemory.h, src/types/pa_vmethod_frame.C,
                    746:          src/types/pa_vmethod_frame.h, src/types/pa_vobject.C,
                    747:          src/types/pa_vobject.h, src/types/pa_vregex.C,
                    748:          src/types/pa_vregex.h, src/types/pa_vrequest.C,
                    749:          src/types/pa_vrequest.h, src/types/pa_vresponse.C,
                    750:          src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
                    751:          src/types/pa_vstateless_class.h,
                    752:          src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
                    753:          src/types/pa_vstatus.h, src/types/pa_vstring.C,
                    754:          src/types/pa_vstring.h, src/types/pa_vtable.C,
                    755:          src/types/pa_vtable.h, src/types/pa_vvoid.C,
                    756:          src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
                    757:          src/types/pa_vxnode.C, src/types/pa_vxnode.h,
                    758:          src/types/pa_wcontext.C, src/types/pa_wcontext.h,
                    759:          src/types/pa_wwrapper.h: copyright, authors actualized
                    760: 
1.181     moko      761: 2023-08-20  moko
                    762: 
                    763:        * tests/: 141.html, results/141.processed: test for ^math:uuid7[]
                    764:          commited (related to feature #1219)
                    765: 
                    766: 2023-08-16  moko
                    767: 
                    768:        * src/main/pa_random.C: replaced clock precision with monotonicity
                    769:          counter, good for Windows version with low clock frequency
                    770:          (related to feature #1229)
                    771: 
                    772: 2023-08-15  moko
                    773: 
                    774:        * src/: main/pa_random.C, types/pa_vstatus.C: win32 compatibility
                    775:          fixes related to feature #1229
                    776: 
                    777:        * src/: classes/math.C, include/pa_random.h, main/pa_random.C,
                    778:          types/pa_vstatus.C: ^math:uuid7 added, code provided by Sumo
                    779:          (implements feature #1229)
                    780: 
1.180     moko      781: 2023-08-02  moko
                    782: 
                    783:        * tests/: results/417.processed, 417.html: test for empty string
                    784:          match after last char added (related to bug #1224)
                    785: 
                    786:        * src/main/pa_string.C: avoid prestart++ after last char on zero
                    787:          length match (related to bug #1224)
                    788: 
1.179     moko      789: 2022-11-22  moko
                    790: 
                    791:        * tests/: 419.html, results/419.processed: test for L_URI and path
                    792:          removeal from filename added (related to bug #1204)
                    793: 
                    794:        * src/main/pa_request.C: bugfix: pa_filename was lost in 1.394
                    795:          commit (related to bug #1204), L_HTTP_HEADER is incorrect for
                    796:          attribute value, L_URI should be used
                    797: 
1.178     moko      798: 2022-09-21  moko
                    799: 
                    800:        * src/targets/cgi/parser3.C: more clear error messages
                    801: 
                    802:        * src/targets/cgi/parser3.C: only SAPI_Info_CGI can read POST,
                    803:          SAPI_Info will return 0 in read_post and post_size !=
                    804:          content_length will be thrown
                    805: 
1.177     moko      806: 2022-08-23  moko
                    807: 
                    808:        * src/types/pa_vmail.C: .tables addes as .raw contains only last
                    809:          header value
                    810: 
                    811: 2022-08-22  moko
                    812: 
                    813:        * tests/: 418.html, results/418.processed: test for
                    814:          ^hash_a.intersection[hash_b; $.order[self|arg] ] added (related
                    815:          to #1225)
                    816: 
                    817:        * src/classes/hash.C: keep old behavoir by default
                    818: 
                    819:        * src/classes/hash.C: ^hash_a.intersection[hash_b;
                    820:          $.order[self|arg] ] added (implements #1215)
                    821: 
1.176     moko      822: 2022-03-21  moko
                    823: 
                    824:        * src/main/pa_charset.C: bugfix: +static xml_encoding_handlers as
                    825:          xmlInitCharEncodingHandlers is called in libxml static
                    826:          initializers before gc_substitute_memory_management_functions in
                    827:          pa_globals and thus gc may not see reference to our
                    828:          xmlCharEncodingHandler and free it.
                    829: 
1.175     moko      830: 2022-01-26  moko
                    831: 
                    832:        * src/targets/cgi/parser3.C: argv[0] -> parser3_filespec
                    833: 
1.174     moko      834: 2021-12-28  moko
                    835: 
                    836:        * tests/: 417.html, results/417.processed: test for empty string
                    837:          match added (related to bug #1224)
                    838: 
                    839:        * src/main/pa_string.C: empty string match now works (fixes bug
                    840:          #1224)
                    841: 
1.173     moko      842: 2021-12-24  moko
                    843: 
                    844:        * tests/: 415_dir/29.p, results/415.processed: yet another test
                    845: 
                    846: 2021-12-23  moko
                    847: 
                    848:        * src/: classes/table.C, main/pa_request.C: warnings war
                    849: 
                    850:        * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
                    851:          main/pa_http.C, targets/cgi/parser3.C: MSVC SOCKET warnings war
                    852: 
                    853: 2021-12-21  moko
                    854: 
                    855:        * tests/: 416.html, results/416.processed: test for ^break[] in
                    856:          ^hash/table.select[] (related to feature #1222)
                    857: 
                    858:        * src/classes/: hash.C, table.C: ^break[] support for
                    859:          ^hash/table.select[] (implements feature #1222)
                    860: 
1.172     moko      861: 2021-11-30  moko
                    862: 
                    863:        * src/targets/cgi/parser3.C: default sock_ready interval changed to
                    864:          0.5 sec
                    865: 
1.171     moko      866: 2021-11-10  moko
                    867: 
                    868:        * tests/results/415.processed: more syntax errors tests added
                    869: 
                    870:        * tests/415_dir/: 20.p, 21.p, 22.p, 23.p, 24.p, 25.p, 26.p, 27.p,
                    871:          28.p: minor syntax error tests
                    872: 
                    873:        * src/main/pa_exception.C: pa_strdup added for compatibility
                    874: 
                    875:        * src/classes/curl.C: hint to call ^curl:options[
                    876:          $.library[correct.libcurl.so.name] ] added if default load fails.
                    877: 
                    878: 2021-11-09  moko
                    879: 
                    880:        * src/main/compile.y: error message can be on stack
                    881: 
                    882:        * src/main/pa_xml_io.C: strcat replaced with pa_strcat
                    883: 
                    884:        * src/main/pa_charset.C: memcpy is more correct and efficient in
                    885:          this case then strncpy
                    886: 
                    887:        * src/: classes/image.C, types/pa_vrequest.C: pa_strdup used
                    888:          instead of strcpy where possible
                    889: 
                    890:        * src/: classes/op.C, main/pa_exception.C: "%s" format now can be
                    891:          used to avoid MAX_STRING limit in Exception comment
                    892: 
                    893:        * tests/results/415.processed: compiler exceptions are no longer
                    894:          limited to MAX_STRING
                    895: 
                    896:        * src/main/: compile.y, compile_tools.h: Parse_control uses const
                    897:          char * instead of fixed buffer
                    898: 
                    899:        * tests/: 415.html, 415_dir/01.p, 415_dir/02.p, 415_dir/03.p,
                    900:          415_dir/04.p, 415_dir/05.p, 415_dir/06.p, 415_dir/07.p,
                    901:          415_dir/08.p, 415_dir/09.p, 415_dir/10.p, 415_dir/11.p,
                    902:          415_dir/12.p, 415_dir/13.p, 415_dir/14.p, 415_dir/15.p,
                    903:          results/415.processed: tests for parser.compile exceptions added
                    904: 
                    905: 2021-11-08  moko
                    906: 
                    907:        * src/: classes/math.C, include/pa_common.h, main/compile.y,
                    908:          main/pa_common.C, main/pa_dir.C, main/pa_exec.C, main/pa_http.C,
                    909:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                    910:          types/pa_vdate.C: pa_strncpy added ans used to avoid strncpy
                    911:          drawbacks
                    912: 
1.170     moko      913: 2021-11-06  moko
                    914: 
                    915:        * src/classes/inet.C: ^inet:hostname[] added by sumo@ patch
                    916:          (implements feature #1219)
                    917: 
                    918:        * tests/: 414.html, results/414.processed: test for
                    919:          ^hash.rename[from;to] added (related to feature #1144)
                    920: 
                    921: 2021-11-05  moko
                    922: 
                    923:        * src/classes/hash.C: ^hash.rename[ $.from[to] ... ] support added
                    924:          (related to feature #1144)
                    925: 
                    926: 2021-11-04  moko
                    927: 
                    928:        * src/: classes/hash.C, include/pa_hash.h: ^hash.rename[from;to]
                    929:          added (implements feature #1144)
                    930: 
1.169     moko      931: 2021-10-19  moko
                    932: 
                    933:        * tests/: 413.html, results/413.processed: test for hash no longer
                    934:          is accepted as file parameter (related to bug #1218)
                    935: 
                    936:        * src/: classes/curl.C, classes/file.C, classes/image.C,
                    937:          classes/math.C, classes/xdoc.C, types/pa_value.C,
                    938:          types/pa_value.h, types/pa_vfile.h, types/pa_vmail.C: hash no
                    939:          longer is accepted as file parameter (fixes bug #1218)
                    940: 
1.168     moko      941: 2021-07-19  moko
                    942: 
                    943:        * src/targets/cgi/parser3.C: waitpid in file::exec returned "No
                    944:          child processes" when SIGCHLD was SIG_IGN (fixes bug #1215)
                    945: 
1.167     moko      946: 2021-04-16  moko
                    947: 
                    948:        * src/types/pa_vmail.C: message can be null when e-mail is broken,
                    949:          processing it leads to assertions.
                    950: 
1.166     moko      951: 2021-03-25  moko
                    952: 
                    953:        * tests/: 412.html, results/412.processed: test to demonstrate bug
                    954:          #1213
                    955: 
1.165     moko      956: 2021-02-12  moko
                    957: 
                    958:        * tests/: 360.html, results/360.processed, results/363.processed:
                    959:          parser method call in expression mode no longer differs from call
                    960:          in string mode (related to feature #1211)
                    961: 
                    962: 2021-02-11  moko
                    963: 
                    964:        * src/types/pa_vmail.C: mail parsing with Windows line endings
                    965:          fixed (bug #1212)
                    966: 
                    967:        * src/types/pa_vmethod_frame.h: no more difference inside @test[]
                    968:          when called $v[^test[]] vs $v(^test[]), numbers are converted to
                    969:          strings in both calls (implements feature #1211)
                    970: 
1.164     moko      971: 2021-01-28  moko
                    972: 
                    973:        * buildall, etc/auto.p.in: to remove last patch in debian package
                    974: 
                    975:        * configure, configure.ac, src/include/pa_version.h: 3.4.6 ->
                    976:          3.4.7b
                    977: 
1.162     moko      978: 2021-01-21  moko
                    979: 
                    980:        * src/main/pa_http.C: no alarm() in file::load when web server mode
                    981:          is MULTITHREADED
                    982: 
1.157     moko      983: 2021-01-20  moko
                    984: 
1.161     moko      985:        * src/targets/apache/mod_parser3.c: it is more correct to recommend
                    986:          'a2enmod mpm_prefork'
                    987: 
1.160     moko      988:        * src/targets/apache/mod_parser3.c: prefork name is now
                    989:          'libapache2-mpm-itk'
                    990: 
                    991:        * src/targets/apache/mod_parser3_core.C: last regular malloc
                    992:          removed
                    993: 
1.159     moko      994:        * src/targets/isapi/Makefile.am: -pa_threads.C
                    995: 
1.158     moko      996:        * configure, configure.ac, src/include/pa_version.h: 3.4.6rc ->
                    997:          3.4.6
                    998: 
1.157     moko      999:        * etc/auto.p.in: post_max_size 10Mb -> 64Mb. It's 2021 year now. :)
                   1000: 
                   1001:        * etc/auto.p.in: @config[result] added to simplify $cfg change in
                   1002:          /httpd.p
                   1003: 
                   1004:        * etc/auto.p.in: httpd fine-tune: + @OPTIONS partial, +
                   1005:          ^use[/httpd.p] + optional ^preprocess[] (related to feature
                   1006:          #1203)
                   1007: 
                   1008: 2021-01-19  moko
                   1009: 
                   1010:        * buildall: --disable-parallel-mark added to avoid "number of
                   1011:          processors" threads creation for heap marking as it conflicts
                   1012:          with RLimitNProc in apache (on Linux setrlimit RLIMIT_NPROC
                   1013:          limits threads)
                   1014: 
1.156     moko     1015: 2021-01-16  moko
                   1016: 
                   1017:        * src/: classes/memory.C, include/pa_memory.h, lib/gc/include/gc.h,
                   1018:          main/pa_globals.C, main/pa_memory.C,
                   1019:          targets/apache/mod_parser3_core.C, targets/isapi/parser3isapi.C,
                   1020:          types/pa_vhashfile.C: ^memory:auto-compact(N) added (implements
                   1021:          feature #1209)
                   1022: 
                   1023: 2021-01-15  moko
                   1024: 
                   1025:        * configure, configure.ac, src/include/pa_version.h: 3.4.6b ->
                   1026:          3.4.6rc
                   1027: 
                   1028:        * src/classes/json.C: get_delim added for delimiter caching (10%
                   1029:          faster on large json)
                   1030: 
                   1031: 2021-01-14  moko
                   1032: 
                   1033:        * operators.txt: updated with 3.4.6 changes
                   1034: 
                   1035:        * tests/results/224.processed: test result modified after
                   1036:          today(shift) implemented
                   1037: 
                   1038:        * tests/: 407.html, results/407.processed: test for ^hash.select
                   1039:          option $.default(bool) added (related to feature #1172)
                   1040: 
                   1041:        * src/classes/hash.C: ^hash.select option $.default(bool) added
                   1042:          (related to feature #1172)
                   1043: 
                   1044:        * tests/: 141.html, results/141.processed: test modified for
                   1045:          feature #1185.
                   1046: 
                   1047:        * src/: classes/math.C, include/pa_random.h, main/pa_random.C:
                   1048:          ^math:uuid options $.lower(bool) $.solid(bool), ^math:uid64
                   1049:          options $.lower(bool) (implements feature #1185)
                   1050: 
                   1051: 2021-01-11  moko
                   1052: 
                   1053:        * src/classes/date.C: ^date::today(N) by gz@ (implements feature
                   1054:          #1192)
                   1055: 
                   1056:        * tests/: 411.html, results/411.processed: test for ^date::today(N)
                   1057:          added (related to feature #1192)
                   1058: 
1.155     moko     1059: 2021-01-05  moko
                   1060: 
                   1061:        * tests/: 270.html, results/270.processed: test modified to work
                   1062:          under Windows
                   1063: 
                   1064:        * tests/: 390.html, 395.html, results/395.processed: tests updated
                   1065:          4 windows
                   1066: 
                   1067:        * tests/: 410.html, results/410.processed: test for
                   1068:          $CLASS-GETTER-PROTECTED(false) added
                   1069: 
                   1070: 2021-01-04  moko
                   1071: 
                   1072:        * tests/: 409.html, results/409.processed, results/auto.p: test for
                   1073:          $MAIN:LOCALS(true) added
                   1074: 
1.154     moko     1075: 2021-01-03  moko
                   1076: 
                   1077:        * src/: main/pa_http.C, main/pa_request.C, types/pa_vclass.C,
                   1078:          types/pa_vclass.h, types/pa_vstateless_class.C,
                   1079:          types/pa_vstateless_class.h: @conf[] +CLASS-GETTER-PROTECTED,
                   1080:          +LOCALS. $main -> $MAIN in exception texts (implements feature
                   1081:          #1207)
                   1082: 
                   1083: 2021-01-02  moko
                   1084: 
                   1085:        * etc/auto.p.in: minor
                   1086: 
                   1087:        * src/main/pa_request.C: sending headers only after opening file to
                   1088:          allow error reporting if file was not opened (foreign group,
                   1089:          etc).
                   1090: 
                   1091: 2020-12-31  moko
                   1092: 
                   1093:        * src/: include/pa_request.h, main/pa_request.C,
                   1094:          targets/cgi/parser3.C: ^httpd-main[] -> ^httpd:main[]
                   1095: 
                   1096:        * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
                   1097:          main/pa_request.C: get_class_ref added and used
                   1098: 
                   1099:        * etc/auto.p.in: @CLASS httpd added
                   1100: 
                   1101:        * etc/auto.p.in: @auto[] is now first
                   1102: 
                   1103: 2020-12-30  moko
                   1104: 
                   1105:        * tests/: 408.html, results/408.processed: test for bug #1166
                   1106:          (windows only) added
                   1107: 
                   1108:        * src/main/pa_common.C: create_dir_for_file should not create dir
                   1109:          for trailing / (fixes bug #1166)
                   1110: 
                   1111:        * tests/: 341.html, results/341.processed: tests for
                   1112:          ^nameless_table.hash[] added (related to feature #1138)
                   1113: 
                   1114:        * src/classes/table.C: ^nameless_table.hash[0;1] now supported
                   1115:          (implements feature #1138), extra fields in named tables no
                   1116:          longer ignored (implements feature #1138)
                   1117: 
                   1118:        * tests/results/390.processed: updated after exception text change
                   1119: 
                   1120: 2020-12-29  moko
                   1121: 
                   1122:        * tests/: 407.html, results/407.processed: +$._default check
                   1123: 
                   1124:        * src/classes/hash.C: keep $_default in ^hash.reverse[]
                   1125: 
                   1126:        * tests/: 407.html, results/407.processed: test for ^hash.select[]
                   1127:          and ^hash.reverse[] added (releated to feature #1172)
                   1128: 
                   1129:        * src/classes/hash.C:
                   1130:          ^hash.select[key;value](bool-condition)[options hash] +
                   1131:          ^hash.reverse[] added (implements feature #1172)
                   1132: 
                   1133:        * src/types/pa_vtable.h: warning war
                   1134: 
                   1135:        * src/include/pa_config_fixed.h: win32 fix
                   1136: 
1.153     moko     1137: 2020-12-27  moko
                   1138: 
                   1139:        * tests/: 406.html, results/406.processed: test results updated
                   1140: 
                   1141:        * src/: classes/table.C, main/pa_request.C, types/pa_vmail.C,
                   1142:          types/pa_vmemcached.C: fine tuning in ^table.rename[], minor
                   1143:          spelling
                   1144: 
                   1145: 2020-12-26  moko
                   1146: 
                   1147:        * tests/: 406.html, results/406.processed: tests for
                   1148:          ^table.rename[] added (related to feature #1148)
                   1149: 
                   1150:        * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
                   1151:          ^table.rename[column name from;column name to], ^table.rename[
                   1152:          $.[column name from][column name to] ... ] added (implements
                   1153:          feature #1148)
                   1154: 
                   1155: 2020-12-25  moko
                   1156: 
                   1157:        * src/: include/pa_request_info.h, targets/cgi/parser3.C:
                   1158:          request_info now on stack to avoid yet another THREAD_LOCAL
                   1159:          memory deallocation issue (now with cookies), explained in #1203
                   1160: 
                   1161:        * src/types/pa_vcookie.C: fields should be inited
                   1162: 
                   1163: 2020-12-24  moko
                   1164: 
                   1165:        * src/include/pa_stylesheet_connection.h: looks like
                   1166:          xsltFreeStylesheet leads to memory double-free. If so, it's for
                   1167:          sure libxml bug, but we have GC anyway, so we just remove this
                   1168:          call and see...
                   1169: 
                   1170:          * thread #1, name = 'parser.parser3.cgi', stop reason = signal
                   1171:          SIGABRT   * frame #0: 0x0000000801ab50fa libc.so.7`__sys_thr_kill
                   1172:          + 10     frame #2: 0x0000000801ab5039 libc.so.7`abort at
                   1173:          abort.c:65:8     frame #3: 0x00000000004da663
                   1174:          parser.parser3.cgi`GC_freehblk(hbp=<unavailable>) at
                   1175:          allchblk.c:878:9     frame #4: 0x00000000004cb8c4
                   1176:          parser.parser3.cgi`GC_free(p=0x0000000808b34000) at
                   1177:          malloc.c:617:9     frame #5: 0x0000000000577f0c
                   1178:          parser.parser3.cgi`xmlHashFree(table=0x0000000806991a80,
                   1179:          f=<unavailable>) at hash.c:356:2     frame #6: 0x000000000051a7c2
                   1180:          parser.parser3.cgi`xsltFreeTemplateHashes + 50     frame #7:
                   1181:          0x000000000050cfac parser.parser3.cgi`xsltFreeStylesheet + 124
                   1182:           frame #8: 0x000000000050d35c
                   1183:          parser.parser3.cgi`xsltFreeStylesheetList + 44     frame #9:
                   1184:          0x000000000050d1fa parser.parser3.cgi`xsltFreeStylesheet + 714
                   1185:           frame #10: 0x00000000004436e5
                   1186:          parser.parser3.cgi`Stylesheet_manager::maybe_expire_cache()
                   1187:          [inlined]
                   1188:          Stylesheet_connection::disconnect(this=0x0000000804676c80) at
                   1189:          pa_stylesheet_connection.h:62:3
                   1190: 
                   1191: 2020-12-23  moko
                   1192: 
                   1193:        * src/classes/image.C: ^image::measure[; $.video() ] option added
                   1194: 
                   1195:        * tests/: 395.html, 395_dir/4.mp4, results/395.processed: test
                   1196:          ^image::measure[; $.video(true) ] added
                   1197: 
                   1198:        * src/main/pa_exec.C: not cleared automatically in multithreaded
                   1199:          httpd mode for unknown reasons
                   1200: 
                   1201: 2020-12-22  moko
                   1202: 
                   1203:        * src/targets/cgi/parser3.C: added by PAF in rev 201 to "write to
                   1204:          error_log uri of currently processed document", but never used
                   1205:          and conflicts with how libgc stops threads on FreeBSD (#define
                   1206:          SIG_SUSPEND SIGUSR1), thus removed.
                   1207: 
                   1208: 2020-12-21  moko
                   1209: 
                   1210:        * src/main/pa_request.C: +comment
                   1211: 
1.151     moko     1212: 2020-12-20  moko
                   1213: 
1.152     moko     1214:        * src/: include/pa_common.h, include/pa_memory.h, main/pa_common.C:
                   1215:          it is more safe to have versions of pa_strdup with one and two
                   1216:          arguments, as helper_length=0 not always mean that strlen()
                   1217:          should be called, but means zero.
                   1218: 
                   1219:        * src/targets/isapi/parser3isapi.C: minor
                   1220: 
                   1221:        * src/main/pa_http.C: +valid_http_method
                   1222: 
1.151     moko     1223:        * src/: include/pa_http.h, main/pa_http.C,
                   1224:          targets/cgi/pa_sapi_info.h: SERVER_PORT now available
                   1225: 
                   1226: 2020-12-17  moko
                   1227: 
                   1228:        * tests/: 405.html, results/405.processed: test for split by regex
                   1229:          added (related to feature #1160)
                   1230: 
                   1231:        * src/classes/string.C: split by regex implemented (feature #1160)
                   1232: 
                   1233:        * src/classes/string.C: minor
                   1234: 
                   1235:        * tests/: 404.html, results/404.processed: test for whitespace
                   1236:          string is now OK for table argument (related to feature #1169)
                   1237: 
                   1238:        * src/: classes/image.C, classes/string.C, classes/table.C,
                   1239:          types/pa_vmethod_frame.C: whitespace string is now OK for table
                   1240:          argument (as with hash) (implements feature #1169)
                   1241: 
                   1242:        * src/classes/op.C: Exception.add_comment used to avoid MAX_LENGTH
                   1243:          limit for comment (fixes bug #1102)
                   1244: 
                   1245:        * src/targets/cgi/parser3.C: +HAVE_TLS check
                   1246: 
                   1247:        * src/main/pa_http.C: no HAVE_TLS -> no multithreads mode
                   1248: 
                   1249:        * src/include/pa_config_includes.h: HAVE_TLS used
                   1250: 
                   1251:        * configure.ac: +TLS check
                   1252: 
                   1253:        * src/main/pa_http.C: content logging added
                   1254: 
                   1255:        * src/targets/cgi/: pa_sapi_info.h, parser3.C:
                   1256:          clear_response_headers added
                   1257: 
                   1258: 2020-12-16  moko
                   1259: 
                   1260:        * buildall: as we now use threads, libatomic_ops still required for
                   1261:          some OS.
                   1262: 
                   1263:        * src/main/pa_request.C: whitespace
                   1264: 
                   1265:        * src/: include/pa_request.h, main/pa_request.C:
                   1266:          Request::Exception_trace::table extracted and used
                   1267: 
                   1268:        * src/main/pa_request.C: moving output_result call outside of try
                   1269:          as network exceptions should not be handled by parser code
                   1270: 
                   1271:        * src/: include/pa_http.h, main/pa_http.C: HTTPD_DEBUG added for
                   1272:          logging network exchange
                   1273: 
                   1274:        * src/targets/cgi/: pa_sapi_info.h, parser3.C: do not send error
                   1275:          via network if it was network write error.
                   1276: 
                   1277:        * src/targets/cgi/parser3.C: log -> pa_log
                   1278: 
                   1279:        * src/targets/cgi/parser3.C: pa_get_thread_id() used for logging
                   1280: 
                   1281:        * src/main/pa_threads.C: getpid() if no gettid() found
                   1282: 
                   1283:        * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
                   1284:          we need to ignore "void" connections from browsers (browsers open
                   1285:          connections in advance and they will be empty if user does not
                   1286:          request more pages)
                   1287: 
                   1288: 2020-12-15  moko
                   1289: 
                   1290:        * src/targets/cgi/parser3.C: avoid previous uri in logs
                   1291: 
                   1292:        * src/targets/cgi/: pa_sapi_info.h, parser3.C: global ::request and
                   1293:          RequestController not needed in httpd mode
                   1294: 
                   1295:        * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
                   1296:          classes/classes.h, classes/curl.C, classes/date.C,
                   1297:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   1298:          classes/hashfile.C, classes/image.C, classes/inet.C,
                   1299:          classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
                   1300:          classes/memcached.C, classes/memory.C, classes/op.C,
                   1301:          classes/reflection.C, classes/regex.C, classes/response.C,
                   1302:          classes/string.C, classes/table.C, classes/void.C,
                   1303:          classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   1304:          include/pa_array.h, include/pa_base64.h,
                   1305:          include/pa_cache_managers.h, include/pa_charset.h,
                   1306:          include/pa_charsets.h, include/pa_common.h,
                   1307:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   1308:          include/pa_dictionary.h, include/pa_dir.h,
                   1309:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   1310:          include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
                   1311:          include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
                   1312:          include/pa_pool.h, include/pa_random.h, include/pa_request.h,
                   1313:          include/pa_request_charsets.h, include/pa_request_info.h,
                   1314:          include/pa_sapi.h, include/pa_socks.h,
                   1315:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   1316:          include/pa_stack.h, include/pa_string.h,
                   1317:          include/pa_stylesheet_connection.h,
                   1318:          include/pa_stylesheet_manager.h, include/pa_symbols.h,
                   1319:          include/pa_table.h, include/pa_threads.h, include/pa_types.h,
                   1320:          include/pa_uue.h, include/pa_xml_exception.h,
                   1321:          include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
                   1322:          lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
                   1323:          lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
                   1324:          lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
                   1325:          lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
                   1326:          lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
                   1327:          main/compile.tab.C, main/compile.y, main/compile_tools.C,
                   1328:          main/compile_tools.h, main/execute.C, main/pa_base64.C,
                   1329:          main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
                   1330:          main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
                   1331:          main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
                   1332:          main/pa_http.C, main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
                   1333:          main/pa_random.C, main/pa_request.C, main/pa_socks.C,
                   1334:          main/pa_sql_driver_manager.C, main/pa_string.C,
                   1335:          main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
                   1336:          main/pa_symbols.C, main/pa_table.C, main/pa_threads.C,
                   1337:          main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
                   1338:          main/untaint.C, sql/pa_sql_driver.h,
                   1339:          targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
                   1340:          targets/apache/pa_httpd.h, targets/cgi/parser3.C,
                   1341:          targets/isapi/parser3isapi.C, types/pa_junction.h,
                   1342:          types/pa_method.h, types/pa_property.h, types/pa_value.C,
                   1343:          types/pa_value.h, types/pa_vbool.h, types/pa_vcaller_wrapper.h,
                   1344:          types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
                   1345:          types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
                   1346:          types/pa_vdate.C, types/pa_vdate.h, types/pa_vdouble.h,
                   1347:          types/pa_venv.C, types/pa_venv.h, types/pa_vfile.C,
                   1348:          types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
                   1349:          types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.C,
                   1350:          types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
                   1351:          types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
                   1352:          types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
                   1353:          types/pa_vmath.h, types/pa_vmemcached.C, types/pa_vmemcached.h,
                   1354:          types/pa_vmemory.h, types/pa_vmethod_frame.C,
                   1355:          types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
                   1356:          types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
                   1357:          types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
                   1358:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   1359:          types/pa_vstateless_object.h, types/pa_vstatus.C,
                   1360:          types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
                   1361:          types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
                   1362:          types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   1363:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
                   1364:          types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
                   1365: 
                   1366:        * src/main/pa_request.C: old compilers support
                   1367: 
                   1368:        * tests/: 362.html, results/362.processed: test updated after
                   1369:          changes after upgrade to libxml2-2.9.9 were made (related to bug
                   1370:          #1108)
                   1371: 
                   1372:        * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltStylesheet_auto_ptr
                   1373:          removed, as xsltFreeStylesheet has side effects on original doc.
                   1374:          compiled stylesheet no longer cached as with libxml2-2.9.9 it was
                   1375:          not updated after xdoc modification (part 3 of test 362).
                   1376:          (related to bug #1108)
                   1377: 
                   1378:        * src/targets/isapi/parser3isapi.C: +pa_strcat
                   1379: 
                   1380:        * src/: classes/memory.C, include/pa_memory.h,
                   1381:          targets/apache/mod_parser3_core.C, targets/isapi/parser3isapi.C:
                   1382:          PA_GC_GCOLLECT used
                   1383: 
                   1384:        * src/include/pa_memory.h: +PA_GC_COLLECT
                   1385: 
                   1386:        * src/targets/cgi/parser3.C: msvs support fixes
                   1387: 
                   1388:        * src/lib/gc/include/gc.h: more cleanup
                   1389: 
                   1390:        * src/: include/pa_threads.h, main/pa_threads.C: win32 fixes
                   1391: 
                   1392:        * src/: include/pa_http.h, main/pa_http.C, main/pa_request.C,
                   1393:          targets/cgi/parser3.C: $main:HTTPD.mode implemented
                   1394: 
                   1395:        * src/include/pa_config_includes.h: +HAVE_PTHREAD_H
                   1396: 
                   1397:        * configure.ac: pthread.h added to checked headers
                   1398: 
                   1399:        * src/classes/table.C: string stream is back :)
                   1400: 
                   1401:        * src/classes/memory.C: GC_generate_random_backtrace no longer
                   1402:          exists
                   1403: 
                   1404:        * src/main/pa_globals.C: GC_dont_gc replaced
                   1405: 
                   1406:        * src/lib/gc/include/gc.h: major cleanup, only used functions are
                   1407:          left to simplify adding new functions.  depricated GC_dont_gc
                   1408:          replaced with GC_disable and GC_enable calls.
                   1409: 
                   1410:        * src/lib/cord/: cordxtra.c, include/cord.h: cleanup:
                   1411:          CORD_from_file* not used and thus removed
                   1412: 
                   1413:        * src/lib/gc/include/gc_allocator.h: minor cleanup
                   1414: 
                   1415: 2020-12-14  moko
                   1416: 
                   1417:        * src/classes/: curl.C, memory.C, table.C: every TLS should be
                   1418:          referenced elsewhere, or GC will collect it.
                   1419: 
                   1420:        * src/: include/pa_xml_io.h, main/pa_stylesheet_connection.C,
                   1421:          main/pa_xml_io.C: bugfix: TLS variables should be referenced
                   1422:          elsewhere, or GC will collect them (and we'll get GPF in
                   1423:          multithreaded enviroment).  May be it can be also fixed by some
                   1424:          GC call, not sure. But this fix costs nothing (but hours of
                   1425:          debugging to find the issue :).
                   1426: 
1.150     moko     1427: 2020-12-11  moko
                   1428: 
                   1429:        * configure.ac: gettid() check added
                   1430: 
                   1431:        * src/main/pa_threads.C: HAVE_GETTID used
                   1432: 
                   1433:        * src/include/pa_config_auto.h.in: +HAVE_GETTID
                   1434: 
                   1435:        * src/: include/pa_threads.h, main/pa_threads.C: now unified
                   1436:          version for isapi/cgi/apache
                   1437: 
                   1438:        * buildall: threads are now required.
                   1439: 
                   1440:        * src/: targets/apache/ApacheModuleParser3Core.vcproj,
                   1441:          targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
                   1442:          main/main.vcproj: pa_threads.C moved to main
                   1443: 
                   1444:        * src/targets/: apache/pa_threads.C, cgi/pa_threads.C,
                   1445:          isapi/pa_threads.C: pa_threads.C moved to main
                   1446: 
                   1447:        * src/: main/Makefile.am, targets/cgi/Makefile.am,
                   1448:          targets/apache/Makefile.am: pa_threads.C moved to main
                   1449: 
                   1450:        * src/classes/xdoc.C: Stylesheet_connection_ptr changed a bit
                   1451: 
                   1452:        * src/: include/pa_stylesheet_connection.h,
                   1453:          main/pa_stylesheet_manager.C: Stylesheet_connection_ptr simplfied
                   1454:          and weird GPF in multithreaded httpd is gone
                   1455: 
                   1456:        * src/include/: pa_stylesheet_connection.h,
                   1457:          pa_sql_driver_manager.h: whitespace
                   1458: 
                   1459:        * src/main/pa_sql_driver_manager.C: timeout 60 sec -> 10 sec
                   1460: 
                   1461:        * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
                   1462:          main/pa_stylesheet_manager.C: whitespace, warning war
                   1463: 
                   1464:        * src/: include/pa_threads.h, targets/apache/pa_threads.C,
                   1465:          targets/cgi/pa_threads.C, targets/isapi/pa_threads.C:
                   1466:          parser_multithreaded never used
                   1467: 
                   1468:        * src/main/pa_http.C: no ALARM in MULTITHREADED httpd server mode
                   1469: 
                   1470: 2020-12-10  moko
                   1471: 
                   1472:        * src/: include/pa_config_includes.h, include/pa_http.h,
                   1473:          main/pa_http.C, targets/cgi/parser3.C: initial support for
                   1474:          MULTITHREADED and PARALLEL httpd server modes
                   1475: 
                   1476:        * src/main/pa_globals.C: GC_java_finalization is depricated
                   1477: 
                   1478: 2020-12-09  moko
                   1479: 
                   1480:        * etc/auto.p.in: + @httpd-main
                   1481: 
                   1482:        * src/: include/pa_common.h, main/pa_request.C,
                   1483:          targets/cgi/pa_sapi_info.h: Range Requests (rfc7233) now really
                   1484:          work
                   1485: 
                   1486:        * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
                   1487:          slow file_read_binary no longer used, send_range added
                   1488: 
                   1489: 2020-12-08  moko
                   1490: 
                   1491:        * src/main/pa_request.C: >4Gb support
                   1492: 
                   1493:        * src/targets/cgi/parser3.C: msvc warning war
                   1494: 
                   1495:        * src/: include/pa_config_includes.h, main/pa_http.C,
                   1496:          main/pa_request.C: msvc warnings war
                   1497: 
                   1498:        * src/classes/image.C: warning war
                   1499: 
                   1500:        * src/classes/table.C: MSVC warning war
                   1501: 
                   1502:        * src/targets/cgi/parser3.C: msvc warnings war
                   1503: 
                   1504:        * src/targets/apache/mod_parser3_core.C: SYSTEM_CONFIG_FILE support
                   1505:          added
                   1506: 
1.149     moko     1507: 2020-12-07  moko
                   1508: 
1.150     moko     1509:        * configure.ac: SYSTEM_LOG_FILE no longer required as cheat used to
                   1510:          avoid logging beside system-wide auto.p
                   1511: 
                   1512:        * src/targets/cgi/parser3.C: SYSTEM_CONFIG_FILE used
                   1513: 
                   1514:        * configure, configure.ac, src/include/pa_config_auto.h.in:
                   1515:          configure options added:
                   1516: 
                   1517:          --with-system-cfg=FILE  to specify system-wide auto.p
                   1518:          --with-system-log=FILE  to specify system-wide parser3.log
                   1519: 
                   1520:        * Makefile.am: bin no longer exists
                   1521: 
                   1522:        * configure, configure.ac: auto.p moved to etc to simplify debian
                   1523:          package
                   1524: 
                   1525:        * buildall: auto.p and parser3.charsets moved to their default
                   1526:          location after install
                   1527: 
                   1528:        * etc/: Makefile.am, auto.p.in: auto.p moved to etc directory
                   1529: 
                   1530:        * aclocal.m4, configure: automake 1.15 -> 1.16.1
                   1531: 
1.149     moko     1532:        * src/targets/cgi/parser3.C: locate_config call returned to
                   1533:          original place as it requires pa_thread_request() under Windows
                   1534: 
                   1535:        * src/targets/cgi/parser3.C: renaming
                   1536: 
                   1537: 2020-12-06  moko
                   1538: 
                   1539:        * src/: main/pa_globals.C, targets/cgi/parser3.C: thread request
                   1540:          check added
                   1541: 
                   1542: 2020-12-04  moko
                   1543: 
                   1544:        * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
                   1545:          main/pa_request.C: unified uint64_t lseek implemented to support
                   1546:          >4Gb files under x86, including Windows
                   1547: 
                   1548: 2020-12-02  moko
                   1549: 
                   1550:        * src/main/pa_common.C: minor bugfix: $.limit() should be checked
                   1551:          with max_file_size
                   1552: 
                   1553:        * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
                   1554:          support for processing files sized >4Gb on 32 bit planforms
                   1555: 
                   1556:        * tests/399.html: file moved
                   1557: 
                   1558:        * src/: include/pa_string.h, main/pa_string.C: long long -> int64_t
                   1559: 
                   1560:        * src/targets/cgi/pa_sapi_info.h: warning war
                   1561: 
                   1562:        * src/: main/pa_http.C, targets/isapi/parser3isapi.C: windows
                   1563:          warning war
                   1564: 
                   1565: 2020-12-01  moko
                   1566: 
                   1567:        * src/classes/image.C: mp4 extended size (>4Gb) support added
                   1568: 
                   1569:        * src/classes/image.C: for "size not found" exception to be shown
                   1570:          if size not found until eof
                   1571: 
                   1572:        * src/classes/image.C: long -> off_t (which is 64 bits even on 32
                   1573:          bit linux)
                   1574: 
                   1575:        * src/classes/image.C: ^image::measure[] now supports mp4 (feature
                   1576:          #1188)
                   1577: 
                   1578: 2020-11-30  moko
                   1579: 
                   1580:        * src/classes/image.C: definitions moved closer to code
                   1581: 
                   1582:        * tests/: 395.bmp, 395.html, 396.html, 396.tiff, 395_dir/1.bmp,
                   1583:          395_dir/2.tiff, 395_dir/3_VP8.webp, 395_dir/3_VP8L.webp,
                   1584:          395_dir/3_VP8X.webp, results/395.processed,
                   1585:          results/396.processed: tests for ^image::measure[] .webp support
                   1586:          added, all image files moved into one directory (related to
                   1587:          feature #1188)
                   1588: 
                   1589:        * src/classes/image.C: ^image::measure[] now supports webp (feature
                   1590:          #1188)
                   1591: 
1.148     moko     1592: 2020-11-29  moko
                   1593: 
                   1594:        * src/main/pa_request.C: CONF_OPTION added to unify @conf options
                   1595:          processing, unnessesary defines removed
                   1596: 
                   1597: 2020-11-24  moko
                   1598: 
                   1599:        * tests/results/: 099.processed, 100.processed, 205.processed,
                   1600:          309.processed, 310.processed: Content-Disposition: inline
                   1601:          returned
                   1602: 
                   1603:        * tests/: 099.html, 237.html, 403.html, outputs/403.processed,
                   1604:          results/auto.p: test for $response:body[ $.file[<file>] $.name[]
                   1605:          ] added (related to bug #1204)
                   1606: 
                   1607:        * src/main/pa_request.C: $response:body[ $file[<file>.ext] $.name[]
                   1608:          ] supported to avoid Content-Disposition: inline;
                   1609:          filename="<file>.ext" but still set Content-Type for ext (related
                   1610:          to bug #1204)
                   1611: 
1.147     moko     1612: 2020-11-22  moko
                   1613: 
                   1614:        * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
                   1615:          types/pa_vfile.C: pa_filename added to avoid useless rsplit
                   1616: 
                   1617:        * src/main/pa_request.C: content_disposition_inline returned.
                   1618: 
                   1619: 2020-11-17  moko
                   1620: 
                   1621:        * src/main/pa_request.C: empty main method name support
                   1622: 
                   1623:        * src/: main/pa_common.C, targets/cgi/parser3.C: httpd
                   1624:          config_handler added, stdout flush added.
                   1625: 
                   1626: 2020-11-16  moko
                   1627: 
                   1628:        * src/targets/cgi/parser3.C: filespec_4log added, pa_strcat used.
                   1629: 
                   1630:        * tests/results/: 099.processed, 205.processed, 237.processed,
                   1631:          309.processed, 310.processed: Content-Disposition: inline is not
                   1632:          required and should not contain filename="<name>"
                   1633: 
                   1634:        * src/: include/pa_common.h, main/pa_common.C, main/pa_exception.C,
                   1635:          targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
                   1636:          targets/isapi/parser3isapi.C: pa_strcat implemented and used
                   1637: 
1.146     moko     1638: 2020-11-14  moko
                   1639: 
                   1640:        * src/targets/cgi/parser3.C: spelling
                   1641: 
                   1642:        * src/targets/cgi/parser3.C: renaming
                   1643: 
                   1644:        * src/targets/cgi/parser3.C: args_skip removed, locate_config
                   1645:          relocated
                   1646: 
                   1647:        * src/targets/cgi/parser3.C: execution_canceled was for sigpipe
                   1648:          before request processing, which is weired
                   1649: 
                   1650: 2020-11-13  moko
                   1651: 
                   1652:        * src/main/pa_http.C: pa_recv added with timeout support, thus read
                   1653:          copied in httpd.
                   1654: 
                   1655: 2020-11-12  moko
                   1656: 
                   1657:        * src/main/pa_http.C: ALARM code unified to be used in httpd
                   1658: 
                   1659:        * src/: include/pa_request.h, main/pa_request.C,
                   1660:          targets/cgi/pa_sapi_info.h: pa_httpd_timeout added
                   1661: 
                   1662:        * src/main/pa_http.C: URI validation added
                   1663: 
                   1664:        * src/targets/cgi/parser3.C: filespec_to_process now variable,
                   1665:          can't be empty but can be null.  httpd-main is now main method
                   1666:          name for httpd mode
                   1667: 
                   1668: 2020-11-11  moko
                   1669: 
                   1670:        * src/main/pa_request.C: path_translated can be null in httpd mode
                   1671: 
                   1672:        * src/: classes/curl.C, classes/file.C, classes/hashfile.C,
                   1673:          classes/image.C, classes/op.C, classes/string.C, classes/table.C,
                   1674:          classes/xdoc.C, include/pa_request.h, main/execute.C,
                   1675:          main/pa_request.C: r.absolute -> r.full_disk_path
                   1676: 
                   1677:        * src/targets/cgi/parser3.C: if filename to process is not
                   1678:          specified, auto.p should be present.
                   1679: 
1.145     moko     1680: 2020-11-03  moko
                   1681: 
                   1682:        * src/: classes/op.C, include/pa_request.h: unused argument removed
                   1683: 
                   1684:        * src/main/pa_request.C: content_disposition_inline is the default,
                   1685:          not required.
                   1686: 
1.144     moko     1687: 2020-10-29  moko
                   1688: 
                   1689:        * src/: classes/op.C, include/pa_request.h, main/pa_request.C:
                   1690:          ^use[file; $.main(true) ] implemented for auto.p processing and
                   1691:          path_translated changing to correct relative files path
                   1692:          calculation in httpd mode
                   1693: 
                   1694:        * src/: include/pa_request.h, main/pa_request.C:
                   1695:          fail_on_read_problem removed, as it allways true, as if should
                   1696:          be.
                   1697: 
                   1698:        * src/: include/pa_request.h, main/pa_request.C,
                   1699:          targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
                   1700:          targets/isapi/parser3isapi.C: clearing config_filespec when
                   1701:          config was not found, thus flag not required and removed.
                   1702: 
                   1703: 2020-10-28  moko
                   1704: 
                   1705:        * tests/: 402.html, results/402.processed: error reporting test
                   1706: 
                   1707:        * src/main/execute.C: better error reporting when
                   1708:          $result[^hash::create[]] in @main.
                   1709: 
                   1710:        * src/main/: execute.C, pa_request.C: frame.result() should be used
                   1711:          + minor optimization
                   1712: 
                   1713:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
                   1714:          main/pa_xml_io.C: execute_*_method simplified and unified
                   1715: 
                   1716: 2020-10-27  moko
                   1717: 
                   1718:        * tests/: 306.html, results/306.processed: a bit more testing. :)
                   1719: 
                   1720:        * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
                   1721:          types/pa_vclass.h, types/pa_vconsole.h, types/pa_vcookie.C,
                   1722:          types/pa_vdate.C, types/pa_venv.C, types/pa_vform.C,
                   1723:          types/pa_vhash.h, types/pa_vimage.C, types/pa_vmemcached.C,
                   1724:          types/pa_vmethod_frame.h, types/pa_vobject.C,
                   1725:          types/pa_vrequest.C, types/pa_vresponse.C, types/pa_vtable.C,
                   1726:          types/pa_vxnode.C: optimization: PUT_ELEMENT_REPLACED_ELEMENT no
                   1727:          longer used in object-prototype mode
                   1728: 
                   1729:        * src/: include/pa_sapi.h, targets/apache/mod_parser3_core.C,
                   1730:          targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C,
                   1731:          targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_venv.h,
                   1732:          types/pa_vform.C, types/pa_vform.h: + $env:name[value] and
                   1733:          $form:name[value] features
                   1734: 
1.143     moko     1735: 2020-10-18  moko
                   1736: 
                   1737:        * src/targets/cgi/Makefile.am: + pa_sapi_info.h
                   1738: 
                   1739: 2020-10-15  moko
                   1740: 
                   1741:        * src/main/pa_http.C: url no longer needed as
                   1742:          ALTER_EXCEPTION_SOURCE is used
                   1743: 
                   1744:        * src/: classes/curl.C, include/pa_common.h, main/pa_common.C,
                   1745:          main/pa_http.C: check_file_size filespec is now optional
                   1746: 
                   1747:        * src/: classes/curl.C, include/pa_exception.h,
                   1748:          main/pa_exception.C, main/pa_http.C: ALTER_EXCEPTION_SOURCE and
                   1749:          ALTER_EXCEPTION_COMMENT added for better error reporting
                   1750: 
                   1751:        * tests/: 379-curl.html, 379.html, results/223-curl.processed,
                   1752:          results/346-curl.processed, results/379-curl.processed,
                   1753:          results/379.processed: test results updated as load now provides
                   1754:          better error reporting + curl responses updated
                   1755: 
                   1756: 2020-10-14  moko
                   1757: 
                   1758:        * src/: classes/date.C, include/pa_string.h, main/pa_http.C,
                   1759:          main/pa_string.C, targets/apache/mod_parser3_core.C,
                   1760:          targets/cgi/parser3.C: pa_atoi / pa_atoui / pa_atoul usage
                   1761:          checked. 10 is now default base, no hex autodetect by default
                   1762: 
                   1763:        * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
                   1764:          connection socket closing in destructor + accept exception
                   1765:          handling
                   1766: 
                   1767:        * src/targets/cgi/parser3.C: warning war
                   1768: 
                   1769:        * src/: include/pa_http.h, include/pa_sapi.h, main/pa_http.C,
                   1770:          main/pa_request.C, targets/apache/mod_parser3_core.C,
                   1771:          targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C: global try
                   1772:          exception handling unified
                   1773: 
                   1774: 2020-10-13  moko
                   1775: 
                   1776:        * src/targets/isapi/parser3isapi.C: reverted to atoi to avoid hex
                   1777:          autodetection
                   1778: 
                   1779:        * src/targets/apache/mod_parser3_core.C: reverted to atoi
                   1780: 
                   1781:        * src/: main/pa_http.C, targets/cgi/pa_sapi_info.h: warning war
                   1782: 
                   1783:        * src/main/pa_http.C: warning war
                   1784: 
1.142     moko     1785: 2020-10-12  moko
                   1786: 
1.143     moko     1787:        * src/: main/pa_request.C, targets/apache/mod_parser3_core.C,
                   1788:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C: excaption in
                   1789:          unhandled exception code optimization
                   1790: 
                   1791:        * src/targets/cgi/parser3.C: request_info now global variable
                   1792: 
                   1793:        * src/main/pa_http.C: http_read_response moved to HTTP_response
                   1794:          class
                   1795: 
                   1796:        * src/: include/pa_http.h, main/pa_http.C,
                   1797:          targets/cgi/pa_sapi_info.h: read_post implemented
                   1798: 
1.142     moko     1799:        * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
                   1800:          [host:]port syntax support in httpd mode
                   1801: 
                   1802:        * src/: include/pa_http.h, targets/cgi/pa_sapi_info.h,
                   1803:          targets/cgi/parser3.C: populate_env added
                   1804: 
                   1805:        * src/include/pa_hash.h: to make get(char *) compiling in
                   1806:          HashStringString
                   1807: 
                   1808: 2020-10-10  moko
                   1809: 
                   1810:        * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
                   1811:          targets/cgi/pa_sapi_info.h: ResponseHeaders -> HTTP_Headers
                   1812: 
                   1813:        * src/: include/pa_http.h, include/pa_request_info.h,
                   1814:          main/pa_http.C, main/pa_string.C,
                   1815:          targets/apache/mod_parser3_core.C, targets/cgi/pa_sapi_info.h,
                   1816:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                   1817:          types/pa_vrequest.C: initial httpd mode implementation
                   1818: 
1.141     moko     1819: 2020-10-04  moko
                   1820: 
                   1821:        * src/targets/cgi/parser3.C: options together
                   1822: 
                   1823: 2020-09-30  moko
                   1824: 
                   1825:        * src/main/pa_http.C: renamed
                   1826: 
1.140     moko     1827: 2020-08-14  moko
                   1828: 
                   1829:        * configure, configure.ac, parser3.sln, src/lib/Makefile.am,
                   1830:          src/targets/cgi/Makefile.am: no httpd as separate library
                   1831: 
                   1832: 2020-08-13  moko
                   1833: 
                   1834:        * src/targets/cgi/parser3.C: SAPI::die used in exception in
                   1835:          unhandled exception handler to report 500 instead of 200 it was
                   1836:          before.
                   1837: 
                   1838:        * src/targets/apache/mod_parser3_core.C: minor cleanup
                   1839: 
                   1840:        * src/: include/pa_sapi.h, main/untaint.C,
                   1841:          targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
                   1842:          targets/isapi/parser3isapi.C: SAPI::abort was used only once,
                   1843:          thus replaced with SAPI::die and removed
                   1844: 
                   1845:        * src/targets/: apache/mod_parser3_core.C, isapi/parser3isapi.C,
                   1846:          cgi/parser3.C: whitespace
                   1847: 
                   1848:        * src/targets/cgi/parser3.C: locate_config() extracted, whitespace.
                   1849: 
                   1850: 2020-08-12  moko
                   1851: 
                   1852:        * src/targets/cgi/parser3.C: duplicate info in signal logging
                   1853:          removed, whitespace was: SIGPIPE received while executing code.
                   1854:          uri=/_tmp.html, method=GET, cl=0 [uri=/_tmp.html, method=GET,
                   1855:          cl=0]
                   1856: 
                   1857:        * parser3.sln: + httpd.vcproj
                   1858: 
                   1859: 2020-08-11  moko
                   1860: 
                   1861:        * src/targets/cgi/Makefile.am: +libhttpd
                   1862: 
                   1863:        * configure.ac, src/lib/Makefile.am: +libhttpd
                   1864: 
1.139     moko     1865: 2020-07-13  moko
                   1866: 
                   1867:        * tests/: 401.html, results/401.processed: test for hash key does
                   1868:          not keep language, but tainted in foreach.
                   1869: 
1.138     moko     1870: 2020-07-01  moko
                   1871: 
                   1872:        * tests/: 235.html, results/235.processed: test result updated as
                   1873:          messages before attachments implemented (feature #1176)
                   1874: 
1.137     moko     1875: 2020-06-27  moko
                   1876: 
                   1877:        * tests/: 400.html, results/400.processed: test updated to check
                   1878:          ^return{code}
                   1879: 
                   1880:        * src/classes/op.C: bugfix: ^return{code} or ^return(expre+ssion)
                   1881:          fixed
                   1882: 
                   1883: 2020-06-26  moko
                   1884: 
                   1885:        * tests/: 400.html, results/400.processed: test for OPTIMIZE_RESULT
                   1886:          added (related to https://www.parser.ru/forum/?id=85319)
                   1887: 
                   1888:        * src/types/pa_vmethod_frame.h: bugfix: OPTIMIZE_RESULT failed,
                   1889:          when $result assignment was last statement in the method
                   1890:          (https://www.parser.ru/forum/?id=85319)
                   1891: 
1.136     moko     1892: 2020-05-23  moko
                   1893: 
                   1894:        * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h:
                   1895:          whitespace, unused level removed
                   1896: 
                   1897: 2020-05-19  moko
                   1898: 
                   1899:        * src/types/pa_vmail.C: whitespace
                   1900: 
                   1901:        * src/types/pa_vmail.C: files should be processed last (related to
                   1902:          feature #1176)
                   1903: 
1.135     moko     1904: 2020-05-12  moko
                   1905: 
                   1906:        * src/include/pa_memory.h: no new/delete checks for for FreeBSD1X.X
                   1907:          due to https://bugs.llvm.org/show_bug.cgi?id=40161 bug
                   1908: 
                   1909:        * configure.ac: FreeBSD1X.X check added to avoid
                   1910:          https://bugs.llvm.org/show_bug.cgi?id=40161 bug.
                   1911: 
1.134     moko     1912: 2020-02-26  moko
                   1913: 
                   1914:        * src/main/pa_common.C: entry_exists -> entry_ifdir to fix Windows
                   1915:          compilation issue (related to bug #1201)
                   1916: 
                   1917:        * src/main/pa_common.C: entry_readable -> entry_exists,
                   1918:          undocumented access(fname, R_OK) call removed (fixes bug #1201)
                   1919:          -f and -d now works under Windows in UTF-8 with Russian
                   1920:          filenames.
                   1921: 
                   1922:        * src/types/pa_vmail.C: g_mime_stream_pipe_new used by gmime author
                   1923:          advice (related to feature #1199)
                   1924: 
                   1925: 2020-02-25  moko
                   1926: 
                   1927:        * buildall: --silent removed
                   1928: 
                   1929:        * configure.ac: gmime-3.0 support
                   1930: 
                   1931:        * buildall: --with-system-mailreceive option added to build with
                   1932:          system libgmime
                   1933: 
                   1934:        * src/types/pa_vmail.C: avoiding
                   1935:          https://github.com/jstedfast/gmime/issues/83 "feature" (related
                   1936:          to feature #1199)
                   1937: 
1.133     moko     1938: 2020-02-18  moko
                   1939: 
                   1940:        * src/classes/op.C: windows x64 debug mode compile fix
                   1941: 
                   1942:        * src/main/pa_globals.C: no longer required due to -MD -> -MT
                   1943:          change (releated to feature #1200)
                   1944: 
                   1945:        * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
                   1946:          lib/gd/gd.vcproj, lib/json/json.vcproj, lib/ltdl/ltdl.vcproj,
                   1947:          lib/md5/md5.vcproj, lib/memcached/memcached.vcproj,
                   1948:          lib/pcre/pcre_internal.vcproj, lib/punycode/punycode.vcproj,
                   1949:          lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
                   1950:          targets/apache/ApacheModuleParser3.vcproj,
                   1951:          targets/apache/ApacheModuleParser3Core.vcproj,
                   1952:          targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
                   1953:          types/types.vcproj: -MD -> -MT to remove msvcp71.dll/etc
                   1954:          dependency (related to feature #1200)
                   1955: 
1.132     moko     1956: 2020-02-12  moko
                   1957: 
                   1958:        * src/types/pa_vmail.C: minimize diff
                   1959: 
                   1960:        * src/types/pa_vmail.C: libgmime 3.X support (implements feature
                   1961:          #1199)
                   1962: 
1.131     moko     1963: 2020-01-18  moko
                   1964: 
                   1965:        * tests/: 388-sql.html, results/388-sql.processed: +postprocess
                   1966: 
1.130     moko     1967: 2019-12-28  moko
                   1968: 
                   1969:        * src/targets/cgi/parser3.C: avoid empty ?
                   1970: 
                   1971: 2019-12-27  moko
                   1972: 
                   1973:        * src/targets/cgi/parser3.C: PATH_INFO check in reinventing
                   1974:          DOCUMENT_ROOT (related to feature #1164)
                   1975: 
                   1976:        * src/targets/cgi/parser3.C: IIS5 support removed to simplify
                   1977:          fcgiwrap setup (implements feature #1164)
                   1978: 
                   1979:        * src/targets/cgi/parser3.C: real_parser_handler logic simplified,
                   1980:          but no issues found (related to feature #1164)
                   1981: 
                   1982:        * src/targets/cgi/parser3.C: actualized
                   1983: 
                   1984: 2019-12-26  moko
                   1985: 
                   1986:        * src/targets/apache/ApacheModuleParser3.vcproj: apache stop/start
                   1987:          removed
                   1988: 
                   1989:        * src/targets/isapi/parser3isapi.vcproj: inetinfo stop/start
                   1990:          removed
                   1991: 
                   1992:        * src/: lib/gc/include/gc.h, main/pa_globals.C: As we log
                   1993:          allocation errors, we don't want default gc warnings (without
                   1994:          timestamp and URI).
                   1995: 
                   1996:        * src/: classes/memory.C, main/pa_globals.C,
                   1997:          targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
                   1998:          targets/isapi/parser3isapi.C: GC_dont_gc=1 moved to
                   1999:          pa_globals_init
                   2000: 
                   2001:        * src/main/pa_globals.C: setup_hex_value() removed, static array
                   2002:          initialization used (optimization)
                   2003: 
                   2004:        * src/: main/pa_globals.C, targets/apache/mod_parser3_core.C,
                   2005:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
                   2006:          pa_socks_init/pa_socks_done moved inside pa_globals_init
                   2007:          (optimization)
                   2008: 
1.129     moko     2009: 2019-12-09  moko
                   2010: 
                   2011:        * src/include/pa_config_fixed.h: warning war
                   2012: 
1.128     moko     2013: 2019-12-08  moko
                   2014: 
                   2015:        * src/main/main.vcproj: compile.y - ExcludedFromBuild, as we
                   2016:          process grammar under Unix.
                   2017: 
                   2018: 2019-12-07  moko
                   2019: 
                   2020:        * tests/389.html: For Windows XP. :)
                   2021: 
                   2022:        * tests/388-sql.html: Windows compatibility added
                   2023: 
                   2024: 2019-12-06  moko
                   2025: 
                   2026:        * src/targets/cgi/parser3.C: warning war
                   2027: 
                   2028:        * src/main/pa_string.C: + COMPILE_ASSERT(sizeof(String::Languages)
                   2029:          == sizeof(CORD)) to avoid aligning bugs in future
                   2030: 
                   2031:        * src/: include/pa_config_fixed.h, main/pa_globals.C: simplified to
                   2032:          XML_STATIC
                   2033: 
                   2034:        * src/include/pa_request.h: StackItem() not required
                   2035: 
                   2036:        * src/include/pa_stack.h: warning war
                   2037: 
                   2038:        * src/include/pa_config_includes.h: GCC warning silenced
                   2039: 
                   2040:        * src/include/pa_memory.h: warning war: the program should also
                   2041:          define 'void operator delete [](void*, std::size_t)'
                   2042:          [-Wsized-deallocation]
                   2043: 
                   2044:        * src/types/: pa_vregex.h, pa_vtable.h: warning war
                   2045: 
                   2046:        * src/classes/string.C: not reqired cast removed
                   2047: 
                   2048:        * src/classes/string.C: not reqired cast removed
                   2049: 
                   2050: 2019-12-05  moko
                   2051: 
                   2052:        * src/lib/sdbm/pa_file_io.C: warning war
                   2053: 
                   2054:        * src/include/pa_string.h: bugfix for Windows x64: enum Language ->
                   2055:          enum Language : size_t - required for VS2015+ to make
                   2056:          sizeof(Languages::opt) == sizeof(CORD), will be 16 byte under x64
                   2057:          without it (related to feature #1198)
                   2058: 
                   2059: 2019-12-04  moko
                   2060: 
                   2061:        * src/main/pa_base64.C: unsigned char -> uchar
                   2062: 
                   2063:        * src/main/: main.vcproj, pa_globals.C: libpcre now linked same way
                   2064:          as other libs
                   2065: 
                   2066:        * src/include/pa_version.h: +amd64
                   2067: 
                   2068: 2019-12-03  moko
                   2069: 
                   2070:        * src/: classes/classes.vcproj, types/types.vcproj: sync debug with
                   2071:          release
                   2072: 
                   2073:        * src/include/pa_config_includes.h: warning war
                   2074: 
                   2075:        * src/classes/image.C: warning war
                   2076: 
                   2077:        * src/main/pa_globals.C: x64 libs support
                   2078: 
                   2079:        * src/include/pa_config_includes.h: warning war
                   2080: 
                   2081:        * src/types/pa_method.h: warning war
                   2082: 
1.127     moko     2083: 2019-11-28  moko
                   2084: 
                   2085:        * src/classes/math.C: vs2003 compatibility + warning war
                   2086: 
                   2087:        * buildall: libxslt-1.1.29 -> libxslt-1.1.34, libxml2-2.9.4 ->
                   2088:          libxml2-2.9.9 (related to feature #1136)
                   2089: 
                   2090:        * src/classes/xdoc.C: xmlHashScanner declaration changed, using
                   2091:          typecast for more compatibility (related to feature #1136)
                   2092: 
                   2093:        * buildall: --direct-download option added, gc-7.6.2 -> gc-8.0.4 +
                   2094:          libatomic no longer required, pcre-8.40 -> pcre-8.43 (related to
                   2095:          feature #1136)
                   2096: 
                   2097: 2019-11-26  moko
                   2098: 
                   2099:        * src/main/: compile_tools.C, compile_tools.h: invalid assert
                   2100:          removed (it was failing in $$var case), condition added
                   2101: 
1.126     moko     2102: 2019-11-25  moko
                   2103: 
                   2104:        * tests/: 397.html, 399.html, results/141.processed,
                   2105:          results/399.processed: base64 options tested
                   2106: 
                   2107:        * src/: classes/math.C, main/pa_http.C: base64 options used
                   2108: 
                   2109:        * src/main/pa_base64.C: base64 encode rewritten, base64 options
                   2110:          implemented (feature #986)
                   2111: 
                   2112:        * src/main/pa_cache_managers.C: whitespace
                   2113: 
                   2114:        * tests/: 397.html, 399.html, results/399.processed: tests for
                   2115:          ^base64 encode options added (related to feature #986)
                   2116: 
                   2117:        * src/: classes/file.C, include/pa_base64.h, main/pa_base64.C:
                   2118:          pa_base64_encode(file) removed - more memory, but faster and less
                   2119:          code (related fo feature #986)
                   2120: 
                   2121: 2019-11-24  moko
                   2122: 
                   2123:        * tests/: 155.html, results/155.processed: limit and offset in
                   2124:          ^table::load[] now supported, thus test added
                   2125: 
                   2126:        * src/: classes/file.C, classes/table.C, include/pa_common.h,
                   2127:          main/pa_common.C: optimization: offset and limit options parsing
                   2128:          moved inside file_load.
                   2129: 
                   2130: 2019-11-23  moko
                   2131: 
                   2132:        * src/: classes/file.C, classes/op.C, include/pa_common.h,
                   2133:          main/pa_common.C, main/pa_request.C, types/pa_vform.C:
                   2134:          optimization: file_read replaced with simplified file_read_binary
                   2135: 
                   2136:        * src/: classes/op.C, main/pa_common.C, main/pa_request.C,
                   2137:          types/pa_vform.C: whitespace
                   2138: 
                   2139:        * src/: include/pa_common.h, main/pa_common.C: never used params
                   2140:          removed
                   2141: 
                   2142: 2019-11-21  moko
                   2143: 
                   2144:        * tests/: 193.html, results/193.processed, results/389.processed:
                   2145:          test results updated as now base64 does not discard tail without
                   2146:          padding (related to feature #986)
                   2147: 
                   2148: 2019-11-20  moko
                   2149: 
                   2150:        * src/: classes/file.C, classes/string.C, include/pa_base64.h,
                   2151:          main/pa_base64.C: optimization: void pa_base64_decode -> size_t
                   2152:          pa_base64_decode (related to feature #986)
                   2153: 
                   2154:        * tests/398.html: tests for base64 decode added (related to feature
                   2155:          #986)
                   2156: 
                   2157:        * src/main/pa_base64.C: base64_decode rewritten - padding option
                   2158:          support, padding inside base 64 supported (related to feature
                   2159:          #096)
                   2160: 
                   2161: 2019-11-19  moko
                   2162: 
                   2163:        * src/include/pa_memory.h: CHECK_DELETE_USAGE tested to work under
                   2164:          FreeBSD 12
                   2165: 
1.125     moko     2166: 2019-11-16  moko
                   2167: 
                   2168:        * src/main/pa_base64.C: base64_decode converted to C++, url-safe
                   2169:          support added, step support removed (related to #986)
                   2170: 
                   2171: 2019-11-15  moko
                   2172: 
                   2173:        * src/classes/math.C: using log since log2 is not present on
                   2174:          FreeBSD < 8.4 (related to feature #1177)
                   2175: 
                   2176:        * src/: include/pa_base64.h, main/pa_base64.C: whitespace,
                   2177:          pa_base64_size extracted and used for files as well (related to
                   2178:          feature 986)
                   2179: 
                   2180: 2019-11-14  moko
                   2181: 
                   2182:        * tests/: 397.html, results/397.processed: + content check
                   2183: 
                   2184:        * tests/: 141.html, results/141.processed: make test resuls more
                   2185:          readable
                   2186: 
                   2187:        * tests/: 397.html, results/193.processed, results/397.processed:
                   2188:          test results updated after \x00 character was disabled in
                   2189:          math:convert string mode (related to feature #1177)
                   2190: 
                   2191:        * src/classes/: math.C, string.C: \\x00 character disabled while
                   2192:          converting to string (as in base64, related to feature #1177)
                   2193: 
                   2194:        * src/classes/file.C: more correct arguments separation
                   2195: 
                   2196:        * src/: classes/file.C, classes/math.C, classes/string.C,
                   2197:          include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
                   2198:          main/pa_http.C, types/pa_vfile.C, types/pa_vmail.C: base64
                   2199:          options added, but not yet implemented (related to feature #986)
                   2200: 
                   2201:        * src/classes/math.C: whitespace
                   2202: 
                   2203: 2019-11-13  moko
                   2204: 
                   2205:        * tests/: 397.html, results/397.processed: +tainting test (related
                   2206:          to feature #1177)
                   2207: 
                   2208:        * src/classes/math.C: as we now produce not only digits, result
                   2209:          should be tainted (related to feature #1177)
                   2210: 
                   2211:        * src/main/pa_base64.C: whitespace
                   2212: 
                   2213:        * src/: include/Makefile.am, main/Makefile.am, main/main.vcproj,
                   2214:          include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
                   2215:          main/pa_common.C: pa_base64.h and pa_base64.C added, base64
                   2216:          implementation moved from pa_common.h and pa_common.C
                   2217: 
                   2218: 2019-11-12  moko
                   2219: 
                   2220:        * tests/: 275.html, results/275.processed: out of range test fixed,
                   2221:          as ^math:convert now supports arbitrary precision
                   2222: 
                   2223: 2019-11-11  moko
                   2224: 
                   2225:        * tests/results/389.processed: uctualized error message
                   2226: 
                   2227:        * tests/: 389.html, 397.html, results/397.processed: tests for
                   2228:          ^math:convert added (related to feature #1177)
                   2229: 
                   2230:        * src/classes/math.C: ^math:convert now supports arbitrary
                   2231:          precision, alphabet support added (implements feature #1177)
                   2232: 
1.124     moko     2233: 2019-11-06  moko
                   2234: 
                   2235:        * tests/: 181.html, results/181.processed: entities usage added,
                   2236:          more entites load tests (related to bug #842 discussion)
                   2237: 
                   2238: 2019-11-05  moko
                   2239: 
                   2240:        * src/main/pa_xml_io.C: bugfix: no more extra http://localhost/
                   2241:          call from xmlFileOpen if http://localhost/<file> was not found
                   2242:          (related to bug #842)
                   2243: 
                   2244:        * src/main/pa_xml_io.C: rename
                   2245: 
                   2246:        * src/main/pa_xml_io.C: +MemoryStream constructor
                   2247: 
                   2248:        * src/main/pa_xml_io.C: whitespace
                   2249: 
1.123     moko     2250: 2019-10-31  moko
                   2251: 
                   2252:        * src/classes/xdoc.C: XML_PARSE_OPTIONS (XML_PARSE_DTDLOAD |
                   2253:          XML_PARSE_NOENT) added to fix entities load, (related to feature
                   2254:          #1181)
                   2255: 
1.122     moko     2256: 2019-10-25  moko
                   2257: 
                   2258:        * tests/: 388-sql.html, results/388-sql.processed: more multiple
                   2259:          queries tests
                   2260: 
                   2261: 2019-10-24  moko
                   2262: 
                   2263:        * tests/: 388-sql.html, results/388-sql.processed: support for
                   2264:          pgsql driver test
                   2265: 
                   2266:        * tests/: 388-sql.html, results/388-sql.processed:
                   2267:          multi_statements=1 now tested, mysql test now supported
                   2268:          (connection must be specified in [parser3] section in .my.cnf)
                   2269:          related to issues #1195 and #1194
                   2270: 
1.121     moko     2271: 2019-09-11  moko
                   2272: 
                   2273:        * src/classes/int.C: whitespace
                   2274: 
                   2275:        * tests/: 388-sql.html, results/388-sql.processed: +duplicate key
                   2276:          exception test
                   2277: 
                   2278:        * tests/results/388-sql.processed: sql queries now shown (related
                   2279:          to feature #1196)
                   2280: 
                   2281:        * src/sql/pa_sql_driver.h: to keep new SQL drivers more compatible
                   2282:          with old parser versions.
                   2283: 
                   2284:        * src/: classes/file.C, classes/hash.C, classes/string.C,
                   2285:          classes/table.C, classes/void.C, include/pa_sql_connection.h,
                   2286:          main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: Show query
                   2287:          instead of connect string in query_event_handlers exceptions
                   2288:          (implements feature #1196)
                   2289: 
1.120     moko     2290: 2019-09-06  moko
                   2291: 
                   2292:        * tests/388-sql.html: mysql compat
                   2293: 
                   2294:        * src/: classes/hash.C, classes/string.C, classes/table.C,
                   2295:          classes/void.C, include/pa_common.h, main/pa_common.C: cleanup:
                   2296:          sql_ variables declaration moved to pa_common.h
                   2297: 
1.116     moko     2298: 2019-01-15  moko
                   2299: 
                   2300:        * src/classes/curl.C: ^curl:info[] - OrderedHashString used, items
                   2301:          logically sorted
                   2302: 
                   2303: 2018-12-27  moko
                   2304: 
                   2305:        * src/include/pa_config_includes.h: warning war:
                   2306:          -Wdeprecated-register added for C++ 17
                   2307: 
                   2308: 2018-10-15  moko
                   2309: 
                   2310:        * configure.ac: FreeBSD 11.2 can be build with ./configure
                   2311:          --with-gc=/usr/local/lib/ --with-pcre=/usr/local/
                   2312:          --with-xml=/usr/local/
                   2313: 
                   2314: 2018-09-24  moko
                   2315: 
                   2316:        * tests/: 396.html, 396.tiff, results/396.processed: test for
                   2317:          ^image::measure[] now supports tiff added (related to feature
                   2318:          #1188)
                   2319: 
                   2320:        * src/classes/image.C: ^image::measure[] now supports tiff
                   2321:          (implements feature #1188)
                   2322: 
                   2323: 2018-09-20  moko
                   2324: 
                   2325:        * tests/: 395.bmp, 395.html, results/395.processed: test for bmp
                   2326:          files measure added (related to ticket #1188)
                   2327: 
                   2328:        * src/classes/image.C: measure of bmp files implemented (related to
                   2329:          ticket #1188)
                   2330: 
                   2331: 2018-09-18  moko
                   2332: 
                   2333:        * tests/: 394-curl.html, results/394-curl.processed,
                   2334:          results/auto.p: test for bug #1187 (max_file_size check for head
                   2335:          requests) added
                   2336: 
                   2337: 2018-08-24  moko
                   2338: 
                   2339:        * src/classes/curl.C: CURLOPT_NOBODY value used to check if
                   2340:          response content-length check is required (fixes bug #1187)
                   2341: 
                   2342: 2018-05-11  moko
                   2343: 
                   2344:        * tests/: 157.html, results/157.processed: test for ^file:copy[..;
                   2345:          $.append(bool) ] option added (related to feature #919)
                   2346: 
                   2347:        * src/classes/file.C: ^file:copy[..; $.append(bool) ] option added
                   2348:          from misha@ patch (implements feature #919)
                   2349: 
                   2350: 2018-03-22  moko
                   2351: 
                   2352:        * src/main/pa_request.C: $response:download[ $.file[file.namef] ]
                   2353:          worked rather slow (about 1mb/sec) with 10kb buffer, replaced it
                   2354:          with 128kb buffer.  Now works at least 12 times faster. :) May be
                   2355:          Windows-only problem.
                   2356: 
                   2357:        * src/lib/cord/cord.vcproj: Profile * complete cleanup (VS 2003
                   2358:          build fix)
                   2359: 
                   2360: 2018-02-03  moko
                   2361: 
                   2362:        * src/main/execute.C: removes irrelevant lines from exception stack
                   2363:          trace when exceptions occurs in assigment (fixes bug #1165)
                   2364: 
                   2365:        * tests/: 393.html, results/393.processed: test for behavour after
                   2366:          "Property can not be created, already exists field with that
                   2367:          name" exception removed (related to feature #1183)
                   2368: 
                   2369:        * src/types/pa_vclass.C: "Property can not be created, already
                   2370:          exists field with that name" exception removed (implements
                   2371:          feature #1183)
                   2372: 
                   2373: 2018-01-19  moko
                   2374: 
                   2375:        * src/classes/string.C: whitespace
                   2376: 
                   2377:        * src/classes/string.C: whitespace
                   2378: 
                   2379:        * tests/: 392.html, results/392.processed: test for
                   2380:          ^regex::create[$regex] added (related to feature #1135)
                   2381: 
                   2382:        * src/: classes/regex.C, types/pa_vregex.C, types/pa_vregex.h:
                   2383:          ^regex::create[$regex] added (implements feature #1135)
                   2384: 
                   2385:        * src/types/: pa_vclass.C, pa_vclass.h: CLASS_GETTER_UNPROTECTED
                   2386:          commented define added (related to feature #1157)
                   2387: 
                   2388: 2018-01-17  moko
                   2389: 
                   2390:        * buildall: gc 7.6.0 -> 7.6.2 (related to feature #1136)
                   2391: 
                   2392: 2018-01-15  moko
                   2393: 
                   2394:        * tests/: 390.html, results/390.processed: real path replaced by
                   2395:          stub
                   2396: 
                   2397:        * tests/: 391.html, results/391.processed: test for feature #1181
                   2398:          (XML_PARSE_HUGE exception) added
                   2399: 
                   2400: 2018-01-11  moko
                   2401: 
                   2402:        * src/classes/xdoc.C: xmlReadMemory/xmlReadFile now used with
                   2403:          XML_PARSE_HUGE option passed by default (implements feature
                   2404:          #1181)
                   2405: 
                   2406:        * src/classes/string.C: whitespace
                   2407: 
                   2408: 2017-12-10  moko
                   2409: 
                   2410:        * tests/: 389.html, 390.html, results/389.processed,
                   2411:          results/390.processed: image code coverage tests added (related
                   2412:          to feature #1125)
                   2413: 
                   2414: 2017-12-08  moko
                   2415: 
                   2416:        * tests/: 346-curl.html, 388-sql.html, 389.html,
                   2417:          results/346-curl.processed, results/388-sql.processed,
                   2418:          results/389.processed: more code coverage tests
                   2419: 
                   2420:        * tests/: 264.html, results/264.processed: code coverage for
                   2421:          ^file::exec[]
                   2422: 
                   2423: 2017-12-07  moko
                   2424: 
                   2425:        * tests/: 174.html, 388-sql.html, 389.html,
                   2426:          results/388-sql.processed, results/389.processed,
                   2427:          results/174.processed: more coverage tests
                   2428: 
                   2429:        * src/classes/math.C: exception text actualized
                   2430: 
                   2431: 2017-12-06  moko
                   2432: 
                   2433:        * tests/388-sql.html: $SQL can be here
                   2434: 
                   2435:        * tests/results/auto.p: $SQL not required here
                   2436: 
                   2437:        * tests/: 388-sql.html, 389.html, Makefile,
                   2438:          results/388-sql.processed, results/389.processed, results/auto.p:
                   2439:          code coverage tests for sql (using sqlite) and int/double/bool
                   2440:          added (related to feature #1125)
                   2441: 
                   2442:        * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
                   2443:          lib/json/json.vcproj, lib/md5/md5.vcproj,
                   2444:          lib/memcached/memcached.vcproj, lib/punycode/punycode.vcproj,
                   2445:          lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
                   2446:          targets/apache/ApacheModuleParser3Core.vcproj,
                   2447:          targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
                   2448:          types/types.vcproj: gc\include no longer required
                   2449: 
                   2450:        * src/lib/: cord/cord.vcproj, gd/gd.vcproj: gc\include no longer
                   2451:          required
                   2452: 
                   2453:        * src/: classes/Makefile.am, classes/table.C,
                   2454:          include/pa_config_includes.h, include/pa_string.h,
                   2455:          lib/cord/Makefile.am, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
                   2456:          lib/gd/Makefile.am, lib/json/Makefile.am, lib/sdbm/Makefile.am,
                   2457:          lib/smtp/Makefile.am, main/Makefile.am, main/untaint.C,
                   2458:          targets/apache/Makefile.am, targets/cgi/Makefile.am,
                   2459:          types/Makefile.am: to be sure that our version of gc.h/cord.h is
                   2460:          used, we now include it directly
                   2461: 
                   2462: 2017-12-04  moko
                   2463: 
                   2464:        * src/lib/: gd/gd.vcproj, md5/md5.vcproj,
                   2465:          memcached/memcached.vcproj, punycode/punycode.vcproj,
                   2466:          sdbm/sdbm.vcproj, smtp/smtp.vcproj: includes unified, gc added
                   2467:          where required
                   2468: 
                   2469:        * src/: classes/memory.C, include/pa_config_includes.h: GC_DEBUG
                   2470:          now can be used to trace memory allocations
                   2471: 
                   2472:        * src/: classes/table.C, include/pa_config_includes.h,
                   2473:          include/pa_memory.h, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
                   2474:          main/pa_globals.C: PA_DEBUG_DISABLE_GC works again, pa_gc_*
                   2475:          method removes, libcord also can work without libgc
                   2476: 
                   2477:        * src/classes/json.C: pa_gc_malloc_atomic should not be used
                   2478: 
                   2479: 2017-11-29  moko
                   2480: 
                   2481:        * src/classes/curl.C: no exception if some of ^curl:info[] elements
                   2482:          are not present (related to feature #1173)
                   2483: 
                   2484:        * tests/346-curl.html: test updated to test curl content-length bug
                   2485:          (related to feature #1173)
                   2486: 
                   2487:        * tests/results/346-curl.processed: more test for content-length
                   2488:          curl bug (related to feature #1173)
                   2489: 
                   2490:        * tests/results/346-curl.processed: test results updated after
                   2491:          #1173 implemented
                   2492: 
                   2493: 2017-11-28  moko
                   2494: 
                   2495:        * src/classes/curl.C: another libcurl Content-length bug walkaround
                   2496:          (related to feature #1173)
                   2497: 
                   2498: 2017-11-27  moko
                   2499: 
                   2500:        * src/: classes/curl.C, lib/curl/curl.h: ^curl:options
                   2501:          $.http_version[version string] added (implements feature #1173),
                   2502:          CURLOPT_POSTFIELDSIZE is set to 0 now only for old versions,
                   2503:          where $post(true) bug existed.
                   2504: 
                   2505: 2017-11-18  moko
                   2506: 
                   2507:        * src/include/pa_memory.h: warning war (related to feature #1170)
                   2508: 
                   2509:        * src/include/pa_pool.h: RedHat 7.3 compatibility fixed (related to
                   2510:          feature #1170)
                   2511: 
                   2512: 2017-11-17  moko
                   2513: 
                   2514:        * src/include/pa_memory.h: CHECK_DELETE_USAGE define added as
                   2515:          std::basic_stringstream used in ^table.csv-string[] is compatible
                   2516:          with delete usage check only under Debian 9 (related to feature
                   2517:          #1170)
                   2518: 
                   2519: 2017-11-16  moko
                   2520: 
                   2521:        * src/: classes/curl.C, classes/hash.C, classes/json.C,
                   2522:          classes/table.C, classes/xdoc.C, include/pa_config_includes.h,
                   2523:          include/pa_hash.h, include/pa_memory.h, include/pa_pool.h,
                   2524:          main/pa_charset.C, main/pa_memory.C, main/pa_xml_io.C,
                   2525:          sql/pa_sql_driver.h, types/pa_value.h, types/pa_vmemcached.C,
                   2526:          types/pa_vxdoc.h: regular new/delete no longer used in our code,
                   2527:          stubs defend from accidental use (implements feature #1170)
                   2528: 
                   2529: 2017-06-24  moko
                   2530: 
                   2531:        * configure.ac: minor fix: thanks to alx@
                   2532: 
1.115     moko     2533: 2017-05-29  moko
                   2534: 
                   2535:        * src/types/pa_vmail.C: mail headers are now correctly truncated -
                   2536:          MAX_CHARS_IN_HEADER_LINE value fixed, mail_header_utf8_substring
                   2537:          added to avoid cutting of UTF-8 chars (fixed bug #123)
                   2538: 
                   2539:        * src/main/untaint.C: as in case of <space>=?UTF-8?Q?= space is
                   2540:          ignored, =?UTF-8?Q?= should start in case of leading space
                   2541:          (related to bug #123)
                   2542: 
                   2543:        * buildall: echo -n -> printf for OS X. :)
                   2544: 
                   2545: 2017-05-25  moko
                   2546: 
                   2547:        * tests/: 288.html, results/288.processed: test updated afted
                   2548:          setting $o.prop without setter exception removed (related to
                   2549:          feature #1157)
                   2550: 
                   2551:        * src/types/pa_vclass.C: no more "this property has no setter
                   2552:          method" when setting $o.prop without setter (implements feature
                   2553:          #1157)
                   2554: 
                   2555:        * buildall: echo \c -> echo -n for FreeBSD
                   2556: 
                   2557:        * configure, configure.ac, src/include/pa_config_auto.h.in,
                   2558:          src/types/pa_vdouble.h: isfinite now checked in configure
                   2559: 
                   2560:        * compile, config.guess, config.sub, depcomp, install-sh, missing:
                   2561:          upgraded to automake 1.15
                   2562: 
                   2563: 2017-05-23  moko
                   2564: 
                   2565:        * src/types/pa_vdouble.h: finite returned where isfinite not
                   2566:          defined
                   2567: 
                   2568: 2017-05-22  moko
                   2569: 
                   2570:        * buildall: gc-7.6.0 USE_LIBC_PRIVATES allready defined warning war
                   2571: 
                   2572:        * buildall: extern CFLAGS setting support
                   2573: 
                   2574:        * src/types/pa_vdouble.h: warning war: finine() -> isfinite() 4OSX
                   2575: 
                   2576:        * buildall: http -> https
                   2577: 
                   2578:        * buildall: gc-7.2f -> gc-7.6.0
                   2579: 
                   2580: 2017-05-20  moko
                   2581: 
                   2582:        * buildall: https, pcre, xml, xslt updated to current versions
                   2583:          (related to feature #1136)
                   2584: 
                   2585: 2017-05-19  moko
                   2586: 
                   2587:        * tests/097.html: after parser.ru moved to https
                   2588: 
                   2589: 2017-05-17  moko
                   2590: 
                   2591:        * tests/results/: 175.processed, 372.processed: tests resuls
                   2592:          updated after lintian spelling typos fixed (related to bug #1156)
                   2593: 
                   2594:        * src/: classes/file.C, classes/hash.C, classes/reflection.C,
                   2595:          classes/string.C, classes/table.C, main/pa_charset.C,
                   2596:          main/pa_common.C, main/pa_http.C, types/pa_vimage.h,
                   2597:          types/pa_vmail.C, types/pa_vxdoc.h: fixed spelling typos from
                   2598:          lintian reported by Sergey B Kirpichev (fixes bug #1156)
                   2599: 
                   2600:        * tests/results/096.processed: +XMP
                   2601: 
                   2602:        * tests/: 096.html, 096_dir/188.jpg: ^image::measure[] $.exif(true)
                   2603:          $.xmp(true) options tested (test for feature #1154)
                   2604: 
                   2605:        * src/classes/image.C: ^image:measure[] options $.exif(false)
                   2606:          $.xmp(false) $.xmp-charset[UTF-8] implemened. exif no longer
                   2607:          fetched by default! (implements feature #1154)
                   2608: 
                   2609: 2017-05-16  moko
                   2610: 
                   2611:        * tests/: 256.html, results/256.processed: ^json:string[$image] now
                   2612:          allowed (related to feature #1154)
                   2613: 
                   2614:        * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
                   2615:          initial XMP implementation - without options and transcode
                   2616:          (related to feature #1154)
                   2617: 
                   2618: 2017-05-12  moko
                   2619: 
                   2620:        * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
                   2621:          image: exif moved to ffields, skipped in ^image.html[] where
                   2622:          iterators now used (preparation for feature #1154)
                   2623: 
                   2624: 2017-05-05  moko
                   2625: 
                   2626:        * tests/: 387.html, 387_dir/A.p, 387_dir/B.p,
                   2627:          results/387.processed: test for circular class inheritance check
                   2628:          added (related to bug #1150)
                   2629: 
                   2630:        * src/types/pa_vstateless_class.C: circular class inheritance check
                   2631:          added (fixes endless add_derived bug #1150)
                   2632: 
                   2633: 2017-05-04  moko
                   2634: 
                   2635:        * tests/: 386.html, results/386.processed: test for
                   2636:          $table.value(number) added (related to feature #1152)
                   2637: 
                   2638:        * src/types/pa_vtable.C: table put_element: column value must be
                   2639:          string  - > column value must be string compatible to allow
                   2640:          $t.value(1) (implements feature #1152)
                   2641: 
                   2642: 2017-05-03  moko
                   2643: 
                   2644:        * src/main/pa_request.C: $use[$method] is not possible, reverting
                   2645:          (related to feature #1151)
                   2646: 
                   2647:        * tests/: 386.html, 386.p, results/386.processed: $use[$method] is
                   2648:          not possible, removing test (related to feature #1151)
                   2649: 
                   2650:        * src/: main/pa_request.C, types/pa_vstateless_class.h:
                   2651:          get_element_method added and used to allow $use[$method] and
                   2652:          $autouse[$method] (implements feature 1151)
                   2653: 
                   2654:        * tests/: 386.html, 386.p, results/386.processed: test for @use in
                   2655:          variable added (related to feature #1151)
                   2656: 
                   2657:        * tests/results/226.processed: actualized after ^try-catch used
                   2658: 
                   2659:        * tests/: 226.html, 385.html, results/385.processed: test for
                   2660:          @autouse in variable added
                   2661: 
                   2662:        * configure.ac, src/include/pa_version.h: 3.4.5 -> 3.4.6b
                   2663: 
1.114     moko     2664: 2017-02-27  moko
                   2665: 
                   2666:        * configure.ac, src/include/pa_version.h: 3.4.5rc -> 3.4.5
                   2667: 
1.113     moko     2668: 2017-02-20  moko
                   2669: 
                   2670:        * operators.txt: actualization + beauty
                   2671: 
                   2672: 2017-02-16  moko
                   2673: 
                   2674:        * tests/: 384.html, results/384.processed: test for
                   2675:          ^reflection:mixin[; $.name[] ] option added (related to feature
                   2676:          #1089)
                   2677: 
                   2678:        * tests/: 384.html, results/384.processed: test for
                   2679:          ^reflection:mixin[] added (related to feature #1089)
                   2680: 
                   2681:        * src/types/pa_value.h: warning war: virtual ~Value() added
                   2682: 
1.112     moko     2683: 2017-02-15  moko
                   2684: 
                   2685:        * src/include/pa_hash.h: compilation without HASH_CODE_CACHING
                   2686:          fixed
                   2687: 
                   2688:        * tests/: 320.html, results/320.processed: $.reverse(true/false)
                   2689:          test added (related to feature #1069)
                   2690: 
                   2691:        * src/: classes/reflection.C, types/pa_vstateless_class.h:
                   2692:          compilation without HASH_ORDER fixed
                   2693: 
                   2694:        * src/: classes/reflection.C, include/pa_hash.h:
                   2695:          $.reverse(true/false) added to ^reflection:methods[] (related to
                   2696:          feature #1069)
                   2697: 
                   2698: 2017-02-14  moko
                   2699: 
                   2700:        * tests/: 152.html, results/152.processed: test for $._default hash
                   2701:          added (related to bug #1131)
                   2702: 
                   2703:        * tests/: 277.html, results/277.processed: test for hash with only
                   2704:          $._default is now defined (related to bug #1131)
                   2705: 
                   2706:        * src/types/pa_vhash.h: hash with only $._default is now defined
                   2707:          (fixed bug #1131)
                   2708: 
                   2709: 2017-02-13  moko
                   2710: 
                   2711:        * tests/cat-windows.sh: cat-windows added (cygwin required)
                   2712: 
                   2713:        * tests/: 171.html, 264.html, 286.html, 370.html,
                   2714:          results/320.processed, results/375.processed, results/auto.p:
                   2715:          cat-windows.sh support added
                   2716: 
                   2717:        * tests/375.html: Windows support
                   2718: 
                   2719:        * tests/270.html: documented
                   2720: 
                   2721:        * tests/: 270.html, run_parser.cmd: bugfix: PATH_INFO has slashes
                   2722:          (not backslashes) even under Windows (broke test 270)
                   2723: 
                   2724: 2017-02-12  moko
                   2725: 
                   2726:        * tests/: descript.ion, todo.txt: cleanup
                   2727: 
                   2728: 2017-02-09  moko
                   2729: 
                   2730:        * tests/: 253.html, 255.html, 275.html, 347-curl.html,
                   2731:          run_tests.cmd: Windows compatibility
                   2732: 
                   2733:        * tests/make_tests.cmd: removed as test can't be passed - TZ is set
                   2734:          incorrectly (GMT) if parser is called from cygwin
                   2735: 
1.111     moko     2736: 2017-02-08  moko
                   2737: 
1.112     moko     2738:        * operators.txt: actualization 15% completed
                   2739: 
                   2740:        * operators.txt: cp1251 -> utf-8
                   2741: 
                   2742:        * NEWS, README: minor update
                   2743: 
                   2744:        * src/include/pa_config_includes.h: warning war continues
                   2745: 
                   2746:        * src/: include/pa_config_includes.h, include/pa_memory.h,
                   2747:          targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
                   2748:          targets/isapi/parser3isapi.C, types/pa_vdouble.h: warning war:
                   2749:          gcc 6.x issues fixed
                   2750: 
1.111     moko     2751:        * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
                   2752:          classes/classes.h, classes/curl.C, classes/date.C,
                   2753:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   2754:          classes/hashfile.C, classes/image.C, classes/inet.C,
                   2755:          classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
                   2756:          classes/memcached.C, classes/memory.C, classes/op.C,
                   2757:          classes/reflection.C, classes/regex.C, classes/response.C,
                   2758:          classes/string.C, classes/table.C, classes/void.C,
                   2759:          classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   2760:          include/pa_array.h, include/pa_cache_managers.h,
                   2761:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   2762:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   2763:          include/pa_dictionary.h, include/pa_dir.h,
                   2764:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   2765:          include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
                   2766:          include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
                   2767:          include/pa_pool.h, include/pa_random.h, include/pa_request.h,
                   2768:          include/pa_request_charsets.h, include/pa_request_info.h,
                   2769:          include/pa_sapi.h, include/pa_socks.h,
                   2770:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   2771:          include/pa_stack.h, include/pa_string.h,
                   2772:          include/pa_stylesheet_connection.h,
                   2773:          include/pa_stylesheet_manager.h, include/pa_symbols.h,
                   2774:          include/pa_table.h, include/pa_threads.h, include/pa_types.h,
                   2775:          include/pa_uue.h, include/pa_xml_exception.h,
                   2776:          include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
                   2777:          lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
                   2778:          lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
                   2779:          lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
                   2780:          lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
                   2781:          lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
                   2782:          main/compile.tab.C, main/compile.y, main/compile_tools.C,
                   2783:          main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
                   2784:          main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
                   2785:          main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
                   2786:          main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
                   2787:          main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
                   2788:          main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
                   2789:          main/pa_string.C, main/pa_stylesheet_connection.C,
                   2790:          main/pa_stylesheet_manager.C, main/pa_symbols.C, main/pa_table.C,
                   2791:          main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
                   2792:          main/untaint.C, sql/pa_sql_driver.h,
                   2793:          targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
                   2794:          targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
                   2795:          targets/cgi/pa_threads.C, targets/cgi/parser3.C,
                   2796:          targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
                   2797:          types/pa_junction.h, types/pa_method.h, types/pa_property.h,
                   2798:          types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
                   2799:          types/pa_vcaller_wrapper.h, types/pa_vclass.C, types/pa_vclass.h,
                   2800:          types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
                   2801:          types/pa_vcookie.h, types/pa_vdate.C, types/pa_vdate.h,
                   2802:          types/pa_vdouble.h, types/pa_venv.C, types/pa_venv.h,
                   2803:          types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
                   2804:          types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
                   2805:          types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
                   2806:          types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
                   2807:          types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
                   2808:          types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemcached.C,
                   2809:          types/pa_vmemcached.h, types/pa_vmemory.h,
                   2810:          types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
                   2811:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
                   2812:          types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
                   2813:          types/pa_vresponse.C, types/pa_vresponse.h,
                   2814:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   2815:          types/pa_vstateless_object.h, types/pa_vstatus.C,
                   2816:          types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
                   2817:          types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
                   2818:          types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   2819:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
                   2820:          types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year:
                   2821:          2015->2017
                   2822: 
1.110     moko     2823: 2017-02-07  moko
                   2824: 
                   2825:        * configure.ac, src/include/pa_version.h: 3.4.5b -> 3.4.5rc
                   2826: 
                   2827: 2017-02-06  moko
                   2828: 
                   2829:        * src/main/pa_common.C: minor fixes, whitespace
                   2830: 
                   2831:        * src/: classes/curl.C, classes/file.C, classes/image.C,
                   2832:          include/pa_common.h, include/pa_dir.h, main/pa_common.C,
                   2833:          main/pa_dir.C, main/pa_exec.C: wchar filenames API under Windows
                   2834:          now used (implements feature #1081)
                   2835: 
                   2836:        * src/: types/pa_vcookie.C, main/pa_charset.C: cleanup
                   2837: 
                   2838: 2017-02-01  moko
                   2839: 
                   2840:        * src/include/pa_request.h: cleanup
                   2841: 
                   2842: 2017-01-30  moko
                   2843: 
                   2844:        * src/main/pa_request.C: file_lock_wait_limit -> lock_wait_timeout
                   2845: 
                   2846: 2017-01-29  moko
                   2847: 
                   2848:        * tests/: 383.html, results/383.processed: test for
                   2849:          ^reflection:stack[] added (related to feature #1052)
                   2850: 
                   2851:        * src/classes/reflection.C: else added
                   2852: 
                   2853:        * src/: include/pa_os.h, main/pa_os.C, main/pa_request.C:
                   2854:          $.max_file_lock_wait added (implements feature #1128)
                   2855: 
                   2856: 2017-01-28  moko
                   2857: 
                   2858:        * tests/: 379-curl.html, results/379-curl.processed: curl empty
                   2859:          body and other cases tests added (related to featue #1014)
                   2860: 
                   2861:        * src/classes/curl.C: bug if response is empty fixed (related to
                   2862:          feature #1014)
                   2863: 
                   2864: 2017-01-27  moko
                   2865: 
                   2866:        * src/: classes/json.C, classes/reflection.C, include/pa_request.h,
                   2867:          main/execute.C, types/pa_vmethod_frame.h: ^reflection:stack[]
                   2868:          added (implements feature #1052)
                   2869: 
                   2870: 2017-01-25  moko
                   2871: 
                   2872:        * tests/: 382.html, results/382.processed: @GET_DEFAULT returning
                   2873:          method test added
                   2874: 
                   2875: 2017-01-23  moko
                   2876: 
                   2877:        * src/classes/reflection.C: optimization: options->get replaced by
                   2878:          hash iterator
                   2879: 
                   2880:        * tests/: 381.html, results/381.processed: now -> fixed date
                   2881: 
                   2882:        * src/main/pa_request.C: warning war
                   2883: 
                   2884:        * src/targets/cgi/parser3.vcproj: Stack size increased from 2Mb to
                   2885:          5Mb (fixes bug #1058)
                   2886: 
                   2887:        * src/classes/curl.C: warning war
                   2888: 
                   2889:        * tests/: 381.html, results/381.processed: tests for ^json:string
                   2890:          $.one-line(true) option added (related to feature #1124)
                   2891: 
                   2892:        * src/: classes/json.C, types/pa_value.h: $json-string
                   2893:          $.one-line(true|false) options is now supported (implements
                   2894:          feature #1124)
                   2895: 
                   2896:        * tests/: 380.html, results/380.processed: test for modified
                   2897:          $.max_file_size added (related to bug #1014)
                   2898: 
                   2899:        * tests/: 379.html, results/auto.p: tests for rewritten http file
                   2900:          load added (related to bug #1014)
                   2901: 
                   2902:        * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
                   2903:          main/pa_common.C, main/pa_http.C: check_file_size added and used
                   2904:          in curl / file load from disk and http, http file load rewritten
                   2905:          (related to bug #1014)
                   2906: 
                   2907: 2017-01-18  moko
                   2908: 
                   2909:        * tests/: 378.html, results/378.processed: tests for ^result[]
                   2910:          added (related to feature #66)
                   2911: 
                   2912:        * src/: classes/op.C, include/pa_request.h: ^return[] can't be
                   2913:          Method::CO_WITHOUT_FRAME as frame still added in expression
                   2914:          (related to feature #66)
                   2915: 
                   2916: 2017-01-17  moko
                   2917: 
                   2918:        * tests/: 377.html, results/377.processed: test for different
                   2919:          combinations of breaks in body and delimiter (related to bug
                   2920:          #1077)
                   2921: 
                   2922:        * tests/: 376.html, results/376.processed: many ^break[] tests
                   2923:          added (related to bug #1077)
                   2924: 
                   2925:        * src/types/pa_vmethod_frame.C: "break is not allowed in expression
                   2926:          passed to native method" exception added to avoid bugs due to
                   2927:          WRITE_EXPR_RESULT skipped and native methods execution continues
                   2928:          after ^break[] (related to bug #1077)
                   2929: 
                   2930: 2017-01-14  moko
                   2931: 
                   2932:        * tests/: 330.html, results/330.processed: test results updated
                   2933:          after ^break[] bugs where fixed (related to bug #1077)
                   2934: 
                   2935:        * tests/: 329.html, results/329.processed: test results updated
                   2936:          after ^break[] bugs where fixed (related to bug #1077)
                   2937: 
                   2938:        * tests/results/320.processed: ^return[] added
                   2939: 
                   2940: 2017-01-13  moko
                   2941: 
                   2942:        * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
                   2943:          classes/table.C, include/pa_request.h, main/execute.C,
                   2944:          main/pa_request.C, targets/cgi/parser3.C,
                   2945:          types/pa_vmethod_frame.C: Request::SKIP_INTERRUPTED,
                   2946:          Request::SKIP_RETURN added and implemented, Request::SKIP_* now
                   2947:          checked after each possible process/execute call (fixes bug
                   2948:          #1077)
                   2949: 
                   2950: 2016-12-29  moko
                   2951: 
                   2952:        * src/main/pa_common.C: warning war
                   2953: 
                   2954:        * src/: classes/math.C, include/pa_random.h, include/pa_request.h,
                   2955:          include/pa_types.h, main/pa_request.C, main/pa_string.C:
                   2956:          pa_file_size_limit added, ^math:random fixed for upper limit and
                   2957:          limits more then 0x7FFFFFFF, limits now declared in pa_types.h
                   2958:          (related to feature #1014)
                   2959: 
                   2960:        * src/: classes/curl.C, classes/file.C, include/pa_common.h,
                   2961:          main/pa_common.C, main/pa_dir.C, main/pa_exec.C: stat -> pa_stat
                   2962:          (related to feature #1014)
                   2963: 
                   2964: 2016-12-28  moko
                   2965: 
                   2966:        * src/: classes/file.C, main/pa_request.C, main/pa_string.C: VS2003
                   2967:          warning war
                   2968: 
                   2969: 2016-12-26  moko
                   2970: 
                   2971:        * tests/: 341.html, results/341.processed: test for
                   2972:          ^table.hash[id;;$.type[string]] added (related to feature #1057)
                   2973: 
                   2974:        * src/classes/table.C: ^table.hash[id;;$.type[string]] support fix
                   2975:          (related to feature #1057)
                   2976: 
                   2977:        * src/types/pa_vdate.C: warning war continues...
                   2978: 
                   2979:        * src/: classes/date.C, classes/image.C, classes/table.C,
                   2980:          include/pa_config_includes.h, types/pa_vfile.C: warning war
                   2981: 
                   2982:        * src/lib/gd/gifio.C: warning war / cleanup
                   2983: 
                   2984:        * src/lib/json/pa_json.C: warning war
                   2985: 
                   2986:        * src/classes/hash.C: warning war
                   2987: 
                   2988:        * src/types/pa_vfile.C: warning war
                   2989: 
                   2990:        * src/: classes/hash.C, include/pa_common.h, types/pa_vcookie.C:
                   2991:          -Wall warning war continues
                   2992: 
                   2993:        * configure.ac: --with-build-warnings actualized
                   2994: 
                   2995: 2016-12-25  moko
                   2996: 
                   2997:        * src/main/pa_exec.C: -wAll warning war
                   2998: 
                   2999:        * src/: types/pa_vform.C, types/pa_vrequest.C, main/pa_common.C:
                   3000:          -wAll warning war
                   3001: 
                   3002:        * src/: include/pa_common.h, include/pa_sapi.h,
                   3003:          types/pa_junction.h, types/pa_method.h, types/pa_value.h,
                   3004:          types/pa_vdate.C, types/pa_vstateless_class.h, types/pa_vxdoc.h:
                   3005:          -wAll warning war
                   3006: 
                   3007: 2016-12-23  moko
                   3008: 
                   3009:        * src/lib/ltdl/Makefile.am: extra dist added
                   3010: 
                   3011:        * tests/results/344.processed: test result updated after $file.text
                   3012:          prefetched in ^hash::create[$file] (related to feature #1075)
                   3013: 
                   3014:        * src/types/: pa_vfile.C, pa_vfile.h: $file.text prefetched in
                   3015:          ^hash::create[$file] (related to feature #1075)
                   3016: 
                   3017: 2016-12-22  moko
                   3018: 
                   3019:        * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
                   3020:          main/pa_request.C, main/pa_stylesheet_connection.C,
                   3021:          types/pa_vfile.C: file_stat now return 64-bit size (implements
                   3022:          #1014 under 32-bit unix versions)
                   3023: 
                   3024: 2016-12-21  moko
                   3025: 
                   3026:        * tests/: 375.html, results/375.processed: test for exec returning
                   3027:          stated file added (related to feature #1119)
                   3028: 
                   3029:        * src/classes/file.C: load should not return file with null body
                   3030:          (fixes bug #1119)
                   3031: 
                   3032: 2016-12-14  moko
                   3033: 
                   3034:        * tests/: 374.html, results/374.processed: test for $method.name
                   3035:          added (related to feature #1117) plus method returning junction
                   3036:          test
                   3037: 
                   3038: 2016-12-13  moko
                   3039: 
                   3040:        * src/: include/pa_symbols.h, main/pa_symbols.C,
                   3041:          types/pa_vjunction.C, types/pa_vjunction.h: $method.name added
                   3042:          (implements feature #1117)
                   3043: 
                   3044:        * src/: types/pa_vform.C, include/pa_request_info.h: now only GET,
                   3045:          HEAD and TRACE can't have body (implements feature #1116)
                   3046: 
                   3047: 2016-12-09  moko
                   3048: 
                   3049:        * tests/: 373.html, results/373.processed: tests for
                   3050:          ^reflection:tainting added (related to feature #1098)
                   3051: 
                   3052:        * src/classes/reflection.C: ^reflection:tainting arguments order
                   3053:          change (related to feature #1098)
                   3054: 
                   3055: 2016-12-06  moko
                   3056: 
                   3057:        * src/: classes/reflection.C, include/pa_string.h,
                   3058:          main/pa_string.C: ^reflection:tainting[$string] added (implements
                   3059:          feature #1098)
                   3060: 
                   3061: 2016-12-05  moko
                   3062: 
                   3063:        * src/types/pa_vdouble.h: negative zero (-0) now converted to 0
                   3064:          (fixes bug #1114)
                   3065: 
                   3066: 2016-12-04  moko
                   3067: 
                   3068:        * tests/: 206.html, results/206.processed: negative zero (0/-1)
                   3069:          check added
                   3070: 
                   3071: 2016-12-03  moko
                   3072: 
                   3073:        * tests/: 346-curl.html, results/346-curl.processed: test modified
                   3074:          to test value.as_hash() usage
                   3075: 
                   3076:        * src/classes/curl.C: value.as_hash() used for correct hash
                   3077:          processing
                   3078: 
                   3079:        * src/classes/reflection.C: exceptions texts fixes
                   3080: 
                   3081: 2016-12-02  moko
                   3082: 
                   3083:        * tests/: 372.html, results/372.processed: tests for
                   3084:          ^reflection:create[ $.class[name] $.constructor[name]
                   3085:          $.arguments[ $.1[param1] $.2[param2] ... ] ] added (related to
                   3086:          feature #1094)
                   3087: 
                   3088:        * src/types/pa_vmethod_frame.h: comment added: params should be
                   3089:          declared outside of *_FRAME_ACTION as MethodParams destructor
                   3090:          will be called in ~VNativeMethodFrame
                   3091: 
                   3092:        * src/classes/reflection.C: ^reflection:create[ $.arguments[ ... ]
                   3093:          ] minor fix
                   3094: 
                   3095:        * src/: classes/reflection.C, types/pa_value.C, types/pa_value.h,
                   3096:          types/pa_vmethod_frame.C: ^reflection:create[ $.class[name]
                   3097:          $.constructor[name] $.arguments[ $.1[param1] $.2[param2] ... ] ]
                   3098:          now supported (implements feature #1094) value::as_hash added
                   3099:          (and should be used everywhere)
                   3100: 
                   3101:        * src/classes/reflection.C: cleanup
                   3102: 
                   3103: 2016-12-01  moko
                   3104: 
                   3105:        * tests/: 356.html, results/356.processed: test for method
                   3106:          junctions class name added to the resulting hash added (related
                   3107:          to feature #1068)
                   3108: 
                   3109:        * src/classes/reflection.C: for method junctions class name added
                   3110:          to the resulting hash (related to feature #1068)
                   3111: 
                   3112: 2016-11-30  moko
                   3113: 
                   3114:        * src/types/: pa_vhashfile.C, pa_vhashfile.h: file_name included in
                   3115:          exception (related to bug #1113)
                   3116: 
                   3117:        * src/types/pa_vhashfile.C: whitespace
                   3118: 
                   3119:        * src/main/pa_os.C: errno now returned as it should (fixes bug
                   3120:          #1113)
                   3121: 
                   3122:        * tests/results/: 175.processed, 192.processed, 224.processed,
                   3123:          229.processed, 239.processed, 244.processed, 246.processed,
                   3124:          314.processed, 352.processed: tests results updated after method
                   3125:          call exceptions improved as method now keeps its name
                   3126: 
                   3127:        * src/: classes/reflection.C, main/execute.C, types/pa_value.C,
                   3128:          types/pa_vmethod_frame.h: method call exceptions improved as
                   3129:          method now keeps its name
                   3130: 
                   3131:        * tests/: 224.html, 239.html, results/224.processed,
                   3132:          results/239.processed: tests and tests results updated after
                   3133:          Request::construct exception changed
                   3134: 
                   3135:        * src/: classes/reflection.C, main/execute.C: Request::construct
                   3136:          exception optimized
                   3137: 
                   3138:        * tests/: 371.html, results/371.processed: test for
                   3139:          WWrapper.get_element call in $.name.key[value] code added
                   3140:          (related to feature #1091)
                   3141: 
                   3142:        * src/types/pa_wwrapper.h: WWrapper.get_element returned, as used
                   3143:          in $.name.key[value] code (related to feature #1091)
                   3144: 
                   3145: 2016-11-29  moko
                   3146: 
                   3147:        * src/classes/op.C: VS warning war
                   3148: 
                   3149:        * src/types/: pa_vmethod_frame.h, pa_wcontext.h: VS warning war:
                   3150:          C4239: nonstandard extension used : 'return' : conversion from
                   3151:          'Value' to 'Value &' (related to feature #1020)
                   3152: 
                   3153:        * src/: main/execute.C, types/pa_vmethod_frame.h,
                   3154:          types/pa_wcontext.h: VS warning war: C4239: nonstandard extension
                   3155:          used : 'return' : conversion from 'Value' to 'Value &' (related
                   3156:          to feature #1020)
                   3157: 
                   3158:        * src/main/execute.C: VS warning war
                   3159: 
                   3160:        * src/targets/cgi/parser3.C: VS compatibility fix
                   3161: 
                   3162:        * src/include/pa_request.h: VS warning war
                   3163: 
                   3164:        * tests/: 370.html, results/370.processed: test for ^file::exec[
                   3165:          ... $.stdin[$binary_file] ] added (related to bug #1044)
                   3166: 
                   3167:        * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
                   3168:          include/pa_string.h, main/pa_exec.C: pa_exec now supports
                   3169:          $.stdin[$binary_file] (fixes bug #1044)
                   3170: 
                   3171: 2016-11-28  moko
                   3172: 
                   3173:        * src/main/pa_exec.C: whitespace
                   3174: 
                   3175:        * src/main/pa_request.C: whitespace
                   3176: 
                   3177:        * tests/: 369.html, results/369.processed: test for
                   3178:          $response:status usage added (related to feature #1099)
                   3179: 
                   3180:        * src/targets/cgi/parser3.C: HTTP response code used as exit status
                   3181:          if < 100 (implements feature #1099)
                   3182: 
                   3183:        * src/targets/cgi/parser3.C: whitespace
                   3184: 
                   3185:        * src/targets/cgi/parser3.C: whitespace
                   3186: 
                   3187:        * tests/: 368.html, results/368.processed: test updated after
                   3188:          ^reflection:filename[$method] added (related to feature #1053)
                   3189: 
                   3190:        * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
                   3191:          main/compile.y, main/execute.C, main/pa_request.C,
                   3192:          types/pa_vclass.h: filename -> filespec,
                   3193:          ^reflection:filename[$method] added (related to feature #1053)
                   3194: 
                   3195: 2016-11-27  moko
                   3196: 
                   3197:        * tests/: 368.html, results/368.processed: test for
                   3198:          reflection:filename[$class or object] added (related to feature
                   3199:          #1053)
                   3200: 
                   3201:        * src/: classes/reflection.C, main/compile.y, types/pa_vclass.h,
                   3202:          types/pa_vstateless_class.h: ^reflection:filename[$class or
                   3203:          object] added (implements feature #1053)
                   3204: 
                   3205: 2016-11-26  moko
                   3206: 
                   3207:        * src/: include/pa_request_info.h,
                   3208:          targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
                   3209:          remove_absolute_uri -> strip_absolute_uri
                   3210: 
                   3211: 2016-11-25  moko
                   3212: 
                   3213:        * src/: include/pa_request_info.h,
                   3214:          targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
                   3215:          request_info.remove_absolute_uri added to remove possible
                   3216:          http://site.name/ from $request:uri (implements feature #1112)
                   3217: 
                   3218: 2016-11-24  moko
                   3219: 
                   3220:        * tests/: 367-curl.html, results/367-curl.processed: test for
                   3221:          previous request headers clearing after redirect added (related
                   3222:          to bug #1109)
                   3223: 
                   3224:        * src/: classes/curl.C, include/pa_array.h, include/pa_http.h:
                   3225:          response headers from previous requests are now cleared, only
                   3226:          last request headers are collected (fixes bug #1109)
                   3227: 
                   3228:        * tests/results/: 266.processed, 321.processed, 356.processed:
                   3229:          tests results updated as method name now added to the resulting
                   3230:          hash for new syntax only (Imp1 compatimility fixed, related to
                   3231:          feature #1068)
                   3232: 
                   3233:        * src/classes/reflection.C: method name now added to the resulting
                   3234:          hash for new syntax only (Imp1 compatimility fixed, related to
                   3235:          feature #1068)
                   3236: 
                   3237:        * tests/results/366.processed: test for native and parser
                   3238:          implementation of ^use[] logic (related to feature #1074)
                   3239: 
                   3240:        * tests/: 366.html, 366_dir/test-duplicate.p, 366_dir/test.p: test
                   3241:          for native and parser implementation of ^use[] logic (related to
                   3242:          feature #1074)
                   3243: 
                   3244: 2016-11-23  moko
                   3245: 
                   3246:        * src/: classes/op.C, include/pa_request.h, main/compile.y,
                   3247:          main/pa_request.C: @USE file now implemented as ^use[file;
                   3248:          $.origin[origin_file] ] (implements feature #1074)
                   3249: 
1.109     moko     3250: 2016-11-21  moko
                   3251: 
1.110     moko     3252:        * tests/: 365.html, results/365.processed: test for $caller bugs in
                   3253:          3.4.4 and $caller.method now tested (related to feature #1110)
                   3254: 
                   3255:        * tests/: 364.html, results/364.processed: $caller usage in
                   3256:          different contexts now tested (related to feature #1110)
                   3257: 
                   3258:        * src/types/types.vcproj: +pa_vcaller_wrapper.h
                   3259: 
                   3260:        * src/types/Makefile.am: pa_vcaller_wrapper.h added
                   3261: 
1.109     moko     3262:        * src/: include/pa_symbols.h, main/pa_symbols.C, types/pa_method.h,
                   3263:          types/pa_vcaller_wrapper.h, types/pa_vmethod_frame.C,
                   3264:          types/pa_vmethod_frame.h:  redesign: VCallerWrapper added and
                   3265:          used (implements feature #1110)
                   3266: 
                   3267: 2016-11-20  moko
                   3268: 
                   3269:        * src/types/pa_vdouble.h: whitespace
                   3270: 
                   3271: 2016-11-11  moko
                   3272: 
                   3273:        * tests/: 363.html, results/363.processed: more tests for feature
                   3274:          #1091 (how parser methods work in expression context)
                   3275: 
                   3276:        * src/: include/pa_request.h, types/pa_vmethod_frame.h: in
                   3277:          expressions strings are now written as strings, not values by
                   3278:          write_as_string (related to feature #1091)
                   3279: 
                   3280:        * src/classes/op.C: to make more correct behavour in expression
                   3281:          context
                   3282: 
                   3283: 2016-11-07  moko
                   3284: 
                   3285:        * tests/: 362.html, results/362.processed: test for
                   3286:          xsltParseStylesheetDoc caching as xsl modification after it added
                   3287:          (related to bug #1108)
                   3288: 
                   3289:        * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltParseStylesheetDoc
                   3290:          result now cached as xdoc is modified after it (fixes bug #1108)
                   3291: 
                   3292: 2016-11-06  moko
                   3293: 
                   3294:        * src/types/pa_vxdoc.h: whitespace
                   3295: 
                   3296: 2016-11-05  moko
                   3297: 
                   3298:        * src/types/pa_vmethod_frame.h: cleanup
                   3299: 
                   3300: 2016-11-03  moko
                   3301: 
                   3302:        * tests/results/244.processed: more correct exception after method
                   3303:          frames separation
                   3304: 
                   3305:        * src/types/pa_vmethod_frame.h: minor optimizaion
                   3306: 
                   3307:        * src/types/pa_method.h: optimization: params_count added
                   3308: 
                   3309:        * src/: classes/json.C, classes/op.C, classes/reflection.C,
                   3310:          include/pa_request.h, main/execute.C, main/pa_request.C,
                   3311:          types/pa_value.C, types/pa_vmethod_frame.C,
                   3312:          types/pa_vmethod_frame.h, types/pa_vobject.C: Optimization:
                   3313:          VMethodFrame now divided into VNativeMethodFrame,
                   3314:          VParserMethodFrame, VLocalParserMethodFrame; METHOD_FRAME_ACTION,
                   3315:          EXPRESSION_FRAME_ACTION, CONSTRUCTOR_FRAME_ACTION defines added
                   3316:          and used (related to feature #1104)
                   3317: 
                   3318: 2016-11-02  moko
                   3319: 
                   3320:        * src/: classes/bool.C, classes/curl.C, classes/date.C,
                   3321:          classes/double.C, classes/file.C, classes/hash.C,
                   3322:          classes/hashfile.C, classes/image.C, classes/inet.C,
                   3323:          classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
                   3324:          classes/memcached.C, classes/op.C, classes/reflection.C,
                   3325:          classes/regex.C, classes/string.C, classes/table.C,
                   3326:          classes/xdoc.C, classes/xnode.C, include/pa_request.h,
                   3327:          main/execute.C: cleanup: r.write_pass_lang, r.write_no_lang ->
                   3328:          r.write (implements feature #1091)
                   3329: 
                   3330:        * src/main/execute.C: cleanup (related to feature #1104)
                   3331: 
                   3332:        * src/: include/pa_request.h, main/execute.C,
                   3333:          types/pa_vmethod_frame.h, types/pa_wcontext.h: VExpressionFrame
                   3334:          added, in_expression removed (implements feature #1104)
                   3335: 
                   3336: 2016-10-31  moko
                   3337: 
                   3338:        * src/types/pa_value.C: whitespace
                   3339: 
                   3340: 2016-10-28  moko
                   3341: 
                   3342:        * tests/results/244.processed: updated after error reporting fixed
                   3343:          in pa_wcontext.C
                   3344: 
                   3345:        * src/types/pa_wcontext.C: error reporting fixed
                   3346: 
                   3347:        * src/types/pa_wcontext.h: whitespace
                   3348: 
                   3349:        * src/classes/image.C: not fully readed entries are no longer
                   3350:          processed (fixes bug #1106)
                   3351: 
                   3352: 2016-10-26  moko
                   3353: 
                   3354:        * src/classes/image.C: whitespace
                   3355: 
                   3356:        * src/: include/pa_request.h, include/pa_string.h, main/untaint.C,
                   3357:          types/pa_vmail.C, types/pa_vmethod_frame.h, types/pa_wcontext.h,
                   3358:          types/pa_wwrapper.h: optimization: L_PASS_APPENDED removed as no
                   3359:          longer required (related to feature #1091)
                   3360: 
                   3361:        * tests/results/: 264.processed, 350.processed: test results update
                   3362:          reverted (whitespace optimization) after write_no_lang removed :)
                   3363:          (related to feature #1091)
                   3364: 
                   3365:        * src/: classes/file.C, classes/hash.C, classes/op.C,
                   3366:          classes/string.C, classes/table.C, classes/void.C,
                   3367:          classes/xdoc.C, include/pa_request.h, main/pa_xml_io.C,
                   3368:          types/pa_vmail.C: Temp_lang removed, write_no_lang now almost
                   3369:          equal write_pass_lang (related to feature #1091)
                   3370: 
                   3371:        * tests/results/: 264.processed, 350.processed: test results
                   3372:          updated (whitespace optimization) after write_assign_lang removed
                   3373:          (related to feature #1091)
                   3374: 
                   3375:        * tests/: 361.html, results/361.processed: test for non-string
                   3376:          ^untaint added (related to feature #1091)
                   3377: 
                   3378:        * src/: classes/curl.C, classes/date.C, classes/file.C,
                   3379:          classes/hash.C, classes/op.C, classes/string.C,
                   3380:          include/pa_request.h, main/execute.C: optimization:
                   3381:          write_assign_lang removed as not required (first part of feature
                   3382:          #1091 implementation)
                   3383: 
1.108     moko     3384: 2016-10-12  moko
                   3385: 
                   3386:        * tests/: 360.html, results/360.processed: more test code (related
                   3387:          to feature #1104)
                   3388: 
                   3389:        * src/: classes/op.C, classes/reflection.C, include/pa_opcode.h,
                   3390:          include/pa_request.h, main/compile.y, main/execute.C: opcode
                   3391:          OP_PREPARE_TO_EXPRESSION removed as not required, optimized
                   3392:          WContext is next task (implements feature #1104)
                   3393: 
                   3394:        * src/types/pa_method.h: more detailed comment for CO_WITHOUT_FRAME
                   3395:          / CO_WITHOUT_WCONTEXT
                   3396: 
                   3397:        * tests/: 360.html, results/360.processed: test for in expression
                   3398:          state (related to feature #1104)
                   3399: 
                   3400: 2016-10-11  moko
                   3401: 
                   3402:        * src/main/execute.C: compilation without OPTIMIZE_CALL fixed
                   3403: 
                   3404:        * src/classes/op.C: default value removed from initializer
                   3405: 
                   3406:        * src/types/pa_vmemcached.C: FreeBSD 11 warning war
                   3407: 
                   3408:        * src/types/pa_vmethod_frame.h: FreeBSD 11 warning war
                   3409: 
                   3410: 2016-10-10  moko
                   3411: 
                   3412:        * tests/results/auto.p: test updated adter $RECOURSION_LIMIT,
                   3413:          $LOOP_LIMIT  -> $LIMITS[ $.max_recoursion, $.max_loop ] (related
                   3414:          to feature #42)
                   3415: 
                   3416:        * src/main/pa_request.C: $RECOURSION_LIMIT, $LOOP_LIMIT  ->
                   3417:          $LIMITS[ $.max_recoursion, $.max_loop ] (related to feature #42)
                   3418: 
                   3419: 2016-10-08  moko
                   3420: 
                   3421:        * src/classes/double.C: whitespace
                   3422: 
                   3423: 2016-10-07  moko
                   3424: 
                   3425:        * src/types/pa_vmethod_frame.h: reorder
                   3426: 
                   3427: 2016-10-06  moko
                   3428: 
                   3429:        * src/classes/date.C: typo
                   3430: 
                   3431:        * src/types/pa_vmethod_frame.h: whitespace + cleanup
                   3432: 
                   3433:        * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
                   3434:          classes/op.C, classes/reflection.C, types/pa_vmethod_frame.C,
                   3435:          types/pa_vmethod_frame.h: params.get now returns Value&, not
                   3436:          Value*
                   3437: 
                   3438:        * src/types/pa_vmethod_frame.C: params.get should return Value&.
                   3439: 
                   3440:        * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: get_as
                   3441:          removed; first as_* code rewrite
                   3442: 
                   3443: 2016-10-05  moko
                   3444: 
                   3445:        * src/include/pa_request.h: whitespace
                   3446: 
                   3447:        * tests/: 359.html, results/359.processed: test for VCodeFrame and
                   3448:          intercept_string added (related to feature #1097)
                   3449: 
                   3450:        * src/: classes/image.C, classes/op.C, classes/table.C,
                   3451:          include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
                   3452:          optimization: intercept_string removed (implements feature #1097)
                   3453: 
                   3454:        * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: whitespace
                   3455: 
                   3456:        * src/types/: pa_vcode_frame.h, pa_wwrapper.h: get_element removed
                   3457:          from VCodeFrame and WWrapper as not required
                   3458: 
                   3459: 2016-10-04  moko
                   3460: 
                   3461:        * src/: classes/curl.C, classes/date.C, classes/double.C,
                   3462:          classes/file.C, classes/hash.C, classes/image.C, classes/inet.C,
                   3463:          classes/int.C, classes/json.C, classes/op.C,
                   3464:          classes/reflection.C, classes/string.C, classes/table.C,
                   3465:          include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
                   3466:          proces_to_value -> process after StringOrValue removed (related
                   3467:          to feature #1020)
                   3468: 
                   3469:        * src/classes/form.C: whitespace
                   3470: 
                   3471:        * src/main/execute.C: VALUE__GET_BASE_CLASS added to opcode_names
                   3472: 
                   3473:        * tests/: 357.html, 358.html, results/357.processed,
                   3474:          results/358.processed, results/auto.p: test for @conf
                   3475:          $RECOURSION_LIMIT and $LOOP_LIMIT added (related to feature #42)
                   3476: 
                   3477: 2016-10-03  moko
                   3478: 
                   3479:        * src/: classes/op.C, include/pa_request.h, main/pa_request.C,
                   3480:          types/pa_vtable.C: @conf $RECOURSION_LIMIT and $LOOP_LIMIT now
                   3481:          supported (implements feature #42)
                   3482: 
                   3483:        * src/types/pa_vregex.h: no reason for VRegex to be
                   3484:          is_evaluated_expr
                   3485: 
                   3486:        * src/classes/curl.C: CURL_OPT(CURL_INT, SSLVERSION) added
                   3487:          (implements feature #1095)
                   3488: 
                   3489: 2016-10-01  moko
                   3490: 
                   3491:        * src/classes/reflection.C: $.overwrite in ^reflection:mixin is now
                   3492:          false by default (related to feature #1089)
                   3493: 
                   3494: 2016-09-30  moko
                   3495: 
                   3496:        * src/types/pa_wcontext.h: cleanup
                   3497: 
                   3498: 2016-09-29  moko
                   3499: 
                   3500:        * src/main/execute.C: whitespace
                   3501: 
                   3502:        * src/include/pa_request.h: whitespace
                   3503: 
                   3504:        * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
                   3505:          classes/op.C, classes/table.C, include/pa_request.h,
                   3506:          main/execute.C, main/pa_request.C, types/pa_vmethod_frame.h,
                   3507:          types/pa_vobject.C, types/pa_wcontext.h: optimization:
                   3508:          StringOrValue removed as it just slows down and adds complexity
                   3509:          (implements feature #1020)
                   3510: 
                   3511: 2016-09-28  moko
                   3512: 
                   3513:        * tests/: 356.html, results/266.processed, results/321.processed,
                   3514:          results/356.processed: tests updated after name was added to
                   3515:          method_info hash, test for ^reflection:method_info[junction]
                   3516:          added (related to feature #1068)
                   3517: 
                   3518:        * src/classes/reflection.C: ^reflection:method_info[junction] now
                   3519:          supported, method name added to the resulting hash (implements
                   3520:          feature #1068)
                   3521: 
                   3522:        * tests/: 276.html, results/276.processed: more tests for
                   3523:          ^reflection:delete[]
                   3524: 
                   3525:        * src/classes/reflection.C: fixed bug then ^reflection:delete
                   3526:          didn't work on class and could damage native objects (like file)
                   3527: 
                   3528: 2016-09-26  moko
                   3529: 
                   3530:        * tests/: 345.html, 346-curl.html, 347-curl.html, 348.html,
                   3531:          results/345.processed, results/346-curl.processed,
                   3532:          results/347-curl.processed, results/348.processed: numbers added
                   3533:          to simplify diff analysis
                   3534: 
                   3535:        * tests/: 352.html, results/352.processed: test result updated as
                   3536:          method name used
                   3537: 
                   3538:        * src/classes/reflection.C: method name used
                   3539: 
                   3540:        * src/types/: pa_method.h, pa_vstateless_class.C: method now keeps
                   3541:          its name
                   3542: 
                   3543:        * src/types/pa_method.h: whitespace
                   3544: 
                   3545:        * src/classes/reflection.C: both method and field with one name can
                   3546:          exist.
                   3547: 
                   3548:        * src/classes/reflection.C: ^reflection:mixin added (implements
                   3549:          feature #1089)
                   3550: 
                   3551:        * tests/: 355.html, results/355.processed: property appears in
                   3552:          derived class if added in base test added
                   3553: 
                   3554:        * src/types/pa_vstateless_class.h: get_method declaration +
                   3555:          whitespace
                   3556: 
                   3557:        * tests/: 354.html, results/354.processed: nice test from method
                   3558:          and property with one name in class added
                   3559: 
                   3560: 2016-09-23  moko
                   3561: 
                   3562:        * src/classes/reflection.C: ^reflection:method usage documented
                   3563: 
                   3564: 2016-09-22  moko
                   3565: 
                   3566:        * src/: classes/classes.vcproj, types/types.vcproj: we need RTTI as
                   3567:          we use 'dynamic_cast' on polymorphic type 'Value'. Without it
                   3568:          compile warning and GPF occures on VS2003 (related to feature
                   3569:          #1087)
                   3570: 
                   3571:        * tests/: 350.html, results/350.processed: test added for
                   3572:          $.encloser[] support in ^table::create (related to feature #11)
                   3573: 
                   3574:        * src/classes/table.C: another minor fix (related to feature #11)
                   3575: 
1.107     moko     3576: 2016-09-21  moko
                   3577: 
                   3578:        * src/include/pa_config_fixed.h: vs2015 compilation fixes
                   3579: 
                   3580:        * src/: classes/curl.C, classes/file.C, classes/hash.C,
                   3581:          classes/json.C, classes/string.C, classes/table.C,
                   3582:          classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
                   3583:          main/pa_common.C, main/pa_http.C, main/pa_request.C,
                   3584:          main/pa_sql_driver_manager.C, types/pa_vfile.C, types/pa_vmail.C,
                   3585:          types/pa_vrequest.C, types/pa_vresponse.C: charsets ->
                   3586:          pa_charsets, vs2015 warning war
                   3587: 
                   3588:        * src/classes/table.C: vs2015 warning war
                   3589: 
                   3590:        * src/types/pa_vdate.C: vs2015 warning war
                   3591: 
                   3592:        * src/main/: pa_common.C, pa_globals.C: vs2015 compilation fixes
                   3593: 
                   3594:        * src/targets/cgi/parser3.vcproj: wsock32 -> ws2_32.lib (winsock 1
                   3595:          -> winsock 2) for vs2015 compatibility (getaddrinfo functions)
                   3596: 
                   3597:        * src/main/pa_common.C: vs2015 compilation fixes
                   3598: 
                   3599:        * src/: include/pa_common.h, lib/smtp/smtp.C, main/pa_common.C:
                   3600:          vs2015 compilation fixes
                   3601: 
                   3602:        * src/main/pa_charset.C: vs2015 warning war
                   3603: 
                   3604:        * src/: classes/file.C, types/pa_wwrapper.h: vs2015 warning war
                   3605: 
                   3606:        * src/main/pa_charset.C: vs2015 warning war
                   3607: 
                   3608:        * src/types/: pa_wcontext.h, pa_vmethod_frame.h: vs2015 warning war
                   3609: 
                   3610:        * src/types/pa_vdate.C: vs2015 compilation fix
                   3611: 
                   3612:        * src/: include/pa_memory.h, main/pa_memory.C: VS2015 warning war
                   3613: 
                   3614:        * src/: lib/json/pa_json.C, classes/mail.C, classes/string.C:
                   3615:          VS2015 compilation fixes
                   3616: 
                   3617:        * src/classes/table.C: minor fix (related to feature #11)
                   3618: 
                   3619:        * tests/results/282.processed: no longer skipping extra enclosers
                   3620:          (related to feature #11)
                   3621: 
                   3622:        * src/classes/table.C: minor fix + no longer skipping extra
                   3623:          enclosers (related to feature #11)
                   3624: 
                   3625:        * src/classes/table.C: minor optimization (related to feature #11)
                   3626: 
                   3627:        * src/classes/table.C: minor fix and optimization (related to
                   3628:          feature #11)
                   3629: 
                   3630: 2016-09-20  moko
                   3631: 
                   3632:        * tests/: 353.html, results/353.processed: test for
                   3633:          PC.cclass->is_vars_local() check in one_big_piece in ^process[]
                   3634:          added (related to bug #1090)
                   3635: 
                   3636:        * src/main/compile.y: PC.cclass->is_vars_local() check added for
                   3637:          one_big_piece (fixes bug #1090)
                   3638: 
                   3639:        * tests/: 229.html, results/229.processed: code coverage tests
                   3640: 
                   3641:        * src/classes/op.C: bugfix: no more GPF if ^process[$context] (no
                   3642:          body) was called
                   3643: 
                   3644:        * src/classes/op.C: whitespace
                   3645: 
                   3646:        * tests/: 323.html, results/323.processed: test for code junction
                   3647:          should not be returned by ^reflection:class, ^reflection:base
                   3648: 
                   3649:        * src/classes/reflection.C: bugfix: code junction should not be
                   3650:          returned by ^reflection:class, ^reflection:base
                   3651: 
                   3652:        * tests/: 323.html, 352.html, results/352.processed: no more
                   3653:          exception for ^reflection:method[class;no-such-method] (related
                   3654:          to feature #1087)
                   3655: 
                   3656:        * src/classes/reflection.C:
                   3657:          ^reflection:method[class;no-such-method] : exception -> void
                   3658:          (related to feature #1087)
                   3659: 
                   3660:        * src/include/pa_request.h: request::write_value added to allow
                   3661:          write value without convertion (related to issue #1091)
                   3662: 
                   3663: 2016-09-19  moko
                   3664: 
                   3665:        * src/main/pa_random.C: windows build fix
                   3666: 
                   3667:        * src/types/pa_vhash.h: warning war
                   3668: 
                   3669: 2016-09-14  moko
                   3670: 
                   3671:        * tests/: 352.html, 552.html, results/352.processed,
                   3672:          results/552.processed: test for ^reflection:method[] extension
                   3673:          added (related to feature #1087)
                   3674: 
                   3675:        * tests/: 552.html, results/552.processed: test for
                   3676:          ^reflection:method[] extension added (related to feature #1087)
                   3677: 
                   3678:        * src/classes/reflection.C: compatibility issue fixed, VClass
                   3679:          dynamic_cast check added (related to feature #1087)
                   3680: 
                   3681:        * tests/: 351.html, results/351.processed: test for @auto[]
                   3682:          inheritance bug diring ^process[] added (related to bug #1088)
                   3683: 
                   3684:        * src/: classes/op.C, main/pa_request.C,
                   3685:          types/pa_vstateless_class.C: set_method now checks for @auto[] to
                   3686:          disable it inheritance during ^process (fixes bug #1088)
                   3687: 
                   3688:        * src/classes/reflection.C: ^reflection:method[$class:method;$self]
                   3689:          added (implements feature #1087)
                   3690: 
                   3691: 2016-09-13  moko
                   3692: 
                   3693:        * tests/: 349.html, results/auto.p: test for objects prototyping
                   3694:          added and $OBJECT-PROTOTYPE(false) is used for old tests (related
                   3695:          to feature #1086)
                   3696: 
                   3697:        * src/: main/pa_request.C, types/pa_vclass.C, types/pa_vclass.h,
                   3698:          types/pa_vobject.C: objects now are not class instances, but have
                   3699:          class as prototype, can be overridden by $OBJECT-PROTOTYPE(false)
                   3700:          in @conf (implements feature #1086)
                   3701: 
                   3702: 2016-09-08  moko
                   3703: 
                   3704:        * src/: classes/file.C, classes/mail.C, classes/string.C,
                   3705:          classes/table.C, main/pa_http.C, main/pa_string.C,
                   3706:          include/pa_string.h: cleanup: string::split limit argument
                   3707:          removed as no longer required, pos_after no longer reference
                   3708:          (related to feature #11)
                   3709: 
                   3710:        * src/classes/table.C, tests/results/348.processed: now exception
                   3711:          is rised when invalid option is passed to ^table::create[]
                   3712: 
                   3713:        * tests/: 282.cfg, 282.html, results/282.processed: more code
                   3714:          coverage tests
                   3715: 
                   3716:        * tests/: 348.html, results/348.processed: code coverage tests
                   3717:          added
                   3718: 
                   3719:        * tests/: 348.html, results/348.processed: generic ^table::create[]
                   3720:          tests
                   3721: 
                   3722:        * tests/: 035.html, results/035.processed, results/272.processed:
                   3723:          tests updated after $.encloser[] support for ^table::create
                   3724:          implementation (related to feature #11)
                   3725: 
                   3726:        * src/classes/table.C: $.encloser[] support for ^table::create
                   3727:          finally added (implements feature #11)
                   3728: 
                   3729: 2016-09-07  moko
                   3730: 
                   3731:        * src/include/pa_string.h: added StringSplitHelper as friend
                   3732:          (related to feature #11)
                   3733: 
                   3734:        * src/include/pa_string.h: body and langs now protected, not
                   3735:          private to allow inheritance (related to feature #11)
                   3736: 
                   3737:        * src/classes/table.C: lsplit optimized before cloning for
                   3738:          ^table::create with $.encloser[] (related to feature #11)
                   3739: 
                   3740:        * src/classes/table.C: optimizaion: TableControlChars.separators
                   3741:          added and used (related to feature #11)
                   3742: 
                   3743:        * src/classes/table.C: spelling:
                   3744: 
                   3745:          TableSeparators -> TableControlChars column -> separator
                   3746:          separators -> control_chars
                   3747: 
                   3748: 2016-09-06  moko
                   3749: 
                   3750:        * src/main/pa_string.C: whitespace
                   3751: 
                   3752:        * src/main/pa_string.C: whitespace
                   3753: 
                   3754: 2016-09-01  moko
                   3755: 
                   3756:        * tests/: 347-curl.html, results/347-curl.processed: to make tests
                   3757:          results OS-independent
                   3758: 
                   3759:        * src/: include/pa_http.h, main/pa_http.C: typo bugfix for clang
                   3760:          compiler (related to feature #1042)
                   3761: 
                   3762: 2016-08-15  moko
                   3763: 
                   3764:        * src/include/pa_string.h: whitespace
                   3765: 
                   3766:        * src/classes/table.C: whitespace
                   3767: 
1.106     moko     3768: 2016-08-05  moko
                   3769: 
                   3770:        * tests/: 344.html, results/344.processed: test for
                   3771:          ^hash::create[$file] added (related to feature #1075)
                   3772: 
                   3773:        * src/types/: pa_vfile.h, pa_vmail.C: ^hash::create[$file] now
                   3774:          supported (implements feature #1075)
                   3775: 
                   3776: 2016-08-04  moko
                   3777: 
                   3778:        * tests/: 341.html, results/341.processed: more code coverage tests
                   3779: 
                   3780:        * tests/: 346-curl.html, results/346-curl.processed: more code
                   3781:          coverage tests for curl
                   3782: 
                   3783:        * tests/: 346-curl.html, results/346-curl.processed: more code
                   3784:          coverage tests for curl
                   3785: 
                   3786:        * tests/: 223-curl.html, 223.html, results/223-curl.processed,
                   3787:          results/223.processed: code coverage tests: $.form[ $.table[] ]
                   3788:          test added
                   3789: 
                   3790:        * tests/: 223-curl.html, results/223-curl.processed: more code
                   3791:          coverage tests for curl
                   3792: 
                   3793: 2016-08-03  moko
                   3794: 
                   3795:        * src/classes/curl.C: dlink(curl_library) now called not once, but
                   3796:          until it will be loaded, allowing to find existing library.
                   3797: 
                   3798:        * tests/: 346-curl.html, 347-curl.html, results/346-curl.processed,
                   3799:          results/347-curl.processed: more code coverage tests for curl
                   3800: 
                   3801:        * tests/: 339-curl.html, 339.html, 346-curl.html, Makefile,
                   3802:          results/339-curl.processed, results/346-curl.processed: curl
                   3803:          functionality tests
                   3804: 
                   3805: 2016-08-02  moko
                   3806: 
                   3807:        * tests/: 339.html, results/339.processed: test for tables in
                   3808:          ^file:load[] and ^curl:load[] (commented) added (related to
                   3809:          feature #1042)
                   3810: 
                   3811:        * tests/: 345.html, results/345.processed: code coverage tests for
                   3812:          file class
                   3813: 
                   3814:        * tests/: 344.html, results/344.processed: code coverage tests
                   3815: 
                   3816:        * tests/: 344.html, results/344.processed: mdate removed from
                   3817:          output
                   3818: 
                   3819:        * src/classes/file.C: minor bugfix: is_text should be taked from
                   3820:          fcontent.is_text_mode() if not set (related to feature #1061)
                   3821: 
                   3822:        * tests/: 344.html, results/344.processed: more tests
                   3823: 
                   3824:        * tests/: 343.html, 344.html, results/343.processed,
                   3825:          results/344.processed: tests for ^file::create[ $.from-charset
                   3826:          and $.to-charset ] (related to feature #1061)
                   3827: 
                   3828:        * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
                   3829:          aset_text_mode argument optimized
                   3830: 
                   3831:        * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
                   3832:          checkBOM now used in detect_binary_content (related to feature
                   3833:          #1061)
                   3834: 
                   3835:        * src/main/pa_request.C: load_charset no longer required to_upper
                   3836: 
                   3837:        * src/types/pa_vfile.C: bugfix: ^file::create[$text_file;...] now
                   3838:          preserves original file mode (if no $.mode specified)
                   3839: 
                   3840:        * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
                   3841:          ^file::create now supports $.from-charset[] and $.to-charset
                   3842:          options (implements feature #1061), automatic transcode is done
                   3843:          if text file is created from binary file and charset is detected.
                   3844: 
                   3845: 2016-07-30  moko
                   3846: 
                   3847:        * src/classes/table.C: ^t.hash[..;] now supported (related to
                   3848:          feature #1057)
                   3849: 
                   3850:        * tests/: 341.html, results/341.processed: test for ^t.hash[..;]
                   3851:          added (related to feature #1057)
                   3852: 
                   3853:        * tests/: 286.html, results/286.processed: code tests coverage
                   3854: 
                   3855: 2016-07-29  moko
                   3856: 
                   3857:        * src/classes/table.C: table size should be checked inside menu and
                   3858:          foreach (related to feature #858)
                   3859: 
                   3860:        * src/: classes/curl.C, classes/file.C, classes/string.C,
                   3861:          classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
                   3862:          main/pa_common.C, main/pa_http.C, main/pa_sql_driver_manager.C,
                   3863:          types/pa_vmail.C, types/pa_vrequest.C, types/pa_vresponse.C:
                   3864:          charsets.get now does str_upper inside (related to feature #1061)
                   3865: 
                   3866:        * tests/: 342.html, results/342.processed: more code coverage tests
                   3867: 
                   3868:        * tests/: 342.html, outputs/342.processed: table menu code coverage
                   3869:          + foreach test added (related to feature #858)
                   3870: 
                   3871:        * tests/: 341.html, results/341.processed: tests for
                   3872:          ^table.hash[]{code} added + code coverage tests (related to
                   3873:          feature #1057)
                   3874: 
                   3875:        * src/: include/pa_common.h, classes/table.C: ^table.hash[]{code as
                   3876:          value} support (implements feature #1057)
                   3877: 
                   3878:        * src/classes/table.C: whitespace
                   3879: 
                   3880: 2016-07-28  moko
                   3881: 
                   3882:        * src/: classes/curl.C, types/pa_vfile.C: curl now saves filename
                   3883:          from URL, if not specified query string removed from url-based
                   3884:          filenames in ^curl:load[] and ^file::load[] (related to feature
                   3885:          #1042)
                   3886: 
                   3887: 2016-07-27  moko
                   3888: 
                   3889:        * tests/: 340.html, results/340.processed: test for
                   3890:          transcode_text_result=false added (related to issue #1042)
                   3891: 
                   3892: 2016-07-26  moko
                   3893: 
                   3894:        * src/types/pa_vfile.C: file name should not be empty (if file path
                   3895:          is folder and ends with /) (related to feature #1042)
                   3896: 
                   3897:        * src/main/pa_http.C: whitespace optimizaion
                   3898: 
                   3899:        * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
                   3900:          main/pa_common.C, main/pa_http.C: ^curl:load[] now support
                   3901:          multiple headers, ^file::load supports headers transcoding
                   3902:          (implements feature #1042)
                   3903: 
                   3904: 2016-07-25  moko
                   3905: 
                   3906:        * src/include/pa_common.h: PA_DEFAULT added
                   3907: 
                   3908: 2016-07-22  moko
                   3909: 
                   3910:        * tests/: 338.html, results/338.processed: test for
                   3911:          $date.field(value) added (related to feature #1066)
                   3912: 
                   3913:        * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
                   3914:          $date.field(value) now supported for y/m/d/h/m/s (implements
                   3915:          feature #1066)
                   3916: 
1.105     moko     3917: 2016-07-21  moko
                   3918: 
                   3919:        * src/: classes/file.C, classes/image.C, include/pa_common.h,
                   3920:          main/pa_common.C: pa_common.h: File_read_action: fname, as_text
                   3921:          arguments removed; image.C - absolute path shown in exception
                   3922:          (implements feature #1071)
                   3923: 
                   3924:        * tests/: 235.html, results/235.processed: test and test result
                   3925:          updated after static boundary in mail and Errors-To: mail header
                   3926:          removed (related to feature #1047)
                   3927: 
                   3928:        * src/: classes/math.C, include/pa_random.h, main/pa_http.C,
                   3929:          main/pa_random.C, types/pa_vmail.C: get_uuid_boundary() added and
                   3930:          used, static boundary in mail removed, Errors-To: mail header
                   3931:          removed (implements feature #1047)
                   3932: 
                   3933: 2016-07-20  moko
                   3934: 
                   3935:        * src/: classes/reflection.C, types/pa_vstateless_class.h:
                   3936:          equest.classes(): Value -> VStateless_class, part 3 (related to
                   3937:          issue #1051)
                   3938: 
                   3939:        * src/: classes/reflection.C, include/pa_request.h, main/execute.C:
                   3940:          request.classes(): Value -> VStateless_class, part 2 (related to
                   3941:          issue #1051)
                   3942: 
                   3943:        * tests/results/: 224.processed, 323.processed: classes without
                   3944:          methods should not be methoded (related to issue #1051)
                   3945: 
                   3946:        * src/: classes/reflection.C, include/pa_request.h, main/compile.y,
                   3947:          main/compile_tools.h, main/pa_request.C: request.classes(): Value
                   3948:          -> VStateless_class, part 1 (related to issue #1051)
                   3949: 
                   3950:        * tests/: 337.html, results/337.processed: test for
                   3951:          ^reflection:fields_reference[] and VHashReference class added
                   3952:          (related to feature #1072)
                   3953: 
                   3954:        * src/: classes/hash.C, classes/json.C, classes/reflection.C,
                   3955:          types/pa_value.h, types/pa_vhash.h, types/pa_vobject.h: VHashBase
                   3956:          and VHashReference added, allowing ^reflection:fields_reference[]
                   3957:          implementation (closes feature #1072)
                   3958: 
                   3959: 2016-07-19  moko
                   3960: 
                   3961:        * tests/: 323.html, results/323.processed: we want to see
                   3962:          "methoded"
                   3963: 
                   3964:        * tests/: 336.html, results/336.processed: test for $BASE:property
                   3965:          and ^BASE:method (OP_VALUE__GET_BASE_CLASS) added (related to bug
                   3966:          #1059)
                   3967: 
                   3968:        * src/: include/pa_opcode.h, main/compile.y, main/execute.C,
                   3969:          types/pa_vstateless_class.h, types/pa_wcontext.h: no more
                   3970:          somebody_entered_some_class, $BASE:property works again,
                   3971:          ^BASE:method[] bugs fixed (fixes bug #1059)
                   3972: 
                   3973: 2016-07-14  moko
                   3974: 
                   3975:        * tests/: 335.html, results/335.processed: test for feature #1055
                   3976:          added
                   3977: 
                   3978:        * src/classes/hash.C: bugfix: $._default was not copied if empty
                   3979:          feature: ^hash.contains[_default] added (implements feature
                   3980:          #1055)
                   3981: 
                   3982: 2016-07-13  moko
                   3983: 
                   3984:        * src/classes/reflection.C: bugfix: ^reflection:def[class;name]
                   3985:          should not call @autouse (http://www.parser.ru/forum/?id=83480)
                   3986: 
                   3987: 2016-07-05  moko
                   3988: 
                   3989:        * src/classes/hash.C: Optimization: HashStringValue::Iterator used
                   3990:          in ^hash.foreach (related to feature #1073)
                   3991: 
                   3992: 2016-07-04  moko
                   3993: 
                   3994:        * tests/: 134.html, 281.html, results/134.processed,
                   3995:          results/281.processed: tests updated after hash blocking removed
                   3996:          (related to feature #1073)
                   3997: 
                   3998:        * src/: classes/hash.C, include/pa_hash.h, types/pa_vhash.h: hash
                   3999:          no longer blocks on change during foreach (implements feature
                   4000:          #1073)
                   4001: 
                   4002: 2016-06-17  moko
                   4003: 
                   4004:        * tests/: 330.html, results/330.processed: try exception source
                   4005:          test added (related to bug in #1062)
                   4006: 
                   4007:        * tests/: 334.html, results/334.processed: Exception stack trace
                   4008:          test added (related to bug in $1062)
                   4009: 
                   4010:        * src/classes/op.C: Exception trace now correctly restored and
                   4011:          errors reported (related to bug #1062)
                   4012: 
1.104     moko     4013: 2016-05-25  moko
                   4014: 
                   4015:        * src/main/compile.y: minor cleanup + beauty
                   4016: 
                   4017: 2016-05-24  moko
                   4018: 
                   4019:        * tests/: 333.html, results/333.processed: more exceptions testing
                   4020: 
                   4021:        * tests/: 332.html, results/332.processed: test for FIELDS_SYMBOL,
                   4022:          _DEFAULT_SYMBOL, CALLER_SYMBOL, SELF_SYMBOL added (related to
                   4023:          features #1056, #1026)
                   4024: 
                   4025:        * src/: classes/json.C, include/pa_symbols.h, main/pa_symbols.C,
                   4026:          types/pa_vhash.C, types/pa_vhash.h, types/pa_vtable.C,
                   4027:          types/pa_vtable.h: FIELDS_SYMBOL, _DEFAULT_SYMBOL added and used
                   4028:          (implements feature #1056)
                   4029: 
                   4030:        * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
                   4031:          main/execute.C, main/pa_symbols.C, types/pa_vjunction.C,
                   4032:          types/pa_vstateless_class.C, types/pa_vstateless_class.h:
                   4033:          CLASS_SYMBOL, CLASS_NAME_SYMBOL added and used (related to
                   4034:          feature #1026)
                   4035: 
                   4036:        * src/: classes/reflection.C, include/pa_symbols.h, main/compile.y,
                   4037:          main/compile_tools.C, main/compile_tools.h, main/pa_symbols.C,
                   4038:          types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: Symbols now
                   4039:          have *_SYMBOL naming convention. STATIC_SYMBOL, DYNAMIC_SYMBOL,
                   4040:          LOCALS_SYMBOL, PARTIAL_SYMBOL, REM_SYMBOL where added (related to
                   4041:          feature #1026)
                   4042: 
                   4043:        * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
                   4044:          main/pa_globals.C, main/pa_symbols.C, types/pa_vmethod_frame.C,
                   4045:          types/pa_vmethod_frame.h, types/pa_vstateless_class.C:
                   4046:          SYMBOLS_CACHING define implemented (related to feature #1026)
                   4047: 
                   4048:        * src/main/main.vcproj: + ps_symbols
                   4049: 
                   4050:        * src/: include/Makefile.am, include/pa_string.h,
                   4051:          include/pa_symbols.h, main/Makefile.am, main/compile.tab.C,
                   4052:          main/compile.y, main/compile_tools.C, main/pa_symbols.C,
                   4053:          types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
                   4054:          types/pa_vstateless_class.C: initial implementation for symbols
                   4055:          cache (related to feature #1026)
                   4056: 
                   4057:        * src/: include/pa_common.h, main/pa_http.C: minor cleanup
                   4058: 
                   4059:        * src/main/pa_globals.C: minor cleanup
                   4060: 
                   4061: 2016-05-19  moko
                   4062: 
                   4063:        * src/types/pa_vhash.h: minor optimization: ^hash.fields[] removed
                   4064:          (related to feature #1046)
                   4065: 
                   4066:        * tests/: 331.html, results/331.processed: test for
                   4067:          BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE removal added
                   4068:          (related to feature #1051)
                   4069: 
                   4070:        * src/main/compile.y:
                   4071:          BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE error removed
                   4072:          (implements feature #1054)
                   4073: 
                   4074: 2016-05-18  moko
                   4075: 
                   4076:        * src/types/pa_vtable.C, tests/results/324.processed: no more
                   4077:          "column not found" exception for ^table.no-such-method[] (related
                   4078:          to feature #1046)
                   4079: 
                   4080:        * tests/: 261.html, results/261.processed: test added and updated
                   4081:          after feature #1046 implementation
                   4082: 
                   4083:        * src/: classes/string.C, types/pa_value.C, types/pa_vstring.h,
                   4084:          types/pa_vvoid.h: $string.anything works for whitespace strings,
                   4085:          ^string.contains added for hash compatibility, $string.method no
                   4086:          longer returns stting method (implements feature #1046)
                   4087: 
                   4088: 2016-05-12  moko
                   4089: 
                   4090:        * src/classes/curl.C: content-type response header no longer
                   4091:          ignored (fixes issue #1045)
                   4092: 
                   4093:        * tests/: 330.html, results/330.processed: test for incomplete
                   4094:          finally execution when break occures added (related to issue
                   4095:          #1077)
                   4096: 
                   4097:        * src/classes/op.C: bugfix: Request::skip reset is called before
                   4098:          executing catch and finally code (fixes issue #1062)
                   4099: 
                   4100: 2016-05-11  moko
                   4101: 
                   4102:        * tests/: 329.html, results/329.processed: test for invalid
                   4103:          ^break[] behavour added (bug #1077)
                   4104: 
                   4105:        * src/classes/op.C: try_catch code cleanup (related to bug #1062)
                   4106: 
                   4107: 2016-04-24  moko
                   4108: 
                   4109:        * src/types/pa_vstateless_class.h: warning war
                   4110: 
                   4111: 2016-04-17  moko
                   4112: 
                   4113:        * tests/: 328.html, results/328.processed: test for
                   4114:          ^break(condition) and ^continue(condition) (related to feature
                   4115:          #1063)
                   4116: 
                   4117:        * src/classes/op.C: ^break(condition) and ^continue(condition)
                   4118:          implemented (feature #1063)
                   4119: 
                   4120: 2016-04-12  moko
                   4121: 
                   4122:        * tests/results/280.processed: ordered hash now used for class
                   4123:          methods and properties (test results updated for feature #1069)
                   4124: 
                   4125:        * src/classes/: xdoc.C, xnode.C: xnode_class initialization moved
                   4126:          to xdoc.C as under FreeBSD it was inited after and inheritance
                   4127:          failed (related to issue #1051)
                   4128: 
                   4129:        * tests/: 320.html, results/320.processed: xdoc and xnode methods
                   4130:          are printed to check inheritance (related to feature #1051)
                   4131: 
1.103     moko     4132: 2016-04-09  moko
                   4133: 
                   4134:        * tests/results/320.processed: ordered hash now used for class
                   4135:          methods and properties (test results updated for feature #1069)
                   4136: 
                   4137:        * src/types/pa_vstateless_class.h: ordered hash now used for class
                   4138:          methods and properties (implements feature #1069)
                   4139: 
                   4140:        * src/types/: pa_vconsole.h, pa_vcookie.C, pa_venv.C,
                   4141:          pa_vrequest.C, pa_vstatus.C: minor optimization: #ifndef
                   4142:          OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL returned (related to
                   4143:          feature #1051)
                   4144: 
                   4145: 2016-04-07  moko
                   4146: 
                   4147:        * src/main/execute.C: returned Value in .CLASS case for VJunction
                   4148:          (related to feature #1051)
                   4149: 
                   4150:        * src/types/: pa_vjunction.C, pa_vmethod_frame.C,
                   4151:          pa_vmethod_frame.h, pa_vstateless_class.C, pa_vstateless_class.h:
                   4152:          string constants deduplication (related to feature #1051)
                   4153: 
                   4154:        * tests/results/224.processed: test result updated (related to
                   4155:          feature #1051)
                   4156: 
                   4157:        * src/: main/execute.C, types/pa_vconsole.h, types/pa_vcookie.C,
                   4158:          types/pa_vcookie.h, types/pa_venv.C, types/pa_venv.h,
                   4159:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vstatus.C,
                   4160:          types/pa_vstatus.h: classes hash now contains only
                   4161:          VStateless_class derived objects, .CLASS is also allways
                   4162:          VStateless_class derived object (related to feature #1051).
                   4163: 
                   4164: 2016-04-06  moko
                   4165: 
                   4166:        * tests/results/323.processed: test result updated after feature
                   4167:          #1051 implementation
                   4168: 
                   4169:        * src/: classes/classes.h, classes/op.C, classes/response.C,
                   4170:          classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   4171:          main/pa_request.C, types/pa_vclass.h, types/pa_vform.C,
                   4172:          types/pa_vmail.C, types/pa_vmath.C, types/pa_vmemory.h,
                   4173:          types/pa_vresponse.C, types/pa_vresponse.h,
                   4174:          types/pa_vstateless_class.h: base -> methoded_donor for static
                   4175:          classes, type() moved from VStateless_class to VClass and
                   4176:          Methoded (implements feature #1051)
                   4177: 
                   4178: 2016-04-04  moko
                   4179: 
                   4180:        * src/: classes/classes.C, include/pa_request.h, main/pa_request.C:
                   4181:          beauty: put_class added (related to feature #1051)
                   4182: 
                   4183: 2016-04-01  moko
                   4184: 
                   4185:        * tests/results/: 175.processed, 192.processed, 224.processed,
                   4186:          229.processed, 244.processed, 246.processed, 316.processed: test
                   4187:          results updated as class.type() removed from error messages, only
                   4188:          type() left (related to feature #1051)
                   4189: 
                   4190:        * src/: classes/classes.C, classes/classes.h, classes/mail.C,
                   4191:          classes/op.C, classes/reflection.C, main/compile.y,
                   4192:          main/compile_tools.h, main/execute.C, main/pa_request.C,
                   4193:          types/pa_value.C, types/pa_vclass.C, types/pa_vclass.h,
                   4194:          types/pa_vmethod_frame.h, types/pa_vobject.h,
                   4195:          types/pa_vstateless_class.h, types/pa_wcontext.C: name() removed
                   4196:          from VStateless_class, type() is used instead (related to feature
                   4197:          #1051)
                   4198: 
                   4199:        * src/classes/mail.C: old logic restored.
                   4200: 
                   4201:        * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
                   4202:          classes/classes.h, classes/curl.C, classes/date.C,
                   4203:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   4204:          classes/hashfile.C, classes/image.C, classes/inet.C,
                   4205:          classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
                   4206:          classes/memcached.C, classes/memory.C, classes/reflection.C,
                   4207:          classes/regex.C, classes/response.C, classes/string.C,
                   4208:          classes/table.C, classes/xdoc.C, classes/xnode.C,
                   4209:          types/pa_vform.C, types/pa_vmail.C, types/pa_vmath.C,
                   4210:          types/pa_vmemory.h: optimizaion: *_base_class removed (related to
                   4211:          feature #1051)
                   4212: 
                   4213: 2016-03-30  moko
                   4214: 
                   4215:        * tests/: 327.html, results/224.processed, results/327.processed:
                   4216:          test for TZ specification in ^date::create[], TZ is kept during
                   4217:          ^date::create[$dt] (related to feature #1048)
                   4218: 
                   4219:        * src/: classes/date.C, types/pa_vdate.h: TZ can be specified in
                   4220:          ^date::create[], TZ is kept during ^date::create[$dt] (implements
                   4221:          feature #1048)
                   4222: 
                   4223: 2016-03-29  moko
                   4224: 
                   4225:        * tests/: 315.html, results/315.processed: test for timezone format
                   4226:          +HHmm added (related to feature #1065)
                   4227: 
                   4228:        * src/classes/date.C: timezone format +HHmm now supported
                   4229:          (implements feature #1065)
                   4230: 
                   4231: 2016-03-28  moko
                   4232: 
                   4233:        * tests/: 202.html, results/131.processed, results/202.processed,
                   4234:          results/224.processed, results/256.processed,
                   4235:          results/315.processed: test results updated after %.2d now
                   4236:          default for hours offset in iso-string (was %2d), test for
                   4237:          ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
                   4238:          added (related to feature #1065)
                   4239: 
                   4240: 2016-03-27  moko
                   4241: 
                   4242:        * src/types/pa_vdate.C: '+' sign for zero offset (related to
                   4243:          feature #1065)
                   4244: 
                   4245:        * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
                   4246:          ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
                   4247:          added (implements feature #1065)
                   4248: 
                   4249: 2016-03-24  moko
                   4250: 
                   4251:        * tests/: 202.html, results/202.processed: test $date.week added
                   4252:          (related to bug #1067)
                   4253: 
                   4254:        * src/types/: pa_vdate.C, pa_vdate.h: fix for $date.week changed
                   4255:          date (fix for bug #1067)
                   4256: 
                   4257: 2016-03-10  moko
                   4258: 
                   4259:        * configure.ac, src/include/pa_version.h: 3.4.4 -> 3.4.5b
                   4260: 
1.102     moko     4261: 2015-12-07  moko
                   4262: 
                   4263:        * tests/: 326.html, results/326.processed: test for .CLASS &
                   4264:          .CLASS_NAME optimization added (related to feature #844)
                   4265: 
                   4266: 2015-11-17  moko
                   4267: 
                   4268:        * tests/: 323.html, results/323.processed: order added
                   4269: 
                   4270:        * tests/: 325.html, results/325.processed: double range test added
                   4271:          (related to bug #1049)
                   4272: 
                   4273: 2015-11-16  moko
                   4274: 
                   4275:        * src/: classes/string.C, types/pa_vdouble.h: finite(double) check
                   4276:          added to disallow NaN and Infinity (fixes bug #1049)
                   4277: 
                   4278: 2015-11-11  moko
                   4279: 
                   4280:        * tests/324.html: parser 3.4.3 execution support added (related to
                   4281:          feature #1017)
                   4282: 
                   4283:        * tests/: 324.html, results/324.processed: test for
                   4284:          GET_ELEMENT4CALL feature added (feature #1017)
                   4285: 
1.101     moko     4286: 2015-10-29  moko
                   4287: 
                   4288:        * operators.txt: updated for 3.4.4
                   4289: 
                   4290:        * configure.ac, src/include/pa_version.h: 3.4.4rc -> 3.4.4
                   4291: 
                   4292:        * src/main/pa_exec.C: get_exit_status implemented for Windows
                   4293:          (related to bug #1043)
                   4294: 
                   4295: 2015-10-28  moko
                   4296: 
                   4297:        * src/main/pa_exec.C: Windows bugfix: $.stdin[] no longer cause
                   4298:          hangup during ^file::exec (fixes bug #1043)
                   4299: 
1.100     moko     4300: 2015-10-27  moko
                   4301: 
                   4302:        * src/main/pa_memory.C: pa_fail_alloc added for GC_abort in Windows
                   4303: 
1.99      moko     4304: 2015-10-26  moko
                   4305: 
1.100     moko     4306:        * tests/322.html, src/classes/reflection.C: arguments reorder
                   4307:          (related to issue #1041)
                   4308: 
                   4309:        * src/: classes/classes.awk, main/helpers/simple_folding.pl:
                   4310:          Copyright year updated
                   4311: 
1.99      moko     4312:        * src/: classes/bool.C, classes/classes.C, classes/classes.h,
                   4313:          classes/curl.C, classes/date.C, classes/double.C, classes/file.C,
                   4314:          classes/form.C, classes/hash.C, classes/hashfile.C,
                   4315:          classes/image.C, classes/inet.C, classes/int.C, classes/json.C,
                   4316:          classes/mail.C, classes/math.C, classes/memcached.C,
                   4317:          classes/memory.C, classes/op.C, classes/reflection.C,
                   4318:          classes/regex.C, classes/response.C, classes/string.C,
                   4319:          classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
                   4320:          classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
                   4321:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   4322:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   4323:          include/pa_dictionary.h, include/pa_dir.h,
                   4324:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   4325:          include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
                   4326:          include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
                   4327:          include/pa_pool.h, include/pa_random.h, include/pa_request.h,
                   4328:          include/pa_request_charsets.h, include/pa_request_info.h,
                   4329:          include/pa_sapi.h, include/pa_socks.h,
                   4330:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   4331:          include/pa_stack.h, include/pa_string.h,
                   4332:          include/pa_stylesheet_connection.h,
                   4333:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   4334:          include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
                   4335:          include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
                   4336:          lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
                   4337:          lib/md5/pa_md5c.c, lib/memcached/pa_memcached.C,
                   4338:          lib/memcached/pa_memcached.h, lib/sdbm/pa_file_io.C,
                   4339:          lib/sdbm/pa_strings.C, lib/smtp/comms.C, lib/smtp/smtp.C,
                   4340:          lib/smtp/smtp.h, main/compile.C, main/compile.tab.C,
                   4341:          main/compile.y, main/compile_tools.C, main/compile_tools.h,
                   4342:          main/execute.C, main/pa_cache_managers.C, main/pa_charset.C,
                   4343:          main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
                   4344:          main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
                   4345:          main/pa_globals.C, main/pa_http.C, main/pa_memory.C,
                   4346:          main/pa_os.C, main/pa_pool.C, main/pa_random.C,
                   4347:          main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
                   4348:          main/pa_string.C, main/pa_stylesheet_connection.C,
                   4349:          main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
                   4350:          main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
                   4351:          sql/pa_sql_driver.h, targets/apache/mod_parser3.c,
                   4352:          targets/apache/mod_parser3_core.C, targets/apache/pa_httpd.h,
                   4353:          targets/apache/pa_threads.C, targets/cgi/pa_threads.C,
                   4354:          targets/cgi/parser3.C, targets/isapi/pa_threads.C,
                   4355:          targets/isapi/parser3isapi.C, types/pa_junction.h,
                   4356:          types/pa_method.h, types/pa_property.h, types/pa_value.C,
                   4357:          types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
                   4358:          types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
                   4359:          types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.C,
                   4360:          types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
                   4361:          types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
                   4362:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
                   4363:          types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
                   4364:          types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
                   4365:          types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
                   4366:          types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
                   4367:          types/pa_vmemcached.C, types/pa_vmemcached.h, types/pa_vmemory.h,
                   4368:          types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
                   4369:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
                   4370:          types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
                   4371:          types/pa_vresponse.C, types/pa_vresponse.h,
                   4372:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   4373:          types/pa_vstateless_object.h, types/pa_vstatus.C,
                   4374:          types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
                   4375:          types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
                   4376:          types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   4377:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
                   4378:          types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
                   4379: 
                   4380:        * src/targets/cgi/parser3.C: year updated
                   4381: 
                   4382:        * src/classes/reflection.C: VS2003 compatibility fixed (related to
                   4383:          issue #1041)
                   4384: 
                   4385:        * tests/: 323.html, results/323.processed: test for base classes
                   4386:          added
                   4387: 
                   4388:        * tests/: 261.html, results/261.processed: updated after better
                   4389:          error reporting done for $string.key exception
                   4390: 
                   4391:        * src/types/pa_vstring.h: better error report for $string.key
                   4392:          exception
                   4393: 
                   4394:        * src/types/: pa_vobject.C, pa_vobject.h: VObject::get_element
                   4395:          copied as VObject::get_element4call to remove extra virtual call
                   4396: 
                   4397:        * tests/: 322.html, results/322.processed: test for
                   4398:          ^reflection:is[] added (related to feature #1041)
                   4399: 
                   4400:        * src/classes/reflection.C: ^reflection:is empty value is void
                   4401:          (related to feature #1041)
                   4402: 
                   4403:        * src/classes/reflection.C:
                   4404:          ^reflection:is[class_name|code|method;[context;]element_name]
                   4405:          added (implements feature #1041)
                   4406: 
                   4407: 2015-10-24  moko
                   4408: 
                   4409:        * configure.ac, src/include/pa_version.h: 3.4.4b -> 3.4.4rc
                   4410: 
1.98      moko     4411: 2015-10-22  moko
                   4412: 
                   4413:        * tests/: 321.html, results/321.processed: test for
                   4414:          ^reflection:method_info[] file detection added
                   4415: 
                   4416:        * tests/: 320.html, results/320.processed: test for
                   4417:          ^reflection:class_by_name[class_name] added (related to feature
                   4418:          #993)
                   4419: 
                   4420:        * src/classes/reflection.C: ^reflection:class_by_name[class_name]
                   4421:          added (implements feature #993)
                   4422: 
                   4423:        * src/main/execute.C: GET_ELEMENT4CALL added to get_method_filename
                   4424:          (related to feature #1017)
                   4425: 
                   4426:        * tests/: 319.html, results/319.processed: ^throw[] stacktrace test
                   4427:          added (related to issue #1039)
                   4428: 
                   4429:        * src/main/pa_request.C: ^throw origin fixed (related to feature
                   4430:          #1039)
                   4431: 
                   4432:        * src/types/pa_vcookie.C: bugfix: expires_sec should not be called
                   4433:          for VDate
                   4434: 
                   4435:        * tests/results/182.processed: updated after feature #1038
                   4436:          implemented
                   4437: 
                   4438:        * tests/: 318.html, 182_dir/a6.p, results/318.processed: test for
                   4439:          compile-time exception origin added (test for feature #1039)
                   4440: 
                   4441:        * src/: include/pa_request.h, main/compile.C, main/compile.y,
                   4442:          main/pa_request.C: exception unification: compile-time exceptions
                   4443:          now have origin, @USE origins also tracked (implements feature
                   4444:          #1039)
                   4445: 
                   4446: 2015-10-20  moko
                   4447: 
                   4448:        * src/main/pa_request.C: cleanup
                   4449: 
                   4450: 2015-10-15  moko
                   4451: 
                   4452:        * src/types/pa_vtable.C: defines fixed (related to feature #1017)
                   4453: 
                   4454:        * src/: classes/hash.C, include/pa_opcode.h, types/pa_vhash.h,
                   4455:          types/pa_vtable.C: new feature: no more $table.method and
                   4456:          $hash.method, aliases for _at, _count, _key (related to feature
                   4457:          #1017)
                   4458: 
1.97      moko     4459: 2015-10-14  moko
                   4460: 
1.98      moko     4461:        * tests/: 317.html, results/317.processed: test for
                   4462:          ^string.unescape[] added (related to feature #120)
                   4463: 
1.97      moko     4464:        * buildall: reverted libxml 2.9.2 -> 2.9.1 due to "ID already
                   4465:          defined" bug (described in issue #1036)
                   4466: 
                   4467:        * tests/: 247.html, results/247.processed: test for checkBOM added
                   4468:          (test for bug #1037)
                   4469: 
                   4470:        * src/: include/pa_charsets.h, main/pa_charsets.C,
                   4471:          main/pa_common.C, main/pa_http.C: checkBOM detects charset if
                   4472:          it's not enforced, skips BOM signature if it complies charset
                   4473:          (fixes bug #1037)
                   4474: 
                   4475: 2015-10-13  moko
                   4476: 
                   4477:        * src/targets/cgi/parser3.vcproj: disabling buggy incremental
                   4478:          linking
                   4479: 
                   4480:        * src/classes/inet.C: vs2003 compilation fix
                   4481: 
                   4482:        * src/classes/math.C: warning war
                   4483: 
                   4484:        * src/lib/punycode/pa_punycode.c: warning war
                   4485: 
                   4486: 2015-10-12  moko
                   4487: 
                   4488:        * src/lib/punycode/pa_punycode.c: warning war
                   4489: 
                   4490:        * parser3.sln: moved parser3 first, to make it default startup
                   4491:          project
                   4492: 
                   4493:        * buildall: parser "mirror" now used for external libs sources
                   4494:          (implements feature #1036)
                   4495: 
                   4496:        * buildall: most external libs are updated to their current
                   4497:          versions (related to feature #1036)
                   4498: 
                   4499:        * src/classes/image.C: more tags added
                   4500: 
                   4501:        * src/: include/pa_memory.h, types/pa_vdate.C: warning war
                   4502: 
                   4503: 2015-10-11  moko
                   4504: 
                   4505:        * src/classes/curl.C: minor optimization (related to feature #1035)
                   4506: 
                   4507: 2015-10-09  moko
                   4508: 
                   4509:        * src/classes/curl.C: pa_strdup added for strings from curl
                   4510:          (related to feature #1035)
                   4511: 
                   4512:        * src/main/pa_string.C: mini fix: RedHat 7.2 does not have
                   4513:          ULLONG_MAX definition
                   4514: 
                   4515:        * src/classes/curl.C: ^curl:info[name]/^curl:info[] added
                   4516:          (implements feature #1035)
                   4517: 
                   4518:        * src/main/pa_charset.C: String::Body(String::C) used
                   4519: 
                   4520:        * src/main/pa_charset.C: exceptions unified
                   4521: 
                   4522:        * src/: include/pa_charset.h, main/pa_charset.C: declarations
                   4523:          unified
                   4524: 
                   4525:        * src/: classes/file.C, classes/image.C, classes/mail.C,
                   4526:          classes/op.C, classes/xdoc.C, classes/xnode.C,
                   4527:          include/pa_string.h, main/pa_request.C, main/pa_string.C,
                   4528:          types/pa_vimage.C, types/pa_vmath.C, types/pa_vstatus.C,
                   4529:          types/pa_vxdoc.C: explicit String::Body(char) calls removed;
                   4530:          String::Body(String::C) constructor added (related to bug #957)
                   4531: 
                   4532:        * src/classes/file.C: minor optimization
                   4533: 
                   4534:        * src/include/pa_hash.h: hash.get(char*) added, to minimize
                   4535:          Cord(char*) autocreation (related to bug #957)
                   4536: 
                   4537:        * src/: classes/string.C, main/untaint.C: minor optimizations
                   4538: 
                   4539:        * src/: classes/json.C, classes/reflection.C, include/pa_string.h:
                   4540:          String(char*, Lang, length) removed, String(C(), Lang) used
                   4541:          instead (related to bug #957)
                   4542: 
                   4543: 2015-10-08  moko
                   4544: 
                   4545:        * src/: classes/file.C, include/pa_string.h, lib/cord/cordbscs.c,
                   4546:          lib/cord/include/cord.h, main/pa_http.C, main/pa_string.C,
                   4547:          main/untaint.C: Now char * is converted to CORD only using
                   4548:          AS_CORD() to check for empty cord bug (fixes bug #957)
                   4549: 
                   4550:        * src/include/pa_hash.h: fixed compilation without
                   4551:          HASH_CODE_CACHING
                   4552: 
                   4553:        * src/classes/string.C:
                   4554:          ^string:unescape[js|uri;escaped;$.charset[...]] added (implements
                   4555:          feature #120)
                   4556: 
                   4557:        * src/main/pa_common.C: reduce js flags checks count (related to
                   4558:          feature #120)
                   4559: 
1.96      moko     4560: 2015-10-07  moko
                   4561: 
                   4562:        * tests/: 275.html, results/275.processed: test modified after
                   4563:          unsigned long long int support implemented (feature #1034)
                   4564: 
                   4565:        * src/: classes/math.C, include/pa_string.h, main/pa_string.C:
                   4566:          pa_atoul added for unsigned long long int support
                   4567: 
                   4568: 2015-10-06  moko
                   4569: 
                   4570:        * src/types/pa_vdate.C: INT_MAX used
                   4571: 
                   4572: 2015-10-03  moko
                   4573: 
                   4574:        * tests/: 302.html, results/302.processed: test for bug #1023
                   4575:          (\u2028, \u2029 escaping) added
                   4576: 
                   4577:        * src/main/untaint.C: \u2028, \u2029 are now escaped in
                   4578:          json:string[] (fixes bug #1023)
                   4579: 
                   4580: 2015-09-29  moko
                   4581: 
                   4582:        * tests/305.html: try-catch added for OS without ipv6 support
                   4583: 
                   4584:        * src/lib/json/pa_json.C: more unique prefixes for Solaris
                   4585:          compilation
                   4586: 
                   4587:        * src/: include/pa_opcode.h, include/pa_request.h, main/compile.y,
                   4588:          main/execute.C, types/pa_value.h, types/pa_vhash.h,
                   4589:          types/pa_vtable.C, types/pa_vtable.h: get_element4call
                   4590:          implemented to distinguish ^hash.method from $hash.field
                   4591:          (implements feature #1017)
                   4592: 
                   4593:        * src/lib/punycode/pa_punycode.c: warning war
                   4594: 
                   4595:        * src/include/pa_config_includes.h: warning war
                   4596: 
                   4597:        * src/include/pa_config_includes.h: pragma warning actualized a bit
                   4598: 
                   4599:        * src/include/pa_config_includes.h: warning war
                   4600: 
                   4601:        * src/include/pa_hash.h: clang compilation fix
                   4602: 
                   4603: 2015-09-27  moko
                   4604: 
                   4605:        * src/main/compile.tab.C: Bison 3 is now default
                   4606: 
                   4607:        * src/main/: compile.C, compile.y: Bison 3 compatibility fixed
                   4608: 
                   4609: 2015-09-25  moko
                   4610: 
                   4611:        * src/: classes/hash.C, include/pa_hash.h: parser now compiles and
                   4612:          works with undefined HASH_ORDER (related to feature #196)
                   4613: 
                   4614: 2015-09-24  moko
                   4615: 
                   4616:        * tests/: 027.html, results/027.processed: test modified to test
                   4617:          ^hash.sort (feature #196)
                   4618: 
                   4619:        * src/: classes/hash.C, include/pa_hash.h:
                   4620:          ^hash.sort[key;value]{string-key-maker}|(numeric-key-maker)[[asc|desc]]
                   4621:          added (implements feature #196)
                   4622: 
                   4623:        * tests/: 316.html, results/316.processed: Added test for bug #1025
                   4624:          (exception handling in non-cached ^cache), plus for "it does not
                   4625:          have logical value" and "$exception.handled value must be either
                   4626:          boolean or string 'cache'" exceptions.
                   4627: 
                   4628:        * src/classes/op.C: ^cache: exceptions now handled in non-cached
                   4629:          code (fixes bug #1025)
                   4630: 
1.95      moko     4631: 2015-09-23  moko
                   4632: 
                   4633:        * src/classes/table.C: warning war
                   4634: 
                   4635:        * src/: classes/math.C, types/pa_vcookie.C: warning war
                   4636: 
                   4637:        * src/classes/file.C: warning war
                   4638: 
                   4639:        * src/: include/pa_table.h, main/pa_table.C: warning war
                   4640: 
                   4641:        * src/: main/pa_request.C, classes/date.C: warning war
                   4642: 
                   4643:        * src/: types/pa_vdate.C, classes/op.C: warning war
                   4644: 
                   4645:        * tests/: 122.html, results/122.processed: win sync: to remove
                   4646:          differences with OS that doesn't keep timezone change history
                   4647: 
                   4648:        * src/types/pa_vdate.C: tzset() should be called in Windows after
                   4649:          TZ change (related to feature #36)
                   4650: 
                   4651:        * tests/: 075.html, results/075.processed: win sync: to remove
                   4652:          differences with OS that doesn't keep timezone change history
                   4653: 
                   4654:        * tests/: 315.html, results/315.processed: win sync: to remove
                   4655:          differences with OS that doesn't keep timezone change history
                   4656: 
                   4657:        * tests/: 256.html, results/256.processed: win sync: to remove
                   4658:          differences with OS that doesn't keep timezone change history
                   4659: 
                   4660:        * tests/: 124.html, results/124.processed: win results sync: to
                   4661:          avoid hitting time change hole.
                   4662: 
                   4663:        * src/types/pa_vdate.C: static returned. :)
                   4664: 
                   4665: 2015-09-22  moko
                   4666: 
                   4667:        * src/types/pa_vdate.C: FreeBSD 10 GPF fix (related to feature #36)
                   4668: 
                   4669:        * tests/results/131.processed: more tests for feature #1032
                   4670: 
                   4671:        * src/classes/date.C: minor fix related to feature #1032
                   4672: 
                   4673:        * operators.txt: ISO date creation documented (related to feature
                   4674:          #1032)
                   4675: 
                   4676:        * operators.txt: iso-string documented (related to feature #1032)
                   4677: 
                   4678:        * tests/: 315.html, results/315.processed: more tests added
                   4679:          (related to feature #1032)
                   4680: 
                   4681:        * tests/: 131.html, results/131.processed: date range checks
                   4682:          updated (related to feature #36)
                   4683: 
                   4684:        * tests/: 315.html, results/057.processed, results/315.processed:
                   4685:          test added for ISO date support (related to issue #315)
                   4686: 
                   4687:        * src/classes/date.C: more readable exceptions in date creation
                   4688:          (related to ticket #1032)
                   4689: 
                   4690: 2015-09-18  moko
                   4691: 
                   4692:        * tests/: 202.html, results/202.processed: ^date.iso-string[] check
                   4693:          added (related to issue #1032)
                   4694: 
                   4695:        * tests/results/256.processed, src/classes/json.C: iso-string
                   4696:          documented (related to issue #1032)
                   4697: 
                   4698:        * tests/: 256.html, results/256.processed: ISO date check added
                   4699:          (related to issue #1032)
                   4700: 
                   4701:        * tests/: 057.html, results/057.processed, results/224.processed:
                   4702:          tests results updated after ISO date support implemented (related
                   4703:          to feature #1032)
                   4704: 
                   4705:        * src/: classes/date.C, classes/image.C, types/pa_value.h,
                   4706:          types/pa_vdate.C, types/pa_vdate.h: ISO 8601 dates support added,
                   4707:          ^date::create[string] constructor formalized, ^date.iso-string[]
                   4708:          added (implements feature #1032)
                   4709: 
                   4710: 2015-09-05  moko
                   4711: 
                   4712:        * operators.txt: actualized
                   4713: 
                   4714:        * operators.txt: date changes documented (related to ticket #36)
                   4715: 
                   4716: 2015-09-04  moko
                   4717: 
                   4718:        * src/types/pa_vdate.C: warning war
                   4719: 
                   4720:        * src/: classes/op.C, types/pa_vhashfile.C: warning war
                   4721: 
                   4722: 2015-09-03  moko
                   4723: 
                   4724:        * tests/results/096.processed: test result updated for 0..9999 year
                   4725:          date range support (related to feature #36)
                   4726: 
                   4727:        * tests/: 314.html, results/314.processed: test for
                   4728:          ^string:base64[], ^string:idna[], ^string:js-escape[] (related to
                   4729:          bug #1031)
                   4730: 
                   4731:        * src/classes/string.C: Static calls fixed for ^string:base64[],
                   4732:          ^string:idna[], ^string:js-escape[] (closes bug #1031)
                   4733: 
1.116     moko     4734:        * Makefile.am, acsite.m4, configure.ac, configure.in: Warning war:
                   4735:          configure.in -> configure.ac
1.95      moko     4736: 
1.116     moko     4737:        * configure, configure.in, src/include/pa_config_auto.h.in: more
                   4738:          correct timezone check for FreeBSD Warning war: configure.in ->
                   4739:          configure.ac
1.95      moko     4740: 
                   4741:        * configure, configure.in, src/classes/Makefile.am,
1.116     moko     4742:          src/include/pa_config_auto.h.in, src/lib/cord/Makefile.am,
                   4743:          src/lib/gd/Makefile.am, src/lib/json/Makefile.am,
                   4744:          src/lib/memcached/Makefile.am, src/lib/pcre/Makefile.am,
                   4745:          src/lib/sdbm/Makefile.am, src/lib/smtp/Makefile.am,
                   4746:          src/main/Makefile.am, src/targets/apache/Makefile.am,
                   4747:          src/targets/cgi/Makefile.am, src/types/Makefile.am: INCLUDES ->
1.95      moko     4748:          AM_CPPFLAGS (warning war) PA_DATE64 (0..9999 year date range)
                   4749:          check added
                   4750: 
                   4751:        * src/types/pa_vdate.C: FreeBSD fixes + more robust code
                   4752: 
                   4753:        * tests/results/: 124.processed, 224.processed: test resuls updated
                   4754:          for new date implementation (related to feature #36)
                   4755: 
                   4756:        * src/: classes/date.C, classes/image.C, include/pa_common.h,
                   4757:          main/pa_common.C, types/pa_value.C, types/pa_vdate.C,
                   4758:          types/pa_vdate.h: new double date implementation with internal
                   4759:          support for extended 0..9999 year range, default timezone support
                   4760:          (related to feature #36)
                   4761: 
                   4762: 2015-08-28  moko
                   4763: 
                   4764:        * src/types/pa_vmail.C: fixed $mail:received.date calculations
                   4765:          (fixes bug #1030)
                   4766: 
                   4767: 2015-08-21  moko
                   4768: 
                   4769:        * src/classes/inet.C: snprintf size "bug" commented
                   4770: 
                   4771:        * src/main/pa_common.C: snprintf comments updated
                   4772: 
                   4773: 2015-08-16  moko
                   4774: 
                   4775:        * src/types/: pa_vdate.C, pa_vdate.h: logic moved to pa_vdate.C
                   4776: 
                   4777: 2015-08-11  moko
                   4778: 
                   4779:        * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
                   4780:          types/pa_vclass.C, types/pa_vobject.C: hash_json_string argument
                   4781:          can be null (fixes bug #1029)
                   4782: 
                   4783: 2015-08-06  moko
                   4784: 
1.116     moko     4785:        * src/types/: Makefile.am, pa_vdate.C, pa_vdate.h, types.vcproj:
                   4786:          pa_vdate.C added
1.95      moko     4787: 
                   4788: 2015-08-05  moko
                   4789: 
                   4790:        * tests/: 313.html, results/313.processed: test for
                   4791:          ^table.count[columns] and ^table.flip[] with nameless tables
                   4792:          (feature #1003)
                   4793: 
                   4794:        * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
                   4795:          max_cell added, now ^table.count[columns] and ^table.flip[] works
                   4796:          correctly for nameless tables (implements feature #1003)
                   4797: 
                   4798: 2015-08-03  moko
                   4799: 
                   4800:        * tests/312.html: test for ^table.append[$hash] and
                   4801:          ^table.insert[$hash] added (related to feature #1028)
                   4802: 
                   4803:        * src/classes/table.C: ^table.append[$hash] and
                   4804:          ^table.insert[$hash] now supported (implements feature #1028)
                   4805: 
                   4806:        * tests/: 312.html, results/312.processed: test row copy in
                   4807:          ^table.hash[; $.type[table] ] added (related to feature #1016)
                   4808: 
                   4809:        * src/classes/table.C: row copy now created in ^table.hash[;
                   4810:          $.type[table] ] (related to feature #1016)
                   4811: 
                   4812: 2015-07-29  moko
                   4813: 
                   4814:        * tests/: 312.html, results/312.processed: test for ^table.delete[]
                   4815:          added (related to feature #1016)
                   4816: 
                   4817:        * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
                   4818:          ^table.delete[] added to delete current row (related to feature
                   4819:          1016)
                   4820: 
                   4821: 2015-07-28  moko
                   4822: 
                   4823:        * tests/: 312.html, results/312.processed: test for
                   4824:          $table.column[value] and ^table.insert{row} (related to feature
                   4825:          #1016)
                   4826: 
                   4827:        * src/: classes/table.C, include/pa_table.h, main/pa_table.C,
                   4828:          types/pa_vtable.C, types/pa_vtable.h: $table.column[value] and
                   4829:          ^table.insert{row} are now implemented (feature #1016)
                   4830: 
                   4831:        * src/include/pa_array.h: Optimization: bool reverse removed from
                   4832:          append(), insert() added, memmove arguments order in remove()
                   4833:          fixed (related to feature #1016)
                   4834: 
                   4835: 2015-07-23  moko
                   4836: 
                   4837:        * src/classes/json.C: tainted json and empty json exception added
                   4838:          (implements feature #1015)
                   4839: 
                   4840:        * tests/: 311.html, results/311.processed: empty json and tainted
                   4841:          json exception test added (related to issue #1015)
                   4842: 
                   4843: 2015-07-22  moko
                   4844: 
                   4845:        * tests/: 311.html, results/311.processed: test for UTF-8
                   4846:          processing added
                   4847: 
                   4848:        * tests/: 311.html, results/311.processed: test for
                   4849:          json_exception_with_source added (related to issue #394)
                   4850: 
                   4851:        * src/classes/json.C: json_exception_with_source added (implements
                   4852:          feature #394)
                   4853: 
                   4854: 2015-06-29  moko
                   4855: 
                   4856:        * src/: classes/file.C, include/pa_dir.h, main/pa_dir.C:
                   4857:          directories are now correctly determined if _d_type == DT_UNKNOWN
                   4858:          (closes bug #1027)
                   4859: 
                   4860: 2015-06-10  moko
                   4861: 
                   4862:        * src/types/pa_vxnode.h: extern "C" not requred and causes build
                   4863:          error if libxml has LIBXML_ICU_ENABLED.
                   4864: 
                   4865: 2015-06-04  moko
                   4866: 
                   4867:        * tests/099.html: ups, reverting
                   4868: 
                   4869:        * tests/: 099.html, 309.html, 310.html, results/309.processed,
                   4870:          results/310.processed: tests for $response:body[ $.file[] ] and
                   4871:          $response:last-modified added
                   4872: 
                   4873:        * src/main/pa_request.C: last-modified check fixed
                   4874: 
                   4875: 2015-06-03  moko
                   4876: 
                   4877:        * tests/: 204.html, 205.html, 293.html, results/204.processed,
                   4878:          results/205.processed, results/293.processed: $response:headers
                   4879:          logging added (tests for feature #1007)
                   4880: 
                   4881:        * src/: include/pa_common.h, include/pa_request.h,
                   4882:          main/pa_request.C, types/pa_vmail.C, types/pa_vresponse.C:
                   4883:          $response:headers are now in uppercase (closes feature #1007)
                   4884: 
                   4885: 2015-06-02  moko
                   4886: 
                   4887:        * src/: include/pa_memory.h, classes/math.C: some of -pedantic
                   4888:          build errors reverted for clang compatibility
                   4889: 
                   4890: 2015-06-01  moko
                   4891: 
                   4892:        * src/include/pa_memory.h: -pedantic build errors fixed
                   4893: 
                   4894:        * src/classes/math.C: -pedantic build error fixed
                   4895: 
                   4896:        * src/classes/table.C: USE_STRINGSTREAM moved to the correct place
                   4897: 
                   4898: 2015-05-31  moko
                   4899: 
                   4900:        * src/classes/table.C: USE_STRINGSTREAM optimized
                   4901: 
                   4902:        * src/: classes/file.C, classes/math.C, include/pa_opcode.h,
                   4903:          include/pa_string.h, lib/json/pa_json.h, main/compile_tools.h,
                   4904:          main/pa_charset.C, main/pa_globals.C, main/pa_string.C,
                   4905:          types/pa_vmail.C, types/pa_vmethod_frame.C, types/pa_vregex.C,
                   4906:          types/pa_vxnode.h: warning war (-pedantic flag)
                   4907: 
                   4908: 2015-05-28  moko
                   4909: 
                   4910:        * tests/: 308.html, results/308.processed: test for
                   4911:          ^table::create[$t;], etc work added (related to bug #975)
                   4912: 
                   4913:        * src/classes/table.C: check_option_param removed,
                   4914:          ^table::create[$t;], etc now works (fixes bug #975)
                   4915: 
                   4916: 2015-05-27  moko
                   4917: 
                   4918:        * src/main/pa_request.C: Invalid response filename in gcc 4.9.2
                   4919:          (Debian jessie) fixed (closes issue #1024)
                   4920: 
                   4921:        * tests/Makefile: sort added as in Debian jessie list become
                   4922:          unsorted
                   4923: 
                   4924: 2015-05-18  moko
                   4925: 
                   4926:        * tests/: 201.html, results/201.processed: test for
                   4927:          ^string.trim[what] feature #1022
                   4928: 
                   4929:        * src/classes/string.C: ^string.trim[what] now supported,
                   4930:          implements feature #1022
                   4931: 
                   4932: 2015-05-17  moko
                   4933: 
                   4934:        * tests/results/185.processed: test result updated as feature #1021
                   4935:          implemented (left/right accept negative parameter)
                   4936: 
                   4937:        * src/classes/string.C: left/right now accept negative parameter
                   4938:          (implements feature #1021)
                   4939: 
                   4940: 2015-05-08  moko
                   4941: 
                   4942:        * src/classes/math.C: isalnum -> pa_isalnum
                   4943: 
                   4944:        * src/main/execute.C: optimization in getter-junction processing
                   4945:          (related to issue #997)
                   4946: 
                   4947: 2015-05-07  moko
                   4948: 
                   4949:        * tests/: 307.html, results/307.processed: test for issue #997
                   4950:          added
                   4951: 
                   4952:        * src/main/execute.C: process_getter result now checked if junction
                   4953:          returned (closes issue #997)
                   4954: 
                   4955:        * tests/: 305.html, results/305.processed: sort added to ignore
                   4956:          different order
                   4957: 
                   4958:        * src/types/pa_vxnode.C: & now untainted in $node.nodeValue
                   4959:          assignment (closes issue #994)
                   4960: 
                   4961:        * tests/: 306.html, results/306.processed: test for issue #994
                   4962:          added
                   4963: 
                   4964:        * tests/: 303.html, results/303.processed: two more errors tested
                   4965: 
                   4966: 2015-05-06  moko
                   4967: 
                   4968:        * tests/: 305.html, results/305.processed: test for name2ip &
                   4969:          ip2name added (related to feature #992)
                   4970: 
                   4971:        * tests/: 303.html, 304.html, results/303.processed,
                   4972:          results/304.processed: tests for idna conversion added (related
                   4973:          to issue #849)
                   4974: 
                   4975: 2015-05-02  moko
                   4976: 
                   4977:        * src/classes/inet.C: ^inet:ip2name[] and ^inet:name2ip[]
                   4978:          implemented
                   4979: 
                   4980: 2015-04-30  moko
                   4981: 
                   4982:        * src/main/pa_http.C: idna_host added, related to issue #849
                   4983: 
                   4984:        * src/main/pa_http.C: set_addr corrected, pa_idna_encode call added
                   4985:          (related to issue #849)
                   4986: 
                   4987: 2015-04-24  moko
                   4988: 
                   4989:        * src/types/pa_vjunction.C: warning war
                   4990: 
                   4991:        * src/lib/punycode/: pa_idna.h, pa_punycode.h: code style
                   4992:          unification
                   4993: 
                   4994:        * src/lib/punycode/pa_idna.c: warning war
                   4995: 
                   4996: 2015-04-22  moko
                   4997: 
                   4998:        * src/main/main.vcproj: punycode include path added
                   4999: 
                   5000:        * src/lib/punycode/pa_idna.c: windows compile error fixed
                   5001: 
                   5002:        * src/lib/punycode/pa_idna.c: warning war
                   5003: 
                   5004:        * parser3.sln, src/lib/punycode/punycode.vcproj: punycode windows
                   5005:          project file added
                   5006: 
                   5007:        * src/lib/punycode/pa_convert_utf.c: debug compilation fix
                   5008: 
                   5009:        * src/include/pa_memory.h: warning war
                   5010: 
                   5011:        * src/: classes/string.C, include/pa_common.h, main/pa_common.C:
                   5012:          ^string:idna[xn--...], ^string.idna[] - idna conversion support
                   5013:          implemented (related to feature #849)
                   5014: 
                   5015:        * configure.in, src/main/Makefile.am,
                   5016:          src/targets/apache/Makefile.am, src/targets/cgi/Makefile.am:
                   5017:          libpunycode added in Unix
                   5018: 
                   5019: 2015-04-21  moko
                   5020: 
                   5021:        * configure.in: large files support
                   5022: 
                   5023: 2015-04-15  moko
                   5024: 
                   5025:        * src/lib/punycode/: Makefile.am, pa_convert_utf.c,
                   5026:          pa_convert_utf.h, pa_idna.c, pa_idna.h, pa_punycode.c,
                   5027:          pa_punycode.h: initial version for punycode/idna support library
                   5028:          (ticket #849)
                   5029: 
                   5030: 2015-04-08  moko
                   5031: 
                   5032:        * src/: classes/curl.C, classes/date.C, classes/file.C,
                   5033:          classes/image.C, classes/mail.C, classes/reflection.C,
                   5034:          classes/string.C, classes/xnode.C, include/pa_request.h,
                   5035:          include/pa_string.h, include/pa_stylesheet_connection.h,
                   5036:          main/compile.y, main/compile_tools.h, main/execute.C,
                   5037:          main/pa_common.C, main/pa_request.C, main/pa_string.C,
                   5038:          main/pa_xml_io.C, main/untaint.C, types/pa_vclass.C,
                   5039:          types/pa_vcookie.C, types/pa_vfile.C, types/pa_vform.C,
                   5040:          types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
                   5041:          types/pa_wwrapper.h, main/compile.tab.C: removed most of the
                   5042:          clang compiler warnings (closes issue #1018)
                   5043: 
                   5044:        * src/include/pa_string.h: String::Body comparation operators with
                   5045:          char * added (related to issue #958)
                   5046: 
                   5047: 2015-04-07  moko
                   5048: 
                   5049:        * src/main/compile.tab.C: YYMALLOC/YYFREE defined to
                   5050:          pa_malloc/pa_free to remove system malloc/free usage (related to
                   5051:          issue #1018)
                   5052: 
                   5053:        * src/: classes/table.C, classes/xdoc.C, doc/memory.dox,
                   5054:          include/pa_hash.h, include/pa_memory.h, lib/gd/gif.C,
                   5055:          lib/gd/gif.h, lib/smtp/smtp.C, main/compile.y, main/pa_charset.C,
                   5056:          main/pa_http.C, main/pa_request.C, main/pa_string.C,
                   5057:          main/pa_xml_io.C, targets/apache/mod_parser3_core.C,
                   5058:          types/pa_vconsole.h, types/pa_vdouble.h, types/pa_vfile.C,
                   5059:          types/pa_vform.C, types/pa_vint.h: new(UseGC) replaced with new,
                   5060:          malloc/strdup/free replaced with pa_ version and checks for
                   5061:          accidental use of non-pa_ version added (related to issue #1018)
                   5062: 
                   5063: 2015-04-03  moko
                   5064: 
                   5065:        * buildall: pcre-8.33 -> pcre-8.36
                   5066: 
                   5067:        * src/: main/compile.y, classes/form.C, classes/mail.C,
                   5068:          classes/op.C, classes/string.C, main/compile.tab.C,
                   5069:          main/compile_tools.C, main/pa_http.C, main/pa_request.C,
                   5070:          main/pa_sql_driver_manager.C, types/pa_vfile.C,
                   5071:          types/pa_vhashfile.C: C++11 compilation errors fixed (related to
                   5072:          ticket #958)
                   5073: 
                   5074:        * src/: classes/file.C, include/pa_common.h, include/pa_sapi.h,
                   5075:          main/pa_common.C, main/pa_http.C, main/pa_request.C,
                   5076:          targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
                   5077:          targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_vform.C,
                   5078:          types/pa_vform.h, types/pa_vrequest.C, types/pa_vrequest.h:
                   5079:          $request:headers, $request:method added (implements feature
                   5080:          #1007)
                   5081: 
                   5082: 2015-03-17  misha
                   5083: 
                   5084:        * tests/302.html: - test for
                   5085:          ^json:string[...;$._default[method-name]]
                   5086: 
                   5087:        * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
                   5088:          types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C: - if
                   5089:          option $._default[method-name] is specified in ^json:string[], a
                   5090:          method with specified name will be called for classes/objects
                   5091:          serialization ( new feature: #982 )
                   5092: 
                   5093: 2015-03-16  misha
                   5094: 
                   5095:        * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
                   5096:          main/compile_tools.h, main/execute.C, types/pa_vconsole.h,
                   5097:          types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.C,
                   5098:          types/pa_venv.h, types/pa_vform.C, types/pa_vform.h,
                   5099:          types/pa_vhashfile.h, types/pa_vjunction.C, types/pa_vjunction.h,
                   5100:          types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
                   5101:          types/pa_vmemory.h, types/pa_vmethod_frame.C,
                   5102:          types/pa_vmethod_frame.h, types/pa_vregex.C, types/pa_vrequest.C,
                   5103:          types/pa_vrequest.h, types/pa_vstateless_class.C,
                   5104:          types/pa_vstateless_class.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   5105:          types/pa_vxnode.C, types/pa_vxnode.h: - $var.CLASS &
                   5106:          $var.CLASS_NAME now have special opcodes. This can be switched
                   5107:          off by commenting #define OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL
                   5108:          on pa_opcode.h ( new feature: #844 )
                   5109: 
                   5110: 2015-03-15  misha
                   5111: 
                   5112:        * tests/075.html: - test for $response:header[]
                   5113: 
                   5114:        * src/types/pa_vresponse.C: - $response:header[] deletes header
                   5115:          that was set earlie ( new feature: #1001 )
                   5116: 
                   5117: 2015-03-12  misha
                   5118: 
                   5119:        * tests/246.html: - more tests for ^hash._at[]
                   5120: 
                   5121:        * src/: classes/hash.C, include/pa_hash.h: - ^õýø._at[...] now
                   5122:          accepts second param [key|value|hash] ( new feature: #1012 )
                   5123: 
                   5124: 2015-03-09  moko
                   5125: 
                   5126:        * src/types/pa_vmail.C: exception for everything but
                   5127:          $mail:received, closes issue #1011
                   5128: 
                   5129: 2015-02-20  moko
                   5130: 
                   5131:        * tests/: 275.html, results/275.processed: hex detection in
                   5132:          pa_atoui fix test (closes issue #1010)
                   5133: 
                   5134:        * src/main/pa_string.C: hex detection in pa_atoui fixed (closes
                   5135:          issue #1010)
                   5136: 
                   5137: 2015-02-17  moko
                   5138: 
                   5139:        * src/types/pa_vmail.C: closes issue #1009 - mail content should be
                   5140:          tainted.
                   5141: 
                   5142: 2015-02-03  misha
                   5143: 
                   5144:        * tests/301.html: - test for ^json:string($double) causes
                   5145:          exception. bugfix: #1008
                   5146: 
                   5147:        * src/classes/json.C: - ^json:string($double) causes exception.
                   5148:          bugfix: #1008
                   5149: 
                   5150:        * tests/014.html: - updated for work with ^hash.delete[]
                   5151: 
                   5152: 2015-01-12  misha
                   5153: 
                   5154:        * src/: classes/form.C, include/pa_common.h,
                   5155:          include/pa_request_info.h, main/pa_common.C, types/pa_vform.C,
                   5156:          types/pa_vform.h: - supports body with PUT method as well ( new
                   5157:          feature: #1006 )
                   5158: 
                   5159:        * src/classes/file.C: - warnings war
                   5160: 
                   5161: 2015-01-11  misha
                   5162: 
                   5163:        * tests/300.html: - test for ^hash.delete[] is added
                   5164: 
                   5165:        * src/classes/hash.C: - ^hash.delete[] clear all hash ( new
                   5166:          feature: #989 ) - tiny optimization in intersects
                   5167: 
                   5168: 2015-01-06  moko
                   5169: 
                   5170:        * src/types/pa_vmail.C: file names transcode added, to and cc added
                   5171:          with transcode, attachments detection fixed
                   5172: 
                   5173:        * src/main/pa_request.C: filling mail received after cgi/auto.p
                   5174:          load to allow charset switch (related to issue #996)
                   5175: 
                   5176: 2014-12-31  moko
                   5177: 
                   5178:        * src/types/pa_vmail.C: from and subject now transcoded if not
                   5179:          UTF-8 source charset (fixes issue 996)
                   5180: 
                   5181:        * src/main/pa_exception.C: fixed string from stack bug (closes
                   5182:          issue #1000)
                   5183: 
                   5184: 2014-12-11  misha
                   5185: 
                   5186:        * src/types/pa_vhashfile.C: - check if key is not empty before
                   5187:          access ( bug fix: #1005 )
                   5188: 
                   5189: 2014-11-13  misha
                   5190: 
                   5191:        * src/main/compile.y: - PC.append does not reset to false while
                   5192:          creating a new class. bugfix: #990
                   5193: 
                   5194:        * tests/299.html: - test for creation class after working with
                   5195:          partial class (create+append)
                   5196: 
                   5197:        * src/types/pa_vobject.C: - @GET[def] always returns true. bugfix:
                   5198:          #995
                   5199: 
                   5200:        * tests/232.html: - test for @get[def] added
                   5201: 
                   5202: 2014-10-12  moko
                   5203: 
                   5204:        * src/lib/pcre/pcre_internal.vcproj: correct path
                   5205: 
                   5206:        * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
                   5207:          lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
                   5208:          lib/pcre/pcre_internal.vcproj, main/main.vcproj,
                   5209:          targets/apache/ApacheModuleParser3.vcproj,
                   5210:          targets/apache/ApacheModuleParser3Core.vcproj,
                   5211:          targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
                   5212:          types/types.vcproj: project GUID inserted in *.vcproj for correct
                   5213:          conversion in newer VS versions
                   5214: 
                   5215:        * parser3.sln, src/lib/pcre/pcre_internal.vcproj:
                   5216:          pcre_internal.vcproj added
                   5217: 
                   5218: 2014-08-28  moko
                   5219: 
                   5220:        * src/lib/pcre/: Makefile.am, pa_pcre_chartables.c,
                   5221:          pa_pcre_internal.h, pa_pcre_valid_utf8.c: _pcre_default_tables
                   5222:          and pcre_valid_utf are copied to parser3 code (fixes issue #991)
                   5223: 
                   5224: 2014-06-30  misha
                   5225: 
                   5226:        * tests/298.html: - tests for ^reflection:def[class;className]
                   5227:          added
                   5228: 
                   5229:        * src/classes/reflection.C: - ^reflection:def[class;className]
                   5230:          added ( new feature: #918 )
                   5231: 
                   5232: 2014-06-29  misha
                   5233: 
                   5234:        * src/classes/table.C: - ^table::create[unsupported data] -
                   5235:          exception comment changed to "body must be table or code" ( bug
                   5236:          fix: #951 )
                   5237: 
                   5238:        * tests/: 261.html, results/261.processed: - tests for
                   5239:          ^json:string[...;$.void[null|string]] added
                   5240: 
                   5241:        * src/: classes/json.C, types/pa_value.h, types/pa_vvoid.h: - new
                   5242:          option $.void[string|null] added to ^json:string[...] ( new
                   5243:          feature: #952 )
                   5244: 
                   5245: 2014-06-28  moko
                   5246: 
                   5247:        * src/classes/curl.C: $.charset now processed before other curl
                   5248:          options (closes issue #980)
                   5249: 
                   5250: 2014-05-23  misha
                   5251: 
                   5252:        * src/classes/json.C: - bug fix: #987
                   5253: 
                   5254: 2014-05-04  misha
                   5255: 
                   5256:        * tests/: 253.html, 253_json.txt: - test for
                   5257:          ^json:parse[$.int(false)] is added
                   5258: 
                   5259:        * src/classes/json.C: - To ^json:parse[] added option $.int(bool,
                   5260:          default true). The option is similar to $.double(bool) but for
                   5261:          integers.
                   5262: 
                   5263: 2014-05-01  moko
                   5264: 
                   5265:        * src/classes/file.C: "PARSER_VERSION" -> PARSER_VERSION ( bugfix:
                   5266:          #12 )
                   5267: 
                   5268: 2014-04-16  moko
                   5269: 
                   5270:        * src/main/pa_http.C: response-charset option should finally work
                   5271:          now (fix for issue #867)
                   5272: 
                   5273:        * src/main/pa_http.C: response-charset option should work now (fix
                   5274:          for issue #867)
                   5275: 
                   5276: 2014-03-07  moko
                   5277: 
                   5278:        * buildall: libgc moved
                   5279: 
                   5280:        * buildall: libgc moved
                   5281: 
                   5282: 2013-12-29  moko
                   5283: 
                   5284:        * src/classes/string.C: ^string:js-unescape result now tainted,
                   5285:          closes issue #966
                   5286: 
                   5287:        * tests/: 186.html, results/186.processed: ^string:js-unescape
                   5288:          result now tainted, issue #966
                   5289: 
                   5290: 2013-12-03  moko
                   5291: 
                   5292:        * src/: classes/memcached.C, types/pa_vmemcached.C,
                   5293:          types/pa_vmemcached.h: memcached open $.skip-connect(true|false)
                   5294:          option was added for http://www.parser.ru/forum/?id=79343
                   5295: 
                   5296:        * src/classes/file.C: bugfix for
                   5297:          http://www.parser.ru/forum/?id=79337
                   5298: 
                   5299: 2013-11-05  moko
                   5300: 
                   5301:        * configure.in, src/include/pa_version.h: 3.4.3 -> 3.4.4b
                   5302: 
                   5303:        * src/main/pa_globals.C: spelling fixed
                   5304: 
                   5305: 2013-10-29  moko
                   5306: 
                   5307:        * src/lib/json/json.vcproj: json.c -> pa_json.C
                   5308: 
                   5309:        * src/lib/json/pa_json.C: C++ compatibility addes, related to issue
                   5310:          #892
                   5311: 
                   5312:        * src/: classes/json.C, lib/json/Makefile.am, lib/json/json.c,
                   5313:          lib/json/json.h, lib/json/pa_json.C: json.c -> pa_json.C (for
                   5314:          exceptions to be thrown thougth json library), related to issue
                   5315:          #892
                   5316: 
                   5317:        * src/main/pa_charset.C: avoid compilation bug in Debian 6.0.8 x32,
                   5318:          related to issue #896
                   5319: 
                   5320: 2013-10-24  moko
                   5321: 
                   5322:        * configure.in, src/include/pa_version.h: 3.4.3rc -> 3.4.3
                   5323: 
                   5324: 2013-10-23  moko
                   5325: 
                   5326:        * README: actualization
                   5327: 
                   5328: 2013-10-22  moko
                   5329: 
                   5330:        * src/targets/apache/mod_parser3.c: Adopted apache 2.4
                   5331:          compatibility patch from Sergey Kirpichev
                   5332: 
                   5333:        * tests/: 297.html, results/297.processed: non-working getter fix
                   5334:          test for issue #948
                   5335: 
                   5336:        * src/: include/pa_request.h, main/pa_request.C: Now getter is not
                   5337:          called when saving value of $match variable in ^string.match[] to
                   5338:          increase compatibility (related to issue #948).
                   5339: 
                   5340:        * src/: include/pa_request.h, targets/cgi/parser3.C: minor header
                   5341:          usage optimization
                   5342: 
                   5343: 2013-10-21  moko
                   5344: 
                   5345:        * tests/: 182.html, results/182.processed: local path removed for
                   5346:          compatibility
                   5347: 
                   5348:        * tests/: 244.html, 253.html, 254.html, 275.html, 281.html,
                   5349:          results/244.processed, results/253.processed,
                   5350:          results/254.processed, results/275.processed,
                   5351:          results/281.processed: try_catch -> try-catch
                   5352: 
                   5353:        * tests/: 288.html, 294.html, 296.html, results/288.processed,
                   5354:          results/294.processed, results/296.processed: try_catch ->
                   5355:          try-catch
                   5356: 
                   5357: 2013-10-20  moko
                   5358: 
                   5359:        * tests/: 296.html, results/296.processed: test for xsl exception
                   5360:          for issue #938 added.
                   5361: 
                   5362:        * src/: include/pa_xml_exception.h,
                   5363:          main/pa_stylesheet_connection.C: forgotten to be replaced
                   5364:          XmlException is now replaced (once again closes issue #938)
                   5365: 
                   5366: 2013-10-18  moko
                   5367: 
                   5368:        * buildall: disable clock_gettime detection to avoid librt linking
                   5369:          (which in turn depends on libpthread), related to issue #943
                   5370: 
                   5371: 2013-10-18  misha
                   5372: 
                   5373:        * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
                   5374:          lib/smtp/smtp.vcproj, main/main.vcproj,
                   5375:          targets/apache/ApacheModuleParser3Core.vcproj,
                   5376:          targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
                   5377:          types/types.vcproj: - new locations for libxml2 includes where
                   5378:          added to vcproj files
                   5379: 
                   5380: 2013-10-18  moko
                   5381: 
                   5382:        * src/classes/: hashfile.C, op.C: hopefully last part of issue #948
                   5383:          fix
                   5384: 
                   5385:        * tests/: 295.html, results/295.processed: test for issue #948
                   5386:          updated
                   5387: 
                   5388:        * src/classes/table.C: hopefully last lost part for issue #948 fix.
                   5389:          :)
                   5390: 
                   5391:        * tests/: 295.html, results/295.processed: test for issue #948
                   5392:          added
                   5393: 
                   5394:        * src/: classes/hash.C, classes/string.C, classes/table.C,
                   5395:          include/pa_request.h, types/pa_method.h: for getters and setters
                   5396:          to be executed request.put_element should be called, not
                   5397:          context.put_element (fixes issue #948)
                   5398: 
                   5399: 2013-10-17  moko
                   5400: 
                   5401:        * src/classes/xdoc.C: libxml 2.9.1 compatibility with define
                   5402:          LIBXML2_NEW_BUFFER check (closes issue #943)
                   5403: 
                   5404:        * buildall: libxml 2.9.1 build is broken --without-reader.
                   5405: 
                   5406: 2013-10-16  moko
                   5407: 
                   5408:        * configure.in, src/include/pa_version.h: 3.4.3b -> 3.4.3rc
                   5409: 
                   5410:        * tests/: 294.html, results/294.processed: test for issue #938
                   5411: 
                   5412:        * src/: classes/xdoc.C, classes/xnode.C,
                   5413:          include/pa_xml_exception.h, main/pa_xml_exception.C: XmlException
                   5414:          now calls fixUTF8 if source charset is UTF-8 (closes issue #938)
                   5415: 
                   5416:        * buildall: pcre-8.30 -> pcre-8.33 libxml2-2.8.0 -> libxml2-2.9.1
                   5417:          libxslt-1.1.26 -> libxslt-1.1.28
                   5418: 
                   5419:        * src/: include/pa_charset.h, lib/pcre/pa_pcre_internal.h,
                   5420:          main/pa_charset.C: fixUTF8 method added to replace invalid UTF-8
                   5421:          to '?', related to issue #938
                   5422: 
                   5423: 2013-10-15  moko
                   5424: 
                   5425:        * src/: include/pa_common.h, main/pa_charset.C, main/pa_common.C,
                   5426:          main/untaint.C: json chars 0x01-0x1F now are escaped as \u00XX,
                   5427:          minor optimizations (closes issue #896)
                   5428: 
                   5429:        * tests/results/: 292.processed, 293.processed: results updated to
                   5430:          comply with issue #896
                   5431: 
                   5432:        * tests/: 292.html, 293.html, results/292.processed,
                   5433:          results/293.processed: tests for json escaping
                   5434: 
                   5435: 2013-10-14  moko
                   5436: 
                   5437:        * src/: include/pa_common.h, main/pa_common.C: minor rearrangements
                   5438:          and cleanup, code moved from .h to .C, no changes in code
                   5439: 
                   5440: 2013-10-12  moko
                   5441: 
                   5442:        * tests/results/119.processed: updated test result commited
                   5443: 
                   5444:        * tests/: 291.html, results/291.processed: test for issue #894
                   5445:          added
                   5446: 
                   5447:        * src/types/pa_wcontext.h: base methods call support function
                   5448:          get_somebody_entered_some_class should not be true forever, as
                   5449:          wcontext can have many get_elements calls (fixes issue #894)
                   5450: 
                   5451: 2013-10-11  moko
                   5452: 
                   5453:        * tests/: 290.html, results/290.processed: test for junction GPF
                   5454:          issue #942 added
                   5455: 
                   5456:        * src/types/pa_vmethod_frame.h: GPF if method junctions is passed
                   5457:          to native method fixed (closes issue #942)
                   5458: 
                   5459:        * tests/: 158.html, results/158.processed: test for csv-string[]
                   5460:          added
                   5461: 
                   5462:        * src/classes/table.C: minor fixes for table.csv-string[] (closes
                   5463:          feature #907)
                   5464: 
                   5465:        * src/classes/table.C: ^table.csv-string[] from misha@ (implements
                   5466:          feature #907)
                   5467: 
                   5468: 2013-10-09  moko
                   5469: 
                   5470:        * src/: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
                   5471:          types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
                   5472:          types/pa_vstateless_class.C: GET_default, SET_default now works
                   5473:          properly not only in objects, but in classes as well (closes
                   5474:          issue #903)
                   5475: 
                   5476:        * tests/: 289.html, results/289.processed: GET/SET_default now
                   5477:          works in classes, not only objects, test case added, related to
                   5478:          issue #903
                   5479: 
                   5480:        * tests/: 288.html, results/288.processed: test for endless
                   5481:          recursion bug added (related to issue #903)
                   5482: 
                   5483: 2013-10-05  moko
                   5484: 
                   5485:        * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
                   5486:          classes/table.C, main/execute.C, types/pa_method.h,
                   5487:          types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
                   5488:          types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
                   5489:          types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
                   5490:          types/pa_vimage.C, types/pa_vimage.h, types/pa_vmemcached.C,
                   5491:          types/pa_vmemcached.h, types/pa_vmethod_frame.h,
                   5492:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
                   5493:          types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
                   5494:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   5495:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
                   5496:          optimization: put_element no longer has "bool areplace" argument,
                   5497:          related to issue #903
                   5498: 
                   5499: 2013-10-03  moko
                   5500: 
                   5501:        * tests/results/182.processed: result for $.replace(false) test
                   5502:          commited
                   5503: 
                   5504:        * src/classes/date.C: ^date::create(number) processed correctly
                   5505:          (fixes issue #901)
                   5506: 
                   5507:        * src/classes/image.C: as_no_junction removed, as param can be
                   5508:          expression (closes issue #931)
                   5509: 
                   5510:        * tests/233.html: test for issue #931 added
                   5511: 
                   5512: 2013-10-02  moko
                   5513: 
                   5514:        * tests/: 182.html, 182_dir/a5.p: test for $.replace(true)
                   5515:          modified, test for $.replace(false) added
                   5516: 
                   5517:        * src/main/compile_tools.h: forgotten class replace returned. :)
                   5518: 
                   5519: 2013-09-30  moko
                   5520: 
                   5521:        * tests/: 141.html, results/141.processed: md5 tainting test added
                   5522: 
                   5523:        * src/: classes/op.C, include/pa_request.h, main/compile.y,
                   5524:          main/compile_tools.h, main/pa_request.C: allow_class_replace
                   5525:          implemented; $.replace option added to ^process and ^use
                   5526: 
                   5527: 2013-08-27  moko
                   5528: 
                   5529:        * src/classes/: file.C, json.C, math.C, string.C, xdoc.C:
                   5530:          cstr_to_string_body_untaint should be called with charsets for
                   5531:          possible uri language and connection for possible sql language.
                   5532:          related to issue #857
                   5533: 
                   5534:        * buildall: and -> or fixed
                   5535: 
                   5536: 2013-08-26  moko
                   5537: 
                   5538:        * buildall: prepare_ functions logic changed to support
                   5539:          gc-7.2d.tar.gz extracting to gc-7.2 directory
                   5540: 
                   5541: 2013-08-23  moko
                   5542: 
                   5543:        * src/include/pa_config_fixed.h: gc and xml libs are now linked
                   5544:          statically
                   5545: 
                   5546: 2013-08-22  moko
                   5547: 
                   5548:        * src/classes/string.C: String::Empty used (related to issue #912)
                   5549:          append_know_length removed (related to old GPF bug)
                   5550: 
                   5551: 2013-08-21  moko
                   5552: 
                   5553:        * src/classes/math.C: untaint(L_AS_IS) added for md5 and sha1
                   5554: 
                   5555:        * src/classes/math.C: ^math:digest[...;$file] support added
                   5556:          (related to ticket #857
                   5557: 
                   5558:        * tests/: 141.html, results/141.processed: ^math:digest[...;$file]
                   5559:          implemented
                   5560: 
                   5561:        * src/types/pa_vhashfile.h: warning war
                   5562: 
                   5563:        * src/: classes/json.C, classes/op.C, include/pa_hash.h,
                   5564:          include/pa_request.h, main/pa_request.C, types/pa_value.h:
                   5565:          anti_endless_json_string_recoursion removed from request;
                   5566:          json_string_recoursion added to json_options; $.indent[indent
                   5567:          value] now supported and passed within recoursion closes feature
                   5568:          #937
                   5569: 
                   5570:        * tests/: 287.html, results/287.processed: test for feature #937
                   5571: 
                   5572: 2013-07-31  moko
                   5573: 
                   5574:        * src/lib/json/: json.c, pa_json.C: STATE__X -> STATE_XX for cygwin
                   5575:          compilation having #define _S
                   5576: 
                   5577:        * src/main/pa_globals.C: cleanup
                   5578: 
                   5579: 2013-07-30  moko
                   5580: 
                   5581:        * src/: classes/table.C, include/pa_common.h, main/pa_charset.C,
                   5582:          main/pa_common.C: vs2003 warning war
                   5583: 
                   5584:        * src/lib/json/: json.c, pa_json.C: vs2003 warning war
                   5585: 
                   5586:        * src/lib/json/: json.c, pa_json.C: vs2003 compilation fix
                   5587: 
                   5588:        * src/lib/md5/pa_sha2.c: warning war
                   5589: 
                   5590: 2013-07-29  moko
                   5591: 
                   5592:        * src/lib/json/: json.c, json.h, pa_json.C, pa_json.h: some libjson
                   5593:          patches from github
                   5594: 
                   5595:        * src/: classes/bool.C, classes/double.C, classes/int.C,
                   5596:          classes/memcached.C, include/pa_config_includes.h,
                   5597:          types/pa_vfile.C, types/pa_vfile.h: warning war
                   5598: 
                   5599:        * src/lib/json/json.vcproj: C++ -> C
                   5600: 
                   5601:        * src/lib/json/: json.c, pa_json.C: C++ warning revert
                   5602: 
                   5603:        * src/lib/json/: json.c, pa_json.C: windows compatibility
                   5604: 
                   5605:        * src/lib/json/: json.c, pa_json.C: windows compatibility
                   5606: 
                   5607:        * src/lib/json/: json.c, pa_json.C: warning war
                   5608: 
                   5609:        * src/lib/json/: json.c, pa_json.C: win32 compilation issues fixes
                   5610: 
                   5611:        * src/include/pa_config_fixed.h: uint16_t added
                   5612: 
                   5613:        * configure.in: uint16_t check added
                   5614: 
                   5615:        * src/: classes/json.C, lib/json/JSON_parser.C,
1.116     moko     5616:          lib/json/JSON_parser.h, lib/json/Makefile.am, lib/json/json.c,
                   5617:          lib/json/json.h, lib/json/json.vcproj, lib/json/pa_json.C,
                   5618:          lib/json/pa_json.h: JSON_parser with non-free licence is replaced
                   5619:          with similar GPL licenced libjson (fixes issue #892)
1.95      moko     5620: 
                   5621: 2013-07-25  moko
                   5622: 
                   5623:        * parser3.sln: dependencies added
                   5624: 
                   5625:        * parser3.sln, src/targets/apache/ApacheModuleParser3.vcproj,
                   5626:          src/targets/apache/ApacheModuleParser3Core.vcproj: win32 apache
                   5627:          module support
                   5628: 
                   5629:        * src/targets/apache/mod_parser3_core.C: win32 cleanup
                   5630: 
                   5631:        * src/targets/apache/mod_parser3.c: win32 apache 2.2 module
                   5632: 
                   5633: 2013-07-23  moko
                   5634: 
                   5635:        * src/: include/pa_memory.h, main/pa_memory.C: non-working
                   5636:          PA_DEBUG_GC_MEMORY removed
                   5637: 
                   5638:        * src/: main/pa_globals.C, targets/cgi/parser3.C:
                   5639:          PA_DEBUG_DISABLE_GC compilation fix
                   5640: 
                   5641:        * src/: classes/op.C, classes/table.C, include/pa_request.h,
                   5642:          main/pa_request.C: outdated RESOURCES_DEBUG removed
                   5643: 
                   5644:        * src/: main/pa_os.C, targets/cgi/parser3.C: headers cleanup,
                   5645:          garbage cleanup
                   5646: 
                   5647:        * src/main/pa_common.C: warning war
                   5648: 
                   5649:        * src/: include/pa_http.h, main/pa_http.C: headers cleanup
                   5650: 
                   5651:        * src/: include/pa_common.h, main/pa_common.C: WIN32 -> _MSC_VER,
                   5652:          minor cleanup
                   5653: 
                   5654:        * src/: include/pa_dir.h, main/pa_dir.C: loaddir under cygwin now
                   5655:          uses cygwin, not WIN32 implementation
                   5656: 
                   5657:        * src/main/pa_exec.C: WIN32 -> _MSC_VER, under cygwin unix exec is
                   5658:          able to exec shell scripts
                   5659: 
                   5660:        * src/classes/math.C: ifdef WIN32 cleanup
                   5661: 
                   5662:        * src/types/pa_vmemcached.C: LT_MODULE_EXT used
                   5663: 
                   5664:        * src/classes/curl.C: LT_MODULE_EXT used
                   5665: 
                   5666:        * src/include/pa_config_fixed.h: LT_MODULE_EXT defined
                   5667: 
                   5668: 2013-07-22  moko
                   5669: 
                   5670:        * src/include/: pa_config_fixed.h, pa_config_includes.h: win32
                   5671:          includes fix
                   5672: 
                   5673:        * src/: main/pa_common.C, targets/cgi/parser3.C: includes cleanup
                   5674: 
                   5675:        * configure.in, src/include/pa_config_includes.h,
                   5676:          src/lib/smtp/comms.C, src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
                   5677:          src/main/pa_exec.C: includes cleanup
                   5678: 
                   5679:        * src/targets/cgi/parser3.C: 2012->2013
                   5680: 
                   5681:        * src/include/pa_version.h: 3.4.2 -> 3.4.3b
                   5682: 
                   5683:        * configure.in, src/include/pa_config_includes.h,
                   5684:          src/include/pa_http.h, src/lib/json/JSON_parser.h,
                   5685:          src/main/pa_random.C, src/main/pa_socks.C,
                   5686:          src/types/pa_vstatus.C: cygwin support cleanup
                   5687: 
                   5688:        * configure.in: dirent.h check added
                   5689: 
                   5690:        * src/: include/pa_config_includes.h, include/pa_dir.h,
                   5691:          main/pa_dir.C: includes cleanup, dirent.h check added filePath
                   5692:          not copied
                   5693: 
                   5694: 2013-07-21  moko
                   5695: 
                   5696:        * src/lib/cord/cord.vcproj: unused cordprnt.c removed
                   5697: 
                   5698:        * src/targets/cgi/: Makefile.am, getopt.c, getopt.h,
                   5699:          parser3.vcproj: unused getopt.h / getopt.c removed
                   5700: 
                   5701:        * operators.txt, src/classes/file.C, tests/022.html,
                   5702:          tests/results/022.processed: ^file:list[path][$.filter[regexp]
                   5703:          $.stat(true)] usage commented
                   5704: 
                   5705:        * configure.in, src/classes/file.C, src/include/pa_dir.h,
                   5706:          src/main/pa_dir.C: ^file:list[] now has dir column and when
                   5707:          $.stat(true) it has size/*date columns modified patch from misha@
                   5708:          that closes issue #914.
                   5709: 
                   5710:        * src/: include/pa_config_includes.h, main/pa_globals.C:
                   5711:          PA_RELEASE_ASSERTS removed
                   5712: 
                   5713:        * src/lib/md5/pa_md5c.c: minor cleanup
                   5714: 
                   5715:        * src/lib/json/: JSON_parser.C, JSON_parser.h: headers cleanup,
                   5716:          localeconv()->decimal_point usage remoed (related to issue #934)
                   5717: 
                   5718:        * src/lib/cord/: Makefile.am, cordprnt.c, include/cord.h: unused
                   5719:          cordprnt.c removed
                   5720: 
                   5721:        * src/lib/sdbm/: sdbm.c, sdbm_pair.c, pa-include/pa_apr.h,
                   5722:          pa-include/pa_errno.h, pa-include/pa_file_io.h,
                   5723:          pa-include/pa_strings.h: includes cleanup
                   5724: 
                   5725:        * src/lib/md5/pa_md5c.c: headers cleanup
                   5726: 
                   5727: 2013-07-20  moko
                   5728: 
                   5729:        * src/lib/cord/: cordbscs.c, cordprnt.c, cordxtra.c: includes
                   5730:          cleanup
                   5731: 
                   5732: 2013-07-19  moko
                   5733: 
                   5734:        * src/classes/math.C: extern "C" added for crypt
                   5735: 
                   5736: 2013-07-18  moko
                   5737: 
                   5738:        * src/classes/math.C: fix redhat7.2 build
                   5739: 
                   5740: 2013-07-17  moko
                   5741: 
                   5742:        * configure.in, src/include/pa_config_includes.h,
                   5743:          src/include/pa_config_fixed.h: headers actualized (inttypes.h
                   5744:          added for uint8/32/64_t)
                   5745: 
                   5746:        * src/lib/md5/: pa_md5.h, pa_md5c.c, pa_sha2.c, pa_sha2.h:
                   5747:          pa_config_includes.h used for uint32/64_t
                   5748: 
                   5749: 2013-07-16  moko
                   5750: 
                   5751:        * src/: include/pa_string.h, main/pa_string.C, types/pa_vform.C,
                   5752:          types/pa_vform.h, types/pa_vobject.C, types/pa_vobject.h: warning
                   5753:          war
                   5754: 
                   5755:        * src/main/compile.tab.C: compile.y was updated
                   5756: 
                   5757:        * src/main/compile.y: warning war
                   5758: 
                   5759:        * src/: include/pa_exception.h, main/pa_exception.C,
                   5760:          main/pa_xml_exception.C: warning war
                   5761: 
                   5762:        * src/: include/pa_common.h, main/pa_common.C: warning war
                   5763: 
                   5764:        * configure.in: beauty :)
                   5765: 
                   5766:        * tests/: 141.html, results/141.processed: sha256/512 added
                   5767: 
                   5768: 2013-07-13  moko
                   5769: 
                   5770:        * src/lib/md5/md5.vcproj: sha2 added
                   5771: 
                   5772:        * src/: lib/md5/pa_sha2.c, lib/md5/pa_sha2.h, lib/md5/Makefile.am,
                   5773:          classes/math.C: sha2 support (sha256/sha512 digest)
                   5774: 
                   5775: 2013-07-08  moko
                   5776: 
                   5777:        * src/classes/image.C: directory read or other read problem message
                   5778:          fixed (related to issue #933)
                   5779: 
                   5780: 2013-07-07  moko
                   5781: 
                   5782:        * AUTHORS: + misha + moko. :)
                   5783: 
                   5784: 2013-07-06  moko
                   5785: 
                   5786:        * src/: classes/curl.C, include/pa_globals.h,
                   5787:          include/pa_sql_driver_manager.h, lib/memcached/pa_memcached.C,
                   5788:          main/pa_globals.C, main/pa_sql_driver_manager.C: pa_dlinit added
                   5789:          for lt_dlinit to be called once and lt_dlexit called at right
                   5790:          place (related to issue #925)
                   5791: 
                   5792: 2013-07-04  moko
                   5793: 
                   5794:        * src/types/: pa_vfile.C, pa_vfile.h, pa_vstring.C:
                   5795:          VString::as_vfile now uses vfile.set_binary_string to avoid
                   5796:          content-type to be set, as it brokes badly designed logic in
                   5797:          response output. This hopefully finishes issue #928.
                   5798: 
                   5799:        * tests/results/: 256.processed, 286.processed: file now displayed
                   5800:          as name, size, mode, content-type
                   5801: 
                   5802:        * src/main/pa_common.C: read error now reported cottectly (fixes
                   5803:          issue #933
                   5804: 
                   5805: 2013-06-28  moko
                   5806: 
                   5807:        * tests/: 286.html, results/286.processed: test extended
                   5808: 
                   5809:        * tests/: 286.html, results/286.processed: Test for issue #928
                   5810:          added.  it tests default content-type change.
                   5811: 
                   5812:        * src/types/pa_vfile.C: closes issue #928 - default content-type
                   5813:          now updated
                   5814: 
                   5815: 2013-06-25  moko
                   5816: 
                   5817:        * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h: default
                   5818:          content-type for text/binary files without name added;
                   5819:          ^file::create[$f;...] options now works properly and $f
                   5820:          properties are default (fixes issue #928)
                   5821: 
                   5822: 2013-05-16  misha
                   5823: 
                   5824:        * src/include/pa_opcode.h: - define for OBJECT_POOL optimisation is
                   5825:          added
                   5826: 
                   5827:        * src/main/pa_table.C: - a tiny memory optimisation while creating
                   5828:          table if specified limit is bigger than source rows count
                   5829: 
                   5830:        * src/classes/table.C: - ^table.foreach[k;v]{code}[separator] is
                   5831:          added ( new feature: #858 )
                   5832: 
                   5833: 2013-04-29  moko
                   5834: 
                   5835:        * src/classes/curl.C: CURL_IPRESOLVE_V4 now set by default,
                   5836:          $.ipresolve(0|1|2) added (closes issue #891)
                   5837: 
                   5838:        * src/lib/curl/curl.h: CURL_IPRESOLVE added
                   5839: 
                   5840: 2013-04-24  moko
                   5841: 
                   5842:        * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
                   5843:          lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
                   5844:          types/pa_vmemcached.h: ^memcache.release[] added, calls
                   5845:          memcached_quit (refs #893)
                   5846: 
                   5847: 2013-04-22  moko
                   5848: 
                   5849:        * src/: include/pa_string.h, main/pa_common.C: no more double
                   5850:          slashes in file path (fixes bug #872)
                   5851: 
                   5852:        * src/: classes/curl.C, lib/curl/curl.h: minor fixes related to
                   5853:          CURLOPT_ENCODING renamed into CURLOPT_ACCEPT_ENCODING (issue
                   5854:          #739)
                   5855: 
                   5856:        * tests/results/266.processed: $.max_params added (feature #915)
                   5857: 
                   5858:        * src/: include/pa_common.h, main/pa_http.C: response-charset
                   5859:          option added to file::load (closes issue #867)
                   5860: 
                   5861: 2013-04-20  misha
                   5862: 
                   5863:        * src/classes/curl.C: - forgotten CURL_ACCEPT_ENCODING option is
                   5864:          commited
                   5865: 
                   5866: 2013-03-15  misha
                   5867: 
                   5868:        * src/classes/: hash.C, table.C: - Optimisation: do not create
                   5869:          multiple empty strings while ::sql. uae String::Empty instead
                   5870: 
                   5871: 2013-03-14  misha
                   5872: 
                   5873:        * src/classes/reflection.C: - for user classes
                   5874:          ^reflection:method_info[] returns $.max_params and $.extra_param
                   5875:          with $.call_type if they available ( new feature: #915 )
                   5876: 
                   5877:        * src/classes/file.C: - ^file:delete[] now supports an option
                   5878:          $.exception(false) that suppress any exception while deleting
                   5879:          file ( new feature: #916 )
                   5880: 
                   5881:        * src/classes/curl.C: - parsing cookies after curl:load now should
                   5882:          work :)
                   5883: 
                   5884: 2013-03-12  misha
                   5885: 
                   5886:        * src/types/pa_vfile.C: - if specified file_name is empty string
                   5887:          set default name for the file
                   5888: 
                   5889: 2013-03-11  misha
                   5890: 
                   5891:        * src/classes/curl.C: - after $f[^curl:load[...]] the cookies are
                   5892:          also available in $f.cookies
                   5893: 
                   5894:        * src/: include/pa_http.h, main/pa_http.C: - parsing cookies is
                   5895:          moved to a separate method
                   5896: 
                   5897: 2013-03-10  moko
                   5898: 
                   5899:        * src/include/pa_config_fixed.h: typedef unsigned int uint32_t
                   5900:          added
                   5901: 
                   5902:        * src/lib/memcached/pa_memcached.h: typedef unsigned int uint32_t
                   5903:          removed (declared by autoconf)
                   5904: 
                   5905:        * configure.in: AC_TYPE_SSIZE_T, AC_TYPE_UINT32_T added for
                   5906:          uint32_t define
                   5907: 
                   5908: 2013-03-10  misha
                   5909: 
                   5910:        * src/classes/file.C: ^file:delete and ^file:move now support
                   5911:          option $.keep-empty-dirs(true) ( new feature: #884 )
                   5912: 
                   5913:        * src/: include/pa_common.h, main/pa_common.C: - option for keeping
                   5914:          empty dirs is added
                   5915: 
                   5916: 2013-03-10  moko
                   5917: 
                   5918:        * src/classes/: bool.C, double.C, int.C: default can be present,
                   5919:          but default check removed from ^int/double/bool.int/double/bool
                   5920:          for string.int/double/bool compatibility (related to issue #913)
                   5921: 
                   5922:        * src/classes/string.C: ^string.int/dobule/bool no longer
                   5923:          internally throws exception if default is present (closes issue
                   5924:          #913)
                   5925: 
                   5926: 2013-03-09  misha
                   5927: 
                   5928:        * src/types/: pa_vhash.h, pa_vregex.h, pa_vtable.h: - tiny
                   5929:          optimisations ( #845 )
                   5930: 
                   5931:        * src/types/pa_venv.C: - added $env:fields ( new feature: #906 )
                   5932: 
                   5933: 2013-03-08  moko
                   5934: 
                   5935:        * src/main/pa_http.C: GPF on ^cookies:save fixed, $file.cookies now
                   5936:          creates correct table (fixes issue #910)
                   5937: 
                   5938:        * src/classes/op.C: r.connection() -> r.connection(false) to allow
                   5939:          use outside of 'connect' operator (fixes issue #911)
                   5940: 
                   5941:        * tests/results/: 096.processed, 122.processed: test results
                   5942:          updated as doubles now printed with 15 significant digits, not 5
                   5943:          (fixes issue #882)
                   5944: 
                   5945:        * src/types/pa_vdouble.h: %.15g now used to format doubles instead
                   5946:          of broken has_frac() ? "%g": "%.0f" logic (fixes issue #882)
                   5947: 
                   5948: 2013-02-21  moko
                   5949: 
                   5950:        * src/classes/table.C: _locate_name_value does not check arguments
                   5951:          count, so we check it in advance (fixes issue #905)
                   5952: 
                   5953: 2012-10-23  moko
                   5954: 
                   5955:        * buildall: old shell for and echo compatibility (for six)
                   5956: 
                   5957: 2012-10-19  moko
                   5958: 
                   5959:        * buildall: --strip added --disable-safe-mode listed in usage
                   5960: 
                   5961: 2012-10-17  misha
                   5962: 
                   5963:        * src/classes/op.C: - apply-taint should not throw "outside
                   5964:          connect" exception with sql lang now
                   5965: 
                   5966: 2012-10-17  moko
                   5967: 
                   5968:        * src/main/pa_request.C: bugfix: safe mode should be inited for
                   5969:          each request (for apache module)
                   5970: 
                   5971: 2012-09-26  moko
                   5972: 
                   5973:        * src/doc/doxygen.cfg: png -> svg
                   5974: 
                   5975: 2012-09-25  moko
                   5976: 
                   5977:        * tests/: 141.html, results/141.processed: md5 hmac added, long key
                   5978:          test added
                   5979: 
                   5980:        * src/classes/math.C: HMAC for MD5 added, bugfix for tempdigest
                   5981:          double use when key is long
                   5982: 
                   5983: 2012-09-16  moko
                   5984: 
                   5985:        * src/classes/math.C: Format -> Method Encode -> Format
                   5986: 
                   5987:        * tests/: 141.html, results/141.processed: math:digest hmac test
                   5988:          added
                   5989: 
                   5990: 2012-09-14  moko
                   5991: 
                   5992:        * src/classes/math.C: SHA1ReadDigest added and used in ^sha1.
                   5993:          ^digest[sha1|md5;data; $.encode[base64|hex] $.hmac[key]] basic
                   5994:          implementation added
                   5995: 
                   5996: 2012-09-12  moko
                   5997: 
                   5998:        * src/doc/: doxygen.cfg, footer.htm, index.dox, string.dox,
                   5999:          targets.dox: doxygen.cfg and footer.htm updated for doxygen 1.7.3
                   6000:          targets.dox and string.dox slightly actualized
                   6001: 
                   6002: 2012-08-31  moko
                   6003: 
                   6004:        * ChangeLog: now generated with patched cvs2cl.pl
                   6005: 
                   6006: 2012-07-29  moko
                   6007: 
                   6008:        * tests/285.html, src/main/execute.C, tests/results/285.processed:
                   6009:          result should be pushed after VMethodFrame destructor is called,
                   6010:          as it deletes junctions from stack params (fixes issue #868)
                   6011: 
                   6012: 2012-07-23  moko
                   6013: 
                   6014:        * INSTALL, README: buildall script usage documented, other outdated
                   6015:          info updated.
                   6016: 
                   6017:        * buildall-with-xml, buildall-without-xml: replaced by buildall
                   6018: 
                   6019: 2012-07-21  moko
                   6020: 
                   6021:        * buildall: glib does not compile when threads are disabled...
                   6022: 
                   6023:        * src/types/pa_vmail.C: g_assertion fixes for empty input
                   6024: 
                   6025:        * src/types/pa_vmail.C: yet another fix (strange GPF on object
                   6026:          unref, can't unref nested objects)
                   6027: 
                   6028:        * src/types/pa_vmail.C: another check added
                   6029: 
                   6030: 2012-07-19  moko
                   6031: 
                   6032:        * buildall: usage added
                   6033: 
                   6034:        * buildall: new buildall script that unites buildall-with-xml,
                   6035:          buildall-without-xml, --with-apache and --with-mailreceive
                   6036: 
                   6037:        * configure.in: support for static gmime and dynamic glib linking.
                   6038:          fixes for FreeBSD
                   6039: 
                   6040: 2012-07-17  moko
                   6041: 
                   6042:        * configure.in: --with-mailreceive replaced
                   6043:          --with-static-mailreceive and --with-shared-mailreceive pathlink
                   6044:          removed
                   6045: 
                   6046: 2012-07-16  moko
                   6047: 
                   6048:        * src/types/pa_vmail.C: updated to work gmime 2.6, headers now
                   6049:          capitalized, content now decoded and text content converted to
                   6050:          $request:charset.  all properties are accessed by functions, this
                   6051:          ready for dynamic load.
                   6052: 
                   6053: 2012-06-28  moko
                   6054: 
1.116     moko     6055:        * src/targets/apache/Makefile.am: fix for apache cflags for Linux
                   6056:          32 bit
1.95      moko     6057: 
                   6058: 2012-06-27  moko
                   6059: 
                   6060:        * buildall-with-xml, buildall-without-xml: fetch requires -p for
                   6061:          passive ftp
                   6062: 
                   6063:        * src/lib/ltdl/ltdl.vcproj: release build fixed
                   6064: 
                   6065:        * configure.in: 3.4.2 RC -> 3.4.2
                   6066: 
                   6067: 2012-06-22  moko
                   6068: 
                   6069:        * src/types/pa_vfile.C: returned empty mode to stated files (issue
                   6070:          #815)
                   6071: 
                   6072:        * tests/: 284.html, results/284.processed: output options test
                   6073:          (feature #265)
                   6074: 
                   6075: 2012-06-22  misha
                   6076: 
                   6077:        * tests/215.html: - little changes
                   6078: 
                   6079: 2012-06-21  moko
                   6080: 
                   6081:        * src/: classes/json.C, classes/xdoc.C, types/pa_vxdoc.C,
                   6082:          types/pa_vxdoc.h: output_options returned and used (bugfix for
                   6083:          feature #265)
                   6084: 
                   6085:        * buildall-with-xml, buildall-without-xml: --with-match-limit=10000
                   6086:          breaks long .*, default 10M restored. (issue #216)
                   6087: 
                   6088:        * tests/: 283.html, results/283.processed: test for issue #815
                   6089:          added
                   6090: 
                   6091:        * src/types/: pa_vfile.C, pa_vstring.C: bugfix: ^#0D not altered
                   6092:          again, cstrm not required.
                   6093: 
                   6094:        * src/lib/ltdl/: argz.c, ltdl.c, libltdl/lt__glibc.h: fixes for
                   6095:          Win32 and broken FreeBSD (issue #45)
                   6096: 
                   6097:        * src/lib/ltdl/ltdl.vcproj: preopen.c and config.h removed
                   6098: 
                   6099:        * src/main/pa_string.C: warnings war
                   6100: 
                   6101:        * src/: classes/mail.C, include/pa_dir.h, include/pa_http.h,
                   6102:          lib/json/JSON_parser.h, lib/smtp/smtp.h, main/pa_random.C,
                   6103:          main/pa_socks.C, targets/apache/pa_threads.C,
                   6104:          targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
                   6105:          types/pa_vstatus.C: compilation under cygwin fixed
                   6106: 
                   6107: 2012-06-19  moko
                   6108: 
                   6109:        * src/lib/ltdl/: config_fixed.h, ltdl.vcproj: compilation under
                   6110:          Windows fixed
                   6111: 
                   6112:        * parser3.sln: removed antique pcre_ctype
                   6113: 
                   6114:        * src/include/pa_config_fixed.h: required for INT_MAX / UINT_MAX
                   6115: 
                   6116:        * src/include/pa_config_fixed.h: undefined reference to
                   6117:          __imp__pcre_* fix for Windows
                   6118: 
                   6119:        * src/: include/pa_charset.h, lib/pcre/Makefile.am,
1.116     moko     6120:          lib/pcre/pa_pcre_internal.h, lib/pcre/pcre_internal.h:
                   6121:          pcre_internal.h -> pa_pcre_internal.h for Windows compatibility
                   6122:          (win32/pcre has own copy of pcre_internal.h _pcre_default_tables
                   6123:          define fixed
1.95      moko     6124: 
                   6125: 2012-06-18  moko
                   6126: 
                   6127:        * src/classes/memcached.C: flush -> clear
                   6128: 
                   6129:        * src/classes/memcached.C: memcached does not support quotes even
                   6130:          in server name
                   6131: 
                   6132:        * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
                   6133:          lib/memcached/pa_memcached.h, types/pa_vmemcached.C: version()
                   6134:          called on open to check servers existance.  $.key(true) syntax
                   6135:          now supported
                   6136: 
                   6137: 2012-06-17  moko
                   6138: 
                   6139:        * src/include/: pa_config_fixed.h, pa_config_includes.h: old stuff
                   6140:          cleanup
                   6141: 
                   6142:        * src/classes/table.C, tests/282.cfg, tests/282.html,
                   6143:          tests/results/282.processed: encloser at the EOF bug fixed,
                   6144:          incorrectly enclosed data now processed more logicaly (fixes
                   6145:          #339)
                   6146: 
                   6147: 2012-06-15  moko
                   6148: 
                   6149:        * buildall-without-xml: sync with buildall-with-xml
                   6150: 
                   6151:        * buildall-with-xml: download auto-detected between fetch and curl
                   6152: 
                   6153:        * configure.in: --with-gc and --with-pcre now also processed
                   6154:          correctly
                   6155: 
1.116     moko     6156:        * aclocal.m4, configure, src/include/pa_config_auto.h.in: now
                   6157:          aclocal -I src/lib/ltdl/m4/ && autoheader && automake && autoconf
                   6158:          should be run on rol1 using automake / aclocal (GNU automake)
                   6159:          1.11.1 autoconf (GNU Autoconf) 2.68
1.95      moko     6160: 
                   6161:        * configure.in: new PARSER_VERSION logic
                   6162: 
                   6163:        * src/include/pa_version.h: new pa_version.h logic
                   6164: 
                   6165:        * src/: classes/curl.C, classes/file.C, classes/image.C,
                   6166:          classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
                   6167:          types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C:
                   6168:          feols_normalized -> fis_text_content set_binary added
                   6169: 
                   6170:        * src/targets/cgi/parser3.C: gcc compilation warnings fixed
                   6171: 
                   6172: 2012-06-15  misha
                   6173: 
                   6174:        * src/: classes/curl.C, classes/file.C, classes/image.C,
                   6175:          classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
                   6176:          types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C: -
                   6177:          ^file::create[text;content] EOLs in content now is normalized. (
                   6178:          new feature: #815 )
                   6179: 
                   6180: 2012-06-15  moko
                   6181: 
                   6182:        * configure.in: --disable-version-update added to disable version
                   6183:          update with host information (for debian package) whitespace
                   6184:          optimized
                   6185: 
                   6186:        * configure.in: version changed to 3.4.2 RC no-pic added for
                   6187:          libtool
                   6188: 
                   6189:        * src/include/pa_version.h: Nice pa_version.h default. Please keep
                   6190:          it.
                   6191: 
                   6192: 2012-06-14  moko
                   6193: 
                   6194:        * src/classes/hash.C, src/types/pa_vhash.h, tests/281.html,
                   6195:          tests/results/281.processed: "hash flocked" error removed for
                   6196:          safe operations like ^h._count[] ( new feature: #335 )
                   6197: 
1.116     moko     6198:        * src/targets/apache/Makefile.am: libmod_parser3 -> mod_parser3
1.95      moko     6199: 
                   6200:        * buildall-with-xml, buildall-without-xml: --with-static -> --with
                   6201: 
                   6202:        * configure.in: --with-static/shared xml replaced with --with-xml,
                   6203:          xml compilation check added
                   6204: 
                   6205:        * configure.in: --with-static/shared-gc, --with-static-pcre are
                   6206:          replaced with --with-gc and --with-pcre test for pcre linking
                   6207:          added
                   6208: 
                   6209: 2012-06-13  moko
                   6210: 
                   6211:        * configure.in: apxs2 check optimized
                   6212: 
                   6213:        * src/targets/cgi/Makefile.am: preserve-dup-deps requires .a, not
                   6214:          .la, includes optimized
                   6215: 
                   6216:        * buildall-with-xml: --with-pic looks better for -fPIC
                   6217: 
                   6218:        * configure.in: switched to convenience library in static linking
                   6219: 
                   6220:        * src/targets/apache/Makefile.am: switched to convenience library
                   6221:          usage to avoid libtool warnings
                   6222: 
                   6223:        * src/lib/: cord/Makefile.am, gd/Makefile.am, json/Makefile.am,
                   6224:          md5/Makefile.am, memcached/Makefile.am, sdbm/Makefile.am,
                   6225:          smtp/Makefile.am: switched to convenience library usage
                   6226: 
                   6227:        * src/sql/Makefile.am: pa_sql_driver.h should be in includes
                   6228: 
                   6229:        * src/targets/apache/Makefile.am: updated for libtool usage
                   6230: 
                   6231:        * buildall-without-xml: --with-included-ltdl added
                   6232: 
                   6233:        * buildall-without-xml: sync with buildall-with-xml
                   6234: 
                   6235:        * buildall-with-xml: --with-included-ltdl added $cflags added for
                   6236:          -fPIC for x64 $download added for wget success check added
                   6237: 
                   6238:        * buildall-without-xml: --with-dynamic-stdcpp removed
                   6239: 
                   6240:        * configure.in: disable-static returned
                   6241: 
                   6242:        * src/targets/cgi/Makefile.am: Automake 1.9 does not support
                   6243:          LIBTOOLFLAGS
                   6244: 
                   6245: 2012-06-12  moko
                   6246: 
                   6247:        * configure.in, src/targets/cgi/Makefile.am: disable-static not
                   6248:          compatible with LIBTOOLFLAGS for unknown reasons
                   6249: 
                   6250:        * buildall-with-xml: --with-dynamic-stdcpp removed
                   6251: 
                   6252:        * configure.in: static/dynamic -lstdc++ linking option removed
                   6253:          apxs2 check added
                   6254: 
                   6255:        * src/targets/cgi/Makefile.am: static/dynamic -lstdc++ linking
                   6256:          option removed
                   6257: 
                   6258: 2012-06-10  moko
                   6259: 
                   6260:        * src/targets/cgi/Makefile.am: --preserve-dup-deps libtool option
                   6261:          added
                   6262: 
                   6263:        * src/targets/cgi/pp3.cmd: old PAF stuff
                   6264: 
1.116     moko     6265:        * Makefile.am: ACLOCAL_AMFLAGS = -I src/lib/ltdl/m4 added and some
                   6266:          beauty
1.95      moko     6267: 
                   6268:        * depcomp: from libtool 2.4.2
                   6269: 
                   6270:        * configure.in: ltdl directory removed, it has correct Makefile.in
                   6271: 
                   6272: 2012-06-09  moko
                   6273: 
1.116     moko     6274:        * Makefile.am, aclocal.m4, config.guess, config.sub, configure,
                   6275:          install-sh, ltmain.sh, missing, src/include/pa_config_auto.h.in:
1.95      moko     6276:          autogenerated files updated after libtool update
                   6277: 
1.116     moko     6278:        * src/lib/ltdl/: COPYING.LIB, Makefile.am, README, acinclude.m4,
                   6279:          aclocal.m4, argz.c, argz_.h, config-h.in, config.h,
1.95      moko     6280:          config_auto.h.in, config_fixed.h, configure, configure.ac,
                   6281:          configure.in, lt__alloc.c, lt__dirent.c, lt__strl.c,
                   6282:          lt_dlloader.c, lt_error.c, ltdl.c, ltdl.h, slist.c,
                   6283:          config/compile, config/config.guess, config/config.sub,
                   6284:          config/depcomp, config/install-sh, config/ltmain.sh,
                   6285:          config/missing, libltdl/lt__alloc.h, libltdl/lt__dirent.h,
                   6286:          libltdl/lt__glibc.h, libltdl/lt__private.h, libltdl/lt__strl.h,
                   6287:          libltdl/lt_dlloader.h, libltdl/lt_error.h, libltdl/lt_system.h,
                   6288:          libltdl/slist.h, loaders/dld_link.c, loaders/dlopen.c,
                   6289:          loaders/dyld.c, loaders/load_add_on.c, loaders/loadlibrary.c,
                   6290:          loaders/preopen.c, loaders/shl_load.c, m4/argz.m4, m4/libtool.m4,
                   6291:          m4/ltdl.m4, m4/ltoptions.m4, m4/ltsugar.m4, m4/ltversion.m4,
                   6292:          m4/lt~obsolete.m4: libtool updated to version 2.4.2
                   6293: 
                   6294:        * configure.in: preparation for new libtool
                   6295: 
                   6296:        * configure.in: Some beauty added :)
                   6297: 
                   6298:        * src/targets/apache/Makefile.am: := -> =
                   6299: 
                   6300:        * src/lib/pcre/: Makefile.am, config.h: config.h removed once
                   6301:          again. :)
                   6302: 
                   6303:        * src/include/pa_config_includes.h, configure.in: limits.h added,
                   6304:          previously was taken from pcre_internal.h. :)
                   6305: 
                   6306:        * src/lib/pcre/Makefile.am: config.h returned
                   6307: 
                   6308:        * src/lib/pcre/config.h: still need this. :)
                   6309: 
                   6310:        * src/lib/pcre/pcre_internal.h: extracts from real pcre_internal.h
                   6311: 
                   6312:        * configure.in: --with-charsets removed; --with-mysql-client & co
                   6313:          removed
                   6314: 
                   6315:        * buildall-with-xml, buildall-without-xml: pcre_internal.h extracts
                   6316:          now in parser tree, no need to copy
                   6317: 
                   6318:        * src/lib/pcre/: Makefile.am, config.h, ibm-1250.ucm, ibm-1251.ucm,
                   6319:          ibm-1254.ucm, ibm-1257.ucm, pcre_parser_ctype.c,
                   6320:          pcre_parser_ctype.vcproj, ruspart_win2koi.pl, win-koi.tab:
                   6321:          debian/patches/101_pcre.patch - local copy of pcre_internal.h
                   6322:          extracts now used old trash removed
                   6323: 
                   6324:        * etc/parser3.charsets/Makefile.am: charsets now in share
                   6325:          (debian/patches/104_automake.patch) + all charsets are copied
                   6326: 
                   6327:        * buildall-with-xml, buildall-without-xml: curl option removed +
                   6328:          extra arguments now supported
                   6329: 
                   6330: 2012-06-08  misha
                   6331: 
                   6332:        * src/classes/table.C: - one params.as_hash usage was rolled back:
                   6333:          the 2nd option in ^table.hash[] could be hash or table so
                   6334:          .as_hash will throw an exception when table option is specified
                   6335: 
                   6336:        * src/: classes/curl.C, classes/file.C, classes/hash.C,
                   6337:          classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
                   6338:          classes/table.C, classes/void.C, classes/xdoc.C,
                   6339:          include/pa_exception.h, types/pa_vmethod_frame.C,
                   6340:          types/pa_vmethod_frame.h: - MethodParams::as_hash is optimized
                   6341:          and improved (whitespaces are allowed as empty options) -
                   6342:          MethodParams::as_table is added - above methods are used for
                   6343:          parsing methods' options ( new feature: #9 )
                   6344: 
                   6345:        * src/types/: pa_vclass.C, pa_vclass.h: - method get_hash is added
                   6346:          to vclass. now class fields can be accessible as a hash:
                   6347:          $h[^hash::create[$asd:CLASS]]
                   6348: 
                   6349:        * src/types/: pa_vhash.h, pa_vhashfile.h: - vhash and vhashfile now
                   6350:          have get_fields method so their fields can be accessed with
                   6351:          ^reflection:fields[...] & ^reflection:field[...]
                   6352: 
                   6353: 2012-06-06  misha
                   6354: 
                   6355:        * tests/280.html: - tests for
                   6356:          ^reflection:method[obj-or-class;method],
                   6357:          ^reflection:field[obj-or-class;field] and
                   6358:          ^reflection:fields[obj-or-class] are added
                   6359: 
                   6360: 2012-06-05  misha
                   6361: 
                   6362:        * src/classes/reflection.C: - ^reflection:method[class or
                   6363:          object;method name] and ^reflection:field[class or object;field
                   6364:          name] are added
                   6365: 
                   6366:        * src/types/pa_vstateless_class.C: - Method::get_vjunction method
                   6367:          is used
                   6368: 
                   6369:        * src/types/pa_method.h: - Method::as_vjunction method is added
                   6370: 
                   6371: 2012-06-05  moko
                   6372: 
1.116     moko     6373:        * src/targets/Makefile.am: cgi now build with apache module
1.95      moko     6374: 
                   6375:        * src/classes/memcached.C: flish ttl fixed
                   6376: 
                   6377: 2012-06-04  moko
                   6378: 
                   6379:        * src/classes/json.C, src/classes/op.C, tests/279.html,
                   6380:          tests/results/279.processed: ^json:parse[] now supports $.taint
                   6381:          option (new feature #833)
                   6382: 
                   6383: 2012-06-04  misha
                   6384: 
                   6385:        * src/: include/pa_common.h, main/pa_common.C, types/pa_vcookie.C:
                   6386:          - search_stop method was moved from pa_vcookie.C to pa_common.C
                   6387: 
                   6388: 2012-06-03  misha
                   6389: 
                   6390:        * src/main/pa_http.C: - ^file:load[...;http://...] - all received
                   6391:          cookies are parced and stored into $.cookies ( new feature: #31 )
                   6392: 
                   6393: 2012-05-30  misha
                   6394: 
                   6395:        * tests/: 182_dir/a3.p, 182_dir/a4.p, 182.html: - test for adding
                   6396:          incomplete class into a scope while @USE is found
                   6397: 
                   6398:        * src/main/compile.y: - add incomplete class into a scope while
                   6399:          @USE and @CLASS instructions are found ( bugfix: #838 )
                   6400: 
                   6401: 2012-05-30  moko
                   6402: 
                   6403:        * src/types/pa_vclass.C, tests/278.html,
                   6404:          tests/results/278.processed: removed "property has no getter
                   6405:          method" exception when GET_DEFAULT present (fixes #269)
                   6406: 
                   6407:        * src/classes/json.C, tests/277.html: ^json:string[], $.default ->
                   6408:          $._default
                   6409: 
                   6410: 2012-05-29  moko
                   6411: 
                   6412:        * src/types/pa_vvoid.h: $STRICT-VARS(true) implemented to check
                   6413:          uninitialized values usage (new feature: #154)
                   6414: 
                   6415: 2012-05-28  moko
                   6416: 
                   6417:        * tests/277.html, src/classes/json.C, src/classes/reflection.C,
                   6418:          src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
                   6419:          src/types/pa_vdate.h, src/types/pa_vdouble.h,
                   6420:          src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vint.h,
                   6421:          src/types/pa_vobject.C, src/types/pa_vobject.h,
                   6422:          src/types/pa_vstring.h, src/types/pa_vtable.C,
                   6423:          tests/results/277.processed, src/types/pa_vtable.h,
                   6424:          src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h:
                   6425:          ^json:string[$o; $.default[$method]] implemented for VObject (new
                   6426:          feature #803)
                   6427: 
                   6428:        * src/classes/json.C, src/lib/json/JSON_parser.h, tests/277.html,
                   6429:          tests/results/277.processed: json numbers are now treated as
                   6430:          double ( new feature: #834 )
                   6431: 
                   6432:        * src/: classes/math.C, include/pa_string.h, main/pa_charset.C,
                   6433:          main/pa_string.C, types/pa_vdouble.h, types/pa_vint.h: pa_atoui
                   6434:          added for out of range checks, zero division in vint/vdouble
                   6435:          check added ( fixes #832 )
                   6436: 
                   6437:        * tests/: 275.html, results/275.processed: tests for pa_atoui added
                   6438:          ( fixes #832 )
                   6439: 
                   6440: 2012-05-28  misha
                   6441: 
                   6442:        * buildall-with-xml: - --without-lzma option is added to libxml2
                   6443:          configure
                   6444: 
                   6445:        * tests/256.html: - test for ^json:string[-file-;$.file[stat]] is
                   6446:          added - tests for unsupported values for options $.file, $.table
                   6447:          and $.date are added
                   6448: 
                   6449:        * src/: classes/json.C, types/pa_value.h: - ^json:string[...] now
                   6450:          accepts "stat" $.file[] option's value in addition to existed
                   6451:          "text" and "base64" ( new feature: #835 )
                   6452: 
                   6453:        * tests/276.html: - test for
                   6454:          ^reflection:delete[$object-or-class;field-name]
                   6455: 
                   6456:        * src/classes/reflection.C: -
                   6457:          ^reflection:delete[$object-or-class;field-name] is added ( new
                   6458:          feature: #268 )
                   6459: 
                   6460: 2012-05-27  misha
                   6461: 
                   6462:        * buildall-with-xml: - libxml2 2.7.8 => 2.8.0
                   6463: 
                   6464: 2012-05-24  misha
                   6465: 
                   6466:        * src/include/pa_common.h: - method lastposafter was removed
                   6467: 
                   6468:        * src/classes/file.C: - use strrpbrk & rskipchars instead of
                   6469:          lastposafter - ^file:dirname[] & Co proper handle windows file
                   6470:          paths ( bug fix: #783 ) - ^file:dirname[] & ^file:basename[] now
                   6471:          work as *nix commands
                   6472: 
                   6473:        * src/main/pa_request.C: - use strrpbrk instead of lastposafter
                   6474: 
                   6475:        * src/: include/pa_string.h, main/pa_string.C: - strrpbrk &
                   6476:          rskipchars were added
                   6477: 
                   6478:        * tests/270.html: - more tests for ^file:find[]
                   6479: 
                   6480:        * tests/065.html: - more tests for ^file:dirname[] & Co
                   6481: 
                   6482:        * src/include/pa_version.h: - must be "win32" here. it is
                   6483:          auto-generated on *nix
                   6484: 
                   6485: 2012-05-24  moko
                   6486: 
                   6487:        * src/classes/math.C: ^math:convert[] now supports uint32 and
                   6488:          throws overflow exception ( new feature: #830 )
                   6489: 
                   6490:        * tests/: 275.html, results/275.processed: test for ^math:convert[]
                   6491:          uint32 support and overflow added ( new feature: #830 )
                   6492: 
                   6493: 2012-05-23  moko
                   6494: 
                   6495:        * src/: classes/table.C, types/pa_value.h, types/pa_vbool.h,
                   6496:          types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
                   6497:          types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
                   6498:          types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
                   6499:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
                   6500:          types/pa_vregex.h, types/pa_vstateless_class.C,
                   6501:          types/pa_vstateless_class.h, types/pa_vstring.h,
                   6502:          types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
                   6503:          types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: bool
                   6504:          "return string as-is" removed from as_expr_result. ( new feature:
                   6505:          #831 )
                   6506: 
                   6507:        * tests/results/244.processed: test changed after bug #782 fix
                   6508:          commited
                   6509: 
                   6510:        * tests/results/229.processed: test results for bug #782 commited
                   6511: 
                   6512:        * tests/: 254.html, results/254.processed: uid now just compared,
                   6513:          not printed. :)
                   6514: 
                   6515: 2012-05-20  moko
                   6516: 
                   6517:        * src/classes/reflection.C: ^reflection:uid[$object] added ( new
                   6518:          feature: #341 )
                   6519: 
                   6520:        * tests/: 254.html, results/254.processed: test for
                   6521:          ^reflection:uid[] added
                   6522: 
                   6523:        * tests/: 254.html, results/254.processed: test for
                   6524:          ^reflection:uid[$obj] added
                   6525: 
                   6526: 2012-05-17  misha
                   6527: 
                   6528:        * src/main/untaint.C: - do not replace ' char by _26 while
                   6529:          exploding filespec-tainting ( new feature: #829 )
                   6530: 
                   6531: 2012-05-12  moko
                   6532: 
                   6533:        * src/types/pa_vvoid.h: is_string now also checked, but get_* -
                   6534:          not.
                   6535: 
                   6536: 2012-05-08  moko
                   6537: 
                   6538:        * src/types/pa_vmethod_frame.h: bug #782 fixed
                   6539: 
                   6540:        * tests/229.html: test for bug #782
                   6541: 
                   6542:        * tests/results/259.processed, src/main/pa_request.C,
                   6543:          src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
                   6544:          src/types/pa_vstring.h, src/types/pa_vvoid.C,
                   6545:          src/types/pa_vvoid.h: feature #154 - first empty param now
                   6546:          string; defined locals are empty strings; $STRICT-VARS(true)
                   6547:          added
                   6548: 
                   6549: 2012-04-27  moko
                   6550: 
1.116     moko     6551:        * src/targets/apache/Makefile.am:
1.95      moko     6552:          ../../lib/memcached/libmemcached.a added
                   6553: 
                   6554: 2012-04-27  misha
                   6555: 
                   6556:        * buildall-with-xml, buildall-without-xml: - prce 8.12 => pcre 8.30
                   6557:          ( #827 )
                   6558: 
                   6559: 2012-04-25  moko
                   6560: 
                   6561:        * src/: classes/json.C, classes/memcached.C,
                   6562:          lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
                   6563:          types/pa_vmemcached.C, types/pa_vmemcached.h: memcached_add
                   6564:          implemented.
                   6565: 
                   6566:        * src/classes/curl.C: stderr -> f_stderr for Windows compatibility
                   6567: 
                   6568: 2012-04-23  moko
                   6569: 
                   6570:        * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
                   6571:          lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
                   6572:          types/pa_vmemcached.h: open allows options hash for new
                   6573:          memcached(options) function
                   6574: 
                   6575:        * src/classes/curl.C: check_safe_mode added, stderr now rewritten,
                   6576:          not appended
                   6577: 
                   6578: 2012-04-21  moko
                   6579: 
                   6580:        * src/classes/curl.C: '' added. :)
                   6581: 
                   6582:        * src/classes/classes.vcproj: new curl.h location
                   6583: 
                   6584:        * src/classes/curl.C: verbose output redirection from stderr to
                   6585:          file curl option added
                   6586: 
                   6587: 2012-04-20  moko
                   6588: 
                   6589:        * src/: classes/curl.C, lib/curl/curl.h: lib/curl/curl.h now
                   6590:          contains what we need from curl, #ifdef HAVE_CURL removed
                   6591: 
1.116     moko     6592:        * configure, configure.in, src/classes/Makefile.am,
1.95      moko     6593:          src/include/pa_config_auto.h.in, src/include/pa_version.h,
1.116     moko     6594:          src/lib/Makefile.am, src/lib/curl/Makefile.am,
                   6595:          src/lib/curl/curl.h: curl.h header now in src/lib/curl, not
1.95      moko     6596:          configure option
                   6597: 
                   6598: 2012-04-19  moko
                   6599: 
                   6600:        * src/: classes/double.C, classes/inet.C, classes/int.C,
                   6601:          classes/string.C, lib/gc/include/gc_allocator.h,
                   6602:          types/pa_vform.C: PVS-Studio detected errors fixes, unused
                   6603:          options from sql_result_string removed. (closes issue #468)
                   6604: 
                   6605:        * src/types/pa_vmemcached.C: empty string fix
                   6606: 
                   6607:        * src/types/: pa_value.C, pa_value.h, pa_vmemcached.C,
                   6608:          pa_vstring.C, pa_vstring.h: serialization helpers moved to
                   6609:          pa_vmemcached.C
                   6610: 
                   6611: 2012-04-18  moko
                   6612: 
                   6613:        * src/targets/apache/mod_parser3.c: "Parser3 module requires
                   6614:          apache2-mpm-prefork" error displayed in threaded mpm.
                   6615: 
                   6616:        * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
                   6617:          pa_setup_module_cells delayed to avoid GPF on init with php5-xsl
                   6618:          installed (issue #354)
                   6619: 
                   6620: 2012-04-16  moko
                   6621: 
                   6622:        * src/types/pa_vmemcached.C: call to memcached_result_create and
                   6623:          memcached_result_free removed
                   6624: 
                   6625: 2012-04-14  moko
                   6626: 
                   6627:        * src/lib/memcached/pa_memcached.h: uint32_t for Windows defined
                   6628: 
                   6629:        * src/types/pa_vmemcached.C: check_key added and used
                   6630: 
                   6631: 2012-04-13  moko
                   6632: 
                   6633:        * src/: include/pa_string.h, types/pa_value.C, types/pa_value.h,
                   6634:          types/pa_vmemcached.C, types/pa_vstring.C, types/pa_vstring.h:
                   6635:          Serialization_data now added and used, VString now serialized
                   6636:          with languages into memcached.
                   6637: 
                   6638: 2012-03-28  moko
                   6639: 
                   6640:        * src/: types/pa_vmemcached.C, lib/memcached/pa_memcached.C,
                   6641:          lib/memcached/pa_memcached.h: result lengths added
                   6642: 
                   6643: 2012-03-27  moko
                   6644: 
                   6645:        * src/types/pa_vmemcached.C: strdup added
                   6646: 
                   6647: 2012-03-24  moko
                   6648: 
                   6649:        * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
                   6650:          lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
                   6651:          types/pa_vmemcached.h: memcached: mget, flush, fttl added
                   6652: 
                   6653: 2012-03-20  moko
                   6654: 
1.116     moko     6655:        * configure, configure.in: Makefiles.in updated for memcached
1.95      moko     6656: 
                   6657:        * src/targets/cgi/Makefile.am: cleanup
                   6658: 
                   6659:        * src/: types/Makefile.am, types/pa_vmemcached.C,
                   6660:          types/pa_vmemcached.h, targets/cgi/Makefile.am: memcached initial
                   6661: 
                   6662:        * src/: classes/Makefile.am, classes/memcached.C,
                   6663:          lib/memcached/Makefile.am, lib/memcached/constants.h,
                   6664:          lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
                   6665:          lib/memcached/types.h, lib/Makefile.am: memcached initial
                   6666: 
                   6667: 2012-03-16  moko
                   6668: 
                   6669:        * src/main/execute.C: ident now works under Linux + ident displays
                   6670:          filenames (closes issue #818)
                   6671: 
1.116     moko     6672:        * src/types/: Makefile.am, pa_vmethod_frame_global.h,
1.95      moko     6673:          pa_vmethod_frame_local.h: cleanup: pa_vmethod_frame_global.h
                   6674:          pa_vmethod_frame_local.h removed
                   6675: 
                   6676:        * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
                   6677:          classes/classes.h, classes/curl.C, classes/date.C,
                   6678:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   6679:          classes/hashfile.C, classes/image.C, classes/inet.C,
                   6680:          classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
                   6681:          classes/memory.C, classes/op.C, classes/reflection.C,
                   6682:          classes/regex.C, classes/response.C, classes/string.C,
                   6683:          classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
                   6684:          classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
                   6685:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   6686:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   6687:          include/pa_dictionary.h, include/pa_dir.h,
                   6688:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   6689:          include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
                   6690:          include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
                   6691:          include/pa_pool.h, include/pa_random.h, include/pa_request.h,
                   6692:          include/pa_request_charsets.h, include/pa_request_info.h,
                   6693:          include/pa_sapi.h, include/pa_socks.h,
                   6694:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   6695:          include/pa_stack.h, include/pa_string.h,
                   6696:          include/pa_stylesheet_connection.h,
                   6697:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   6698:          include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
                   6699:          include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
                   6700:          lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
                   6701:          lib/md5/pa_md5c.c, lib/pcre/pcre_parser_ctype.c,
                   6702:          lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
                   6703:          lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
                   6704:          main/compile.tab.C, main/compile.y, main/compile_tools.C,
                   6705:          main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
                   6706:          main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
                   6707:          main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
                   6708:          main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
                   6709:          main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
                   6710:          main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
                   6711:          main/pa_string.C, main/pa_stylesheet_connection.C,
                   6712:          main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
                   6713:          main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
                   6714:          main/helpers/simple_folding.pl, sql/pa_sql_driver.h,
                   6715:          targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
                   6716:          targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
                   6717:          targets/cgi/pa_threads.C, targets/cgi/parser3.C,
                   6718:          targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
                   6719:          types/pa_junction.h, types/pa_method.h, types/pa_property.h,
                   6720:          types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
                   6721:          types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
                   6722:          types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
                   6723:          types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
                   6724:          types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
                   6725:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
                   6726:          types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
                   6727:          types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
                   6728:          types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
                   6729:          types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
                   6730:          types/pa_vmemory.h, types/pa_vmethod_frame.C,
                   6731:          types/pa_vmethod_frame.h, types/pa_vmethod_frame_global.h,
                   6732:          types/pa_vmethod_frame_local.h, types/pa_vobject.C,
                   6733:          types/pa_vobject.h, types/pa_vregex.C, types/pa_vregex.h,
                   6734:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
                   6735:          types/pa_vresponse.h, types/pa_vstateless_class.C,
                   6736:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   6737:          types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
                   6738:          types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
                   6739:          types/pa_vvoid.C, types/pa_vvoid.h, types/pa_vxdoc.C,
                   6740:          types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
                   6741:          types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
                   6742:          ident now works under Linux + ident displays filenames (closes
                   6743:          issue #818) Copyright updated
                   6744: 
                   6745: 2012-03-13  moko
                   6746: 
                   6747:        * src/main/pa_string.C: compilation fix for feature #741
                   6748: 
                   6749: 2012-03-09  misha
                   6750: 
                   6751:        * tests/193.html: - tests for ^string:base64[encoded] are updated
                   6752: 
                   6753:        * src/main/pa_common.C: - ^string:base64[encoded;$.strict(true)]
                   6754:          now detects invalid base64 chars in the middle of encoded stricg
                   6755:          ( new feature: #55 )
                   6756: 
                   6757:        * src/include/pa_exception.h: - new exception type for base64
                   6758:          decoding is added
                   6759: 
                   6760: 2012-03-06  misha
                   6761: 
                   6762:        * tests/274.html: - tests for ^date::today[] and
                   6763:          ^date.sql-string[datetime|date|time] are added
                   6764: 
                   6765:        * src/classes/date.C: - constructor ^date::today[] is added ( new
                   6766:          feature: #811 ) - ^date.sql-string[] now can accept one param --
                   6767:          strings "datetime", "date" or "time" - comments tidying up
                   6768: 
                   6769:        * src/types/pa_vdate.h: - get_sql_string now can print datetime,
                   6770:          date and time
                   6771: 
                   6772: 2012-03-03  misha
                   6773: 
                   6774:        * tests/193.html: - tests for
                   6775:          ^string:base64[encoded;$.strict(true)] are added
                   6776: 
                   6777:        * tests/results/auto.p: - try-catch operator is added
                   6778: 
                   6779:        * src/: classes/file.C, classes/string.C, include/pa_common.h,
                   6780:          main/pa_common.C: - $.strict(true|false) option is added to
                   6781:          base64 decode methods ( new feature: #55 )
                   6782: 
                   6783:        * src/main/pa_common.C: - base64 decode memory usage was decreased
                   6784:          ( new feature: #819 )
                   6785: 
                   6786: 2012-02-28  moko
                   6787: 
                   6788:        * src/classes/hash.C: ident test
                   6789: 
                   6790: 2012-02-27  misha
                   6791: 
                   6792:        * src/classes/file.C: - PARSER_VaRSION => PARSER_VeRSION
                   6793: 
                   6794: 2012-01-08  misha
                   6795: 
                   6796:        * tests/273.html: - tests for ^string.replace[from;to] are added
                   6797: 
                   6798:        * src/: classes/string.C, include/pa_dictionary.h,
                   6799:          main/pa_dictionary.C, main/pa_string.C: -
                   6800:          ^string.replace[from;to] is added ( new feature: #741 ) -
                   6801:          ^string.replace[one subst here] is slightly optimized
                   6802: 
                   6803: 2011-12-07  misha
                   6804: 
                   6805:        * src/classes/table.C: - $t[^table::create{$empty}] now creates
                   6806:          named table with one empty column ( bugfix: #63 )
                   6807: 
                   6808: 2011-11-30  misha
                   6809: 
                   6810:        * src/classes/json.C: - it's possible to set user's method for
                   6811:          parsing arrays: ^json:parse[...;$.array[$hook]] ( new feature:
                   6812:          #763 )
                   6813: 
                   6814:        * tests/272.html: - test for ^json:parse[...;$.array[$hook]]
                   6815: 
                   6816: 2011-11-23  misha
                   6817: 
                   6818:        * src/: classes/curl.C, classes/file.C, classes/image.C,
                   6819:          classes/table.C, classes/xdoc.C, types/pa_vfile.C,
                   6820:          types/pa_vfile.h, types/pa_vform.C: - constructor
                   6821:          ^file::create[mode;filename;content[;options]] now accepts binary
                   6822:          mode and file-content - new constructor's format:
                   6823:          ^file::create[string-or-file-content[;$.name[filename]
                   6824:          $.mode[text|binary] $.content-type[...] $.charset[...]]] ( new
                   6825:          feature: #65 )
                   6826: 
                   6827:        * src/: include/pa_request.h, main/pa_request.C: - new method
                   6828:          mime_type_of(const String*) is added
                   6829: 
                   6830:        * src/include/pa_exception.h: - new exception constant
                   6831:          FILE_NAME_MUST_BE_SPECIFIED is added
                   6832: 
                   6833:        * src/classes/table.C: - bug with negative offset transformed into
                   6834:          a feature. it means pointing to a row from the end of the table (
                   6835:          new feature: #810 )
                   6836: 
                   6837: 2011-11-19  misha
                   6838: 
                   6839:        * src/classes/table.C: - íåñêîëüêî signed/unsigned warnings óáðàíû
                   6840:          â ìåòîäå _select ( new feature: #810 )
                   6841: 
                   6842:        * src/types/pa_vxdoc.C: - checkout if $.encoding and $.charset
                   6843:          options were specified together is simplified
                   6844: 
                   6845: 2011-11-12  misha
                   6846: 
                   6847:        * src/main/pa_request.C: - forgotten fix for escaping filename in
                   6848:          HTTP content-disposition header (a part of bug #361 )
                   6849: 
                   6850:        * src/classes/json.C: - ^json:string[$.class_name[jmethod]] now
                   6851:          checks for ancestors' classes as well ( new feature: #456 )
                   6852: 
                   6853:        * src/classes/op.C: - exceptions for ^break[] and ^continue[]
                   6854:          "without cycle" now have types "parser.break" and
                   6855:          "parser.continue" instead of "parser.runtime" ( new feature: #799
                   6856:          )
                   6857: 
                   6858: 2011-11-11  misha
                   6859: 
                   6860:        * tests/results/: 099.processed, 100.processed, 205.processed,
                   6861:          237.processed: - since bug #361 was fixed the content of filename
                   6862:          in HTTP headers is quoted
                   6863: 
                   6864:        * tests/results/270.processed: - result for test 270
                   6865: 
                   6866:        * tests/: 065.html, results/065.processed: - more tests for
                   6867:          ^file:basename[] & Co were added
                   6868: 
                   6869:        * tests/270_dir/: 270.txt, subdir/270.txt: - stuff for 270.html
                   6870: 
                   6871:        * tests/270.html: - tests for ^file:find[] are added
                   6872: 
                   6873:        * src/types/pa_vxdoc.C: - now it's possible to specify encoding
                   6874:          using option $.charset. option $.engoding is still supported but
                   6875:          these options can not be specified together
                   6876: 
                   6877:        * src/classes/xdoc.C: - charset.isUTF8 is used instead of
                   6878:          comparation charset name with string "UTF-8" ( bugfix: #759 )
                   6879: 
                   6880: 2011-10-11  misha
                   6881: 
                   6882:        * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h: - new
                   6883:          option was added: ^xdoc.file[$.name[èìÿ ôàéëà]] (new feature:
                   6884:          #622)
                   6885: 
                   6886: 2011-09-30  misha
                   6887: 
                   6888:        * src/types/pa_vrequest.C: - saving empty $request:post-body causes
                   6889:          exception "saving stat-ed file" ( bugfix: #395 )
                   6890: 
                   6891: 2011-05-30  misha
                   6892: 
                   6893:        * src/classes/string.C: - fixed bug which was added with
                   6894:          params.as_hash into string:sql
                   6895: 
                   6896: 2011-05-29  misha
                   6897: 
                   6898:        * src/types/pa_value.C: - filename in content-disposition header
                   6899:          must be quoted ( bugfix: #361 )
                   6900: 
                   6901: 2011-05-27  misha
                   6902: 
                   6903:        * src/classes/: image.C, xdoc.C: - $.mode must be set for newly
                   6904:          created file
                   6905: 
                   6906:        * src/classes/: hash.C, mail.C: - little tunning with get_hash
                   6907:          usage
                   6908: 
                   6909:        * src/include/pa_exception.h: - one more string for exception was
                   6910:          added
                   6911: 
                   6912: 2011-05-25  misha
                   6913: 
                   6914:        * tests/269.html: - tests for checking input params in some dom
                   6915:          methods
                   6916: 
                   6917:        * src/classes/: xdoc.C, xnode.C: - validation of some input params
                   6918:          was added. it isn't possible not wo create xdoc with invalid
                   6919:          tagName. ( bugfix: #160 )
                   6920: 
                   6921:        * src/include/: pa_exception.h, pa_xml_exception.h: - exception's
                   6922:          string "data must be string" was mover from pa_exception.h to
                   6923:          pa_xml_exception.h
                   6924: 
                   6925:        * src/classes/: xnode.C, xnode.h: - methods as_xmlqname,
                   6926:          as_xmlncname, as_xmlname and as_xmlnsuri were added
                   6927: 
                   6928:        * src/main/pa_xml_exception.C: - XmlException accepts more options
                   6929: 
                   6930:        * src/include/pa_xml_exception.h: - XmlException accepts more
                   6931:          options - XML-related exception's strings were added
                   6932: 
                   6933:        * src/: classes/xdoc.C, types/pa_vxdoc.h: - code cleanup (unused
                   6934:          output_options were removed)
                   6935: 
                   6936: 2011-05-19  misha
                   6937: 
                   6938:        * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
                   6939:          params.as_hash is used more while parsing methods hash-options
                   6940: 
                   6941: 2011-05-18  misha
                   6942: 
                   6943:        * operators.txt: - info about json-serialization of xdoc was added
                   6944: 
                   6945:        * tests/256.html: - tests for json-serialization xdoc were added
                   6946: 
                   6947:        * src/types/pa_vxdoc.C: - ups. I've forgot about "method" :)
                   6948: 
                   6949:        * src/: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   6950:          classes/json.C, classes/xdoc.C: - now json:string can serialize
                   6951:          xdoc-objects. options (the same as ^xdoc.string[]) could be
                   6952:          specified in $.xdoc[] ( new feature: #265 )
                   6953: 
                   6954: 2011-05-15  misha
                   6955: 
                   6956:        * tests/268.html: - tests for ^table.count[with options] were added
                   6957: 
                   6958:        * src/classes/table.C: - method ^table.count[] now can accept
                   6959:          options ( new feature: #93 ): ^table.count[column] returns number
                   6960:          of columns for named table; ^table.count[cells] returns number of
                   6961:          cells in the current row; ^table.count[] & ^table.count[rows]
                   6962:          return number of rows in a table.
                   6963: 
                   6964:        * tests/267.html: - test for checking switch/case in boolean mode
                   6965:          was added
                   6966: 
                   6967:        * src/classes/op.C: - if switch's or case's value is bool, they are
                   6968:          compared as bool values, not as double values: new feature: #351
                   6969: 
                   6970: 2011-05-06  misha
                   6971: 
                   6972:        * tests/242.html: - EOL before EOF was added
                   6973: 
                   6974:        * tests/169.html: - tests for splitting empty string and void were
                   6975:          added
                   6976: 
                   6977:        * src/main/pa_string.C: - fix of fix (^empty_string.split[...]
                   6978:          returned table with one empty cell)
                   6979: 
                   6980: 2011-04-03  misha
                   6981: 
                   6982:        * src/include/pa_version.h, configure.in: - version in head was
                   6983:          changed to 3.4.2b
                   6984: 
                   6985: 2011-03-30  misha
                   6986: 
                   6987:        * src/types/pa_vregex.C: - \w & Co now contain unicode properties
                   6988:          as well ( new feature #294 )
                   6989: 
                   6990: 2011-03-29  misha
                   6991: 
                   6992:        * buildall-with-xml, buildall-without-xml: - PCRE stack usage is
                   6993:          limited to approx. 6 MB. previous limits were too big for real
                   6994:          life. bugfix: #216
                   6995: 
                   6996: 2011-03-04  moko
                   6997: 
                   6998:        * etc/parser3.charsets/cp866.cfg: Conforms to
                   6999:          http://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP866.TXT
                   7000: 
                   7001:        * etc/parser3.charsets/cp866.cfg: cp866 initial version from
                   7002:          vlalek@
                   7003: 
                   7004: 2011-02-22  misha
                   7005: 
                   7006:        * src/include/pa_charset.h, operators.txt: - some methods mustn't
                   7007:          be under #ifdef XML or parser can't be compiled without xml
                   7008:          support
                   7009: 
                   7010: 2011-02-21  misha
                   7011: 
1.116     moko     7012:        * src/targets/apache/: Makefile.am: - mention
1.95      moko     7013:          ApacheModuleParser3.vcproj was removed
                   7014: 
                   7015:        * src/types/pa_vjunction.C: - EOL before EOF was added (warning
                   7016:          removed)
                   7017: 
                   7018: 2011-02-20  misha
                   7019: 
                   7020:        * tests/: 266.html, 266.p: - tests for checking $.inherited and
                   7021:          $.overridden in ^reflection:method_info[...] were added
                   7022: 
                   7023:        * src/classes/reflection.C: - beautifying result of
                   7024:          ^reflection:method_info[] ($.overridden/inherited)
                   7025: 
                   7026: 2011-02-18  misha
                   7027: 
                   7028:        * src/main/: pa_charset.C, pa_http.C, untaint.C: - use pa_isalpha
                   7029:          and pa_isalnum instead of isalpha and isalnum - bug with
                   7030:          redundand quoting lowercased latin chars while building email
                   7031:          body was fixed
                   7032: 
                   7033:        * src/include/pa_common.h: - pa_isalpha and ps_isalnum methods were
                   7034:          added (they check for latin chars only)
                   7035: 
                   7036: 2011-02-16  misha
                   7037: 
                   7038:        * src/main/pa_charset.C: - bugfix: in some cases the calculating
                   7039:          string size for transcoding gave too small value (should ever
                   7040:          look for availability char in dest charset inspite of the char
                   7041:          size)
                   7042: 
                   7043: 2011-02-04  moko
                   7044: 
                   7045:        * tests/223.html: header values now not url-encoded (issue #195)
                   7046: 
                   7047: 2011-02-01  misha
                   7048: 
                   7049:        * buildall-with-xml, buildall-without-xml: - 8.10 => 8.12
                   7050: 
                   7051: 2011-01-31  misha
                   7052: 
                   7053:        * src/main/pa_request.C: - throw exception if param file_name in
                   7054:          use_file is empty
                   7055: 
                   7056: 2011-01-08  moko
                   7057: 
                   7058:        * src/classes/curl.C: compilations errors fixed
                   7059: 
                   7060: 2010-12-29  moko
                   7061: 
                   7062:        * tests/: 265.html, results/265.processed: test for issue #200
                   7063:          added
                   7064: 
                   7065:        * src/main/pa_string.C: empty regex result check added (fixes issue
                   7066:          #200)
                   7067: 
                   7068:        * src/main/pa_http.C: pa_http_safe_header_name corrected a bit
                   7069: 
                   7070:        * tests/results/223.processed: header values now not url-encoded
                   7071:          (issue #195)
                   7072: 
                   7073:        * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
                   7074:          main/untaint.C: L_HTTP_HEADER now used in http headers values,
                   7075:          pa_http_safe_header_name added for headers names (fixes bug #195)
                   7076: 
                   7077: 2010-12-18  misha
                   7078: 
                   7079:        * src/: types/types.vcproj, classes/classes.vcproj: - arp-include
                   7080:          => pa-include
                   7081: 
                   7082: 2010-11-28  moko
                   7083: 
                   7084:        * src/lib/sdbm/sdbm.vcproj: apr -> pa (.vcproj)
                   7085: 
                   7086:        * src/lib/sdbm/: pa_strings.C, sdbm.c, pa-include/pa_strings.h: apr
                   7087:          -> pa
                   7088: 
                   7089:        * configure.in: apr -> pa
                   7090: 
                   7091:        * src/types/: pa_vhashfile.C, pa_vhashfile.h: apr -> pa
                   7092: 
                   7093:        * src/: lib/sdbm/pa-include/Makefile.am, lib/sdbm/Makefile.am,
                   7094:          classes/Makefile.am, types/Makefile.am: apr -> pa
                   7095: 
                   7096:        * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C,
                   7097:          pa_file_io.C, pa_strings.C, sdbm.c, sdbm_hash.c, sdbm_lock.c,
                   7098:          sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h,
                   7099:          pa-include/pa_apr.h, pa-include/pa_errno.h,
                   7100:          pa-include/pa_file_info.h, pa-include/pa_file_io.h,
                   7101:          pa-include/pa_sdbm.h, pa-include/pa_strings.h: apr -> pa (apache2
                   7102:          module apr name conflict resolved)
                   7103: 
                   7104: 2010-11-27  misha
                   7105: 
                   7106:        * buildall-with-xml, buildall-without-xml: - typo fixed: libz2 ->
                   7107:          libbz2
                   7108: 
                   7109: 2010-11-26  misha
                   7110: 
                   7111:        * src/: types/pa_vregex.C, classes/hash.C, classes/table.C: -
                   7112:          warnings removed
                   7113: 
                   7114: 2010-11-25  moko
                   7115: 
                   7116:        * operators.txt: $.indent(true)
                   7117: 
                   7118:        * operators.txt: another bugfix. :)
                   7119: 
                   7120:        * operators.txt: bugfix. :)
                   7121: 
                   7122:        * buildall-with-xml: libxml2-2.7.8 + with-apache
                   7123: 
                   7124: 2010-11-24  moko
                   7125: 
1.116     moko     7126:        * configure: apxs support
1.95      moko     7127: 
                   7128:        * configure.in: apxs support -Bstatic gc removed for OS X
                   7129: 
                   7130:        * src/targets/: Makefile.am, apache/Makefile.am: apxs support
                   7131: 
                   7132:        * src/main/: pa_globals.C, pa_xml_io.C: the rest converted to
                   7133:          THREAD_LOCAL usage
                   7134: 
                   7135:        * src/: classes/curl.C, include/pa_config_includes.h,
                   7136:          main/pa_globals.C: THREAD_LOCAL defined and used
                   7137: 
                   7138: 2010-11-23  moko
                   7139: 
                   7140:        * src/: classes/op.C, main/pa_os.C: microseconds, not milliseconds
                   7141:          should be passed to pa_sleep, and only fractional part (bugfix:
                   7142:          #188)
                   7143: 
                   7144:        * src/targets/apache/mod_parser3.c: 1.3 compatibility
                   7145: 
                   7146:        * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
                   7147:          GC_dont_gc=1, as in cgi version
                   7148: 
                   7149:        * src/targets/apache/mod_parser3.c: warning war
                   7150: 
                   7151:        * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
                   7152:          pa_httpd.h: version removed, some trash removed
                   7153: 
                   7154:        * src/targets/apache/mod_parser3.c: version removed (we don't want
                   7155:          to show it), warning war
                   7156: 
                   7157:        * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
                   7158:          pa_httpd.h: parser_status_allowed removed + merge config
                   7159:          functions removed (override is the default) + beauty
                   7160: 
                   7161:        * src/: include/pa_request.h, main/pa_request.C,
                   7162:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C: option to
                   7163:          hide $status used in apache module removed
                   7164: 
                   7165: 2010-11-18  moko
                   7166: 
                   7167:        * operators.txt: $.table[compact] added for ^json:string[]
                   7168: 
                   7169: 2010-11-16  moko
                   7170: 
                   7171:        * src/targets/apache/mod_parser3.c: some cleanup done
                   7172: 
                   7173:        * src/main/untaint.C: bugfix: first, second String::Body argument
                   7174:          is hashcode; second, info.fragment_begin is original, not
                   7175:          resulting length
                   7176: 
                   7177:        * src/classes/file.C: new feature: $.stdin now untainted
                   7178: 
                   7179:        * tests/results/264.processed: new feature: $.stdin[] now untainted
                   7180: 
                   7181:        * tests/cat.sh: new feature: stdin arg to test $.stdin[value]
                   7182: 
                   7183:        * src/classes/op.C: ^apply-taint[] method added
                   7184: 
                   7185:        * tests/: 264.html, results/264.processed: ^apply-taint[] test
                   7186:          added; $.stdin untaint test added
                   7187: 
                   7188: 2010-11-15  moko
                   7189: 
                   7190:        * src/targets/apache/mod_parser3.c: outdated MODULE_MAGIC_NUMBER
                   7191:          removed
                   7192: 
                   7193:        * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
                   7194:          pa_httpd.h: 2x2 calculated under apache2. :)
                   7195: 
                   7196: 2010-11-13  moko
                   7197: 
                   7198:        * src/targets/apache/mod_parser3.c: initial changes to build module
                   7199:          with apache 2.x includes
                   7200: 
                   7201:        * src/targets/apache/: Makefile.am, mod_parser3.c,
                   7202:          mod_parser3_core.C, pa_httpd.h, pa_threads.C: initial commit for
                   7203:          united apache 1.3 / apache 2.x DSO module
                   7204: 
                   7205: 2010-11-09  moko
                   7206: 
                   7207:        * src/types/pa_method.h: check added to dissallow @method[name;*]
                   7208:          syntax
                   7209: 
                   7210:        * tests/: 263.html, results/263.processed: test from method[*args]
                   7211:          added
                   7212: 
                   7213:        * src/types/: pa_method.h, pa_vmethod_frame.h: closes #26: variable
                   7214:          number of params can now be passed to a method declared with *arg
                   7215: 
                   7216: 2010-11-06  moko
                   7217: 
                   7218:        * src/classes/table.C: formating fixed. :)
                   7219: 
                   7220:        * src/classes/table.C: closes #4: ^table.select now supports
                   7221:          $.limit(), $.offset, $.reverse() options
                   7222: 
                   7223:        * tests/: 262.html, results/262.processed: test for ^table:select
                   7224:          with options added (feature #4)
                   7225: 
                   7226:        * src/include/pa_array.h: remove function added
                   7227: 
                   7228:        * src/types/: pa_vhash.C, pa_vhash.h: avoiding temporal String
                   7229:          object in get_element/put_element, using static one.
                   7230: 
                   7231: 2010-11-04  moko
                   7232: 
                   7233:        * src/types/pa_vregex.C: closes #6: exeption now thrown if invalid
                   7234:          options is passed
                   7235: 
                   7236:        * tests/: 256.html, results/256.processed: $.table[compact] feature
                   7237:          now tested; k and p in handler now tested.
                   7238: 
                   7239:        * src/types/: pa_value.h, pa_vtable.C, pa_vtable.h: fixes #153,
                   7240:          $.table[compact] feature added
                   7241: 
                   7242:        * src/classes/json.C: key is now passed to handler in
                   7243:          value_json_string; ^json:string result now process tainting
                   7244:          inside and returns clean string, related to issue #153
                   7245: 
                   7246:        * src/main/untaint.C: bugfix: charset can be null (in
                   7247:          ^string:save[] as example), thus check is added
                   7248: 
                   7249: 2010-10-31  moko
                   7250: 
                   7251:        * src/classes/string.C: error message changed (fixes issue #149)
                   7252: 
                   7253: 2010-10-29  moko
                   7254: 
                   7255:        * src/main/pa_http.C: ":port" is now added to "Host:" header if
                   7256:          port is not default (fixes issue #155); exception on invalid port
                   7257:          added.
                   7258: 
                   7259:        * src/main/untaint.C: '*' is now not urlencoded to allow header
                   7260:          "Accept: */*" to be passed
                   7261: 
                   7262: 2010-10-28  moko
                   7263: 
                   7264:        * src/classes/curl.C: bugfix: detect_charset() was throwing
                   7265:          exception on unknown charset even if response_charset was
                   7266:          specified
                   7267: 
                   7268: 2010-10-27  moko
                   7269: 
                   7270:        * src/classes/string.C: ^string.append removed for void
                   7271:          compatibility
                   7272: 
                   7273: 2010-10-26  moko
                   7274: 
                   7275:        * src/classes/json.C: libjson supports array at top level, we too
                   7276:          (GPF fixed)
                   7277: 
                   7278: 2010-10-25  moko
                   7279: 
                   7280:        * tests/: 253.html, results/253.processed: libjson supports array
                   7281:          at top level, parser now supports it as well.
                   7282: 
                   7283:        * tests/261.html, tests/results/261.processed,
                   7284:          src/types/pa_vstring.h: empty string is now void compatible
                   7285:          (allows $empty.key)
                   7286: 
                   7287: 2010-10-22  misha
                   7288: 
                   7289:        * src/types/pa_vcookie.C: - fix for session cookie (was introduced
                   7290:          while adding additional expires checkout)
                   7291: 
                   7292:        * tests/030.html: - test for session cookie was added
                   7293: 
                   7294: 2010-10-21  moko
                   7295: 
                   7296:        * src/: classes/string.C, classes/void.C, main/execute.C,
                   7297:          types/pa_vvoid.C, types/pa_vvoid.h: void now inherited from
                   7298:          string (feature #111)
                   7299: 
                   7300:        * tests/: 261.html, results/261.processed: checks void from string
                   7301:          inheritance (feature #111)
                   7302: 
                   7303:        * src/classes/: bool.C, classes.h, curl.C, date.C, double.C,
                   7304:          file.C, hash.C, hashfile.C, image.C, inet.C, int.C, json.C,
                   7305:          reflection.C, regex.C, string.C, table.C, void.C: used_directly()
                   7306:          now true by default
                   7307: 
                   7308: 2010-10-17  moko
                   7309: 
                   7310:        * src/: include/pa_string.h, main/pa_http.C, main/untaint.C: files
                   7311:          upload now uses binary blocks instead of L_FILE_POST tainting.
                   7312:          (bugfix: #128)
                   7313: 
                   7314:        * tests/: 223.html, results/223.processed: binary file upload test
                   7315:          added, GPF (issue #128) also checked in this test
                   7316: 
                   7317: 2010-10-13  misha
                   7318: 
                   7319:        * tests/260.html: - test for math:convert
                   7320: 
                   7321:        * src/classes/math.C: - error in math:convert was fixed
                   7322: 
                   7323:        * operators.txt: - info about
                   7324:          ^math:convert[number](from-base;to-base) was added
                   7325: 
                   7326:        * src/classes/math.C: - method
                   7327:          ^math:convert[number](from-base;to-base) for converting number
                   7328:          represention from one base to another was added ( new feature:
                   7329:          #23 )
                   7330: 
                   7331: 2010-10-13  moko
                   7332: 
                   7333:        * src/main/compile.tab.C: [] now is empty string, not void
                   7334: 
                   7335:        * src/main/compile.y: [] now is empty string, not void
                   7336: 
                   7337:        * src/types/pa_vvoid.h: void now passed as parameter
                   7338: 
                   7339:        * tests/: 259.html, results/259.processed: to test difference
                   7340:          between void and empty string (see ticket #111)
                   7341: 
                   7342:        * tests/results/152.processed: $sEmpty[] is now empty string, not
                   7343:          void
                   7344: 
                   7345:        * tests/256.html: $s[$void] is no longer empty string
                   7346: 
                   7347:        * tests/254.html: empty string is no longer void
                   7348: 
                   7349: 2010-10-12  misha
                   7350: 
                   7351:        * src/types/pa_vcookie.C: - check if $.expires value can be
                   7352:          converted to date during cookies set up ( bugfix: #104 )
                   7353: 
                   7354:        * tests/041.html: - more tests for ^table.locate were added
                   7355: 
                   7356:        * src/classes/table.C: - ^table.locate[field;value;options] didn't
                   7357:          work ( bugfix: #129 ) - exception comment for incorrect options
                   7358:          ^table.locate[field;value;options] was fixed
                   7359: 
                   7360: 2010-10-10  moko
                   7361: 
                   7362:        * src/: classes/reflection.C, main/execute.C: constructor returning
                   7363:          another object feature returned
                   7364: 
                   7365:        * tests/results/258.processed: test result updated as constructor
                   7366:          returning another object feature returned
                   7367: 
                   7368:        * tests/: 258.html, results/258.processed: test for constructor
                   7369:          returning another object
                   7370: 
                   7371: 2010-10-08  misha
                   7372: 
                   7373:        * tests/257.html: - whitespaces after @METACOMMANDS and their
                   7374:          options shouldn't cause exceptions any longer
                   7375: 
                   7376: 2010-10-06  moko
                   7377: 
                   7378:        * src/classes/: hash.C, table.C: length from sql server is now
                   7379:          ignored, as sql string can contain 0x00 inside (bugfix: #119)
                   7380: 
                   7381: 2010-10-02  misha
                   7382: 
                   7383:        * operators.txt: - the X mark was removed from ^cache[file]. it is
                   7384:          usable to delete cache file.
                   7385: 
                   7386: 2010-10-02  moko
                   7387: 
                   7388:        * tests/: 253.html, results/253.processed: hook_key added for key
                   7389:          checking
                   7390: 
                   7391:        * src/classes/json.C: null key bug fixed
                   7392: 
                   7393: 2010-09-29  misha
                   7394: 
                   7395:        * tests/: 256.html, 256.txt: - tests for ^json:string[] were added
                   7396: 
                   7397: 2010-09-25  moko
                   7398: 
                   7399:        * src/classes/json.C: small fixed
                   7400: 
                   7401:        * tests/results/: 253.processed, 255.processed: just updated
                   7402: 
                   7403:        * tests/: 253.html, 253_json.txt, 255.html, results/253.processed,
                   7404:          results/255.processed: charset transcode test added for
                   7405:          json:parse
                   7406: 
                   7407: 2010-09-24  moko
                   7408: 
                   7409:        * src/types/pa_value.h: warning war :)
                   7410: 
                   7411:        * src/: classes/json.C, include/pa_request.h, types/pa_value.h,
                   7412:          types/pa_vfile.C, types/pa_vtable.C: $.indent implemented for
                   7413:          ^json:string
                   7414: 
                   7415: 2010-09-22  moko
                   7416: 
                   7417:        * src/main/pa_charset.C: parser charset tables declare only
                   7418:          white-space before 0x20, thus adding the missing chars
                   7419: 
                   7420:        * etc/parser3.charsets/: koi8-r.cfg, koi8-u.cfg: updated to conform
                   7421:          to http://unicode.org/Public/MAPPINGS/VENDORS/
                   7422: 
                   7423: 2010-09-21  misha
                   7424: 
                   7425:        * src/main/compile.y: - some semicolons were added (VS2010 don't
                   7426:          want to compile grammar if they are absent)
                   7427: 
                   7428:        * tests/: make_tests.cmd, run_tests.cmd: - path tools is changed
                   7429: 
                   7430:        * src/classes/classes.vcproj: - pathes to ls and gawk are changed
                   7431: 
                   7432:        * src/main/main.vcproj: - path to bison is changed
                   7433: 
                   7434: 2010-09-21  moko
                   7435: 
1.116     moko     7436:        * etc/parser3.charsets/: windows-1250.cfg, windows-1251.cfg,
                   7437:          windows-1254.cfg, windows-1257.cfg, x-mac-cyrillic.cfg: updated
                   7438:          to conform to http://unicode.org/Public/MAPPINGS/VENDORS/
1.95      moko     7439: 
                   7440: 2010-09-20  misha
                   7441: 
                   7442:        * src/types/pa_vtable.C: - add EOLs while json-serializing table
                   7443: 
                   7444:        * src/classes/json.C: - add EOL while json-serializing hash
                   7445: 
                   7446:        * src/lib/json/JSON_parser.C: - 'ES' replaced by 'ESC' because some
                   7447:          compilers don't like 'ES'.
                   7448: 
                   7449: 2010-09-17  misha
                   7450: 
                   7451:        * operators.txt: - info about json class was added
                   7452: 
                   7453:        * src/classes/json.C: - ^json:string[object]
                   7454: 
                   7455:        * src/: include/pa_request.h, main/pa_request.C: - stuff for
                   7456:          preventing infinite recursion while executing json:string was
                   7457:          added
                   7458: 
                   7459:        * src/include/pa_string.h: - method append_quoted was added
                   7460: 
                   7461:        * src/types/: pa_value.C, pa_value.h, pa_vbool.h, pa_vdate.h,
                   7462:          pa_vdouble.h, pa_vfile.C, pa_vfile.h, pa_vint.h, pa_vstring.h,
                   7463:          pa_vtable.C, pa_vtable.h, pa_vvoid.h: - method get_json_string
                   7464:          was added to Value & Co
                   7465: 
                   7466:        * src/classes/date.C: - methods get_gmt_string and get_sql_string
                   7467:          were used
                   7468: 
                   7469:        * src/types/pa_vdate.h: - methods get_gmt_string and get_sql_string
                   7470:          were added
                   7471: 
                   7472: 2010-09-10  moko
                   7473: 
                   7474:        * src/targets/cgi/parser3.C: vsnprintf now not called twice in
                   7475:          die_or_abort (backport from 3.4.1)
                   7476: 
                   7477:        * src/targets/cgi/parser3.C: vsnprintf now not called twice in
                   7478:          die_or_abort (bugfix: #106)
                   7479: 
                   7480: 2010-09-09  moko
                   7481: 
                   7482:        * src/classes/json.C: warning war. :)
                   7483: 
                   7484: 2010-09-08  misha
                   7485: 
                   7486:        * src/lib/json/Makefile.am: - additional include directories were
                   7487:          added (for pa_memory.h and gc.h)
                   7488: 
                   7489:        * src/lib/json/json.vcproj: - JSON_parser.c => JSON_parser.C -
                   7490:          compile as C++ instead default - additional include directory was
                   7491:          added (for gc.h)
                   7492: 
                   7493:        * src/types/pa_vform.C: - little code reformating
                   7494: 
                   7495:        * src/classes/file.C: - $.content-type option now can be specified
                   7496:          in ^file::create ( new feature: #102 )
                   7497: 
                   7498: 2010-09-08  moko
                   7499: 
                   7500:        * src/lib/json/: JSON_parser.C, JSON_parser.h: json lib now uses
                   7501:          pa_malloc/pa_free
                   7502: 
                   7503: 2010-09-07  moko
                   7504: 
                   7505:        * tests/results/254.processed: VStateless_class:put_element
                   7506:          exception was fixed
                   7507: 
                   7508:        * src/types/: pa_value.h, pa_vstateless_class.h: now
                   7509:          VStateless_class:put_element barks self.type, not this.type
                   7510:          (bugfix: #105)
                   7511: 
                   7512: 2010-09-06  moko
                   7513: 
                   7514:        * src/classes/reflection.C: bugfix: new String() is required for
                   7515:          exception handling
                   7516: 
                   7517:        * tests/: 254.html, results/254.processed: test modified
                   7518: 
                   7519: 2010-09-05  moko
                   7520: 
                   7521:        * tests/: 254.html, results/254.processed: ^reflection:copy test
                   7522:          added
                   7523: 
                   7524:        * src/: classes/reflection.C, include/pa_request.h:
                   7525:          ^reflection:copy implemented (new feature: #100)
                   7526: 
                   7527: 2010-09-03  moko
                   7528: 
                   7529:        * src/lib/json/JSON_parser.C: c++ compatiblity
                   7530: 
                   7531:        * tests/: 253.html, 253_json.txt, results/253.processed: $.distinct
                   7532:          option testing added
                   7533: 
                   7534: 2010-09-02  moko
                   7535: 
                   7536:        * src/classes/json.C: $.distinct[first|last|all] added
                   7537: 
                   7538: 2010-09-01  moko
                   7539: 
                   7540:        * tests/results/253.processed: json test result
                   7541: 
                   7542:        * tests/: 253.html, 253_json.txt: json test added
                   7543: 
                   7544:        * src/classes/json.C: json.C update to actual version + hash key
                   7545:          creation bugfix
                   7546: 
                   7547: 2010-08-31  misha
                   7548: 
                   7549:        * src/lib/json/JSON_parser.C, src/lib/json/JSON_parser.h,
                   7550:          src/lib/json/Makefile.am, src/lib/json/json.vcproj,
                   7551:          src/lib/Makefile.am, src/classes/Makefile.am,
                   7552:          src/classes/classes.vcproj, src/classes/json.C, parser3.sln: -
                   7553:          json library was added
                   7554: 
                   7555: 2010-08-30  moko
                   7556: 
                   7557:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
                   7558:          types/pa_vobject.C: cosmetic optimization in
                   7559:          request:execute_method usage
                   7560: 
                   7561:        * src/: include/pa_charset.h, main/pa_charset.C: small
                   7562:          optimization, just to decrease number of lines. :)
                   7563: 
                   7564: 2010-08-27  misha
                   7565: 
                   7566:        * src/classes/op.C: - taint[json] was added
                   7567: 
                   7568:        * tests/: 250.html, 251.html, 252.html: - tests for taint[json]
                   7569:          were added
                   7570: 
                   7571:        * src/main/pa_exec.C: - warning fix was rolled back.
                   7572: 
                   7573:        * src/: main/pa_charset.C, main/untaint.C, include/pa_charset.h,
                   7574:          include/pa_string.h: - taint[json] was added - escaping was
                   7575:          slightly modified
                   7576: 
                   7577: 2010-08-25  misha
                   7578: 
                   7579:        * src/classes/file.C: - typo in file:sql exception was fixed
                   7580: 
                   7581:        * src/main/pa_exec.C: - warning about declared and not used
                   7582:          variable forced_allow was removed
                   7583: 
                   7584: 2010-08-14  misha
                   7585: 
                   7586:        * src/classes/hash.C: - two warnings about signed/unsigned mismatch
                   7587:          were removed
                   7588: 
                   7589: 2010-08-11  moko
                   7590: 
                   7591:        * tests/: 249.html, results/249.processed: default setter and
                   7592:          anti-recursive default getter test added
                   7593: 
                   7594:        * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
                   7595:          types/pa_value.h, types/pa_vclass.C, types/pa_vobject.C,
                   7596:          types/pa_vobject.h, types/pa_vstateless_class.C,
                   7597:          types/pa_vstateless_class.h: default setter support +
                   7598:          anti-recursive default getter support ( new feature: #13 )
                   7599: 
                   7600:        * src/include/pa_hash.h: optimization: threshold member removed
                   7601:          from hash, reducing sizeof(hash)
                   7602: 
                   7603: 2010-08-10  misha
                   7604: 
                   7605:        * tests/196.html: - junction-method was added to the test
                   7606: 
                   7607:        * tests/248.html: - ups. typo :)
                   7608: 
                   7609:        * tests/248.html: - test for checking .match with 4 params
                   7610: 
                   7611:        * tests/: 247.html, 247_utf8.txt, 247_utf8_bom.txt,
                   7612:          247_windows1251.txt: - test for "transcode file from utf-8 to
                   7613:          $request:charset during loading if the BOM code is detected"
                   7614: 
                   7615:        * src/main/: pa_common.C, pa_http.C: - transcode file from utf-8 to
                   7616:          $request:charset during loading if the BOM code is detected ( new
                   7617:          feature: #98 )
                   7618: 
                   7619: 2010-08-05  misha
                   7620: 
                   7621:        * src/classes/image.C: - ^image.replace now can accept only 2
                   7622:          params. in this case the whole image is affected ( new feature:
                   7623:          #95 )
                   7624: 
                   7625: 2010-08-04  misha
                   7626: 
                   7627:        * tests/246.html: - test tor ^hash._at[] was added
                   7628: 
                   7629:        * src/classes/hash.C: - ^hash._at[first|last|[-]N] ( new feature:
                   7630:          #53 )
                   7631: 
                   7632:        * src/include/pa_hash.h: - methods for accessing the first and the
                   7633:          last values of ordered hash were added (first_value and
                   7634:          last_value)
                   7635: 
                   7636:        * src/classes/file.C: - now ^file::base64 accepts up to 4 params
                   7637:          (similar to others file's methods):
                   7638:          ^file::base64[mode;user-file-name;encoded;options] ( new feature:
                   7639:          #68 )
                   7640: 
                   7641:        * src/types/pa_vmethod_frame.h: - helper method as_hash was added
                   7642: 
                   7643: 2010-08-01  moko
                   7644: 
                   7645:        * src/classes/op.C: to correctly process $result[] in code, called
                   7646:          from ^process
                   7647: 
                   7648:        * tests/245.html: $result in ^process[] test added
                   7649: 
                   7650:        * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
                   7651:          main/execute.C, main/pa_request.C, types/pa_vmethod_frame.C,
                   7652:          types/pa_vmethod_frame.h, types/pa_vobject.C: optimization:
                   7653:          VMethodFrame(junction, caller) replaced with VMethodFrame(method,
                   7654:          caller, self) op_call(VMethodFrame &frame, bool constructing)
                   7655:          removed, construct(class,method) added
                   7656: 
                   7657:        * tests/results/: 192.processed, 244.processed: request::construct
                   7658:          added
                   7659: 
                   7660:        * tests/: 244.html, 245.html, results/244.processed,
                   7661:          results/245.processed: object creation exceptions and ^process
                   7662:          tests added
                   7663: 
                   7664: 2010-07-28  misha
                   7665: 
                   7666:        * tests/make_tests.cmd: - win32 EOLs
                   7667: 
                   7668:        * tests/: run_parser.cmd, run_tests.cmd: - cmd files for executing
                   7669:          tests on Win32 were added (The system timezone should be GMT+3)
                   7670: 
                   7671: 2010-07-26  misha
                   7672: 
                   7673:        * tests/: 212.html, results/212.processed: - sizes were removed
                   7674:          mecause they could be different on different OSs
                   7675: 
                   7676:        * tests/065.html: - make it "win32 friendly"
                   7677: 
                   7678: 2010-07-25  misha
                   7679: 
                   7680:        * src/main/compile.y: - all EOLs between methods are removed during
                   7681:          compilation ( new feature: #47 )
                   7682: 
                   7683:        * tests/results/149.processed: - prepare tests to trim trailing
                   7684:          methods' EOLs
                   7685: 
                   7686:        * tests/149.html: - prepare tests to trim trailing methods' EOLs
                   7687: 
                   7688:        * tests/: results/006.processed, results/014.processed, 006.html,
                   7689:          014.html, 022.html: - prepare tests to trim trailing methods'
                   7690:          EOLs
                   7691: 
                   7692:        * tests/: 059.html, 071.html, 149.html, results/059.processed,
                   7693:          results/071.processed, results/022.processed: - prepare tests to
                   7694:          trim trailing methods' EOLs
                   7695: 
                   7696:        * tests/: results/073.processed, results/109.processed,
                   7697:          results/142.processed, results/144.processed,
                   7698:          results/149.processed, 073.html, 096.html, 109.html, 142.html,
                   7699:          144.html: - prepare tests to trim trailing methods' EOLs
                   7700: 
                   7701:        * tests/: 096.html, 107.html, 109.html, 142.html, 144.html,
                   7702:          149.html, 152.html, results/096.processed, results/107.processed,
                   7703:          results/109.processed, results/142.processed,
                   7704:          results/144.processed: - prepare tests to trim trailing methods'
                   7705:          EOLs
                   7706: 
                   7707: 2010-07-24  moko
                   7708: 
                   7709:        * tests/results/: 156.processed, 224.processed: fix for #54 changed
                   7710:          the hash order in this test
                   7711: 
                   7712:        * tests/014.html: to check hash order, hash no is longer sorted
                   7713:          before print
                   7714: 
                   7715:        * src/include/pa_hash.h: hash copy constructor now keeps order
                   7716:          (bugfix: #54)
                   7717: 
                   7718: 2010-07-23  moko
                   7719: 
                   7720:        * tests/results/224.processed: @auto[] is no longer inherited
                   7721: 
                   7722:        * src/types/pa_vstateless_class.C, tests/227.html,
                   7723:          tests/results/227.processed: @auto[] is no longer inherited
                   7724:          (bugfix: #57)
                   7725: 
                   7726: 2010-07-22  misha
                   7727: 
                   7728:        * src/classes/table.C: - don't skip comment lines during
                   7729:          table::load if encloser or separator is set as '#' ( new feature:
                   7730:          #30 )
                   7731: 
                   7732:        * src/targets/cgi/parser3.C: - don't run as cgi if
                   7733:          env:PARSER_VERSION was set for preventing infinite loot ( bugfix:
                   7734:          #12 )
                   7735: 
                   7736:        * src/classes/file.C: - set PARSER_VARSION env before external
                   7737:          script executing
                   7738: 
                   7739: 2010-07-13  misha
                   7740: 
                   7741:        * tests/058.html: - test for suppressing @border was added - test
                   7742:          for user attribute was added
                   7743: 
                   7744:        * tests/results/186.processed: unescaping from \uXXXX
                   7745: 
                   7746:        * tests/186.html: unescaping from \uXXXX
                   7747: 
                   7748:        * tests/: 239.html, results/239.processed: method call type
                   7749: 
                   7750:        * src/types/: pa_vjunction.C, pa_vjunction.h: - bugfix: #90 :
                   7751:          $junction_method.CLASS_NAME (+CLASS)
                   7752: 
                   7753: 2010-07-07  misha
                   7754: 
                   7755:        * buildall-with-xml, buildall-without-xml: - moving to pcre 8.10 on
                   7756:          *nix
                   7757: 
                   7758: 2010-07-05  misha
                   7759: 
                   7760:        * src/: classes/curl.C, classes/file.C, classes/hash.C,
                   7761:          classes/image.C, classes/op.C, classes/string.C, classes/table.C,
                   7762:          classes/void.C, main/pa_common.C, main/pa_http.C: - exception
                   7763:          comment strings "options must be hash", "options must be hash,
                   7764:          not code" and "called with invalid option" were replaced by
                   7765:          constatns - exception comment string "invalid option passed" was
                   7766:          replaced by "called with invalid option" (now in different
                   7767:          methods are the same exception comment string)
                   7768: 
                   7769:        * src/include/pa_exception.h: - more exception strings were defined
                   7770: 
                   7771:        * src/: main/compile.y, main/compile_tools.C, main/compile_tools.h,
                   7772:          types/pa_vstateless_class.h: - now we can define possible
                   7773:          method's call type ( new feature: #5 )   1.
                   7774:          @OPTIONS\nstatic|dynamic (no option == any) -- for all classe's
                   7775:          methods   2. @static:method[params] (only static keyword could be
                   7776:          used here) -- for specified methods
                   7777: 
                   7778:        * src/main/pa_common.C: - junction points should not be deleted on
                   7779:          win32 during dirs cleanup ( bugfix: #83 ) - optimisation in dirs
                   7780:          cleanup
                   7781: 
                   7782: 2010-07-03  misha
                   7783: 
                   7784:        * tests/: 158.html, 160.html, 161.html, 162.html, 163.html,
                   7785:          results/158.processed, results/160.processed,
                   7786:          results/161.processed, results/162.processed,
                   7787:          results/163.processed: - prepare tests to trim trailing methods'
                   7788:          EOLs
                   7789: 
                   7790:        * tests/results/169.processed: - prepare tests to trim trailing
                   7791:          methods' EOLs
                   7792: 
                   7793:        * tests/results/: 168.processed, 169.processed: - prepare tests to
                   7794:          trim trailing methods' EOLs
                   7795: 
                   7796:        * tests/: results/170.processed, results/167.processed,
                   7797:          results/168.processed, results/169.processed, 167.html, 168.html,
                   7798:          169.html: - prepare tests to trim trailing methods' EOLs
                   7799: 
                   7800:        * tests/: results/170.processed, results/171.processed,
                   7801:          results/172.processed, results/173.processed,
                   7802:          results/174.processed, results/175.processed, 170.html, 171.html,
                   7803:          172.html, 173.html, 174.html, 175.html: - prepare tests to trim
                   7804:          trailing methods' EOLs
                   7805: 
                   7806:        * tests/: results/176.processed, results/180.processed,
                   7807:          results/184.processed, results/185.processed,
                   7808:          results/191.processed, results/192.processed,
                   7809:          results/196.processed, results/197.processed,
                   7810:          results/198.processed, 176.html, 180.html, 184.html, 185.html,
                   7811:          191.html, 192.html, 196.html, 197.html, 198.html: - prepare tests
                   7812:          to trim trailing methods' EOLs
                   7813: 
                   7814:        * tests/: 199.html, 208.html, 209.html, 213.html, 214.html,
                   7815:          results/199.processed, results/208.processed,
                   7816:          results/209.processed, results/213.processed,
                   7817:          results/214.processed: - prepare tests to trim trailing methods'
                   7818:          EOLs
                   7819: 
                   7820: 2010-06-29  misha
                   7821: 
                   7822:        * tests/: 220.html, 218.html, results/218.processed,
                   7823:          results/215.processed, results/217.processed, 215.html, 217.html:
                   7824:          - prepare tests to trim trailing methods' EOLs
                   7825: 
                   7826:        * tests/: results/224.processed, 224.html, 223.html,
                   7827:          results/223.processed, results/220.processed: - prepare tests to
                   7828:          trim trailing methods' EOLs
                   7829: 
                   7830:        * tests/results/: 226.processed, 230.processed: - prepare tests to
                   7831:          trim trailing methods' EOLs
                   7832: 
                   7833:        * tests/: 229.html, results/229.processed: - prepare tests to trim
                   7834:          trailing methods' EOLs
                   7835: 
                   7836:        * tests/: 232.html, 235.html, results/232.processed,
                   7837:          results/235.processed, 226.html, 227.html, 228.html, 230.html,
                   7838:          results/226.processed, results/227.processed,
                   7839:          results/228.processed, results/230.processed: - prepare tests to
                   7840:          trim trailing methods' EOLs
                   7841: 
                   7842: 2010-06-16  moko
                   7843: 
                   7844:        * tests/: 229.html, results/229.processed:  elseif now supported in
                   7845:          ^if
                   7846: 
                   7847:        * src/classes/op.C: new feature: #56 elseif now supported in ^if
                   7848: 
                   7849: 2010-06-03  misha
                   7850: 
                   7851:        * src/main/pa_common.C: - bugfix #74 -- memmove should be used
                   7852:          instead of memcopy for overlaped regions
                   7853: 
                   7854: 2010-05-25  misha
                   7855: 
                   7856:        * src/main/pa_common.C: - wanring about unused vars was removed
                   7857: 
                   7858:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C: -
                   7859:          get_method_filename was moved to execute.C
                   7860: 
                   7861: 2010-05-23  misha
                   7862: 
                   7863:        * src/main/pa_request.C: - more accurate detection of method's file
                   7864: 
                   7865: 2010-05-22  misha
                   7866: 
                   7867:        * src/classes/reflection.C: - bugfix: core during detection of
                   7868:          .file if filespec isn't detected successfully
                   7869: 
                   7870: 2010-05-20  misha
                   7871: 
                   7872:        * src/main/pa_request.C: - fix in get_method_filename
                   7873: 
                   7874:        * src/include/pa_request.h: - new feature: #24 -- searching
                   7875:          included file in @USE/^use is changed. if its filespec doesn't
                   7876:          start from '/' it will be searched in caller file directory
                   7877: 
                   7878:        * src/classes/reflection.C: - ^reflection:method_info returns file
                   7879:          where the method is defined
                   7880: 
                   7881:        * src/: include/pa_request.h, main/compile.y, main/pa_request.C,
                   7882:          classes/op.C: - new feature: #24 -- searching included file in
                   7883:          @USE/^use is changed. if its filespec doesn't start from '/' it
                   7884:          will be searched in caller file directory
                   7885: 
                   7886:        * src/: classes/file.C, include/pa_common.h: - method lastposafter
                   7887:          is moved to pa_common.h
                   7888: 
                   7889: 2010-05-18  misha
                   7890: 
                   7891:        * src/: main/pa_common.C, include/pa_common.h, classes/string.C,
                   7892:          types/pa_vcookie.C: new feature: #71 ^string:js-unescape and
                   7893:          cookie parser decode \uXXXX as well as %uXXXX
                   7894: 
                   7895: 2010-05-17  misha
                   7896: 
                   7897:        * src/classes/curl.C: beauty: - unused param is removed in method
                   7898:          _curl_version_action - some spaces were removed or replaced by
                   7899:          tabs
                   7900: 
                   7901:        * src/classes/table.C: - bugfix: #72 core with empty value during
                   7902:          ^table.hash[...;name_of_the_last_column][$.type[string]]
                   7903: 
                   7904: 2010-05-16  misha
                   7905: 
                   7906:        * src/classes/curl.C: new: #61 more curl options were added
                   7907:          (contributed by Sumo)
                   7908: 
                   7909: 2010-04-29  pretender
                   7910: 
                   7911:        * src/main/pa_string.C: fixes #63 Split result from empty string
                   7912:          now empty string.
                   7913: 
                   7914:        * src/types/pa_vtable.C: bugfix: #35 All empty table cells are now
                   7915:          string type.
                   7916: 
                   7917: 2010-04-28  pretender
                   7918: 
                   7919:        * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
                   7920:          main/execute.C: bugfix: #59 OPTIMIZE_BYTECODE_GET_CLASS
                   7921:          macrodefinition removed
                   7922: 
                   7923: 2010-04-19  pretender
                   7924: 
                   7925:        * src/main/execute.C: fixes #60 Stacktrace now contains info for
                   7926:          OP_CONSTRUCT_OBJECT and OP_GET_CLASS
                   7927: 
                   7928:        * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
                   7929:          fixes #64 Now file.missing exception generates in unsafe mode to.
                   7930: 
                   7931:        * src/classes/file.C: fixes #48 Now not throw "not save environment
                   7932:          variable" exception in grpunlim version.
                   7933: 
                   7934: 2010-04-05  misha
                   7935: 
                   7936:        * src/classes/string.C: - new feature: 4th param was added to
                   7937:          match. if specified its value is returned in case of nothing was
                   7938:          found
                   7939: 
                   7940: 2010-04-01  misha
                   7941: 
                   7942:        * src/main/pa_request.C: - bugfix: on *nix URIs like /a/b/// caused
                   7943:          multiple execution of /a/b/auto.p
                   7944: 
                   7945: 2010-03-19  misha
                   7946: 
                   7947:        * src/main/execute.C: - core in $table1.$table2 was fixed
                   7948: 
                   7949:        * src/targets/cgi/parser3.C: - core in sigpipe was fixed
                   7950: 
                   7951: 2010-01-27  misha
                   7952: 
                   7953:        * src/main/pa_common.C: - bugfix: there are no excaption.type if
                   7954:          trying to open file by path /existing-file/non-exixting-file
                   7955: 
                   7956: 2010-01-26  misha
                   7957: 
                   7958:        * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:post-body
                   7959:          was added (returns file)
                   7960: 
                   7961: 2009-12-22  misha
                   7962: 
                   7963:        * src/classes/curl.C: - method 'option' was renamed to 'options' -
                   7964:          now parser doesn't have class curl if it was built without it
                   7965: 
                   7966: 2009-12-15  misha
                   7967: 
                   7968:        * configure.in: - little cheat with curl include dir was added
                   7969: 
                   7970: 2009-12-05  misha
                   7971: 
                   7972:        * src/classes/curl.C: - some fixes
                   7973: 
                   7974: 2009-12-04  misha
                   7975: 
                   7976:        * src/include/pa_config_fixed.h, src/classes/classes.vcproj,
                   7977:          src/classes/curl.C, src/classes/file.C, src/classes/Makefile.am,
                   7978:          buildall-with-xml, buildall-without-xml, configure.in: - curl
                   7979:          class was added
                   7980: 
                   7981:        * src/include/pa_hash.h: - hash-iterator was added
                   7982: 
                   7983:        * buildall-with-xml, buildall-without-xml: - option --passive-ftp
                   7984:          was added to pcre
                   7985: 
                   7986: 2009-11-27  misha
                   7987: 
                   7988:        * src/classes/image.C: - don't add @border attribute to output of
                   7989:          ^image.html[] if it was specified by user with empty value
                   7990: 
                   7991:        * src/types/pa_vxdoc.C: - bugfix: core if xdoc doesn't have the
                   7992:          root element and we are trying to access .documentElement
                   7993: 
                   7994: 2009-11-11  misha
                   7995: 
                   7996:        * src/classes/table.C: - in ^table.flip[] look at number of columns
                   7997:          instead of number of items in first row for named tables
                   7998: 
                   7999: 2009-11-10  misha
                   8000: 
                   8001:        * operators.txt: - info about hash-options in ^file::create was
                   8002:          added
                   8003: 
                   8004:        * tests/237.html: - test for ^file::create[...;$.charset[...]] was
                   8005:          added
                   8006: 
                   8007: 2009-11-09  misha
                   8008: 
                   8009:        * buildall-with-xml: - moving to libxml 2.7.6
                   8010: 
                   8011:        * tests/236.html: - tests for comparations cords with functions
                   8012:          were added
                   8013: 
                   8014:        * src/include/pa_string.h: - optimisation: cacheing of cstr was
                   8015:          added
                   8016: 
                   8017:        * src/main/pa_http.C: - little optimisation
                   8018: 
                   8019:        * src/: classes/table.C, lib/gc/include/gc_allocator.h: - bugfix:
                   8020:          GPF mallocs + stringstream (table.save)
                   8021: 
                   8022:        * src/classes/file.C: - file::create now accepts 4th param: options
                   8023:          with $.charset
                   8024: 
                   8025:        * src/lib/cord/: cordxtra.c, include/private/cord_pos.h: - fixed
                   8026:          bug in cord (comparation cords with functions was buggy)
                   8027: 
                   8028: 2009-11-06  misha
                   8029: 
                   8030:        * src/main/pa_string.C: - bugfix: calculation string.length
                   8031:          sometimes was buggy
                   8032: 
                   8033:        * src/classes/string.C: - bugfix: Temp_value_element wasn't
                   8034:          destroyed if exception occured during match/replace
                   8035: 
                   8036:        * src/: main/pa_charset.C, include/pa_charset.h: - method
                   8037:          lengthUTF8Char was added
                   8038: 
                   8039:        * src/classes/op.C: - clean tainting lang was added for user's
                   8040:          usage
                   8041: 
                   8042:        * src/lib/cord/: cordbscs.c, cordxtra.c: - some rare GPF were
                   8043:          fixed: checkouts are required after GC_MALLOC
                   8044: 
                   8045:        * src/types/pa_vregex.C: - check UTF8 only during 1st iteration
                   8046: 
                   8047:        * operators.txt: - actually, there is no ^untaint[xml] in
                   8048:          file::create
                   8049: 
                   8050: 2009-10-15  misha
                   8051: 
                   8052:        * tests/: 235.html, 235_attach.txt: - tests for preparing email
                   8053:          were added
                   8054: 
                   8055:        * tests/234.html: - more tests for checking ^taint[uri] escaping
                   8056:          were added
                   8057: 
                   8058:        * src/: include/pa_string.h, main/pa_charset.C, main/pa_http.C,
                   8059:          main/pa_request.C, main/untaint.C, types/pa_vmail.C: - little
                   8060:          hacking: for dealing with transcoding+^taint[uri]
                   8061:          transcode_and_untaint was replaced by untaint_and_transcode
                   8062: 
                   8063: 2009-10-13  misha
                   8064: 
                   8065:        * tests/: 121.html, results/121.processed: - test transcoding +
                   8066:          url-escaping now
                   8067: 
                   8068:        * tests/results/auto.p: - more helpers' methods were added
                   8069: 
                   8070:        * src/main/pa_globals.C: - die instead of abort
                   8071: 
                   8072: 2009-10-06  misha
                   8073: 
                   8074:        * src/main/pa_common.C: - don't allocate memory during
                   8075:          capitalization if input string is already capitalized
                   8076: 
                   8077:        * src/targets/isapi/parser3isapi.C: - pass pre-capitalized headers
                   8078: 
                   8079:        * src/targets/cgi/parser3.C: - pass pre-capitalized headers - don't
                   8080:          use format function because it calls malloc
                   8081: 
                   8082:        * src/include/pa_common.h: - more capitalized headers were added
                   8083: 
                   8084:        * src/main/pa_common.C: - in safe mode clear executable bits during
                   8085:          file writing
                   8086: 
                   8087: 2009-10-05  misha
                   8088: 
                   8089:        * src/main/pa_charset.C: - use iterators in pa_charset.C itself
                   8090: 
                   8091: 2009-10-03  misha
                   8092: 
                   8093:        * src/: types/pa_vimage.h, classes/image.C: - ^img.font[],
                   8094:          ^img.text[] & ^img.length[] can work in utf-8 now
                   8095: 
                   8096:        * src/: include/pa_charset.h, main/pa_charset.C: - class
                   8097:          UTF8_string_iterator was added
                   8098: 
                   8099:        * src/classes/image.C: - respect utf-8 when calculate alphabet
                   8100:          length
                   8101: 
                   8102:        * src/classes/mail.C: - check from before get message.cstr
                   8103: 
                   8104: 2009-10-02  misha
                   8105: 
                   8106:        * tests/233.html: - test for image.font, image.length, image.text
                   8107:          with text in utf-8 were added
                   8108: 
                   8109:        * src/main/pa_common.C: - use pa_malloc_atomic instead of new
                   8110: 
                   8111:        * buildall-with-xml, buildall-without-xml: - comment about gc
                   8112:          version for freebsd 4 was added
                   8113: 
                   8114: 2009-10-01  misha
                   8115: 
                   8116:        * src/main/pa_exec.C: - bugfix: allocate a bit more (for
                   8117:          terminator) - read_pipe were slightly optimized
                   8118: 
                   8119: 2009-09-28  misha
                   8120: 
                   8121:        * src/main/: pa_common.C, pa_uue.C: - some magic numbers were
                   8122:          removed
                   8123: 
                   8124:        * src/types/pa_vmail.C: - forgot about space after ':'
                   8125: 
                   8126:        * src/types/pa_vmail.C: - escape filenames while preparing mail
                   8127:          body - small simplifications
                   8128: 
                   8129:        * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode now has
                   8130:          inout params like pa_base64
                   8131: 
                   8132:        * src/: types/pa_vmail.C, types/pa_vmail.h, classes/mail.C: - new
                   8133:          option $.debug-print(1) was added to mail:send - changes for
                   8134:          using uue_encode which uses less memory
                   8135: 
                   8136:        * src/main/pa_common.C: - pa_base64_encode uses less memory now
                   8137: 
                   8138:        * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode reduces less
                   8139:          memory now
                   8140: 
                   8141: 2009-09-26  misha
                   8142: 
                   8143:        * src/types/pa_vmail.C: - default encoding now is base64
                   8144: 
                   8145:        * buildall-with-xml: - moving to libxml 2.7.5 and libxslt 1.1.26
                   8146: 
                   8147: 2009-09-25  misha
                   8148: 
                   8149:        * src/types/pa_vmail.C: - capitalization of headers was added to
                   8150:          sending mail as well
                   8151: 
                   8152:        * buildall-with-xml: - catalog package was removed from libxml
                   8153: 
                   8154:        * src/main/pa_xml_io.C: - fix in removing file:// protocol for
                   8155:          win32 absolute path
                   8156: 
                   8157:        * src/include/pa_common.h: - one more capitalized header was added
                   8158: 
                   8159: 2009-09-22  misha
                   8160: 
                   8161:        * INSTALL: - comment about building just httpd binary while
                   8162:          building apache module was added
                   8163: 
                   8164: 2009-09-21  misha
                   8165: 
                   8166:        * buildall-with-xml: - moving to the latest versions of xml libs:
                   8167:          libxml 2.7.4 and libxslt 1.1.25
                   8168: 
                   8169: 2009-09-19  misha
                   8170: 
                   8171:        * tests/231.html: - test for encoding cookie in win-1251
                   8172: 
                   8173: 2009-09-18  misha
                   8174: 
                   8175:        * tests/: 224.html, 224.p: - tests for ^reflection:fields[class or
                   8176:          object] were added
                   8177: 
                   8178:        * operators.txt: - info about method ^reflection:fields[class or
                   8179:          object] was added
                   8180: 
                   8181:        * src/classes/reflection.C: - method ^reflection:fields[class or
                   8182:          object] was added
                   8183: 
                   8184:        * src/types/: pa_value.h, pa_vclass.C, pa_vclass.h, pa_vobject.h: -
                   8185:          methods get_fields were added
                   8186: 
                   8187:        * tests/232.html: - tests for @GET[name]
                   8188: 
                   8189:        * src/classes/table.C: - some changes in handling hash-options for
                   8190:          creare, join and locate
                   8191: 
                   8192:        * src/types/: pa_vobject.C, pa_vobject.h: - @GET[] now could be
                   8193:          defined with option: the type of requested value
                   8194: 
                   8195: 2009-09-17  misha
                   8196: 
                   8197:        * tests/212.html: - tests for .pattern and .options were added
                   8198: 
                   8199:        * src/types/: pa_vregex.C, pa_vregex.h: - $regex.pattern and
                   8200:          $regex.options were added
                   8201: 
                   8202: 2009-09-11  misha
                   8203: 
                   8204:        * tests/: 223.html, 223_utf8.txt, 223_win1251.txt: - test was
                   8205:          rewrited. it checks not just one case of sending cookies during
                   8206:          file::load[http], but also sending headers and fields (including
                   8207:          files)
                   8208: 
                   8209: 2009-09-10  misha
                   8210: 
                   8211:        * src/main/untaint.C: - workaround in file-spec lang for old Macs
                   8212:          was removed => now parser can open files with Russian 'r' in
                   8213:          filename
                   8214: 
                   8215:        * src/main/untaint.C: - bugfix: client charset whould be analized
                   8216:          while escaping cookies but now source charset
                   8217: 
                   8218:        * src/main/pa_http.C: - bugfix: the values of http headers didn't
                   8219:          ^tainted[uri] so it was possible to make request with incorrect
                   8220:          http header
                   8221: 
                   8222:        * src/main/pa_http.C: - capitalization of http headers during
                   8223:          file::load[http was slightly changes - bugfix: all headers which
                   8224:          parser sends during file::load[http should be transcoded and only
                   8225:          then escaped
                   8226: 
                   8227:        * src/main/untaint.C: - a bit more comments were added
                   8228: 
                   8229:        * src/classes/: file.C, string.C: - types where changes (minus 2
                   8230:          warnings)
                   8231: 
                   8232:        * src/include/pa_common.h: - 2 capitalized strings for making http
                   8233:          headers during file::load[http were added
                   8234: 
                   8235: 2009-09-08  misha
                   8236: 
                   8237:        * operators.txt: - changes in file.save and string.save were added
                   8238: 
                   8239:        * tests/: 230.html, 230.txt: - tests for checking options in
                   8240:          file.save and string.save were added
                   8241: 
                   8242:        * src/main/pa_request.C: - http headers names, which are passed to
                   8243:          SAPI::add_header_attribute are lowercased now (it'll be
                   8244:          capitalized in that method)
                   8245: 
                   8246:        * src/: types/pa_vfile.C, types/pa_vfile.h, classes/file.C,
                   8247:          classes/string.C: - file_write accepts Request_charsets and asked
                   8248:          charset and cound transcode content before writing - string.save
                   8249:          and file.save have option $.charset now
                   8250: 
                   8251:        * src/: include/pa_common.h, main/pa_common.C, classes/table.C,
                   8252:          classes/xdoc.C: - file_write accepts Request_charsets and asked
                   8253:          charset and cound transcode content before writing
                   8254: 
                   8255:        * src/include/pa_exception.h: - new exception comment string was
                   8256:          defined
                   8257: 
                   8258: 2009-09-07  misha
                   8259: 
                   8260:        * src/main/compile.y: - grammar $name\ name stops now for regex
                   8261:          sub-pattern\s
                   8262: 
                   8263: 2009-09-04  misha
                   8264: 
                   8265:        * src/main/pa_http.C: - capitalization of http headers during
                   8266:          file::load[http was implemented
                   8267: 
                   8268: 2009-09-03  misha
                   8269: 
                   8270:        * src/: main/pa_common.C, main/pa_http.C, main/pa_request.C,
                   8271:          include/pa_common.h, include/pa_sapi.h, types/pa_vcookie.C,
                   8272:          types/pa_vmail.C, targets/cgi/parser3.C,
                   8273:          targets/isapi/parser3isapi.C: - back to storing response http
                   8274:          headers in lowercase - capitalize them during output
                   8275: 
                   8276: 2009-08-31  misha
                   8277: 
                   8278:        * src/classes/table.C: - allow call with any brackets (it could be
                   8279:          useful in methods with explict result declaration)
                   8280: 
                   8281:        * src/classes/table.C: - bugfix: ^table.sort{...} doesn't work
                   8282:          correctly if $request:charset==koi8-r
                   8283: 
                   8284: 2009-08-30  misha
                   8285: 
                   8286:        * src/: include/pa_common.h, main/pa_request.C: - http headers were
                   8287:          changed: content-type => Content-type and so on
                   8288: 
                   8289:        * src/classes/file.C, src/include/pa_common.h,
                   8290:          src/include/pa_request.h, src/main/pa_http.C,
                   8291:          src/main/pa_request.C, src/types/pa_vcookie.C,
                   8292:          src/types/pa_vmail.C, src/targets/cgi/parser3.C,
                   8293:          src/targets/isapi/parser3isapi.C, tests/results/001.processed,
                   8294:          tests/results/002.processed, tests/results/003.processed,
                   8295:          tests/results/004.processed, tests/results/005.processed,
                   8296:          tests/results/006.processed, tests/results/007.processed,
                   8297:          tests/results/008.processed, tests/results/009.processed,
                   8298:          tests/results/010.processed, tests/results/011.processed,
                   8299:          tests/results/012.processed, tests/results/013.processed,
                   8300:          tests/results/014.processed, tests/results/015.processed,
                   8301:          tests/results/016.processed, tests/results/017.processed,
                   8302:          tests/results/018.processed, tests/results/019.processed,
                   8303:          tests/results/020.processed, tests/results/021.processed,
                   8304:          tests/results/022.processed, tests/results/023.processed,
                   8305:          tests/results/024.processed, tests/results/025.processed,
                   8306:          tests/results/026.processed, tests/results/027.processed,
                   8307:          tests/results/028.processed, tests/results/029.processed,
                   8308:          tests/results/030.processed, tests/results/031.processed,
                   8309:          tests/results/032.processed, tests/results/033.processed,
                   8310:          tests/results/034.processed, tests/results/035.processed,
                   8311:          tests/results/036.processed, tests/results/037.processed,
                   8312:          tests/results/038.processed, tests/results/039.processed,
                   8313:          tests/results/040.processed, tests/results/041.processed,
                   8314:          tests/results/042.processed, tests/results/043.processed,
                   8315:          tests/results/044.processed, tests/results/045.processed,
                   8316:          tests/results/046.processed, tests/results/047.processed,
                   8317:          tests/results/048.processed, tests/results/049.processed,
                   8318:          tests/results/050.processed, tests/results/051.processed,
                   8319:          tests/results/052.processed, tests/results/053.processed,
                   8320:          tests/results/054.processed, tests/results/055.processed,
                   8321:          tests/results/056.processed, tests/results/057.processed,
                   8322:          tests/results/058.processed, tests/results/059.processed,
                   8323:          tests/results/060.processed, tests/results/061.processed,
                   8324:          tests/results/062.processed, tests/results/063.processed,
                   8325:          tests/results/064.processed, tests/results/065.processed,
                   8326:          tests/results/066.processed, tests/results/067.processed,
                   8327:          tests/results/068.processed, tests/results/069.processed,
                   8328:          tests/results/070.processed, tests/results/071.processed,
                   8329:          tests/results/072.processed, tests/results/073.processed,
                   8330:          tests/results/074.processed, tests/results/075.processed,
                   8331:          tests/results/076.processed, tests/results/077.processed,
                   8332:          tests/results/078.processed, tests/results/079.processed,
                   8333:          tests/results/080.processed, tests/results/081.processed,
                   8334:          tests/results/082.processed, tests/results/083.processed,
                   8335:          tests/results/084.processed, tests/results/085.processed,
                   8336:          tests/results/086.processed, tests/results/087.processed,
                   8337:          tests/results/088.processed, tests/results/089.processed,
                   8338:          tests/results/090.processed, tests/results/091.processed,
                   8339:          tests/results/092.processed, tests/results/093.processed,
                   8340:          tests/results/094.processed, tests/results/095.processed,
                   8341:          tests/results/096.processed, tests/results/097.processed,
                   8342:          tests/results/098.processed, tests/results/099.processed,
                   8343:          tests/results/100.processed, tests/results/101.processed,
                   8344:          tests/results/102.processed, tests/results/103.processed,
                   8345:          tests/results/104.processed, tests/results/105.processed,
                   8346:          tests/results/106.processed, tests/results/107.processed,
                   8347:          tests/results/108.processed, tests/results/109.processed,
                   8348:          tests/results/110.processed, tests/results/111.processed,
                   8349:          tests/results/112.processed, tests/results/113.processed,
                   8350:          tests/results/114.processed, tests/results/115.processed,
                   8351:          tests/results/116.processed, tests/results/117.processed,
                   8352:          tests/results/118.processed, tests/results/119.processed,
                   8353:          tests/results/120.processed, tests/results/121.processed,
                   8354:          tests/results/122.processed, tests/results/123.processed,
                   8355:          tests/results/124.processed, tests/results/125.processed,
                   8356:          tests/results/126.processed, tests/results/127.processed,
                   8357:          tests/results/128.processed, tests/results/129.processed,
                   8358:          tests/results/130.processed, tests/results/131.processed,
                   8359:          tests/results/132.processed, tests/results/133.processed,
                   8360:          tests/results/134.processed, tests/results/135.processed,
                   8361:          tests/results/136.processed, tests/results/138.processed,
                   8362:          tests/results/139.processed, tests/results/140.processed,
                   8363:          tests/results/141.processed, tests/results/142.processed,
                   8364:          tests/results/143.processed, tests/results/144.processed,
                   8365:          tests/results/145.processed, tests/results/146.processed,
                   8366:          tests/results/147.processed, tests/results/148.processed,
                   8367:          tests/results/149.processed, tests/results/150.processed,
                   8368:          tests/results/151.processed, tests/results/152.processed,
                   8369:          tests/results/153.processed, tests/results/154.processed,
                   8370:          tests/results/155.processed, tests/results/156.processed,
                   8371:          tests/results/157.processed, tests/results/158.processed,
                   8372:          tests/results/159.processed, tests/results/160.processed,
                   8373:          tests/results/161.processed, tests/results/162.processed,
                   8374:          tests/results/163.processed, tests/results/164.processed,
                   8375:          tests/results/165.processed, tests/results/166.processed,
                   8376:          tests/results/167.processed, tests/results/168.processed,
                   8377:          tests/results/169.processed, tests/results/170.processed,
                   8378:          tests/results/171.processed, tests/results/172.processed,
                   8379:          tests/results/173.processed, tests/results/174.processed,
                   8380:          tests/results/175.processed, tests/results/176.processed,
                   8381:          tests/results/177.processed, tests/results/178.processed,
                   8382:          tests/results/179.processed, tests/results/180.processed,
                   8383:          tests/results/181.processed, tests/results/182.processed,
                   8384:          tests/results/183.processed, tests/results/184.processed,
                   8385:          tests/results/185.processed, tests/results/186.processed,
                   8386:          tests/results/187.processed, tests/results/188.processed,
                   8387:          tests/results/189.processed, tests/results/190.processed,
                   8388:          tests/results/191.processed, tests/results/192.processed,
                   8389:          tests/results/193.processed, tests/results/194.processed,
                   8390:          tests/results/195.processed, tests/results/196.processed,
                   8391:          tests/results/197.processed, tests/results/198.processed,
                   8392:          tests/results/199.processed, tests/results/200.processed,
                   8393:          tests/results/201.processed, tests/results/202.processed,
                   8394:          tests/results/203.processed, tests/results/204.processed,
                   8395:          tests/results/205.processed, tests/results/206.processed,
                   8396:          tests/results/207.processed, tests/results/208.processed,
                   8397:          tests/results/209.processed, tests/results/210.processed,
                   8398:          tests/results/211.processed, tests/results/212.processed,
                   8399:          tests/results/213.processed, tests/results/214.processed,
                   8400:          tests/results/215.processed, tests/results/216.processed,
                   8401:          tests/results/217.processed, tests/results/218.processed,
                   8402:          tests/results/219.processed, tests/results/220.processed,
                   8403:          tests/results/221.processed, tests/results/222.processed,
                   8404:          tests/results/223.processed, tests/results/224.processed,
                   8405:          tests/results/225.processed, tests/results/226.processed,
                   8406:          tests/results/227.processed, tests/results/228.processed,
                   8407:          tests/results/229.processed: - http headers were changed:
                   8408:          content-type => Content-type and so on
                   8409: 
                   8410: 2009-08-27  misha
                   8411: 
                   8412:        * src/: main/pa_random.C, include/pa_random.h,
                   8413:          targets/cgi/parser3.C: - year was updated :)
                   8414: 
                   8415: 2009-08-26  misha
                   8416: 
                   8417:        * tests/: 224.html, 224.p: - test for creating of parser object
                   8418:          using constructor without params - little bugfix in test
                   8419: 
                   8420:        * src/main/compile_tools.h: - bugfix: should't call autouse while
                   8421:          checking existed class while processing partial option
                   8422: 
                   8423:        * src/classes/reflection.C: - bugfix: core when creating object
                   8424:          with reflection and constructor doesn't have params
                   8425: 
                   8426: 2009-08-24  misha
                   8427: 
                   8428:        * tests/229.html: - tests for checking the number of parameters
                   8429:          were added
                   8430: 
                   8431:        * src/types/: pa_value.C, pa_vmethod_frame.h: - bugfix: the actual
                   8432:          number of method's parameters wasn't checked correctly (the bug
                   8433:          was introduced in 3.4.0)
                   8434: 
                   8435: 2009-08-22  misha
                   8436: 
                   8437:        * src/main/pa_http.C: - ^file::load[http://...;$.body[]] : $.body
                   8438:          transcoded, but tainted pieces are escaped only when
                   8439:          content-type==url-encoding
                   8440: 
                   8441:        * tests/228.html: - test for checking
                   8442:          ^file::load[http://...;$.body[]]
                   8443: 
                   8444:        * src/types/: pa_vform.C, pa_vform.h: - bugfix: attempt to detect
                   8445:          post charset was too early (charsets is empty at this moment)
                   8446: 
                   8447: 2009-08-21  misha
                   8448: 
                   8449:        * src/: include/pa_string.h, main/pa_http.C, main/pa_request.C,
                   8450:          main/untaint.C: - some fixes with transcode+untaint
                   8451: 
                   8452: 2009-08-15  misha
                   8453: 
                   8454:        * src/main/pa_exec.C: - number of argv in file::exec/cgi on unix
                   8455:          was increaced to 100 (was 50)
                   8456: 
                   8457:        * tests/227.html: - test for checking overriding properties in
                   8458:          static classes was added
                   8459: 
                   8460:        * tests/: 226.html, 226.p: - test for @autoload[] was added
                   8461: 
                   8462:        * src/: include/pa_request.h, main/compile.y, main/compile_tools.h,
                   8463:          main/execute.C, main/pa_request.C, classes/reflection.C: -
                   8464:          autouse was implemented
                   8465: 
                   8466: 2009-08-14  misha
                   8467: 
                   8468:        * src/classes/reflection.C: - outdated checkout was removed
                   8469: 
                   8470:        * src/classes/reflection.C: - optimization - method ^dynamical was
                   8471:          added.
                   8472: 
                   8473:        * src/: types/pa_value.h, types/pa_vmethod_frame.h,
                   8474:          types/pa_vstateless_class.h, main/execute.C: - optimization
                   8475: 
                   8476:        * src/types/pa_vclass.C: - exception if base on sytem class
                   8477: 
                   8478: 2009-08-12  misha
                   8479: 
                   8480:        * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
                   8481:          pa_vstateless_class.h: - little optimisation
                   8482: 
                   8483: 2009-08-11  misha
                   8484: 
                   8485:        * tests/224.html: - method_params => method_info - checking for
                   8486:          $.inherited
                   8487: 
                   8488:        * src/classes/reflection.C, operators.txt: - method method_params
                   8489:          was renamed to method_info and now it returns class name, if
                   8490:          method was defined in ancestor
                   8491: 
                   8492:        * tests/225.html: - tests for cheching properties in hierarhical
                   8493:          classes were added
                   8494: 
                   8495:        * src/: types/pa_property.h, types/pa_vclass.C, types/pa_vclass.h,
                   8496:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   8497:          main/compile.y, main/execute.C, classes/classes.C: - problems
                   8498:          with properties in new classes implementation were fixed
                   8499: 
                   8500: 2009-08-10  misha
                   8501: 
                   8502:        * src/main/execute.C: - now constructor shouldn't be defined in
                   8503:          class. it could be defined in parent.
                   8504: 
                   8505: 2009-08-09  misha
                   8506: 
                   8507:        * src/classes/reflection.C: - ^reflection:methods doesn't return
                   8508:          base's methods
                   8509: 
                   8510: 2009-08-08  misha
                   8511: 
                   8512:        * src/: classes/classes.h, classes/date.C, classes/file.C,
                   8513:          classes/form.C, classes/hash.C, classes/hashfile.C,
                   8514:          classes/image.C, classes/mail.C, classes/op.C,
                   8515:          classes/reflection.C, classes/regex.C, classes/string.C,
                   8516:          classes/table.C, classes/xdoc.C, classes/xnode.C,
                   8517:          classes/xnode.h, include/pa_hash.h, main/execute.C,
                   8518:          main/pa_http.C, main/pa_request.C, targets/cgi/parser3.C,
                   8519:          types/pa_method.h, types/pa_property.h, types/pa_value.C,
                   8520:          types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
                   8521:          types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
                   8522:          types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.C,
                   8523:          types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
                   8524:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
                   8525:          types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
                   8526:          types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
                   8527:          types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.h,
                   8528:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vproperty.C,
                   8529:          types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
                   8530:          types/pa_vresponse.C, types/pa_vresponse.h,
                   8531:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   8532:          types/pa_vstateless_object.h, types/pa_vstatus.C,
                   8533:          types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
                   8534:          types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
                   8535:          types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
                   8536:          types/pa_wwrapper.h, types/types.vcproj: - new classes
                   8537:          implementation
                   8538: 
                   8539:        * buildall-with-xml, buildall-without-xml: - gc has a bug if
                   8540:          USE_MUNMAP is used. so it is disabled as a workaround.
                   8541: 
                   8542: 2009-08-05  misha
                   8543: 
                   8544:        * src/: main/pa_common.C, include/pa_common.h: - not needed
                   8545:          parameter was removed
                   8546: 
                   8547:        * src/main/pa_http.C: - bugfix: error was during detecting
                   8548:          content-type of file which was loaded by http
                   8549: 
                   8550: 2009-08-01  misha
                   8551: 
                   8552:        * src/main/execute.C, src/main/compile.y, src/include/pa_opcode.h,
                   8553:          src/types/pa_wcontext.h, src/types/pa_wwrapper.h, INSTALL: -
                   8554:          OPTIMIZE_BYTECODE_CONSTRUCT_OBJECT and OPTIMIZE_CONSTRUCT_OBJECT
                   8555:          can't be disabled with defines any longer
                   8556: 
                   8557: 2009-07-29  misha
                   8558: 
                   8559:        * src/classes/reflection.C, tests/results/224.processed: - for
                   8560:          native methods with any call type now returned empty call_type
                   8561:          value
                   8562: 
                   8563:        * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
                   8564:          classes/table.C, include/pa_hash.h, include/pa_request.h,
                   8565:          main/pa_request.C: - break in cycles was optimized
                   8566: 
                   8567:        * INSTALL: - more defines were described
                   8568: 
                   8569: 2009-07-28  misha
                   8570: 
                   8571:        * operators.txt: - some changes in information about reflection
                   8572:          class
                   8573: 
                   8574:        * tests/: 224.html, 224.p: - tests for reflection class
                   8575: 
                   8576:        * src/classes/reflection.C: - some bugs were fixed, method classes
                   8577:          was added, refactoring
                   8578: 
                   8579: 2009-07-26  misha
                   8580: 
                   8581:        * src/classes/classes.vcproj: - reflection class wass added to
                   8582:          project
                   8583: 
                   8584:        * operators.txt: - information about reflection class was added
                   8585: 
                   8586:        * src/classes/reflection.C: - class was redesigned
                   8587: 
                   8588: 2009-07-24  misha
                   8589: 
                   8590:        * src/classes/: Makefile.am, reflection.C: - class reflection was
                   8591:          added
                   8592: 
                   8593:        * src/types/pa_vstateless_class.h: - method for reflection method's
                   8594:          in classes was added
                   8595: 
                   8596: 2009-07-22  misha
                   8597: 
                   8598:        * src/main/compile_tools.h: - bugfix: $object.$var was
                   8599:          over-optimized. it failed if $object1.$object2.field
                   8600: 
                   8601: 2009-07-16  misha
                   8602: 
                   8603:        * src/: lib/cord/cordbscs.c, lib/cord/cordprnt.c,
                   8604:          lib/cord/cordxtra.c, lib/cord/include/cord.h,
                   8605:          include/pa_string.h, main/pa_string.C: - optimization: CORD_str,
                   8606:          CORD_to_const_char_star, CORD_to_char_star and CORD_substr have
                   8607:          one more arg: length of cord
                   8608: 
                   8609: 2009-07-15  misha
                   8610: 
                   8611:        * src/main/pa_http.C: - bugfix: $.cookies' values should be force
                   8612:          tainted in ^file::load[http://...;$.cookies[]]
                   8613: 
                   8614:        * src/classes/: op.C, regex.C, string.C: - new string with
                   8615:          exception was used
                   8616: 
                   8617:        * src/include/pa_exception.h: - new string with exception was added
                   8618: 
                   8619:        * tests/223.html: - test for checking cookie-encoding during
                   8620:          ^file::load[http was added
                   8621: 
                   8622:        * tests/: 221.html, 222.html: - tests for checking type of
                   8623:          $table.fields.field were added
                   8624: 
                   8625:        * src/types/pa_vtable.C: - not used var decl was removed
                   8626: 
                   8627:        * src/include/pa_string.h: - use cached string length in Body::mid.
                   8628:          it improves speed of match with brackets in pattern
                   8629: 
                   8630:        * src/lib/cord/include/cord.h: - make CORD_substr_checked available
                   8631:          outside
                   8632: 
                   8633: 2009-07-14  misha
                   8634: 
                   8635:        * src/types/pa_vtable.C: - $table.fields.a return string even if
                   8636:          column is empty (sometime returned void) - $table.fields was
                   8637:          added for nameless tables
                   8638: 
                   8639:        * src/targets/cgi/getopt.c: - one warning resolved
                   8640: 
                   8641:        * src/main/pa_string.C: - potentian bug fixed
                   8642: 
                   8643:        * src/classes/op.C: - small optimization in taint/untaint
                   8644: 
                   8645: 2009-07-13  misha
                   8646: 
                   8647:        * tests/156.html: - test for $cookie[...$.httponly(false)...] was
                   8648:          added
                   8649: 
                   8650:        * src/types/pa_value.C: - bugfix: $cookie[...$.httponly(false)...]
                   8651:          souldn't add the attribut to output
                   8652: 
                   8653: 2009-07-11  misha
                   8654: 
                   8655:        * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
                   8656:          stack size was increaced to 2MB (default=1MB)
                   8657: 
                   8658: 2009-07-08  misha
                   8659: 
                   8660:        * src/main/pa_string.C: - link to UTF-8 description was added
                   8661: 
                   8662:        * src/include/pa_hash.h: - hash keeps element's order in more
                   8663:          places (ex: ._keys[])
                   8664: 
                   8665:        * tests/220.html: - test for checking order of elements in hash in
                   8666:          foreach was added
                   8667: 
                   8668:        * tests/172.html: - small changes in printing hash
                   8669: 
                   8670:        * tests/129.html: - small changes in printing hash
                   8671: 
                   8672:        * src/: include/pa_common.h, include/pa_hash.h,
                   8673:          include/pa_request.h, types/pa_value.h, types/pa_vmethod_frame.C,
                   8674:          types/pa_vmethod_frame.h: - hash now keeps order of elements
                   8675: 
                   8676:        * tests/014.html: - small changes in printing hash
                   8677: 
                   8678: 2009-07-07  misha
                   8679: 
                   8680:        * src/classes/op.C: - new taint language "parser-code" was added
                   8681: 
                   8682:        * tests/219.html: - test for auto untaint parser code in process
                   8683:          was added
                   8684: 
                   8685:        * src/classes/op.C: - tainted pieces in body of process are
                   8686:          auto-untainted now: ^ -> ^^, $ -> ^$ etc.
                   8687: 
                   8688:        * src/: include/pa_string.h, main/untaint.C: - new language
                   8689:          L_PARSER_CODE for auto-untaint in process was added
                   8690: 
                   8691:        * src/: classes/file.C, classes/hash.C, classes/image.C,
                   8692:          classes/op.C, classes/string.C, classes/table.C, classes/void.C,
                   8693:          classes/xdoc.C, include/pa_string.h, main/pa_charset.C,
                   8694:          main/pa_http.C, main/pa_request.C, main/pa_xml_io.C,
                   8695:          main/untaint.C, types/pa_value.h, types/pa_vhash.h,
                   8696:          types/pa_vmail.C, types/pa_vobject.h, types/pa_vstring.h: - some
                   8697:          code cleanup
                   8698: 
                   8699: 2009-07-06  misha
                   8700: 
                   8701:        * src/classes/: file.C, hash.C, image.C, mail.C, op.C, string.C,
                   8702:          table.C, void.C, xdoc.C: - cstr(params) and cstrm(params) were
                   8703:          deleted. taint_cstr[m] and untaint_cstr[m] should be used
                   8704: 
                   8705:        * src/types/: pa_vcookie.C, pa_vhash.h, pa_vhashfile.C,
                   8706:          pa_vimage.C, pa_vmail.C, pa_vobject.h, pa_vregex.C,
                   8707:          pa_vrequest.C, pa_vstring.h, pa_vvoid.h: - cstr(params) and
                   8708:          cstrm(params) were deleted. taint_cstr[m] and untaint_cstr[m]
                   8709:          should be used
                   8710: 
                   8711:        * src/main/: pa_charset.C, pa_common.C, pa_exec.C, pa_http.C,
                   8712:          pa_request.C, pa_sql_driver_manager.C, pa_xml_io.C: -
                   8713:          cstr(params) and cstrm(params) were deleted. taint_cstr[m] and
                   8714:          untaint_cstr[m] should be used
                   8715: 
                   8716:        * src/include/pa_string.h: - cstr(params) and cstrm(params) were
                   8717:          deleted. taint_cstr[m] and untaint_cstr[m] should be used
                   8718: 
                   8719:        * tests/218.html: - test for checking automatic file-spec-taint was
                   8720:          added
                   8721: 
                   8722:        * src/: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vmail.C,
                   8723:          types/pa_vregex.C, types/pa_vrequest.C, types/pa_vstring.C,
                   8724:          classes/file.C, classes/hash.C, classes/image.C,
                   8725:          classes/string.C, classes/table.C, classes/void.C,
                   8726:          classes/xdoc.C: - optimizations and simplification of
                   8727:          string.cstr(...)
                   8728: 
                   8729:        * src/: include/pa_string.h, main/untaint.C, main/pa_common.C,
                   8730:          main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C:
                   8731:          - optimizations and simplification of string.cstr(...)
                   8732: 
                   8733: 2009-07-04  misha
                   8734: 
                   8735:        * tests/217.html: - test for recursion detection was added
                   8736: 
                   8737:        * src/: types/types.vcproj, main/main.vcproj,
                   8738:          classes/classes.vcproj, targets/cgi/parser3.vcproj,
                   8739:          targets/isapi/parser3isapi.vcproj: - RuntimeTypeInfo was removed
                   8740:          from .vcproj
                   8741: 
                   8742:        * src/types/pa_wwrapper.h: - dynamic_cast was removed
                   8743: 
                   8744:        * tests/: 195.html, 195_utf8.txt, 195_windows1251.txt: - tests for
                   8745:          uploading files and case-insensitive http-method were added
                   8746: 
                   8747:        * tests/: 216.html, 216_dir/1, 216_dir/2.txt: - test for checking
                   8748:          tainted pattern in ^file:list[] was added
                   8749: 
                   8750: 2009-07-03  misha
                   8751: 
                   8752:        * src/: classes/classes.vcproj, main/main.vcproj,
                   8753:          types/types.vcproj, targets/cgi/parser3.vcproj,
                   8754:          targets/isapi/parser3isapi.vcproj: - enable runtime info (needed
                   8755:          for dynamic_cast) - little options changes
                   8756: 
                   8757:        * src/main/pa_http.C: - file::load[http works now with uploading
                   8758:          files _and_ changing $.charset
                   8759: 
                   8760: 2009-06-29  misha
                   8761: 
                   8762:        * src/types/pa_vregex.C: - ^untaint[regex][] for all tainted data
                   8763:          while creating pattern
                   8764: 
                   8765: 2009-06-25  misha
                   8766: 
                   8767:        * src/classes/image.C, operators.txt: - options' names for
                   8768:          ^image.font were changed to $.space, $.width and $spacing -
                   8769:          default space width now == gif's width
                   8770: 
                   8771: 2009-06-24  misha
                   8772: 
                   8773:        * tests/215.html: - tests for $file.mode were added
                   8774: 
                   8775:        * operators.txt: - added info about $file.mode and changes in
                   8776:          ^image.font[
                   8777: 
                   8778:        * src/: types/pa_vimage.h, classes/image.C: ^image.font - third
                   8779:          param now could be omited - third param now could be hash (with
                   8780:          all widths options: $.space-width, $.letter-width) - it's
                   8781:          possible to specify tracking ($.letter-space)
                   8782: 
                   8783:        * src/classes/file.C: - file objects now could have mode field
                   8784:          (text|binary)
                   8785: 
                   8786:        * src/types/: pa_vfile.C, pa_vfile.h: - method set_method was added
                   8787: 
                   8788: 2009-06-23  misha
                   8789: 
                   8790:        * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
                   8791:          trim can work with utf-8 chars now
                   8792: 
                   8793: 2009-06-20  misha
                   8794: 
                   8795:        * src/: classes/hash.C, main/pa_string.C: - string length cacheing
                   8796:          was implemented
                   8797: 
                   8798:        * src/classes/table.C: - string length cacheing was implemented
                   8799: 
                   8800:        * src/include/pa_string.h: - string length cacheing was implemented
                   8801: 
                   8802: 2009-06-17  misha
                   8803: 
                   8804:        * src/main/execute.C: - value param was removed from
                   8805:          WContext::WContext
                   8806: 
                   8807:        * src/types/: pa_vcode_frame.h, pa_vmethod_frame.C, pa_wcontext.h,
                   8808:          pa_wwrapper.h: - value param was removed from WContext::WContext
                   8809:          - field wcontext was removed from VCodeFrame (using fparent
                   8810:          instead)
                   8811: 
                   8812:        * tests/214.html: - test with hash copying
                   8813: 
                   8814: 2009-06-16  misha
                   8815: 
                   8816:        * tests/: 062.html, results/062.processed: - evaluation hardcoded
                   8817:          strings doesn't work in expression anymore
                   8818: 
                   8819:        * src/main/execute.C: - less calls for get_constructing() - little
                   8820:          refactoring
                   8821: 
                   8822:        * src/: types/pa_wcontext.h, types/pa_wwrapper.h,
                   8823:          include/pa_request.h: - less calls for get_constructing()
                   8824: 
                   8825:        * src/classes/: hash.C, hashfile.C: - fixed bug which was
                   8826:          introduced with OPTIMIZE_SINGLE_STRING optimization
                   8827: 
                   8828: 2009-06-14  misha
                   8829: 
                   8830:        * src/: classes/date.C, classes/file.C, classes/hash.C,
                   8831:          classes/hashfile.C, classes/image.C, classes/regex.C,
                   8832:          classes/table.C, classes/xdoc.C, classes/xnode.h,
                   8833:          types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
                   8834:          types/pa_vstateless_class.h, main/execute.C: - create object for
                   8835:          storing object's fields only for parser objects
                   8836: 
                   8837: 2009-06-13  misha
                   8838: 
                   8839:        * buildall-with-xml, buildall-without-xml: - new option was added
                   8840:          for building GC (it slightly reduces memory usage)
                   8841: 
                   8842:        * src/types/: pa_wcontext.h, pa_wwrapper.h: - optimization of
                   8843:          single string write
                   8844: 
                   8845:        * src/main/execute.C: - bytecode optimization of ^class:constructor
                   8846:          - optimization of single string write
                   8847: 
                   8848:        * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.h:
                   8849:          - bytecode optimization of ^class:constructor
                   8850: 
                   8851: 2009-06-09  misha
                   8852: 
                   8853:        * src/targets/cgi/parser3.C: - type size_t was changed to int in
                   8854:          main (better compatibility)
                   8855: 
                   8856: 2009-06-08  misha
                   8857: 
                   8858:        * src/main/compile.y: - I've forgot to commit it :(
                   8859: 
                   8860: 2009-06-07  misha
                   8861: 
                   8862:        * src/include/pa_opcode.h: - more optimizations for WITH_SELF,
                   8863:          WITH_READ and WITH_ROOT
                   8864: 
                   8865:        * src/main/: compile.y, compile_tools.C, compile_tools.h,
                   8866:          execute.C: - more optimizations for WITH_SELF, WITH_READ and
                   8867:          WITH_ROOT - little refactoring
                   8868: 
                   8869: 2009-06-06  misha
                   8870: 
                   8871:        * tests/213.html: - tests for 3rd match string-param were added
                   8872: 
                   8873:        * src/classes/string.C: - 3rd match param could be string now
                   8874: 
                   8875:        * src/main/: compile.y, compile_tools.h: - much more bytecode's
                   8876:          sequences optimized to WITH_SELF__VALUE__GET_ELEMENT and
                   8877:          GET_OBJECT_ELEMENT
                   8878: 
                   8879: 2009-06-05  misha
                   8880: 
                   8881:        * src/main/pa_http.C: - bugfix: content-length was not calculated
                   8882:          if $.body was specified
                   8883: 
                   8884: 2009-06-04  misha
                   8885: 
                   8886:        * src/classes/op.C: - optimizing write_assign_lang in connect
                   8887: 
                   8888:        * src/classes/op.C: - optimizing write_assign_lang in taint/untaint
                   8889: 
                   8890:        * src/main/execute.C: - little refactoring - optimizing
                   8891:          write_assign_lang in taint/untaint
                   8892: 
                   8893:        * src/include/pa_opcode.h: - little refactoring
                   8894: 
                   8895:        * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
                   8896:          main/compile_tools.h, main/execute.C: - optimizations for
                   8897:          $self.field, ^self.method, $self.field[...] and $self.field(...)
                   8898:          were added
                   8899: 
                   8900: 2009-06-03  misha
                   8901: 
                   8902:        * src/types/pa_venv.C: - pa_strdup was replaced by strdup
                   8903: 
                   8904: 2009-06-02  misha
                   8905: 
                   8906:        * src/: main/compile.y, main/compile_tools.h, main/execute.C,
                   8907:          include/pa_opcode.h: - refactoring in last optimizations
                   8908:          ($a[...], $a(...), $.a[...], $.a(...)). a bit less optimizations
                   8909:          now but code is much easy and it is ready for further
                   8910:          improvements.
                   8911: 
                   8912: 2009-05-27  misha
                   8913: 
                   8914:        * src/: types/pa_junction.h, types/pa_vjunction.C,
                   8915:          types/pa_vjunction.h, types/pa_vmethod_frame.h, main/execute.C: -
                   8916:          changed in destructing junctions
                   8917: 
                   8918:        * src/main/: pa_charset.C, pa_string.C: - more safe creation on
                   8919:          String:Body
                   8920: 
                   8921: 2009-05-26  misha
                   8922: 
                   8923:        * src/: main/pa_common.C, main/pa_http.C, include/pa_common.h: -
                   8924:          one method detect_charset was deleted - bug was fixed in this
                   8925:          method (error while detecting charset in content_type withot last
                   8926:          ';')
                   8927: 
                   8928:        * src/types/: pa_vform.C, pa_vform.h: - detect post charset only
                   8929:          once
                   8930: 
                   8931: 2009-05-25  misha
                   8932: 
                   8933:        * src/classes/file.C: - bugfix: file::exec didn't work after
                   8934:          optimizing of helper_length
                   8935: 
                   8936: 2009-05-24  misha
                   8937: 
                   8938:        * src/main/compile_tools.h: - $a[$b.c] and $a[$b.$c] optimisations
                   8939:          were added - little refactoring
                   8940: 
                   8941:        * src/main/execute.C: - core while printing in debug log
                   8942:          non-printable values was fixed - $a[$b.c] and $a[$b.$c]
                   8943:          optimisations were added
                   8944: 
                   8945:        * src/include/pa_opcode.h: - new opcodes for $a[$b.c] and $a[$b.$c]
                   8946:          were added
                   8947: 
                   8948: 2009-05-23  misha
                   8949: 
                   8950:        * src/: lib/cord/cordbscs.c, lib/cord/cordxtra.c,
                   8951:          lib/cord/include/cord.h, include/pa_string.h, main/untaint.C: -
                   8952:          CORD_cat optimization
                   8953: 
                   8954:        * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C:
                   8955:          - call constr optimisation under separate define now
                   8956: 
                   8957:        * src/main/: compile_tools.h, execute.C: - bugfix: $a[] $b[$a] --
                   8958:          in $b should be string, not void
                   8959: 
                   8960:        * src/main/compile.y: - little fix for rem-cut optimisation
                   8961: 
                   8962:        * src/: include/pa_opcode.h, main/compile_tools.C,
                   8963:          main/compile_tools.h, main/execute.C: - optimisations for
                   8964:          $a[^b[...]], $.a[^b[...]], $a(^b[...]) and $.a(^b[...])
                   8965: 
                   8966:        * INSTALL: - description of some #defined were added
                   8967: 
                   8968:        * src/types/: pa_vfile.C, pa_vfile.h: - fill .'text' field only
                   8969:          before 1st access (memory usage is reduced if don't access to
                   8970:          .text field)
                   8971: 
                   8972:        * src/include/pa_array.h: - array grows step now not static (it
                   8973:          reduces numbers of reallocs)
                   8974: 
                   8975: 2009-05-20  misha
                   8976: 
                   8977:        * src/include/pa_opcode.h: - bytecode optimization for $a(1),
                   8978:          $.b(2), $c[d] and $.e[f] was added
                   8979: 
                   8980:        * src/main/: compile.y, compile_tools.C, compile_tools.h,
                   8981:          execute.C: - bytecode optimization for $a(1), $.b(2), $c[d] and
                   8982:          $.e[f] was added
                   8983: 
                   8984:        * src/main/execute.C: - debug printing moved in defines
                   8985: 
                   8986:        * src/main/: compile.y, compile_tools.C, compile_tools.h: - bugfix
                   8987:          and little refactoring for OP_GET_OBJECT_ELEMENT +
                   8988:          OP_GET_OBJECT_VAR_ELEMENT optimisation
                   8989: 
                   8990: 2009-05-19  misha
                   8991: 
                   8992:        * src/main/: compile.y, compile_tools.C, compile_tools.h,
                   8993:          execute.C: - $a.$b & ^a.$b bytecode optimisation
                   8994: 
                   8995:        * src/include/pa_opcode.h: - new opcodes were added (for $a.$b &
                   8996:          ^a.$b optimisation)
                   8997: 
                   8998:        * src/main/compile.y: - compiler now generate new opcodes:
                   8999:          OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE for $a.b and
                   9000:          ^a.b - compiler now cut off ^rem{ with all content ; any number
                   9001:          of params }
                   9002: 
                   9003:        * src/main/execute.C: - code for handle new opcodes
                   9004:          OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE was added
                   9005: 
                   9006:        * src/main/: compile_tools.C, compile_tools.h: - new parameter was
                   9007:          added for LA2V and LA2S
                   9008: 
                   9009:        * src/include/pa_opcode.h: - new defines which can be used for
                   9010:          disable some bytecode optimisation and new opcodes were added
                   9011: 
                   9012: 2009-05-17  misha
                   9013: 
                   9014:        * src/lib/cord/cordxtra.c: - bugfix.
                   9015: 
                   9016:        * tests/212.html: - .size[] and .study_size[] were added to tests
                   9017: 
                   9018:        * operators.txt: - info about regex class was added
                   9019: 
                   9020:        * tests/212.html: - tests for regex class were added
                   9021: 
                   9022: 2009-05-16  misha
                   9023: 
                   9024:        * buildall-with-xml, buildall-without-xml: - moving from gc6.8 to
                   9025:          gc7.1
                   9026: 
                   9027:        * tests/022.html: - test for ^file:list[path;] (empty second param)
                   9028:          was added
                   9029: 
                   9030:        * src/classes/file.C: - bugfix: ^file:list[path;] [empty second
                   9031:          param) should work
                   9032: 
                   9033: 2009-05-15  misha
                   9034: 
                   9035:        * src/classes/table.C: - automatically disable stringstream usage
                   9036:          on freebsd4
                   9037: 
                   9038:        * src/lib/cord/cordxtra.c: - var decl should be at the beginning of
                   9039:          scope
                   9040: 
                   9041:        * tests/211.html: - test with different types of access to hash was
                   9042:          added
                   9043: 
                   9044:        * tests/210.html: - test which checks for loosing tainting in
                   9045:          hash's keys was added
                   9046: 
                   9047:        * tests/208.html: - some parser work added. or stime == 0 %-)
                   9048: 
                   9049:        * src/lib/cord/cordbscs.c: - little hack was added to cord
                   9050: 
                   9051:        * src/lib/cord/cordxtra.c: - cacheing of cord chars was added
                   9052: 
                   9053:        * src/include/pa_version.h, configure.in: - moko have made a lot of
                   9054:          optimisations for increacing version number more dramatically :)
                   9055: 
                   9056:        * src/classes/date.C: - little refactoring: use constructor which
                   9057:          accepts formated string
                   9058: 
                   9059:        * src/: include/pa_string.h, main/pa_string.C: - String constructor
                   9060:          which can print formatted string was added
                   9061: 
                   9062: 2009-05-14  misha
                   9063: 
                   9064:        * src/include/pa_string.h: - type was fixed
                   9065: 
                   9066:        * src/: classes/hashfile.C, classes/op.C,
                   9067:          include/pa_cache_managers.h, include/pa_charset.h,
                   9068:          include/pa_charsets.h, include/pa_common.h, include/pa_hash.h,
                   9069:          include/pa_request.h, include/pa_sql_driver_manager.h,
                   9070:          include/pa_string.h, include/pa_stylesheet_manager.h,
                   9071:          include/pa_table.h, include/pa_xml_io.h, main/pa_charset.C,
                   9072:          main/pa_charsets.C, main/pa_string.C,
                   9073:          main/pa_stylesheet_connection.C, types/pa_value.h,
                   9074:          types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
                   9075:          types/pa_vobject.C, types/pa_vstateless_class.C,
                   9076:          types/pa_vstateless_class.h: - hash_code caching was implemented
                   9077:          (seaches should be faster now)
                   9078: 
                   9079:        * src/: classes/file.C, classes/hash.C, classes/image.C,
                   9080:          classes/string.C, classes/table.C, include/pa_string.h,
                   9081:          main/pa_charset.C, main/pa_http.C, main/pa_request.C,
                   9082:          types/pa_vconsole.h, types/pa_vcookie.C, types/pa_venv.C,
                   9083:          types/pa_vform.C, types/pa_vhashfile.C, types/pa_vregex.C,
                   9084:          types/pa_vrequest.C: - String constructors don't have that stupid
                   9085:          true/false param which means 'tainted'. they accept lang instead.
                   9086: 
                   9087:        * src/types/pa_vmethod_frame.h: - bugfix: taint/untaint didn't work
                   9088:          with OPTIMIZE_RESULT
                   9089: 
                   9090:        * src/types/: pa_method.h, pa_vstateless_class.C: - less warnings
                   9091:          wher OPTIMIZE_RESULT and OPTIMIZE_CALL not defined
                   9092: 
                   9093: 2009-05-13  misha
                   9094: 
                   9095:        * src/: types/pa_method.h, types/pa_vcookie.C, types/pa_vdouble.h,
                   9096:          types/pa_venv.C, types/pa_vhashfile.C, types/pa_vint.h,
                   9097:          types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
                   9098:          types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
                   9099:          types/pa_vstateless_class.C, main/execute.C, main/pa_charset.C,
                   9100:          main/pa_common.C, main/pa_request.C, main/pa_string.C,
                   9101:          include/pa_string.h, classes/date.C, classes/file.C,
                   9102:          classes/hash.C, classes/image.C, classes/string.C,
                   9103:          classes/table.C, classes/xdoc.C: - result optimisation -
                   9104:          helper_length parameter removed from string constructors
                   9105: 
                   9106: 2009-05-11  misha
                   9107: 
                   9108:        * tests/209.html: - tests for ^hash::create[hash] were added
                   9109: 
                   9110:        * tests/208.html: - tests for $status:rusage, $status:memory,
                   9111:          ^memory:compact[] were added
                   9112: 
                   9113:        * tests/207.html: -tests for abs, sign, trunc, frac, exp, log,
                   9114:          log10 were added
                   9115: 
                   9116:        * tests/206.html: - test for try with finally was added
                   9117: 
                   9118: 2009-05-10  misha
                   9119: 
                   9120:        * tests/205.html: - test for ^file::create[...] was added
                   9121: 
                   9122:        * tests/204.html: - test for ^response:clear[] was added
                   9123: 
                   9124:        * tests/038.html: - tests for trigonometric functions were added
                   9125: 
                   9126:        * tests/014.html: - tests for ^hash.containts and ^hash.delete were
                   9127:          added - more tests for .add, .sub, .union, .intersects and
                   9128:          .intersections
                   9129: 
                   9130:        * tests/065.html: - test for ^file:dirname was added
                   9131: 
                   9132:        * tests/030.html: - test for $cookie:fields was added
                   9133: 
                   9134:        * tests/203.html: - test for ^h._keys[column name] was added
                   9135: 
                   9136:        * tests/201.html: - tests for .trim were added
                   9137: 
                   9138:        * tests/202.html: - tests for last-day,
                   9139:          date:calendar[type](YYYY;MM;DD) were added
                   9140: 
                   9141:        * tests/200.html: - tests for .sort(), .sort{}, .flip[] and
                   9142:          .offset[type](N) were added
                   9143: 
                   9144:        * tests/185.html: - more tests for .left(N), .right(N), .min(N;M)
                   9145:          and .pos[c](N) were added
                   9146: 
                   9147:        * tests/141.html: - test for math:sha1 was added
                   9148: 
                   9149:        * tests/063.html: - tests for .mod(N), .inc[] & .dec[] were added
                   9150: 
                   9151: 2009-05-09  misha
                   9152: 
                   9153:        * src/main/compile.y: - rollback
                   9154: 
                   9155: 2009-05-05  misha
                   9156: 
                   9157:        * src/main/pa_exec.C: - little optimisation: somewhere length() was
                   9158:          replaced by is_empty()
                   9159: 
                   9160:        * src/: include/pa_string.h, main/pa_charset.C: - little
                   9161:          optimisation: somewhere length() was replaced by is_empty()
                   9162: 
                   9163:        * src/classes/table.C: - little optimisation: somewhere length()
                   9164:          was replaced by is_empty()
                   9165: 
                   9166:        * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
                   9167:          classes/op.C, classes/table.C, main/pa_exception.C: - little
                   9168:          optimisation: somewhere length() was replaced by is_empty()
                   9169: 
                   9170: 2009-05-04  misha
                   9171: 
                   9172:        * src/: types/pa_method.h, types/pa_vstateless_class.C,
                   9173:          types/pa_vstateless_class.h, main/execute.C,
                   9174:          include/pa_request.h, classes/hash.C, classes/op.C,
                   9175:          classes/table.C: - more optimisations were added: some operators
                   9176:          don't switch write context anylonger
                   9177: 
                   9178: 2009-05-01  misha
                   9179: 
                   9180:        * src/main/compile.y: - slightly more opcode optimisations for
                   9181:          WITH_WRITE + VALUE + GET_ELEMENT -> OP_VALUE__GET_ELEMENT
                   9182: 
                   9183:        * src/main/execute.C: - simplifying process for getters
                   9184: 
                   9185: 2009-04-30  misha
                   9186: 
                   9187:        * tests/: 198.html, 199.html: - new line fixes (should be 0x0A)
                   9188: 
                   9189:        * tests/results/199.processed: - test for checking $result into
                   9190:          ^rem was added
                   9191: 
                   9192:        * tests/199.html: - test for checking $result into ^rem was added
                   9193: 
                   9194:        * tests/: 022.html, 096.html: - þsort after :list was asses (on
                   9195:          some OS it returns list in different order)
                   9196: 
                   9197:        * src/: include/pa_array.h, include/pa_request.h,
                   9198:          include/pa_stack.h, main/execute.C, types/pa_vmethod_frame.h: -
                   9199:          changes in stack impl - get_element() optimisation: 3rd param
                   9200:          removed - bugfix: problems with reading empty input param -
                   9201:          defines SAVE_CONTEXT and RESTORE_CONTEXT were added and used
                   9202: 
                   9203:        * tests/results/198.processed: - test for reading empty local var
                   9204:          was added
                   9205: 
                   9206:        * tests/198.html: - test for reading empty local var was added
                   9207: 
                   9208: 2009-04-29  misha
                   9209: 
                   9210:        * src/main/compile.y: - bugfix: couldn't compile because
                   9211:          OP_VALUE__GET_ELEMENT should be unde #ifdef
                   9212: 
                   9213:        * src/: include/pa_array.h, include/pa_opcode.h,
                   9214:          include/pa_request.h, main/compile.y, main/execute.C,
                   9215:          main/pa_request.C, types/pa_vmethod_frame.C,
                   9216:          types/pa_vmethod_frame.h: - we can work without opcode
                   9217:          OP_STORE_PARAM, so it was removed
                   9218: 
                   9219: 2009-04-28  misha
                   9220: 
                   9221:        * src/: include/pa_opcode.h, main/compile.y, main/execute.C: -
                   9222:          op-codes optimisation:   1. VALUE+GET_CLASS=>VALUE_GET_CLASS   2.
                   9223:          WITH_READ+VALUE+GET_ELEMENT=>VALUE__GET_ELEMENT (not all yet)
                   9224:          3. WITH_READ+VALUE+GET_ELEMENT__WRITE=>VALUE__GET_ELEMENT__WRITE
                   9225:          4.
                   9226:          WITH_READ+VALUE+GET_ELEMENT_OR_OPERATOR=>VALUE__GET_ELEMENT_OR_OPERATOR
                   9227: 
                   9228:        * src/main/compile_tools.h: - new stuff for op-codes optimisation
                   9229: 
                   9230:        * src/: main/pa_string.C, classes/string.C: - !length() =>
                   9231:          is_empty()
                   9232: 
                   9233: 2009-04-27  misha
                   9234: 
                   9235:        * src/types/pa_vregex.h: - back explicit vars initialisation
                   9236: 
                   9237: 2009-04-24  misha
                   9238: 
                   9239:        * src/classes/string.C: - ups. typo fixed
                   9240: 
                   9241:        * src/main/execute.C: - more replacements '*new VBool' to
                   9242:          'VBool::get' - checks for ^break[], ^continue[] and
                   9243:          parser.interrupted were optimised
                   9244: 
                   9245:        * src/classes/string.C: - number of params.count() calls was
                   9246:          slightly reduced
                   9247: 
                   9248: 2009-04-23  misha
                   9249: 
                   9250:        * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
                   9251:          make it x64 friendly
                   9252: 
                   9253:        * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
                   9254:          parser is x64 friendly now
                   9255: 
                   9256: 2009-04-22  misha
                   9257: 
                   9258:        * src/types/pa_vhashfile.C: - coder friendly exception about
                   9259:          exceeding record size was added
                   9260: 
                   9261:        * src/classes/file.C: - use vregex object instead of direct calls
                   9262:          methods from pcre lib
                   9263: 
                   9264:        * src/: classes/file.C, include/pa_string.h, main/pa_string.C,
                   9265:          classes/string.C: - use vregex object instead of direct calls
                   9266:          methods from pcre lib
                   9267: 
                   9268:        * src/: include/pa_common.h, main/pa_common.C: - method
                   9269:          print_pcre_exec_error_text was moved to class vregex
                   9270: 
                   9271:        * src/classes/: Makefile.am, classes.vcproj, regex.C: - class regex
                   9272:          was added
                   9273: 
                   9274:        * src/types/: Makefile.am, pa_vregex.C, pa_vregex.h, types.vcproj:
                   9275:          - class vregex was added
                   9276: 
                   9277: 2009-04-21  misha
                   9278: 
                   9279:        * buildall-with-xml, buildall-without-xml: - pcre 7.8 -> pcre 7.9
                   9280: 
                   9281:        * src/: types/pa_junction.h, types/pa_value.C,
                   9282:          types/pa_vjunction.C, types/pa_vjunction.h, types/pa_wcontext.C,
                   9283:          types/pa_wcontext.h, main/execute.C, classes/op.C: -
                   9284:          junction-optimisation (destructors)
                   9285: 
                   9286:        * src/include/pa_array.h: - free under if now
                   9287: 
                   9288: 2009-04-19  misha
                   9289: 
                   9290:        * src/main/untaint.C: - ^taint[js] now escapes \x0D as well
                   9291: 
                   9292: 2009-04-18  misha
                   9293: 
                   9294:        * src/include/pa_version.h:
                   9295:          :q :
                   9296: 
                   9297:          CV:
                   9298:          ----------------------------------------------------------------------
                   9299: 
                   9300:        * src/types/: pa_vjunction.h, pa_vstateless_class.C: - little
                   9301:          refactoring
                   9302: 
                   9303:        * src/: include/pa_array.h, include/pa_hash.h,
                   9304:          types/pa_vmethod_frame.h: - destructors under #ifdef now
                   9305: 
                   9306:        * src/include/pa_memory.h: - define for using destructors was added
                   9307: 
                   9308:        * src/: types/pa_method.h, types/pa_vstateless_class.C,
                   9309:          main/execute.C: - some junctions will be cached now
                   9310: 
                   9311:        * src/include/pa_hash.h: - hash destructor frees pairs now
                   9312: 
                   9313:        * src/include/pa_array.h: - inline was added to destructor
                   9314: 
                   9315:        * src/types/pa_method.h: - comment was changed
                   9316: 
                   9317: 2009-04-17  misha
                   9318: 
                   9319:        * src/: include/pa_array.h, include/pa_hash.h,
                   9320:          types/pa_vmethod_frame.h: - destructors were added
                   9321: 
                   9322:        * src/types/: pa_method.h, pa_vmethod_frame.h: - write_to_result
                   9323:          renamed to always_use_result
                   9324: 
                   9325:        * src/main/: compile.y, compile_tools.h: - rollback changes in
                   9326:          compiler: full backward compatibility is better
                   9327: 
                   9328:        * src/types/pa_vmethod_frame.h: - set flag write_to_result if find
                   9329:          result in var's hash
                   9330: 
                   9331:        * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
                   9332:          optimisation in method_frame
                   9333: 
                   9334:        * src/include/pa_array.h: - optimisation in array (allocate
                   9335:          elements only when needed)
                   9336: 
                   9337:        * src/types/pa_vresponse.C: - check for $response:headers field
                   9338:          before looking at custom fields
                   9339: 
                   9340:        * src/types/pa_vmethod_frame.h: - if flag write_to_result was set,
                   9341:          not needed to check existance var with name 'result' in var's
                   9342:          hash
                   9343: 
                   9344:        * src/main/compile.y: - compiler was changed: now it detects
                   9345:          writings to $result and set flag writo_to_result in method
                   9346: 
                   9347:        * src/classes/string.C: - little optimisation: no needed to write
                   9348:          number with lang
                   9349: 
                   9350:        * src/main/pa_charset.C: - methods readChar and skipChar which is
                   9351:          used for read utf8-strings were renamed - is_escaped was renamed
                   9352:          to isEscaped (to the same name convention)
                   9353: 
                   9354:        * src/: types/pa_method.h, main/compile_tools.h: - flag
                   9355:          write_to_result added. compiler get this info from code.
                   9356: 
                   9357: 2009-04-16  misha
                   9358: 
                   9359:        * src/types/: pa_wcontext.h, pa_vmethod_frame.h: - create new
                   9360:          String only before 1st write
                   9361: 
                   9362:        * src/include/pa_string.h: - not needed template removed
                   9363: 
                   9364:        * src/: types/pa_vbool.h, types/pa_vfile.h, types/pa_vimage.C,
                   9365:          types/pa_vjunction.C, types/pa_vproperty.C,
                   9366:          types/pa_vstateless_class.C, types/pa_vxdoc.C, types/pa_vxnode.C,
                   9367:          main/pa_request.C, classes/bool.C, classes/double.C,
                   9368:          classes/hash.C, classes/int.C, classes/string.C, classes/table.C,
                   9369:          classes/void.C, classes/xnode.C: - bool optimisation (use only 2
                   9370:          bool objects)
                   9371: 
                   9372: 2009-04-15  misha
                   9373: 
                   9374:        * src/lib/cord/cordxtra.c: - more optimisation
                   9375: 
                   9376:        * src/: include/pa_string.h, main/untaint.C: - String::append
                   9377:          optimisation
                   9378: 
                   9379:        * src/include/pa_hash.h: - get_by_hash_code added (it works faster
                   9380:          then get and can sometime be used)
                   9381: 
                   9382:        * src/main/pa_string.C: - String::length optimisation
                   9383: 
                   9384:        * src/main/pa_charset.C: - rollback changeing readChar to skipChar.
                   9385:          these methods read different strings
                   9386: 
                   9387:        * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
                   9388:          fresult_initial_void removed + some optimisation - if $result
                   9389:          defined we don't write to context anymore
                   9390: 
                   9391:        * src/main/pa_charset.C: - readChar => skipChar (in this place we
                   9392:          need just skip char)
                   9393: 
                   9394:        * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
                   9395:          types/pa_vrequest.C, types/pa_vtable.C, main/execute.C,
                   9396:          classes/table.C: - VVoid::get() => new VVoid (one void-instance)
                   9397: 
                   9398:        * src/types/pa_vvoid.h: - added get() method for retreave one
                   9399:          instance
                   9400: 
                   9401: 2009-04-11  misha
                   9402: 
                   9403:        * tests/196.html: - tests for $cookie:CLASS_NAME & Co were added
                   9404: 
                   9405:        * tests/197.html: - test for parser://test in xml was added
                   9406: 
                   9407:        * src/classes/string.C: - small optimisation
                   9408: 
                   9409:        * src/types/: pa_venv.C, pa_venv.h, pa_vconsole.h: - small
                   9410:          optimisation
                   9411: 
                   9412: 2009-04-10  misha
                   9413: 
                   9414:        * buildall-with-xml, buildall-without-xml: - moving from pcre-7.7
                   9415:          to pcre-7.8
                   9416: 
                   9417:        * src/types/pa_vclass.C: - normalizing todo-comments: '@todo' now
                   9418: 
                   9419:        * src/types/: pa_vcookie.C, pa_vcookie.h: - $cookie:CLASS_NAME was
                   9420:          added
                   9421: 
                   9422:        * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:CLASS and
                   9423:          $request:CLASS_NAME were added
                   9424: 
                   9425:        * src/types/pa_vconsole.h: - $console:CLASS and $console:CLASS_NAME
                   9426:          were added
                   9427: 
                   9428:        * src/types/: pa_venv.C, pa_venv.h: - $env:CLASS and
                   9429:          $env:CLASS_NAME were added
                   9430: 
                   9431:        * src/types/: pa_vmail.C, pa_vdate.h: - normalizing todo-comments:
                   9432:          '@todo' now
                   9433: 
                   9434:        * src/targets/cgi/parser3.C: - size_t -> int for calming down
                   9435:          compirer
                   9436: 
                   9437:        * src/main/pa_string.C: - little code cleanup
                   9438: 
                   9439:        * src/main/pa_common.C: - describe one more UTF-8 related error
                   9440:          during PCRE compile/execute
                   9441: 
                   9442:        * src/classes/: image.C, inet.C, string.C, xdoc.C, xnode.C: -
                   9443:          normalizing todo-comments: '@todo' now
                   9444: 
                   9445:        * src/types/: pa_vmath.C, pa_vmath.h: - $math:E was added
                   9446: 
                   9447:        * src/main/pa_charset.C: - type changed for making compiler happy
                   9448: 
                   9449: 2009-03-10  misha
                   9450: 
                   9451:        * src/targets/cgi/parser3.C: make g++ happy with the type of argc
                   9452:          in main()
                   9453: 
                   9454: 2009-02-01  misha
                   9455: 
                   9456:        * src/main/pa_http.C: - bugfix: double CRLF before the end of
                   9457:          boundary
                   9458: 
                   9459: 2009-01-25  misha
                   9460: 
                   9461:        * tests/: 194.html, 194_dir/194.p: - test for @GET[] was added
                   9462: 
                   9463:        * src/classes/file.C: - more changes for parsing different number
                   9464:          of params for file::load
                   9465: 
                   9466:        * tests/193.html: - tests for exception while base64-decode binary
                   9467:          to string was added
                   9468: 
                   9469:        * tests/192.html: - tests for file::load with different number of
                   9470:          options
                   9471: 
                   9472:        * src/classes/math.C: - ups. forgot '+1'
                   9473: 
                   9474:        * src/: classes/table.C, classes/file.C, include/pa_common.h,
                   9475:          include/pa_http.h, main/pa_xml_io.C, main/pa_common.C,
                   9476:          main/pa_http.C: - ^file::load[...;http://...;] now can post files
                   9477:          (new option $.encode[multipart-form/data] should be specified) -
                   9478:          $.method[] option for file::load now is not case-sensitive
                   9479: 
                   9480:        * src/: include/pa_string.h, main/untaint.C: - for file post the
                   9481:          new taint language L_FILE_POST was added
                   9482: 
                   9483:        * src/: include/pa_random.h, main/Makefile.am, main/pa_random.C,
                   9484:          main/main.vcproj, classes/math.C, include/Makefile.am: - some
                   9485:          stuff was moved to separate files
                   9486: 
                   9487: 2009-01-23  misha
                   9488: 
                   9489:        * src/classes/math.C: - little optimisation in ^math:sha1[] -
                   9490:          spaces to tabs were converted
                   9491: 
                   9492: 2009-01-12  misha
                   9493: 
                   9494:        * src/main/pa_http.C: - value of $.method[] option force uppercased
                   9495:          now
                   9496: 
                   9497:        * src/: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                   9498:          types/pa_vform.C, types/pa_vmail.C: - some constants changed
                   9499:          their names
                   9500: 
                   9501:        * src/main/pa_common.C: - changes in formating
                   9502: 
                   9503:        * src/: classes/file.C, main/pa_http.C: - some constants changed
                   9504:          their names
                   9505: 
                   9506:        * src/include/pa_http.h: - some spaces were converted to tabs
                   9507: 
                   9508:        * src/include/pa_common.h: - some constants changed their names
                   9509: 
                   9510:        * src/classes/file.C: - fixed 4-th paramether for file::load -
                   9511:          little code rewriting
                   9512: 
                   9513:        * src/types/pa_vfile.C: - little code rewriting
                   9514: 
                   9515:        * src/: main/pa_common.C, main/pa_http.C, main/untaint.C,
                   9516:          types/pa_value.h: - some formating changes
                   9517: 
                   9518:        * src/include/pa_common.h: - some formating spaces transformed to
                   9519:          tabs
                   9520: 
                   9521:        * src/classes/string.C: - exception while base64-decode binary to a
                   9522:          string
                   9523: 
                   9524: 2009-01-11  misha
                   9525: 
                   9526:        * configure.in: - version changed to 3.3.1b
                   9527: 
                   9528: 2008-09-05  misha
                   9529: 
                   9530:        * src/lib/pcre/Makefile.am: file Makefile.am was added on branch
                   9531:          release_3_3_0 on 2008-09-05 10:59:35 +0000
                   9532: 
                   9533: 2008-09-04  misha
                   9534: 
                   9535:        * tests/: 130.html, 131.html: - these exceptions not typeless
                   9536:          anymore
                   9537: 
                   9538:        * src/classes/op.C: - exception with 'invalid taint language' not
                   9539:          typeless anylonger
                   9540: 
                   9541:        * src/classes/image.C: - some exceptions while operations with
                   9542:          image not typeless anymore
                   9543: 
                   9544:        * src/: types/pa_vhashfile.C, main/pa_common.C, classes/file.C,
                   9545:          main/pa_exec.C, main/pa_http.C: - some exceptions while
                   9546:          operations with files not typeless anymore
                   9547: 
                   9548:        * src/: classes/date.C, types/pa_value.C, types/pa_vcookie.C,
                   9549:          types/pa_vdate.h: - exceptions while checking date range not
                   9550:          typeless anymore
                   9551: 
                   9552:        * src/include/pa_exception.h: - exception type string for invalid
                   9553:          date range was added
                   9554: 
                   9555: 2008-09-03  misha
                   9556: 
                   9557:        * src/: classes/file.C, main/pa_string.C: - exception while pce
                   9558:          operations not typeless anymore
                   9559: 
                   9560:        * src/include/pa_exception.h: - exception type for pce operations
                   9561:          was added
                   9562: 
                   9563:        * tests/: 191.html, 191_a.p, 191_b.p: - tests for calling .CLASS
                   9564:          and .CLASS_NAME insite classes
                   9565: 
                   9566:        * src/classes/table.C: - don't save table header whiile
                   9567:          ^table.save[append;filename] if file exists
                   9568: 
                   9569: 2008-09-02  misha
                   9570: 
                   9571:        * src/main/compile.y, src/main/compile_tools.h,
                   9572:          src/types/pa_vstateless_class.h, src/main/compile.tab.C,
                   9573:          tests/182_dir/a1.p, tests/182_dir/a2.p: - append option was
                   9574:          renamed to partial and it login changed: we must mark class as
                   9575:          partial for allow their modifications in future.
                   9576: 
                   9577: 2008-08-29  misha
                   9578: 
                   9579:        * tests/results/022.processed: - testing taint[regex] in mask for
                   9580:          file:list
                   9581: 
                   9582:        * tests/022.html: - testing taint[regex] in mask for file:list
                   9583: 
                   9584:        * tests/022_dir/b[b].txt: - file for testing taint[regex] in mask
                   9585:          for file:list was added
                   9586: 
                   9587:        * src/classes/file.C: - bugfix: ^taint[regex][] didn't works in
                   9588:          file:list
                   9589: 
                   9590: 2008-08-26  misha
                   9591: 
                   9592:        * src/types/pa_vobject.C: - we must get .CLASS and .CLASS_NAME from
                   9593:          last derived object
                   9594: 
                   9595:        * src/classes/image.C: - many strings "image.format" replaced by
                   9596:          IMAGE_FORMAT constant string - handle GPS info while parse exif -
                   9597:          understand some more exif tags
                   9598: 
                   9599:        * src/include/pa_exception.h: - string "image.format" was added
                   9600: 
                   9601: 2008-08-21  misha
                   9602: 
                   9603:        * src/: main/pa_string.C, classes/file.C: - use method for print
                   9604:          pcre_exec text error
                   9605: 
                   9606:        * src/main/pa_common.C: - method for print pcre_exec text error was
                   9607:          added
                   9608: 
                   9609:        * src/include/pa_common.h: - method declaration for print pcre_exec
                   9610:          text error was added
                   9611: 
                   9612: 2008-08-19  misha
                   9613: 
                   9614:        * src/main/execute.C: - bugfix: opcodes must be in separate
                   9615:          namespace while debug execution as well
                   9616: 
                   9617:        * tests/: 015.html, results/015.processed: - test for escaping some
                   9618:          parser chars was added
                   9619: 
                   9620: 2008-08-18  misha
                   9621: 
                   9622:        * tests/: 190.html, 190.p, results/190.processed: - test for
                   9623:          $caller.self.field + default getter in one class was added
                   9624: 
                   9625:        * tests/: 189.html, results/189.processed: - test for
                   9626:          ^date::create[date object]
                   9627: 
                   9628:        * tests/: 188.html, results/188.processed: - tests for match with
                   9629:          UTF-8 strings
                   9630: 
                   9631:        * src/main/pa_string.C: - option 'U' (ungreedy) was added to
                   9632:          ^string.match[]
                   9633: 
                   9634:        * ChangeLog: - parser 3.3.0 beta13
                   9635: 
                   9636: 2008-08-15  misha
                   9637: 
1.116     moko     9638:        * src/lib/pcre/: LICENCE, Makefile.am, README, Tech.Notes, get.c,
                   9639:          internal.h, pcre.3, pcre.3.html, pcre.3.txt, pcre.c, pcre.h,
                   9640:          pcre.vcproj, study.c, maketables.c, pcre_dftables.vcproj,
                   9641:          dftables.c: - old PCRE files removed
1.95      moko     9642: 
                   9643:        * src/lib/pcre/config.h: - configuration for PCRE library
                   9644: 
                   9645:        * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
                   9646:          use PCRE library from win32\pcre instead of parser3\src\lib\pcre
                   9647: 
                   9648:        * src/: classes/file.C, main/pa_string.C: - moved to new PCRE
                   9649:          library and set flag UTF8 if $request:charset is UTF-8
                   9650: 
                   9651:        * src/: include/pa_charset.h, main/pa_charset.C, main/pa_globals.C,
                   9652:          include/pa_config_fixed.h: - moved to new PCRE library
                   9653: 
                   9654:        * src/: main/main.vcproj, types/types.vcproj,
                   9655:          classes/classes.vcproj, lib/Makefile.am: - use PCRE library from
                   9656:          win32\pcre instead of parser3\src\lib\pcre
                   9657: 
                   9658:        * src/: include/pa_opcode.h, include/pa_operation.h,
                   9659:          main/compile.C, main/compile.y, main/compile_tools.C,
                   9660:          main/compile_tools.h, main/execute.C, main/compile.tab.C: -
                   9661:          opcodes were moved to separate namespace
                   9662: 
                   9663: 2008-08-14  misha
                   9664: 
                   9665:        * src/types/pa_vstateless_class.C: - newline at the end missed
                   9666: 
                   9667:        * src/main/untaint.C: - char '-' also prefixed by '\' while regex
                   9668:          tainting
                   9669: 
                   9670: 2008-08-11  misha
                   9671: 
                   9672:        * tests/: 187.html, 187.p, results/187.processed: - tests for
                   9673:          $caller.self, $caller.self.field and $caller.self.field[value]
                   9674:          were added
                   9675: 
                   9676:        * src/types/pa_vmethod_frame.h: - still need to check 'self'
                   9677:          runtime as well (for $caller.self)
                   9678: 
                   9679: 2008-07-25  misha
                   9680: 
                   9681:        * tests/: 021.html, 032.html, 033.html, 047.html, 055.html,
                   9682:          059.html, 061.html, 064.html, 067.html, 068.html, 085.html,
                   9683:          086.html, 098.html, 109.html, 121.html: - set correct charsets in
                   9684:          tests with international characters
                   9685: 
                   9686: 2008-07-23  misha
                   9687: 
                   9688:        * src/main/pa_http.C: - escape $cookies as %uXXXX while
                   9689:          file::load[...;http://
                   9690: 
                   9691:        * src/: main/pa_string.C, main/pa_globals.C, classes/file.C: - pcre
                   9692:          now everywhere in separate namespace
                   9693: 
                   9694:        * src/types/pa_vmethod_frame.h: - looking for caller before looking
                   9695:          for vars
                   9696: 
                   9697:        * src/main/: compile.y, compile.tab.C: - characters '@' and '#' now
                   9698:          can be escaped by '^'
                   9699: 
                   9700: 2008-07-22  misha
                   9701: 
                   9702:        * src/classes/string.C, tests/186.html: - names changes:
                   9703:          escape=>js-escape, unescape=>js-unescape
                   9704: 
                   9705: 2008-07-21  misha
                   9706: 
                   9707:        * tests/results/186.processed: - test for string escape/unescape
                   9708: 
                   9709:        * tests/186.html: - test for string escape/unescape
                   9710: 
                   9711:        * src/classes/string.C: - string has escape and unescape methods
                   9712:          now
                   9713: 
                   9714:        * src/: include/pa_string.h, main/pa_string.C: - escape method was
                   9715:          added
                   9716: 
                   9717:        * src/: include/pa_charset.h, main/pa_charset.C: - more escape
                   9718:          method-layers added (with different params)
                   9719: 
                   9720: 2008-07-18  misha
                   9721: 
                   9722:        * tests/results/185.processed: - test for ^str.pos[substr](offset)
                   9723:          was added
                   9724: 
                   9725:        * tests/185.html: - test for ^str.pos[sub](offset) added
                   9726: 
                   9727:        * src/classes/string.C, src/classes/void.C, operators.txt: -
                   9728:          ^string.pos[substr](offset) -- 2nd param accepted now
                   9729: 
                   9730:        * src/main/pa_string.C: - .pos works fine with offset for utf-8
                   9731:          strings
                   9732: 
                   9733: 2008-07-17  misha
                   9734: 
                   9735:        * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
                   9736:          helper length added for mid for small optimisation
                   9737: 
                   9738: 2008-07-16  misha
                   9739: 
                   9740:        * tests/: 185.html, results/185.processed: - tests for
                   9741:          length/left/right/mid/pos with utf-8 strings
                   9742: 
                   9743:        * src/classes/string.C: - left/right/mid/length/pos works fine for
                   9744:          utf-8 strings
                   9745: 
                   9746:        * src/main/untaint.C: - comments removed
                   9747: 
                   9748:        * src/: include/pa_string.h, main/pa_string.C,
                   9749:          include/pa_charset.h, main/pa_charset.C: - methods for working
                   9750:          with pos/mid for strings in utf-8 were added
                   9751: 
                   9752: 2008-07-15  misha
                   9753: 
                   9754:        * tests/: 184.html, results/184.processed: - test for case body as
                   9755:          expression: $var(^switch(1){^case(1)(true)..})
                   9756: 
                   9757:        * src/classes/op.C: - case body can be expression now:
                   9758:          $var(^switch(1){^case(1)(true)..})
                   9759: 
                   9760:        * tests/: results/183.processed, 183.html: - added test for testing
                   9761:          new cookie encoding (%uXXXX)
                   9762: 
                   9763:        * src/main/untaint.C: - cookies outputs as %uXXXX now. while
                   9764:          decoding for backward compatibility they decoded from %XX in
                   9765:          request:charset too
                   9766: 
                   9767:        * src/: types/pa_vcookie.C, types/pa_vcookie.h, main/pa_request.C:
                   9768:          - cookie class now decode cookies before first access after last
                   9769:          request:charset changing (as form class).
                   9770: 
                   9771:        * src/main/pa_charset.C: - added method escape for escaping cookies
                   9772:          as %uXXXX - before transcode calculate required space for dest
                   9773:          string. it reduce mem usage for transcode
                   9774: 
                   9775:        * src/include/pa_charset.h: - added method escape for escaping
                   9776:          cookies as %uXXXX
                   9777: 
                   9778:        * src/include/pa_string.h: - taint lang (internal) L_HTTP_COOKIE
                   9779:          was added. will used for escaping cookies as %uXXXX
                   9780: 
                   9781:        * src/include/pa_common.h: - escape method has new option for skip
                   9782:          converting '+' to a space char
                   9783: 
                   9784:        * src/main/: pa_common.C, pa_http.C: - skip BOM code before
                   9785:          transcode - escape method has new option for skip converting '+'
                   9786:          to a space char
                   9787: 
                   9788: 2008-07-08  misha
                   9789: 
                   9790:        * src/classes/op.C: - bugfix in switch - case "stops" on 1st match
                   9791:          (no UE if more then 1 case matches anylonger) - optimization:
                   9792:          doing searching.as_string() || searching.as_double() only once
                   9793: 
                   9794: 2008-07-04  misha
                   9795: 
                   9796:        * src/types/pa_vdate.h: - is_evaluated_expr returning true added so
                   9797:          now ^date::create[date object] works
                   9798: 
                   9799:        * src/classes/string.C: - left and right added as aliases for start
                   9800:          and end in ^string.trim[]
                   9801: 
                   9802: 2008-07-03  misha
                   9803: 
                   9804:        * src/classes/file.C: - allow $.limit for file::sql as well
                   9805: 
                   9806:        * src/classes/file.C: - allow $.offset option for file::sql - force
                   9807:          send limit=1 to query for use sql specifics authomatically
                   9808: 
                   9809:        * src/classes/: hash.C, string.C, table.C: - don't throw exception
                   9810:          if $.limit value if empty. autoconvert it as everywere
                   9811: 
                   9812: 2008-07-02  misha
                   9813: 
                   9814:        * configure.in: - time to change version number to 3.3.0 %-)
                   9815: 
                   9816:        * src/include/pa_version.h: - time to change version number to
                   9817:          3.3.0 %-)
                   9818: 
                   9819: 2008-06-26  misha
                   9820: 
                   9821:        * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
                   9822:          $.limit(0) fixes
                   9823: 
                   9824:        * src/sql/pa_sql_driver.h: - new drivers API and new version (10.0)
                   9825:          - $.limit(0) fixes
                   9826: 
                   9827:        * src/sql/pa_sql_driver.h: - SQL_NO_LIMIT added (preparations to
                   9828:          new API)
                   9829: 
                   9830:        * src/: include/pa_sql_driver_manager.h,
                   9831:          include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
                   9832:          classes/op.C: - document_root added
                   9833: 
                   9834:        * src/main/compile.tab.C: - error message was changed
                   9835: 
                   9836: 2008-06-25  misha
                   9837: 
                   9838:        * src/main/compile.y: - error message was changed
                   9839: 
                   9840: 2008-06-24  misha
                   9841: 
                   9842:        * tests/176_dir/: a.p, d.p: - @OPTION => @OPTIONS
                   9843: 
                   9844:        * tests/: 182.html, 182_dir/a1.p, 182_dir/a2.p, 182_dir/a3.p: -
                   9845:          tests for @OPTIONS\nappend
                   9846: 
                   9847:        * tests/: 176.html, results/176.processed: - @OPTION => @OPTIONS
                   9848: 
                   9849:        * src/main/: compile.y, compile.tab.C: - stuff for @OPTIONS\nappend
                   9850: 
                   9851:        * src/main/compile_tools.h: - new methods for @OPTIONS\nappend
                   9852: 
                   9853:        * src/types/pa_vmethod_frame.h: - ALL_VARS_LOCAL_NAME moved fo
                   9854:          compile.y
                   9855: 
                   9856: 2008-06-17  misha
                   9857: 
                   9858:        * src/main/: compile.y, compile.tab.C: - bugfix in 'def'
                   9859:          compilation: ^if(default){true. it's incorrect. must be
                   9860:          exception}
                   9861: 
                   9862: 2008-06-16  misha
                   9863: 
                   9864:        * tests/: 181.ent, 181.html, results/181.processed: - test for
                   9865:          checking external reference loading with 'http://localhost'
                   9866:          prefix while creating xdoc
                   9867: 
                   9868:        * tests/180.html: - use ^inet:ntoa[] and ^inet:aton[] instead of
                   9869:          ^math:long2ip[] and ^math:ip2long[]
                   9870: 
                   9871:        * src/types/: pa_vobject.C, pa_vobject.h: - get_scalar_value method
                   9872:          added which use scalar stateless class method when user object
                   9873:          used in scalar context - use get_scalar_value when user object
                   9874:          requested in scalar context
                   9875: 
                   9876:        * src/main/pa_common.C: - size must be int but not size_t or we
                   9877:          can't compare with 0 sprintf result
                   9878: 
                   9879:        * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
                   9880:          main/execute.C, main/pa_request.C: - go back to one VMethodFrame
                   9881:          with internal switch between local/global vars
                   9882: 
                   9883:        * src/types/pa_vclass.C: - register scalar if method @GET[] was
                   9884:          specified
                   9885: 
                   9886:        * src/types/: pa_vstateless_class.C, pa_vstateless_class.h,
                   9887:          pa_vstateless_object.h: - stateless class and object now has
                   9888:          private scalar field and getter/setter for working with it
                   9889: 
                   9890:        * src/classes/math.C: - methods math:long2ip & math:ip2long were
                   9891:          moved to inet static class
                   9892: 
                   9893:        * src/classes/: classes.vcproj, inet.C, Makefile.am: - inet static
                   9894:          class added (^inet:aton[IP], ^inet:ntoa(number))
                   9895: 
                   9896:        * tests/: 180.html, results/180.processed: - tests for
                   9897:          ^math:long2ip(long) and ^math:ip2long[IP]
                   9898: 
                   9899:        * src/classes/math.C: - ^math:ip2long[IP] added
                   9900: 
                   9901: 2008-06-11  misha
                   9902: 
                   9903:        * src/main/pa_xml_io.C: - use file_read_text again because of we
                   9904:          need cut BOM code and remove DOS newline chars. but don't
                   9905:          transcode it anyway.
                   9906: 
                   9907:        * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
                   9908:          main/pa_http.C: - option for disable transcoding while file_read
                   9909:          and file_read_text added
                   9910: 
                   9911: 2008-06-10  misha
                   9912: 
                   9913:        * tests/: 179.html, 179.p, results/179.processed: - test for many
                   9914:          classes in 1 file
                   9915: 
                   9916:        * src/main/: compile.C, compile_tools.h: - compile return list of
                   9917:          classes now.
                   9918: 
                   9919:        * src/main/: compile.y, compile.tab.C: - compile return list of
                   9920:          classes now. internals.
                   9921: 
                   9922:        * src/main/pa_request.C: - compile return list of classes now. try
                   9923:          call @conf and @auto for each returned class
                   9924: 
                   9925:        * src/include/pa_request.h: - compile return list of classes now
                   9926: 
                   9927:        * src/types/pa_vstateless_class.h: - typedef ArrayClass added (for
                   9928:          return list of classes when compile buf)
                   9929: 
                   9930: 2008-06-07  misha
                   9931: 
                   9932:        * src/main/pa_request.C: - constructing VRequest object with 3rd
                   9933:          param -- form
                   9934: 
                   9935:        * src/types/: pa_vrequest.C, pa_vrequest.h: - constructor acceps
                   9936:          3rd param: form. needed for get post_charset
                   9937: 
                   9938:        * src/types/: pa_vform.C, pa_vform.h: - VForm::get_post_charset()
                   9939:          added
                   9940: 
                   9941:        * src/: include/pa_common.h, main/pa_common.C, main/pa_http.C,
                   9942:          types/pa_vform.C, types/pa_vform.h: - some polish
                   9943: 
                   9944: 2008-06-06  misha
                   9945: 
                   9946:        * src/types/: pa_vform.C, pa_vform.h: - if POST -- try detec
                   9947:          charset and decode chars from it but not from response:charset
                   9948: 
                   9949:        * src/main/pa_http.C: - detect_charset moved out of here
                   9950: 
                   9951:        * src/: include/pa_common.h, main/pa_common.C: - more helpers
                   9952:          methods moved here - unescape_chars accepn one charset now
                   9953: 
                   9954:        * src/main/pa_http.C: - new constants used - don't allow
                   9955:          $.content-type in ^file::load[;http://;$.method[POST]] - add
                   9956:          charset info while ^file::load[;http://;$.method[POST]] - option
                   9957:          $.omit-post-charset(true) added to ^file::load[;http://] for
                   9958:          disabling charset during post
                   9959: 
                   9960:        * src/types/pa_vform.C: - new constants used
                   9961: 
                   9962:        * src/include/pa_common.h: - some constants were added
                   9963: 
                   9964:        * src/: classes/form.C, types/pa_vform.C: - use StrStartFromNC
                   9965:          instead of StrEqNc
                   9966: 
                   9967:        * src/main/pa_common.C: - new method for caseless search
                   9968:          c-substring in c-string - use isxdigit instead of is_hex_digit
                   9969: 
                   9970:        * src/include/pa_common.h: - new method for caseless search
                   9971:          c-substring in c-string
                   9972: 
                   9973: 2008-06-05  misha
                   9974: 
                   9975:        * tests/results/178.processed: - test for testing default getter
                   9976: 
                   9977:        * tests/178.html: - test for testing default getter
                   9978: 
                   9979:        * tests/178_dir/: 178a.p, 178b.p, 178c.p, 178d.p, 178e.p: - classes
                   9980:          for test for testing default getter
                   9981: 
                   9982:        * src/main/execute.C: - default getter soul
                   9983: 
                   9984:        * src/types/: pa_vobject.C, pa_vobject.h: - get default getter if
                   9985:          requested objects' field not found
                   9986: 
                   9987:        * src/types/pa_vclass.C: - register default getter if defined - get
                   9988:          default getter if requested field not found
                   9989: 
                   9990:        * src/types/pa_vstateless_object.h: - method get_default_getter was
                   9991:          added
                   9992: 
                   9993:        * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
                   9994:          pointer to default getter and methods for get/set it were added
                   9995: 
                   9996:        * src/types/: pa_junction.h, pa_vjunction.h: - junction has
                   9997:          auto_name field (for default getter)
                   9998: 
                   9999: 2008-06-04  misha
                   10000: 
                   10001:        * src/main/pa_xml_io.C: - load external xml in binary mode (no
                   10002:          transcoding, no cutting BOM code, no fixing line breaks) and get
                   10003:          it to libxml "as is"
                   10004: 
                   10005: 2008-06-03  misha
                   10006: 
                   10007:        * src/main/pa_common.C: - use store_Char instead of
                   10008:          transcodeCharFromUTF8
                   10009: 
                   10010:        * src/: include/pa_charset.h, main/pa_charset.C: - method
                   10011:          store_Char added, transcodeCharFromUTF8 -- removed
                   10012: 
                   10013: 2008-06-02  misha
                   10014: 
                   10015:        * tests/: results/177.processed, 177.html: - test for checking
                   10016:          .[acm]date after local ^file::load[] was added
                   10017: 
                   10018:        * tests/: results/176.processed, 176.html: - test for checking
                   10019:          @OPTION\locals + @method[vars][locals] added
                   10020: 
                   10021:        * tests/results/auto.p: - CLASS_PATH specified for checking use
                   10022: 
                   10023: 2008-05-30  misha
                   10024: 
                   10025:        * src/main/: compile.y, compile.tab.C: - changes in compiler:
                   10026:          @OPTION\nlocals + @method[vars][;locals;] were added
                   10027: 
                   10028:        * src/main/execute.C: - code of OP_CALL and OP_CALL__WRITE was
                   10029:          moved to separate method op_code - switch from VMethodFrame to
                   10030:          VMethodFrameGlobal + VMethodFrameLocal
                   10031: 
                   10032:        * src/include/pa_request.h: - code of OP_CALL and OP_CALL__WRITE
                   10033:          was moved to separate method op_code
                   10034: 
                   10035:        * src/main/pa_request.C: - use VMethodFrameGlobal instead of
                   10036:          VMethodFrame now
                   10037: 
                   10038:        * src/types/pa_vstateless_class.h: - stateless class have bool flag
                   10039:          all_vars_local as well
                   10040: 
                   10041:        * src/types/: pa_vmethod_frame.h, pa_vmethod_frame_global.h,
                   10042:          pa_vmethod_frame_local.h, Makefile.am: - who children for
                   10043:          VMethodFrame were added: one (global) works as VMethodFrame
                   10044:          before and second (local) write all vars in self vars scope
                   10045: 
                   10046:        * src/types/pa_method.h: - method has bool flag all_vars_local now
                   10047: 
                   10048: 2008-05-29  misha
                   10049: 
                   10050:        * tests/: 129.html, results/129.processed: - more tests for
                   10051:          ^table.hash[]
                   10052: 
                   10053:        * src/classes/hash.C: - ^hash::sql has a new option:
                   10054:          $.type[hash|string|table] as ^table.hash[] one.
                   10055: 
                   10056:        * src/classes/op.C: - ^try has 3rd param now: finally code which
                   10057:          executed anyway after try or catch section
                   10058: 
                   10059: 2008-05-27  misha
                   10060: 
                   10061:        * src/classes/table.C: - bugfix: ^table.hash[key][$.type[table]]
                   10062:          must not fail if $.distinct(1) wasn't specified
                   10063: 
                   10064: 2008-05-26  misha
                   10065: 
                   10066:        * src/classes/op.C: - allow ^throw[my type]
                   10067: 
                   10068: 2008-05-22  misha
                   10069: 
                   10070:        * configure.in, configure: - version number updated to 3.2.4b
                   10071: 
                   10072:        * src/classes/: op.C, string.C: - trim format string before
                   10073:          eval/format
                   10074: 
                   10075:        * tests/: results/175.processed, 175.html: - more tests for
                   10076:          different format strings in .format[]
                   10077: 
                   10078:        * src/types/pa_vform.C: - while decoding get values decode %uXXXX
                   10079:          as well (not only %XX)
                   10080: 
                   10081:        * src/main/pa_common.C: - unescape_chars can decode %uXXXX if
                   10082:          charset specified - checks for format before print number
                   10083:          (^d.format[>...<], ^eval($d)[>...<]) - formating with spaces
                   10084:          (instead of tabs) removed
                   10085: 
                   10086:        * src/include/pa_common.h: - unescape_chars can decode %uXXXX if
                   10087:          charset specified
                   10088: 
                   10089:        * src/: include/pa_charset.h, main/pa_charset.C: - method for get
                   10090:          char in requested charset from utf code was added
                   10091: 
                   10092: 2008-05-19  misha
                   10093: 
                   10094:        * tests/: 174.html, results/174.processed: - test for
                   10095:          ^hashfile.cleanup[] added
                   10096: 
                   10097:        * src/classes/hashfile.C: - optimization: don't create any key or
                   10098:          value variable if it's name weren't specified
                   10099:          (^hf.foreach[;v]{...})
                   10100: 
                   10101: 2008-05-16  misha
                   10102: 
                   10103:        * src/classes/hash.C: - optimization: don't create any key variable
                   10104:          if variable name wasn't specified (^h.foreach[;v]{...})
                   10105: 
                   10106: 2008-05-15  misha
                   10107: 
                   10108:        * src/classes/op.C: - small changes
                   10109: 
                   10110:        * src/classes/hashfile.C: - code reformating (as hash.foreach)
                   10111: 
                   10112:        * src/classes/hash.C: - calculate var_context once before foreach
                   10113: 
                   10114: 2008-05-14  misha
                   10115: 
                   10116:        * src/classes/hashfile.C: - incorrect vars context calculation for
                   10117:          ^hashfile.foreach[;]{} fixed
                   10118: 
                   10119:        * src/classes/: hash.C, table.C: - little optimisation
                   10120: 
                   10121:        * src/classes/file.C: - bugfix: double absolute path while loading
                   10122:          file
                   10123: 
                   10124:        * tests/: 174.html, results/174.processed: - tests for hashfile
                   10125:          were added
                   10126: 
                   10127:        * buildall-with-xml: - moving to libxslt 1.1.24
                   10128: 
                   10129: 2008-04-30  misha
                   10130: 
                   10131:        * src/classes/file.C: - stat file while loading (local only) so
                   10132:          .adate, .mdate and .cdate available without additional ::stat
                   10133: 
                   10134: 2008-04-28  misha
                   10135: 
                   10136:        * src/classes/file.C: - $.name and $.content-type available for
                   10137:          stated file
                   10138: 
                   10139: 2008-04-14  misha
                   10140: 
                   10141:        * src/targets/cgi/parser3.C: - new year in copyright %-)
                   10142: 
                   10143:        * src/include/pa_version.h: - new version number in head
                   10144: 
                   10145: 2008-04-10  misha
                   10146: 
                   10147:        * tests/: 080.html, results/080.processed: - cut '0' from
                   10148:          exponential part because of on diff OS it differ (20 or 020 for
                   10149:          ex)
                   10150: 
                   10151:        * tests/: 119.html, results/119.processed: - check for encoding
                   10152:          while creating xdoc
                   10153: 
                   10154: 2008-04-09  misha
                   10155: 
                   10156:        * buildall-with-xml: - move to libxml 2.6.32 and libxslt 1.1.23
                   10157: 
                   10158:        * src/main/pa_common.C: - comment added
                   10159: 
                   10160:        * src/classes/date.C: - little refactoring
                   10161: 
                   10162: 2008-04-07  misha
                   10163: 
                   10164:        * src/classes/table.C: - use NO_STRINGSTREAM for switch to old
                   10165:          style of ^table.save[]: prepare one big string and sabe it at
                   10166:          once. it's safe on freebsd 4.x but use much more memory.
                   10167: 
                   10168:        * buildall-with-xml, buildall-without-xml: - option
                   10169:          --disable-stringstream added (under comment. use it on freebsd
                   10170:          4.x)
                   10171: 
                   10172: 2008-02-22  misha
                   10173: 
                   10174:        * src/main/pa_http.C: - exception if $.body[] and $.forms[]
                   10175:          specified together in file::load[;http] - get back transcoding
                   10176:          $.body[] in file::load[;http]
                   10177: 
                   10178: 2008-02-21  misha
                   10179: 
                   10180:        * src/classes/date.C: - ^date.gmt-string[] was added
                   10181: 
                   10182:        * src/types/pa_value.C: - method for output date in RFC 822 format
                   10183:          moved to pa_common.h
                   10184: 
                   10185:        * src/include/pa_common.h: - method for output date in RFC 822
                   10186:          format moved here from pa_value.C
                   10187: 
                   10188:        * src/types/pa_vmail.C: - fixed core in sending mail with
                   10189:          attachment in simple mode ($.file[file here]) introduced in 3.2.2
                   10190: 
                   10191: 2008-02-20  misha
                   10192: 
                   10193:        * src/main/pa_http.C: - transcode $.headers before escaping into
                   10194:          specified charset while ^file::load[...;http://...] (L_URI
                   10195:          instead of L_HTTP_HEADER) - $.cookies param available in
                   10196:          ^file::load[;http://...] now (but we don't parse set-cookies from
                   10197:          response yet) (cookies not transcoded as common $cookies)
                   10198: 
                   10199: 2008-02-19  misha
                   10200: 
                   10201:        * src/main/pa_request.C: - rollback: we mustn't force taint
                   10202:          $response:field values because in this case
                   10203:          $response:locateion[http://...] don't works.
                   10204: 
                   10205: 2008-02-15  misha
                   10206: 
                   10207:        * src/classes/op.C: - little refactoring
                   10208: 
                   10209:        * src/main/pa_http.C: - taint names of $.headers for load[;http
                   10210: 
                   10211:        * src/main/pa_request.C: - force taint values of $response:field
                   10212: 
                   10213: 2008-02-14  misha
                   10214: 
                   10215:        * src/main/pa_request.C: - $response:field transcoded to
                   10216:          $response:charset before escaping now
                   10217: 
                   10218:        * src/main/pa_http.C: - some outdated comments removed
                   10219: 
                   10220:        * src/classes/date.C: - lastdat -> last-day
                   10221: 
                   10222:        * src/classes/date.C: - ^date:lastday(year;month) and
                   10223:          ^date.lastday[] were added - little code refactoring - comments
                   10224:          changes
                   10225: 
                   10226:        * tests/: 159.html, results/159.processed: - test for number of
                   10227:          days in February
                   10228: 
                   10229:        * src/types/pa_value.C: - fixes in code formatting
                   10230: 
                   10231:        * src/classes/: file.C, op.C, table.C: - fixes in code formatting
                   10232:          and comments
                   10233: 
                   10234: 2008-02-13  misha
                   10235: 
                   10236:        * src/main/pa_common.C: - bugfix for february at leap year
                   10237: 
                   10238: 2008-01-28  misha
                   10239: 
                   10240:        * tests/: 160.html, results/160.processed: - more test for cache
                   10241:          added
                   10242: 
                   10243:        * src/classes/op.C: - bugfix: cache body executed twice if contains
                   10244:          unhandled exception
                   10245: 
                   10246: 2008-01-25  misha
                   10247: 
                   10248:        * src/lib/sdbm/sdbm.c: - use arp_malloc instead of malloc (fixed
                   10249:          bug when hashfile became inavailable after memory:compact)
                   10250: 
                   10251:        * src/lib/sdbm/apr_strings.C: - +arp_malloc
                   10252: 
                   10253: 2008-01-22  misha
                   10254: 
                   10255:        * src/classes/table.C: - little refactiring and exception texts
                   10256:          changes in method ^table.hash[]
                   10257: 
                   10258:        * src/types/pa_vcookie.C: - link to cookie specification changed
                   10259: 
                   10260: 2008-01-21  misha
                   10261: 
                   10262:        * tests/: 171.html, cat.sh, results/171.processed: - more tests for
                   10263:          file::exec/cgi
                   10264: 
                   10265:        * src/classes/file.C: - bugfix: core while processing headers if
                   10266:          executed cgi script don't return content
                   10267: 
                   10268: 2008-01-18  misha
                   10269: 
                   10270:        * buildall-with-xml: - move to libxml2 version 2.6.31
                   10271: 
                   10272:        * src/include/pa_version.h, configure.in: - version number updated
                   10273:          to '3.2.3b'
                   10274: 
                   10275: 2007-12-28  misha
                   10276: 
                   10277:        * src/: classes/hash.C, include/pa_hash.h: - hash.contain =>
                   10278:          hash.contains
                   10279: 
                   10280: 2007-12-27  misha
                   10281: 
                   10282:        * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
                   10283:          src/lib/cord/cord.vcproj, src/lib/gd/gd.vcproj,
                   10284:          src/lib/ltdl/ltdl.vcproj, src/lib/md5/md5.vcproj,
                   10285:          src/lib/pcre/pcre.vcproj, src/lib/pcre/pcre_dftables.vcproj,
                   10286:          src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
                   10287:          src/lib/smtp/smtp.vcproj, src/main/main.vcproj,
                   10288:          src/targets/cgi/parser3.vcproj,
                   10289:          src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj: -
                   10290:          back to VS2003 because of Apache 1.3 module can't work if it was
                   10291:          built in VS 2005.  with cgi all file so VS2003 project files can
                   10292:          be easy converted to the new format.
                   10293: 
                   10294: 2007-12-04  misha
                   10295: 
                   10296:        * src/types/pa_vcode_frame.h: - changes in comment
                   10297: 
                   10298: 2007-11-29  misha
                   10299: 
                   10300:        * src/: types/pa_vcode_frame.h, main/execute.C: - code frame don't
                   10301:          intercept strings any longer
                   10302: 
                   10303:        * tests/: 173.html, results/173.processed: - tests for
                   10304:          $d[^date::now[]] $j{$d} $r[$j] -- must create date object in $r
                   10305:          but not in main code frame
                   10306: 
                   10307:        * tests/: 172.html, results/172.processed: - more tests for pass
                   10308:          objects from code frames
                   10309: 
                   10310: 2007-11-27  misha
                   10311: 
                   10312:        * tests/: 152.html, results/152.processed: - tests for converting
                   10313:          strings 'true'/'false' to bool were added
                   10314: 
                   10315:        * tests/152.html: - added checks for converting strings
                   10316:          'true'/'false' to bool
                   10317: 
                   10318:        * src/classes/string.C: - ^srting.bool[] now can convert to bool
                   10319:          not only strings with numbers but with values 'true'/'false' as
                   10320:          well
                   10321: 
                   10322:        * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: - buffer size
                   10323:          for parser3.log increased
                   10324: 
                   10325:        * src/main/pa_common.C: - remove_crlf optimize whitespaces now
                   10326: 
                   10327:        * src/include/pa_common.h: - remove_crlf return cstring size now
                   10328: 
                   10329:        * src/include/pa_types.h: - constant with buffer size for
                   10330:          parser3.log added
                   10331: 
                   10332: 2007-11-16  misha
                   10333: 
                   10334:        * tests/cat.sh: - script for tests for file::exec/cgi
                   10335: 
                   10336:        * tests/171.html: - tests for file::exec/cgi
                   10337: 
                   10338:        * tests/results/171.processed: - tests results for file::exec/cgi
                   10339: 
                   10340: 2007-11-15  misha
                   10341: 
                   10342:        * src/main/pa_exec.C: - fixed incorrect exec code for unix
                   10343: 
                   10344:        * src/classes/file.C: - .body must be set before analyzing cgi
                   10345:          headers
                   10346: 
                   10347:        * src/classes/file.C: - bugfix: we must transcode output fix EOLs
                   10348:          only if exec/cgi return anything.
                   10349: 
                   10350: 2007-11-14  misha
                   10351: 
                   10352:        * operators.txt: - info about new text|binary option for
                   10353:          file::exec/cgi was added
                   10354: 
                   10355:        * src/: include/pa_exec.h, main/pa_exec.C, classes/file.C: -
                   10356:          ^file:exec[[text|binary];script;...]
                   10357: 
                   10358:        * src/: include/pa_exception.h, classes/file.C, classes/image.C,
                   10359:          classes/string.C, classes/table.C: - more text strings moved to
                   10360:          the one place
                   10361: 
                   10362: 2007-11-09  misha
                   10363: 
                   10364:        * src/types/pa_vrequest.C: - $request:argv must be taint
                   10365: 
                   10366:        * ChangeLog: - $request:argv [patch from Sumo]
                   10367: 
                   10368:        * operators.txt: - $request:argv
                   10369: 
                   10370:        * src/: include/pa_request_info.h, types/pa_vrequest.C,
                   10371:          types/pa_vrequest.h, targets/cgi/parser3.C: - $request:argv
                   10372: 
                   10373: 2007-10-25  misha
                   10374: 
                   10375:        * buildall-with-xml, buildall-without-xml: - options preparations
                   10376:          for ./configure rewrited
                   10377: 
                   10378:        * src/main/: compile.tab.C, compile.y: - bug if parser.compile
                   10379:          error occure in unhandled_exception finally fixed
                   10380: 
                   10381: 2007-10-23  misha
                   10382: 
                   10383:        * tests/: 170.html, results/170.processed: - test for
                   10384:          @method[][result]
                   10385: 
                   10386:        * operators.txt: - added info about node.prefix and
                   10387:          node.namespaceURI
                   10388: 
                   10389:        * src/classes/xnode.C: - xmlHasProp used instead of xmlGetProp
                   10390: 
                   10391:        * src/types/pa_vxnode.C: - DOM2 fields namespaceURI and prefix were
                   10392:          added for node and attribute
                   10393: 
                   10394: 2007-10-22  misha
                   10395: 
                   10396:        * src/types/pa_vmail.C: - content-transfer-encoding: 8bit added
                   10397: 
                   10398:        * src/main/pa_request.C: - added const content-transfer-encoding
                   10399: 
                   10400:        * src/include/pa_request.h: - added const content-transfer-encoding
                   10401:          - ups. constants must be in lowercase (for search)
                   10402: 
                   10403:        * src/types/pa_vmail.C: - more constants used -
                   10404:          content-transfer-encoding: 8bit added
                   10405: 
                   10406:        * src/main/pa_uue.C: - content-transfer-encoding moved out of here
                   10407: 
                   10408:        * src/include/pa_request.h: - more constants
                   10409: 
                   10410:        * src/types/pa_vmail.C: - constant renamed - $.content-id don't
                   10411:          ommit anymore if $.content-disposition was specified - little
                   10412:          refactoring
                   10413: 
                   10414:        * src/: include/pa_request.h, main/pa_request.C: - constant renamed
                   10415: 
                   10416: 2007-10-17  misha
                   10417: 
                   10418:        * operators.txt: - info about
                   10419:          table::create[nameless]{data}[>options<] was added
                   10420: 
                   10421:        * src/main/: compile.tab.C, compile.y: - if error occure while
                   10422:          compile method don't put this method in methods table anymore.
                   10423:          in other case the parser coredumped if @unhandled_exception
                   10424:          method can't be compiled because of parser.compile error.
                   10425: 
                   10426:        * src/main/execute.C: - little code reformating
                   10427: 
                   10428:        * src/main/pa_request.C: - little code reformating - comment
                   10429:          changed
                   10430: 
                   10431: 2007-10-16  misha
                   10432: 
                   10433:        * tests/: 035.html, results/035.processed: - tests
                   10434:          table::create[]{}[options] added
                   10435: 
                   10436:        * src/classes/table.C: - table::create[]{} now accept 3rd param:
                   10437:          options (only $.seperator[] yet)
                   10438: 
                   10439: 2007-10-10  misha
                   10440: 
                   10441:        * src/classes/table.C: - some contstants moved to pa_common.h -
                   10442:          some code changes
                   10443: 
                   10444: 2007-10-02  misha
                   10445: 
                   10446:        * src/main/pa_uue.C: - memory usage during uuencode reduced more
                   10447:          then three time as much. but base64 encoding method still use
                   10448:          less memory anyway.
                   10449: 
                   10450: 2007-09-17  misha
                   10451: 
                   10452:        * operators.txt: - added info about $cookie:fields
                   10453: 
                   10454:        * src/types/pa_vcookie.C: - $cookie:fields available now
                   10455: 
                   10456:        * src/classes/hash.C: - some stuff for use with .for_each moved to
                   10457:          common
                   10458: 
                   10459:        * src/include/pa_common.h: - some stuff for use with .for_each
                   10460:          moved here
                   10461: 
                   10462:        * src/types/: pa_venv.C, pa_venv.h: - some strings moved to #define
                   10463: 
                   10464: 2007-09-14  misha
                   10465: 
                   10466:        * buildall-with-xml: - new xml libs again =)
                   10467: 
                   10468: 2007-08-28  misha
                   10469: 
                   10470:        * operators.txt: - texts about ^table.columns[[column name]]  and
                   10471:          ^string.split[...][v][column name] were added
                   10472: 
                   10473:        * tests/: 168.html, 169.html, results/168.processed,
                   10474:          results/169.processed: - tests for ^table.columns[[column name]]
                   10475:          and ^string.split[...][v][column name] were added
                   10476: 
                   10477:        * src/classes/table.C: - new option ^table.columns[[column name]]
                   10478:          was added
                   10479: 
                   10480:        * src/classes/string.C: - new option ^string.split[...;v;[column
                   10481:          name]]
                   10482: 
                   10483:        * src/include/pa_exception.h: - error text message for
                   10484:          ^hash._keys[], ^table.columns[] and ^string.split[]
                   10485: 
                   10486: 2007-08-27  misha
                   10487: 
                   10488:        * src/main/untaint.C: - try to fix coredump on unix if print to
                   10489:          body ^taint[sql][something] outside of connect
                   10490: 
                   10491:        * tests/: 167.html, results/167.processed: - test for ^taint[sql]
                   10492:          outside of connect
                   10493: 
                   10494:        * buildall-with-xml, buildall-without-xml: - strip parser3 was
                   10495:          added (commented by default)
                   10496: 
                   10497: 2007-08-20  misha
                   10498: 
                   10499:        * operators.txt: - comment about new method ^node.hasAttributes[]
                   10500:          was added
                   10501: 
                   10502:        * src/classes/: file.C, math.C, op.C, string.C, xdoc.C: - more
                   10503:          duplicated exception text strings were removed
                   10504: 
                   10505:        * src/include/pa_exception.h: - more exception text strings moved
                   10506:          here
                   10507: 
                   10508:        * src/classes/table.C: - some duplicate exceptions' text strings
                   10509:          removed
                   10510: 
                   10511:        * src/classes/: file.C, hashfile.C, image.C, op.C, string.C,
                   10512:          xdoc.C, xnode.C: - some duplicate exceptions' text strings
                   10513:          removed
                   10514: 
                   10515:        * src/include/pa_exception.h: - some exception text strings movet
                   10516:          to pa_exception
                   10517: 
                   10518:        * tests/: 149.html, results/149.processed: - test for
                   10519:          ^xnode.hasAttributes[] was added - some code changes
                   10520: 
                   10521:        * src/classes/xnode.C: - DOM2 method ^xnode.hasAttributes[] was
                   10522:          added
                   10523: 
                   10524: 2007-08-17  misha
                   10525: 
                   10526:        * tests/: results/006.processed, results/059.processed, 006.html,
                   10527:          059.html: - more tests for match
                   10528: 
                   10529:        * tests/: 129.html, results/129.processed: - tests for
                   10530:          ^table.hash[...][$.type[string|hash|table]] added
                   10531: 
                   10532:        * src/targets/cgi/parser3.C: - little syntax changes
                   10533: 
                   10534:        * src/: classes/math.C, targets/isapi/parser3isapi.C: - little
                   10535:          syntax changes
                   10536: 
                   10537:        * src/targets/cgi/parser3.C, operators.txt: - annoying 'SIGPIPE'
                   10538:          messages in parser3.log switched off by default. If someone
                   10539:          really still need it: use $SIGPIPE(1)
                   10540: 
                   10541: 2007-08-08  misha
                   10542: 
                   10543:        * buildall-with-xml, buildall-without-xml: - remove libs source
                   10544:          files by default since now
                   10545: 
                   10546: 2007-08-07  misha
                   10547: 
                   10548:        * buildall-without-xml: - some option syntax changes
                   10549: 
                   10550:        * buildall-with-xml: - compile libxml2 without http support - some
                   10551:          option syntax changes
                   10552: 
                   10553:        * src/main/pa_xml_io.C: - will use parser file loader for xml needs
                   10554: 
                   10555: 2007-08-06  misha
                   10556: 
                   10557:        * buildall-with-xml: - moved to libxml2-2.6.29 and libxslt-1.1.21
                   10558: 
                   10559:        * tests/: 160.html, results/160.processed: - cache test was
                   10560:          rewrited
                   10561: 
                   10562: 2007-07-06  misha
                   10563: 
                   10564:        * tests/: 153.html, results/153.processed: - added test for
                   10565:          ^math:sha1[string]
                   10566: 
                   10567:        * src/types/pa_vform.C: - bugfix: uploaded file name wasn't
                   10568:          transcoded
                   10569: 
                   10570:        * src/classes/math.C: - ^math:long2ip(long) and ^math:sha1[string]
                   10571:          were added
                   10572: 
                   10573: 2007-06-28  misha
                   10574: 
                   10575:        * etc/parser3.charsets/windows-1251.cfg: - removed duplicated and
                   10576:          some incorrect chars
                   10577: 
                   10578: 2007-06-19  misha
                   10579: 
                   10580:        * src/include/pa_hash.h: - methods generic_hash_code & hash_code
                   10581:          were moved on top because of gcc 4 had a problems during
                   10582:          building.
                   10583: 
                   10584: 2007-06-18  misha
                   10585: 
                   10586:        * tests/results/019.processed: - new image commited
                   10587: 
                   10588: 2007-06-09  misha
                   10589: 
                   10590:        * src/classes/: op.C, table.C: - in while and table.select method
                   10591:          as_expression used now
                   10592: 
                   10593:        * src/types/pa_vmethod_frame.h: - method as_expression was added
                   10594: 
                   10595: 2007-06-08  misha
                   10596: 
                   10597:        * tests/: 166.html, results/166.processed: - test for
                   10598:          ^match[...][n]
                   10599: 
                   10600:        * tests/: 165.html, results/165.processed: - tests for loops
                   10601: 
                   10602:        * src/lib/cord/include/private/cord_pos.h: - back to origin value
                   10603:          because of no speed/memory optimisation but some proglems with
                   10604:          long cycles occure
                   10605: 
                   10606: 2007-06-06  misha
                   10607: 
                   10608:        * src/classes/: op.C, table.C: - ^while(true){}, ^while(1){},
                   10609:          ^table.select(true) and ^table.select(1) didn't works because of
                   10610:          awaiting junction-param only. fixed.
                   10611: 
                   10612: 2007-05-24  misha
                   10613: 
                   10614:        * src/: include/pa_os.h, main/pa_os.C: - 20 attempt to get lock
                   10615:          with 0.5 secs interval
                   10616: 
                   10617:        * src/classes/op.C: - cache was rewrited. I hope it works with
                   10618:          locking system now on unix
                   10619: 
                   10620:        * src/main/pa_os.C: - locks engines were rewrited: now we don't use
                   10621:          system locks which wait till other threads release it but try get
                   10622:          lock, if fail wait 1 sec and make 10 attempts.
                   10623: 
                   10624:        * src/include/pa_os.h: - consts for blocking locks + some comments
                   10625:          were added
                   10626: 
                   10627:        * src/lib/sdbm/apr_file_io.C: - wait till lock released while
                   10628:          opening files
                   10629: 
                   10630:        * src/classes/table.C: - changes in includes. if unclude <sstream>
                   10631:          after our classes on unix it can't be build
                   10632: 
                   10633:        * src/types/pa_vhashfile.C: - not needed code removed
                   10634: 
                   10635: 2007-05-23  misha
                   10636: 
                   10637:        * src/: classes/file.C, classes/op.C, main/pa_common.C,
                   10638:          include/pa_common.h: - cosmetic changes
                   10639: 
                   10640: 2007-05-18  misha
                   10641: 
                   10642:        * src/lib/cord/include/private/cord_pos.h: - rebalance tree not so
                   10643:          often. it's give some speed increasing
                   10644: 
                   10645:        * tests/results/160.processed: - returned time corrected
                   10646: 
                   10647:        * tests/160.html: - time increased because on unix 1 mean nothing
                   10648:          :(
                   10649: 
                   10650:        * operators.txt: - added info about ^hash.contain[key]
                   10651: 
                   10652:        * src/classes/hash.C: - added ^hash.contain[key]
                   10653: 
                   10654:        * src/include/pa_hash.h: - added method for checking key exists in
                   10655:          hash
                   10656: 
                   10657: 2007-05-07  misha
                   10658: 
                   10659:        * src/include/pa_string.h: - was compilation error during build on
                   10660:          freebsd4
                   10661: 
                   10662: 2007-05-03  misha
                   10663: 
                   10664:        * src/classes/table.C: - option $.type[hash|string|table] was added
                   10665:          for ^table.hash[]
                   10666: 
                   10667:        * src/classes/file.C: - comment removed
                   10668: 
                   10669: 2007-04-26  misha
                   10670: 
                   10671:        * src/types/: pa_vhashfile.C, pa_vhashfile.h: - while ::open the
                   10672:          real files doesn't opened in place anymore
                   10673: 
                   10674: 2007-04-24  misha
                   10675: 
                   10676:        * src/classes/math.C: - I thought one more time and remove lg(N) :)
                   10677: 
                   10678:        * src/include/pa_exception.h: "static" removed
                   10679: 
                   10680: 2007-04-23  misha
                   10681: 
                   10682:        * src/classes/math.C: ^math:lg(N) => ^math:log10(N)
                   10683: 
                   10684:        * src/classes/math.C: added: - ^math:ln(N) (the same as
                   10685:          ^math:log(N)) - ^math:lg(N)
                   10686: 
                   10687:        * tests/: 097.html, results/097.processed: - charsets converstion
                   10688:          during ^file::load[text;http://...] added
                   10689: 
                   10690:        * tests/: 164.html, results/164.processed: - check for set expires
                   10691:          as a date
                   10692: 
                   10693:        * tests/: 164.html, results/164.processed: - test for hashfile
                   10694: 
                   10695:        * src/classes/hashfile.C: - little comment changes
                   10696: 
                   10697:        * src/types/pa_vhashfile.C: - don't open hashfile files until 1st
                   10698:          access
                   10699: 
                   10700:        * src/: classes/date.C, classes/double.C, classes/file.C,
                   10701:          classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
                   10702:          classes/mail.C, classes/math.C, classes/op.C, classes/string.C,
                   10703:          classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
                   10704:          classes/xnode.h, include/pa_request.h, main/execute.C,
                   10705:          main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
                   10706:          main/pa_dictionary.C, main/pa_exec.C, main/pa_http.C,
                   10707:          main/pa_request.C, main/pa_sql_driver_manager.C, main/pa_table.C,
                   10708:          types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
                   10709:          types/pa_vconsole.h, types/pa_vfile.h, types/pa_vhash.h,
                   10710:          types/pa_vimage.h, types/pa_vmail.C, types/pa_vmethod_frame.h,
                   10711:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   10712:          types/pa_vtable.C, types/pa_vxdoc.h, types/pa_wcontext.C: -
                   10713:          "parser.runtime" strings were removed
                   10714: 
                   10715:        * src/classes/hashfile.C: - with .clear[] called files_delete()
                   10716:          now.
                   10717: 
                   10718:        * src/types/: pa_vhashfile.C, pa_vhashfile.h: - .clear() removed.
                   10719: 
                   10720:        * src/include/pa_exception.h: - string constant with
                   10721:          "parser.runtime" text was added
                   10722: 
                   10723: 2007-04-20  misha
                   10724: 
                   10725:        * operators.txt: - some comments changing
                   10726: 
                   10727:        * operators.txt: - added info about .^hashfile.release[],
                   10728:          ^hashfile.clenaup[] and new ^string.match[][>N-option<]
                   10729: 
                   10730:        * configure: =cheching for unsetenv
                   10731: 
                   10732:        * src/classes/hashfile.C: - ^hashfile.cleanup[],
                   10733:          ^hashfile.release[] were added
                   10734: 
                   10735:        * src/: main/pa_string.C, include/pa_string.h, classes/string.C: -
                   10736:          ^string.match[][] understand new option now: return number of
                   10737:          matches but not table wit results
                   10738: 
                   10739:        * src/types/: pa_vhashfile.C, pa_vhashfile.h: - hashfile can auto
                   10740:          reopen now
                   10741: 
                   10742:        * src/classes/op.C: - bug. must be false
                   10743: 
                   10744:        * configure.in: - checking for unsetenv was added
                   10745: 
                   10746:        * src/types/pa_vform.C: - some comments
                   10747: 
                   10748: 2007-04-18  misha
                   10749: 
                   10750:        * buildall-with-xml: moving to libxml2-2.6.28
                   10751: 
                   10752:        * buildall-with-xml, buildall-without-xml: added commented lines
                   10753:          with --disable-safe-mode option
                   10754: 
                   10755:        * operators.txt: - info about $form:files
                   10756: 
                   10757: 2007-04-17  misha
                   10758: 
                   10759:        * src/types/: pa_vform.C, pa_vform.h: - some code was modified -
                   10760:          $form:files was added
                   10761: 
                   10762:        * tests/: 163.html, results/163.processed: removing auto format
                   10763: 
                   10764:        * src/types/pa_vdate.h: - start adding unsetenv("TZ");
                   10765: 
                   10766: 2007-04-16  misha
                   10767: 
                   10768:        * tests/: 163.html, results/163.processed: - test for .int[],
                   10769:          floor, round, ceiling and .format[]
                   10770: 
                   10771:        * src/classes/file.C: - little optimization for getting args in
                   10772:          exec/cgi
                   10773: 
                   10774: 2007-04-13  misha
                   10775: 
                   10776:        * src/classes/file.C: - arguments for file::exec/cgi can be
                   10777:          specified now as s table with one column
                   10778: 
                   10779: 2007-03-27  misha
                   10780: 
                   10781:        * tests/: 162.html, results/162.processed: - test for
                   10782:          ^table.select(^condition[$t])
                   10783: 
                   10784:        * tests/results/auto.p: - load windows-1251 charset for some tests
                   10785: 
                   10786:        * tests/run_parser.sh: PARSER_CONFIG -> CGI_PARSER_CONFIG
                   10787: 
                   10788:        * tests/: results/161.processed, 161.html, 161_utf8.txt,
                   10789:          161_windows1251.txt: - added test for
                   10790:          ^file::load[text;/local/file.txt;$.charset[...]]
                   10791: 
                   10792:        * tests/: results/013.processed, 013.html: - added test for
                   10793:          checking $._default value while hash modifications
                   10794: 
                   10795:        * tests/: 160.html, results/160.processed: - add test for
                   10796:          ^cache[key](secs){code}, ^cache[] and ^cache(0)
                   10797: 
                   10798: 2007-03-22  misha
                   10799: 
                   10800:        * src/include/pa_common.h: - "charset" string defined for
                   10801:          ^file::load[text;/local.txt] and ^table::load[/table.txt]
                   10802: 
                   10803:        * src/main/: pa_common.C, pa_http.C: - $.charset option for
                   10804:          ^file::load[text;/local.txt] and ^table::load[/table.txt] was
                   10805:          added - not needed transcodes were removed from
                   10806:          ^file::load[...;http://...]
                   10807: 
                   10808:        * src/types/pa_vdate.h: - date.week was fixed - date.weekyear was
                   10809:          added
                   10810: 
                   10811:        * src/classes/date.C: - date.week was fixed
                   10812: 
                   10813:        * operators.txt: - added info about date.weekyear
                   10814: 
                   10815:        * tests/: 159.html, results/159.processed: - tests for date.week
                   10816:          and date.weekyear added
                   10817: 
                   10818: 2007-03-15  misha
                   10819: 
                   10820:        * src/classes/table.C: - enclose column numbers for nameless tables
                   10821:          as well
                   10822: 
                   10823: 2007-03-14  misha
                   10824: 
                   10825:        * src/targets/cgi/parser3.C: - bugxif. failed when request cgi
                   10826: 
                   10827:        * src/classes/table.C: - table.save optimization: now required much
                   10828:          less memory
                   10829: 
                   10830: 2007-03-13  misha
                   10831: 
                   10832:        * tests/results/: 158.processed, 158.processes: - tests for
                   10833:          table.save/table.load
                   10834: 
                   10835:        * tests/: 158.html, results/158.processes: - tests for
                   10836:          table.save/table.load
                   10837: 
                   10838:        * buildall-with-xml: libxml2: --without-ftp --without-docbook
                   10839: 
                   10840:        * buildall-with-xml: - pattern needed now for building
                   10841: 
                   10842:        * tests/results/097.processed: - added test results for xdoc::load
                   10843:          & xdoc::load[http://...]
                   10844: 
                   10845:        * tests/097.html: - added test for xdoc::load
                   10846: 
                   10847: 2007-03-12  misha
                   10848: 
                   10849:        * tests/: 107.html, results/107.processed: - added test for xpath
                   10850:          '//man'
                   10851: 
                   10852: 2007-03-01  misha
                   10853: 
                   10854:        * tests/: 097.html, results/097.processed: - added test for
                   10855:          creating xdoc from file
                   10856: 
                   10857:        * tests/: results/157.processed, 157.html: - added test for
                   10858:          file:move
                   10859: 
                   10860: 2007-02-28  misha
                   10861: 
                   10862:        * src/classes/xdoc.C: - another attempt
                   10863: 
                   10864:        * src/classes/xdoc.C: - roll back last changes for a while
                   10865: 
                   10866:        * src/classes/xdoc.C, operators.txt: - ^xdoc::create[$file] added.
                   10867: 
                   10868:        * src/classes/file.C: - under lock we create non-exist dir anyway
                   10869: 
                   10870:        * tests/results/099.processed: - ever send content-disposition to
                   10871:          client with file
                   10872: 
                   10873:        * tests/157.html: + test for file:copy
                   10874: 
                   10875: 2007-02-26  misha
                   10876: 
                   10877:        * src/classes/file.C: - some similar strings moved to #define
                   10878:          instead of to be copy/pasted many times
                   10879: 
                   10880:        * src/types/pa_vfile.h: - class name string ("file") moved to
                   10881:          #define
                   10882: 
                   10883: 2007-02-20  misha
                   10884: 
                   10885:        * configure.in: - added some strings for sqlite detection
                   10886: 
                   10887: 2007-02-19  misha
                   10888: 
                   10889:        * operators.txt: - some comments changes
                   10890: 
                   10891:        * buildall-with-xml, buildall-without-xml: - some modifications
                   10892: 
                   10893: 2007-02-17  misha
                   10894: 
                   10895:        * buildall-with-xml, buildall-without-xml: - moving to gc6.8
                   10896: 
                   10897:        * src/main/pa_request.C: - damn, i forgot to commit it while I
                   10898:          change console behaviour
                   10899: 
                   10900: 2007-02-12  misha
                   10901: 
                   10902:        * src/targets/cgi/parser3.C: - don't print headers if
                   10903:          $console:line[data] was used during cgi execution.
                   10904: 
                   10905:        * src/types/pa_vconsole.h: - console class have bool flag now which
                   10906:          marked as 'true' if class was used.
                   10907: 
                   10908:        * tests/: 152.html, results/152.processed: - more types was added
                   10909:          to test 152
                   10910: 
                   10911:        * src/types/: pa_vimage.C, pa_vimage.h: - fixed bug added while
                   10912:          adding 'bool' (^if($image){} caused exception)
                   10913: 
                   10914: 2007-02-09  misha
                   10915: 
                   10916:        * tests/: 152.html, results/152.processed: - test alightly updated
                   10917: 
                   10918:        * tests/: 152.html, results/152.processed: - test rewrited
                   10919: 
                   10920:        * src/types/: pa_vxdoc.C, pa_vxdoc.h, pa_vxnode.C, pa_vxnode.h: -
                   10921:          bugfix. I broke xdoc & xnode in expression
                   10922: 
                   10923: 2007-02-08  misha
                   10924: 
                   10925:        * tests/: 152.html, results/152.processed: - add test for checking
                   10926:          'def' for void, string, bool, int & double
                   10927: 
                   10928: 2007-02-07  misha
                   10929: 
                   10930:        * operators.txt: - ^file:base64[filespec]  was added
                   10931: 
                   10932:        * tests/results/153.processed: - result test for
                   10933:          ^file:base64[filespec]  was updated
                   10934: 
                   10935:        * tests/153.html: - test for ^file:base64[filespec]  was added
                   10936: 
                   10937:        * src/types/pa_vconsole.h: - little optimization
                   10938: 
                   10939:        * src/classes/file.C: - ^file:base64[filespec]
                   10940: 
                   10941:        * src/main/pa_common.C: - definitions for ^file:base64[filespec]
                   10942: 
                   10943:        * src/include/pa_common.h: - declarations for
                   10944:          ^file:base64[filespec]
                   10945: 
                   10946:        * src/types/pa_vcookie.C: - little optimization
                   10947: 
                   10948: 2007-02-06  misha
                   10949: 
                   10950:        * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: - some chars
                   10951:          were temporary commented
                   10952: 
                   10953:        * src/types/pa_vbool.h: - bugfix
                   10954: 
                   10955:        * tests/156.html: - added test for bool cookie
                   10956: 
                   10957:        * src/types/pa_vcookie.h: - not needed string "cookie" removed
                   10958: 
                   10959:        * tests/: 155.html, results/155.processed: - added test for check
                   10960:          $.encloser[] option for table save/load
                   10961: 
                   10962:        * tests/: 153.html, 154.html, todo.txt: - two more tests added
                   10963: 
                   10964: 2007-02-05  misha
                   10965: 
                   10966:        * tests/results/152.processed: - newline at the end was missed
                   10967: 
                   10968:        * tests/results/141.processed: - math:md5 must be lowercased
                   10969: 
                   10970:        * src/targets/cgi/parser3.C: - 2007 in help ;)
                   10971: 
                   10972: 2007-02-03  misha
                   10973: 
                   10974:        * tests/results/: 150.processed, 151.processed, 152.processed: -
                   10975:          test for bool added and some content length fixes
                   10976: 
                   10977:        * tests/152.html: - test for bool added
                   10978: 
                   10979:        * buildall-with-xml: - moved to libxml2-2.6.27 and libxslt-1.1.20
                   10980: 
                   10981:        * operators.txt: - info bool class was added
                   10982: 
1.116     moko     10983:        * src/: classes/Makefile.am, classes/bool.C,
1.95      moko     10984:          classes/classes.vcproj, classes/double.C, classes/int.C,
                   10985:          classes/string.C, classes/void.C, classes/xnode.C,
                   10986:          include/pa_string.h, types/pa_vbool.h, types/pa_vclass.h,
                   10987:          types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
                   10988:          types/pa_vjunction.h, types/pa_vproperty.C, types/pa_vproperty.h,
                   10989:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   10990:          types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h,
                   10991:          types/types.vcproj: - bool class was added
                   10992: 
                   10993:        * src/main/pa_request.C: - fix
                   10994: 
                   10995: 2007-01-18  misha
                   10996: 
                   10997:        * src/: main/pa_string.C, classes/string.C: - return table during
                   10998:          ^string.match[][] even if no matched found.
                   10999: 
                   11000: 2006-12-20  misha
                   11001: 
                   11002:        * src/types/: pa_method.h, pa_vfile.h: - some syntax changes [
                   11003:          http://www.parser.ru/forum/?id=55598 ]
                   11004: 
                   11005: 2006-12-19  misha
                   11006: 
                   11007:        * src/types/pa_vxdoc.C: - $xDoc is "xnode" == true now. more
                   11008:          details: http://www.parser.ru/forum/?id=52359
                   11009: 
                   11010:        * src/main/pa_request.C: - always set content-disposition for
                   11011:          $response:body[hash here]. more details:
                   11012:          http://www.parser.ru/forum/?id=52130
                   11013: 
                   11014: 2006-12-07  misha
                   11015: 
                   11016:        * operators.txt: - added info about bool params in cookie set
                   11017: 
                   11018:        * src/types/pa_vcookie.C: - bool param in cookies available now
                   11019:          $cookie:name[   $.value[123]   $.secure(true)   $.httponly(true)
                   11020:          ]
                   11021: 
                   11022:        * src/types/: pa_value.C, pa_value.h, pa_vbool.h: - is_bool method
                   11023:          was added
                   11024: 
                   11025: 2006-12-02  misha
                   11026: 
                   11027:        * src/classes/file.C: - file_block_read used instead of native read
                   11028: 
                   11029:        * src/main/pa_common.C: - added file_block_read with read error
                   11030:          detection - file_block_read used instead of native read
                   11031: 
                   11032:        * src/include/pa_common.h: - added file_block_read declaration
                   11033: 
                   11034: 2006-12-01  misha
                   11035: 
                   11036:        * operators.txt: - info about $var.CLASS_NAME was added
                   11037: 
                   11038:        * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
                   11039:          $var.CLASS_NAME added
                   11040: 
                   11041:        * operators.txt: - added info about ^file:copy[]
                   11042: 
                   11043:        * src/classes/file.C: - ^file:copy[from;fo] was added
                   11044: 
                   11045: 2006-11-20  misha
                   11046: 
                   11047:        * src/classes/date.C: - bug fix :)
                   11048: 
                   11049: 2006-11-17  misha
                   11050: 
                   11051:        * src/include/pa_common.h: - array in crc32 calculation was changed
                   11052:          to static
                   11053: 
                   11054:        * src/main/pa_common.C: - little optimization in getMonthDays -
                   11055:          small changes in crc32 calculation
                   11056: 
                   11057:        * src/classes/date.C: - not needed code was removed
                   11058: 
                   11059: 2006-11-16  misha
                   11060: 
                   11061:        * src/types/pa_vmail.C: - fix missed brakes
                   11062: 
                   11063:        * src/types/pa_vmail.C: - mail:send now set content-type:
                   11064:          multipart/related instead of multipart/mixed if file have
                   11065:          $.content-id[]
                   11066: 
                   11067: 2006-11-15  misha
                   11068: 
                   11069:        * src/types/pa_vdouble.h: abs -> fabs
                   11070: 
                   11071: 2006-11-14  misha
                   11072: 
                   11073:        * operators.txt: - added info about ^file.md5[] and
                   11074:          ^file:md5[file-name]
                   11075: 
                   11076:        * src/classes/file.C: - ^file.md5[] and ^file:md5[file-name] were
                   11077:          added
                   11078: 
                   11079:        * src/main/pa_common.C: - CRC32_MAX_BUFFER_SIZE was renamed to
                   11080:          FILE_BUFFER_SIZE
                   11081: 
                   11082:        * src/classes/math.C: - hex_string was moved to pa_common.h
                   11083: 
                   11084:        * src/include/pa_common.h: - hex_string was moved from math.C -
                   11085:          CRC32_MAX_BUFFER_SIZE was renamed to FILE_BUFFER_SIZE
                   11086: 
                   11087:        * src/types/pa_vdouble.h: - incorrect frac detection with negative
                   11088:          values was fixed
                   11089: 
                   11090: 2006-11-13  misha
                   11091: 
                   11092:        * operators.txt: - added info about ^math:crc32[string],
                   11093:          ^file:crc32[file-name] & ^file.crc32[]
                   11094: 
                   11095:        * src/classes/math.C: - added ^math:crc32[string]
                   11096: 
                   11097:        * src/classes/file.C: - some comments were changed - added
                   11098:          ^file:crc32[file-name] and ^file.crc32[]
                   11099: 
                   11100:        * src/: include/pa_common.h, main/pa_common.C: - some functions for
                   11101:          crc32 calculation added
                   11102: 
                   11103: 2006-11-03  misha
                   11104: 
                   11105:        * src/include/pa_array.h: - not needed variable removed
                   11106: 
                   11107:        * tests/: 150.html, 151.html, results/150.processed,
                   11108:          results/151.processed: - 2 tests were added
                   11109: 
                   11110:        * src/include/: pa_array.h, pa_table.h: - table.locate & table.join
                   11111:          with $.reverse(1) were fixed
                   11112: 
                   11113:        * src/main/pa_http.C: - bug fix. now tainted data from $.form and
                   11114:          query converted to $.charset during ^file::load[http://...]
                   11115: 
                   11116: 2006-11-02  misha
                   11117: 
                   11118:        * src/include/pa_table.h: ups. forget '=' char
                   11119: 
                   11120:        * src/include/pa_table.h: - one more fix in
                   11121:          .locate[...][$.reverse(1)]
                   11122: 
                   11123: 2006-11-01  misha
                   11124: 
                   11125:        * src/classes/math.C: - bug fix, details:
                   11126:          http://www.parser.ru/forum/?id=53360
                   11127: 
                   11128:        * src/include/pa_table.h: - bug fix during ^table.locate( condition
                   11129:          false for all records )[$.reverse(1)]
                   11130: 
                   11131:        * src/main/pa_http.C: - second param for this mid method is length
                   11132:          but not end_index so this method has error and can't detect
                   11133:          charsets in next content-types: Content-type: text/html;
                   11134:          charset="windows-1251" Content-type: text/html;
                   11135:          charset="windows-1251"; Content-type: text/html;
                   11136:          charset=windows-1251;
                   11137: 
                   11138:          only Content-type: text/html; charset=windows-1251 was fine
                   11139: 
                   11140: 2006-10-31  misha
                   11141: 
                   11142:        * src/classes/file.C: - empty args in file::exec removed now
                   11143: 
                   11144: 2006-09-03  paf
                   11145: 
                   11146:        * src/classes/file.C: proper tainting of
                   11147:          ^file::exec/cgi[script;env;COMMAND;LINE;PARAMS]
                   11148: 
                   11149: 2006-06-09  paf
                   11150: 
                   11151:        * src/lib/pcre/pcre-2_08.tar.gz: one can easily find those
                   11152: 
                   11153:        * src/classes/table.C: formatting
                   11154: 
                   11155:        * src/classes/table.C: incorporated patch from misha: Sent:
                   11156:          Thursday, June 08, 2006 12:38 PM Subject: parser3: patch for
                   11157:          ignoring string options for ^table.save[]
                   11158: 
                   11159:        * src/classes/hash.C: incorporated patch from misha Sent:
                   11160:          Wednesday, June 07, 2006 9:52 PM Subject: parser3: patch for
                   11161:          $hash._default disappear while
                   11162: 
                   11163:        * operators.txt: ^mail:send[   $.file1[      $.value[file]
                   11164:          $.format[!uue|!base64] << new base64 option. default uue   ] ]
                   11165: 
                   11166:        * src/types/pa_vmail.C: misha: Sent: Wednesday, June 07, 2006 8:51
                   11167:          PM Subject: patch for base64 in ^mail:send[] %-)
                   11168: 
                   11169: 2006-04-09  paf
                   11170: 
                   11171:        * src/main/compile.tab.C: ` change compiled
                   11172: 
                   11173:        * gnu.vcproj, operators.txt, parser3.sln,
                   11174:          src/classes/classes.vcproj, src/classes/file.C,
                   11175:          src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
                   11176:          src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
                   11177:          src/classes/xnode.C, src/include/pa_array.h,
                   11178:          src/include/pa_config_fixed.h, src/include/pa_dir.h,
                   11179:          src/include/pa_memory.h, src/include/pa_request.h,
                   11180:          src/include/pa_stack.h, src/lib/cord/cord.vcproj,
                   11181:          src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
                   11182:          src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
                   11183:          src/lib/pcre/pcre_dftables.vcproj,
                   11184:          src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
                   11185:          src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
                   11186:          src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
                   11187:          src/main/pa_cache_managers.C, src/main/pa_charset.C,
                   11188:          src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
                   11189:          src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
                   11190:          src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
                   11191:          src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
                   11192:          src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
                   11193:          src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
                   11194:          src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
                   11195:          src/types/pa_value.h, src/types/pa_vcookie.C,
                   11196:          src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
                   11197:          src/types/pa_vmail.C, src/types/pa_vresponse.C,
                   11198:          src/types/pa_vstatus.C, src/types/types.vcproj,
                   11199:          tests/descript.ion: + ^break[] ^continue[], in ^for, ^while,
                   11200:          ^menu, ^hash/hashfile.foreach
                   11201: 
                   11202:        * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
                   11203:          src/classes/file.C, src/classes/hash.C, src/classes/image.C,
                   11204:          src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
                   11205:          src/classes/xnode.C, src/include/pa_array.h,
                   11206:          src/include/pa_config_fixed.h, src/include/pa_dir.h,
                   11207:          src/include/pa_memory.h, src/include/pa_request.h,
                   11208:          src/include/pa_stack.h, src/lib/cord/cord.vcproj,
                   11209:          src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
                   11210:          src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
                   11211:          src/lib/pcre/pcre_dftables.vcproj,
                   11212:          src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
                   11213:          src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
                   11214:          src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
                   11215:          src/main/pa_cache_managers.C, src/main/pa_charset.C,
                   11216:          src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
                   11217:          src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
                   11218:          src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
                   11219:          src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
                   11220:          src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
                   11221:          src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
                   11222:          src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
                   11223:          src/types/pa_value.h, src/types/pa_vcookie.C,
                   11224:          src/types/pa_vmail.C, src/types/pa_vresponse.C,
                   11225:          src/types/pa_vstatus.C, src/types/types.vcproj,
                   11226:          tests/descript.ion: ! switched to VS2005 (projects and
                   11227:          object<info explicitly typed>.for_each(, info)) +
                   11228:          $response:field[] setting void means removing + grammar $name`
                   11229:          name stops now, for mysql `$field` + started ^break[]
                   11230:          ^continue[], in ^for. TODO: to other iterators (while, menu,
                   11231:          foreach) + all log messages += [uri=, method=, cl=]
                   11232: 
                   11233:        * buildall-with-xml: merged . ftp paths update
                   11234: 
                   11235:        * buildall-with-xml: . ftp paths update
                   11236: 
                   11237: 2006-03-04  paf
                   11238: 
                   11239:        * src/main/: pa_string.C: merged from HEAD ! cache file curruption
                   11240:          checks++ [thanks to Igor Zinkovsky for detailed report]
                   11241: 
                   11242:        * src/main/pa_string.C: ! cache file curruption checks++ [thanks to
                   11243:          Igor Zinkovsky for detailed report]
                   11244: 
                   11245: 2006-03-01  paf
                   11246: 
                   11247:        * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
                   11248:          \n to ' ' in
                   11249: 
                   11250: 2006-02-18  paf
                   11251: 
                   11252:        * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
                   11253:          \n to ' ' in
                   11254: 
                   11255:        * src/main/untaint.C: ! mail:send << changed \r or \n to ' ' in
                   11256: 
                   11257: 2006-02-03  paf
                   11258: 
                   11259:        * src/main/pa_common.C: merged from HEAD ! bugfix: decoding from
                   11260:          base64
                   11261: 
                   11262:        * src/main/pa_common.C: ! bugfix: decoding from base64
                   11263: 
                   11264: 2006-01-20  paf
                   11265: 
                   11266:        * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
                   11267:          economy fix
                   11268: 
                   11269:        * src/classes/: table.C: merged from HEAD ! bugfix
                   11270:          ^table.save[$.encloser-s now handled properly
                   11271: 
                   11272:        * src/classes/table.C: ! bugfix ^table.save[$.encloser-s now
                   11273:          handled properly
                   11274: 
                   11275: 2006-01-19  paf
                   11276: 
                   11277:        * buildall-with-xml, buildall-without-xml: merged from HEAD !
                   11278:          libgc:USE_MUNMAP activates merging of free memory blocks which
                   11279:          helps a lot in our case: after transform we want
                   11280:          CORD(main.result)->cstr[big malloc]->transcode[big malloc]
                   11281: 
                   11282:        * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
                   11283:          economy fix
                   11284: 
                   11285:        * buildall-with-xml, buildall-without-xml: ! libgc:USE_MUNMAP
                   11286:          activates merging of free memory blocks which helps a lot in our
                   11287:          case: after transform we want CORD(main.result)->cstr[big
                   11288:          malloc]->transcode[big malloc]
                   11289: 
                   11290: 2006-01-17  paf
                   11291: 
                   11292:        * src/types/pa_vhashfile.C: ! hashfile.foreach: counted pairs
                   11293:          before reading them. got rid of reallocs = became quicker and
                   11294:          less fragmentated
                   11295: 
                   11296: 2005-12-29  paf
                   11297: 
1.116     moko     11298:        * INSTALL, Makefile.am, buildall-with-xml, buildall-without-xml,
                   11299:          configure, configure.in, src/include/pa_version.h,
                   11300:          src/lib/ltdl/Makefile.am, src/lib/ltdl/acconfig.h,
1.95      moko     11301:          src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
                   11302:          src/lib/ltdl/config.sub, src/lib/ltdl/configure.in,
                   11303:          src/lib/ltdl/install-sh, src/lib/ltdl/ltmain.sh,
                   11304:          src/lib/ltdl/missing: . merged from 3.2.1
                   11305: 
1.116     moko     11306:        * Makefile.am, src/lib/ltdl/Makefile.am: . now site.m4 also
                   11307:          packaged when 'make dist', so do configure companion files in
                   11308:          src/lib/ltdl
                   11309: 
                   11310:        * src/lib/ltdl/: Makefile.am, acconfig.h, acinclude.m4,
                   11311:          config.guess, config.sub, configure.in, install-sh, ltmain.sh,
                   11312:          missing: . now config_auto.h is created with configure [were
                   11313:          constant]
1.95      moko     11314: 
                   11315:        * INSTALL: . references to documentation and some clarification
                   11316: 
                   11317:        * buildall-with-xml, buildall-without-xml: . farawell doc
                   11318:          indication
                   11319: 
1.116     moko     11320:        * Makefile.am: . dist+=buildall*
1.95      moko     11321: 
                   11322: 2005-12-28  paf
                   11323: 
                   11324:        * configure: . 3.2.1
                   11325: 
                   11326:        * INSTALL, buildall-with-xml, buildall-without-xml: + started to
                   11327:          simplify build process, see INSTALL
                   11328: 
                   11329: 2005-12-26  paf
                   11330: 
                   11331:        * configure: ver
                   11332: 
                   11333:        * configure.in, src/include/pa_version.h, src/main/compile.tab.C:
                   11334:          version
                   11335: 
                   11336: 2005-12-21  paf
                   11337: 
                   11338:        * src/main/: compile.tab.C, main.vcproj: . win32: grammar is now
                   11339:          compiled with bison 1.875b, it reports unexpected token names
                   11340: 
                   11341: 2005-12-19  paf
                   11342: 
                   11343:        * src/: main/compile.tab.C, types/pa_vxnode.h: ! bugfix xnode now
                   11344:          holds a link to xmlNode to prevent premature gc(xmlNode)
                   11345: 
                   11346:        * src/classes/classes.vcproj, src/include/pa_config_fixed.h,
                   11347:          src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
                   11348:          src/main/main.vcproj, src/main/pa_globals.C,
                   11349:          src/targets/cgi/parser3.vcproj,
                   11350:          src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj,
                   11351:          configure, configure.in, src/include/pa_version.h: . killing
                   11352:          gdome [what a relief]
                   11353: 
                   11354:        * tests/: 097.html, 106.html, 108.html, 110.html, 112.html,
                   11355:          113.html, 114.html, 115.html, 116.html, 117.html, Makefile,
                   11356:          run_parser.sh, results/001.processed, results/002.processed,
                   11357:          results/003.processed, results/004.processed,
                   11358:          results/005.processed, results/006.processed,
                   11359:          results/008.processed, results/009.processed,
                   11360:          results/010.processed, results/011.processed,
                   11361:          results/012.processed, results/013.processed,
                   11362:          results/014.processed, results/015.processed,
                   11363:          results/016.processed, results/017.processed,
                   11364:          results/018.processed, results/020.processed,
                   11365:          results/021.processed, results/022.processed,
                   11366:          results/023.processed, results/024.processed,
                   11367:          results/025.processed, results/026.processed,
                   11368:          results/027.processed, results/028.processed,
                   11369:          results/029.processed, results/030.processed,
                   11370:          results/031.processed, results/032.processed,
                   11371:          results/033.processed, results/034.processed,
                   11372:          results/035.processed, results/036.processed,
                   11373:          results/037.processed, results/038.processed,
                   11374:          results/039.processed, results/040.processed,
                   11375:          results/041.processed, results/042.processed,
                   11376:          results/043.processed, results/044.processed,
                   11377:          results/045.processed, results/046.processed,
                   11378:          results/047.processed, results/048.processed,
                   11379:          results/049.processed, results/050.processed,
                   11380:          results/051.processed, results/052.processed,
                   11381:          results/053.processed, results/054.processed,
                   11382:          results/055.processed, results/056.processed,
                   11383:          results/057.processed, results/058.processed,
                   11384:          results/059.processed, results/060.processed,
                   11385:          results/061.processed, results/062.processed,
                   11386:          results/063.processed, results/064.processed,
                   11387:          results/065.processed, results/066.processed,
                   11388:          results/067.processed, results/068.processed,
                   11389:          results/069.processed, results/070.processed,
                   11390:          results/071.processed, results/072.processed,
                   11391:          results/073.processed, results/074.processed,
                   11392:          results/075.processed, results/076.processed,
                   11393:          results/077.processed, results/078.processed,
                   11394:          results/079.processed, results/080.processed,
                   11395:          results/081.processed, results/082.processed,
                   11396:          results/083.processed, results/084.processed,
                   11397:          results/085.processed, results/086.processed,
                   11398:          results/087.processed, results/088.processed,
                   11399:          results/089.processed, results/090.processed,
                   11400:          results/091.processed, results/092.processed,
                   11401:          results/093.processed, results/094.processed,
                   11402:          results/095.processed, results/096.processed,
                   11403:          results/097.processed, results/099.processed,
                   11404:          results/100.processed, results/101.processed,
                   11405:          results/102.processed, results/104.processed,
                   11406:          results/105.processed, results/106.processed,
                   11407:          results/107.processed, results/108.processed,
                   11408:          results/109.processed, results/110.processed,
                   11409:          results/111.processed, results/112.processed,
                   11410:          results/113.processed, results/114.processed,
                   11411:          results/115.processed, results/117.processed,
                   11412:          results/119.processed, results/120.processed,
                   11413:          results/121.processed, results/122.processed,
                   11414:          results/123.processed, results/124.processed,
                   11415:          results/125.processed, results/126.processed,
                   11416:          results/127.processed, results/128.processed,
                   11417:          results/129.processed, results/130.processed,
                   11418:          results/131.processed, results/132.processed,
                   11419:          results/133.processed, results/134.processed,
                   11420:          results/135.processed, results/136.processed,
                   11421:          results/138.processed, results/139.processed,
                   11422:          results/140.processed, results/141.processed,
                   11423:          results/142.processed, results/143.processed,
                   11424:          results/144.processed, results/145.processed,
                   11425:          results/146.processed, results/147.processed,
                   11426:          results/148.processed, results/149.processed, results/auto.p: .
                   11427:          now works if we turn off default auto.p
                   11428: 
1.116     moko     11429:        * configure: . makes
1.95      moko     11430: 
                   11431:        * src/types/pa_vxnode.C: . less warnings
                   11432: 
                   11433:        * src/types/pa_vxnode.C, tests/142.html, tests/144.html,
                   11434:          tests/145.html, tests/149.html, tests/descript.ion,
                   11435:          tests/outputs/d.cmd, tests/results/142.processed,
                   11436:          tests/results/143.processed, tests/results/144.processed,
                   11437:          tests/results/145.processed, tests/results/146.processed,
                   11438:          tests/results/147.processed, tests/results/148.processed,
                   11439:          tests/results/149.processed: . removed .nodeValue from all node
                   11440:          types other than 5 (grabbed piece from gdome)
                   11441: 
                   11442:        * tests/: 137.html, results/137.processed: . not handled this case
                   11443:          yet. code does not hang from inserting parent into child,
                   11444:          considering thing minor issue -- nodes are removed from source
                   11445:          anyway, don't know why shold that be an error after all
                   11446: 
                   11447:        * src/targets/cgi/parser3.C: . style
                   11448: 
                   11449:        * src/classes/xnode.C: . "xml.dom" . xnode.select* now works on
                   11450:          xdoc too [were barking "not element"]
                   11451: 
                   11452: 2005-12-16  paf
                   11453: 
                   11454:        * tests/: 146.html, 147.html, 148.html: . more tests
                   11455: 
                   11456:        * src/classes/xnode.C: . also bark on possible errors
                   11457: 
                   11458:        * src/types/: pa_vxdoc.C, pa_vxnode.C, pa_vxnode.h: + xdoc DOM
                   11459:          props
                   11460: 
                   11461:        * src/: types/pa_value.h, types/pa_vvoid.h, main/compile.tab.C,
                   11462:          main/compile.y: merged from HEAD ! fixed overoptimized
                   11463:          ^call(false) case. (confused it with ^call[] case)
                   11464: 
                   11465:        * src/main/: compile.tab.C, compile.y: ! fixed overoptimized
                   11466:          ^call(false) case. (confused it with ^call[] case)
                   11467: 
                   11468:        * tests/: 142.html, 143.html, 144.html, 145.html: . dom [part]
                   11469: 
                   11470:        * tests/: 006.html, 034.html, 057.html, Makefile, make_tests.cmd,
                   11471:          results/001.processed, results/002.processed,
                   11472:          results/003.processed, results/004.processed,
                   11473:          results/005.processed, results/006.processed,
                   11474:          results/008.processed, results/009.processed,
                   11475:          results/010.processed, results/011.processed,
                   11476:          results/012.processed, results/013.processed,
                   11477:          results/014.processed, results/015.processed,
                   11478:          results/016.processed, results/017.processed,
                   11479:          results/018.processed, results/019.processed,
                   11480:          results/020.processed, results/021.processed,
                   11481:          results/022.processed, results/023.processed,
                   11482:          results/024.processed, results/025.processed,
                   11483:          results/026.processed, results/027.processed,
                   11484:          results/028.processed, results/029.processed,
                   11485:          results/030.processed, results/031.processed,
                   11486:          results/032.processed, results/033.processed,
                   11487:          results/034.processed, results/035.processed,
                   11488:          results/036.processed, results/037.processed,
                   11489:          results/038.processed, results/039.processed,
                   11490:          results/040.processed, results/041.processed,
                   11491:          results/042.processed, results/043.processed,
                   11492:          results/044.processed, results/045.processed,
                   11493:          results/046.processed, results/047.processed,
                   11494:          results/048.processed, results/049.processed,
                   11495:          results/050.processed, results/051.processed,
                   11496:          results/052.processed, results/053.processed,
                   11497:          results/054.processed, results/055.processed,
                   11498:          results/056.processed, results/057.processed,
                   11499:          results/058.processed, results/059.processed,
                   11500:          results/060.processed, results/061.processed,
                   11501:          results/062.processed, results/063.processed,
                   11502:          results/064.processed, results/065.processed,
                   11503:          results/066.processed, results/067.processed,
                   11504:          results/068.processed, results/069.processed,
                   11505:          results/070.processed, results/071.processed,
                   11506:          results/072.processed, results/073.processed,
                   11507:          results/074.processed, results/075.processed,
                   11508:          results/076.processed, results/077.processed,
                   11509:          results/078.processed, results/079.processed,
                   11510:          results/080.processed, results/081.processed,
                   11511:          results/082.processed, results/083.processed,
                   11512:          results/084.processed, results/085.processed,
                   11513:          results/086.processed, results/087.processed,
                   11514:          results/088.processed, results/089.processed,
                   11515:          results/090.processed, results/091.processed,
                   11516:          results/092.processed, results/093.processed,
                   11517:          results/094.processed, results/095.processed,
                   11518:          results/096.processed, results/097.processed,
                   11519:          results/099.processed, results/101.processed,
                   11520:          results/102.processed, results/104.processed,
                   11521:          results/105.processed, results/106.processed,
                   11522:          results/107.processed, results/108.processed,
                   11523:          results/109.processed, results/110.processed,
                   11524:          results/111.processed, results/112.processed,
                   11525:          results/113.processed, results/114.processed,
                   11526:          results/115.processed, results/116.processed,
                   11527:          results/117.processed, results/118.processed,
                   11528:          results/119.processed, results/120.processed,
                   11529:          results/121.processed, results/122.processed,
                   11530:          results/123.processed, results/124.processed,
                   11531:          results/125.processed, results/126.processed,
                   11532:          results/127.processed, results/128.processed,
                   11533:          results/129.processed, results/130.processed,
                   11534:          results/131.processed, results/132.processed,
                   11535:          results/133.processed, results/134.processed,
                   11536:          results/135.processed, results/136.processed,
                   11537:          results/137.processed, results/138.processed,
                   11538:          results/139.processed, results/140.processed,
                   11539:          results/141.processed: . refreshed old tests, made them work
                   11540:          without auto.p (in utf8) . things noted: . gif got encoded
                   11541:          differently . exif 0000:00:00 decoded now into 0000:00:00 (were
                   11542:          some strange year)
                   11543: 
                   11544:        * INSTALL: . revived linux libgc fix
                   11545: 
                   11546:        * INSTALL, configure.in, src/lib/Makefile.am: . sweetest part [no
                   11547:          glib/gdome in INSTALL and patches]
                   11548: 
                   11549:        * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   11550:          include/pa_charset.h, include/pa_config_includes.h,
                   11551:          include/pa_globals.h, include/pa_memory.h, include/pa_request.h,
                   11552:          include/pa_xml_exception.h, lib/cord/Makefile.am,
                   11553:          lib/cord/cord.vcproj, lib/cord/cordbscs.c, lib/cord/cordprnt.c,
                   11554:          lib/cord/cordxtra.c, main/compile.tab.C, main/pa_charset.C,
                   11555:          main/pa_globals.C, main/pa_memory.C, main/pa_request.C,
                   11556:          main/pa_stylesheet_connection.C, main/pa_xml_exception.C,
                   11557:          types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
                   11558:          types/pa_vxnode.h: . started killing gdome
                   11559: 
                   11560: 2005-12-13  paf
                   11561: 
                   11562:        * src/main/: pa_request.C: merged from HEAD ! when code in
                   11563:          @unhandled_exception thrown another exception, print correct
                   11564:          origin (earlier code in catch of exception inside of
                   11565:          @unhandled_exception grabbed parent_frame(original_exception)
                   11566:          origin and printed it, instead of true origin)
                   11567: 
                   11568:        * src/main/pa_request.C: ! when code in @unhandled_exception thrown
                   11569:          another exception, print correct origin (earlier code in catch of
                   11570:          exception inside of @unhandled_exception grabbed
                   11571:          parent_frame(original_exception) origin and printed it, instead
                   11572:          of true origin)
                   11573: 
                   11574: 2005-12-09  paf
                   11575: 
                   11576:        * INSTALL: . updated INSTALL doc to work around linux stack base
                   11577:          detection problem, due to change in gc6.4 code
                   11578: 
                   11579:        * src/main/: pa_string.C: merged from 3.1.5 ! regex tainting were
                   11580:          ignored in ^string.matched :(
                   11581: 
                   11582:        * src/main/pa_string.C: ! regex tainting were ignored in
                   11583:          ^string.matched :(
                   11584: 
                   11585:        * ChangeLog, INSTALL, configure, configure.in, src/classes/date.C,
                   11586:          src/include/pa_config_fixed.h, src/include/pa_version.h,
                   11587:          src/main/compile.y, src/main/compile_tools.h,
                   11588:          src/main/pa_charset.C, src/main/pa_common.C,
                   11589:          src/main/pa_globals.C, src/main/pa_string.C,
                   11590:          src/targets/cgi/getopt.c, src/targets/isapi/parser3isapi.C,
                   11591:          src/types/pa_vmail.C: . merged latest fixes from 3.2.0
                   11592: 
                   11593: 2005-12-08  paf
                   11594: 
                   11595:        * src/types/pa_vmail.C: merged from 3.2.0 ! bcc line longer then
                   11596:          500 chars now handled OK [were wrapped on 500th char according to
                   11597:          rfc, but sendmail failed to unwrap it properly]
                   11598: 
                   11599:        * src/types/pa_vmail.C: ! bcc line longer then 500 chars now
                   11600:          handled OK [were wrapped on 500th char according to rfc, but
                   11601:          sendmail failed to unwrap it properly]
                   11602: 
                   11603:        * src/targets/isapi/parser3isapi.C: . less warnings
                   11604: 
                   11605:        * src/targets/isapi/parser3isapi.C: . undone some strange change
                   11606:          since 3.1.5
                   11607: 
                   11608:        * src/targets/isapi/parser3isapi.C: . merged from 3.1.5 release
                   11609:          link fixes
                   11610: 
                   11611:        * src/: classes/date.C, include/pa_config_fixed.h,
                   11612:          main/compile.tab.C, main/compile.y, main/compile_tools.h,
                   11613:          main/pa_charset.C, main/pa_common.C, main/pa_globals.C,
                   11614:          main/pa_string.C, targets/cgi/getopt.c: . less warnings
                   11615: 
                   11616:        * src/include/pa_config_fixed.h: . removed outdated string origins
                   11617:          [in current storage scheme there's no place for them. someday we
                   11618:          can add third CORD to store origins and special version of parser
                   11619:          which stores origins there [separate binary]]
                   11620: 
                   11621: 2005-12-07  paf
                   11622: 
                   11623:        * src/targets/isapi/parser3isapi.C: . now links in release mode
                   11624: 
                   11625:        * src/include/pa_version.h: makefiles
                   11626: 
                   11627:        * src/include/pa_version.h: . not beta
                   11628: 
                   11629:        * configure, configure.in, src/include/pa_version.h: not beta
                   11630: 
                   11631: 2005-12-06  paf
                   11632: 
                   11633:        * src/types/: pa_wcontext.C, pa_wcontext.h: ! after long discussion
                   11634:          [some details here http://i2/tasks/edit/?id=4869912143891354460]
                   11635:          decided to undo the change ^call[$void] passes void. now it will
                   11636:          pass empty string again.
                   11637: 
                   11638:        * src/main/: compile.tab.C, compile.y: . version readded
                   11639: 
                   11640:        * src/classes/op.C: . in this version there is no ^switch[$nothing]
                   11641:          = ^switch[void] problem
                   11642: 
                   11643: 2005-12-01  paf
                   11644: 
                   11645:        * src/classes/op.C: mreged from HEAD . bugfix ^switch[$void_value]
                   11646:          caused ^case[string] to be coerced to double since searching
                   11647:          value were not string (it was vvoid)
                   11648: 
                   11649:        * src/classes/op.C: . bugfix ^switch[$void_value] caused
                   11650:          ^case[string] to be coerced to double since searching value were
                   11651:          not string (it was vvoid)
                   11652: 
                   11653:        * INSTALL: . compiled with       libxml2 = 2.6.22       libxslt =
                   11654:          1.1.15       glib = 1.2.10       gdome2 = 0.8.1
                   11655: 
                   11656: 2005-11-30  paf
                   11657: 
                   11658:        * src/types/pa_vdate.h: merged from HEAD: ! bugfix: to drop TZ on
                   11659:          win32 must putenv("TZ="), on unix works only putenv("TZ")
                   11660: 
                   11661:        * src/types/pa_vdate.h: ! bugfix: to drop TZ on win32 must
                   11662:          putenv("TZ="), on unix works only putenv("TZ")
                   11663: 
                   11664:        * INSTALL: . xml libs versions updated
                   11665: 
                   11666:        * src/main/pa_globals.C: //20051130 trying to remove this, author
                   11667:          claims that fixed a lot there // 20040920 for now both
                   11668:          workarounds needed. wait for new libxml/xsl versions
                   11669: 
                   11670: 2005-11-28  paf
                   11671: 
                   11672:        * src/classes/table.C: merged from HEAD: ! nameless table has
                   11673:          columns==0
                   11674: 
                   11675:        * src/classes/table.C: ! nameless table has columns==0
                   11676: 
                   11677:        * src/main/pa_http.C: merged from HEAD: ! status line check made
                   11678:          earlier [was totally wrong]
                   11679: 
                   11680:        * src/main/pa_http.C: ! status line check made earlier [was totally
                   11681:          wrong]
                   11682: 
                   11683: 2005-11-25  paf
                   11684: 
                   11685:        * src/include/pa_array.h: -this reduces speed(table::load) strange.
                   11686:          undoing for now...
                   11687: 
                   11688:        * src/include/pa_version.h: -this reduces speed(table::load),
                   11689:          strange. undoing
                   11690: 
                   11691:        * src/classes/op.C: merged from HEAD + ^while(){}[SEPARATOR]
                   11692: 
                   11693:        * src/classes/op.C: + ^while(){}[SEPARATOR]
                   11694: 
                   11695:        * src/include/pa_array.h: + optimistics added: all arrays (table
                   11696:          rows) now grow size*=2, like in .NET ArrayList.EnsureCapacity,
                   11697:          this speeds things up and saves memory a LOT! (not noticed
                   11698:          negative effect on syntetic tests, future will tell...)
                   11699: 
                   11700:        * src/include/pa_memory.h: . removed GC_DEBUG for debug version, it
                   11701:          changed gc_malloc implementation, which obscured profiling
                   11702: 
                   11703:        * src/classes/table.C: merged from HEAD: + optimized
                   11704:          table::load/sql, now row ArrayString-s allocated with
                   11705:          columns.count() elements and don't always grow from
                   11706:          count=3[realloc,realloc]
                   11707: 
                   11708:        * src/classes/table.C: + optimized table::load/sql, now row
                   11709:          ArrayString-s allocated with columns.count() elements and don't
                   11710:          always grow from count=3[realloc,realloc]
                   11711: 
                   11712:        * src/classes/table.C: merged from HEAD: . ^table.save unused
                   11713:          buffer after save
                   11714: 
                   11715:        * src/classes/table.C: . ^table.save unused buffer after save
                   11716: 
                   11717: 2005-11-24  paf
                   11718: 
                   11719:        * configure.in: . merged glib2-config patch
                   11720: 
                   11721:        * configure.in: + trying to find glib2-config
                   11722: 
                   11723:        * src/: classes/file.C, include/pa_common.h, main/execute.C,
                   11724:          main/pa_common.C, main/pa_request.C: merged from HEAD: ! changed
                   11725:          file/dir_readable to simple file/dir_exist, this would help in
                   11726:          situations "class not found because .p file has bad rights" << in
                   11727:          that case error would be explicit "access denied to 'this' file"
                   11728: 
1.116     moko     11729:        * aclocal.m4, configure, src/include/pa_config_auto.h.in: makefiles
1.95      moko     11730: 
                   11731:        * src/: classes/file.C, include/pa_common.h, main/execute.C,
                   11732:          main/pa_common.C, main/pa_request.C: ! changed file/dir_readable
                   11733:          to simple file/dir_exist, this would help in situations "class
                   11734:          not found because .p file has bad rights" << in that case error
                   11735:          would be explicit "access denied to 'this' file"
                   11736: 
                   11737:        * src/: classes/file.C, include/Makefile.am, include/pa_common.h,
                   11738:          include/pa_http.h, main/Makefile.am, main/main.vcproj,
                   11739:          main/pa_common.C, main/pa_http.C: merged from HEAD: +!
                   11740:          ^file::exec/cgi[script;$.charset[changed]
                   11741:          $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
                   11742:          encoded in $.charset charset
                   11743: 
                   11744:        * src/classes/file.C: +! ^file::exec/cgi[script;$.charset[changed]
                   11745:          $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
                   11746:          encoded in $.charset charset
                   11747: 
                   11748:        * src/: include/Makefile.am, include/pa_common.h,
                   11749:          include/pa_http.h, main/Makefile.am, main/main.vcproj,
                   11750:          main/pa_common.C, main/pa_http.C: . extracted http:// into
                   11751:          separate file [preparation for
                   11752:          ^file::cgi[script;$.form[$.field1[]
                   11753: 
                   11754: 2005-11-22  paf
                   11755: 
                   11756:        * src/: include/pa_version.h, main/compile.tab.C: makefiles
                   11757: 
                   11758:        * acinclude.m4, configure.in: . merged underquting fixes
                   11759: 
1.116     moko     11760:        * src/include/pa_config_auto.h.in: configure+makes
1.95      moko     11761: 
                   11762:        * src/classes/op.C: . overmerged a little
                   11763: 
                   11764:        * src/main/compile.tab.C: Makefile
                   11765: 
                   11766:        * src/main/: pa_common.C: . less gcc warnings
                   11767: 
                   11768:        * src/classes/op.C: merged from HEAD: + $exception.handled[cache]
                   11769:          now reports original exception if we have no old cache
                   11770: 
                   11771:        * src/classes/op.C: + $exception.handled[cache] now reports
                   11772:          original exception if we have no old cache
                   11773: 
                   11774:        * src/: classes/op.C, include/pa_string.h, main/untaint.C: merged
                   11775:          from HEAD: + ^taint/untaint[regex] << escapes these:
                   11776:          \^$.[]|()?*+{}
                   11777: 
                   11778:        * src/: classes/op.C, include/pa_string.h, main/untaint.C: +
                   11779:          ^taint/untaint[regex] << escapes these: \^$.[]|()?*+{}
                   11780: 
                   11781:        * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
                   11782:          getenv-ed variable, which does not work both on win32&unix.
                   11783:          copied old TZ value now
                   11784: 
                   11785:        * src/types/pa_vdate.h: merged from 3.1.5: ! date TZ save/restore
                   11786:          stored pointer to getenv-ed variable, which does not work both on
                   11787:          win32&unix. copied old TZ value now
                   11788: 
                   11789:        * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
                   11790:          getenv-ed variable, which does not work both on win32&unix.
                   11791:          copied old TZ value now
                   11792: 
                   11793:        * src/types/pa_vresponse.C: merged from HEAD: + $response:headers
                   11794:          access to internal hash
                   11795: 
                   11796:        * src/types/pa_vresponse.C: + $response:headers access to internal
                   11797:          hash
                   11798: 
                   11799:        * src/targets/isapi/parser3isapi.C: merged from HEAD: +
                   11800:          GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
                   11801:          isapi] this reduces number of "GC Warning: Repeated allocation of
                   11802:          very large block" messages to only important onces
                   11803: 
                   11804:        * src/targets/isapi/parser3isapi.C: +
                   11805:          GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
                   11806:          isapi] this reduces number of "GC Warning: Repeated allocation of
                   11807:          very large block" messages to only important onces
                   11808: 
                   11809:        * src/classes/string.C: merged from HEAD: + removed limitation on
                   11810:          ^string/int/double:sql{}[$.default[({param style})] ]
                   11811: 
                   11812:        * src/classes/string.C: + removed limitation on
                   11813:          ^string/int/double:sql{}[$.default[({param style})] ]
                   11814: 
                   11815:        * src/main/pa_common.C: merged from HEAD: + removed "use either uri
                   11816:          with ?params or $.form option" limitation
                   11817: 
                   11818:        * src/main/pa_common.C: + removed "use either uri with ?params or
                   11819:          $.form option" limitation
                   11820: 
                   11821:        * src/: classes/file.C, classes/string.C, include/pa_common.h,
                   11822:          main/pa_common.C: merged from HEAD: + ^file.base64[] encode +
                   11823:          ^file::base64[encoded] decode
                   11824: 
                   11825:        * src/: classes/file.C, classes/string.C, include/pa_common.h,
                   11826:          main/pa_common.C: + ^file.base64[] encode +
                   11827:          ^file::base64[encoded] decode
                   11828: 
                   11829:        * src/classes/: file.C, string.C: + ^string.base64[] encode +
                   11830:          ^string:base64[encoded] decode
                   11831: 
                   11832:        * src/: classes/string.C, include/pa_common.h, main/pa_common.C: +
                   11833:          ^string:base64[in] encode + ^string.base64[] decode
                   11834: 
                   11835: 2005-11-21  paf
                   11836: 
                   11837:        * src/classes/file.C: + merged from HEAD:
                   11838:          ^file::create[text;file.xml;^untaint[xml]{data}]
                   11839: 
                   11840:        * src/classes/file.C: +
                   11841:          ^file::create[text;file.xml;^untaint[xml]{data}]
                   11842: 
                   11843:        * src/main/pa_request.C: ! merged: $response:body[file] now
                   11844:          differes from :download, it does not return content-disposition
                   11845:          at all now [previusely it returned valueless content-disposition]
                   11846: 
                   11847:        * src/main/pa_request.C: ! $response:body[file] now differes from
                   11848:          :download, it does not return content-disposition at all now
                   11849:          [previusely it returned valueless content-disposition]
                   11850: 
                   11851:        * src/main/: compile.tab.C, compile.y: ! overoptimized void
                   11852:          literals, reverted to just vvod, recreating empty array with each
                   11853:          void_value token. that's absolutely needed, since that array
                   11854:          grows
                   11855: 
                   11856:        * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
                   11857:          types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
                   11858:          types/pa_vmethod_frame.h: + merged: expression literals:
                   11859:          true/false. ^format[$.indent(true)]
                   11860: 
                   11861:        * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
                   11862:          types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
                   11863:          types/pa_vmethod_frame.h: + expression literals: true/false.
                   11864:          ^format[$.indent(true)]
                   11865: 
                   11866:        * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
                   11867:          merged: $env:PARSER_VERSION reports "3.1.5beta (compiled on
                   11868:          i386-pc-win32)"
                   11869: 
                   11870:        * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
                   11871:          $env:PARSER_VERSION reports "3.1.5beta (compiled on
                   11872:          i386-pc-win32)"
                   11873: 
                   11874: 2005-11-18  paf
                   11875: 
                   11876:        * src/classes/: double.C, int.C: ! ^int/double:sql{select
                   11877:          null}[$.default(123)] will now return default value
                   11878: 
                   11879:        * src/classes/op.C: + merged ^cache[] << returns current cache
                   11880:          expiration time
                   11881: 
                   11882:        * src/classes/op.C: + ^cache[] << returns current cache expiration
                   11883:          time
                   11884: 
                   11885:        * src/classes/table.C: ! merged ^table::create[not'nameless';
                   11886:          failed << Exception.problem_source pointed to local var!
                   11887: 
                   11888:        * src/classes/table.C: ! ^table::create[not'nameless'; failed <<
                   11889:          Exception.problem_source pointed to local var!
                   11890: 
                   11891:        * src/main/pa_common.C: ! merged: file::load[binary;fileOfZeroSize]
                   11892:          now loads VFile.ptr!=0, so such files can be saved now
                   11893: 
                   11894:        * src/main/pa_common.C: ! file::load[binary;fileOfZeroSize] now
                   11895:          loads VFile.ptr!=0, so such files can be saved now
                   11896: 
                   11897:        * src/include/pa_dir.h: ! merged: file:list now sees .xxx files,
                   11898:          only . and .. now removed from list [were removed all .*]
                   11899: 
                   11900:        * src/include/pa_dir.h: ! file:list now sees .xxx files, only . and
                   11901:          .. now removed from list [were removed all .*]
                   11902: 
                   11903:        * src/lib/sdbm/apr_file_io.C: ! merged from 3.1.5: hashfile file
                   11904:          open error now checked, were not :( [stole that piece from apache
                   11905:          1.3 sources]
                   11906: 
                   11907:        * src/lib/sdbm/apr_file_io.C: ! hashfile file open error now
                   11908:          checked, were not :( [stole that piece from apache 1.3 sources]
                   11909: 
                   11910:        * src/main/pa_request.C: ! merged from 3.1.5: ensured proper
                   11911:          untainting of @main result if returned by $result or
                   11912:          $response:body
                   11913: 
                   11914:        * src/main/pa_request.C: ! ensured proper untainting of @main
                   11915:          result if returned by $result or $response:body
                   11916: 
                   11917:        * src/main/pa_common.C: ! merged from 3.1.5: fixed file load memory
                   11918:          issue: now tries to guess content-length and allocates one big
                   11919:          piece if possible [regretfully gc_realloc works as malloc+free,
                   11920:          leaving lots of holes behind]
                   11921: 
                   11922:        * src/: classes/memory.C, main/compile.tab.C, main/pa_common.C: !
                   11923:          fixed file load memory issue: now tries to guess content-length
                   11924:          and allocates one big piece if possible [regretfully gc_realloc
                   11925:          works as malloc+free, leaving lots of holes behind]
                   11926: 
                   11927: 2005-11-16  paf
                   11928: 
                   11929:        * src/: include/pa_common.h, classes/file.C, classes/table.C,
                   11930:          main/compile.tab.C, main/pa_common.C: merged to HEAD: !
                   11931:          table::save with enclosers now doubles them: "->"" !
                   11932:          table::save/load do not remove elements from options hash
                   11933: 
                   11934:        * src/main/compile.y: ! merged to HEAD: ^if(-f "...") now works
                   11935:          [were overoptimized ^if(double_literal), compiler confused
                   11936:          OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
                   11937: 
                   11938:        * src/main/: compile.tab.C, compile.y: ! ^if(-f "...") now works
                   11939:          [were overoptimized ^if(double_literal), compiler confused
                   11940:          OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
                   11941: 
                   11942:        * src/: classes/file.C, classes/table.C, include/pa_common.h,
                   11943:          main/pa_common.C: ! table::save with enclosers now doubles them:
                   11944:          "->"" ! table::save/load do not remove elements from options hash
                   11945: 
                   11946: 2005-11-03  paf
                   11947: 
1.116     moko     11948:        * src/main/: Makefile.am, compile.tab.C: removed $< from .y
                   11949:          compilation, not all makefiles liked that
1.95      moko     11950: 
                   11951: 2005-08-30  paf
                   11952: 
                   11953:        * src/classes/op.C: merge . speedup check of [DEFAULT]
                   11954: 
                   11955:        * src/classes/op.C: . speedup check of [DEFAULT]
                   11956: 
                   11957: 2005-08-26  paf
                   11958: 
                   11959:        * src/: classes/date.C, types/pa_vdate.h: merged + date.week
                   11960: 
                   11961:        * src/: classes/date.C, types/pa_vdate.h: + date.week
                   11962: 
                   11963:        * src/classes/table.C: merged ! ^table::create[bad]{xxx} now
                   11964:          complains about bad!=nameless
                   11965: 
                   11966:        * src/classes/table.C: ! ^table::create[bad]{xxx} now complains
                   11967:          about bad!=nameless
                   11968: 
                   11969:        * src/classes/: hash.C, string.C, table.C, void.C: merged !
                   11970:          optional options were allowed to be empty. were checked
                   11971:          if(is_string), changed to !defined||is_string to allow void
                   11972: 
                   11973:        * src/: targets/isapi/parser3isapi.C, classes/hash.C,
                   11974:          classes/string.C, classes/table.C, classes/void.C: ! optional
                   11975:          options were allowed to be empty. were checked if(is_string),
                   11976:          changed to !defined||is_string to allow void
                   11977: 
                   11978:        * src/types/pa_vmethod_frame.h: merged ! many classes/*  used
                   11979:          as_junction where they needed as_int/double, so failed with
                   11980:          recent "(const) now no junction" optimization
                   11981: 
                   11982:        * src/classes/: double.C, int.C, math.C, op.C, string.C, table.C:
                   11983:          merged ! many classes/*  used as_junction where they needed
                   11984:          as_int/double, so failed with recent "(const) now no junction"
                   11985:          optimization
                   11986: 
                   11987:        * src/: classes/double.C, classes/int.C, classes/math.C,
                   11988:          classes/op.C, classes/string.C, classes/table.C,
                   11989:          main/compile.tab.C, types/pa_vmethod_frame.h: ! many classes/*
                   11990:          used as_junction where they needed as_int/double, so failed with
                   11991:          recent "(const) now no junction" optimization
                   11992: 
                   11993: 2005-08-24  paf
                   11994: 
                   11995:        * src/targets/isapi/: parser3isapi.C, parser3isapi.vcproj: ! on
                   11996:          windows 2003 DllMain receivese \\?\ prefix to fullspec of .dll,
                   11997:          stripped it
                   11998: 
                   11999: 2005-08-09  paf
                   12000: 
                   12001:        * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
                   12002:          not cleared
                   12003: 
                   12004:        * src/: classes/classes.C, classes/classes.h, classes/date.C,
                   12005:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   12006:          classes/hashfile.C, classes/image.C, classes/int.C,
                   12007:          classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
                   12008:          classes/response.C, classes/string.C, classes/table.C,
                   12009:          classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   12010:          include/pa_array.h, include/pa_cache_managers.h,
                   12011:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   12012:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   12013:          include/pa_dictionary.h, include/pa_dir.h,
                   12014:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   12015:          include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
                   12016:          include/pa_operation.h, include/pa_os.h, include/pa_request.h,
                   12017:          include/pa_request_charsets.h, include/pa_request_info.h,
                   12018:          include/pa_sapi.h, include/pa_socks.h,
                   12019:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   12020:          include/pa_stack.h, include/pa_string.h,
                   12021:          include/pa_stylesheet_connection.h,
                   12022:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   12023:          include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
                   12024:          include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
                   12025:          lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
                   12026:          lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
                   12027:          lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
                   12028:          main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
                   12029:          main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
                   12030:          main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
                   12031:          main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
                   12032:          main/pa_os.C, main/pa_request.C, main/pa_socks.C,
                   12033:          main/pa_sql_driver_manager.C, main/pa_string.C,
                   12034:          main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
                   12035:          main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
                   12036:          main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
                   12037:          targets/cgi/pa_threads.C, targets/cgi/parser3.C,
                   12038:          targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
                   12039:          types/pa_junction.h, types/pa_method.h, types/pa_property.h,
                   12040:          types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
                   12041:          types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
                   12042:          types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
                   12043:          types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
                   12044:          types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
                   12045:          types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
                   12046:          types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
                   12047:          types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
                   12048:          types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
                   12049:          types/pa_vmemory.h, types/pa_vmethod_frame.C,
                   12050:          types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
                   12051:          types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
                   12052:          types/pa_vresponse.C, types/pa_vresponse.h,
                   12053:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   12054:          types/pa_vstateless_object.h, types/pa_vstatus.C,
                   12055:          types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
                   12056:          types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
                   12057:          types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   12058:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
                   12059:          types/pa_wcontext.h, types/pa_wwrapper.h: 2005
                   12060: 
                   12061:        * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
                   12062:          pa_vmethod_frame.h: merged from HEAD ! simplified (double)
                   12063:          speedup consequent checks in vmethod_frame
                   12064: 
                   12065:        * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
                   12066:          not cleared
                   12067: 
                   12068:        * src/: classes/file.C, main/pa_exec.C: merged +file::cgi/exec now
                   12069:          params: 50 max (were 10)
                   12070: 
                   12071:        * src/: classes/file.C, main/pa_exec.C: + file::cgi/exec now
                   12072:          params: 50 max (were 10)
                   12073: 
                   12074:        * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
                   12075:          pa_vmethod_frame.h, pa_vvoid.C, pa_vvoid.h, pa_wcontext.C,
                   12076:          pa_wcontext.h: + ^call[$void] param inside now is void (were:
                   12077:          empty string) ! simplified (double) speedup consequent checks in
                   12078:          vmethod_frame
                   12079: 
                   12080:        * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: merged +
                   12081:          optimized constants in expressions vstring->vdouble + optimized
                   12082:          ^call(vdouble), no junction creation, no calls later
                   12083: 
                   12084: 2005-08-08  paf
                   12085: 
                   12086:        * src/main/: compile.tab.C, compile.y, compile_tools.C,
                   12087:          compile_tools.h: merged + optimized constants in expressions
                   12088:          vstring->vdouble + optimized ^call(vdouble), no junction
                   12089:          creation, no calls later
                   12090: 
                   12091:        * src/types/pa_vdouble.h: merged . double values without fractional
                   12092:          part now default printed as %.0f instead of %g
                   12093: 
                   12094:        * src/types/pa_vdouble.h: . double values without fractional part
                   12095:          now default printed as %.0f instead of %g
                   12096: 
                   12097:        * src/classes/hashfile.C: . merged ! second hashfile::open would
                   12098:          cause an exception
                   12099: 
                   12100:        * src/classes/hashfile.C: ! second hashfile::open would cause an
                   12101:          exception
                   12102: 
                   12103:        * src/: classes/classes.h, main/execute.C, types/pa_junction.h,
                   12104:          types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
                   12105:          types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
                   12106:          types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
                   12107:          types/pa_vimage.C, types/pa_vimage.h, types/pa_vjunction.h,
                   12108:          types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
                   12109:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
                   12110:          types/pa_vresponse.h, types/pa_vstateless_class.C,
                   12111:          types/pa_vstateless_object.h, types/pa_vvoid.h,
                   12112:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
                   12113:          merged VJunction(new Junction) optimization from 3.1.4
                   12114: 
                   12115:        * src/: main/execute.C, types/pa_junction.h, types/pa_vjunction.h,
                   12116:          types/pa_vstateless_class.C: + optimized new VJunction(new
                   12117:          Junction(params)) to new VJunction(params), thousands of mallocs
                   12118:          removed
                   12119: 
                   12120: 2005-08-05  paf
                   12121: 
                   12122:        * src/: include/pa_memory.h, main/compile.tab.C, main/compile.y,
                   12123:          types/pa_vdouble.h, types/pa_vmethod_frame.C,
                   12124:          types/pa_vmethod_frame.h: + optimized ^call(vdouble), no junction
                   12125:          creation, no calls later
                   12126: 
                   12127:        * src/: classes/classes.C, classes/classes.h, classes/date.C,
                   12128:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   12129:          classes/hashfile.C, classes/image.C, classes/int.C,
                   12130:          classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
                   12131:          classes/response.C, classes/string.C, classes/table.C,
                   12132:          classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   12133:          include/pa_array.h, include/pa_cache_managers.h,
                   12134:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   12135:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   12136:          include/pa_dictionary.h, include/pa_dir.h,
                   12137:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   12138:          include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
                   12139:          include/pa_operation.h, include/pa_os.h, include/pa_request.h,
                   12140:          include/pa_request_charsets.h, include/pa_request_info.h,
                   12141:          include/pa_sapi.h, include/pa_socks.h,
                   12142:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   12143:          include/pa_stack.h, include/pa_string.h,
                   12144:          include/pa_stylesheet_connection.h,
                   12145:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   12146:          include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
                   12147:          include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
                   12148:          lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
                   12149:          lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
                   12150:          lib/smtp/smtp.h, main/compile.C, main/compile.y,
                   12151:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   12152:          main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
                   12153:          main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
                   12154:          main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
                   12155:          main/pa_memory.C, main/pa_os.C, main/pa_request.C,
                   12156:          main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
                   12157:          main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
                   12158:          main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
                   12159:          main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
                   12160:          targets/cgi/pa_threads.C, targets/cgi/parser3.C,
                   12161:          targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
                   12162:          types/pa_junction.h, types/pa_method.h, types/pa_value.C,
                   12163:          types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
                   12164:          types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
                   12165:          types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
                   12166:          types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
                   12167:          types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
                   12168:          types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.h,
                   12169:          types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
                   12170:          types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
                   12171:          types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemory.h,
                   12172:          types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
                   12173:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
                   12174:          types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
                   12175:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   12176:          types/pa_vstateless_object.h, types/pa_vstatus.C,
                   12177:          types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
                   12178:          types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
                   12179:          types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   12180:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
                   12181:          types/pa_wcontext.h, types/pa_wwrapper.h: . 2005 ;)
                   12182: 
                   12183:        * src/: lib/cord/cord.vcproj, lib/gd/gd.vcproj,
                   12184:          lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/pcre.vcproj,
                   12185:          lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
                   12186:          lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/compile.tab.C,
                   12187:          main/compile.y, main/compile_tools.C, main/compile_tools.h,
                   12188:          targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj: +
                   12189:          optimized constants in expressions vstring->vdouble
                   12190: 
                   12191: 2005-07-29  paf
                   12192: 
                   12193:        * src/types/pa_vclass.C: . shaped up error messages a bit
                   12194: 
                   12195:        * src/types/pa_vclass.C: + property getter can now be overridden
                   12196: 
                   12197:        * src/: main/execute.C, types/pa_vclass.C, types/pa_vobject.C: !
                   12198:          bug fix: static parent fields were not replaced in case
                   12199:          $derived:field[put] + property setter can now be overridden
                   12200: 
                   12201: 2005-07-28  paf
                   12202: 
                   12203:        * configure, configure.in, src/classes/classes.h,
                   12204:          src/classes/date.C, src/classes/file.C, src/classes/hash.C,
                   12205:          src/classes/hashfile.C, src/classes/image.C, src/classes/op.C,
                   12206:          src/classes/table.C, src/classes/xdoc.C, src/classes/xnode.C,
                   12207:          src/classes/xnode.h, src/include/pa_hash.h,
                   12208:          src/include/pa_version.h, src/main/execute.C,
1.116     moko     12209:          src/types/Makefile.am, src/types/pa_method.h,
                   12210:          src/types/pa_value.h, src/types/pa_vclass.C,
                   12211:          src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
                   12212:          src/types/pa_vconsole.h, src/types/pa_vcookie.C,
                   12213:          src/types/pa_vcookie.h, src/types/pa_vhash.h,
                   12214:          src/types/pa_vhashfile.h, src/types/pa_vimage.C,
                   12215:          src/types/pa_vimage.h, src/types/pa_vmethod_frame.h,
                   12216:          src/types/pa_vobject.C, src/types/pa_vobject.h,
                   12217:          src/types/pa_vproperty.h, src/types/pa_vrequest.C,
                   12218:          src/types/pa_vrequest.h, src/types/pa_vresponse.C,
                   12219:          src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
                   12220:          src/types/pa_vstateless_class.h,
1.95      moko     12221:          src/types/pa_vstateless_object.h, src/types/pa_vvoid.h,
                   12222:          src/types/pa_vxnode.C, src/types/pa_vxnode.h,
                   12223:          src/types/pa_wwrapper.h: + 3.2.0 beta: merged from
                   12224:          dynamic_fields_join
                   12225: 
                   12226:        * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
                   12227:          classes/xnode.C, include/pa_hash.h, main/execute.C,
                   12228:          types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
                   12229:          types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
                   12230:          types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
                   12231:          types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
                   12232:          types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
                   12233:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
                   12234:          types/pa_vresponse.h, types/pa_vstateless_object.h,
                   12235:          types/pa_vvoid.h, types/pa_vxnode.C, types/pa_vxnode.h,
                   12236:          types/pa_wwrapper.h: ! restored put_element('replace' param), and
                   12237:          restored its checks in vobject.put_element->static fields |
                   12238:          dynamic properties
                   12239: 
                   12240: 2005-07-27  paf
                   12241: 
                   12242:        * src/types/pa_vclass.C: ! changed to GET_ SET_ prefixes. for there
                   12243:          is some old code containing @set_name $name
                   12244: 
                   12245:        * src/types/pa_vobject.h: . fixed warning
                   12246: 
                   12247:        * configure, configure.in, src/include/pa_version.h,
1.116     moko     12248:          src/types/Makefile.am: 3.2.0beta started
1.95      moko     12249: 
                   12250:        * src/: classes/xnode.C, include/pa_hash.h,
                   12251:          types/pa_vstateless_class.C: ! new asserts were all false.
                   12252:          regretfully reverted them all to checks
                   12253: 
                   12254:        * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
                   12255:          classes/op.C, main/execute.C, types/pa_method.h,
                   12256:          types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
                   12257:          types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
                   12258:          types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
                   12259:          types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
                   12260:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
                   12261:          types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
                   12262:          types/pa_vstateless_object.h, types/pa_vvoid.h,
                   12263:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
                   12264:          joined_dynamic_fields: removed unused param from put_method
                   12265:          (returned to 3 params)
                   12266: 
                   12267:        * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vclass.h:
                   12268:          joined_dynamic_fields: dynamic get/set works with overriding
                   12269:          props [alpha2]
                   12270: 
                   12271:        * src/types/pa_vclass.C: joined_dynamic_fields: dynamic get/set
                   12272:          works [alfa]
                   12273: 
                   12274:        * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
                   12275:          classes/op.C, include/pa_hash.h, main/execute.C,
                   12276:          types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
                   12277:          types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
                   12278:          types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
                   12279:          types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
                   12280:          types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
                   12281:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
                   12282:          types/pa_vresponse.h, types/pa_vstateless_class.C,
                   12283:          types/pa_vstateless_object.h, types/pa_vvoid.h,
                   12284:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
                   12285:          joined_dynamic_fields: just compiled
                   12286: 
                   12287:        * src/: classes/date.C, classes/file.C, classes/hash.C,
                   12288:          classes/hashfile.C, classes/image.C, classes/table.C,
                   12289:          classes/xdoc.C, classes/xnode.h, main/execute.C,
                   12290:          types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
                   12291:          types/pa_vstateless_class.h: joined_dynamic_fields: started
                   12292: 
                   12293:        * src/types/pa_vobject.C: . object setters [only started, does not
                   12294:          work yet]
                   12295: 
                   12296:        * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vobject.C: .
                   12297:          object setters [only started, does not work yet]
                   12298: 
                   12299: 2005-07-26  paf
                   12300: 
                   12301:        * src/: include/pa_request.h, main/execute.C: . properties: set
                   12302:          works [alpha2]. for classes. todo: for objects
                   12303: 
                   12304:        * src/: classes/classes.h, include/pa_hash.h, main/execute.C,
                   12305:          types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
                   12306:          types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
                   12307:          types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
                   12308:          types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
                   12309:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
                   12310:          types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
                   12311:          types/pa_vstateless_object.h, types/pa_vvoid.h,
                   12312:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
                   12313:          properties: set works [alpha1]
                   12314: 
                   12315: 2005-07-25  paf
                   12316: 
                   12317:        * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h,
                   12318:          types/pa_vstateless_class.C, types/pa_vstateless_class.h: .
                   12319:          properties: started, get works [alpha1, other approach]
                   12320: 
                   12321:        * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h: .
                   12322:          properties: started, get works [alpha2]
                   12323: 
                   12324:        * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
                   12325:          pa_vstateless_class.h: . properties: started, get works [alpha]
                   12326: 
                   12327: 2005-07-15  paf
                   12328: 
                   12329:        * src/: classes/classes.h, classes/op.C, main/execute.C,
                   12330:          types/pa_junction.h, types/pa_property.h, types/pa_value.h,
                   12331:          types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
                   12332:          types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
                   12333:          types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
                   12334:          types/pa_vimage.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
                   12335:          types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
                   12336:          types/pa_vresponse.C, types/pa_vresponse.h,
                   12337:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   12338:          types/pa_vstateless_object.h, types/pa_vvoid.h,
                   12339:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.h,
                   12340:          types/pa_wwrapper.h, types/types.vcproj: + started property
                   12341:          [getters work but think of changing them too to precaching]
                   12342: 
                   12343: 2005-07-08  paf
                   12344: 
                   12345:        * src/main/pa_request.C: ! bugfix: $response:body[nonfile] caused
                   12346:          gpf
                   12347: 
                   12348: 2005-06-28  paf
                   12349: 
                   12350:        * src/: classes/file.C, main/untaint.C: ! string invariant violated
                   12351:          in passing empty strings to file::exec/cgi environment
                   12352: 
                   12353: 2005-06-06  paf
                   12354: 
                   12355:        * src/classes/: hash.C, string.C, table.C: ! bugfix ^string:sql
                   12356:          ^table:sql ^hash:sql now DO process $.bind option
                   12357: 
                   12358: 2005-05-24  paf
                   12359: 
                   12360:        * src/classes/file.C: ! bugfix ^file::load[mode;name;$.offset
                   12361:          $.limit] now work again [support was broken in 3.1.4]
                   12362: 
                   12363:        * src/: main/pa_string.C, classes/op.C: . steps toward removing
                   12364:          ALL_INTERIOR_POINTERS
                   12365: 
                   12366: 2005-05-12  paf
                   12367: 
                   12368:        * configure: 3.1.5beta
                   12369: 
                   12370:        * src/main/pa_common.C: ! bugfix -- recv()==0 is not an error
                   12371: 
                   12372:        * src/main/pa_common.C: ! bugfix ^file::load[mode;name;$.offset
                   12373:          $.limit] now work again [support was broken in 3.1.4]
                   12374: 
                   12375:        * src/lib/gd/gif.C: ! fixed image.fill, not it does not depend on
                   12376:          line-width  [was refusing to fill if line-width >1, thanks to
                   12377:          Seras <seras@pinxit.lt> for repro case
                   12378: 
                   12379: 2005-04-25  paf
                   12380: 
                   12381:        * src/types/pa_vdate.h: ! getenv("TZ")==0? TZ environment restored
                   12382:          correctly
                   12383: 
                   12384: 2005-04-19  paf
                   12385: 
                   12386:        * src/types/pa_vdate.h: bugfix: initial $date.TZ is 0, that results
                   12387:          in VString violating invariant!!
                   12388: 
                   12389:        * src/types/pa_vdate.h: bugfix: TZ now restored after roll if were
                   12390:          getenv("TZ")==null
                   12391: 
                   12392: 2005-04-08  paf
                   12393: 
                   12394:        * src/main/pa_charset.C: bugfix: UTF8->one-byte-per-char-encoding
                   12395:          bugfix: when there is no char in charset one byte produces 6
                   12396:          (&#255; <<max). increased buffer size!
                   12397: 
                   12398: 2005-03-23  paf
                   12399: 
                   12400:        * src/: types/pa_vdate.h, classes/date.C: ! bugfix:
                   12401:          ^date.sql-string now takes TZ into account
                   12402: 
                   12403: 2005-03-16  paf
                   12404: 
                   12405:        * INSTALL, src/include/pa_stack.h: . compiled on freebsd 5.3 with
                   12406:          gcc 3.4
                   12407: 
                   12408:        * src/types/pa_vhash.C: . warning about eof eol
                   12409: 
                   12410: 2005-02-17  paf
                   12411: 
                   12412:        * operators.txt, src/classes/op.C: + operator ^sleep(double
                   12413:          seconds)
                   12414: 
                   12415: 2005-02-02  paf
                   12416: 
                   12417:        * src/classes/xnode.C: beauty: removed needless includes
                   12418: 
                   12419: 2005-01-31  paf
                   12420: 
                   12421:        * src/types/pa_vmail.C: change: $.partX now always 1...  change:
                   12422:          $.partNoNumber now alias to $.part1
                   12423: 
                   12424:        * src/types/pa_vmail.C: change: incoming letter part contains
                   12425:          "content-disposition" header with any value? now considering that
                   12426:          part to be "file#" [for text/plain text/html were $.text#
                   12427:          $.html#]
                   12428: 
                   12429:        * INSTALL: updatet to latest working versions available
                   12430: 
                   12431: 2005-01-20  paf
                   12432: 
                   12433:        * configure.in, src/include/pa_version.h: version
                   12434: 
                   12435: 2005-01-19  paf
                   12436: 
1.116     moko     12437:        * src/: lib/gd/Makefile.am, lib/ltdl/Makefile.am,
                   12438:          targets/cgi/parser3.C, types/Makefile.am: forgotten makefiles.
                   12439:          couple warnings in parser3.C
1.95      moko     12440: 
                   12441: 2004-12-23  paf
                   12442: 
                   12443:        * src/main/pa_sql_driver_manager.C: sql connect string, rsplit @
                   12444: 
                   12445:        * src/main/pa_exec.C: win32: bugfix: file::cgi/exec now set current
                   12446:          dir to directory of script (when shbang used), not to directory
                   12447:          of its interpreter
                   12448: 
                   12449:        * src/include/pa_version.h: compiled on win32...
                   12450: 
                   12451:        * src/targets/cgi/parser3.C: now, when version (compiled on HOST),
                   12452:          we need more hspace
                   12453: 
                   12454:        * configure, configure.in, src/include/pa_version.h: configured
                   12455:          host to pa_version. will be displayed everywhere
                   12456: 
                   12457:        * src/main/pa_request.C: new: @unhandled_exception can prevent
                   12458:          exception from being logged by setting $exception.handled(1)
                   12459: 
                   12460:        * operators.txt, src/classes/file.C: change:
                   12461:          ^file::sql{query}[[options]] options: $.name[file name]
                   12462:          $.content-type[application/what]
                   12463: 
                   12464:        * src/: include/pa_common.h, main/pa_common.C,
                   12465:          types/pa_vhashfile.C: beauty: hashfile::open now creates dir for
                   12466:          new file
                   12467: 
                   12468:        * src/: classes/table.C, types/pa_vhash.C, types/pa_vhash.h:
                   12469:          bugfix: table->hash now regards _default
                   12470: 
                   12471:        * src/types/pa_vmethod_frame.h: bugfix: when method junction was
                   12472:          created by accessing $name_of_method it acquired bad self=closest
                   12473:          methodframe; instead of proper self (current class)
                   12474: 
                   12475:        * src/types/pa_vhashfile.C: bugfix: reading empty string from
                   12476:          hashfile produced bad cord
                   12477: 
                   12478: 2004-12-10  paf
                   12479: 
                   12480:        * src/: lib/smtp/comms.C, main/pa_common.C: DONT_LINGER can cause
                   12481:          subsequent failures though defined in .h
                   12482: 
                   12483:        * src/main/pa_common.C: comment on volatile
                   12484: 
                   12485:        * src/: include/pa_config_auto.h.in, main/pa_common.C: http: unix:
                   12486:          alarm function were not used since the beginning due to stupid
                   12487:          error [setsigjmp were not checked in configure.in]
                   12488: 
                   12489:        * src/main/pa_common.C: http: timeout setsockopt [if possible] on
                   12490:          unix too
                   12491: 
                   12492:        * src/main/pa_common.C: http: exception status of send/recv errors
                   12493:          change to most probable http.timeout
                   12494: 
                   12495:        * src/main/pa_common.C: win32: http connection $.timeout option now
                   12496:          works [setsockopt on send/receive]
                   12497: 
                   12498: 2004-12-08  paf
                   12499: 
                   12500:        * src/: classes/mail.C, types/pa_vmail.C: bugfix: mail body now
                   12501:          cstr-ed knowing mail charset, and untainting uri lang now knows
                   12502:          proper charset
                   12503: 
                   12504: 2004-11-24  paf
                   12505: 
                   12506:        * src/classes/hash.C: hash: adding/cloning adds/clones _default now
                   12507: 
                   12508:          $hash[  $.a[1]  $._default[def] ] #$hash2[^hash::create[$hash]]
                   12509:          $hash2[^hash::create[]] ^hash2.add[$hash] $hash2.shit
                   12510: 
                   12511: 2004-11-12  paf
                   12512: 
                   12513:        * src/types/pa_vmail.C: bugfix: mail:send[$.date[]] were ignored
                   12514:          [since 3.0.4]
                   12515: 
                   12516: 2004-11-09  paf
                   12517: 
                   12518:        * src/targets/cgi/parser3.C: debug: PA_DEBUG_CGI_ENTRY_EXIT if on,
                   12519:          writes basics to c:\parser3.log
                   12520: 
                   12521: 2004-10-21  paf
                   12522: 
                   12523:        * src/classes/xnode.C: bugfix: xnode.getAttribute[NS] now return
                   12524:          tainted strings [were returning clean onces]
                   12525: 
                   12526: 2004-10-15  paf
                   12527: 
                   12528:        * src/types/pa_vdouble.h: bugfix: ^for[i](1;1.5){} << did two
                   12529:          cycles(i=1; i=2), which was wrong, now does ONE
                   12530: 
                   12531: 2004-10-12  paf
                   12532: 
                   12533:        * etc/parser3.charsets/windows-1251.cfg: euro promille +/-
                   12534: 
                   12535: 2004-10-07  paf
                   12536: 
                   12537:        * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
                   12538:          main/pa_globals.C: debugger help: PA_RELEASE_ASSERTS enables
                   12539:          release asserts
                   12540: 
                   12541:        * src/: main/pa_string.C, include/pa_string.h: debugger help:
                   12542:          String.dump() to stdout in detailed form  [were String.v() in
                   12543:          short form]
                   12544: 
                   12545:        * src/lib/cord/cordbscs.c: debugger help: CORD_dump now dumpts
                   12546:          \t\r\n as @#| and truncates long char sequences less
                   12547: 
                   12548: 2004-10-06  paf
                   12549: 
                   12550:        * src/: include/pa_socks.h, main/pa_common.C, main/pa_socks.C:
                   12551:          win32 beauty: socket errors properly decoded
                   12552: 
                   12553: 2004-10-05  paf
                   12554: 
                   12555:        * src/: include/pa_request.h, main/pa_request.C: bugfix:
                   12556:          request::configure_user/admin done always, even if no
                   12557:          file-to-process useful in @unhandled_exception [say, if they
                   12558:          would want to mail by SMTP something]
                   12559: 
                   12560:        * src/main/pa_request.C: bugfix: cookie(and mail:recieved) fills
                   12561:          now performed prior to file loading [and @auto executing] thus
                   12562:          making $cookie:value available in @auto and in
                   12563:          @unhandled_exception when IIS is configured to run interpreter
                   12564:          even if no file exist
                   12565: 
                   12566: 2004-09-20  paf
                   12567: 
                   12568:        * src/main/pa_globals.C: libxml has bugs: it calls xmlMallocAtomic
                   12569:          somewhere where it should have called xmlMalloc and it calls
                   12570:          xmlFree when it should have not called it.  inserted two
                   12571:          workarounds: xmlMallocAtomic implemented as xmlMalloc, and
                   12572:          xmlFree just ignored.  put away a testcase, maybe someday libxml
                   12573:          author would fix all that.  until that day: we have SLOW garbage
                   12574:          collecting when many xml objects are alive hint: do
                   12575:          ^memory:compact[] before xdoc::create
                   12576: 
                   12577: 2004-09-17  paf
                   12578: 
                   12579:        * src/classes/file.C: bugfix: file::cgi headers were lost [typo
                   12580:          error from 3.0.8 version]
                   12581: 
                   12582: 2004-09-14  paf
                   12583: 
                   12584:        * src/types/pa_vhashfile.C: bugfix: hashfile.clear deleted only
                   12585:          part bugfix: hashfile.foreach iterated only part if hashfile were
                   12586:          modified inside
                   12587: 
                   12588: 2004-09-13  paf
                   12589: 
                   12590:        * src/main/pa_string.C: bugfix: $s[+008] ^eval($s) now parsed OK
                   12591:          [were as octal]
                   12592: 
                   12593:        * src/types/pa_vhashfile.C: beauty: not reproduced
                   12594:          $hashfile.key[$novalue] bug [reported by motorin], inserted
                   12595:          safety-check
                   12596: 
                   12597:        * src/types/pa_vhashfile.C: change: empty keys now error in parser
                   12598:          [not something obscure from sdbm lib]
                   12599: 
                   12600:        * src/types/pa_vhashfile.C: bugfix: error numbers now from errno.h
                   12601:          = strerror now returnes something and we can properly report that
                   12602:          to client
                   12603: 
                   12604:        * src/lib/sdbm/sdbm_private.h: change: limit on length(key+value)
                   12605:          now 8008 bytes, were 1008. perl sdbm compatibility now ruined
                   12606: 
                   12607:        * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
                   12608:          [tainted as-is] this helps //[space][newline] to remain as-is and
                   12609:          not be unnecessary optimized away [ruining javascript]
                   12610: 
                   12611:        * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
                   12612:          [tainted as-is]
                   12613: 
                   12614:        * src/classes/mail.C: bugfix: typo error
                   12615: 
                   12616: 2004-09-09  paf
                   12617: 
                   12618:        * src/main/pa_common.C: bugfix: loads headers with both \r\n and \n
                   12619:          separators bugfix: loads header with endings \r\n\r\n and \n\n
                   12620:          (bloody yandex.server)
                   12621: 
                   12622: 2004-09-06  paf
                   12623: 
                   12624:        * src/main/pa_charset.C: bugfix: two-bytes invalid chars in
                   12625:          TranscodeFromUTF8 considered valid. only >2bytes-long now %HH
                   12626:          encoded
                   12627: 
                   12628: 2004-09-01  paf
                   12629: 
                   12630:        * src/types/pa_vmail.C: change: multipart/mixed changed to
                   12631:          multipart/related outlook express have no problems showing
                   12632:          unrelated attachments.  todo: someday figure out a way of
                   12633:          multipart/mixed    multipart/related       text/html
                   12634:          image/xxx application/octet-stream << true attachments
                   12635: 
                   12636:        * src/types/pa_vmail.C: new:
                   12637:          ^mail:send[$.file[$.content-disposition can be overriden new:
                   12638:          empty mail header fields removed from letter
                   12639: 
                   12640:        * src/: classes/mail.C, include/pa_config_fixed.h,
                   12641:          types/pa_value.C, types/pa_value.h, types/pa_vmail.C: new:
                   12642:          ^mail:send[    $.file[       $.any[header]
                   12643: 
                   12644: 2004-08-30  paf
                   12645: 
                   12646:        * src/: include/pa_config_fixed.h, main/pa_common.C: beauty: less
                   12647:          warnings
                   12648: 
                   12649:        * src/main/pa_common.C: beauty: do not bother with charset
                   12650:          detection when ^file::load[binary
                   12651: 
                   12652: 2004-08-27  paf
                   12653: 
                   12654:        * src/main/pa_common.C: hack: for yandex.server http server
                   12655: 
                   12656: 2004-08-18  paf
                   12657: 
                   12658:        * src/main/pa_request.C: bugfix: Accept-Ranges: bytes  when sending
                   12659:          possibly-chunked response
                   12660: 
                   12661: 2004-08-17  paf
                   12662: 
                   12663:        * src/classes/file.C: bugfix: $f[^file::load[;http://]]
                   12664:          $f.content-type now = that of http response
                   12665: 
                   12666:        * src/classes/file.C: bugfix: $f[^file::load[;http://]]
                   12667:          $f.content-type now = that of http response
                   12668: 
                   12669: 2004-07-30  paf
                   12670: 
                   12671:        * src/: include/pa_request.h, main/pa_request.C,
                   12672:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C: bugfix:
                   12673:          win32: system&parser exceptions in release mode reported properly
                   12674:          parser exception in exception handler WERE mistakenly reported as
                   12675:          system exception, without details [in apache & isapi] +some
                   12676:          beauty in exception text
                   12677: 
                   12678:        * src/: include/pa_exception.h, main/pa_request.C,
                   12679:          targets/cgi/parser3.C: bugfix: win32: system&parser exceptions in
                   12680:          release mode reported properly parser exception in exception
                   12681:          handler WERE mistakenly reported as system exception, without
                   12682:          details
                   12683: 
                   12684:        * src/main/execute.C: beauty: simplified system exception handling
                   12685: 
                   12686: 2004-07-29  paf
                   12687: 
                   12688:        * src/classes/table.C: bugfix:
                   12689:          ^table.save[export.csv;$.separator[^;]] now works fine [separator
                   12690:          were ignored, and \t used unconditionally]
                   12691: 
                   12692:        * src/types/Makefile.am: added vhash.c
                   12693: 
                   12694: 2004-07-28  paf
                   12695: 
                   12696:        * src/: classes/date.C, classes/image.C, classes/math.C,
                   12697:          lib/ltdl/ltdl.c, lib/pcre/pcre_parser_ctype.c, lib/smtp/comms.C,
                   12698:          main/pa_common.C, targets/cgi/parser3.C, types/pa_vform.C,
                   12699:          types/pa_vmail.C: bugfix: isspace((unsigned char)c) everywhere.
                   12700:          failed on russian letters
                   12701: 
                   12702:        * src/: main/pa_string.C, types/pa_vmail.C, main/pa_common.C:
                   12703:          bugfix: isspace((unsigned char)c) everywhere. failed on russian
                   12704:          letters
                   12705: 
                   12706:        * src/main/pa_exec.C: bugfix: win32: chdir not needed, dir passwed
                   12707:          as 'currentDirectory' parameter to CreateProcess
                   12708: 
                   12709: 2004-07-27  paf
                   12710: 
                   12711:        * src/targets/cgi/parser3.vcproj: beauty: win32:
                   12712:          globaloptimizations ON, release:mapfile ON todo: copy .mapfile
                   12713:          from release somewhere [to help searching for unhandled system
                   12714:          exceptions]
                   12715: 
                   12716:        * src/types/pa_vdate.h: check: for invalid datetime after temporary
                   12717:          TZ shift
                   12718: 
                   12719:        * src/types/pa_vdate.h: bugfix: time checked not only at set_time
                   12720:          but also in ctor
                   12721: 
                   12722: 2004-07-26  paf
                   12723: 
                   12724:        * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
                   12725:          src/main/pa_request.C, src/types/pa_vfile.h,
                   12726:          src/types/pa_vhash.C, src/types/pa_vhash.h,
                   12727:          src/types/types.vcproj: new: $response:body/download[
                   12728:          $.file[name on disk]    $.name[of file for user]
                   12729:          $.mdate[date of last-modified. default from directory] ]
                   12730: 
                   12731:        * src/classes/file.C: moving file:send somewhere else..
                   12732: 
                   12733:        * src/: classes/file.C, include/pa_sapi.h, main/pa_common.C,
                   12734:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C: patched:
                   12735:          ^file:send by Victor Fedoseev <vvf_ru@mail.ru> todo: turn it to
                   12736:          $response:download[ $.filename[filename] $.option[] ,, ]
                   12737: 
                   12738:        * src/classes/file.C: beauty: invalid mode thoroughly reported
                   12739: 
                   12740: 2004-07-21  paf
                   12741: 
                   12742:        * src/types/pa_vmail.C: bugfix: too long header values now splitted
                   12743:          to several lines
                   12744: 
                   12745:          were: header: vaaaaaaaaaaaalue now: header: vaaaaaa  aaalue
                   12746: 
                   12747:          note: ms outlook[!express] shows only first 255 characters of
                   12748:          subject
                   12749: 
                   12750: 2004-07-15  paf
                   12751: 
                   12752:        * src/main/pa_os.C: bugfix: locks now compiled in [were mistakenly
                   12753:          off]
                   12754: 
                   12755: 2004-07-14  paf
                   12756: 
                   12757:        * src/classes/table.C: bugfix: $.bind values now got untainted
                   12758:          according to lang  [were: as-is]
                   12759: 
                   12760: 2004-07-07  paf
                   12761: 
                   12762:        * src/classes/op.C: bugfix: cache with 2 params caused assertion,
                   12763:          checked that
                   12764: 
                   12765:        * src/main/pa_exec.C: bufix: on unix AND win32 environment string
                   12766:          now untainted according to their languages.  were: as-is.
                   12767:          EVERYWHERE
                   12768: 
                   12769:        * src/: classes/file.C, main/pa_exec.C: bufix: on unix AND win32
                   12770:          environment string now untainted according to their languages.
                   12771:          were: as-is. EVERYWHERE
                   12772: 
                   12773:        * src/main/pa_exec.C: bufix: on unix environment string now
                   12774:          untainted according to their languages.  were: as-is. on win32:
                   12775:          ok
                   12776: 
                   12777:        * parser3.vssscc: ...would not go unnoticed
                   12778: 
                   12779:        * src/main/pa_charset.C: convinience: transcodeFromUTF8 now never
                   12780:          fails. in case on input appears nonutf, those bytes will be
                   12781:          printed in %HH form. that can be easily decoded/recovered.
                   12782: 
                   12783:          this form is quite noticable, and hopefully would not go noticed
                   12784: 
                   12785: 2004-07-06  paf
                   12786: 
                   12787:        * src/main/pa_exec.C: bufix: on unix environment string now
                   12788:          untainted according to their languages.  were: as-is. on win32:
                   12789:          ok
                   12790: 
                   12791: 2004-07-01  paf
                   12792: 
                   12793:        * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
                   12794:          lib/gd/gd.vcproj, lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
                   12795:          lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
                   12796:          lib/pcre/pcre_parser_ctype.vcproj, lib/smtp/smtp.vcproj,
                   12797:          main/main.vcproj, targets/cgi/parser3.vcproj,
                   12798:          targets/isapi/parser3isapi.vcproj, types/types.vcproj: win32:
                   12799:          option: global optimization ON
                   12800: 
                   12801:        * src/main/untaint.C: workaround kinda bug in libxml: life requires
                   12802:          to do xdoc::create{invalid chars} standard disables chars less
                   12803:          then \x20, except tab, cr, lf.
                   12804: 
                   12805:          changed tainting so that those become '!'
                   12806: 
                   12807: 2004-06-25  paf
                   12808: 
                   12809:        * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
                   12810:          int on odd address [prev bugfix failed due to superwize
                   12811:          optimizer, which turned memcpy into same 'ld' asm command]
                   12812: 
                   12813:        * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
                   12814:          int on odd address
                   12815: 
                   12816: 2004-06-22  paf
                   12817: 
                   12818:        * src/sql/pa_sql_driver.h: note: about possible optimization
                   12819: 
                   12820:        * operators.txt, src/classes/hash.C, src/classes/memory.C,
                   12821:          src/classes/string.C, src/classes/table.C, src/classes/void.C,
                   12822:          src/include/pa_config_includes.h: new:        ^void:sql{call
                   12823:          paf(:a)}[                $.bind[                         $.a[2]
                   12824:                 ]       ] output variables work.  todo: check in out
                   12825:          variables
                   12826: 
                   12827: 2004-06-18  paf
                   12828: 
                   12829:        * src/: classes/file.C, classes/hash.C, classes/string.C,
                   12830:          classes/table.C, classes/void.C, include/pa_globals.h,
                   12831:          include/pa_sql_connection.h, main/compile.tab.C,
                   12832:          sql/pa_sql_driver.h: started:         ^void:sql{call paf(:a)}[
                   12833:                      $.bind[                         $.a[2]          ]
                   12834:          ] input variables work.  todo:output
                   12835: 
                   12836:        * src/targets/cgi/parser3.C: bugfix: iis specific
                   12837:          http://parser3/_bug.html?404;http://hpsv/test/ now $request:uri
                   12838:          /_bug.html?404;http://hpsv/test/
                   12839:          --------------------------------------------------------------------------------
                   12840:          $request:query IIS-STATUS=404&IIS-DOCUMENT=http://hpsv/test/
                   12841:          --------------------------------------------------------------------------------
                   12842:          IIS-STATUS="404" IIS-DOCUMENT="http://hpsv/test/"
                   12843: 
                   12844: 2004-06-16  paf
                   12845: 
                   12846:        * src/targets/cgi/parser3.C: new: iis specific
                   12847:          http://parser3/_bug.html?404;http://server/_bug.html?f=v now
                   12848:          $request:query
                   12849:          IIS-STATUS=404&IIS-DOCUMENT=http://server/_bug.html&f=v
                   12850:          $form:fields IIS-STATUS="404"
                   12851:          IIS-DOCUMENT="http://server/_bug.html" f="v"
                   12852: 
                   12853:          todo: isapi too
                   12854: 
                   12855: 2004-05-26  paf
                   12856: 
                   12857:        * src/include/pa_version.h: 3.1.3
                   12858: 
                   12859:        * operators.txt: beauty: removed outdated level 'table'
                   12860: 
                   12861:        * etc/parser3.charsets/x-mac-cyrillic.cfg: added: thanks to konst
                   12862: 
                   12863:        * src/main/pa_string.C: beauty: removed 3 warnings
                   12864: 
                   12865:        * src/: include/pa_string.h, classes/table.C, main/untaint.C,
                   12866:          classes/op.C: beauty: removed outdated level 'table'
                   12867: 
                   12868: 2004-05-25  paf
                   12869: 
                   12870:        * src/lib/sdbm/apr_file_io.C: bugfix: bad seek wrapper
                   12871:          implementation. mistery: how anything worked
                   12872: 
                   12873:        * src/sql/pa_sql_driver.h: beauty: param renamed and comment
                   12874:          changed, it is now safe to use url if pointers to it are stored
                   12875:          to gc mem
                   12876: 
                   12877:        * src/: main/pa_exec.C, types/pa_vhashfile.C: bugfix: hashfile
                   12878:          unknown errors reported and not cause SIGSEGV now
                   12879: 
                   12880: 2004-05-24  paf
                   12881: 
                   12882:        * src/: include/pa_string.h, lib/cord/cordbscs.c,
                   12883:          lib/cord/include/cord.h, lib/cord/cordxtra.c: cancel: more speed,
                   12884:          less memory: CORD_chars_block originally intended to ...  it was
                   12885:          good that CORD_chars_block were not used: it consumes more memory
                   12886:          [and, might be slow too] undoing that. [and removed that func so
                   12887:          that it would not confuse parser developer in future]
                   12888: 
                   12889:        * src/: include/pa_string.h, lib/cord/include/cord.h: more speed,
                   12890:          less memory: CORD_chars_block originally intended to
                   12891:          speedup/reduce mem usage were forgotten, and were used stupid
                   12892:          CORD_chars
                   12893: 
                   12894:        * src/include/pa_config_auto.h.in: bugfix: bigendian check added
                   12895: 
                   12896:        * src/include/: pa_config_fixed.h, pa_string.h: bugfix: on
                   12897:          BIGENDIAN processors space-conserving mech failed, causing
                   12898:          SIGSEGV/SIGBUS and SAPI::abort("unknown untaint lang#%d",
                   12899:          (1|2|3));
                   12900: 
                   12901: 2004-05-14  paf
                   12902: 
                   12903:        * src/types/: Makefile.am, pa_vvoid.C, pa_vvoid.h, types.vcproj:
                   12904:          bugfix: void now has vfile value, and $response:body[] works OK
                   12905: 
                   12906: 2004-05-12  paf
                   12907: 
                   12908:        * src/types/: pa_vbool.h, pa_vhash.h, pa_vhashfile.h, pa_vtable.h:
                   12909:          beauty: ^if(def $bool) now equals ^if($bool) and shaped up other
                   12910:          sources to use is_defined() {return as_bool();} along VBool
                   12911: 
                   12912: 2004-05-11  paf
                   12913: 
                   12914:        * src/include/pa_exec.h: bugfix: gpf on file::exec/cgi because of
                   12915:          referencing to local objects
                   12916: 
                   12917:        * src/: classes/mail.C, include/pa_exec.h, main/compile.tab.C,
                   12918:          types/pa_vmail.C, types/pa_vmail.h: bugfix: bcc with sendmail now
                   12919:          left intact
                   12920: 
                   12921: 2004-04-15  paf
                   12922: 
                   12923:        * src/classes/date.C: merged: beauty: unused var removed
                   12924: 
                   12925:        * src/classes/date.C: beauty: unused var removed
                   12926: 
                   12927:        * src/include/: pa_exec.h: bugfix: interface without pointer
                   12928:          provoked bug
                   12929: 
                   12930: 2004-04-09  paf
                   12931: 
                   12932:        * src/types/pa_vform.C: merge: bugfix: form:imap were incorrect
                   12933: 
                   12934:        * src/types/pa_vform.C: bugfix: form:imap were incorrect
                   12935: 
                   12936: 2004-04-08  paf
                   12937: 
                   12938:        * src/classes/date.C: new: ^date::create[y-m-d
                   12939:          h-M-s>>.milliseconds<<] now allowed, ignored so far
                   12940: 
                   12941:        * src/main/pa_xml_io.C: merged: bugfix /etc/xml/catalog
                   12942: 
                   12943:        * src/main/pa_xml_io.C: bugfix: in safe mode -- disabled attempts
                   12944:          to consult default catalog [usually, that file belongs to other
                   12945:          user/group]
                   12946: 
                   12947: 2004-04-06  paf
                   12948: 
                   12949:        * src/main/pa_common.C: beauty: gcc warning removed
                   12950: 
                   12951:        * src/main/: compile.tab.C, compile.y: bugfix: gcc refused to
                   12952:          accept that trick, trying other
                   12953: 
                   12954:        * src/main/: compile.tab.C, compile.y: bugfix: step3 to fix
                   12955:          explicit result problem
                   12956: 
                   12957:        * src/main/: compile.tab.C, compile.y: bugfix: step2 to fix
                   12958:          explicit result problem
                   12959: 
                   12960:        * src/main/: compile.tab.C, compile.y: bugfix: step1 to fix
                   12961:          explicit result problem
                   12962: 
                   12963:        * operators.txt, src/classes/string.C: new: ^string.append[string]
                   12964: 
                   12965:        * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
                   12966:          main/execute.C: attempt_check_call_in_explicit_result_mode:
                   12967:          failed
                   12968: 
                   12969:        * src/main/pa_common.C: bugfix: of 1.175 bugfix:
                   12970:          http://i.p.a.ddress gethostbyaddr added [on some platforms
                   12971:          gethostbyname failed with such 'domains'] now checked properly,
                   12972:          were: needless reverse/forward dns lookup
                   12973: 
                   12974:        * src/main/pa_common.C: bugfix: of 1.175 bugfix:
                   12975:          http://i.p.a.ddress gethostbyaddr added [on some platforms
                   12976:          gethostbyname failed with such 'domains'] now checked properly,
                   12977:          were: needless reverse/forward dns lookup
                   12978: 
                   12979:        * src/main/: compile.C, compile.tab.C, compile.y: reimplemented:
                   12980:          @method[][result] means "no string output here" moved to lexical
                   12981:          level [on grammar level it were too difficult]
                   12982: 
                   12983:        * operators.txt, src/include/pa_string.h, src/main/compile.tab.C,
                   12984:          src/main/compile.y, src/main/compile_tools.h,
                   12985:          src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h: new:
                   12986:          @method[][result] means "no string output here", implemented part
                   12987:          of that idea: compiler throws away string literal generation
                   12988:          code. and barks nonwhitespace chars
                   12989: 
                   12990:        * operators.txt: truth: removed comment about $ORIGIN
                   12991: 
                   12992: 2004-04-05  paf
                   12993: 
                   12994:        * configure.in, src/doc/html2chm.cmd, src/doc/sources2html.cmd,
                   12995:          src/include/pa_version.h, src/main/pa_common.C,
                   12996:          src/targets/isapi/parser3isapi.C: merged with 3.1.3
                   12997: 
                   12998:        * etc/parser3.charsets/x-mac-cyrillic.cfg: added: donated by
                   12999:          Konstantin Tomashevitch [mailto:konst@design.ru]
                   13000: 
                   13001:        * src/doc/html2chm.cmd: beauty: no need in bg here
                   13002: 
                   13003:        * src/doc/sources2html.cmd: beauty: same window, in bg it
                   13004:          interfered with FAR console
                   13005: 
                   13006:        * configure, configure.in: 3.1.3
                   13007: 
                   13008:        * src/targets/isapi/parser3isapi.C: beauty: removed some warnings
                   13009: 
                   13010:        * src/main/pa_common.C: removed warning
                   13011: 
                   13012:        * src/include/pa_version.h: 3.1.3
                   13013: 
                   13014: 2004-04-02  paf
                   13015: 
                   13016:        * src/main/pa_string.C: bugfix: $s[009] ^s.int[] now 9, were error
                   13017: 
                   13018:        * src/targets/cgi/parser3.C: new: CGI_PARSER_LOG env variable
                   13019:          allows to specify where to put parser log file
                   13020: 
                   13021: 2004-04-01  paf
                   13022: 
                   13023:        * src/classes/table.C: bugfix: bugfix: table::load last line
                   13024:          without tab and enter were ignored
                   13025: 
                   13026:        * src/: include/pa_cache_managers.h, include/pa_globals.h,
                   13027:          include/pa_socks.h, main/pa_cache_managers.C, main/pa_globals.C,
                   13028:          main/pa_socks.C, targets/cgi/parser3.C,
                   13029:          targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.def:
                   13030:          bugfix: sql connections now are disconnected
                   13031: 
                   13032: 2004-03-30  paf
                   13033: 
                   13034:        * src/classes/table.C: bugfix: table::load last line without tab
                   13035:          and enter were ignored
                   13036: 
                   13037:        * src/classes/table.C: bufix: if last table lines were commented,
                   13038:          gpfed
                   13039: 
                   13040:        * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
                   13041:          doc/ClassExample3.dox, doc/chmhelper.pl, doc/class.dox,
                   13042:          doc/compiler.dox, doc/doxygen.cfg, doc/exception.dox,
                   13043:          doc/executor.dox, doc/footer.htm, doc/index.dox, doc/memory.dox,
                   13044:          doc/methoded.dox, doc/object.dox, doc/string.dox,
                   13045:          doc/targets.dox, doc/value.dox, include/pa_version.h,
                   13046:          main/pa_cache_managers.C, main/pa_stylesheet_connection.C,
                   13047:          targets/isapi/parser3isapi.vcproj, types/pa_vform.C: merged
                   13048:          bugfixes from 3.1.2, changed version to 3.1.3beta
                   13049: 
                   13050: 2004-03-29  paf
                   13051: 
                   13052:        * src/types/pa_vhashfile.C: bugfix: empty key on hashfile.get
                   13053:          causes gpf
                   13054: 
                   13055:        * src/doc/: ClassExample1.dox, ClassExample2.dox,
                   13056:          ClassExample3.dox, chmhelper.pl, class.dox, compiler.dox,
                   13057:          doxygen.cfg, exception.dox, executor.dox, footer.htm, index.dox,
                   13058:          memory.dox, methoded.dox, object.dox, string.dox, targets.dox,
                   13059:          value.dox: translated to english
                   13060: 
                   13061: 2004-03-25  paf
                   13062: 
                   13063:        * src/targets/isapi/parser3isapi.vcproj: beauty: one more
                   13064:          parser3project dependency removed
                   13065: 
                   13066:        * src/main/: pa_cache_managers.C, pa_stylesheet_connection.C:
                   13067:          bugfix: refused to compile without xml
                   13068: 
                   13069:        * src/types/pa_vform.C: beauty: removed warning
                   13070: 
                   13071:        * src/classes/classes.vcproj: merged bugfix: now all compiles in
                   13072:          any folder [removed last ;) folder dependency]
                   13073: 
                   13074:        * src/classes/classes.vcproj: bugfix: now all compiles in any
                   13075:          folder [removed last ;) folder dependency]
                   13076: 
                   13077:        * src/include/pa_version.h: release
                   13078: 
                   13079:        * src/lib/gd/gif.C: new: ^image.pixel(outof;bounds) now returns -1
                   13080: 
                   13081:        * src/classes/table.C: beauty: comment& more meaningful error
                   13082:          message
                   13083: 
                   13084:        * src/classes/hash.C: bugfix: ^hash::sql{one column} now produces
                   13085:          $.hash[$.column_value1(true) ... ] [were producing some strang
                   13086:          thing]
                   13087: 
                   13088: 2004-03-23  paf
                   13089: 
                   13090:        * src/: classes/image.C, main/pa_common.C: bugfix: ^image.polyline
                   13091:          and http status line parsing checked number of columns in table
                   13092:          [user reported an assert]
                   13093: 
                   13094:        * operators.txt: example: on hashfile
                   13095: 
                   13096:        * src/: classes/op.C, types/pa_value.C, types/pa_wcontext.C:
                   13097:          bugfix: junction reattach now actually reattaches a junction to
                   13098:          new wcontext [were only assigning it to junction, which caused
                   13099:          junction tracking to loose junction, and it's context were not
                   13100:          killed, and it tried to process in invalid context, gpf]
                   13101: 
                   13102:        * src/targets/cgi/parser3.C: debug helper added
                   13103: 
                   13104: 2004-03-19  paf
                   13105: 
                   13106:        * src/types/pa_wcontext.C: beauty: error messages removed duplicate
                   13107:          "type(type)" in braces
                   13108: 
                   13109: 2004-03-10  paf
                   13110: 
                   13111:        * operators.txt, src/classes/xdoc.C, src/classes/xnode.C,
                   13112:          src/classes/xnode.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
                   13113:          src/types/pa_vxnode.C, src/types/pa_vxnode.h: new: refined
                   13114:          solution to search-in-namespaces problem:
                   13115:          $xdoc.search-namespaces.x[http://pif.design.ru/]
                   13116:          $nodes[^xdoc.select[//x:second]]
                   13117: 
                   13118:        * operators.txt, src/classes/xnode.C: new: xnode.select*[xpath
                   13119:          expression][[NAMESPACES HASH]] allows to search for info in
                   13120:          namespaces
                   13121: 
                   13122:          $nodes[^xdoc.select[//x:second][
                   13123:          $.x[http://pif.design.ru/] ]]
                   13124: 
                   13125: 2004-03-09  paf
                   13126: 
                   13127:        * operators.txt, src/main/pa_common.C: new:
                   13128:          ^file::load[...][options]         $.form[
                   13129:          !$.field1[string]
                   13130:          !$.field2[^table::create{one_column_only^#0Avalue1^#0Avalue2}]
                   13131:               ]         !$.body[string]
                   13132: 
                   13133:          GET ?here notGET(POST, HEAD, others) in content-type:
                   13134:          application/x-www-form-urlencoded
                   13135: 
                   13136:          todo: upload files ability
                   13137: 
                   13138:        * src/lib/cord/cordxtra.c: bugfix: CORD_pos were not fixed
                   13139:          properly, done
                   13140: 
                   13141: 2004-03-05  paf
                   13142: 
                   13143:        * operators.txt, src/main/pa_common.C: new: file::load[;http://
                   13144:          GET/POST $.form[$.fields started, not tested yet
                   13145:          todo:$.field[table] for multiple values
                   13146: 
                   13147:        * operators.txt: new: http:// options $.user $.password basic
                   13148:          authorization
                   13149: 
                   13150:        * src/main/pa_common.C: beauty: link to rtf added
                   13151: 
                   13152:        * operators.txt, src/include/pa_common.h, src/main/pa_common.C:
                   13153:          new: http:// options $.user $.password basic authorization
                   13154: 
                   13155:        * src/main/pa_common.C: beauty: removed needless vars
                   13156: 
                   13157:        * operators.txt: new: pgsql option [like that recently added to
                   13158:          oracle driver]             ClientCharset=parser-charset <<
                   13159:          charset in which parser thinks client works
                   13160: 
                   13161:        * operators.txt: new: odbc option [like that recently added to
                   13162:          oracle driver]             ClientCharset=parser-charset <<
                   13163:          charset in which parser thinks client works
                   13164: 
                   13165:        * src/sql/pa_sql_driver.h: beauty: important warning added
                   13166: 
                   13167:        * etc/parser3.charsets/koi8-r.cfg: there's special code for grad
                   13168:          char!
                   13169: 
                   13170:        * etc/parser3.charsets/windows-1251.cfg: typo
                   13171: 
                   13172: 2004-03-04  paf
                   13173: 
                   13174:        * src/main/pa_sql_driver_manager.C: speedup: charset lookups
                   13175:          cached, sql transcoding now goes faster
                   13176: 
                   13177:        * operators.txt: new: mysql option [like that recently added to
                   13178:          oracle driver]             ClientCharset=parser-charset <<
                   13179:          charset in which parser thinks client works
                   13180: 
                   13181:        * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: keyboard
                   13182:          typo error
                   13183: 
                   13184:        * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: typograph
                   13185:          chars commented
                   13186: 
                   13187: 2004-03-03  paf
                   13188: 
                   13189:        * INSTALL: note: added on libgc on FreeBSD, thanks to Andrey N.
                   13190:          Pazychev <135@ugtel.ru> and Goor <goor@hotbox.ru>
                   13191: 
                   13192: 2004-03-02  paf
                   13193: 
                   13194:        * operators.txt: new[update typo]:     !^void.left(n)
                   13195:          nothing     !^void.right(n)        nothing     !^void.mid(p[;n])
                   13196:                nothing
                   13197: 
                   13198:        * operators.txt, src/classes/void.C: new:     !^void.left(n)
                   13199:          nothing     !^void.right(n)        nothing     !^void.pos(p[;n])
                   13200:                nothing
                   13201: 
                   13202:        * operators.txt, src/classes/file.C, src/include/pa_string.h: new:
                   13203:          ^file::sql[[name_to_become_$.name]]{} query result must be one
                   13204:          row with columns:   first: data   second: file name   third:
                   13205:          content-type
                   13206: 
                   13207:        * operators.txt, src/classes/file.C: ^file.sql-string[] inside
                   13208:          ^connect gets properly escaped string, which can be passed to
                   13209:          request now this for mysql only. it's up to parser sql driver to
                   13210:          fix zeros properly
                   13211: 
                   13212:        * INSTALL: note: added on building apache with this option:
                   13213:          --enable-shared=max thanks to Victor Fedoseev <vvf_ru@mail.ru>
                   13214: 
                   13215: 2004-03-01  paf
                   13216: 
                   13217:        * src/targets/isapi/parser3isapi.C: new: apache module & isapi
                   13218:          extension memory:compact befor processingrequest
                   13219: 
                   13220:        * operators.txt, src/classes/hash.C: new: ^hash._keys[>>name<<] to
                   13221:          call sole column of result
                   13222: 
                   13223:        * operators.txt, src/classes/image.C, src/lib/gd/gif.C,
                   13224:          src/lib/gd/gif.h: new: ^image.pixel(x;y)[(color)]         get/set
                   13225:          pixel color
                   13226: 
                   13227:        * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
                   13228:          beauty: image -- less checks [were ugly impl]
                   13229: 
                   13230:        * src/classes/string.C: bugfix: ^string.left/right/mid with
                   13231:          negative values now considered bad
                   13232: 
                   13233:        * src/main/pa_common.C: bugfix: INADDR_NONE not everywhere defined
                   13234: 
                   13235:        * src/: classes/xdoc.C, types/pa_vxdoc.h: bugfix: boolean output
                   13236:          options now have unified defaults [after transform
                   13237:          indent/omit-xml-declaration/standalone 'default' erroreously
                   13238:          meant 'true']
                   13239: 
                   13240:        * src/main/pa_common.C: bugfix: http://i.p.a.ddress gethostbyaddr
                   13241:          added [on some platforms gethostbyname failed with such
                   13242:          'domains']
                   13243: 
                   13244:        * src/include/pa_config_auto.h.in: no select check, no define
                   13245: 
                   13246:        * src/classes/string.C: feature: ^string.trim both parameters may
                   13247:          be empty-strings, meaning kind=both chars=whitespaces
                   13248: 
                   13249:        * src/lib/smtp/comms.C: bugfix: use SO_LINGER if no SO_DONTLINGER
                   13250:          exist
                   13251: 
                   13252:        * src/classes/string.C: check: trim 'chars' must not be empty,
                   13253:          exception if it is
                   13254: 
                   13255:        * src/classes/string.C: changed: ^string.trim [] << both,
                   13256:          whitespaces [start|both|end] << kind, whitespaces
                   13257:          [start|both|end;chars]  full
                   13258: 
                   13259: 2004-02-27  paf
                   13260: 
                   13261:        * operators.txt, src/classes/string.C, src/main/pa_string.C: new
                   13262:          method: ^string.trim[start|both|end[;chars]]        default
                   13263:          'chars' -- whitespace chars finished
                   13264: 
                   13265:        * operators.txt, src/classes/string.C, src/include/pa_string.h,
                   13266:          src/main/pa_string.C: new method:
                   13267:          ^string.trim[start|both|end[;chars]]        default 'chars' --
                   13268:          whitespace chars   started, only start works
                   13269: 
                   13270:        * src/main/compile.C: bugfix: line numbers after
                   13271:          ^process{}[$.line(-10]] can be negative, allowed to print they as
                   13272:          signed
                   13273: 
                   13274:        * src/main/untaint.C: speed: there's no \n chars in output
                   13275:          [normally], so no need to optimize them they could be retrived
                   13276:          from databases, though. but 1. should be replaced 2. if not
                   13277:          optimized, no harm done
                   13278: 
                   13279:        * src/main/pa_exec.C: bugfix: waitpid could be interrupted --
                   13280:          ^file::exec/cgi could return invalid status & zombie child can
                   13281:          remain for short period until process exists [very bad in
                   13282:          mod_parser3] http://i2/tasks/edit/?id=4629451867179521923
                   13283: 
                   13284:        * src/lib/smtp/smtp.h: bugfix: SMTP buffer overflow could allow
                   13285:          malicious SMTP server to attack as by returning too long status
                   13286:          responses http://i2/tasks/edit/?id=4629448401140924947
                   13287: 
                   13288: 2004-02-26  paf
                   13289: 
                   13290:        * operators.txt: feature: ^process...{CODE}[now has options] which
                   13291:          are         $.main[to what to rename @main]         $.file[file,
                   13292:          from which (user says) goes that CODE]         $.lineno(line
                   13293:          number in that file, where CODE starts. may be negative)
                   13294: 
                   13295:        * operators.txt, src/classes/op.C, src/include/pa_request.h,
                   13296:          src/main/compile.C, src/main/compile_tools.h,
                   13297:          src/main/pa_request.C: feature: ^process...{CODE}[now has
                   13298:          options] which are         $.main[to what to rename @main]
                   13299:          $.file[file, from which (user says) goes that CODE]
                   13300:          $.lineno(line number in that file, where CODE starts. may be
                   13301:          negative)
                   13302: 
                   13303: 2004-02-25  paf
                   13304: 
1.116     moko     13305:        * etc/parser3.charsets/Makefile.am: bugfix: @sysconfdir@ used [were
                   13306:          old @charsetsdir@ recently erased from configure.in]
1.95      moko     13307: 
                   13308:        * src/classes/hash.C: feature: ^hash::sql{one colum result} now
                   13309:          produces hash of column=>1
                   13310: 
                   13311:        * src/lib/smtp/smtp.h: beauty: couple of #ifdef-s to compile even
                   13312:          with incomplete errno constants set
                   13313: 
                   13314: 2004-02-24  paf
                   13315: 
                   13316:        * src/lib/smtp/smtp.C: smtp on unix: authors of lib/smtp never read
                   13317:          "man select"
                   13318: 
                   13319:        * src/main/pa_os.C: beauty: <0 better then ==-1
                   13320: 
                   13321:        * src/lib/smtp/comms.C: smtp on unix: steps to work on unix
                   13322: 
                   13323:        * src/lib/smtp/: smtp.C: smtp on unix: steps to work on unix
                   13324: 
1.116     moko     13325:        * src/classes/Makefile.am: smtp on unix: steps to work on unix
1.95      moko     13326: 
                   13327:        * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp on
                   13328:          unix: steps to work on unix [extracted 'to']
                   13329: 
                   13330:        * src/classes/mail.C: smtp on unix: steps to work on unix
                   13331: 
                   13332:        * src/lib/smtp/smtp.C: smtp on unix: compiled on win32
                   13333: 
1.116     moko     13334:        * src/: lib/smtp/Makefile.am, lib/smtp/comms.C, lib/smtp/smtp.C,
                   13335:          lib/smtp/smtp.h, targets/cgi/Makefile.am: started porting smtp to
                   13336:          unix [testing on solaris]
1.95      moko     13337: 
                   13338: 2004-02-20  paf
                   13339: 
                   13340:        * src/classes/xdoc.C: beauty: ugly code removed, thanks to egr for
                   13341:          pointing that out
                   13342: 
                   13343:        * src/classes/xdoc.C: bugfix: <tag attr="&#digital_entity;" bug
                   13344:          fixed again [same solution, mistanenly removed one line]
                   13345: 
                   13346: 2004-02-19  paf
                   13347: 
                   13348:        * src/: classes/date.C, classes/image.C, types/pa_vdate.h: feature:
                   13349:          date::create from bad datetime in spring daylightsaving hole now
                   13350:          OK for all platforms [on some platforms it failed]
                   13351: 
                   13352:        * src/classes/: date.C, image.C: beauty: date::create[bad date time
                   13353:          in daylightsaving hole] now throws error
                   13354: 
                   13355:        * src/classes/date.C: comment: mistake fixed
                   13356: 
                   13357: 2004-02-18  paf
                   13358: 
                   13359:        * src/: classes/xdoc.C, include/pa_charset.h: beauty: xdoc.string
                   13360:          now renderes in $request:charset, but in header puts
                   13361:          $response:charset todo: make that default only so that coder
                   13362:          could override that
                   13363: 
                   13364:        * src/classes/xdoc.C: beauty: xhtml doctype-public/system forcly
                   13365:          turns off omit-xml-declaration
                   13366: 
                   13367:        * src/classes/xdoc.C: feature: reimplemented xhtml output, see
                   13368:          /.xsl for sample
                   13369: 
                   13370: 2004-02-17  paf
                   13371: 
                   13372:        * src/classes/xdoc.C: beauty: needless helper class removed
                   13373: 
                   13374:        * src/classes/xdoc.C: beauty: method=html outputxmlbuffer not
                   13375:          copied extra time
                   13376: 
                   13377:        * src/classes/xdoc.C: bugfound: meta again, now somewhere in xhtml
                   13378:          part of libxml
                   13379: 
                   13380:        * src/classes/xdoc.C: new: xhtml now works [libxslt prevented
                   13381:          libxml to do the work] <xsl:output        method="html"
                   13382:          doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
                   13383:          doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
                   13384:          />
                   13385: 
                   13386:        * src/classes/xdoc.C: beauty: no <meta ... charset generated
                   13387: 
                   13388:        * src/types/pa_vxdoc.h: bugfix: ^xdoc::transform [note double :]
                   13389:          caused assertion
                   13390: 
                   13391:        * src/classes/hash.C: bugfix: ^hash.add[$hash] ^hash.sub[$hash]
                   13392:          could hang. now such add does nothing, sub clears $hash
                   13393: 
                   13394:        * src/main/untaint.C: bugfix: one last char prior to "spaces<" were
                   13395:          not made quoted-printable
                   13396: 
                   13397:        * src/main/pa_uue.C: bugfix: uuencoded finish char adding violated
                   13398:          string invariant
                   13399: 
                   13400: 2004-02-16  paf
                   13401: 
                   13402:        * src/main/pa_globals.C: bugfix: xml errors copy from library now
                   13403:          cleared [were not cleared properly]
                   13404: 
                   13405: 2004-02-13  paf
                   13406: 
1.116     moko     13407:        * src/include/pa_version.h: prerelease
1.95      moko     13408: 
                   13409:        * src/main/pa_stylesheet_connection.C: change: .xsl.stamp now not
                   13410:          used, introducing dependencies timestamp check
                   13411: 
                   13412:        * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
                   13413:          include/pa_xml_io.h, main/Makefile.am, main/compile.tab.C,
                   13414:          main/main.vcproj, main/pa_globals.C, main/pa_xml_io.C: change:
                   13415:          .xsl.stamp now not used, introducing dependencies timestamp check
                   13416: 
1.150     moko     13417:        * configure.in: auto.p: @conf made relative
1.95      moko     13418: 
                   13419: 2004-02-12  paf
                   13420: 
                   13421:        * src/types/pa_vform.C: bugfix: empty values[recently allowed]
                   13422:          ruined empty <input type=file> submits. parser thought there were
                   13423:          nameless empty file and $form:field got value of type 'file'
                   13424: 
                   13425:        * INSTALL: --without-threads
                   13426: 
                   13427:        * src/include/pa_sapi.h: 2004
                   13428: 
                   13429: 2004-02-11  paf
                   13430: 
                   13431:        * src/: classes/classes.C, classes/classes.h, classes/date.C,
                   13432:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   13433:          classes/hashfile.C, classes/image.C, classes/int.C,
                   13434:          classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
                   13435:          classes/response.C, classes/string.C, classes/table.C,
                   13436:          classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   13437:          include/pa_array.h, include/pa_cache_managers.h,
                   13438:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   13439:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   13440:          include/pa_dictionary.h, include/pa_dir.h,
                   13441:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   13442:          include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
                   13443:          include/pa_operation.h, include/pa_os.h, include/pa_request.h,
                   13444:          include/pa_request_charsets.h, include/pa_request_info.h,
                   13445:          include/pa_socks.h, include/pa_sql_connection.h,
                   13446:          include/pa_sql_driver_manager.h, include/pa_stack.h,
                   13447:          include/pa_string.h, include/pa_stylesheet_connection.h,
                   13448:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   13449:          include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
                   13450:          include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
                   13451:          lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
                   13452:          lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
                   13453:          lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
                   13454:          main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
                   13455:          main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
                   13456:          main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
                   13457:          main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
                   13458:          main/pa_os.C, main/pa_request.C, main/pa_socks.C,
                   13459:          main/pa_sql_driver_manager.C, main/pa_string.C,
                   13460:          main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
                   13461:          main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
                   13462:          sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
                   13463:          targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
                   13464:          types/pa_junction.h, types/pa_method.h, types/pa_value.C,
                   13465:          types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
                   13466:          types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
                   13467:          types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
                   13468:          types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
                   13469:          types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
                   13470:          types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
                   13471:          types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
                   13472:          types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
                   13473:          types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
                   13474:          types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
                   13475:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
                   13476:          types/pa_vresponse.h, types/pa_vstateless_class.C,
                   13477:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   13478:          types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
                   13479:          types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
                   13480:          types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   13481:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
                   13482:          types/pa_wcontext.h, types/pa_wwrapper.h: 2004
                   13483: 
                   13484:        * src/main/pa_globals.C: beauty: typo caused gc.log warnings with
                   13485:          debug version of gc.dll
                   13486: 
                   13487:        * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
                   13488:          lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
                   13489:          lib/pcre/pcre_parser_ctype.vcproj, lib/sdbm/sdbm.vcproj,
                   13490:          lib/smtp/smtp.vcproj, main/main.vcproj, main/pa_globals.C,
                   13491:          targets/cgi/parser3.C, targets/cgi/parser3.vcproj,
                   13492:          targets/isapi/parser3isapi.vcproj, types/types.vcproj: migrated
                   13493:          to latest libxml[2.6.5] and libgdome[1.1.2] simplified lib build
                   13494:          processes
                   13495: 
                   13496:        * src/: classes/classes.vcproj, lib/gd/gd.vcproj, main/main.vcproj,
                   13497:          main/pa_globals.C, targets/cgi/parser3.vcproj,
                   13498:          targets/isapi/parser3isapi.vcproj, types/types.vcproj: continued
                   13499:          changes to reflect libxml xsl new folders
                   13500: 
                   13501:        * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
                   13502:          lib/smtp/smtp.vcproj, main/main.vcproj,
                   13503:          targets/cgi/parser3.vcproj, types/types.vcproj: continued changes
                   13504:          to reflect libxml xsl new folders
                   13505: 
                   13506:        * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
                   13507:          lib/smtp/smtp.vcproj, main/main.vcproj,
                   13508:          targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
                   13509:          types/types.vcproj: started changes to reflect libxml xsl new
                   13510:          folders
                   13511: 
                   13512:        * ChangeLog, parser3.sln, src/classes/classes.vcproj,
                   13513:          src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
                   13514:          src/main/compile.tab.C, src/main/main.vcproj,
                   13515:          src/main/pa_globals.C, src/targets/cgi/parser3.vcproj,
                   13516:          src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
                   13517:          started changes to reflect libxml xsl new folders
                   13518: 
                   13519: 2004-02-10  paf
                   13520: 
                   13521:        * INSTALL: critical: libxslt1.1.2 wanted at least libxml2.6.3 to
                   13522:          compile. recommened latest libxml up to date
                   13523: 
                   13524:        * INSTALL: critical: prior to 1.0.30 had bug: "a segfault on
                   13525:          pattern compilation errors", on which spent 4 hours worktime. use
                   13526:          versions higher than that. recommended now latest up to date
                   13527: 
                   13528: 2004-02-06  paf
                   13529: 
                   13530:        * src/main/: pa_sql_driver_manager.C, pa_stylesheet_manager.C:
                   13531:          beauty: unified destructing style
                   13532: 
                   13533:        * src/main/untaint.C: beauty: removed old def/ifdef
                   13534: 
                   13535:        * src/main/untaint.C: beauty: coredump @unknown untaint language
                   13536:          now
                   13537: 
                   13538: 2004-02-03  paf
                   13539: 
                   13540:        * src/: classes/image.C, main/pa_exec.C, main/pa_memory.C,
                   13541:          targets/isapi/parser3isapi.C, types/pa_value.C,
                   13542:          types/pa_vcookie.C: beauty: %u is more simple=proper for size_t
                   13543:          then %ld/%lu
                   13544: 
                   13545:        * src/main/pa_common.C: typo: %l -> %u
                   13546: 
                   13547:        * src/classes/xdoc.C: bugfix: libxml: FOR UTF-8 TOO russian letters
                   13548:          in attributes or documents-results of transform now not &#04xx;
                   13549: 
                   13550:        * src/classes/xnode.C: memleaks found: not fixed yet. todo
                   13551: 
                   13552:        * src/main/pa_charset.C: bugfix: forgot to undo some
                   13553: 
                   13554:        * src/main/pa_charset.C: beauty: uncomment
                   13555:          PA_PATCHED_LIBXML_BACKWARD to link with old patched libxml
                   13556:          libraries
                   13557: 
                   13558: 2004-02-02  paf
                   13559: 
                   13560:        * src/types/pa_vcookie.C: bugfix: erasing cookie: params now output
                   13561:          $cookie:example[    $.value[value]  $.path[/there/] ]
                   13562: 
                   13563:          $cookie:example[        $.value[]       $.expires[session]
                   13564:          $.path[/there/]         $.domain[test.com] ]
                   13565: 
                   13566:        * src/types/pa_vform.C: bugfix: empty values with
                   13567:          enctype=multipart/form-data now produce entries in $form:tables
                   13568:          <form method=post enctype=multipart/form-data> <input type=hidden
                   13569:          name=a> <input type=hidden name=b>
                   13570: 
                   13571:          <input type=submit> </form> $k[^form:fields._keys[]] ^eval($k)
                   13572:          <hr> <pre>$request:body
                   13573: 
                   13574: 2004-01-30  paf
                   13575: 
                   13576:        * src/classes/xdoc.C: bugfix: libxml: russian letters in attributes
                   13577:          or documents-results of transform now not &#04xx;
                   13578: 
                   13579:        * src/classes/date.C: bugfix: ^date::create[invalid fields now
                   13580:          produce exception.
                   13581: 
                   13582:        * src/: classes/date.C, include/pa_string.h, main/pa_string.C:
                   13583:          bugfix: ^date::create[invalid fields now produce exception.
                   13584: 
                   13585:        * ChangeLog, src/classes/date.C: bugfix: ^date::create[invalid
                   13586:          year] now produces exception. todo: check other fields
                   13587: 
                   13588: 2004-01-29  paf
                   13589: 
                   13590:        * src/include/pa_memory.h: typo error
                   13591: 
                   13592:        * src/include/pa_memory.h: bugfix: [potential] strdup copied one
                   13593:          more byte then specified, then zeroed it << useless and
                   13594:          potentially harmful(could gpf)
                   13595: 
                   13596: 2004-01-22  paf
                   13597: 
                   13598:        * src/classes/xdoc.C: bugfix: when stylesheet contains error, gpf
                   13599: 
                   13600:        * src/main/untaint.C: merged: bugfix from 3.1.1 on whitespace
                   13601:          optimization
                   13602: 
                   13603:        * src/main/untaint.C: bugfix: whitespace now optimized properly
                   13604:          [were bug: ^taint[1 & 2]="1 &2"
                   13605: 
                   13606:        * src/main/pa_globals.C: beauty: bigger buffer for xml-related
                   13607:          errors
                   13608: 
                   13609:        * src/main/pa_common.C: merged: bugfix from 3.1.1 on memory
                   13610:          overflow
                   13611: 
                   13612:        * src/main/pa_common.C: bugfix: buffer overflow * in libxml&xsl
                   13613:          error-reporting code * in parser-error reporting code [when no
                   13614:          @unhandled_exception defined]
                   13615: 
                   13616:          fixed in one place: my *snprintf override
                   13617: 
                   13618: 2004-01-13  paf
                   13619: 
                   13620:        * operators.txt: typo erro
                   13621: 
                   13622: 2003-12-25  paf
                   13623: 
                   13624:        * src/main/pa_common.C: bugfix: ^file::load[binary;http:// now not
                   13625:          garbled  [pieces after zero bytes were removed]
                   13626: 
                   13627: 2003-12-22  paf
                   13628: 
1.116     moko     13629:        * src/include/Makefile.am: bugfix: removed from dist:
                   13630:          src/include/pa_config_auto.h which were configured for
1.95      moko     13631:          make-dist-platform and badly updated proper config file in target
                   13632:          [when .tar used for updating existing source tree]
                   13633: 
                   13634:        * ChangeLog, operators.txt, src/classes/op.C,
                   13635:          src/include/pa_sql_connection.h,
                   13636:          src/include/pa_sql_driver_manager.h,
                   13637:          src/main/pa_sql_driver_manager.C, src/sql/pa_sql_driver.h:
                   13638:          feature: sql introducing ability to transcode charsets
                   13639: 
                   13640: 2003-12-19  paf
                   13641: 
                   13642:        * src/main/pa_sql_driver_manager.C: beauty: more straighforward
                   13643:          error message
                   13644: 
                   13645:        * src/main/pa_charset.C: bugfix: memory for charsethandler
                   13646:          structure for libxml now allocated properly
                   13647: 
                   13648: 2003-12-17  paf
                   13649: 
                   13650:        * src/types/pa_vfile.C: beauty: removed outdated cast
                   13651: 
                   13652:        * src/main/pa_common.C: bugfix: empty http response caused gpf
                   13653: 
                   13654:        * src/include/pa_string.h: bugfix: removed too strong a assert
                   13655: 
                   13656:        * src/main/pa_globals.C: bugfix: removed false warning [warning:
                   13657:          unreported xmlGenericErrors]
                   13658: 
                   13659: 2003-12-15  paf
                   13660: 
                   13661:        * src/classes/xdoc.C: bugfix: taint uri under ^xdoc::create{now
                   13662:          works}
                   13663: 
                   13664: 2003-12-11  paf
                   13665: 
                   13666:        * operators.txt, src/types/pa_vstatus.C:     !$status:pid process
                   13667:          id
                   13668:              !$status:tid thread id
                   13669: 
                   13670:        * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
                   13671:          main/pa_globals.C, main/pa_request.C, types/pa_vstatus.C:
                   13672:          bugfix(solaris): removed dependency on object initialization
                   13673:          order [one more place]
                   13674: 
                   13675:        * src/: classes/file.C, classes/mail.C, classes/op.C,
                   13676:          classes/xdoc.C, main/pa_request.C, types/pa_vimage.C,
                   13677:          types/pa_vmath.C, types/pa_vstatus.C: beauty cancel: gcc does not
                   13678:          understand that
                   13679: 
                   13680:        * src/: classes/file.C, classes/mail.C, classes/op.C,
                   13681:          classes/xdoc.C, include/pa_cache_managers.h,
                   13682:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   13683:          include/pa_stylesheet_manager.h, main/pa_request.C,
                   13684:          main/pa_stylesheet_manager.C, types/pa_vimage.C,
                   13685:          types/pa_vmath.C, types/pa_vstatus.C: beauty: removed redundant
                   13686:          ctor call [relying on implicit String::Body(cstr) call]
                   13687: 
                   13688:        * src/main/: pa_cache_managers.C, pa_sql_driver_manager.C,
                   13689:          pa_stylesheet_manager.C: bugfix(solaris): removed dependency on
                   13690:          object initialization order [two places]
                   13691: 
                   13692: 2003-12-10  paf
                   13693: 
                   13694:        * src/include/pa_sql_connection.h: bugfix: $status:sql.cache back
                   13695:          << time now ok
                   13696: 
                   13697:        * operators.txt, src/main/pa_sql_driver_manager.C,
                   13698:          src/main/pa_stylesheet_manager.C: $status:stylesheet.cache back
                   13699:          operational
                   13700: 
                   13701:        * ChangeLog, operators.txt, src/classes/xdoc.C,
                   13702:          src/include/pa_charset.h, src/include/pa_sql_connection.h,
                   13703:          src/main/pa_charset.C, src/main/pa_sql_driver_manager.C,
                   13704:          src/main/pa_string.C, src/types/pa_vxdoc.h: $status:sql.cache
                   13705:          back operational
                   13706: 
                   13707: 2003-12-02  paf
                   13708: 
                   13709:        * src/types/pa_vmail.C: bugfix:
                   13710:          ^mail:send[$.file[$.value[>>xxxx<<]] now untaints properly [were:
                   13711:          as-is forced]
                   13712: 
                   13713:        * src/main/pa_xml_io.C: bugfix: on some platforms one can't throw
                   13714:          exceptions out of libxml callbacks: reimplemented error handling
                   13715:          of http://localhost, parser://method and safemode check callbacks
                   13716: 
                   13717:        * src/main/pa_string.C: bugfix: SPARC gpf on %4!=0 address int ref
                   13718:          [merged from HEAD]
                   13719: 
                   13720:        * src/classes/image.C: nothing: comment removed
                   13721: 
                   13722:        * src/main/pa_string.C: bugfix: sparc gpf on reading %4!=0
                   13723:          addresses to int
                   13724: 
                   13725: 2003-12-01  paf
                   13726: 
                   13727:        * src/main/pa_xml_io.C: bugfix: typo
                   13728: 
                   13729:        * src/main/pa_globals.C: bugfix: win32: compile prob
                   13730: 
                   13731:        * src/classes/xdoc.C: bugfix: typo
                   13732: 
                   13733:        * src/main/pa_xml_io.C: todo: safe mode check not to throw
                   13734:          exception
                   13735: 
                   13736:        * src/main/pa_xml_io.C: bugfix: http://localhost typo error
                   13737: 
                   13738: 2003-11-28  paf
                   13739: 
                   13740:        * src/main/pa_xml_io.C: installed safe-mode checker as filter of
                   13741:          all xml documents read
                   13742: 
                   13743:        * src/main/pa_xml_io.C: http://localhost/ now checked for safe mode
                   13744: 
                   13745:        * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
                   13746:          include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
                   13747:          replaced original open mech of xdoc::create & co to use libxml
                   13748:          open, so that this would work for root document todo: safe mode
                   13749:          checks to libxml: ideally to some 1 point
                   13750: 
                   13751:        * src/main/pa_xml_io.C: comment
                   13752: 
                   13753:        * operators.txt, src/main/pa_xml_io.C: leading / in
                   13754:          http://parser[abscent params]
                   13755: 
                   13756:        * operators.txt, src/include/pa_request.h, src/main/pa_xml_io.C:
                   13757:          works.  todo: maybe replace original open mech of xdoc::create &
                   13758:          co to use libxml open, so that this would work for root document
                   13759: 
                   13760:          $xdoc[^xdoc::create{<?xml version="1.0"?> <!DOCTYPE test SYSTEM
                   13761:          "parser://method/params/here"> <test>   &test^; </test> }]
                   13762: 
                   13763:          ^taint[^xdoc.string[]]
                   13764: 
                   13765:          @method[param] <!ENTITY test
                   13766:          "test-entity-value+$form:user+$param!">
                   13767: 
                   13768: 2003-11-27  paf
                   13769: 
                   13770:        * src/main/pa_xml_io.C: libxml: started parser://methodcall/params
                   13771: 
                   13772:        * src/classes/date.C: bugfix: typo error
                   13773: 
                   13774: 2003-11-26  paf
                   13775: 
                   13776:        * operators.txt, src/include/Makefile.am, src/include/pa_globals.h,
                   13777:          src/main/Makefile.am, src/main/main.vcproj,
                   13778:          src/main/pa_globals.C, src/main/pa_request.C,
                   13779:          src/include/pa_xml_io.h, src/main/pa_xml_io.C: simplification:
                   13780:          xml errors to hash<thread_id,error> reorganization: xml io moved
                   13781:          to pa_xml_io.C/h
                   13782: 
                   13783:        * src/types/pa_value.h: warnings: --
                   13784: 
                   13785: 2003-11-25  paf
                   13786: 
                   13787:        * src/classes/table.C: bugfix: wrong sequence. [sadly no waring
                   13788:          whatever)
                   13789: 
                   13790:        * src/classes/table.C: bugfix: a, c?x:y, z in gcc considered(?) as
                   13791:          a, (c?x:y, z)
                   13792: 
                   13793:        * src/main/untaint.C: bugfix: consequences of not reading this
                   13794:          comment: CORD_pos_chars_left /* Number of characters in cache.
                   13795:          <= 0 ==> none    */
                   13796: 
                   13797:        * src/include/pa_array.h: removed needless checks
                   13798: 
                   13799: 2003-11-24  paf
                   13800: 
                   13801:        * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
                   13802:          removed limit: now $form:xxx can be accessed anytime, even in
                   13803:          @auto/conf [and request/response:charset still can be changed
                   13804:          anytime]
                   13805: 
                   13806:        * src/main/pa_common.C: bugfix: ^file::load[binary;http://...]
                   13807:          now not transcodes response body
                   13808: 
                   13809:        * operators.txt, src/types/pa_vxnode.C, src/types/pa_vxnode.h:
                   13810:          $xdoc[^xdoc::create[test]] $tn[^xdoc.createTextNode[text node
                   13811:          value]] $dummy[^xdoc.firstChild.appendChild[$tn]]
                   13812:          $xdoc.firstChild.firstChild.nodeValue[different]
                   13813:          ^taint[^xdoc.string[]]
                   13814: 
                   13815:        * src/: include/pa_hash.h, types/types.vcproj: linker HPUX nongnu
                   13816:          workaround: static Hash::allocates -> static Hash_allocates
                   13817: 
                   13818: 2003-11-21  paf
                   13819: 
1.116     moko     13820:        * Makefile.am, configure, configure.in, src/classes/Makefile.am,
                   13821:          src/include/pa_config_auto.h.in, src/targets/cgi/Makefile.am,
                   13822:          src/types/Makefile.am: rearrange: gd&smtp moved to src/lib
1.95      moko     13823: 
                   13824:        * src/classes/classes.vcproj: rearrange: gd&smtp moved to src/lib
                   13825: 
                   13826:        * src/classes/mail.C: bugfix: typo
                   13827: 
                   13828:        * parser3.sln, src/classes/Makefile.am, src/lib/Makefile.am,
1.116     moko     13829:          src/lib/gd/Makefile.am, src/lib/gd/gd.vcproj, src/lib/gd/gif.C,
                   13830:          src/lib/gd/gif.h, src/lib/gd/gifio.C, src/lib/gd/mtables.h,
                   13831:          src/lib/smtp/Makefile.am, src/lib/smtp/comms.C,
                   13832:          src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
1.95      moko     13833:          src/lib/smtp/smtp.vcproj: rearrange: gd&smtp moved to src/lib
                   13834: 
                   13835:        * src/main/pa_exec.C: bug in safe mode
                   13836: 
                   13837:        * src/include/Makefile.am: pa_xml_exception.h
                   13838: 
                   13839:        * src/targets/isapi/parser3isapi.C: more warnings --
                   13840: 
                   13841: 2003-11-20  paf
                   13842: 
                   13843:        * src/: classes/math.C, classes/op.C, classes/string.C,
                   13844:          main/pa_charset.C, main/pa_dictionary.C, main/pa_string.C,
                   13845:          types/pa_value.C, main/pa_dir.C, main/pa_table.C: more warnings
                   13846:          --
                   13847: 
                   13848:        * src/: main/pa_charset.C, main/pa_string.C, types/pa_vxnode.C:
                   13849:          more warnings --
                   13850: 
                   13851:        * src/classes/xdoc.C: more warnings --
                   13852: 
                   13853:        * src/classes/: date.C, image.C, xdoc.C: more warnings --
                   13854: 
                   13855:        * src/: main/pa_sql_driver_manager.C, main/untaint.C,
                   13856:          types/pa_vcookie.C, types/pa_vmail.C: more warnings --
                   13857: 
                   13858:        * src/: classes/date.C, classes/file.C, classes/hash.C,
                   13859:          classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
                   13860:          classes/table.C, include/pa_cache_managers.h,
                   13861:          include/pa_stylesheet_connection.h, main/pa_request.C,
                   13862:          types/pa_vdate.h, types/pa_vhashfile.C, types/pa_vimage.h,
                   13863:          types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: more warnings
                   13864:          --
                   13865: 
                   13866:        * src/main/: execute.C, pa_request.C: old forgotten todo: when
                   13867:          can't report problem (undefined @unhandled_exception) problem
                   13868:          source string were not reported
                   13869: 
                   13870:        * src/: classes/classes.C, classes/classes.h, classes/date.C,
                   13871:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   13872:          classes/hashfile.C, classes/image.C, classes/int.C,
                   13873:          classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
                   13874:          classes/response.C, classes/string.C, classes/table.C,
                   13875:          classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   13876:          include/pa_array.h, include/pa_cache_managers.h,
                   13877:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   13878:          include/pa_config_fixed.h, include/pa_dictionary.h,
                   13879:          include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
                   13880:          include/pa_globals.h, include/pa_hash.h, include/pa_memory.h,
                   13881:          include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
                   13882:          include/pa_request.h, include/pa_request_charsets.h,
                   13883:          include/pa_request_info.h, include/pa_sapi.h, include/pa_socks.h,
                   13884:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   13885:          include/pa_stack.h, include/pa_string.h,
                   13886:          include/pa_stylesheet_connection.h,
                   13887:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   13888:          include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
                   13889:          include/pa_xml_exception.h, lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
                   13890:          lib/sdbm/apr_file_io.C, lib/sdbm/apr_strings.C, main/compile.C,
                   13891:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   13892:          main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
                   13893:          main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
                   13894:          main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
                   13895:          main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
                   13896:          main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
                   13897:          main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
                   13898:          main/pa_uue.C, main/pa_xml_exception.C, main/untaint.C,
                   13899:          sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
                   13900:          targets/cgi/parser3.C, targets/isapi/pa_threads.C,
                   13901:          targets/isapi/parser3isapi.C, types/pa_junction.h,
                   13902:          types/pa_method.h, types/pa_value.C, types/pa_value.h,
                   13903:          types/pa_vbool.h, types/pa_vclass.C, types/pa_vclass.h,
                   13904:          types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
                   13905:          types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
                   13906:          types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
                   13907:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
                   13908:          types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
                   13909:          types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
                   13910:          types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
                   13911:          types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
                   13912:          types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
                   13913:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
                   13914:          types/pa_vresponse.h, types/pa_vstateless_class.C,
                   13915:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   13916:          types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
                   13917:          types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
                   13918:          types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   13919:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
                   13920:          types/pa_wcontext.h, types/pa_wwrapper.h: static const char *
                   13921:          const IDENT
                   13922: 
                   13923:        * src/: include/pa_array.h, include/pa_pool.h,
                   13924:          include/pa_request.h, include/pa_string.h, include/pa_table.h,
                   13925:          main/compile_tools.h, main/pa_common.C, types/pa_vhash.h,
                   13926:          types/pa_wcontext.h: more warnings --
                   13927: 
                   13928:        * src/: classes/classes.vcproj, classes/date.C, classes/double.C,
                   13929:          classes/file.C, classes/hash.C, classes/hashfile.C,
                   13930:          classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
                   13931:          classes/memory.C, classes/op.C, classes/string.C,
                   13932:          classes/table.C, classes/xdoc.C, classes/xnode.C,
                   13933:          include/pa_config_includes.h, include/pa_operation.h,
                   13934:          include/pa_sql_connection.h, include/pa_table.h,
                   13935:          include/pa_types.h, lib/ltdl/config_fixed.h,
                   13936:          lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/maketables.c,
                   13937:          lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
                   13938:          lib/sdbm/apr_file_io.C, main/compile.tab.C, main/execute.C,
                   13939:          main/main.vcproj, main/pa_cache_managers.C, main/pa_charset.C,
                   13940:          main/pa_common.C, main/pa_dir.C, main/pa_exec.C,
                   13941:          main/pa_globals.C, main/pa_os.C, main/pa_request.C,
                   13942:          main/pa_string.C, main/pa_table.C, targets/cgi/parser3.vcproj,
                   13943:          targets/isapi/parser3isapi.vcproj, types/pa_value.h,
                   13944:          types/pa_vconsole.h, types/pa_vdate.h, types/pa_vfile.h,
                   13945:          types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vimage.h,
                   13946:          types/pa_vmail.C, types/pa_vobject.C,
                   13947:          types/pa_vstateless_class.h, types/pa_vtable.C,
                   13948:          types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
                   13949:          types/pa_vxnode.h, types/types.vcproj: turned on warnings level4
                   13950:          on all projects (except libltdl=off & libsdbm=level3) found
                   13951:          several unitialized vars
                   13952: 
                   13953: 2003-11-19  paf
                   13954: 
                   13955:        * src/classes/op.C: more ansi C++ comp
                   13956: 
                   13957:        * operators.txt, src/classes/op.C, src/include/pa_request.h,
                   13958:          src/main/pa_request.C: ^cache[...]{body}{catch block with
                   13959:          $exception.handled[cache] meaning "get expired cache, if any.
                   13960:          else error"}
                   13961: 
                   13962:        * src/: classes/op.C, include/pa_os.h, include/pa_request.h,
                   13963:          main/pa_common.C: cache: ^cache[] fallback todo: kinda ^try:
                   13964:          ^cache[...]{body}{catch code with $exception.cache field}
                   13965: 
                   13966: 2003-11-12  paf
                   13967: 
                   13968:        * src/classes/xnode.C: replaceChild: 2nd param now named oldChild
                   13969:          [copy/paste bug]
                   13970: 
                   13971: 2003-11-11  paf
                   13972: 
                   13973:        * src/types/: pa_value.h, pa_vfile.h: more C++ compatible [HP C++
                   13974:          failed]
                   13975: 
                   13976: 2003-11-10  paf
                   13977: 
                   13978:        * src/types/pa_vconsole.h: flush
                   13979: 
                   13980:        * operators.txt, src/main/pa_request.C, src/types/Makefile.am,
                   13981:          src/types/types.vcproj, src/types/pa_vconsole.h: $console:line
                   13982:          read/write  [for nntp]
                   13983: 
                   13984:        * operators.txt: mysql: transaction support: ?autocommit=0
                   13985: 
                   13986:        * operators.txt: comment: updated
                   13987: 
                   13988:        * src/types/: pa_vhashfile.C, pa_vhashfile.h: add: hashfile old
                   13989:          serialize version and exipire now removes entries
                   13990: 
                   13991:        * operators.txt: ^hashfile.delete[] removes files altogether [and
                   13992:          dir, if could]
                   13993: 
                   13994:        * src/: classes/hashfile.C, include/pa_common.h, main/pa_common.C,
                   13995:          types/pa_vhashfile.C, types/pa_vhashfile.h: ^hashfile.delete[]
                   13996:          removes files altogether [and dir, if could]
                   13997: 
                   13998:        * src/lib/sdbm/sdbm.c: bugfix: sdbm: .h said it's OK to remove
                   13999:          nonexistent pair. .c coded that that was error. fixed
                   14000: 
                   14001:        * src/types/pa_vhashfile.C: sdbm: exception type change to
                   14002:          file.access [regretfull can't split it to different exceptions
                   14003:          without modifying sdbm source wich would prefer not to]
                   14004: 
                   14005: 2003-11-07  paf
                   14006: 
                   14007:        * src/: classes/date.C, classes/file.C, classes/hash.C,
                   14008:          classes/hashfile.C, classes/image.C, classes/table.C,
                   14009:          classes/xdoc.C, include/Makefile.am, include/pa_array.h,
                   14010:          include/pa_pool.h, include/pa_request.h, main/Makefile.am,
                   14011:          main/execute.C, main/main.vcproj, main/pa_pool.C,
                   14012:          main/pa_request.C, targets/cgi/parser3.C, types/pa_vclass.C,
                   14013:          types/pa_vclass.h, types/pa_vhashfile.h, types/pa_vobject.h,
                   14014:          types/pa_vstateless_class.h: resurrected: pool idea. now only for
                   14015:          destructing objects at request processing end
                   14016: 
                   14017: 2003-11-06  paf
                   14018: 
                   14019:        * src/: classes/Makefile.am, types/Makefile.am: .am sdbm INCLUDES
                   14020:          updates
                   14021: 
                   14022:        * parser3.sln, src/targets/cgi/Makefile.am: .vcproj & .am updated
                   14023:          to include sdbm
                   14024: 
1.116     moko     14025:        * src/include/: pa_config_includes.h, pa_version.h: our
                   14026:          replacements of max& co only for cpp
1.95      moko     14027: 
                   14028:        * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C: move to
                   14029:          upper dir, .am updated
                   14030: 
                   14031:        * tests/todo.txt: hashfile: done
                   14032: 
                   14033:        * operators.txt, src/types/pa_vhashfile.C: hashfile: clear &
                   14034:          expiration [time in value. todo: move time to key]
                   14035: 
                   14036:        * src/types/pa_vhashfile.C: hashfile: foreach body can bodify $self
                   14037: 
                   14038:        * src/types/pa_vhashfile.C: hashfile: clear now works [were trying
                   14039:          to do that in foreach, no errors, but surely wrong]
                   14040: 
                   14041:        * operators.txt, src/types/pa_vhashfile.C,
                   14042:          src/types/pa_vhashfile.h: hashfile: clear and proper locking
                   14043: 
                   14044:        * operators.txt, src/classes/hash.C, src/classes/hashfile.C,
                   14045:          src/types/pa_vhashfile.C, src/types/pa_vhashfile.h: hashfile:
                   14046:          foreach
                   14047: 
                   14048:        * src/classes/hashfile.C, src/types/pa_vhashfile.C,
                   14049:          src/types/pa_vhashfile.h, operators.txt: hashfile: hash
                   14050: 
                   14051:        * operators.txt, src/classes/hashfile.C, src/types/pa_vhashfile.C,
                   14052:          src/types/pa_vhashfile.h, tests/todo.txt: hashfile: delete
                   14053: 
                   14054:        * src/: include/pa_memory.h, targets/cgi/parser3.C,
                   14055:          types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
                   14056:          types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile implemented
                   14057:          get/put [raw]
                   14058: 
                   14059:        * src/: classes/op.C, main/pa_os.C: just linked
                   14060: 
                   14061:        * src/: classes/xdoc.C, classes/xnode.C, types/pa_vxnode.h:
                   14062:          XmlException changes
                   14063: 
                   14064:        * src/: include/pa_charset.h, include/pa_globals.h,
                   14065:          include/pa_stylesheet_connection.h, main/pa_exception.C:
                   14066:          XmlException changes
                   14067: 
                   14068:        * src/lib/sdbm/: sdbm.c, sdbm.vcproj: just compiled
                   14069: 
                   14070:        * src/: include/pa_common.h, include/pa_exception.h,
                   14071:          main/main.vcproj, main/pa_common.C, include/pa_os.h,
                   14072:          include/pa_xml_exception.h, main/pa_os.C, lib/sdbm/sdbm.vcproj,
                   14073:          main/pa_xml_exception.C: locking move to pa_os [along with
                   14074:          pa_sleep] apr-impl locking done
                   14075: 
                   14076:        * configure, configure.in, operators.txt, parser3.sln,
                   14077:          src/classes/classes.vcproj, src/classes/hashfile.C,
                   14078:          src/classes/xdoc.C, src/include/pa_config_fixed.h,
                   14079:          src/include/pa_exception.h, src/include/pa_globals.h,
                   14080:          src/include/pa_memory.h, src/include/pa_version.h,
                   14081:          src/lib/ltdl/libltdl.vcproj, src/lib/ltdl/libltdl.vcproj.vspscc,
                   14082:          src/lib/ltdl/ltdl.vcproj, src/lib/ltdl/ltdl.vcproj.vspscc,
                   14083:          src/main/compile.tab.C, src/main/main.vcproj,
                   14084:          src/main/pa_charset.C, src/targets/cgi/parser3.vcproj,
                   14085:          src/types/Makefile.am, src/types/pa_vhash.C,
                   14086:          src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
                   14087:          src/types/pa_vxnode.h, src/types/types.vcproj: hashfile: started
                   14088:          again with sdbm from apache
                   14089: 
                   14090: 2003-11-05  paf
                   14091: 
                   14092:        * src/: classes/classes.vcproj, include/pa_config_fixed.h,
                   14093:          main/main.vcproj, targets/cgi/parser3.vcproj: not has to be in
                   14094:          \parser3project dir anymore
                   14095: 
                   14096:        * src/main/pa_charset.C: bugfix: had broken binary search [copied
                   14097:          thoughtlessly from xalan]
                   14098: 
                   14099:        * src/lib/sdbm/: Makefile.am, sdbm.c, sdbm_hash.c, sdbm_lock.c,
                   14100:          sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h: original
                   14101:          from httpd-2.0.43\srclib\apr-util\dbm\sdbm
                   14102: 
                   14103:        * src/main/helpers/CaseFolding.txt:
                   14104:          http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
                   14105: 
                   14106: 2003-11-04  paf
                   14107: 
                   14108:        * operators.txt: comment: ^mail:send[$.options[
                   14109: 
                   14110:        * src/classes/table.C: compiled on unix
                   14111: 
1.116     moko     14112:        * src/classes/Makefile.am: classes.C to rebuild last
1.95      moko     14113: 
                   14114:        * src/classes/mail.C: compiled on unix
                   14115: 
                   14116:        * operators.txt, src/classes/mail.C, src/types/pa_vmail.C,
                   14117:          src/types/pa_vmail.h:     !^mail:send[
                   14118:                  $.options[unix: string to append to sendmail command
                   14119:          line]
                   14120: 
                   14121:        * operators.txt, src/classes/table.C, src/main/pa_string.C,
                   14122:          tests/todo.txt: ^table.save[...          $.separator[^#09]
                   14123:          $.encloser["] <nothing> by default
                   14124: 
                   14125:        * operators.txt, src/classes/table.C, tests/todo.txt: ^table::load
                   14126:                 !$.separator[^#09]         !$.encloser["] <nothing> by
                   14127:          default
                   14128: 
                   14129: 2003-11-03  paf
                   14130: 
                   14131:        * operators.txt, src/classes/table.C, src/main/pa_common.C:
                   14132:          ^table::load[; options:         !$.column-separator[^#09]
                   14133:          !$.column-encloser["]
                   14134: 
                   14135:        * operators.txt, src/include/pa_config_fixed.h,
                   14136:          src/types/pa_vrequest.C: $request:document-root
                   14137: 
                   14138:        * src/targets/cgi/parser3.C: beauty: SIGUSRX removed qs= printing
                   14139:          [already included into uri=xxx]
                   14140: 
                   14141:        * operators.txt, src/classes/image.C, tests/todo.txt:
                   14142:          ^image.gif[filename] for $response:download
                   14143: 
                   14144:        * src/classes/date.C: minor precaution
                   14145: 
                   14146:        * operators.txt, src/classes/date.C:     !^date::unix-timestamp()
                   14147:              !^date.unix-timestamp[]
                   14148: 
                   14149: 2003-10-30  paf
                   14150: 
                   14151:        * operators.txt, src/classes/date.C, src/types/pa_vdate.h: merged
                   14152:          from 3.0.8: ^date.roll[TZ;GMT] $date.hour
                   14153: 
                   14154:        * src/classes/: date.C, image.C: improvement diagnostics:
                   14155:          $now[^date::create[$undefined]] now is error
                   14156: 
                   14157:        * src/main/pa_common.C: read errors would now be reported 'actually
                   14158:          read -1 bytes'
                   14159: 
                   14160: 2003-10-24  paf
                   14161: 
                   14162:        * Makefile.am, src/classes/Makefile.am, src/lib/cord/Makefile.am,
                   14163:          src/lib/md5/Makefile.am, src/lib/pcre/Makefile.am,
                   14164:          src/main/Makefile.am, src/targets/cgi/Makefile.am,
                   14165:          src/targets/isapi/Makefile.am: .dsp/w -> .vcproj/sln
                   14166: 
                   14167: 2003-10-22  paf
                   14168: 
                   14169:        * src/include/pa_request.h: fixed: $h[^hash::create[]] $$h[1]
                   14170: 
                   14171: 2003-10-21  paf
                   14172: 
                   14173:        * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
                   14174:          fixed: string.match[g] without <'> option produced columns with
                   14175:          NULL's, which gpf'ed at table.save time
                   14176: 
                   14177:        * src/: classes/op.C, include/pa_request.h: fixed: false 'endless
                   14178:          recoursion' message with intensive throw-catches fixed: incorrect
                   14179:          name and line (one name upper then needed) in error message about
                   14180:          problems inside try block
                   14181: 
                   14182: 2003-10-10  paf
                   14183: 
                   14184:        * src/: include/pa_string.h, main/compile.tab.C: CORD_chr does not
                   14185:          check offset argument for validity did that in String::Body::pos
                   14186:          myself http://i2/tasks/edit/?id=4577425257580789777
                   14187: 
                   14188: 2003-10-07  paf
                   14189: 
                   14190:        * src/main/: compile.tab.C, compile.y: ^if ( better error:
                   14191:          .html(1:4): parse error, expecting `'['' or `'{'' or `'(''  now
                   14192: 
                   14193: 2003-10-03  paf
                   14194: 
                   14195:        * parser3.sln, src/include/pa_dictionary.h,
                   14196:          src/main/pa_dictionary.C, src/main/pa_string.C,
                   14197:          src/targets/cgi/parser3.vcproj: dictionary optimized by
                   14198:          precalculating cstr&length
                   14199: 
                   14200: 2003-10-02  paf
                   14201: 
                   14202:        * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
                   14203:          main/execute.C, main/pa_request.C, main/pa_sql_driver_manager.C,
                   14204:          main/pa_stylesheet_manager.C: bugfix: ^throw context were
                   14205:          saved/restored incompletely http://www.parser.ru/forum/?id=21484
                   14206: 
                   14207: 2003-09-30  paf
                   14208: 
                   14209:        * src/main/pa_string.C: string::replace bug fix [were ignoring
                   14210:          occurrances after lang-mismatched
                   14211: 
                   14212: 2003-09-29  paf
                   14213: 
                   14214:        * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: generated by
                   14215:          helper
                   14216: 
                   14217:        * src/main/pa_string.C: string::serialize bug fix with
                   14218:          zero-terminator
                   14219: 
                   14220:        * src/classes/table.C: ^nameless_table.save column row now has no
                   14221:          \t at the end
                   14222: 
                   14223:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
                   14224:          @postprocess  now takes $response:body/download
                   14225: 
                   14226:        * src/classes/form.C: better error message: MAX_POST_SIZE_NAME to
                   14227:          error message
                   14228: 
                   14229:        * src/classes/string.C: bugfix: s.right(>s.length) returned nothing
                   14230: 
                   14231:        * src/classes/table.C: bugfix: flip: must produce nameless
                   14232:          http://i2/tasks/edit/?id=4573405524674081244
                   14233: 
                   14234:        * src/: include/pa_charset.h, main/pa_charset.C, main/pa_string.C,
                   14235:          main/helpers/simple_folding.pl: utf-8 upper/lower
                   14236: 
                   14237:        * src/main/pa_common.C: bugfix: utf signature were not ignored due
                   14238:          to typo error http://i2/tasks/edit/?id=4573354650786434584
                   14239: 
                   14240: 2003-09-26  paf
                   14241: 
                   14242:        * src/main/untaint.C: removed needless field
                   14243: 
                   14244:        * src/main/untaint.C: removed needless const
                   14245: 
                   14246:        * src/: include/pa_string.h, main/pa_common.C, main/pa_string.C:
                   14247:          String.for_each bug fixed [omited one-char cases]
                   14248: 
                   14249:        * src/include/pa_stack.h: bugfix: before collecting garbage,
                   14250:          runtime-executor stack were cleared... BADLY
                   14251: 
                   14252:        * src/main/pa_string.C: ^stirng.replace code used old
                   14253:          param-convention on langs.append, fixed that search fo the like,
                   14254:          found none
                   14255: 
                   14256:        * src/: classes/op.C, include/pa_string.h, main/pa_string.C:
                   14257:          string::serialize/deserialize implemented Language enum assigned
                   14258:          meaningful letters [more convinient for debugging. read warning
                   14259:          before adding/changing anything]
                   14260: 
                   14261: 2003-09-25  paf
                   14262: 
                   14263:        * src/: include/pa_string.h, include/pa_version.h,
                   14264:          main/pa_string.C, main/untaint.C: templates and anonymous unions
                   14265:          differences on unix
                   14266: 
                   14267:        * parser3.sln, src/classes/file.C, src/classes/image.C,
                   14268:          src/classes/mail.C, src/classes/op.C, src/classes/table.C,
                   14269:          src/classes/xdoc.C, src/classes/xnode.C,
                   14270:          src/include/pa_cache_managers.h, src/include/pa_charset.h,
                   14271:          src/include/pa_charsets.h, src/include/pa_common.h,
                   14272:          src/include/pa_request.h, src/include/pa_sql_driver_manager.h,
                   14273:          src/include/pa_string.h, src/include/pa_stylesheet_manager.h,
                   14274:          src/include/pa_table.h, src/lib/cord/cordbscs.c,
                   14275:          src/lib/cord/cordprnt.c, src/lib/cord/cordxtra.c,
                   14276:          src/lib/cord/include/cord.h, src/main/compile.tab.C,
                   14277:          src/main/compile_tools.h, src/main/pa_charset.C,
                   14278:          src/main/pa_charsets.C, src/main/pa_common.C, src/main/pa_exec.C,
                   14279:          src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
                   14280:          src/main/pa_string.C, src/main/pa_stylesheet_manager.C,
                   14281:          src/main/untaint.C, src/types/pa_value.h, src/types/pa_vimage.C,
                   14282:          src/types/pa_vmail.C, src/types/pa_vmath.C,
                   14283:          src/types/pa_vstateless_class.h, src/types/pa_vstatus.C,
                   14284:          src/types/pa_vxnode.C: string_fragments_to_cord merged to HEAD
                   14285: 
                   14286:        * src/main/: compile.tab.C, pa_string.C: string: debug: .v()
                   14287:          functions aligned to that of eeparser3 look
                   14288: 
                   14289:        * src/lib/cord/cordprnt.c: removed warnings
                   14290: 
                   14291: 2003-09-24  paf
                   14292: 
                   14293:        * src/: classes/file.C, classes/image.C, classes/mail.C,
                   14294:          classes/op.C, classes/xdoc.C, classes/xnode.C,
                   14295:          include/pa_cache_managers.h, include/pa_charset.h,
                   14296:          include/pa_charsets.h, include/pa_common.h, include/pa_request.h,
                   14297:          include/pa_sql_driver_manager.h, include/pa_string.h,
                   14298:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   14299:          main/compile_tools.h, main/pa_charset.C, main/pa_charsets.C,
                   14300:          main/pa_common.C, main/pa_exec.C, main/pa_request.C,
                   14301:          main/pa_sql_driver_manager.C, main/pa_string.C,
                   14302:          main/pa_stylesheet_manager.C, main/untaint.C, types/pa_value.h,
                   14303:          types/pa_vimage.C, types/pa_vmail.C, types/pa_vmath.C,
                   14304:          types/pa_vstateless_class.h, types/pa_vstatus.C,
                   14305:          types/pa_vxnode.C: v() functions of String::Body,
                   14306:          String::Languages and String itself StringBody->String::Body
                   14307: 
                   14308:        * src/: include/pa_string.h, lib/cord/cordbscs.c,
                   14309:          lib/cord/include/cord.h: CORD_append_block showed no efficiency =
                   14310:          never optimized anything.  todo: somehow speed up harder cases:
                   14311:          concatenationA+concatenationB when last block of A and first of B
                   14312:          contain same letters
                   14313: 
                   14314:        * src/: include/pa_string.h, lib/cord/cordbscs.c,
                   14315:          lib/cord/include/cord.h: langs: speed up by joining adjucent
                   14316:          blocks of same char [CORD_append_block]
                   14317: 
                   14318:        * src/: include/pa_string.h, lib/cord/cordbscs.c,
                   14319:          lib/cord/include/cord.h, main/pa_string.C: aval/ works! todo:
                   14320:          save space by extending blocks when appending block with c ==
                   14321:          lastblock.c
                   14322: 
                   14323:        * src/: include/pa_string.h, main/pa_string.C: aval is not actually
                   14324:          working yet :( but more working &understood :)
                   14325: 
                   14326:        * src/: classes/table.C, include/pa_string.h,
                   14327:          lib/cord/include/cord.h, main/pa_string.C: aval/ works!
                   14328: 
                   14329: 2003-09-23  paf
                   14330: 
                   14331:        * src/main/untaint.C: $a[ok!] $a works!
                   14332: 
                   14333:        * src/main/untaint.C: something even more works :)
                   14334: 
                   14335:        * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
                   14336:          something more works :)
                   14337: 
                   14338:        * src/: include/pa_string.h, lib/cord/cordbscs.c,
                   14339:          lib/cord/cordxtra.c: something already works :)
                   14340: 
                   14341:        * src/: include/pa_string.h, main/untaint.C: just compiled todo:
                   14342:          serialize&deserialize
                   14343: 
                   14344:        * src/: classes/table.C, include/pa_string.h, lib/cord/cordbscs.c,
                   14345:          lib/cord/cordxtra.c, lib/cord/include/cord.h, main/pa_string.C,
                   14346:          main/untaint.C: main idea implemented, details left
                   14347: 
                   14348: 2003-09-22  paf
                   14349: 
                   14350:        * src/: classes/memory.C, include/pa_memory.h: #ifdef GC_DEBUG
                   14351: 
                   14352:        * src/classes/xnode.C: copy/paste comment bugfix
                   14353: 
                   14354:        * src/: include/pa_memory.h, main/pa_globals.C: when xml memory
                   14355:          allocator returns 0, just die.
                   14356:          http://i2/tasks/edit/?id=4570798492410259445
                   14357: 
                   14358:        * src/classes/xdoc.C: copy/paste comment bugfix
                   14359: 
                   14360:        * src/classes/: xdoc.C, xnode.C: new DOM2 methods from Alexandr
                   14361:          Egorov <egr> (all?) xdoc: createAttributeNS createElementNS
                   14362:          xnode: getAttributeNS setAttributeNS removeAttributeNS
                   14363:          getAttributeNodeNS setAttributeNodeNS hasAttribute hasAttributeNS
                   14364: 
                   14365:        * src/lib/cord/cordxtra.c: CORD_pos bugfix [failed to find 8bit
                   14366:          chars due to bitwise operation signed-char error]
                   14367: 
                   14368: 2003-09-19  paf
                   14369: 
                   14370:        * src/types/pa_wcontext.C: output message: more practical
                   14371:          suggestion
                   14372: 
                   14373:        * src/main/pa_common.C, operators.txt: merged
                   14374:          $f[^file::load[binary;http://...]] $f.tables
                   14375: 
                   14376: 2003-09-02  paf
                   14377: 
                   14378:        * src/main/pa_common.C: printf is buffered, write(1 is not. can't
                   14379:          flush stdout without referencing 'stdout' symbol. to hell with
                   14380:          non-ansi libraries without 'stdout' symbol
                   14381: 
                   14382:        * src/main/pa_common.C: got rid of 'stdout' symbol reference on
                   14383:          unix (users reported problems with some old libc)
                   14384: 
                   14385:        * src/types/pa_vdate.h: forgot initializer
                   14386: 
                   14387: 2003-09-01  paf
                   14388: 
                   14389:        * src/: classes/date.C, include/pa_common.h, main/compile.tab.C,
                   14390:          main/pa_common.C, types/pa_vdate.h: $date.TZ ^date.roll[TZ;new
                   14391:          zone]
                   14392: 
                   14393:        * src/classes/image.C: memory handling bugs [unpatched 'new' calls]
                   14394: 
                   14395: 2003-08-19  paf
                   14396: 
                   14397:        * src/types/: pa_value.C, pa_value.h, pa_vdate.h, pa_vrequest.C,
                   14398:          pa_vstring.h, pa_vxdoc.C, pa_vxnode.C: bark intefrace obsoleted,
                   14399:          simplified a little
                   14400: 
                   14401:        * src/types/: pa_vhash.C, pa_vhash.h: _default+foreach bug refix
                   14402:          [lost fix from 3.0.8]
                   14403: 
                   14404:        * src/types/pa_vcookie.C: in VC7 if(type var=xxx){ }else{   now
                   14405:          visible here }
                   14406: 
                   14407:          bug fix
                   14408: 
                   14409:        * src/: include/pa_memory.h, types/pa_value.h: -= few warnings
                   14410: 
                   14411:        * src/main/compile.tab.C: initialized couple of variables about
                   14412:          which user reported runtime problems when parser were compiled
                   14413:          with VC7, warning level4.  study shows that later in bison
                   14414:          they've fixed that. would migrate to latest bison someday
                   14415: 
                   14416:        * src/types/pa_vmail.C: turned  off recoding in gmime (were still
                   14417:          recoding headers)
                   14418: 
                   14419:        * src/types/pa_vmail.C: works as before, same charset problems:
                   14420:          gmime recodes to UTF-8 only headers, not body. so not recoding
                   14421:          anything for now
                   14422: 
                   14423:        * src/types/: pa_vmail.C, pa_vmail.h: parses headers, still
                   14424:          problems with body
                   14425: 
                   14426:        * src/types/pa_vmail.C: mail_receive just compiled
                   14427: 
                   14428: 2003-08-18  paf
                   14429: 
                   14430:        * src/: classes/classes.vcproj, include/pa_config_fixed.h,
                   14431:          main/main.vcproj, types/types.vcproj: win32: continued process
                   14432:          detaching from \parser3project directory
                   14433: 
                   14434:        * gnu.dsp, parser3.dsw, src/classes/classes.dsp,
                   14435:          src/lib/cord/cord.dsp, src/lib/ltdl/libltdl.dsp,
                   14436:          src/lib/md5/md5.dsp, src/lib/pcre/pcre.dsp,
                   14437:          src/lib/pcre/pcre_dftables.dsp,
                   14438:          src/lib/pcre/pcre_parser_ctype.dsp, src/main/main.dsp,
                   14439:          src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
                   14440:          src/types/types.dsp: moved to MSVC 7
                   14441: 
                   14442:        * gnu.vcproj.vspscc, parser3.vssscc,
                   14443:          src/classes/classes.vcproj.vspscc,
                   14444:          src/lib/cord/cord.vcproj.vspscc,
                   14445:          src/lib/ltdl/libltdl.vcproj.vspscc,
                   14446:          src/lib/md5/md5.vcproj.vspscc,
                   14447:          src/lib/pcre/pcre_dftables.vcproj.vspscc,
                   14448:          src/lib/pcre/pcre_parser_ctype.vcproj.vspscc,
                   14449:          src/lib/pcre/pcre.vcproj.vspscc, src/main/main.vcproj.vspscc,
                   14450:          src/targets/isapi/parser3isapi.vcproj.vspscc,
                   14451:          src/types/types.vcproj.vspscc, src/targets/cgi/parser3.vcproj:
                   14452:          moved to MSVC 7
                   14453: 
                   14454:        * parser3.sln, gnu.vcproj, src/classes/classes.vcproj,
                   14455:          src/lib/cord/cord.vcproj, src/lib/ltdl/libltdl.vcproj,
                   14456:          src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
                   14457:          src/lib/pcre/pcre_dftables.vcproj,
                   14458:          src/lib/pcre/pcre_parser_ctype.vcproj, src/main/main.vcproj,
                   14459:          src/targets/cgi/parser3.vcproj,
                   14460:          src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
                   14461:          new VS project files
                   14462: 
                   14463:        * ~sak5c961f3101c36563.tmp: Temporary file created by Visual Studio
                   14464:          .NET to detect Jalindi Igloo capabilities.
                   14465: 
                   14466:        * ChangeLog, configure, configure.in, src/classes/Makefile.am,
1.116     moko     14467:          src/classes/classes.awk, src/doc/footer.htm,
                   14468:          src/include/pa_config_fixed.h, src/include/pa_version.h,
                   14469:          src/lib/Makefile.am, src/main/compile.tab.C,
1.95      moko     14470:          src/main/pa_charset.C, src/main/pa_string.C, src/main/untaint.C,
                   14471:          src/types/pa_vmail.C: merged 3.1.0 latest changes
                   14472: 
                   14473: 2003-08-15  paf
                   14474: 
                   14475:        * src/main/untaint.C: email addresses in forms:   "non-ascii" <yyy>
                   14476:          non-ascii <yyy> now encoded correctly [kinda merge from 3.0.8]
                   14477: 
                   14478:        * src/main/untaint.C: email addresses in forms:   "non-ascii" <yyy>
                   14479:          non-ascii <yyy> now encoded correctly
                   14480: 
                   14481: 2003-07-29  paf
                   14482: 
1.116     moko     14483:        * src/classes/: Makefile.am, classes.awk: classes.awk added to make
                   14484:          dist
1.95      moko     14485: 
                   14486:        * src/types/pa_vmail.C: just started --with-mail-receive
                   14487: 
                   14488: 2003-07-28  paf
                   14489: 
1.116     moko     14490:        * src/: classes/Makefile.am, lib/Makefile.am: removed circular
                   14491:          dependence in src/classes, src/lib/gc now in dist
1.95      moko     14492: 
                   14493:        * src/main/pa_string.C: ^cache bug fix [were not working at all]
                   14494: 
                   14495: 2003-07-25  paf
                   14496: 
                   14497:        * src/doc/footer.htm: year
                   14498: 
                   14499: 2003-07-24  paf
                   14500: 
                   14501:        * src/: include/pa_config_fixed.h, main/pa_charset.C: bad #endif
                   14502:          fix
                   14503: 
                   14504:        * src/include/pa_version.h: release
                   14505: 
1.116     moko     14506:        * src/lib/gc/include/: Makefile.am, gc.h: moved tempate_gc to HEAD
1.95      moko     14507: 
                   14508:        * ChangeLog, src/classes/classes.dsp, src/main/main.dsp,
                   14509:          src/main/pa_globals.C, src/targets/cgi/parser3.dsp,
                   14510:          src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: cvs:
                   14511:          getting rid of win32xml pseudo project
                   14512: 
                   14513:        * src/main/: compile.tab.C, pa_memory.C: moved tempate_gc to HEAD
                   14514: 
1.116     moko     14515:        * ChangeLog, INSTALL, Makefile.am, acsite.m4, configure,
                   14516:          configure.in, operators.txt, parser3.dsw,
1.95      moko     14517:          etc/parser3.charsets/koi8-r.cfg,
1.116     moko     14518:          etc/parser3.charsets/windows-1251.cfg, src/classes/Makefile.am,
1.95      moko     14519:          src/classes/classes.C, src/classes/classes.awk,
                   14520:          src/classes/classes.dsp, src/classes/classes.h,
                   14521:          src/classes/date.C, src/classes/double.C, src/classes/file.C,
                   14522:          src/classes/form.C, src/classes/hash.C, src/classes/image.C,
                   14523:          src/classes/int.C, src/classes/mail.C, src/classes/math.C,
                   14524:          src/classes/memory.C, src/classes/op.C, src/classes/response.C,
                   14525:          src/classes/string.C, src/classes/table.C, src/classes/void.C,
                   14526:          src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
                   14527:          src/doc/exception.dox, src/doc/index.dox, src/doc/memory.dox,
                   14528:          src/doc/string.dox, src/include/Makefile.am,
1.116     moko     14529:          src/include/pa_array.h, src/include/pa_cache_managers.h,
                   14530:          src/include/pa_charset.h, src/include/pa_charsets.h,
                   14531:          src/include/pa_common.h, src/include/pa_config_auto.h.in,
                   14532:          src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
                   14533:          src/include/pa_dictionary.h, src/include/pa_dir.h,
                   14534:          src/include/pa_exception.h, src/include/pa_exec.h,
                   14535:          src/include/pa_globals.h, src/include/pa_hash.h,
                   14536:          src/include/pa_memory.h, src/include/pa_opcode.h,
                   14537:          src/include/pa_operation.h, src/include/pa_pool.h,
                   14538:          src/include/pa_pragma_pack_begin.h,
1.95      moko     14539:          src/include/pa_pragma_pack_end.h, src/include/pa_request.h,
                   14540:          src/include/pa_request_charsets.h, src/include/pa_request_info.h,
                   14541:          src/include/pa_sapi.h, src/include/pa_socks.h,
                   14542:          src/include/pa_sql_connection.h,
                   14543:          src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
                   14544:          src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
                   14545:          src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
                   14546:          src/include/pa_threads.h, src/include/pa_types.h,
1.116     moko     14547:          src/include/pa_uue.h, src/lib/Makefile.am,
                   14548:          src/lib/cord/Makefile.am, src/lib/cord/cord.dsp,
                   14549:          src/lib/cord/cordbscs.c, src/lib/cord/cordprnt.c,
                   14550:          src/lib/cord/cordxtra.c, src/lib/cord/source.url,
                   14551:          src/lib/cord/include/Makefile.am, src/lib/cord/include/cord.h,
1.95      moko     14552:          src/lib/cord/include/ec.h,
                   14553:          src/lib/cord/include/private/Makefile.am,
                   14554:          src/lib/cord/include/private/cord_pos.h, src/lib/gc/Makefile.am,
1.116     moko     14555:          src/lib/ltdl/libltdl.dsp, src/lib/md5/pa_md5.h,
                   14556:          src/lib/md5/pa_md5c.c, src/lib/pcre/pcre.h,
1.95      moko     14557:          src/lib/pcre/pcre_parser_ctype.c, src/main/Makefile.am,
1.116     moko     14558:          src/main/compile.C, src/main/compile.tab.C, src/main/compile.y,
                   14559:          src/main/compile_tools.C, src/main/compile_tools.h,
                   14560:          src/main/execute.C, src/main/main.dsp, src/main/pa_array.C,
                   14561:          src/main/pa_cache_managers.C, src/main/pa_charset.C,
                   14562:          src/main/pa_charsets.C, src/main/pa_common.C,
                   14563:          src/main/pa_dictionary.C, src/main/pa_dir.C,
                   14564:          src/main/pa_exception.C, src/main/pa_exec.C,
1.95      moko     14565:          src/main/pa_globals.C, src/main/pa_hash.C, src/main/pa_pool.C,
                   14566:          src/main/pa_request.C, src/main/pa_socks.C,
                   14567:          src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
                   14568:          src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
1.116     moko     14569:          src/main/pa_uue.C, src/main/untaint.C, src/sql/pa_sql_driver.h,
                   14570:          src/targets/Makefile.am, src/targets/cgi/Makefile.am,
                   14571:          src/targets/cgi/getopt.c, src/targets/cgi/getopt.h,
                   14572:          src/targets/cgi/pa_pool.C, src/targets/cgi/pa_threads.C,
                   14573:          src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
                   14574:          src/targets/cgi/pool_storage.h, src/targets/cgi/pp3.cmd,
                   14575:          src/targets/isapi/Makefile.am, src/targets/isapi/pa_pool.C,
1.95      moko     14576:          src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
                   14577:          src/targets/isapi/parser3isapi.dsp,
                   14578:          src/targets/isapi/pool_storage.h, src/types/Makefile.am,
1.116     moko     14579:          src/types/pa_junction.h, src/types/pa_method.h,
                   14580:          src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
1.95      moko     14581:          src/types/pa_vclass.C, src/types/pa_vclass.h,
                   14582:          src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
                   14583:          src/types/pa_vcookie.h, src/types/pa_vdate.h,
                   14584:          src/types/pa_vdouble.h, src/types/pa_venv.h,
                   14585:          src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
                   14586:          src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
                   14587:          src/types/pa_vimage.C, src/types/pa_vimage.h,
                   14588:          src/types/pa_vint.h, src/types/pa_vjunction.h,
                   14589:          src/types/pa_vmail.C, src/types/pa_vmail.h, src/types/pa_vmath.C,
                   14590:          src/types/pa_vmath.h, src/types/pa_vmemory.h,
                   14591:          src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
                   14592:          src/types/pa_vobject.C, src/types/pa_vobject.h,
                   14593:          src/types/pa_vrequest.C, src/types/pa_vrequest.h,
                   14594:          src/types/pa_vresponse.C, src/types/pa_vresponse.h,
                   14595:          src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
                   14596:          src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
                   14597:          src/types/pa_vstatus.h, src/types/pa_vstring.C,
                   14598:          src/types/pa_vstring.h, src/types/pa_vtable.C,
                   14599:          src/types/pa_vtable.h, src/types/pa_vvoid.h,
                   14600:          src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
                   14601:          src/types/pa_vxnode.C, src/types/pa_vxnode.h,
                   14602:          src/types/pa_wcontext.C, src/types/pa_wcontext.h,
                   14603:          src/types/pa_wwrapper.h, src/types/types.dsp: moved tempate_gc to
                   14604:          HEAD
                   14605: 
                   14606:        * tests/: 001.html, 002.html, 003.html, 004.html, 005.html,
                   14607:          006.html, 007.html, 008.html, 009.html, 010.html, 011.html,
                   14608:          012.html, 013.html, 014.html, 015.html, 016.html, 017.html,
                   14609:          018.html, 019.html, 019paf2001.gif, 020.html, 021.html, 022.html,
                   14610:          023.html, 024.html, 025.html, 026.html, 027.html, 028.html,
                   14611:          029.html, 030.html, 031.html, 032.html, 033.html, 034.html,
                   14612:          035.html, 036.html, 037.html, 038.html, 039.html, 040.html,
                   14613:          041.html, 042.html, 043.html, 044.html, 045.html, 046.html,
                   14614:          047.html, 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p,
                   14615:          052.html, 053.html, 054.html, 055.html, 056.html, 057.html,
                   14616:          058.html, 058_paf2000.png, 059.html, 060.html, 061.dat, 061.html,
                   14617:          062.html, 063.html, 064.html, 065.html, 066.html, 067.html,
                   14618:          068.html, 069.html, 070.html, 071.html, 072.html, 073.html,
                   14619:          074.html, 075.html, 076.html, 077.html, 078.html, 079.html,
                   14620:          080.html, 081.html, 082.html, 083.html, 084.html, 085.html,
                   14621:          086.html, 087.html, 088.html, 089.html, 090.html, 091.html,
                   14622:          092.html, 093.html, 094.html, 095.html, 096.html, 097.html,
                   14623:          098.html, 098font.gif, 099.html, 100.html, 101.html, 102.html,
                   14624:          103.html, 103mark.gif, 103paf2001.gif, 104.html, 105.html,
                   14625:          106.html, 107.html, 108.html, 108.xsl, 109.html, 110.html,
                   14626:          111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
                   14627:          117.html, 118.html, 119.html, 120.html, 121.html, 122.html,
                   14628:          123.html, 124.html, 125.html, 126.html, 127.html, 128.html,
                   14629:          129.html, 130.html, 131.html, 132.html, 133.html, 134.html,
                   14630:          135.html, 136.html, 137.html, 138.html, 139.html, 140.html,
                   14631:          141.html, Makefile, descript.ion, run_parser.sh, 022_dir/a.html,
                   14632:          022_dir/b.txt, 022_dir/c.htm, 096_dir/163.jpg, 096_dir/188.jpg,
                   14633:          outputs/create-dir, results/001.processed, results/002.processed,
                   14634:          results/003.processed, results/004.processed,
                   14635:          results/005.processed, results/006.processed,
                   14636:          results/007.processed, results/008.processed,
                   14637:          results/009.processed, results/010.processed,
                   14638:          results/011.processed, results/012.processed,
                   14639:          results/013.processed, results/014.processed,
                   14640:          results/015.processed, results/016.processed,
                   14641:          results/017.processed, results/018.processed,
                   14642:          results/019.processed, results/020.processed,
                   14643:          results/021.processed, results/022.processed,
                   14644:          results/023.processed, results/024.processed,
                   14645:          results/025.processed, results/026.processed,
                   14646:          results/027.processed, results/028.processed,
                   14647:          results/029.processed, results/030.processed,
                   14648:          results/031.processed, results/032.processed,
                   14649:          results/033.processed, results/034.processed,
                   14650:          results/035.processed, results/036.processed,
                   14651:          results/037.processed, results/038.processed,
                   14652:          results/039.processed, results/040.processed,
                   14653:          results/041.processed, results/042.processed,
                   14654:          results/043.processed, results/044.processed,
                   14655:          results/045.processed, results/046.processed,
                   14656:          results/047.processed, results/048.processed,
                   14657:          results/049.processed, results/050.processed,
                   14658:          results/051.processed, results/052.processed,
                   14659:          results/053.processed, results/054.processed,
                   14660:          results/055.processed, results/056.processed,
                   14661:          results/057.processed, results/058.processed,
                   14662:          results/059.processed, results/060.processed,
                   14663:          results/061.processed, results/062.processed,
                   14664:          results/063.processed, results/064.processed,
                   14665:          results/065.processed, results/066.processed,
                   14666:          results/067.processed, results/068.processed,
                   14667:          results/069.processed, results/070.processed,
                   14668:          results/071.processed, results/072.processed,
                   14669:          results/073.processed, results/074.processed,
                   14670:          results/075.processed, results/076.processed,
                   14671:          results/077.processed, results/078.processed,
                   14672:          results/079.processed, results/080.processed,
                   14673:          results/081.processed, results/082.processed,
                   14674:          results/083.processed, results/084.processed,
                   14675:          results/085.processed, results/086.processed,
                   14676:          results/087.processed, results/088.processed,
                   14677:          results/089.processed, results/090.processed,
                   14678:          results/091.processed, results/092.processed,
                   14679:          results/093.processed, results/094.processed,
                   14680:          results/095.processed, results/096.processed,
                   14681:          results/097.processed, results/098.processed,
                   14682:          results/099.processed, results/100.processed,
                   14683:          results/101.processed, results/102.processed,
                   14684:          results/103.processed, results/104.processed,
                   14685:          results/105.processed, results/106.processed,
                   14686:          results/107.processed, results/108.processed,
                   14687:          results/109.processed, results/110.processed,
                   14688:          results/111.processed, results/112.processed,
                   14689:          results/113.processed, results/114.processed,
                   14690:          results/115.processed, results/116.processed,
                   14691:          results/117.processed, results/118.processed,
                   14692:          results/119.processed, results/120.processed,
                   14693:          results/121.processed, results/122.processed,
                   14694:          results/123.processed, results/124.processed,
                   14695:          results/125.processed, results/126.processed,
                   14696:          results/127.processed, results/128.processed,
                   14697:          results/129.processed, results/130.processed,
                   14698:          results/131.processed, results/132.processed,
                   14699:          results/133.processed, results/134.processed,
                   14700:          results/135.processed, results/136.processed,
                   14701:          results/137.processed, results/138.processed,
                   14702:          results/139.processed, results/140.processed,
                   14703:          results/141.processed: merged(copied) to HEAD from template_gc
                   14704: 
                   14705:        * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: more step
                   14706:          towards \parser3project not having to be in root
                   14707: 
                   14708:        * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c: apache
                   14709:          module compiled [were minor unnecessary changes in lib/md5
                   14710:          interface]
                   14711: 
                   14712:        * src/include/pa_version.h: release
                   14713: 
                   14714:        * parser3.dsw, src/main/pa_globals.C: relative paths to xml&gc libs
                   14715: 
                   14716:        * src/classes/math.C: merged uuid bugfix
                   14717: 
                   14718:        * tests/: 141.html, results/141.processed: fixed bug with
                   14719:          too-small-a-buffer
                   14720: 
                   14721:        * src/classes/math.C: uuid bugfix
                   14722: 
                   14723:        * tests/: 141.html, Makefile, results/005.processed,
                   14724:          results/030.processed, results/075.processed,
                   14725:          results/078.processed: to reflect date format change (were -
                   14726:          become ' ')
                   14727: 
                   14728:        * src/classes/math.C: uuid bugfix
                   14729: 
                   14730:        * parser3.dsw, src/main/pa_globals.C: few paths for libxml
                   14731:          debug/release changes
                   14732: 
                   14733:        * src/lib/md5/pa_md5c.c: PA_ -> pa_
                   14734: 
                   14735: 2003-07-23  paf
                   14736: 
                   14737:        * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
                   14738:          renamed a little [to move to comman naming conv]
                   14739: 
1.116     moko     14740:        * src/targets/Makefile.am: apache13 splitted to simplify apache
                   14741:          build
1.95      moko     14742: 
                   14743:        * src/: include/pa_request.h, include/pa_stack.h, main/execute.C,
                   14744:          main/pa_request.C, main/pa_sql_driver_manager.C,
                   14745:          main/pa_stylesheet_manager.C, targets/isapi/parser3isapi.dsp:
                   14746:          stack top_index() fixed
                   14747: 
                   14748:        * src/main/pa_globals.C: minor style changes
                   14749: 
                   14750:        * src/: classes/op.C, include/pa_sql_connection.h: connection
                   14751:          closing/caching fixed [connections were not closed/put to cache]
                   14752: 
                   14753: 2003-07-22  paf
                   14754: 
                   14755:        * INSTALL: gc part updated stightly
                   14756: 
                   14757:        * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: updated to
                   14758:          new sapi interface
                   14759: 
                   14760:        * src/classes/file.C: comment on OS
                   14761: 
                   14762:        * src/main/pa_string.C: removed reduntant invariant check [there is
                   14763:          one deeper in cord lib]
                   14764: 
                   14765:        * src/main/pa_exec.C: on win32 bugfix in handling shbang
                   14766: 
                   14767:        * src/main/pa_memory.C: out of memory is no longer coredump
                   14768: 
                   14769:        * INSTALL: disable-threads adviced
                   14770: 
                   14771: 2003-07-21  paf
                   14772: 
1.116     moko     14773:        * src/classes/Makefile.am: removed circular dependency on classes.C
1.95      moko     14774: 
                   14775:        * src/classes/file.C: file::exec/cgi environment variables now must
                   14776:          be UPPERCASE and A-Z 0-9 _-
                   14777: 
                   14778:        * src/classes/file.C: env passing fixed
                   14779: 
                   14780:        * src/main/pa_common.C: http:// CRLF now [merged from HEAD]
                   14781: 
                   14782:        * src/main/pa_common.C: http:// CRLF now
                   14783: 
                   14784: 2003-07-02  paf
                   14785: 
                   14786:        * operators.txt, src/types/pa_vstatus.C: renamed $memory:status
                   14787:          fields to reflect their real meaning
                   14788: 
                   14789: 2003-06-27  paf
                   14790: 
                   14791:        * src/: classes/file.C, include/pa_charset.h, include/pa_exec.h,
                   14792:          include/pa_hash.h, main/pa_charset.C: merged from HEAD
                   14793:          file::exec/cgi .charset
                   14794: 
                   14795: 2003-06-26  paf
                   14796: 
                   14797:        * ChangeLog, src/classes/file.C, src/classes/hash.C,
                   14798:          src/classes/image.C, src/classes/op.C, src/classes/string.C,
                   14799:          src/classes/table.C: fixed several uninitialized local
                   14800:          structures.  notably ^hash.foreach now inserts delimiters
                   14801:          properly [were inserting it before first body]
                   14802: 
                   14803: 2003-06-24  paf
                   14804: 
                   14805:        * src/include/pa_hash.h: simplified HASH_ALLOCATES_COUNT
                   14806: 
                   14807: 2003-06-20  paf
                   14808: 
                   14809:        * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
                   14810:          src/main/pa_globals.C: introducing
                   14811:          $f[^file::load[binary;http://...]] $f.tables
                   14812: 
                   14813: 2003-06-06  paf
                   14814: 
                   14815:        * src/types/: pa_vhash.h: $hash.field lookup first now: along with
                   14816:          table. [were method lookup: inconsistent]
                   14817: 
                   14818: 2003-06-02  paf
                   14819: 
                   14820:        * src/include/pa_memory.h: empty string clone fixed to return
                   14821:          writable memory
                   14822: 
                   14823:        * src/main/pa_common.C: fix_line_breaks bug fix [terminating zero
                   14824:          were not appended] which violated string invariant
                   14825: 
                   14826: 2003-05-30  paf
                   14827: 
                   14828:        * src/types/pa_value.C: date format now Sun, 06 Nov 1994 08:49:37
                   14829:          GMT  ; RFC 822, updated by RFC 1123 [as in HEAD]
                   14830: 
                   14831:        * src/main/pa_common.C: date format now Sun, 06 Nov 1994 08:49:37
                   14832:          GMT  ; RFC 822, updated by RFC 1123
                   14833: 
                   14834:        * src/: classes/file.C, classes/form.C, targets/cgi/parser3.C,
                   14835:          targets/isapi/parser3isapi.C: initialized request_info properly
                   14836: 
                   14837:        * src/classes/xnode.C: found minor bug, commended for future
                   14838: 
                   14839: 2003-05-28  paf
                   14840: 
                   14841:        * src/classes/form.C: request_info.content_length can't be <0,
                   14842:          size_t for some time
                   14843: 
                   14844: 2003-05-26  paf
                   14845: 
                   14846:        * src/: classes/file.C, classes/string.C, main/pa_string.C: few
                   14847:          forgotten <0 changed to !=STRING_NOT_FOUND
                   14848: 
                   14849:        * src/classes/math.C: merged ffffu from HEAD
                   14850: 
                   14851: 2003-05-11  paf
                   14852: 
                   14853:        * src/main/pa_globals.C: xml memory debugging functions (ifdefed)
                   14854: 
                   14855:        * src/types/: pa_vxdoc.h, pa_vxnode.h: think that found cause of
                   14856:          premature doc free.  transformed document had xmlDoc reference
                   14857:          stored to non-gc-memory (libgdome) added holding-reference
                   14858: 
                   14859: 2003-04-29  paf
                   14860: 
                   14861:        * src/main/pa_globals.C: started digging on double free.  on win32
                   14862:          found that that's perfectly normal.
                   14863: 
                   14864: 2003-04-25  paf
                   14865: 
                   14866:        * src/classes/table.C: table.join bug fix  [bad limit check]
                   14867: 
                   14868:        * src/classes/math.C: merged from HEAD: simpiler hash_string
                   14869: 
                   14870:        * src/classes/math.C: snprintf(buf, 3) become (buf,2) and failed to
                   14871:          print anything.  changed to quicker and simplier code
                   14872: 
                   14873:        * src/classes/hash.C: allowed ^hash::create[^rem{xxx}]   [were to
                   14874:          strict a check]
                   14875: 
                   14876:        * src/: classes/table.C, lib/md5/pa_md5c.c: minor compile errors
                   14877: 
                   14878: 2003-04-24  paf
                   14879: 
                   14880:        * src/include/pa_table.h: too strict assert loosened
                   14881: 
                   14882:        * src/lib/: md5/pa_md5c.c, pcre/pcre.h: thanks to Ilia Soldis
                   14883:          <soldis@infolio.ru> for reporing this ansi c fiolation syntax
                   14884:          report
                   14885: 
                   14886: 2003-04-21  paf
                   14887: 
1.116     moko     14888:        * src/targets/cgi/Makefile.am: pp3 added to .am
1.95      moko     14889: 
                   14890:        * src/main/pa_globals.C: pcre memory management changed to use GC
                   14891:          memory
                   14892: 
                   14893:        * src/main/pa_globals.C: 2.5.6 version of libxml allows to install
                   14894:          xmlMallocAtomic [author agreed to my suggestion], used that
                   14895: 
                   14896:        * src/types/pa_vmail.C: ^mail:send[$.body backward compatibility
                   14897: 
                   14898:        * src/: targets/cgi/parser3.C, types/pa_value.C, types/pa_value.h,
                   14899:          types/pa_vmail.C: attributed_meaning_to_string added
                   14900:          L_UNSPECIFIED piece which was sortof OK, but violated string
                   14901:          invariant [assertion barked on that] changed to L_PASS_APPEND,
                   14902:          made that param obligatory
                   14903: 
                   14904:        * src/main/pa_string.C: String::ArrayFragment::append_positions bug
                   14905:          fixed [assert helped]
                   14906: 
                   14907:        * src/include/pa_string.h: assert added [looking for bug]
                   14908: 
                   14909:        * src/main/pa_request.C: merged from HEAD: "x:..." and "\\..." file
                   14910:          names on Win32 considered disk-global
                   14911: 
                   14912:        * src/main/pa_request.C: "x:..." and "\\..." file names on Win32
                   14913:          considered disk-global
                   14914: 
                   14915: 2003-04-18  paf
                   14916: 
                   14917:        * src/main/untaint.C: merged from HEAD: enabled '~' letter in
                   14918:          filenames
                   14919: 
                   14920:        * src/main/untaint.C: enabled '~' letter in filenames
                   14921: 
                   14922: 2003-04-16  paf
                   14923: 
                   14924:        * src/classes/file.C: small bug introduced in autoptr times fixed
                   14925: 
                   14926:        * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: merged from
                   14927:          HEAD
                   14928: 
1.116     moko     14929:        * src/classes/table.C: fix: gcc reported tiny error
1.95      moko     14930: 
                   14931: 2003-04-15  paf
                   14932: 
                   14933:        * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
                   14934:          src/lib/md5/pa_md5c.c, tests/141.html,
                   14935:          tests/results/141.processed: merged from head ^math:uuid[]
                   14936:          ^math:uid64[] ^math:md5[string]
                   14937: 
                   14938:          test added: 141.html
                   14939: 
                   14940:        * operators.txt, src/classes/math.C: ^math:uid64[]
                   14941: 
                   14942:        * src/classes/math.C: ^math:uuid[]
                   14943: 
                   14944:        * operators.txt, src/classes/math.C: ^math:uuid[]
                   14945: 
                   14946:        * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
                   14947:          src/lib/md5/pa_md5c.c: ^math:md5[string] 16-byte digest
                   14948: 
                   14949:        * operators.txt, src/classes/file.C, src/include/pa_common.h,
                   14950:          src/include/pa_config_fixed.h, src/main/pa_common.C:
                   14951:          ^file::load[mode;name;     $.offset     $.limit
                   14952: 
                   14953: 2003-04-14  paf
                   14954: 
                   14955:        * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
                   14956:          started ^math:md5
                   14957: 
                   14958:        * src/classes/table.C, src/include/pa_array.h,
                   14959:          src/include/pa_table.h, src/main/pa_table.C, tests/140.html,
                   14960:          tests/results/140.processed: table $.reverse option works in
                   14961:          create&co table $.distinct[tables] bug fix merged
                   14962: 
                   14963:        * src/: classes/table.C, include/pa_table.h: table
                   14964:          $.distinct[tables] bug fixed
                   14965: 
                   14966:        * src/classes/table.C: more warnings
                   14967: 
                   14968:        * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C:
                   14969:          removed checks in table::set_current, moved them back to
                   14970:          table::locate implemented table::create/join ñ $.reverse
                   14971: 
                   14972:        * src/: include/pa_table.h, main/pa_array.C, main/pa_table.C:
                   14973:          removed checks in table::set_current, moved them back to
                   14974:          table::locate
                   14975: 
                   14976: 2003-04-11  paf
                   14977: 
                   14978:        * operators.txt, src/classes/date.C, src/classes/table.C,
                   14979:          src/include/pa_array.h, src/include/pa_common.h,
                   14980:          src/include/pa_config_includes.h, src/include/pa_string.h,
                   14981:          src/include/pa_table.h, src/main/pa_request.C,
                   14982:          src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
                   14983:          src/main/pa_table.C: merged from HEAD from
                   14984:          before_append_array_limit_sense_change to
                   14985:          after_append_array_limit_sense_change
                   14986: 
                   14987:        * src/classes/table.C: typo
                   14988: 
                   14989:        * operators.txt, src/classes/date.C, src/classes/table.C,
                   14990:          src/include/pa_array.h, src/include/pa_common.h,
                   14991:          src/include/pa_config_includes.h, src/include/pa_globals.h,
                   14992:          src/include/pa_table.h, src/main/pa_array.C,
                   14993:          src/main/pa_globals.C, src/main/pa_request.C,
                   14994:          src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
                   14995:          src/main/pa_table.C: append_array_limit_sense_change locate
                   14996:          accepts options same as create new option: $.reverse(1)   [do not
                   14997:          work in table::create]
                   14998: 
                   14999:        * src/: include/pa_common.h, main/pa_common.C: gcc didn't like
                   15000:          (stat xxx,
                   15001: 
                   15002:        * src/classes/: table.C: typo
                   15003: 
                   15004:        * tests/: 130.html, 131.html, 132.html, 133.html, 134.html,
                   15005:          135.html, 136.html, 137.html, 138.html, 139.html, descript.ion,
                   15006:          results/130.processed, results/131.processed,
                   15007:          results/132.processed, results/133.processed,
                   15008:          results/134.processed, results/135.processed,
                   15009:          results/136.processed, results/137.processed,
                   15010:          results/138.processed, results/139.processed: added few mustfail
                   15011:          tests 130.html mustfail: empty regexp 131.html mustfail: invalid
                   15012:          date/time 132.html mustfail: access to junction outside of
                   15013:          context 133.html mustfail: access to junction outside of context,
                   15014:          case version 134.html mustfail: hash: adding a key inside of
                   15015:          foreach 135.html mustfail: modifying system class 136.html
                   15016:          mustfail: $.name outside of $hash[here] 137.html mustfail:
                   15017:          appendChild without import 138.html mustfail: invalid encoding
                   15018:          inside of xml 139.html mustfail: bad XPath
                   15019: 
                   15020:        * operators.txt, src/classes/table.C, tests/084.html,
                   15021:          tests/125.html, tests/126.html, tests/127.html, tests/128.html,
                   15022:          tests/129.html, tests/results/125.processed,
                   15023:          tests/results/126.processed, tests/results/127.processed,
                   15024:          tests/results/128.processed, tests/results/129.processed: merged
                   15025:          from HEAD ^table.hash[key][$.distinct[tables]]
                   15026: 
                   15027:          maked appropriate tests [changed one old nonconforming]
                   15028: 
                   15029:        * operators.txt, src/classes/table.C:
                   15030:          ^table.hash[key][$.distinct[tables]]
                   15031: 
                   15032:        * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
                   15033:          merged fix for found very old xml (dom) bug: were passing
                   15034:          domString objects and later ERROREOUSLY freed them
                   15035: 
                   15036:        * INSTALL, src/include/pa_charset.h, src/lib/Makefile.am,
                   15037:          src/main/pa_charset.C: re-added libgdome patch. regretfully
                   15038:          libgdome bug can not be worked around
                   15039: 
                   15040: 2003-04-10  paf
                   15041: 
                   15042:        * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
                   15043:          found very old xml (dom) bug: were passing domString objects and
                   15044:          later ERROREOUSLY freed them
                   15045: 
                   15046:        * src/doc/string.dox, src/include/pa_memory.h,
                   15047:          src/include/pa_string.h, src/lib/cord/cordbscs.c,
                   15048:          src/main/pa_string.C, src/types/pa_vform.C, src/types/pa_vform.h,
                   15049:          tests/123.html, tests/124.html, tests/results/001.processed,
                   15050:          tests/results/002.processed, tests/results/003.processed,
                   15051:          tests/results/004.processed, tests/results/005.processed,
                   15052:          tests/results/006.processed, tests/results/008.processed,
                   15053:          tests/results/009.processed, tests/results/010.processed,
                   15054:          tests/results/011.processed, tests/results/012.processed,
                   15055:          tests/results/013.processed, tests/results/014.processed,
                   15056:          tests/results/015.processed, tests/results/016.processed,
                   15057:          tests/results/017.processed, tests/results/018.processed,
                   15058:          tests/results/020.processed, tests/results/021.processed,
                   15059:          tests/results/022.processed, tests/results/023.processed,
                   15060:          tests/results/024.processed, tests/results/025.processed,
                   15061:          tests/results/026.processed, tests/results/027.processed,
                   15062:          tests/results/028.processed, tests/results/029.processed,
                   15063:          tests/results/030.processed, tests/results/031.processed,
                   15064:          tests/results/032.processed, tests/results/033.processed,
                   15065:          tests/results/034.processed, tests/results/035.processed,
                   15066:          tests/results/036.processed, tests/results/037.processed,
                   15067:          tests/results/038.processed, tests/results/039.processed,
                   15068:          tests/results/040.processed, tests/results/041.processed,
                   15069:          tests/results/042.processed, tests/results/043.processed,
                   15070:          tests/results/044.processed, tests/results/045.processed,
                   15071:          tests/results/046.processed, tests/results/047.processed,
                   15072:          tests/results/048.processed, tests/results/049.processed,
                   15073:          tests/results/050.processed, tests/results/051.processed,
                   15074:          tests/results/052.processed, tests/results/053.processed,
                   15075:          tests/results/054.processed, tests/results/055.processed,
                   15076:          tests/results/056.processed, tests/results/057.processed,
                   15077:          tests/results/058.processed, tests/results/059.processed,
                   15078:          tests/results/060.processed, tests/results/061.processed,
                   15079:          tests/results/062.processed, tests/results/063.processed,
                   15080:          tests/results/064.processed, tests/results/065.processed,
                   15081:          tests/results/066.processed, tests/results/067.processed,
                   15082:          tests/results/068.processed, tests/results/069.processed,
                   15083:          tests/results/070.processed, tests/results/071.processed,
                   15084:          tests/results/072.processed, tests/results/073.processed,
                   15085:          tests/results/074.processed, tests/results/075.processed,
                   15086:          tests/results/076.processed, tests/results/077.processed,
                   15087:          tests/results/078.processed, tests/results/079.processed,
                   15088:          tests/results/080.processed, tests/results/081.processed,
                   15089:          tests/results/082.processed, tests/results/083.processed,
                   15090:          tests/results/084.processed, tests/results/085.processed,
                   15091:          tests/results/086.processed, tests/results/087.processed,
                   15092:          tests/results/088.processed, tests/results/089.processed,
                   15093:          tests/results/090.processed, tests/results/091.processed,
                   15094:          tests/results/092.processed, tests/results/093.processed,
                   15095:          tests/results/094.processed, tests/results/095.processed,
                   15096:          tests/results/096.processed, tests/results/097.processed,
                   15097:          tests/results/101.processed, tests/results/102.processed,
                   15098:          tests/results/104.processed, tests/results/105.processed,
                   15099:          tests/results/106.processed, tests/results/107.processed,
                   15100:          tests/results/108.processed, tests/results/109.processed,
                   15101:          tests/results/110.processed, tests/results/111.processed,
                   15102:          tests/results/112.processed, tests/results/113.processed,
                   15103:          tests/results/114.processed, tests/results/115.processed,
                   15104:          tests/results/116.processed, tests/results/117.processed,
                   15105:          tests/results/118.processed, tests/results/119.processed,
                   15106:          tests/results/120.processed, tests/results/121.processed,
                   15107:          tests/results/122.processed, tests/results/123.processed,
                   15108:          tests/results/124.processed: new convention: char* never 0.
                   15109:          assert in cord on that
                   15110: 
                   15111:        * src/main/pa_charset.C: couple more asserts
                   15112: 
                   15113:        * src/: main/pa_charset.C, include/pa_charset.h: little transcodes
                   15114:          speedup
                   15115: 
                   15116:        * src/main/pa_charset.C: couple assertions on fantastic situations
                   15117:          added [may be those is the case now?]
                   15118: 
                   15119:        * src/main/pa_charset.C: bugfix on memory buffer overrun [but
                   15120:          that's memory from gc_malloc, not from g_malloc :(, but would
                   15121:          hope]
                   15122: 
                   15123:        * src/main/pa_charset.C: bugfix on memory buffer overrun [but
                   15124:          that's memory from gc_malloc, not from g_malloc :(, but would
                   15125:          hope]
                   15126: 
                   15127:        * src/main/pa_charset.C: checked custom malloc for returning 0
                   15128: 
                   15129: 2003-04-09  paf
                   15130: 
                   15131:        * src/classes/date.C: merged ^date.roll changes
                   15132: 
                   15133:        * src/classes/date.C: ^date.roll bug fix
                   15134: 
                   15135:        * src/classes/date.C: ^date.roll now throws less errors: month
                   15136:          shifts handles end of month situation by reducing day number
                   15137:          hour-hole shift reduces hour to recover
                   15138: 
                   15139:        * src/targets/cgi/pp3.cmd: custom profiling script: plist/ST <<
                   15140:          Sort by function time
                   15141: 
                   15142:        * operators.txt, src/main/pa_charset.C, src/main/pa_common.C:
                   15143:          http://   $.charset[] param done
                   15144: 
                   15145:        * tests/: 122.html, results/122.processed: 122 date test <= and ==
                   15146:          added [after volatile fix. passes on win&intel-solaris]
                   15147: 
                   15148: 2003-04-08  paf
                   15149: 
                   15150:        * src/: classes/file.C, classes/op.C, classes/table.C,
                   15151:          classes/xdoc.C, include/pa_charset.h, include/pa_charsets.h,
                   15152:          include/pa_common.h, include/pa_request_charsets.h,
                   15153:          main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
                   15154:          main/pa_exec.C, main/pa_request.C, main/untaint.C,
                   15155:          types/pa_value.h, types/pa_vmail.C, types/pa_vrequest.C,
                   15156:          types/pa_vresponse.C: started http://   $.charset[] param and
                   15157:          http response charset detection just compiled.  todo:test
                   15158: 
                   15159:        * src/main/pa_common.C: merged PA_USE_ALARM bugfix from HEAD
                   15160: 
                   15161:        * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
                   15162:          main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vform.C,
                   15163:          types/pa_vmail.C: changed transcode param converntion  along with
                   15164:          string creating convention -- all strings are zero-terminated,
                   15165:          this allowed to fix one remaining String("123", 2) case
                   15166: 
                   15167:        * src/: classes/date.C, classes/file.C, classes/hash.C,
                   15168:          classes/op.C, classes/string.C, classes/table.C,
                   15169:          include/pa_charset.h, include/pa_memory.h, include/pa_string.h,
                   15170:          main/compile.tab.C, main/pa_charset.C, main/pa_exec.C,
                   15171:          main/pa_request.C, main/pa_string.C, main/pa_uue.C,
                   15172:          main/untaint.C, types/pa_vfile.C, types/pa_vfile.h,
                   15173:          types/pa_vform.C, types/pa_vform.h, types/pa_vmail.C: pa_vform
                   15174:          violated String::invariant. started fixing [not compiled now]
                   15175: 
                   15176:        * src/: classes/string.C, include/pa_string.h, lib/cord/cordbscs.c,
                   15177:          main/compile.tab.C, main/compile.y, main/pa_string.C,
                   15178:          main/untaint.C, targets/cgi/parser3.C: number of string style
                   15179:          improvements & optimizations
                   15180: 
                   15181:        * src/classes/xnode.C: =0 bug fix [left from autoptr default ctor
                   15182:          :(]
                   15183: 
                   15184:        * src/main/untaint.C: removed redundant & in CORD_pos param passing
                   15185:          [for it's a pointer really]
                   15186: 
                   15187:        * src/main/untaint.C: CORD_pos_advance turned out to have limit on
                   15188:          'n' param. worked that around
                   15189: 
                   15190:        * src/lib/cord/: Makefile.am, cordbscs.c, source.url: From: "Boehm,
                   15191:          Hans" <hans_boehm@hp.com> To: "'Alexandr Petrosian (PAF)'"
                   15192:          <PAF@design.ru>; "Boehm, Hans" <hans_boehm@hp.com> Sent: Tuesday,
                   15193:          April 08, 2003 2:16 AM Subject: RE: libgc 6.2.alpha4
                   15194:          cord/cordbscs.c/CORD_cat bug [were: CORD__extend_path bug?
                   15195: 
                   15196:          Thanks for the bug report and patch.
                   15197: 
                   15198:          I hadn't looked at this code in a while.  Reading it now, it
                   15199:          seems to me that the tests should also be ">= MAX_DEPTH" to
                   15200:          comply with the invariant, though that may not matter a lot.  I
                   15201:          changed that, too.
                   15202: 
                   15203:          Hans
                   15204: 
                   15205: 2003-04-07  paf
                   15206: 
                   15207:        * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
                   15208:          merged from head:safe mode error message now includes numbers
                   15209: 
                   15210:        * src/main/execute.C: n-th attempt to make a=a work with double.
                   15211:          problem: as_double returns it's result in fp-register compiler
                   15212:          optimizes access to that register after b->as_double, and just
                   15213:          compares ALREADY_STORED_VALUE with prev-calculated a->as_double
                   15214:          from memory.  _SAME_ double values do not match here.  when
                   15215:          forced to REload fp-register, values do match.
                   15216: 
                   15217:          tried to make them volatile.
                   15218: 
                   15219:        * src/main/execute.C: n-th attempt to make a=a work with double.
                   15220:          problem: as_double returns it's result in fp-register compiler
                   15221:          optimizes access to that register after b->as_double, and just
                   15222:          compares ALREADY_STORED_VALUE with prev-calculated a->as_double
                   15223:          from memory.  _SAME_ double values do not match here.  when
                   15224:          forced to REload fp-register, values do match.
                   15225: 
                   15226:          tried to make them volatile.
                   15227: 
                   15228:        * src/types/pa_vobject.h: small style change
                   15229: 
                   15230:        * src/: lib/cord/cordbscs.c, include/pa_string.h: CORD_cat bugfix
                   15231: 
                   15232:        * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C: safe
                   15233:          mode error message now includes numbers
                   15234: 
                   15235:        * src/: main/untaint.C, targets/cgi/parser3.C: unknown untaint lang
                   15236:          now causes death
                   15237: 
                   15238: 2003-04-04  paf
                   15239: 
                   15240:        * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C:
                   15241:          incorportated pa_exec patch by From: "Victor Fedoseev"
                   15242:          <vvf_ru@mail.ru> To: "Alexandr Petrosian (PAF)" <PAF@design.ru>
                   15243:          Sent: Thursday, January 23, 2003 9:14 AM
                   15244: 
                   15245:          huge speedup on ^file::cgi with big result
                   15246: 
                   15247:        * src/classes/table.C: sort table with 0 rows bug fixed
                   15248: 
                   15249:        * src/types/pa_vhash.h: $hash._default showed in foreach & co bug
                   15250:          fix http://i2/tasks/edit/?id=4493701604654042676
                   15251: 
                   15252:          @main[] $with_default[  $.a[1]  $._default[default from
                   15253:          with_default] ] ^show[$with_default]
                   15254: 
                   15255:          $to_add_to[     $.b[2] ] ^to_add_to.add[$with_default]
                   15256:          =$to_add_to.xxx=<br>
                   15257: 
                   15258:          ^show[$to_add_to]
                   15259: 
                   15260:          $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
                   15261:          ^show[$cloned]
                   15262: 
                   15263:          @show[hash] ^hash.foreach[k;v]{         $k = $v <br>
                   15264: 
                   15265:          }  <hr>
                   15266: 
                   15267:        * src/classes/hash.C: $hash._default showed in foreach & co bug fix
                   15268:          http://i2/tasks/edit/?id=4493701604654042676
                   15269: 
                   15270:          @main[] $with_default[  $.a[1]  $._default[default from
                   15271:          with_default] ] ^show[$with_default]
                   15272: 
                   15273:          $to_add_to[     $.b[2] ] ^to_add_to.add[$with_default]
                   15274:          =$to_add_to.xxx=<br>
                   15275: 
                   15276:          ^show[$to_add_to]
                   15277: 
                   15278:          $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
                   15279:          ^show[$cloned]
                   15280: 
                   15281:          @show[hash] ^hash.foreach[k;v]{         $k = $v <br>
                   15282: 
                   15283:          }  <hr>
                   15284: 
                   15285:        * src/types/pa_vmail.C: mail receive: .txt attachemnts bug fix
                   15286:          http://i2/tasks/edit/?id=4507350336410850921
                   15287: 
                   15288:        * src/classes/xdoc.C: memory allocation func bugfix
                   15289:          http://i2/tasks/edit/?id=4499303470368629745
                   15290: 
                   15291:        * src/classes/math.C: allowed random 1...
                   15292: 
                   15293:        * src/classes/math.C: allowed random 0..
                   15294: 
                   15295:        * src/main/pa_globals.C: exif mem leak
                   15296:          http://i2/tasks/edit/?id=4480590323629807263
                   15297: 
                   15298:        * src/: classes/classes.dsp, main/main.dsp,
                   15299:          targets/cgi/parser3.dsp, types/pa_vmail.C, types/types.dsp: buf
                   15300:          fix http://i2/tasks/edit/?id=4493946731322521294
                   15301:          $.to[billgates@microsoft.com BCc: send-spam-to@someemails.ru ]
                   15302: 
                   15303:        * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
                   15304:          lib/pcre/pcre.dsp, main/compile.tab.C, main/main.dsp,
                   15305:          main/pa_globals.C, targets/cgi/parser3.dsp, types/types.dsp:
                   15306:          links to xml libs made relative, no need to unpack parser3project
                   15307:          to /parser3project.
                   15308: 
                   15309:        * src/main/: compile.tab.C, compile.y, compile_tools.h: error
                   15310:          column more precise - tab handling bug fixed
                   15311: 
                   15312:        * src/main/: compile.tab.C, compile.y: more understandable error
                   15313:          message in case @CLASS with more then one line inside
                   15314: 
                   15315:        * src/targets/cgi/parser3.C: more understandable error message in
                   15316:          case of errors in @unhandled_exception
                   15317: 
                   15318: 2003-04-03  paf
                   15319: 
                   15320:        * INSTALL, src/include/pa_operation.h, src/include/pa_request.h,
                   15321:          src/main/compile.tab.C, src/main/compile.y,
                   15322:          src/main/compile_tools.C, src/main/compile_tools.h,
                   15323:          src/main/execute.C, src/main/pa_request.C: debug info format
                   15324:          simplified, now it's: OP_VALUE Operation::Origin << here value*
                   15325: 
                   15326:          higher limits:   file number (max: 255)   line number (max:
                   15327:          64535)   column number (max: 255)
                   15328: 
                   15329:        * src/classes/math.C: top limit
                   15330: 
                   15331:        * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
                   15332:          precise parse error position in case of
                   15333: 
                   15334:          ^bug ]
                   15335: 
                   15336:        * src/classes/op.C, src/main/pa_request.C, tests/042.html: test 042
                   15337:          changed to realities, and passed [bug fixed]
                   15338: 
                   15339:        * src/: classes/op.C, include/pa_request.h, main/compile.C,
                   15340:          main/compile.tab.C, main/compile.y, main/compile_tools.C,
                   15341:          main/compile_tools.h, main/pa_request.C: introducing
                   15342:          ^process...[main-method-alias]
                   15343: 
                   15344:        * src/: classes/date.C, classes/image.C, classes/op.C,
                   15345:          classes/string.C, classes/table.C, classes/xdoc.C,
                   15346:          types/pa_vmethod_frame.h: MethodParams& now [methods without
                   15347:          params receive zero reference, but they are expected not to look
                   15348:          there]
                   15349: 
                   15350:        * operators.txt, src/classes/date.C, src/classes/double.C,
                   15351:          src/classes/file.C, src/classes/hash.C, src/classes/image.C,
                   15352:          src/classes/int.C, src/classes/mail.C, src/classes/math.C,
                   15353:          src/classes/memory.C, src/classes/op.C, src/classes/response.C,
                   15354:          src/classes/string.C, src/classes/table.C, src/classes/void.C,
                   15355:          src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
                   15356:          src/main/execute.C, src/types/pa_method.h: MethodParams& now
                   15357:          [methods without params receive zero reference, but they are
                   15358:          expected not to look there]
                   15359: 
                   15360:        * operators.txt, src/classes/op.C, src/include/pa_request.h,
                   15361:          src/main/pa_request.C, src/types/pa_vmethod_frame.h:
                   15362:          ^process...[filename] useful for better error reporting
                   15363:          [file/line/col]
                   15364: 
                   15365:        * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
                   15366:          types/pa_vstring.h: slightly improved error messages text: 1. is
                   15367:          '%s', it 2. method undefined in case of ^void[]
                   15368: 
                   15369:        * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
                   15370:          include/pa_types.h, main/execute.C, main/pa_request.C: exception
                   15371:          handling done. now we have error columns todo: test it
                   15372: 
                   15373:        * src/: classes/op.C, include/pa_request.h: removed from trace 'a'
                   15374:          exception when ^try{    ^throw[a;1] }{    ^throw[b;2] }
                   15375: 
                   15376:          this makes life easier: were: bad stack order -- were in
                   15377:          exception catch unwind order, which didn't match execution order
                   15378: 
                   15379:          @main[] ^try{   ^first[] }{     ^throw[c;3] }
                   15380: 
                   15381:          @first[] ^throw[a;1]
                   15382: 
                   15383:          showed throw a first throw b try
                   15384: 
                   15385:          which is no good
                   15386: 
                   15387:        * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
                   15388:          main/compile.tab.C, main/execute.C, main/pa_request.C: strack
                   15389:          trace reset after handled exception [old bug fixed]
                   15390: 
                   15391:        * src/main/: compile.tab.C, compile.y: parse position old bug
                   15392:          fixed.  position reporting made precise [both, in parse erros and
                   15393:          runtime errors]
                   15394: 
                   15395: 2003-04-02  paf
                   15396: 
                   15397:        * src/: include/pa_operation.h, include/pa_request.h,
                   15398:          main/compile.C, main/compile.tab.C, main/compile.y,
                   15399:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   15400:          main/pa_exception.C, main/pa_request.C: debug info: started
                   15401:          using.  todo:complete
                   15402: 
                   15403:        * src/: classes/op.C, include/pa_operation.h, include/pa_request.h,
                   15404:          main/compile.C, main/compile.tab.C, main/compile.y,
                   15405:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   15406:          main/pa_request.C: prepared debug info todo:use it
                   15407: 
                   15408:        * src/include/pa_operation.h: strange mistake fixed: forgot to
                   15409:          return Operation class->union after switching from autoptrs.
                   15410: 
                   15411:        * tests/: Makefile, results/108.processed, results/117.processed:
                   15412:          meta considered OK [it's up to coder now to remove it not needed]
                   15413: 
                   15414:        * src/main/pa_dictionary.C, tests/Makefile: replace bug fix [broke
                   15415:          Dictionary constructor when moved to gc]
                   15416: 
                   15417:        * src/main/pa_common.C: uncommented http:// file loading
                   15418: 
                   15419:        * src/include/pa_array.h, src/main/execute.C,
                   15420:          src/targets/cgi/parser3.C, tests/run_parser.sh: gif encoder bug
                   15421:          fix [gdGrowingBuf]
                   15422: 
                   15423:        * configure.in, src/lib/Makefile.am: removed patches
                   15424: 
                   15425:        * configure, src/include/pa_config_auto.h.in,
                   15426:          src/main/pa_charset.C: --enable-assertions autoconf-ed
                   15427: 
                   15428:        * src/main/pa_common.C: uncommented http:// file loading
                   15429: 
                   15430:        * src/: classes/xdoc.C, types/pa_vxdoc.h: removed ref leak in
                   15431:          xdoc::create/load
                   15432: 
                   15433:        * src/: classes/form.C, classes/hash.C, classes/image.C,
                   15434:          classes/string.C, classes/table.C, classes/void.C,
                   15435:          include/pa_common.h, main/pa_common.C, main/pa_request.C,
                   15436:          main/pa_sql_driver_manager.C, main/pa_string.C: all calls to
                   15437:          String::String(str,helper_length) are checked.  found/fixed one
                   15438:          place: $request:body now zero-terminated,
                   15439: 
                   15440:        * src/: classes/op.C, classes/table.C, include/pa_request.h,
                   15441:          main/compile_tools.C, main/execute.C, types/pa_value.h,
                   15442:          types/pa_vbool.h, types/pa_vclass.h, types/pa_vdate.h,
                   15443:          types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
                   15444:          types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
                   15445:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vstring.h,
                   15446:          types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
                   15447:          types/pa_vxnode.h: more locally scoped vars in execute (more
                   15448:          easily optimizable)
                   15449: 
                   15450:        * src/: classes/table.C, include/pa_table.h, main/pa_table.C: few
                   15451:          for(size_t i=0...) -> for(Array_iterator... i(..); i.has_next()
                   15452: 
                   15453:        * src/: include/pa_array.h, include/pa_stack.h,
                   15454:          include/pa_string.h, main/compile_tools.C, main/main.dsp,
                   15455:          main/pa_table.C, types/pa_vmethod_frame.C: array get/put check
                   15456:          become assertion iterator in methodframe filler
                   15457: 
                   15458:        * src/: include/pa_array.h, include/pa_stack.h, main/main.dsp,
                   15459:          targets/cgi/parser3.C: array::get/put inlined
                   15460: 
                   15461:        * src/: lib/cord/cordbscs.c, main/pa_globals.C: globals.c:
                   15462:          gc_substitute_memory_management_functions +installed CORD_oom
                   15463:          function
                   15464: 
                   15465:        * configure.in, src/classes/xnode.C, src/include/pa_config_fixed.h,
                   15466:          src/include/pa_config_includes.h, src/include/pa_string.h,
                   15467:          src/lib/cord/cordbscs.c, src/main/pa_memory.C,
                   15468:          src/targets/cgi/parser3.C: converted debug hacks to ANSI
                   15469:          assertions started configure.in --enable-assertions
                   15470: 
                   15471: 2003-04-01  paf
                   15472: 
                   15473:        * src/: classes/xdoc.C, classes/xnode.h, include/pa_memory.h,
                   15474:          main/pa_memory.C, targets/cgi/parser3.C, types/pa_vxdoc.h,
                   15475:          types/pa_vxnode.C, types/pa_vxnode.h: memory bug debugged down:
                   15476:          gdome uses glib memory, and stores last pointer to xmlDoc there,
                   15477:          gc misses that and collects valid memory fixed by remembering
                   15478:          xmlDoc from dom object in xdoc.  todo: do something with
                   15479:          premature free of xdoc with xnodes/node values referring into it
                   15480: 
                   15481:        * src/classes/: mail.C: typo fix
                   15482: 
                   15483:        * src/main/pa_memory.C: bug() to set bpt in (memory.c) some .am
                   15484:          changes
                   15485: 
                   15486:        * src/: include/pa_memory.h, main/pa_common.C, main/pa_globals.C,
                   15487:          main/pa_memory.C: moved memory debugging to global level: to
                   15488:          pa_gc_malloc
                   15489: 
                   15490:        * src/: main/pa_globals.C, targets/cgi/parser3.C: xml memory
                   15491:          debugging showed no errors. todo: debug parser memory
                   15492: 
                   15493:        * src/targets/cgi/: parser3.C, parser3.dsp: more build
                   15494:          configurations
                   15495: 
                   15496:        * src/: classes/classes.dsp, include/pa_config_fixed.h,
                   15497:          main/compile.tab.C, main/main.dsp, main/pa_globals.C,
                   15498:          targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
                   15499:          types/types.dsp: prepared xml-static configuration
                   15500: 
                   15501: 2003-03-31  paf
                   15502: 
                   15503:        * INSTALL, src/classes/xdoc.C, src/main/pa_globals.C,
                   15504:          src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp: started
                   15505:          xml lib memory debugging, simple checks failed: it seems that
                   15506:          library does realloc(bad ptr), and recording those ptrs in heap
                   15507:          [for debugging] was bad: heap situation changes = everything
                   15508:          works fine
                   15509: 
                   15510:        * src/: main/pa_charset.C, include/pa_charset.h: worked around
                   15511:          xmlRegisterCharEncodingHandler limitation [currently imposed
                   15512:          limit of 10 user-defined charsets]
                   15513: 
                   15514: 2003-03-28  paf
                   15515: 
                   15516:        * src/main/execute.C: execution stack copied to local register
                   15517:          variable, removed lots [~2e7) of memory accesses
                   15518: 
                   15519: 2003-03-27  paf
                   15520: 
                   15521:        * src/: classes/xdoc.C, main/pa_globals.C: XML memory funcs to GC
                   15522:          works in debug, but fails in release todo: fix that
                   15523: 
                   15524:        * src/: classes/xdoc.C, main/compile.tab.C, main/pa_globals.C,
                   15525:          targets/cgi/parser3.C: forgot to merge XML memory funcs
                   15526:          replacement from gc branch
                   15527: 
                   15528:        * src/main/pa_exec.C: introducing append_help_length [radical
                   15529:          improvement here]
                   15530: 
                   15531:        * src/targets/cgi/parser3.C: GC_java_finalization turned off [was
                   15532:          'not recommened' in gc.h, on win32 noticed no difference]
                   15533: 
                   15534:        * src/include/pa_array.h: returned checked array get [were disabled
                   15535:          for debugging] result:not slower [don't understand that, it were
                   15536:          INLINED] todo: find out a way of inlining it!
                   15537: 
                   15538:        * src/: include/pa_string.h, lib/gc/include/gc.h,
                   15539:          lib/gc/include/gc_fake.h, main/compile.tab.C,
                   15540:          targets/cgi/parser3.C, main/pa_memory.C, targets/cgi/parser3.dsp:
                   15541:          convention changed: all resulting strings are zero-terminated
                   15542: 
                   15543:        * src/: classes/date.C, classes/file.C, classes/hash.C,
                   15544:          classes/string.C, classes/table.C, classes/void.C,
                   15545:          include/pa_string.h, lib/cord/cord.dsp, lib/cord/cordbscs.c,
                   15546:          lib/cord/include/cord.h, main/compile.tab.C, main/compile.y,
                   15547:          main/compile_tools.h, main/pa_common.C, main/pa_exec.C,
                   15548:          main/pa_request.C, main/pa_string.C, main/pa_uue.C,
                   15549:          sql/pa_sql_driver.h, types/pa_value.C, types/pa_venv.h,
                   15550:          types/pa_vfile.C, types/pa_vmail.C: introducing
                   15551:          append_help_length [radical improvement here]
                   15552: 
                   15553:        * src/: classes/memory.C, include/pa_array.h, include/pa_hash.h,
                   15554:          include/pa_memory.h, lib/cord/cord.dsp, lib/cord/cordxtra.c,
                   15555:          lib/gc/include/gc.h, main/pa_memory.C, targets/cgi/parser3.C,
                   15556:          targets/cgi/parser3.dsp, types/pa_vstatus.C: disabled gc, become
                   15557:          even slower
                   15558: 
                   15559:        * src/: classes/string.C, classes/table.C, include/pa_array.h,
                   15560:          include/pa_stack.h, include/pa_string.h, main/compile_tools.C,
                   15561:          main/pa_string.C, main/untaint.C, types/pa_vmethod_frame.C: fixed
                   15562:          clients of &get(): most to use non-ref version, some[in tight
                   15563:          places] to get_unchecked_ref
                   15564: 
                   15565:        * src/doc/memory.dox: forgot to add
                   15566: 
                   15567:        * src/: classes/classes.dsp, classes/memory.C, classes/xdoc.C,
                   15568:          include/pa_array.h, include/pa_request.h, include/pa_stack.h,
                   15569:          include/pa_string.h, lib/cord/cord.dsp, lib/ltdl/libltdl.dsp,
                   15570:          lib/md5/md5.dsp, lib/pcre/pcre.dsp, main/compile.tab.C,
                   15571:          main/compile.y, main/compile_tools.C, main/compile_tools.h,
                   15572:          main/main.dsp, main/pa_string.C, targets/cgi/parser3.C,
                   15573:          targets/cgi/parser3.dsp, types/pa_vmail.C,
                   15574:          types/pa_vmethod_frame.C, types/types.dsp: Array::put(index,
                   15575:          T>>&<< removed after Stack::pop wiping removed [moved to separate
                   15576:          func] other Array & removed
                   15577: 
                   15578: 2003-03-26  paf
                   15579: 
                   15580:        * src/: classes/classes.dsp, classes/file.C, classes/op.C,
                   15581:          classes/table.C, include/pa_array.h, include/pa_charset.h,
                   15582:          include/pa_stack.h, include/pa_string.h, include/pa_table.h,
                   15583:          lib/cord/cord.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
                   15584:          lib/pcre/pcre.dsp, main/compile.tab.C, main/compile.y,
                   15585:          main/main.dsp, main/pa_charset.C, main/pa_common.C,
                   15586:          main/pa_exec.C, main/pa_sql_driver_manager.C,
                   15587:          main/pa_stylesheet_manager.C, main/pa_table.C,
                   15588:          targets/cgi/parser3.C, targets/cgi/parser3.dsp,
                   15589:          types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
                   15590:          types/pa_vobject.C, types/pa_vobject.h, types/types.dsp:
                   15591:          pre-evaluated .count() in some places
                   15592: 
                   15593:        * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
                   15594:          lib/pcre/pcre.dsp, main/main.dsp, targets/cgi/parser3.dsp,
                   15595:          types/types.dsp: .dsp profiling updated
                   15596: 
                   15597:        * src/: classes/classes.dsp, lib/cord/cord.dsp,
                   15598:          lib/ltdl/libltdl.dsp, lib/md5/md5.dsp, main/main.dsp,
                   15599:          targets/cgi/parser3.dsp, types/types.dsp: started profiling
                   15600: 
                   15601:        * src/: classes/classes.dsp, lib/cord/cord.dsp, main/compile.tab.C,
                   15602:          main/compile_tools.h, main/main.dsp, targets/cgi/parser3.dsp,
                   15603:          targets/isapi/parser3isapi.dsp, types/types.dsp: .dsp updated to
                   15604:          use lib/gc,lib/cord
                   15605: 
1.116     moko     15606:        * acsite.m4, src/classes/Makefile.am, src/classes/mail.C,
                   15607:          src/classes/math.C, src/classes/op.C, src/include/pa_common.h,
1.95      moko     15608:          src/include/pa_config_auto.h.in, src/include/pa_config_fixed.h,
                   15609:          src/include/pa_config_includes.h, src/include/pa_request.h,
                   15610:          src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
                   15611:          src/include/pa_stylesheet_connection.h, src/include/pa_version.h,
1.116     moko     15612:          src/lib/Makefile.am, src/lib/cord/Makefile.am,
1.95      moko     15613:          src/lib/cord/include/Makefile.am,
1.116     moko     15614:          src/lib/cord/include/private/Makefile.am, src/main/Makefile.am,
                   15615:          src/main/pa_exec.C, src/main/pa_string.C, src/main/untaint.C,
                   15616:          src/targets/cgi/Makefile.am, src/types/Makefile.am,
                   15617:          src/types/pa_vclass.h, src/types/pa_vcookie.h,
                   15618:          src/types/pa_vform.h, src/types/pa_vhash.h,
                   15619:          src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.h,
                   15620:          src/types/pa_vresponse.h, src/types/pa_vstateless_class.h,
                   15621:          src/types/pa_vstatus.C, src/types/pa_vstatus.h,
                   15622:          src/types/pa_vtable.h, src/types/pa_vxdoc.h: configured math
                   15623:          funcs ported pa_exec
1.95      moko     15624: 
                   15625:        * src/lib/: cord/include/gc.h, gc/include/gc.h: introducing lib/gc
                   15626: 
                   15627:        * src/lib/cord/include/: cord.h, ec.h, gc.h, private/cord_pos.h:
                   15628:          bundled gc includes
                   15629: 
                   15630:        * src/: classes/op.C, include/pa_array.h,
                   15631:          include/pa_sql_connection.h, include/pa_string.h,
                   15632:          include/pa_version.h, main/compile.tab.C, main/compile.y,
                   15633:          main/execute.C, main/pa_common.C, main/pa_exception.C,
                   15634:          main/pa_request.C, main/pa_string.C, targets/cgi/parser3.C,
                   15635:          targets/cgi/parser3.dsp: a number of bugfixes [while testing
                   15636:          first real site (aval)]
                   15637: 
                   15638: 2003-03-25  paf
                   15639: 
                   15640:        * operators.txt, src/main/pa_sql_driver_manager.C,
                   15641:          src/types/pa_vstatus.C: $status.memory used free since_compact
                   15642:          process
                   15643: 
                   15644:        * src/: include/pa_sql_connection.h, main/pa_globals.C,
                   15645:          main/untaint.C, sql/pa_sql_driver.h: untaint.C L_SQL
                   15646: 
                   15647:        * src/main/: pa_charset.C, untaint.C: untaint.C L_MAIL_HEADER
                   15648: 
                   15649:        * src/main/pa_request.C, src/main/untaint.C, src/types/pa_value.C,
                   15650:          src/types/pa_value.h, src/types/pa_vfile.h,
                   15651:          src/types/pa_vobject.C, src/types/pa_vobject.h,
                   15652:          src/types/pa_vstring.C, src/types/pa_vstring.h, tests/121.html,
                   15653:          tests/results/121.processed: untaint.C L_URI
                   15654: 
                   15655:        * operators.txt, src/classes/Makefile.am, src/classes/classes.dsp,
                   15656:          src/classes/op.C, src/main/pa_request.C, src/types/Makefile.am,
                   15657:          src/types/pa_venv.h, src/types/types.dsp, src/classes/memory.C,
                   15658:          src/types/pa_vmemory.h: ^memory:compact[]
                   15659: 
                   15660:        * tests/results/109.processed: it was a bug in parser. updated 109
                   15661:          test result
                   15662: 
                   15663:        * src/classes/xdoc.C, tests/Makefile: fixed transform params2
                   15664: 
                   15665:        * src/main/pa_charset.C, src/targets/cgi/parser3.C, tests/Makefile,
                   15666:          tests/results/107.processed: fixed dom language [values are now
                   15667:          considered tainted.  it was a bug in parser. updated 107 test
                   15668:          result
                   15669: 
                   15670:        * src/classes/xdoc.C: fixed transform params
                   15671: 
                   15672:        * src/: include/pa_stylesheet_manager.h,
                   15673:          main/pa_stylesheet_manager.C: fixed stylesheet caching
                   15674: 
                   15675:        * src/: include/pa_memory.h, main/pa_charset.C: memory: new 'new'
                   15676:          overloads for structure handling
                   15677: 
                   15678:        * src/: classes/image.C, classes/xdoc.C, classes/xnode.C,
                   15679:          include/pa_string.h, main/pa_string.C, types/pa_vxnode.C: removed
                   15680:          StringBody(0) ambiguilty, introducting static
                   15681:          StringBody::Format(int)
                   15682: 
                   15683:        * src/: main/pa_request.C, types/pa_vxnode.C: vxnode compiled xml
                   15684:          linked
                   15685: 
                   15686:        * src/types/pa_vxdoc.C: vxdoc compiled
                   15687: 
                   15688:        * src/: classes/xnode.C, classes/xnode.h, include/pa_memory.h,
                   15689:          types/pa_vxdoc.h, types/pa_vxnode.h: xnode.C compiled, doc/node
                   15690:          finalizers isntalled
                   15691: 
                   15692:        * src/: classes/image.C, classes/xdoc.C, classes/xnode.h,
                   15693:          doc/exception.dox, doc/index.dox, include/pa_charset.h,
                   15694:          include/pa_memory.h, include/pa_request.h, include/pa_string.h,
                   15695:          main/pa_charset.C, main/pa_memory.C, main/pa_string.C: xdoc.C
                   15696:          compiled todo: xnode.C / finalizers
                   15697: 
                   15698:        * src/doc/string.dox: updated: new string internals
                   15699: 
                   15700: 2003-03-24  paf
                   15701: 
                   15702:        * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   15703:          include/pa_charset.h, include/pa_config_fixed.h,
                   15704:          include/pa_request.h, include/pa_stylesheet_connection.h,
                   15705:          include/pa_stylesheet_manager.h, main/pa_charset.C,
                   15706:          main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
                   15707:          main/pa_stylesheet_manager.C, types/pa_vxdoc.h,
                   15708:          types/pa_vxnode.h: started XML
                   15709: 
                   15710:        * src/main/: pa_common.C, pa_sql_driver_manager.C: http://
                   15711: 
                   15712:        * src/: classes/file.C, classes/image.C, classes/mail.C,
                   15713:          include/pa_string.h, main/pa_common.C,
                   15714:          main/pa_sql_driver_manager.C: introducing string[body]::pos(char)
                   15715: 
                   15716:        * src/: classes/file.C, classes/image.C, classes/mail.C,
                   15717:          include/pa_memory.h, include/pa_string.h, main/pa_common.C,
                   15718:          main/pa_request.C, main/pa_sql_driver_manager.C,
                   15719:          types/pa_vimage.h: size_t pos everywhere checks changed to check
                   15720:          for eq STRING_NOT_FOUND
                   15721: 
                   15722:        * src/main/pa_string.C, src/main/untaint.C, tests/Makefile: string
                   15723:          optimize bit implemented
                   15724: 
                   15725:        * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
                   15726:          String::ArrayFragment::append_positions fixed
                   15727: 
                   15728:        * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
                   15729:          String::this_starts fixed
                   15730: 
                   15731:        * src/main/pa_string.C, tests/Makefile: string::pos fixed
                   15732: 
                   15733:        * src/: include/pa_hash.h, main/execute.C, main/pa_string.C:
                   15734:          hashcode implemented fully, including per-char callback [it can
                   15735:          be - substr CORD node]
                   15736: 
                   15737:        * src/: include/pa_array.h, main/compile.tab.C: gif encoding
                   15738:          rewritten to rewalloc with 100byte buf ahead
                   15739: 
                   15740:        * src/classes/image.C, src/classes/op.C, src/classes/table.C,
                   15741:          src/include/pa_string.h, src/main/compile.tab.C,
                   15742:          src/main/compile.y, src/main/execute.C, src/main/pa_common.C,
                   15743:          src/main/untaint.C, tests/Makefile: attempt to do gif encoding to
                   15744:          CORD_ec [bad] would rewrite as realloc now
                   15745: 
                   15746:        * src/: classes/date.C, classes/file.C, classes/form.C,
                   15747:          classes/image.C, classes/math.C, classes/op.C, classes/table.C,
                   15748:          include/pa_cache_managers.h, include/pa_charsets.h,
                   15749:          include/pa_common.h, include/pa_request.h,
                   15750:          include/pa_sql_driver_manager.h, include/pa_table.h,
                   15751:          main/pa_charset.C, main/pa_exception.C, main/pa_exec.C,
                   15752:          main/pa_globals.C, main/pa_request.C, main/pa_uue.C,
                   15753:          targets/isapi/parser3isapi.C, types/pa_value.C, types/pa_value.h,
                   15754:          types/pa_vmail.C, types/pa_vmethod_frame.C,
                   15755:          types/pa_vstateless_class.h: 2*2 worked :)
                   15756: 
                   15757:        * parser3.dsw, src/classes/date.C, src/classes/file.C,
                   15758:          src/include/pa_exec.h, src/include/pa_string.h,
                   15759:          src/main/pa_exec.C, src/main/pa_sql_driver_manager.C: empty run
                   15760:          passed OK
                   15761: 
                   15762:        * src/: classes/hash.C, classes/string.C, classes/table.C,
                   15763:          types/pa_value.C: all linked todo: debug
                   15764: 
                   15765:        * src/: classes/mail.C, main/pa_request.C, targets/cgi/parser3.C,
                   15766:          types/pa_vstateless_class.C: all compiled.  todo:link
                   15767: 
                   15768:        * src/types/pa_wcontext.C: pa_wcontext.C compiled
                   15769: 
                   15770:        * src/types/pa_vtable.C: pa_vtable.C compiled
                   15771: 
                   15772:        * src/types/pa_vstring.C: pa_vstring.C compiled
                   15773: 
                   15774:        * src/types/pa_vstatus.C: pa_vstatus.C compiled
                   15775: 
                   15776:        * src/types/: pa_vmath.C, pa_vmethod_frame.C, pa_vmethod_frame.h,
                   15777:          pa_vobject.C, pa_vrequest.C, pa_vresponse.C,
                   15778:          pa_vstateless_class.C, pa_vstateless_class.h:
                   15779:          pa_vstateless_class.C compiled
                   15780: 
                   15781:        * src/: classes/xdoc.C, types/pa_vmail.C, types/pa_vmail.h,
                   15782:          types/pa_vmath.C: pa_vmail.C compiled
                   15783: 
                   15784:        * src/types/: pa_vhash.C, pa_vimage.C: pa_vimage.C compiled
                   15785: 
                   15786:        * src/types/pa_vform.C: pa_vform.C compiled
                   15787: 
                   15788:        * src/types/pa_vfile.C: pa_vfile.C compiled
                   15789: 
                   15790:        * src/types/: pa_value.h, pa_vclass.C, pa_vcookie.C,
                   15791:          pa_vstateless_class.C: pa_vcookie.C compiled
                   15792: 
                   15793:        * src/: classes/string.C, types/pa_value.C, types/pa_value.h,
                   15794:          types/pa_vhash.h: pa_value.C compiled
                   15795: 
                   15796:        * src/: main/execute.C, main/pa_string.C, types/pa_wcontext.h:
                   15797:          classes.lib main.lib compiled
                   15798: 
                   15799:        * src/classes/void.C: void.C compiled
                   15800: 
                   15801:        * src/: classes/string.C, classes/table.C, include/pa_string.h,
                   15802:          main/pa_string.C, types/pa_vtable.C, types/pa_vtable.h: table.C
                   15803:          compiled
                   15804: 
                   15805:        * src/: classes/string.C, include/pa_request.h,
                   15806:          include/pa_string.h, main/pa_string.C: string.C compiled
                   15807: 
                   15808:        * src/: classes/op.C, classes/string.C, classes/table.C,
                   15809:          classes/void.C, include/pa_sql_connection.h, include/pa_string.h,
                   15810:          main/pa_request.C, main/pa_string.C: op.C compiled
                   15811: 
                   15812:        * src/classes/: math.C, op.C: math.C compiled
                   15813: 
                   15814:        * src/: classes/mail.C, classes/string.C, classes/table.C,
                   15815:          types/pa_vmail.h: mail.C compiled
                   15816: 
                   15817:        * src/classes/: int.C, table.C: int.C compiled
                   15818: 
                   15819:        * src/: classes/hash.C, classes/image.C, classes/string.C,
                   15820:          classes/table.C, include/pa_memory.h, include/pa_string.h,
                   15821:          main/pa_memory.C, types/pa_vimage.h, types/pa_vmail.C: image.C
                   15822:          compiled
                   15823: 
                   15824:        * src/: classes/hash.C, classes/string.C, classes/table.C,
                   15825:          classes/void.C, classes/xdoc.C, include/pa_request.h,
                   15826:          include/pa_sql_connection.h: hash.C compiled
                   15827: 
                   15828:        * src/: classes/classes.C, classes/classes.awk, classes/classes.h,
                   15829:          classes/date.C, classes/double.C, classes/file.C, classes/form.C,
                   15830:          classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
                   15831:          classes/math.C, classes/op.C, classes/response.C,
                   15832:          classes/string.C, classes/table.C, classes/void.C,
                   15833:          classes/xdoc.C, classes/xnode.C, include/pa_memory.h,
                   15834:          include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
                   15835:          main/pa_string.C, types/pa_vdate.h, types/pa_vmethod_frame.h:
                   15836:          file.C table.C compiled
                   15837: 
                   15838:        * src/: include/pa_string.h, main/pa_string.C, main/pa_uue.C,
                   15839:          main/untaint.C: main.lib compiled
                   15840: 
                   15841: 2003-03-21  paf
                   15842: 
                   15843:        * src/: classes/op.C, include/pa_cache_managers.h,
                   15844:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   15845:          include/pa_stylesheet_manager.h, main/pa_exception.C,
                   15846:          main/pa_globals.C, main/pa_sql_driver_manager.C,
                   15847:          sql/pa_sql_driver.h, types/pa_vimage.C: pa_sql_driver_manager.C
                   15848:          compiled
                   15849: 
                   15850:        * src/: classes/hash.C, classes/image.C, classes/op.C,
                   15851:          classes/xdoc.C, classes/xnode.C, include/pa_common.h,
                   15852:          include/pa_hash.h, include/pa_request.h, include/pa_string.h,
                   15853:          main/compile.C, main/pa_common.C, main/pa_request.C,
                   15854:          types/pa_vmail.C, types/pa_vresponse.C, types/pa_vxnode.C:
                   15855:          pa_request.C compiled
                   15856: 
                   15857:        * src/: classes/hash.C, classes/mail.C, classes/op.C,
                   15858:          include/pa_request.h, main/execute.C, main/pa_request.C,
                   15859:          types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
                   15860:          types/pa_vhash.h, types/pa_vimage.C, types/pa_vmethod_frame.h,
                   15861:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
                   15862:          types/pa_vresponse.h, types/pa_vtable.C: pa_request.C 50%
                   15863:          compiled
                   15864: 
                   15865:        * src/: include/pa_exec.h, include/pa_string.h, main/pa_exec.C,
                   15866:          main/pa_string.C: pa_exec.C compiled [win32 only for now]  todo:
                   15867:          on unix
                   15868: 
                   15869:        * src/: include/pa_charset.h, include/pa_charsets.h,
                   15870:          include/pa_exec.h, main/compile.tab.C, main/pa_charset.C,
                   15871:          main/pa_charsets.C, main/pa_dictionary.C, main/pa_exec.C:
                   15872:          pa_charsets.C compiled
                   15873: 
                   15874:        * src/: classes/image.C, classes/mail.C, classes/op.C,
                   15875:          include/pa_request.h, include/pa_string.h, main/compile.tab.C,
                   15876:          main/compile.y, main/execute.C, main/pa_common.C,
                   15877:          main/pa_request.C, types/pa_junction.h, types/pa_method.h,
                   15878:          types/pa_vcode_frame.h, types/pa_vimage.h,
                   15879:          types/pa_vmethod_frame.h: execute.C compiled
                   15880: 
                   15881:        * src/: classes/classes.C, classes/classes.h, classes/date.C,
                   15882:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   15883:          classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
                   15884:          classes/op.C, classes/string.C, classes/table.C, classes/void.C,
                   15885:          classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   15886:          include/pa_cache_managers.h, include/pa_charsets.h,
                   15887:          include/pa_common.h, include/pa_exec.h, include/pa_memory.h,
                   15888:          include/pa_operation.h, include/pa_request.h, include/pa_sapi.h,
                   15889:          include/pa_sql_driver_manager.h, include/pa_string.h,
                   15890:          include/pa_stylesheet_connection.h,
                   15891:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   15892:          main/compile.C, main/compile.tab.C, main/compile.y,
                   15893:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   15894:          main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
                   15895:          main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C,
                   15896:          main/pa_string.C, main/pa_stylesheet_manager.C, main/untaint.C,
                   15897:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                   15898:          types/pa_junction.h, types/pa_method.h, types/pa_value.C,
                   15899:          types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
                   15900:          types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
                   15901:          types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
                   15902:          types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
                   15903:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
                   15904:          types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
                   15905:          types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
                   15906:          types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
                   15907:          types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
                   15908:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
                   15909:          types/pa_vresponse.h, types/pa_vstateless_class.C,
                   15910:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   15911:          types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
                   15912:          types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
                   15913:          types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   15914:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
                   15915:          types/pa_wcontext.h, types/pa_wwrapper.h: introducing StringBody
                   15916:          [C++ CORD wrapper]
                   15917: 
                   15918:        * src/: lib/cord/cordbscs.c, main/pa_string.C: test14 [bug fixed]
                   15919: 
                   15920:        * src/: classes/file.C, include/pa_charset.h, main/pa_charset.C:
                   15921:          $file::exec/cgi[script;    $.charset[this is script's charset]
                   15922: 
                   15923:          command line, env values, input got transcoded before call
                   15924:          stdout, stderr got transcoded after call
                   15925: 
                   15926:        * src/classes/file.C: ^file::exec/cgi now does not pass post data
                   15927:          by default.  use: ^file::exec[...;$.stdin[$request.body]
                   15928: 
                   15929:        * src/main/pa_common.C: } typo bug fix
                   15930: 
                   15931:        * src/main/pa_common.C: } typo bug fix
                   15932: 
                   15933: 2003-03-20  paf
                   15934: 
                   15935:        * src/: include/pa_string.h, lib/cord/cordbscs.c, main/pa_string.C,
                   15936:          main/untaint.C: cord bug fix, but still errors todo: clear out
                   15937: 
                   15938:        * src/include/pa_string.h: more tests
                   15939: 
                   15940:        * src/main/pa_string.C: string.pos fixed
                   15941: 
1.116     moko     15942:        * src/lib/: ltdl/config_fixed.h, ltdl/configure, ltdl/configure.in,
                   15943:          ltdl/libltdl.dsp, ltdl/ltdl.c, ltdl/ltdl.h, pcre/dftables.c,
                   15944:          pcre/get.c, pcre/internal.h, pcre/maketables.c, pcre/pcre.c,
                   15945:          pcre/pcre.h, pcre/pcre_parser_ctype.c, pcre/study.c: undone bad
                   15946:          replaces
1.95      moko     15947: 
                   15948:        * src/: classes/image.C, include/pa_dictionary.h,
                   15949:          include/pa_string.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
                   15950:          lib/pcre/internal.h, lib/pcre/pcre.c, lib/pcre/study.c,
                   15951:          main/compile.tab.C, main/pa_dictionary.C, main/pa_string.C,
                   15952:          main/untaint.C, types/pa_vmail.C: more tests [bugs fixed]
                   15953: 
                   15954:        * src/include/pa_string.h: warning
                   15955: 
                   15956:        * src/include/pa_string.h: this_starts fixed
                   15957: 
                   15958:        * src/: include/pa_string.h, main/pa_string.C: added: assertion on
                   15959:          new String ctor & append params convention
                   15960: 
                   15961:        * src/: classes/file.C, classes/hash.C, classes/image.C,
                   15962:          classes/mail.C, classes/op.C, classes/string.C, classes/table.C,
                   15963:          classes/xdoc.C, include/pa_common.h, include/pa_memory.h,
                   15964:          include/pa_string.h, main/compile.tab.C, main/pa_common.C,
                   15965:          main/pa_exception.C, main/pa_exec.C,
                   15966:          main/pa_sql_driver_manager.C, main/pa_string.C,
                   15967:          main/pa_stylesheet_manager.C, main/untaint.C,
                   15968:          targets/isapi/parser3isapi.C, types/pa_vimage.C,
                   15969:          types/pa_vmail.C: more tests OK
                   15970: 
                   15971:        * src/: include/pa_array.h, include/pa_hash.h, include/pa_memory.h,
                   15972:          include/pa_string.h, main/pa_memory.C, main/pa_string.C: test:
                   15973:          gc/exit runned OK
                   15974: 
                   15975:        * src/types/pa_vmail.C: another naming problem: should not name
                   15976:          vars like that: unpredictable close caused problems with later
                   15977:          sending mail: Mar 20 06:39:53 pt-6 sendmail[19044]: File
                   15978:          descriptors missing on startup: stdin; Bad file number
                   15979: 
                   15980:          todo: find out why so many filters(stream) here. probably wrong?
                   15981: 
                   15982:        * src/: include/pa_dictionary.h, include/pa_string.h,
                   15983:          main/pa_common.C, main/pa_dictionary.C, main/pa_string.C,
                   15984:          main/untaint.C: test compiled
                   15985: 
                   15986:        * src/: classes/image.C, classes/mail.C, classes/math.C,
                   15987:          classes/string.C, include/pa_dictionary.h, include/pa_hash.h,
                   15988:          include/pa_memory.h, include/pa_string.h, lib/cord/cordbscs.c,
                   15989:          lib/cord/cordxtra.c, lib/pcre/dftables.c, lib/pcre/get.c,
                   15990:          lib/pcre/maketables.c, lib/pcre/pcre.c, lib/pcre/pcre.h,
                   15991:          lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
                   15992:          main/compile.tab.C, main/pa_common.C, main/pa_dictionary.C,
                   15993:          main/pa_exec.C, main/pa_memory.C, main/pa_request.C,
                   15994:          main/pa_string.C, main/untaint.C, types/pa_vfile.h,
                   15995:          types/pa_vmail.C: untaint.C 99% [except mail&sql&optimize]
                   15996: 
                   15997:        * parser3.dsw, src/classes/file.C, src/classes/image.C,
                   15998:          src/classes/op.C, src/classes/string.C, src/classes/table.C,
                   15999:          src/classes/xdoc.C, src/classes/xnode.C, src/include/pa_common.h,
                   16000:          src/include/pa_memory.h, src/include/pa_request.h,
                   16001:          src/include/pa_request_charsets.h,
                   16002:          src/include/pa_sql_connection.h, src/include/pa_string.h,
                   16003:          src/main/compile.tab.C, src/main/execute.C,
                   16004:          src/main/pa_charset.C, src/main/pa_common.C,
                   16005:          src/main/pa_exception.C, src/main/pa_exec.C,
                   16006:          src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
                   16007:          src/main/pa_stylesheet_manager.C, src/main/untaint.C,
                   16008:          src/sql/pa_sql_driver.h, src/targets/cgi/parser3.C,
                   16009:          src/targets/isapi/parser3isapi.C, src/types/pa_value.C,
                   16010:          src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
                   16011:          src/types/pa_venv.h, src/types/pa_vform.C, src/types/pa_vmail.C,
                   16012:          src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
                   16013:          src/types/pa_vobject.C, src/types/pa_vresponse.C,
                   16014:          src/types/pa_vstatus.C, src/types/pa_vstring.C,
                   16015:          src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
                   16016:          src/types/pa_vxnode.C, src/types/pa_wcontext.h: untaint.C 30%,
                   16017:          pa_common.C [done, without http for now]
                   16018: 
                   16019: 2003-03-19  paf
                   16020: 
                   16021:        * src/: classes/date.C, classes/form.C, classes/hash.C,
                   16022:          classes/image.C, classes/mail.C, classes/op.C, classes/xdoc.C,
                   16023:          classes/xnode.C, include/pa_array.h, include/pa_config_fixed.h,
                   16024:          include/pa_exception.h, include/pa_memory.h, include/pa_sapi.h,
                   16025:          include/pa_string.h, include/pa_table.h, main/compile.C,
                   16026:          main/compile_tools.C, main/execute.C, main/pa_charset.C,
                   16027:          main/pa_common.C, main/pa_exception.C, main/pa_request.C,
                   16028:          main/pa_socks.C, main/pa_string.C, main/pa_table.C,
                   16029:          main/untaint.C, targets/cgi/parser3.C, targets/cgi/parser3.dsp,
                   16030:          types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.h,
                   16031:          types/pa_vform.C, types/pa_vmail.C, types/pa_vmethod_frame.h,
                   16032:          types/pa_vstateless_class.h, types/pa_vtable.C,
                   16033:          types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.C,
                   16034:          types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
                   16035:          types/pa_wwrapper.h: started test
                   16036: 
1.116     moko     16037:        * src/lib/pcre/: dftables.c, get.c, maketables.c, pcre.c, pcre.dsp,
                   16038:          pcre.h, pcre_parser_ctype.c, study.c: restored bad replaces
1.95      moko     16039: 
                   16040:        * src/: classes/op.C, include/pa_array.h, include/pa_memory.h,
                   16041:          include/pa_string.h, main/pa_string.C: string compiled todo: test
                   16042:          it
                   16043: 
                   16044:        * src/: classes/classes.dsp, classes/string.C, classes/table.C,
                   16045:          include/pa_array.h, include/pa_common.h, include/pa_dictionary.h,
                   16046:          include/pa_exception.h, include/pa_string.h, include/pa_table.h,
                   16047:          lib/cord/cord.dsp, main/compile.tab.C, main/main.dsp,
                   16048:          main/pa_common.C, main/pa_string.C, targets/cgi/parser3.dsp,
                   16049:          types/pa_method.h, types/pa_value.h, types/pa_vmethod_frame.C,
                   16050:          types/pa_vmethod_frame.h, types/types.dsp: string
                   16051:          reimplementation with cord+array<fragment>: 70%
                   16052: 
                   16053: 2003-03-18  paf
                   16054: 
                   16055:        * src/: classes/date.C, classes/file.C, classes/form.C,
                   16056:          classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
                   16057:          classes/op.C, classes/string.C, classes/table.C, classes/xdoc.C,
                   16058:          classes/xnode.C, include/pa_hash.h, include/pa_string.h,
                   16059:          main/pa_string.C, types/pa_vmail.C: lots of replacements, todo:we
                   16060:          can ignore lang in cmp and pos really,             but would
                   16061:          split properly!
                   16062: 
                   16063:        * src/lib/cord/: cord.dsp, cordbscs.c, cordprnt.c, cordxtra.c: gc:
                   16064:          cord part made parser/src/lib: it's not compiled into libgc by
                   16065:          default
                   16066: 
                   16067:        * parser3.dsw, src/classes/classes.dsp, src/classes/classes.h,
                   16068:          src/classes/date.C, src/classes/double.C, src/classes/file.C,
                   16069:          src/classes/form.C, src/classes/hash.C, src/classes/image.C,
                   16070:          src/classes/int.C, src/classes/mail.C, src/classes/math.C,
                   16071:          src/classes/op.C, src/classes/response.C, src/classes/string.C,
                   16072:          src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
                   16073:          src/classes/xnode.C, src/classes/xnode.h,
                   16074:          src/include/Makefile.am, src/include/pa_cache_managers.h,
                   16075:          src/include/pa_charset.h, src/include/pa_charsets.h,
                   16076:          src/include/pa_common.h, src/include/pa_dictionary.h,
                   16077:          src/include/pa_exception.h, src/include/pa_exec.h,
                   16078:          src/include/pa_globals.h, src/include/pa_hash.h,
                   16079:          src/include/pa_memory.h, src/include/pa_pool.h,
                   16080:          src/include/pa_request.h, src/include/pa_request_charsets.h,
                   16081:          src/include/pa_sapi.h, src/include/pa_sql_connection.h,
                   16082:          src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
                   16083:          src/include/pa_stylesheet_connection.h,
                   16084:          src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
                   16085:          src/include/pa_uue.h, src/lib/pcre/get.c, src/main/Makefile.am,
                   16086:          src/main/compile.C, src/main/compile.tab.C,
                   16087:          src/main/compile_tools.C, src/main/compile_tools.h,
                   16088:          src/main/execute.C, src/main/main.dsp, src/main/pa_charset.C,
                   16089:          src/main/pa_charsets.C, src/main/pa_common.C,
                   16090:          src/main/pa_dictionary.C, src/main/pa_exception.C,
                   16091:          src/main/pa_exec.C, src/main/pa_globals.C, src/main/pa_memory.C,
                   16092:          src/main/pa_pool.C, src/main/pa_request.C,
                   16093:          src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
                   16094:          src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
                   16095:          src/main/pa_uue.C, src/main/untaint.C, src/targets/cgi/parser3.C,
                   16096:          src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
                   16097:          src/types/pa_junction.h, src/types/pa_method.h,
                   16098:          src/types/pa_value.C, src/types/pa_value.h,
                   16099:          src/types/pa_vclass.C, src/types/pa_vclass.h,
                   16100:          src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
                   16101:          src/types/pa_vcookie.h, src/types/pa_vdate.h,
                   16102:          src/types/pa_vdouble.h, src/types/pa_venv.h,
                   16103:          src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
                   16104:          src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
                   16105:          src/types/pa_vimage.C, src/types/pa_vimage.h,
                   16106:          src/types/pa_vint.h, src/types/pa_vmail.C, src/types/pa_vmail.h,
                   16107:          src/types/pa_vmath.C, src/types/pa_vmath.h,
                   16108:          src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
                   16109:          src/types/pa_vobject.C, src/types/pa_vobject.h,
                   16110:          src/types/pa_vrequest.C, src/types/pa_vrequest.h,
                   16111:          src/types/pa_vresponse.C, src/types/pa_vresponse.h,
                   16112:          src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
                   16113:          src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
                   16114:          src/types/pa_vstatus.h, src/types/pa_vstring.C,
                   16115:          src/types/pa_vstring.h, src/types/pa_vtable.C,
                   16116:          src/types/pa_vtable.h, src/types/pa_vvoid.h,
                   16117:          src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
                   16118:          src/types/pa_vxnode.C, src/types/pa_vxnode.h,
                   16119:          src/types/pa_wcontext.C, src/types/pa_wcontext.h,
                   16120:          src/types/pa_wwrapper.h, src/types/types.dsp: started porting to
                   16121:          gc: PA_Object done lots of replacements also
                   16122: 
                   16123:        * src/: include/pa_pool.h, main/execute.C, targets/cgi/pa_pool.C:
                   16124:          gc logging
                   16125: 
                   16126: 2003-03-17  paf
                   16127: 
                   16128:        * src/: classes/date.C, classes/file.C, classes/form.C,
                   16129:          classes/image.C, classes/mail.C, classes/op.C, classes/table.C,
                   16130:          classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
                   16131:          include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
                   16132:          include/pa_string.h, include/pa_types.h, main/compile.C,
                   16133:          main/compile.tab.C, main/execute.C, main/pa_charset.C,
                   16134:          main/pa_common.C, main/pa_exception.C, main/pa_exec.C,
                   16135:          main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
                   16136:          main/pa_sql_driver_manager.C, main/pa_string.C,
                   16137:          main/pa_stylesheet_manager.C, main/pa_uue.C, main/untaint.C,
                   16138:          targets/cgi/pa_pool.C, targets/cgi/parser3.C,
                   16139:          targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
                   16140:          types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.C,
                   16141:          types/pa_vform.C, types/pa_vint.h, types/pa_vmail.C,
                   16142:          types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
                   16143:          types/pa_vxnode.h: libgc attempt
                   16144: 
                   16145: 2003-03-13  paf
                   16146: 
                   16147:        * src/: include/pa_sql_driver_manager.h,
                   16148:          main/pa_sql_driver_manager.C, targets/cgi/parser3.C: lt_dlexit
                   16149:          called
                   16150: 
                   16151:        * src/: include/pa_request.h, lib/ltdl/libltdl.dsp,
                   16152:          lib/md5/md5.dsp, main/compile.tab.C, main/execute.C,
                   16153:          main/pa_request.C, targets/cgi/parser3.C, types/pa_value.C,
                   16154:          types/pa_value.h, types/pa_vobject.h,
                   16155:          types/pa_vstateless_class.h, types/pa_vstatus.C, types/types.dsp:
                   16156:          set_base, set_derived simplified [counter leaks fixed]
                   16157: 
                   16158:        * ChangeLog, src/include/pa_config_fixed.h, src/types/pa_vstatus.C,
                   16159:          src/types/types.dsp: incorporated status class patch From:
                   16160:          "Victor Fedoseev" <vvf_ru@mail.ru> Sent: Thursday, January 23,
                   16161:          2003 8:14 AM
                   16162: 
                   16163:          now we have $status.rusage.maxrss,tv_sec,tv_usec un WIN32 [plus
                   16164:          Win32 specific: QuotaPeakNonPagedPoolUsage
                   16165:          QuotaPeakPagedPoolUsage PeakPagefileUsage]
                   16166: 
                   16167: 2003-03-12  paf
                   16168: 
1.116     moko     16169:        * configure, configure.in, src/lib/ltdl/configure,
                   16170:          src/lib/ltdl/configure.in, src/targets/cgi/Makefile.am:
1.95      moko     16171:          lib/ltdl/Makefile now created by /configure.in only [were by
                   16172:          lib/ltdl/configure.in OVERWRITE]
                   16173: 
1.116     moko     16174:        * configure, configure.in, src/targets/cgi/Makefile.am: libstdc++
                   16175:          linkage fixed for g++ 3.2.2
1.95      moko     16176: 
                   16177:        * src/include/pa_stylesheet_manager.h: gcc 3.2 rightliy complained
                   16178:          on using privately declared class [fixed]
                   16179: 
                   16180:        * src/: include/pa_sql_driver_manager.h, main/compile.tab.C: gcc
                   16181:          3.2 rightliy complained on using privately declared class [fixed]
                   16182: 
                   16183:        * src/targets/cgi/parser3.C: 1. more detailed log on signals.  2.
                   16184:          sigpipe before request constructor now causes death
                   16185: 
                   16186:        * src/: include/pa_request.h, main/compile.tab.C, main/execute.C,
                   16187:          targets/cgi/parser3.C: SIGPIPE now can be intercepted and does
                   16188:          not cause exception in exception handler
                   16189: 
1.116     moko     16190:        * configure, configure.in, src/targets/cgi/Makefile.am: configure
                   16191:          now default links libstdc++ statically.  that can be overriden by
                   16192:          --with-dynamic-stdcpp
1.95      moko     16193: 
                   16194: 2003-03-11  paf
                   16195: 
                   16196:        * src/: main/compile.tab.C, main/compile.y, sql/pa_sql_driver.h,
                   16197:          types/pa_vstateless_class.C, types/pa_vstateless_class.h: removed
                   16198:          necessity of libstdc++
                   16199: 
                   16200:        * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
                   16201: 
                   16202:        * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
                   16203: 
                   16204: 2003-03-08  paf
                   16205: 
                   16206:        * tests/Makefile: make install & co
                   16207: 
                   16208:        * src/: include/pa_request.h, classes/op.C: removing
                   16209:          vclass,object.h -> pa_request.h dependency
                   16210: 
                   16211:        * src/: classes/mail.C, classes/response.C, include/pa_request.h,
                   16212:          main/pa_request.C: removing vform,response,cookie.h ->
                   16213:          pa_request.h dependency
                   16214: 
                   16215:        * src/include/pa_request.h: removing vmail.h -> pa_request.h
                   16216:          dependency [testing...]
                   16217: 
                   16218:        * src/: include/pa_config_fixed.h, types/pa_vxdoc.C: yet another
                   16219:          return 0; fixed
                   16220: 
                   16221:        * src/: include/pa_config_fixed.h, types/pa_vmail.C,
                   16222:          types/pa_vmail.h: vmail.C received just compiled [not tested]
                   16223: 
                   16224:        * src/classes/xdoc.C: forgotten: global xdoc when ndef XML
                   16225: 
                   16226:        * src/main/pa_request.C: forgotten: ifdef XML
                   16227: 
                   16228:        * src/main/pa_request.C: forgotten: ifdef XML
                   16229: 
                   16230:        * src/targets/cgi/parser3.C: todo: move to latest xml version on
                   16231:          win32 and run memleak tests again
                   16232: 
                   16233:        * src/targets/cgi/parser3.C: charsets: see some strange things with
                   16234:          old xml lib-- it's internal memory handling has faults
                   16235: 
                   16236:        * src/: include/pa_types.h, main/pa_charset.C: charsets: fixed
                   16237:          problems when transcode from charset A to A.
                   16238: 
                   16239:        * src/: main/untaint.C, types/pa_vmail.C: mail: transcode fixed.
                   16240:          todo: still problems when transcode from charset A to A.
                   16241: 
                   16242:        * src/: classes/hash.C, classes/mail.C, classes/string.C,
                   16243:          classes/table.C, include/pa_array.h,
                   16244:          main/pa_sql_driver_manager.C, types/pa_vmail.C, types/pa_vmail.h:
                   16245:          started full-scale-site-test [~ http://parser.ru sources]
                   16246: 
                   16247:          some fixes
                   16248: 
                   16249:        * tests/: 021.html, 031.html, 033.html, 109.html, 110.html,
                   16250:          111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
                   16251:          117.html, 118.html, 119.html, 120.html, results/109.processed,
                   16252:          results/110.processed, results/111.processed,
                   16253:          results/112.processed, results/113.processed,
                   16254:          results/114.processed, results/115.processed,
                   16255:          results/116.processed, results/117.processed,
                   16256:          results/118.processed, results/119.processed,
                   16257:          results/120.processed: xml: tests 109 dom create/show 110 xpath
                   16258:          selectSingle 111 xdoc.create from tainted & 112
                   16259:          xdoc.create/output with russian attr value 113 xpath
                   16260:          selectString/Number 114 dom attributes.count 115 xpath selectBool
                   16261:          116 output media-type change 117 transform by dom stylesheet 118
                   16262:          empty transform result 119 dom setAttribute 120 nbsp letter
                   16263:          output
                   16264: 
                   16265:          =END OF PREPARED XML TESTS=
                   16266: 
                   16267: 2003-03-07  paf
                   16268: 
                   16269:        * src/classes/xdoc.C, src/include/pa_charset.h,
                   16270:          src/include/pa_stylesheet_connection.h, tests/108.html,
                   16271:          tests/108.xsl, tests/results/108.processed: xml: test 108
                   16272:          transform with params [bugs fixed]
                   16273: 
                   16274:        * src/: main/pa_charset.C, targets/cgi/parser3.C: fixed: mem leak
                   16275:          from copy/paste bug
                   16276: 
                   16277:        * src/classes/xdoc.C, src/include/pa_charset.h,
                   16278:          src/include/pa_request.h, src/main/execute.C,
                   16279:          src/main/pa_charset.C, src/main/pa_exception.C,
                   16280:          src/main/pa_globals.C, src/main/pa_request.C,
                   16281:          src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
                   16282:          src/types/pa_vxnode.C, tests/107.html,
                   16283:          tests/results/107.processed: xml: test: 107 bug fixes
                   16284: 
                   16285:        * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   16286:          types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   16287:          types/pa_vxnode.C, types/pa_vxnode.h: test: 107 bug fixes
                   16288: 
                   16289:        * tests/: 106.html, results/106.processed: test: 106 xdoc create,
                   16290:          string
                   16291: 
                   16292:        * src/: include/pa_charset.h, main/pa_charset.C: xml: charset two
                   16293:          mem alloc functions used for different cases [libxml, libxsl]
                   16294: 
                   16295:        * src/classes/classes.C: fixed: prevent system classes from
                   16296:          modification to lock ALL the classes, not only directly used
                   16297: 
                   16298:        * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h: xml:
                   16299:          linked
                   16300: 
                   16301:        * src/: classes/xdoc.C, types/pa_vxdoc.h: xdoc.C compiled
                   16302: 
                   16303: 2003-03-06  paf
                   16304: 
                   16305:        * src/classes/xdoc.C: xdoc.C 50%
                   16306: 
                   16307:        * src/: classes/xnode.C, classes/xnode.h, include/pa_charset.h,
                   16308:          include/pa_memory.h, include/pa_request.h, include/pa_string.h,
                   16309:          main/pa_globals.C, main/pa_request.C,
                   16310:          main/pa_stylesheet_manager.C: xnode.C compiled
                   16311: 
                   16312:        * src/: include/pa_stylesheet_connection.h,
                   16313:          include/pa_stylesheet_manager.h, main/pa_sql_driver_manager.C,
                   16314:          main/pa_stylesheet_manager.C: xml: stylesheet&manager done
                   16315: 
                   16316:        * src/: include/pa_memory.h, include/pa_stylesheet_connection.h,
                   16317:          include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
                   16318:          xml: stylesheet&manager STARTED
                   16319: 
                   16320:        * src/: include/pa_globals.h, main/pa_charset.C,
                   16321:          main/pa_exception.C, main/pa_globals.C: xml: exceptions
                   16322: 
                   16323:        * src/: include/pa_charset.h, include/pa_config_fixed.h,
                   16324:          include/pa_memory.h, include/pa_pool.h, main/pa_charset.C,
                   16325:          main/pa_memory.C, main/pa_pool.C, types/pa_vxdoc.C,
                   16326:          types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: xml:
                   16327:          charsets
                   16328: 
                   16329:        * tests/023.html: in some cases it rounded up badly. postponing
                   16330:          solution of that problem, making more simple test
                   16331: 
                   16332:        * tests/: 058_paf2000.png, results/058.processed: .png added with
                   16333:          -kb now
                   16334: 
                   16335:        * src/: include/pa_charset.h, include/pa_charsets.h,
                   16336:          main/pa_charset.C, main/pa_charsets.C: charset_utf8 declaration
                   16337:          moved to charsets.C
                   16338: 
                   16339: 2003-03-05  paf
                   16340: 
                   16341:        * src/classes/string.C, src/include/pa_string.h,
                   16342:          src/main/pa_string.C, tests/105.html,
                   16343:          tests/results/105.processed: String::match bug fixed
                   16344: 
                   16345:        * src/classes/op.C, src/main/main.dsp, tests/104.html,
                   16346:          tests/results/104.processed: ^bpt operator added [does int3 in
                   16347:          debug build on win32]
                   16348: 
                   16349:        * tests/: 057.html, results/057.processed: test bug fixed
                   16350: 
1.116     moko     16351:        * src/targets/cgi/Makefile.am: linker needed more tricks to link OK
1.95      moko     16352: 
                   16353:        * src/classes/math.C: can be: crypt in -lcrypt OK, but crypt.h be
                   16354:          missing
                   16355: 
1.116     moko     16356:        * src/: include/Makefile.am, main/Makefile.am, types/Makefile.am:
                   16357:          forgotten files added to Makes
1.95      moko     16358: 
                   16359:        * ltmain.sh: ltmain.sh added
                   16360: 
                   16361:        * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
                   16362:          change undone ;(
                   16363: 
                   16364:        * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
                   16365:          made static
                   16366: 
                   16367:        * src/: classes/math.C, classes/op.C, classes/string.C,
1.116     moko     16368:          main/pa_exec.C, targets/cgi/Makefile.am: gcc more happy.
                   16369:          todo:make linker happy
1.95      moko     16370: 
                   16371:        * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C: pa_exec
                   16372:          env param made optional
                   16373: 
                   16374: 2003-03-04  paf
                   16375: 
                   16376:        * src/: classes/image.C, include/pa_request.h, include/pa_stack.h,
                   16377:          types/pa_vimage.h: number of gcc compiler bugs fixed
                   16378: 
                   16379:        * tests/: 103.html, 103mark.gif, 103paf2001.gif,
                   16380:          results/103.processed: tests: 103 image.copy transparence test
                   16381: 
                   16382:        * src/main/execute.C, tests/101.html, tests/102.html,
                   16383:          tests/results/101.processed, tests/results/102.processed: tests:
                   16384:          101 method/variable name conflict test 102 form fields change
                   16385:          should not not change anything [bug fix]
                   16386: 
                   16387:        * tests/: 057.html, 099.html, 100.html, results/057.processed,
                   16388:          results/099.processed, results/100.processed: tests: 57 date
                   16389:          create 2002: added 99,100 response:body/download
                   16390: 
                   16391:        * src/classes/image.C, tests/098.html, tests/098font.gif,
                   16392:          tests/results/098.processed: test: 98 image font text [bug fixed]
                   16393: 
                   16394:        * src/main/pa_common.C, src/targets/cgi/parser3.C, tests/097.html,
                   16395:          tests/results/097.processed: test: 97 file::load http://  [bugs
                   16396:          fixed]
                   16397: 
                   16398:        * src/classes/hash.C, src/classes/image.C, src/classes/table.C,
                   16399:          src/include/pa_memory.h, tests/096.html, tests/096_dir/163.jpg,
                   16400:          tests/096_dir/188.jpg, tests/results/096.processed: tests: 96
                   16401:          image EXIF  [bug fixed]
                   16402: 
                   16403:        * src/classes/table.C, src/main/execute.C, tests/061.dat,
                   16404:          tests/061.html, tests/062.html, tests/063.html, tests/064.html,
                   16405:          tests/065.html, tests/066.html, tests/067.html, tests/068.html,
                   16406:          tests/069.html, tests/070.html, tests/071.html, tests/072.html,
                   16407:          tests/073.html, tests/074.html, tests/075.html, tests/076.html,
                   16408:          tests/077.html, tests/078.html, tests/080.html, tests/081.html,
                   16409:          tests/082.html, tests/083.html, tests/084.html, tests/085.html,
                   16410:          tests/086.html, tests/087.html, tests/088.html, tests/089.html,
                   16411:          tests/090.html, tests/091.html, tests/092.html, tests/093.html,
                   16412:          tests/094.html, tests/095.html, tests/results/061.processed,
                   16413:          tests/results/062.processed, tests/results/063.processed,
                   16414:          tests/results/064.processed, tests/results/065.processed,
                   16415:          tests/results/066.processed, tests/results/067.processed,
                   16416:          tests/results/068.processed, tests/results/069.processed,
                   16417:          tests/results/070.processed, tests/results/071.processed,
                   16418:          tests/results/072.processed, tests/results/073.processed,
                   16419:          tests/results/074.processed, tests/results/075.processed,
                   16420:          tests/results/076.processed, tests/results/077.processed,
                   16421:          tests/results/078.processed, tests/results/080.processed,
                   16422:          tests/results/081.processed, tests/results/082.processed,
                   16423:          tests/results/083.processed, tests/results/084.processed,
                   16424:          tests/results/085.processed, tests/results/086.processed,
                   16425:          tests/results/087.processed, tests/results/088.processed,
                   16426:          tests/results/089.processed, tests/results/090.processed,
                   16427:          tests/results/091.processed, tests/results/092.processed,
                   16428:          tests/results/093.processed, tests/results/094.processed,
                   16429:          tests/results/095.processed, tests/079.html,
                   16430:          tests/results/079.processed: tests: 61 file::stat size 62
                   16431:          string->int autoconvert 63 double .int,dec,div,mul 64 date
                   16432:          compare 65 file: basename,justname,justext 66 math:crypt 67
                   16433:          string.match simple on long 68 string.match normalized simple on
                   16434:          long 69 string.int 70 file::stat content-type 71 table.join 72
                   16435:          hash parameter conditional pass 73 date daylightsaving,yearday 74
                   16436:          date arithmetics 75 response date values/attributes 76 string.pos
                   16437:          of void, void.pos 77 syntax parsing 78 cookie tainting 79 switch
                   16438:          with local 80 scientific numeric literal in string autoconvert 81
                   16439:          xor: logical and numerical 82 for delims 83 menu delims 84
                   16440:          table.hash distinct 85 long string  replace 86 throw+catch
                   16441:          current language preserve 87 bit shifts 88 junction tests +
                   16442:          $caller test 89 hash.foreach selfmodification 90 int/void to int
                   16443:          91 $caller test 92 junction is + def junction tests 93 $caller
                   16444:          test 94 syntax test 95 table.hash(keygenerator)  [bug fixed]
                   16445: 
                   16446:        * src/main/: execute.C, pa_table.C: test: 59 table.locate [bug
                   16447:          fixed] 60 string eq string [bug fixed]
                   16448: 
                   16449:        * tests/: 053.html, 054.html, 055.html, 056.html, 057.html,
                   16450:          058.html, 058_paf2000.png, 059.html, 060.html,
                   16451:          results/053.processed, results/054.processed,
                   16452:          results/055.processed, results/056.processed,
                   16453:          results/057.processed, results/058.processed,
                   16454:          results/059.processed, results/060.processed: test: 53
                   16455:          string.replace 54 junctions 55 table.hash 56 call indirect 57
                   16456:          date.create[string] 58 image.measure[png]
                   16457: 
                   16458:        * tests/: 052.html, outputs/049.processed, outputs/050.processed,
                   16459:          outputs/051.processed, results/052.processed: test: 52
                   16460:          pre/match/post test: passed AS-IT-WERE, but wrong :) separate
                   16461:          task: fix that
                   16462: 
                   16463: 2003-03-03  paf
                   16464: 
                   16465:        * tests/: 043.html, 044.html, 045.html, 046.html, 047.html,
                   16466:          048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p, Makefile,
                   16467:          parser-cygwin.sh, parser-unix.sh, run_parser.sh,
                   16468:          outputs/049.processed, outputs/050.processed,
                   16469:          outputs/051.processed, results/001.processed,
                   16470:          results/002.processed, results/003.processed,
                   16471:          results/005.processed, results/006.processed,
                   16472:          results/008.processed, results/009.processed,
                   16473:          results/011.processed, results/012.processed,
                   16474:          results/013.processed, results/014.processed,
                   16475:          results/015.processed, results/016.processed,
                   16476:          results/017.processed, results/020.processed,
                   16477:          results/021.processed, results/022.processed,
                   16478:          results/024.processed, results/025.processed,
                   16479:          results/026.processed, results/027.processed,
                   16480:          results/028.processed, results/029.processed,
                   16481:          results/030.processed, results/031.processed,
                   16482:          results/049.processed, results/050.processed,
                   16483:          results/051.processed, results/043.processed,
                   16484:          results/044.processed, results/045.processed,
                   16485:          results/046.processed, results/047.processed,
                   16486:          results/048.processed: tests: 43,44,45 date rolls 46
                   16487:          autoevaluating junction 47 table.select 48 name with subvar 49
                   16488:          hash-creating switch 50 process 51 started parent/child, works as
                   16489:          it were but it were NOT GOOD, created separate task  to fix that
                   16490: 
                   16491:        * tests/: 042.html, results/042.processed: test: 42
                   16492:          exception.handled
                   16493: 
                   16494:        * tests/: 041.html, results/041.processed: test: 41 table.locate by
                   16495:          expression
                   16496: 
                   16497:        * tests/: 040.html, results/040.processed: test: 39 method result
                   16498:          of type table 40 method param junction auto evaluate
                   16499: 
                   16500:        * tests/: 039.html, results/039.processed: test: 37 method result
                   16501:          of type table
                   16502: 
                   16503:        * src/main/pa_request.C, src/types/pa_vmath.C, tests/033.html,
                   16504:          tests/034.html, tests/035.html, tests/036.html, tests/037.html,
                   16505:          tests/038.html, tests/results/033.processed,
                   16506:          tests/results/034.processed, tests/results/035.processed,
                   16507:          tests/results/036.processed, tests/results/037.processed,
                   16508:          tests/results/038.processed: tests: 33 string.replace 34
                   16509:          string.upper 35 table created 36 local/global vars with juntions
                   16510:          37 table clone 38 math PI & number formatting
                   16511: 
                   16512:          math class registring typo fixed
                   16513: 
                   16514:        * src/classes/op.C, src/include/pa_request.h,
                   16515:          src/include/pa_string.h, src/main/execute.C,
                   16516:          src/main/pa_request.C, src/main/pa_string.C, src/main/untaint.C,
                   16517:          src/types/pa_vcode_frame.h, src/types/pa_wcontext.h,
                   16518:          tests/032.html, tests/results/032.processed: uchar changed to
                   16519:          String_UL in all places [was not everywhere] untaint test: 032
                   16520: 
                   16521:        * src/targets/cgi/parser3.C, tests/004.html, tests/Makefile,
                   16522:          tests/results/004.processed, tests/parser-cygwin.sh,
                   16523:          tests/parser-unix.sh: removed -H command line key, now testing
                   16524:          using .sh file with SERVER_SOFTWARE=xxx
                   16525: 
                   16526: 2003-02-26  paf
                   16527: 
                   16528:        * src/main/execute.C, src/types/pa_vstateless_class.h,
                   16529:          tests/024.html, tests/025.html, tests/026.html, tests/027.html,
                   16530:          tests/028.html, tests/029.html, tests/030.html, tests/031.html,
                   16531:          tests/results/024.processed, tests/results/025.processed,
                   16532:          tests/results/026.processed, tests/results/027.processed,
                   16533:          tests/results/028.processed, tests/results/029.processed,
                   16534:          tests/results/030.processed, tests/results/031.processed: fixed
                   16535:          bug with name_cstr mutable CharPtr more tests
                   16536: 
                   16537:        * src/: include/pa_sapi.h, main/pa_globals.C, main/pa_memory.C,
                   16538:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C: SAPI::abort
                   16539:          << abort.  die now just exits
                   16540: 
                   16541:        * src/classes/classes.awk, src/classes/classes.h,
                   16542:          src/classes/date.C, src/classes/double.C, src/classes/file.C,
                   16543:          src/classes/form.C, src/classes/hash.C, src/classes/image.C,
                   16544:          src/classes/int.C, src/classes/mail.C, src/classes/math.C,
                   16545:          src/classes/op.C, src/classes/response.C, src/classes/string.C,
                   16546:          src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
                   16547:          src/classes/xnode.C, src/include/pa_memory.h,
                   16548:          src/include/pa_sapi.h, src/targets/cgi/parser3.C,
                   16549:          src/targets/isapi/parser3isapi.C, src/types/pa_venv.h,
                   16550:          src/types/pa_vform.C, tests/015.html, tests/016.html,
                   16551:          tests/017.html, tests/018.html, tests/019.html,
                   16552:          tests/019paf2001.gif, tests/020.html, tests/021.html,
                   16553:          tests/022.html, tests/023.html, tests/022_dir/a.html,
                   16554:          tests/022_dir/b.txt, tests/022_dir/c.htm,
                   16555:          tests/results/015.processed, tests/results/016.processed,
                   16556:          tests/results/017.processed, tests/results/018.processed,
                   16557:          tests/results/019.processed, tests/results/020.processed,
                   16558:          tests/results/021.processed, tests/results/022.processed,
                   16559:          tests/results/023.processed: methoded_array now contains all Mxxx
                   16560:          classes SAPI::get_env now returns info on pool more tests
                   16561: 
                   16562:        * src/include/pa_array.h, src/include/pa_hash.h,
                   16563:          src/include/pa_memory.h, src/main/pa_charset.C, tests/001.html,
                   16564:          tests/002.html, tests/003.html, tests/004.html, tests/005.html,
                   16565:          tests/006.html, tests/007.html, tests/008.html, tests/009.html,
                   16566:          tests/010.html, tests/011.html, tests/012.html, tests/013.html,
                   16567:          tests/014.html, tests/Makefile, tests/outputs/create-dir,
                   16568:          tests/results/001.processed, tests/results/002.processed,
                   16569:          tests/results/003.processed, tests/results/004.processed,
                   16570:          tests/results/005.processed, tests/results/006.processed,
                   16571:          tests/results/007.processed, tests/results/008.processed,
                   16572:          tests/results/009.processed, tests/results/010.processed,
                   16573:          tests/results/011.processed, tests/results/012.processed,
                   16574:          tests/results/013.processed, tests/results/014.processed: hash
                   16575:          cloning fixed
                   16576: 
                   16577: 2003-02-25  paf
                   16578: 
                   16579:        * src/main/pa_common.C: typo fixed
                   16580: 
                   16581: 2003-02-24  paf
                   16582: 
                   16583:        * src/types/pa_vcookie.C: fixed all places with bad get_string(0)
                   16584:          [one remained]
                   16585: 
                   16586:        * src/: include/pa_request.h, main/execute.C: few bad get_string(0)
                   16587:          [should have been get_string(&pool)] todo: check other such calls
                   16588: 
                   16589:        * src/: main/compile.tab.C, main/execute.C, types/pa_vfile.h:
                   16590:          test10, bad lookups
                   16591: 
                   16592:          xxx* xxx=smartptr.get(); << is bad style, after ";" original
                   16593:          object got destructed, and xxx points to sky
                   16594: 
                   16595:        * ChangeLog, src/classes/string.C: match bug fixed
                   16596: 
                   16597:        * src/types/pa_vmail.C: body [text/html] transcoded to
                   16598:          $.charset[specified] now
                   16599: 
                   16600:        * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
                   16601:          which failed to handle sigsetjmp+throw: crashed inside of
                   16602:          pre-throw code.  rewritten simplier [though duplicating
                   16603:          closesocket code]
                   16604: 
                   16605:        * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
                   16606:          which failed to handle sigsetjmp+throw: crashed inside of
                   16607:          pre-throw code.  rewritten simplier [though duplicating
                   16608:          closesocket code]
                   16609: 
                   16610: 2003-02-21  paf
                   16611: 
                   16612:        * operators.txt, src/targets/cgi/parser3.C, src/types/pa_vcookie.C:
                   16613:          $cookie:name[$.expires[date << can be now]]
                   16614: 
                   16615:          written makefile with regression tests [raw]
                   16616: 
                   16617:        * src/targets/cgi/parser3.C: MAKE_TEST must be used inside of 'make
                   16618:          tests' only [it's not forcing CGI mode now] now use -H to output
                   16619:          CGI header when parser used in command line [useful for tests
                   16620:          also]
                   16621: 
                   16622:        * src/targets/cgi/parser3.C: MAKE_TEST environment variable
                   16623:          switches on CGI mode, and is used in regression tests
                   16624: 
                   16625:        * src/: include/pa_request.h, main/pa_request.C,
                   16626:          targets/cgi/parser3.C, types/pa_vcookie.h, types/pa_venv.h: env
                   16627:          fixed
                   16628: 
                   16629:        * src/: include/pa_memory.h, main/pa_memory.C: inlined memory
                   16630:          handling pa_*
                   16631: 
                   16632:        * src/: include/pa_memory.h, main/pa_memory.C, include/pa_array.h,
                   16633:          include/pa_exception.h, include/pa_pool.h, main/Makefile.am,
                   16634:          main/main.dsp, main/pa_array.C, main/pa_pool.C: reorganized
                   16635:          memory handling files
                   16636: 
                   16637:        * src/main/pa_array.C: pool::format_integer terminator fixed
                   16638: 
                   16639:        * src/: main/execute.C, targets/cgi/parser3.C: release mode now
                   16640:          compiles OK test to show benefits of free
                   16641: 
                   16642:        * src/: classes/file.C, classes/image.C, classes/mail.C,
                   16643:          classes/op.C, classes/xdoc.C, main/pa_charset.C, main/pa_exec.C,
                   16644:          main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
                   16645:          types/pa_vimage.C, types/pa_vxdoc.h: fixed all cstr's that must
                   16646:          use pool [as the one in ^process]
                   16647: 
                   16648:        * src/classes/op.C: fixed process.  sould now check for all cstr's
                   16649:          -- some must use pool [as the one in ^process]
                   16650: 
                   16651: 2003-02-20  paf
                   16652: 
                   16653:        * src/: classes/date.C, classes/double.C, classes/file.C,
                   16654:          classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
                   16655:          classes/math.C, classes/op.C, classes/response.C,
                   16656:          classes/string.C, classes/table.C, classes/void.C,
                   16657:          classes/xdoc.C, classes/xnode.C, main/pa_string.C,
                   16658:          types/pa_method.h, types/pa_value.C, types/pa_vmethod_frame.h:
                   16659:          string cmp fixed
                   16660: 
                   16661:        * src/: include/pa_config_fixed.h, targets/cgi/parser3.C: form
                   16662:          values passed OK now
                   16663: 
                   16664: 2003-02-19  paf
                   16665: 
                   16666:        * src/: classes/form.C, include/pa_charset.h, include/pa_pool.h,
                   16667:          main/pa_charset.C, main/pa_exception.C, main/pa_request.C,
                   16668:          main/pa_stylesheet_manager.C, targets/cgi/parser3.C,
                   16669:          targets/isapi/parser3isapi.dsp, types/pa_vcookie.C,
                   16670:          types/pa_vform.C, types/pa_vmail.C, types/pa_vxnode.C: found&kill
                   16671:          all remaning leaks resulted from pooled::malloc calls [excluding
                   16672:          in gd -- planning complete rewrite extremely ugly code]
                   16673: 
                   16674:        * src/targets/isapi/: pa_pool.C, pool_storage.h: removed unneeded
                   16675:          files
                   16676: 
                   16677: 2003-02-17  paf
                   16678: 
                   16679:        * src/: classes/date.C, classes/double.C, classes/file.C,
                   16680:          classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
                   16681:          classes/response.C, classes/string.C, classes/table.C,
                   16682:          classes/xdoc.C, classes/xnode.h, include/pa_stack.h,
                   16683:          include/pa_stylesheet_connection.h,
                   16684:          include/pa_stylesheet_manager.h, sql/pa_sql_driver.h,
                   16685:          types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
                   16686:          types/pa_vform.C, types/pa_vform.h, types/pa_vimage.h,
                   16687:          types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
                   16688:          types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
                   16689:          types/pa_wcontext.h, types/pa_wwrapper.h: fixed all remained bugs
                   16690:          of unitialized simple-typed field
                   16691: 
                   16692:        * src/: classes/classes.C, classes/classes.h, main/execute.C,
                   16693:          main/pa_charset.C, main/pa_request.C: another bug of unitialized
                   16694:          simple-typed field fixed.  todo: find&kill all like that one
                   16695: 
                   16696:        * src/: main/execute.C, targets/cgi/pa_pool.C,
                   16697:          targets/cgi/parser3.C, targets/cgi/pool_storage.h: few bugs in
                   16698:          debug output fixed
                   16699: 
                   16700:        * src/: include/pa_stack.h, main/compile.C, main/execute.C,
                   16701:          main/pa_request.C: stack-stored items need extra .ref to prevent
                   16702:          object_ptr from delete[them]
                   16703: 
                   16704:        * src/: classes/date.C, classes/op.C, classes/table.C,
                   16705:          classes/xdoc.C, classes/xnode.C, include/pa_array.h,
                   16706:          include/pa_charset.h, main/Makefile.am, main/main.dsp,
                   16707:          main/pa_charset.C, main/pa_common.C,
                   16708:          main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
                   16709:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                   16710:          types/pa_vmail.C: fixed more leaks resulted from pooled::malloc
                   16711:          calls
                   16712: 
                   16713:        * src/: main/pa_request.C, targets/cgi/parser3.C, types/pa_vfile.C:
                   16714:          couple mem leaks rusulted from old pooled::malloc usage.
                   16715:          todo:find more like those
                   16716: 
                   16717:        * src/main/: compile.C, compile_tools.C: 2*2!
                   16718: 
                   16719:        * src/: include/pa_array.h, include/pa_request.h, main/execute.C:
                   16720:          stackItem fixed [there were no string on stack before]
                   16721: 
                   16722:        * src/: main/execute.C, main/pa_request.C,
                   16723:          types/pa_vmethod_frame.C: first letters out OK
                   16724: 
                   16725:        * src/: classes/classes.C, include/pa_array.h, include/pa_hash.h,
                   16726:          include/pa_pool.h, include/pa_request.h, main/pa_request.C,
                   16727:          main/pa_string.C, main/untaint.C, types/pa_value.h,
                   16728:          types/pa_vint.h, types/pa_vstateless_class.h, types/pa_vstring.h,
                   16729:          types/pa_vvoid.h, types/pa_wcontext.h: class fields of simple
                   16730:          type not initialized with zeros :( while class fields of class
                   16731:          types initialized with default constructors.  learn C++
                   16732: 
                   16733:        * src/: classes/classes.awk, classes/double.C, classes/file.C,
                   16734:          classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
                   16735:          classes/math.C, classes/xdoc.C, classes/xnode.C,
                   16736:          include/pa_array.h, include/pa_string.h, main/pa_exec.C,
                   16737:          types/pa_vmail.C: parser3.exe - 0 error(s), 0 warning(s)
                   16738: 
                   16739: 2003-02-14  paf
                   16740: 
                   16741:        * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
                   16742:          13 link errors
                   16743: 
                   16744:        * src/: classes/file.C, include/pa_request.h, main/pa_request.C,
                   16745:          main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
                   16746:          types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
                   16747:          types/pa_vimage.C, types/pa_vtable.C: all compiled, only 14 link
                   16748:          errors :)
                   16749: 
                   16750:        * src/: classes/classes.C, classes/classes.awk, classes/file.C,
                   16751:          classes/hash.C, classes/mail.C, classes/op.C,
                   16752:          include/pa_common.h, include/pa_request.h, include/pa_sapi.h,
                   16753:          main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C,
                   16754:          targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C:
                   16755:          classes.lib - 0 error(s), 0 warning(s) parser.C compiled
                   16756: 
                   16757:        * src/: classes/classes.dsp, classes/op.C, classes/string.C,
                   16758:          classes/table.C, include/pa_common.h, include/pa_globals.h,
                   16759:          include/pa_pool.h, include/pa_request.h, main/pa_globals.C,
                   16760:          main/pa_request.C, types/pa_value.h, types/pa_vhash.h,
                   16761:          types/pa_vint.h, types/types.dsp: op compiled
                   16762: 
                   16763:        * src/: classes/classes.dsp, classes/response.C, classes/string.C,
                   16764:          include/pa_dictionary.h, include/pa_string.h, main/pa_string.C,
                   16765:          main/untaint.C, types/pa_vtable.h: string, response compiled
                   16766: 
                   16767: 2003-02-07  paf
                   16768: 
                   16769:        * src/: classes/table.C, types/pa_vtable.h: table compiled
                   16770: 
                   16771: 2003-02-06  paf
                   16772: 
                   16773:        * src/: classes/mail.C, include/pa_request.h, main/pa_request.C:
                   16774:          mail compiled
                   16775: 
                   16776:        * src/: classes/image.C, classes/string.C, classes/xdoc.C,
                   16777:          include/pa_common.h, include/pa_hash.h, main/pa_common.C,
                   16778:          types/pa_vfile.h, types/pa_vimage.h: image compiled
                   16779: 
                   16780:        * src/classes/: file.C, form.C: form compiled
                   16781: 
                   16782:        * src/: classes/classes.dsp, classes/file.C, include/pa_common.h,
                   16783:          include/pa_exec.h, main/pa_common.C, main/pa_exec.C,
                   16784:          types/pa_vfile.C, types/pa_vfile.h: file compiled
                   16785: 
                   16786:        * src/: classes/hash.C, classes/math.C, types/pa_vmath.C,
                   16787:          types/pa_vmath.h: math compiled [win32]
                   16788: 
                   16789:        * src/: classes/hash.C, include/pa_hash.h, include/pa_table.h,
                   16790:          types/pa_vstring.h: hash compiled
                   16791: 
                   16792: 2003-02-04  paf
                   16793: 
                   16794:        * src/: classes/date.C, classes/hash.C, include/pa_exec.h,
                   16795:          include/pa_hash.h, include/pa_request.h, include/pa_string.h,
                   16796:          include/pa_table.h, main/pa_common.C, main/pa_exec.C,
                   16797:          main/pa_string.C, types/pa_method.h, types/pa_vform.C,
                   16798:          types/pa_vhash.h: hash 50% compiled
                   16799: 
                   16800:        * src/: classes/date.C, classes/file.C, classes/hash.C,
                   16801:          classes/image.C, classes/mail.C, classes/math.C, classes/op.C,
                   16802:          classes/string.C, classes/table.C, classes/xdoc.C,
                   16803:          classes/xnode.C, include/pa_request.h, main/pa_globals.C,
                   16804:          main/pa_string.C: date compiled
                   16805: 
                   16806:        * src/classes/: classes.dsp, double.C: double compiled
                   16807: 
                   16808:        * src/: classes/date.C, classes/double.C, classes/file.C,
                   16809:          classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
                   16810:          classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
                   16811:          classes/string.C, classes/table.C, classes/void.C,
                   16812:          classes/xdoc.C, classes/xnode.C, types/pa_vdouble.h,
                   16813:          types/pa_vhash.h, types/pa_vint.h, types/pa_vstring.h,
                   16814:          types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.h: int
                   16815:          compiled
                   16816: 
                   16817:        * src/: classes/date.C, classes/double.C, classes/file.C,
                   16818:          classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
                   16819:          classes/math.C, classes/op.C, classes/response.C,
                   16820:          classes/string.C, classes/table.C, classes/void.C,
                   16821:          classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   16822:          types/pa_vvoid.h: void  compiled :)
                   16823: 
                   16824:        * src/: include/pa_globals.h, main/pa_cache_managers.C,
                   16825:          main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
                   16826:          main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
                   16827:          main/pa_globals.C, main/pa_pool.C, main/pa_sql_driver_manager.C,
                   16828:          main/pa_string.C, main/pa_uue.C, main/untaint.C,
                   16829:          types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.C,
                   16830:          types/pa_vimage.C, types/pa_vmath.C, types/pa_vrequest.C,
                   16831:          types/pa_vresponse.C, types/pa_vstateless_class.C,
                   16832:          types/pa_vstatus.C, types/pa_vstring.C, types/pa_vtable.C,
                   16833:          types/pa_wcontext.C, types/types.dsp: removed stupid
                   16834:          value_includes.h
                   16835: 
                   16836:        * src/types/: pa_value.C, pa_value_includes.h, pa_vrequest.C:
                   16837:          trying to remove stupid value_includes.h
                   16838: 
                   16839:        * src/main/pa_exec.C: pa_exec compiled on win32
                   16840: 
                   16841:        * src/main/pa_exec.C: libmain.a compiled on six [unix]
                   16842: 
                   16843:        * src/: include/pa_globals.h, include/pa_request.h,
                   16844:          types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
                   16845:          types/pa_vcookie.C, types/pa_vdate.h, types/pa_vfile.C,
                   16846:          types/pa_vfile.h, types/pa_vmail.C, types/pa_vobject.C,
                   16847:          types/pa_vrequest.C, types/pa_vstateless_class.C,
                   16848:          types/pa_vstatus.C, types/pa_vtable.C: libtypes.a compiled gcc
                   16849: 
                   16850:        * src/: include/pa_config_includes.h, include/pa_dictionary.h,
                   16851:          main/pa_common.C, main/pa_dictionary.C, main/pa_exec.C,
                   16852:          main/pa_socks.C: libmain.a gcc and mail.lib msvc++ compiled
                   16853: 
                   16854:        * src/: include/pa_array.h, include/pa_config_includes.h,
                   16855:          include/pa_dictionary.h, main/pa_dictionary.C, main/pa_exec.C,
                   16856:          main/pa_socks.C, main/pa_sql_driver_manager.C: gcc libmain.a
                   16857:          compiled
                   16858: 
                   16859:        * src/main/pa_globals.C: merged changes from 1.149-1.150 (stupid
                   16860:          name conflicts)
                   16861: 
                   16862:        * src/: main/compile_tools.h, main/execute.C, main/pa_table.C,
                   16863:          types/pa_vmethod_frame.h, types/pa_vvoid.h: yuk: gcc on cygwin
                   16864:          yelds "virtual memory exhausted" while trying to compile
                   16865:          execute.C [eating up to 127MB]
                   16866: 
                   16867: 2003-02-03  paf
                   16868: 
                   16869:        * src/: include/pa_config_includes.h, include/pa_hash.h,
                   16870:          include/pa_operation.h, include/pa_pool.h, include/pa_string.h,
                   16871:          main/pa_common.C, types/pa_value.C, types/pa_value.h,
                   16872:          types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
                   16873:          types/pa_vint.h, types/pa_vjunction.h,
                   16874:          types/pa_vstateless_class.h, types/pa_vstring.h, types/types.dsp:
                   16875:          started gcc compiling pa_common compiled
                   16876: 
                   16877:        * src/: include/pa_exception.h, include/pa_pool.h,
                   16878:          main/pa_exception.C: exception gcc change #1
                   16879: 
1.116     moko     16880:        * src/include/: Makefile.am, pa_hash.h, pa_pool.h: gcc refused to
                   16881:          compile _P identifier. it replaced it to some strange 0x0000040
1.95      moko     16882: 
                   16883:        * src/types/: pa_vmath.C, pa_vmethod_frame.C: vmath compiled
                   16884: 
                   16885:        * src/types/pa_vtable.C: vtable compiled
                   16886: 
                   16887:        * src/types/: pa_vstring.C, pa_vstring.h: vstring compiled
                   16888: 
                   16889:        * src/: include/pa_cache_managers.h, main/pa_request.C,
                   16890:          types/pa_vstatus.C, types/pa_vstatus.h: vstatus compiled
                   16891: 
                   16892:        * src/types/pa_vstateless_class.C: vstateless_class compiled
                   16893: 
                   16894:        * src/types/: pa_vresponse.C, pa_vresponse.h: vresponse compiled
                   16895: 
                   16896:        * src/types/pa_vrequest.C: vrequest compiled
                   16897: 
                   16898:        * src/types/: pa_value.C, pa_value.h, pa_vclass.C, pa_vclass.h,
                   16899:          pa_vobject.C, pa_vobject.h: vobject compiled
                   16900: 
                   16901:        * src/: classes/form.C, classes/mail.C, include/pa_request.h,
                   16902:          main/pa_globals.C, main/pa_request.C, types/pa_value.h,
                   16903:          types/pa_vform.C, types/pa_vmail.C, types/pa_vmail.h: vmail
                   16904:          compiled
                   16905: 
                   16906:        * src/types/: pa_vimage.C, pa_vimage.h: vimage compiled
                   16907: 
                   16908:        * src/: include/pa_pool.h, main/pa_request.C, types/pa_value.C,
                   16909:          types/pa_vclass.C, types/pa_vcookie.C, types/pa_vcookie.h,
                   16910:          types/pa_vform.C, types/pa_vform.h, types/pa_vobject.h: vform
                   16911:          compiled
                   16912: 
                   16913:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
                   16914:          main.lib - 0 error(s), 0 warning(s)
                   16915: 
                   16916:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
                   16917:          types/pa_value.h, types/pa_vmethod_frame.h: execute compiled
                   16918: 
                   16919: 2003-01-31  paf
                   16920: 
                   16921:        * src/: include/pa_array.h, include/pa_operation.h,
                   16922:          include/pa_request.h, main/execute.C, main/main.dsp,
                   16923:          types/pa_vjunction.h: started last file from main library:
                   16924:          execute
                   16925: 
                   16926:        * src/: include/pa_request.h, include/pa_sapi.h,
                   16927:          main/compile.tab.C, main/compile.y, main/compile_tools.h,
                   16928:          main/pa_request.C, targets/cgi/parser3.C,
                   16929:          targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vfile.h,
                   16930:          types/pa_vhash.h: pa_request compiled
                   16931: 
                   16932:        * src/: classes/op.C, classes/string.C, include/pa_common.h,
                   16933:          include/pa_globals.h, include/pa_request.h,
                   16934:          include/pa_sql_connection.h, main/compile.tab.C, main/compile.y,
                   16935:          main/execute.C, main/main.dsp, main/pa_common.C,
                   16936:          main/pa_globals.C, main/pa_request.C, types/pa_value.h,
                   16937:          types/pa_vcode_frame.h, types/pa_vcookie.h, types/pa_vform.h,
                   16938:          types/pa_vmail.C, types/pa_vmail.h, types/pa_vresponse.h,
                   16939:          types/pa_vtable.h, types/pa_wcontext.C, types/pa_wcontext.h,
                   16940:          types/types.dsp: most pa_request compiled
                   16941: 
                   16942:        * src/: classes/classes.C, classes/classes.h, classes/date.C,
                   16943:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   16944:          classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
                   16945:          classes/op.C, classes/response.C, classes/string.C,
                   16946:          classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
                   16947:          classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
                   16948:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   16949:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   16950:          include/pa_dictionary.h, include/pa_dir.h,
                   16951:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   16952:          include/pa_hash.h, include/pa_opcode.h, include/pa_operation.h,
                   16953:          include/pa_pool.h, include/pa_request.h,
                   16954:          include/pa_request_charsets.h, include/pa_request_info.h,
                   16955:          include/pa_sapi.h, include/pa_socks.h,
                   16956:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   16957:          include/pa_stack.h, include/pa_string.h,
                   16958:          include/pa_stylesheet_connection.h,
                   16959:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   16960:          include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
                   16961:          lib/ltdl/config_fixed.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
                   16962:          lib/md5/pa_md5.h, lib/md5/pa_md5c.c, lib/pcre/dftables.c,
                   16963:          lib/pcre/get.c, lib/pcre/maketables.c, lib/pcre/pcre.c,
                   16964:          lib/pcre/pcre.h, lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
                   16965:          main/compile.C, main/compile.tab.C, main/compile.y,
                   16966:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   16967:          main/main.dsp, main/pa_cache_managers.C, main/pa_charset.C,
                   16968:          main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
                   16969:          main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
                   16970:          main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
                   16971:          main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
                   16972:          main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
                   16973:          main/untaint.C, sql/pa_sql_driver.h, targets/cgi/getopt.c,
                   16974:          targets/cgi/getopt.h, targets/cgi/pa_pool.C,
                   16975:          targets/cgi/pa_threads.C, targets/cgi/parser3.C,
                   16976:          targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
                   16977:          targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
                   16978:          targets/isapi/pool_storage.h, types/pa_value.C, types/pa_value.h,
                   16979:          types/pa_value_includes.h, types/pa_vbool.h, types/pa_vclass.C,
                   16980:          types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
                   16981:          types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
                   16982:          types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
                   16983:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
                   16984:          types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
                   16985:          types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
                   16986:          types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
                   16987:          types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
                   16988:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
                   16989:          types/pa_vresponse.h, types/pa_vstateless_class.C,
                   16990:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   16991:          types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
                   16992:          types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
                   16993:          types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   16994:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
                   16995:          types/pa_wcontext.h, types/pa_wwrapper.h: grammar compiled
                   16996: 
                   16997:        * ChangeLog, src/classes/classes.h, src/classes/op.C,
                   16998:          src/include/pa_cache_managers.h, src/include/pa_charset.h,
                   16999:          src/include/pa_charsets.h, src/include/pa_common.h,
                   17000:          src/include/pa_dictionary.h, src/include/pa_exception.h,
                   17001:          src/include/pa_exec.h, src/include/pa_pool.h,
                   17002:          src/include/pa_request.h, src/include/pa_sapi.h,
                   17003:          src/include/pa_sql_connection.h,
                   17004:          src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
                   17005:          src/include/pa_table.h, src/include/pa_uue.h, src/main/compile.C,
                   17006:          src/main/compile.tab.C, src/main/compile_tools.C,
                   17007:          src/main/compile_tools.h, src/main/main.dsp,
                   17008:          src/main/pa_charset.C, src/main/pa_charsets.C,
                   17009:          src/main/pa_common.C, src/main/pa_dictionary.C,
                   17010:          src/main/pa_exception.C, src/main/pa_exec.C,
                   17011:          src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
                   17012:          src/main/pa_string.C, src/main/pa_table.C, src/main/pa_uue.C,
                   17013:          src/main/untaint.C, src/types/pa_value.C, src/types/pa_value.h,
                   17014:          src/types/pa_vclass.h, src/types/pa_vcookie.C,
                   17015:          src/types/pa_vcookie.h, src/types/pa_vdate.h,
                   17016:          src/types/pa_vdouble.h, src/types/pa_venv.h,
                   17017:          src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.h,
                   17018:          src/types/pa_vhash.h, src/types/pa_vimage.C,
                   17019:          src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.C,
                   17020:          src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
                   17021:          src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
                   17022:          src/types/pa_vobject.C, src/types/pa_vobject.h,
                   17023:          src/types/pa_vrequest.C, src/types/pa_vrequest.h,
                   17024:          src/types/pa_vresponse.C, src/types/pa_vresponse.h,
                   17025:          src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
                   17026:          src/types/pa_vstateless_object.h, src/types/pa_vstatus.h,
                   17027:          src/types/pa_vstring.h, src/types/pa_vtable.h,
                   17028:          src/types/pa_vvoid.h, src/types/pa_wcontext.C,
                   17029:          src/types/pa_wcontext.h, src/types/pa_wwrapper.h: ConstStringPtr
                   17030:          died, long live StringPtr
                   17031: 
                   17032: 2003-01-30  paf
                   17033: 
                   17034:        * src/: include/pa_charset.h, include/pa_request.h,
                   17035:          include/pa_sql_driver_manager.h, main/compile.tab.C,
                   17036:          main/compile.y, main/compile_tools.h, main/pa_request.C,
                   17037:          types/pa_vobject.h, types/pa_vstatus.h: grammar compiled
                   17038: 
                   17039:        * src/: classes/classes.h, include/pa_pool.h, main/compile.C,
                   17040:          main/compile.tab.C, types/pa_value.h, types/pa_vfile.h,
                   17041:          types/pa_vhash.h, types/pa_vmethod_frame.h,
                   17042:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   17043:          types/types.dsp: vstateless_class compiled
                   17044: 
                   17045:        * src/main/compile.C: compile compiled
                   17046: 
                   17047:        * src/: include/pa_array.h, include/pa_operation.h,
                   17048:          include/pa_table.h, main/compile_tools.C, main/compile_tools.h,
                   17049:          main/pa_table.C: compile_tools compiled
                   17050: 
                   17051:        * src/: include/pa_operation.h, main/compile.y,
                   17052:          main/compile_tools.C, main/compile_tools.h: started
                   17053:          compile_tools. vagues ideas of how to free compiled code
                   17054: 
                   17055:        * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C,
                   17056:          main/main.dsp, types/pa_value.C, types/pa_value.h,
                   17057:          types/pa_vmethod_frame.h, types/pa_vstateless_class.h: value
                   17058:          compiled
                   17059: 
                   17060: 2003-01-29  paf
                   17061: 
                   17062:        * src/: include/pa_globals.h, include/pa_request.h,
                   17063:          main/pa_globals.C, main/pa_request.C, types/pa_value.h,
                   17064:          types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
                   17065:          types/pa_wcontext.h, types/types.dsp: vmethodframe, pa_request.h
                   17066:          compiled
                   17067: 
                   17068:        * src/lib/ltdl/config_fixed.h: libltdl compiled without warnings
                   17069:          now
                   17070: 
                   17071:        * src/: include/pa_array.h, include/pa_exception.h,
                   17072:          include/pa_pool.h, main/pa_exception.C: gd compiled
                   17073: 
                   17074:        * src/types/: pa_vfile.C, pa_vfile.h, pa_vimage.C, pa_vimage.h: gd
                   17075:          compiled
                   17076: 
                   17077:        * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
                   17078:          types/pa_value.C, types/pa_value.h, types/pa_vfile.C,
                   17079:          types/pa_vfile.h: vfile compiled
                   17080: 
                   17081:        * src/: include/pa_common.h, include/pa_globals.h,
                   17082:          include/pa_string.h, main/pa_globals.C, types/pa_value.C,
                   17083:          types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
                   17084:          types/pa_vform.C, types/pa_vform.h: vcookie compiled
                   17085: 
                   17086:        * src/: include/pa_exception.h, main/pa_cache_managers.C,
                   17087:          main/pa_charsets.C, main/pa_common.C, main/pa_dir.C,
                   17088:          main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
                   17089:          main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
                   17090:          main/pa_uue.C: #include "pa_value_includes.h" everywhere in main
                   17091: 
                   17092:        * src/: include/pa_request_charsets.h, include/pa_request_info.h,
                   17093:          main/main.dsp, main/untaint.C: more compiled
                   17094: 
                   17095:        * src/: include/pa_charsets.h, include/pa_request.h,
                   17096:          include/pa_request_info.h, include/pa_string.h,
                   17097:          main/pa_charsets.C, types/pa_vrequest.C, types/pa_vresponse.C,
                   17098:          types/pa_vresponse.h: vrequest compiled
                   17099: 
                   17100:        * src/types/: pa_value.h, pa_vdate.h, pa_vform.h, pa_vhash.h,
                   17101:          pa_vobject.C, pa_vobject.h, pa_vrequest.C, pa_vresponse.C,
                   17102:          pa_vresponse.h, pa_wcontext.h: vrequest compiled
                   17103: 
                   17104:        * src/: classes/classes.h, include/pa_charset.h,
                   17105:          include/pa_charsets.h, include/pa_globals.h, include/pa_pool.h,
                   17106:          include/pa_request.h, include/pa_string.h, main/main.dsp,
                   17107:          main/pa_charset.C, main/pa_charsets.C, main/pa_globals.C,
                   17108:          main/untaint.C, types/pa_value.h, types/pa_vdouble.h,
                   17109:          types/pa_vfile.h, types/pa_vint.h, types/pa_vmath.C,
                   17110:          types/pa_vrequest.C, types/pa_vrequest.h,
                   17111:          types/pa_vstateless_class.h, types/pa_vstring.h,
                   17112:          types/pa_vvoid.h: vrequest,vdouble,vint compiled
                   17113: 
                   17114:        * src/: classes/classes.h, classes/math.C, include/pa_pool.h,
                   17115:          include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
                   17116:          main/main.dsp, types/pa_value.h, types/pa_vbool.h,
                   17117:          types/pa_vclass.h, types/pa_vdouble.h, types/pa_venv.h,
                   17118:          types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
                   17119:          types/pa_vjunction.h, types/pa_vmath.C, types/pa_vmath.h,
                   17120:          types/pa_vobject.h, types/pa_vstateless_class.h,
                   17121:          types/pa_vstateless_object.h, types/pa_vstatus.h,
                   17122:          types/pa_vstring.h, types/types.dsp: vmath compiled
                   17123: 
                   17124: 2003-01-28  paf
                   17125: 
                   17126:        * src/: classes/classes.h, classes/date.C, classes/file.C,
                   17127:          classes/hash.C, classes/image.C, classes/table.C, classes/xdoc.C,
                   17128:          classes/xnode.h, main/execute.C, main/main.dsp, types/pa_value.h,
                   17129:          types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C,
                   17130:          types/pa_vobject.h, types/pa_vstateless_class.h: started main:
                   17131:          compile_tools
                   17132: 
                   17133:        * src/: include/pa_charset.h, include/pa_exception.h,
                   17134:          include/pa_request.h, include/pa_string.h, main/untaint.C:
                   17135:          untaint compiled
                   17136: 
                   17137:        * ChangeLog, src/include/pa_array.h, src/include/pa_string.h,
                   17138:          src/main/execute.C, src/main/untaint.C, src/types/pa_vmail.C:
                   17139:          more compiled.  struck with string::store_to needing to know
                   17140:          source/client charsets
                   17141: 
                   17142:        * src/: include/pa_exception.h, include/pa_uue.h, main/pa_uue.C,
                   17143:          types/pa_vfile.h: uue compiled
                   17144: 
                   17145:        * src/: include/pa_table.h, main/pa_string.C, main/pa_table.C:
                   17146:          table compiled
                   17147: 
                   17148:        * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
                   17149:          main/pa_globals.C, main/pa_sql_driver_manager.C: globals compiled
                   17150: 
                   17151:        * src/: include/pa_charset.h, main/pa_charset.C,
                   17152:          main/pa_charsets.C: charset/s simplified [charset::pool_for_load
                   17153:          introduced]
                   17154: 
                   17155:        * src/: classes/date.C, include/pa_charset.h,
                   17156:          include/pa_charsets.h, include/pa_globals.h, main/pa_charset.C,
                   17157:          main/pa_charsets.C, main/pa_globals.C, main/pa_request.C:
                   17158:          pa_charsets compiled
                   17159: 
                   17160:        * src/: include/pa_array.h, include/pa_exec.h, include/pa_hash.h,
                   17161:          include/pa_pool.h, main/pa_exec.C: pa_exec win32 compiled
                   17162: 
                   17163:        * src/: include/pa_pool.h, main/pa_common.C, types/pa_vdouble.h:
                   17164:          common compiled
                   17165: 
                   17166:        * src/: include/pa_charsets.h, main/pa_charsets.C,
                   17167:          main/pa_sql_driver_manager.C: pa_charsets compiled
                   17168: 
                   17169:        * src/: include/pa_array.h, include/pa_charset.h,
                   17170:          include/pa_charsets.h, include/pa_pool.h,
                   17171:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   17172:          include/pa_stack.h, include/pa_string.h,
                   17173:          main/pa_sql_driver_manager.C, types/pa_vhash.h, types/pa_vint.h:
                   17174:          sql_driver_manager compiled
                   17175: 
                   17176:        * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: ukranian
                   17177:          letter i with two dots added to koi, all ukranian letters added
                   17178:          to win1251.
                   17179: 
                   17180:          typographic simbol 0xb9 deleted from win1251 [strange one & were
                   17181:          abscent from koi]
                   17182: 
                   17183: 2003-01-27  paf
                   17184: 
                   17185:        * src/: include/pa_exception.h, include/pa_sql_connection.h,
                   17186:          include/pa_sql_driver_manager.h, include/pa_string.h,
                   17187:          main/pa_common.C, main/pa_exec.C, main/pa_sql_driver_manager.C,
                   17188:          sql/pa_sql_driver.h: paused on sql_manager
                   17189: 
                   17190:        * src/: include/pa_cache_managers.h, include/pa_pool.h,
                   17191:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   17192:          include/pa_stack.h, main/pa_sql_driver_manager.C,
                   17193:          types/pa_vtable.h, types/pa_vvoid.h: vtable compiled
                   17194: 
                   17195:        * src/: classes/op.C, include/pa_globals.h, include/pa_hash.h,
                   17196:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   17197:          include/pa_table.h, main/pa_sql_driver_manager.C,
                   17198:          main/pa_table.C: table compiled
                   17199: 
                   17200:        * src/: include/pa_cache_managers.h, main/pa_cache_managers.C:
                   17201:          cache_managers compiled
                   17202: 
                   17203:        * src/: include/pa_array.h, include/pa_charset.h,
                   17204:          include/pa_pool.h, main/pa_charset.C: charset compiled
                   17205: 
                   17206:        * src/: include/pa_pool.h, main/pa_common.C: common compiled
                   17207: 
                   17208:        * src/: include/pa_array.h, include/pa_common.h, include/pa_hash.h,
                   17209:          include/pa_pool.h, include/pa_string.h, main/pa_common.C,
                   17210:          main/pa_string.C, types/pa_value.C, types/pa_value.h,
                   17211:          types/pa_vhash.h, types/pa_vint.h, types/pa_vstateless_class.h,
                   17212:          types/pa_wcontext.C, types/pa_wcontext.h: wcontext compiled
                   17213: 
                   17214: 2003-01-24  paf
                   17215: 
                   17216:        * src/: classes/classes.C, classes/classes.h, include/pa_array.h,
                   17217:          include/pa_common.h, include/pa_globals.h, include/pa_hash.h,
                   17218:          include/pa_pool.h, include/pa_string.h, main/pa_common.C,
                   17219:          main/pa_globals.C, main/pa_string.C, types/pa_value.h,
                   17220:          types/pa_vbool.h, types/pa_vdouble.h, types/pa_vhash.h,
                   17221:          types/pa_vint.h, types/pa_vjunction.h,
                   17222:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   17223:          types/pa_vstatus.h, types/pa_vstring.h: more patched
                   17224: 
                   17225:        * src/: classes/op.C, include/pa_array.h, include/pa_exception.h,
                   17226:          include/pa_hash.h, include/pa_pool.h, include/pa_string.h,
                   17227:          include/pa_table.h, main/pa_dictionary.C, main/pa_exception.C,
                   17228:          main/pa_string.C, main/pa_table.C: string compiled
                   17229: 
                   17230:        * src/: include/pa_array.h, include/pa_common.h,
                   17231:          include/pa_dictionary.h, include/pa_exception.h,
                   17232:          include/pa_pool.h, include/pa_string.h, include/pa_table.h,
                   17233:          main/pa_common.C, main/pa_dictionary.C, main/pa_exception.C,
                   17234:          main/pa_string.C: dictionary compiled
                   17235: 
                   17236: 2003-01-23  paf
                   17237: 
                   17238:        * src/: include/pa_array.h, include/pa_common.h,
                   17239:          include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
                   17240:          include/pa_request.h, include/pa_string.h, main/pa_common.C,
                   17241:          main/pa_exception.C, main/pa_globals.C, types/pa_value.C,
                   17242:          types/pa_value.h: resurrected pool in new sense: now it's
                   17243:          factory, producing&accounting memory chunks for read[autofree]
                   17244:          buffers
                   17245: 
                   17246:        * src/: include/pa_array.h, include/pa_exception.h,
                   17247:          include/pa_hash.h, include/pa_pool.h, include/pa_table.h,
                   17248:          main/pa_exception.C, main/pa_table.C: table compiled
                   17249: 
                   17250:        * src/: classes/image.C, classes/op.C, include/pa_array.h,
                   17251:          include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
                   17252:          include/pa_pool.h, include/pa_pragma_pack_begin.h,
                   17253:          include/pa_pragma_pack_end.h, include/pa_sapi.h,
                   17254:          include/pa_string.h, include/pa_table.h, include/pa_types.h,
                   17255:          main/pa_exception.C, main/pa_globals.C, main/pa_string.C,
                   17256:          main/pa_table.C: aint that easy
                   17257: 
                   17258:        * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
                   17259:          main/main.dsp: continued with Hash
                   17260: 
                   17261:        * src/main/pa_common.C: connect_string allocated on heap[wes on
                   17262:          stack] now. and exception can be reported OK now [can be reported
                   17263:          outside of pro c with that stack]
                   17264: 
                   17265: 2003-01-22  paf
                   17266: 
                   17267:        * src/: include/pa_array.h, include/pa_charset.h,
                   17268:          include/pa_dictionary.h, include/pa_hash.h, include/pa_pool.h,
                   17269:          include/pa_string.h, main/pa_array.C, main/pa_hash.C,
                   17270:          main/pa_pool.C, main/pa_string.C: started auto_ptr.  PA_Object is
                   17271:          base: contains references_count.  auto_ptr template calls
                   17272:          add_ref/release
                   17273: 
                   17274: 2003-01-21  paf
                   17275: 
                   17276:        * src/: classes/classes.C, classes/classes.h, classes/date.C,
                   17277:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   17278:          classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
                   17279:          classes/op.C, classes/response.C, classes/string.C,
                   17280:          classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
                   17281:          classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
                   17282:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   17283:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   17284:          include/pa_dictionary.h, include/pa_dir.h,
                   17285:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   17286:          include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
                   17287:          include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
                   17288:          include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
                   17289:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   17290:          include/pa_stack.h, include/pa_string.h,
                   17291:          include/pa_stylesheet_connection.h,
                   17292:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   17293:          include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
                   17294:          lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
                   17295:          lib/pcre/pcre_parser_ctype.c, main/compile.C,
                   17296:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   17297:          main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
                   17298:          main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
                   17299:          main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
                   17300:          main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
                   17301:          main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
                   17302:          main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
                   17303:          main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
                   17304:          targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
                   17305:          targets/cgi/parser3.C, targets/cgi/pool_storage.h,
                   17306:          targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
                   17307:          targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
                   17308:          types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
                   17309:          types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
                   17310:          types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
                   17311:          types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
                   17312:          types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
                   17313:          types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
                   17314:          types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
                   17315:          types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
                   17316:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
                   17317:          types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
                   17318:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   17319:          types/pa_vstateless_object.h, types/pa_vstatus.C,
                   17320:          types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
                   17321:          types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
                   17322:          types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
                   17323:          types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
                   17324:          types/pa_wwrapper.h, main/compile.tab.C, main/compile.y:
                   17325:          2002->2003
                   17326: 
                   17327: 2003-01-16  paf
                   17328: 
                   17329:        * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
                   17330:          src/main/pa_globals.C: http:// introducing     $.any-status(1)
                   17331: 
                   17332:        * operators.txt, src/include/pa_config_fixed.h,
                   17333:          src/main/pa_common.C: http request now return status. and not
                   17334:          fail on status!=200
                   17335: 
                   17336: 2003-01-15  paf
                   17337: 
                   17338:        * src/main/pa_globals.C: localized pa_xmlFileRead/Close
                   17339: 
                   17340: 2003-01-14  paf
                   17341: 
                   17342:        * src/lib/ltdl/: config.guess, config.sub, install-sh, missing,
                   17343:          mkinstalldirs: removed some ancient files [they in / really]
                   17344: 
                   17345:        * src/lib/ltdl/: config_fixed.h, libltdl.dsp, ltdl.c: ltdl.c
                   17346:          regretfully needed patch in two places.  in config_fixed.h made
                   17347:          stubs for lib to compile in MSVC
                   17348: 
                   17349: 2003-01-13  paf
                   17350: 
                   17351:        * config.guess, config.sub, ltmain.sh: removed last piece of
                   17352:          configure.in(libtool) hacks
                   17353: 
1.116     moko     17354:        * src/lib/ltdl/: COPYING.LIB, acinclude.m4, config.h,
1.95      moko     17355:          config_auto.h.in, configure, configure.in, libltdl.dsp, ltdl.c,
                   17356:          ltdl.h: moved to latest libtool (1.4.3)
                   17357: 
                   17358: 2003-01-10  paf
                   17359: 
                   17360:        * src/lib/ltdl/: configure, configure.in: PROG_NM
                   17361: 
                   17362:        * src/main/pa_globals.C: moved to latest xml lib versions, changed
                   17363:          patches.        libxml2 >= 2.5.1
                   17364:          [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz]        libxslt >= 1.0.23
                   17365:          [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz]        gdome2 >= 0.7.2
                   17366:          [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
                   17367: 
                   17368:        * INSTALL: moved to latest versions of xml libs       libxml2 >=
                   17369:          2.5.1 [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz]       libxslt >=
                   17370:          1.0.23 [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz]       gdome2 >=
                   17371:          0.7.2 [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
                   17372: 
                   17373: 2003-01-09  paf
                   17374: 
                   17375:        * INSTALL: xml,xslt,gdome lib urls updated
                   17376: 
                   17377:        * config.guess, config.sub, missing, mkinstalldirs,
1.116     moko     17378:          src/include/pa_config_auto.h.in, src/lib/ltdl/config_auto.h.in,
1.95      moko     17379:          src/lib/ltdl/configure, src/lib/ltdl/configure.in,
1.116     moko     17380:          src/targets/cgi/Makefile.am: moved to autoconf 2.57 & automake
                   17381:          1.7.2
1.95      moko     17382: 
                   17383:        * depcomp: moving to automake 1.7.2
                   17384: 
                   17385: 2002-12-27  paf
                   17386: 
                   17387:        * src/include/pa_version.h: 0007
                   17388: 
                   17389:        * src/doc/: aliased.dox, index.dox, module.dox, pooled.dox: removed
                   17390:          outdated parts, made links to language docs
                   17391: 
                   17392:        * src/include/pa_config_auto.h.in: comment
                   17393: 
                   17394: 2002-12-26  paf
                   17395: 
                   17396:        * src/classes/file.C: ^file:fullpath[a.gif] when document root did
                   17397:          not contain trailing / fixed.
                   17398: 
                   17399:        * INSTALL: changing SAFE_MODE politics
                   17400: 
                   17401:        * src/include/pa_config_auto.h.in: changing SAFE_MODE politics
                   17402: 
                   17403:        * src/main/: pa_common.C, pa_exec.C: changing SAFE_MODE politics
                   17404: 
                   17405: 2002-12-25  paf
                   17406: 
                   17407:        * src/main/pa_globals.C: optimized-xml
                   17408: 
                   17409:        * src/main/pa_globals.C: optimized-as-is
                   17410: 
                   17411: 2002-12-24  paf
                   17412: 
                   17413:        * src/main/: pa_common.C, pa_pool.C: pool::copy on zero size|ptr
                   17414:          fixed [were really called with zero size when .html?a=&b=]
                   17415: 
                   17416:        * src/classes/mail.C: $MAIL in @conf now invalid when configured
                   17417:          with --with-sendmail
                   17418: 
                   17419:        * src/main/pa_exec.C: fork/pipe error now [old always-pipe-error
                   17420:          fixed]
                   17421: 
                   17422: 2002-12-23  paf
                   17423: 
                   17424:        * src/types/pa_vcookie.C: $cookie:field[put value] fixed [were
                   17425:          ignoring parameters & were storing only string with default
                   17426:          expires
                   17427: 
                   17428:        * src/main/pa_charset.C: From: "Victor Fedoseev" <vvf_ru@mail.ru>
                   17429:          To: "Alexandr Petrosian (PAF)" <PAF@design.ru> Sent: Monday,
                   17430:          December 23, 2002 4:22 AM Subject: bug â
                   17431:          Charset::transcode_buf2xchar
                   17432: 
                   17433: 2002-12-20  paf
                   17434: 
                   17435:        * src/targets/cgi/parser3.C: removed last \n appending in non-win32
                   17436:          non-cgi [script] runs
                   17437: 
                   17438: 2002-12-19  paf
                   17439: 
                   17440:        * INSTALL: --without-iconv recommended [it crashes on some systems
                   17441:          [tested on elik]] moreover, it's not needed there [parser
                   17442:          registers charsets itself]
                   17443: 
                   17444:        * INSTALL: --without-iconv recommended [it crashes on some systems
                   17445:          [tested on elik]]
                   17446: 
                   17447:        * operators.txt, src/include/pa_globals.h,
                   17448:          src/include/pa_request.h, src/main/pa_globals.C,
                   17449:          src/main/pa_request.C: $response:download
                   17450: 
                   17451:        * src/classes/mail.C: 'to' check bugfix [now checked only on ms
                   17452:          compiler [win32]].
                   17453: 
                   17454: 2002-12-18  paf
                   17455: 
                   17456:        * src/classes/xdoc.C: doc->URL on xdoc.load set correctly now
                   17457: 
                   17458: 2002-12-17  paf
                   17459: 
                   17460:        * src/targets/cgi/parser3.C: merged die&iis changes
                   17461: 
                   17462:        * src/targets/cgi/parser3.C: 1. on win32 in die: abort() reverted
                   17463:          to exit(1) 2. more flexible iilegal call check
                   17464: 
                   17465: 2002-12-16  paf
                   17466: 
                   17467:        * ltmain.sh: some automakes silly insist on having this handy
                   17468: 
                   17469:        * src/main/untaint.C: filespec russian small 'r' changed to latin
                   17470:          'p' bug fix
                   17471: 
                   17472: 2002-12-15  paf
                   17473: 
                   17474:        * src/main/untaint.C: filespec russian small 'r' changed to latin
                   17475:          'p'
                   17476: 
                   17477:        * configure.in, src/include/pa_config_auto.h.in,
                   17478:          src/main/compile.C, src/main/pa_common.C: merged small changes
                   17479:          from branch 6 to HEAD
                   17480: 
                   17481:        * src/main/compile.C: removed warning
                   17482: 
                   17483:        * src/main/pa_common.C: ftruncate having checked
                   17484: 
                   17485:        * configure.in, src/include/pa_version.h: new version
                   17486: 
                   17487: 2002-12-14  paf
                   17488: 
                   17489:        * src/classes/table.C: removed unnecessary code
                   17490: 
                   17491:        * src/sql/pa_sql_driver.h: exception type fixed
                   17492: 
                   17493: 2002-12-09  paf
                   17494: 
                   17495:        * src/types/pa_vvoid.h: $void.store[now] error
                   17496: 
                   17497:        * src/targets/cgi/parser3.C: ::die now tries to write core dump
                   17498: 
                   17499:        * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: ::die now
                   17500:          tries to write core dump
                   17501: 
                   17502:        * src/targets/cgi/parser3.C: ::die now tries to write core dump
                   17503: 
                   17504:        * src/: classes/hash.C, classes/string.C, classes/table.C,
                   17505:          classes/void.C, main/pa_sql_driver_manager.C,
                   17506:          sql/pa_sql_driver.h: changed exception handling mech in sql
                   17507:          handlers #2
                   17508: 
                   17509:        * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: changed
                   17510:          exception handling mech in sql handlers
                   17511: 
                   17512:        * src/sql/pa_sql_driver.h: changed exception handling mech in sql
                   17513:          handlers
                   17514: 
                   17515:        * src/: classes/hash.C, classes/string.C, classes/table.C,
                   17516:          classes/void.C, main/pa_sql_driver_manager.C,
                   17517:          sql/pa_sql_driver.h: changed exception handling mech in sql
                   17518:          handlers
                   17519: 
1.116     moko     17520:        * configure.in: removed configure.in:AC_LIBTOOL, it caused automake
                   17521:          to write makefile which used libtool to install things, which is
                   17522:          not needed
1.95      moko     17523: 
                   17524: 2002-12-06  paf
                   17525: 
                   17526:        * operators.txt, src/main/compile.tab.C, src/types/pa_vhash.h:
                   17527:          $hash.fields -- pseudo field to make 'hash' more like 'table'
                   17528: 
                   17529: 2002-12-05  paf
                   17530: 
                   17531:        * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp
                   17532:          cc/bcc OK now
                   17533: 
                   17534:        * src/main/untaint.C: mail header closed properly
                   17535: 
                   17536:        * src/: main/pa_common.C, main/untaint.C, types/pa_vmail.C: mail
                   17537:          header ',' allowed.  still bugs in smtp [only one receiptient
                   17538:          works, cc, bcc ignored now, and MAILED ;)]
                   17539: 
                   17540:          [strncpy killed, memnchr used]
                   17541: 
                   17542:        * src/main/pa_table.C: table-copy now current=0
                   17543: 
                   17544:        * src/main/: pa_array.C, pa_table.C: wow! found/fixed bug in
                   17545:          lowlevel proc
                   17546: 
                   17547:        * src/targets/cgi/parser3.C: more checks on
                   17548:          http://domain/parser.cgi start [maybe some getenv returns "",
                   17549:          checked that now
                   17550: 
                   17551:        * src/targets/cgi/parser3.C: more checks on
                   17552:          http://domain/parser.cgi start [maybe some getenv returns "",
                   17553:          checked that now
                   17554: 
                   17555:        * src/targets/cgi/parser3.C: error logging made unbuffered [so that
                   17556:          out-of-mem errors reached log]
                   17557: 
                   17558:        * src/: classes/mail.C, targets/cgi/parser3.C, types/pa_vmail.C:
                   17559:          mail:send MIME-Version default
                   17560: 
                   17561:        * src/main/main.dsp: pa_version included into main.dsp
                   17562: 
                   17563: 2002-12-04  paf
                   17564: 
                   17565:        * src/types/pa_vform.C: $form:field string value cut by premature 0
                   17566: 
                   17567:        * parser3.dsw, src/main/compile.tab.C, src/main/main.dsp:
                   17568:          lib/libltdl -> lib/ltdl Win32 changes. s
                   17569: 
                   17570:        * src/classes/classes.awk: more strict *.C$
                   17571: 
                   17572:        * gnu.dsp: restored
                   17573: 
1.116     moko     17574:        * configure.in, gnu.dsp, src/lib/Makefile.am,
                   17575:          src/lib/ltdl/Makefile.am, src/lib/ltdl/README,
                   17576:          src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
                   17577:          src/lib/ltdl/config.h, src/lib/ltdl/config.sub,
                   17578:          src/lib/ltdl/config_auto.h.in, src/lib/ltdl/config_fixed.h,
                   17579:          src/lib/ltdl/configure, src/lib/ltdl/configure.in,
                   17580:          src/lib/ltdl/install-sh, src/lib/ltdl/libltdl.dsp,
                   17581:          src/lib/ltdl/ltdl.c, src/lib/ltdl/ltdl.h: src/lib/ltdl/Makefile
                   17582:          now created with /configure, not ltdl/configure, so it does have
                   17583:          no problems with automake.  ltdl/configure
                   17584:          AC_OUTPUT(Makefile<<removed)
1.95      moko     17585: 
                   17586: 2002-12-02  paf
                   17587: 
                   17588:        * operators.txt: removed outdated status:db
                   17589: 
                   17590:        * ChangeLog, src/classes/mail.C, src/include/pa_common.h,
                   17591:          src/main/pa_common.C, src/main/pa_request.C,
                   17592:          src/types/pa_vcookie.C, src/types/pa_vmail.C: http header lang of
                   17593:          tainted parts becomes http-header
                   17594: 
                   17595: 2002-11-29  paf
                   17596: 
                   17597:        * src/classes/date.C, src/classes/image.C, operators.txt: exif
                   17598:          dates now objects of type date
                   17599: 
                   17600:        * src/classes/image.C: file.seek removed [it were used in image.C
                   17601:          only, and for parser user this  means that jpeg image has bad
                   17602:          size in fragment's header] now used image.format
                   17603: 
                   17604:        * src/: include/pa_common.h, main/pa_common.C,
                   17605:          types/pa_vresponse.C, types/pa_vresponse.h: http:// param values
                   17606:          now handled exactly like $response:header values.  e.g. can be
                   17607:          hash [can have subattributes] & contain date values.
                   17608: 
                   17609:        * src/main/pa_common.C: http:// param values lang forced URI
                   17610: 
                   17611:        * src/main/pa_common.C: http:// tainted partes now %xx
                   17612: 
                   17613: 2002-11-28  paf
                   17614: 
                   17615:        * operators.txt: http.timeout
                   17616: 
                   17617:        * src/classes/image.C: ^image.length now counts interchar space.
                   17618:          plus space after last char
                   17619: 
                   17620:        * src/main/pa_string.C: PCRE_DOLLAR_ENDONLY
                   17621: 
                   17622:        * src/classes/image.C: ^image.font width measurer now scans full
                   17623:          height [were -1]
                   17624: 
                   17625:        * configure.in: stopped double libltdl/Makefile generation
                   17626: 
                   17627:        * src/classes/image.C: ^image.text now outputs one pixel HIGHER
                   17628:          chars [one top horizontal line of 1pixel height were missing]
                   17629: 
                   17630:        * src/classes/op.C: ^cache bug fixed.  stupid compiler allowed
                   17631:          'false' to go into (Hash *) parameter
                   17632: 
                   17633: 2002-11-27  paf
                   17634: 
                   17635:        * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
                   17636:          types/pa_vmail.C: response:body[file]  if file nows it's name now
                   17637:          returns content-disposition: >>attachment<<
                   17638: 
                   17639:        * src/classes/image.C: ^image.font << bad font file-size now
                   17640:          properly reported
                   17641: 
                   17642: 2002-11-26  paf
                   17643: 
                   17644:        * src/main/pa_request.C: fixed lang in reponse header
                   17645: 
                   17646:        * src/main/pa_common.C: utf8 prefix ignored @read text
                   17647: 
                   17648:        * operators.txt, src/main/pa_common.C: http:// response status!=200
                   17649:          made exception: http.status with source=bad status#
                   17650: 
                   17651: 2002-11-25  paf
                   17652: 
                   17653:        * configure.in, src/classes/image.C,
                   17654:          src/include/pa_config_auto.h.in,
                   17655:          src/include/pa_config_includes.h, src/main/Makefile.am,
1.116     moko     17656:          src/main/pa_common.C, src/main/pa_globals.C: http:// and image
                   17657:          const void related probs fixed
1.95      moko     17658: 
                   17659:        * operators.txt, src/main/pa_common.C: http fields now UPPERCASE
                   17660: 
                   17661:          $file[^file::load[http://there]] $file.SERVER
                   17662: 
                   17663:        * src/: classes/file.C, classes/image.C, classes/xdoc.C,
                   17664:          include/pa_common.h, main/pa_common.C, main/pa_request.C: checked
                   17665:          http options [invalid onces now reported] made default
                   17666:          user-agent: paf
                   17667: 
                   17668:        * operators.txt, src/classes/file.C, src/classes/table.C,
                   17669:          src/classes/xdoc.C, src/include/pa_common.h,
                   17670:          src/include/pa_globals.h, src/main/pa_common.C,
                   17671:          src/main/pa_globals.C, src/main/pa_request.C,
                   17672:          src/types/pa_vfile.C, src/types/pa_vfile.h: table/xdoc/file::load
                   17673:          now understand http:// prefix and additional params, sample:
                   17674:          $rates[^xdoc::load[http://www.cbr.ru/scripts/XML_daily.asp?date_req=02/03/2002;
                   17675:          $.USER-AGENT[parser3] ]]
                   17676: 
                   17677: 2002-11-22  paf
                   17678: 
                   17679:        * src/classes/image.C, src/include/pa_globals.h,
                   17680:          src/main/execute.C, src/main/pa_globals.C, src/types/pa_vimage.C,
                   17681:          src/types/pa_vimage.h, operators.txt: $image.exif support
                   17682:          $image.exif.DateTime & co
                   17683: 
                   17684: 2002-11-21  paf
                   17685: 
                   17686:        * src/main/: pa_exec.C, untaint.C: cstr(UL_UNSPECIFIED) [not
                   17687:          _PASS_APPENDED)
                   17688: 
                   17689:        * src/classes/image.C: jpeg size measure fixed: were badly skipping
                   17690:          EXIF information [were big block and it's size were considered
                   17691:          negative :(]
                   17692: 
                   17693:        * operators.txt, src/classes/image.C, src/include/pa_common.h,
                   17694:          src/main/pa_common.C, src/types/pa_vmail.C: image.measure
                   17695:          internals rewritten. no there's reader.seek, and all's ready for
                   17696:          EXIF extraction [now we fail to measure files with EXIF info]
                   17697: 
                   17698:        * src/main/pa_common.C: O_TRUNCATE killed, ftruncate  used instead:
                   17699:          O_TRUNC truncates even exclusevely write-locked file [thanks to
                   17700:          Igor Milyakov <virtan@rotabanner.com> for discovering]
                   17701: 
                   17702: 2002-11-20  paf
                   17703: 
                   17704:        * src/targets/cgi/parser3.C: logging @signal += query_string
                   17705: 
                   17706:        * configure.in, src/include/pa_config_auto.h.in,
                   17707:          src/include/pa_config_includes.h, src/targets/cgi/parser3.C:
                   17708:          comment
                   17709: 
                   17710:        * src/targets/cgi/parser3.C: SIGNALS overriden @ main top
                   17711: 
                   17712:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
                   17713:          targets/cgi/parser3.C: SIGUSR1 >> writes to error_log uri of
                   17714:          currently processed document SIGPIPE >> interrupts request
                   17715:          processing [exception = DB rollback]
                   17716: 
                   17717:        * src/main/pa_exec.C: comment
                   17718: 
                   17719:        * src/main/pa_exec.C: pa_exec: data written only if size>0
                   17720: 
                   17721:        * operators.txt, src/classes/file.C: ^file::exec/cgi[file;$.stdin[]
                   17722:          << disable HTTP-POST repassing
                   17723: 
                   17724:        * src/: include/pa_config_fixed.h, main/pa_common.C,
                   17725:          main/pa_exec.C, targets/cgi/parser3.C: ^file:exec/cgi [pa_exec]
                   17726:          pipe read errors now checked
                   17727: 
                   17728: 2002-11-19  paf
                   17729: 
                   17730:        * src/targets/cgi/parser3.C: removed #ifdef WIN32 around check of
                   17731:          CGI: Illegal call
                   17732: 
                   17733: 2002-11-01  paf
                   17734: 
                   17735:        * src/main/execute.C: comment
                   17736: 
                   17737: 2002-10-31  paf
                   17738: 
                   17739:        * src/main/execute.C: found out why, checked that for now.  todo:
                   17740:          find out a way for that user could do that
                   17741: 
                   17742:        * src/types/pa_vstateless_object.h: object put replaces static
                   17743:          parent if any
                   17744: 
                   17745:        * src/types/pa_vobject.C: object put replaces static parent if any
                   17746: 
                   17747:        * src/: classes/form.C, classes/mail.C, classes/op.C,
                   17748:          classes/xnode.h, main/compile.tab.C, main/execute.C,
                   17749:          main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
                   17750:          types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
                   17751:          types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
                   17752:          types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
                   17753:          types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
                   17754:          types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
                   17755:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
                   17756:          types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
                   17757:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   17758:          types/pa_vstateless_object.h, types/pa_vstatus.C,
                   17759:          types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
                   17760:          types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
                   17761:          types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
                   17762:          types/pa_wwrapper.h: static fix merged
                   17763: 
                   17764:        * src/: main/compile.tab.C, types/pa_vobject.C: killed
                   17765:          $virtual_fields in dynamic, but one can reach derived
                   17766:          static[class] variable from base
                   17767: 
                   17768:        * src/: classes/op.C, types/pa_value.h, types/pa_vmethod_frame.h,
                   17769:          types/pa_vobject.C, types/pa_vobject.h,
                   17770:          types/pa_vstateless_class.C, types/pa_vstateless_class.h: fixed
                   17771:          statics, left $virtual_fields in dynamic
                   17772: 
                   17773:        * src/types/: pa_vobject.C, pa_vstateless_class.C: realized that
                   17774:          one can't remember derivates in base class: there's so many of
                   17775:          them.  also there can be no virtual method calls in static
                   17776:          classes
                   17777: 
                   17778:        * src/: classes/form.C, classes/mail.C, classes/op.C,
                   17779:          classes/xnode.h, main/execute.C, main/pa_request.C,
                   17780:          types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
                   17781:          types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
                   17782:          types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
                   17783:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
                   17784:          types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
                   17785:          types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
                   17786:          types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
                   17787:          types/pa_vresponse.C, types/pa_vresponse.h,
                   17788:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   17789:          types/pa_vstateless_object.h, types/pa_vstatus.C,
                   17790:          types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
                   17791:          types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
                   17792:          types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
                   17793:          types/pa_wwrapper.h: static call $self fixed
                   17794: 
                   17795:        * src/main/execute.C: comment
                   17796: 
                   17797:        * src/: classes/op.C, types/pa_value.h, types/pa_vobject.h:
                   17798:          ^process[$caller.self]{...} now compiles to last derived object
                   17799:          part of that 'self'
                   17800: 
                   17801: 2002-10-29  paf
                   17802: 
                   17803:        * src/targets/isapi/parser3isapi.C: comment on 404 bad status
                   17804:          re-passing [iis to blame]
                   17805: 
                   17806:        * src/classes/string.C: changed string.save to pass current sql
                   17807:          connection to cstr thus one can ^connect[some server]{
                   17808:          $s[insert into table x (x) values (^taint[sql]{value})]
                   17809:          ^s.save[some.sql] } and he'd get in some.sql file code with
                   17810:          properly escaped.  [tried in mssql->mysql export->import of
                   17811:          binary data]
                   17812: 
                   17813: 2002-10-25  paf
                   17814: 
                   17815:        * src/types/pa_vresponse.C: case insensitive response user fields
                   17816:          get/put
                   17817: 
                   17818:        * src/: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
                   17819:          types/pa_vresponse.C: saving for maybe-future
                   17820: 
                   17821: 2002-10-23  paf
                   17822: 
                   17823:        * operators.txt, src/classes/table.C: ^table.hash{code}...
                   17824:          ^table.hash(expr)...
                   17825: 
                   17826:        * src/types/pa_vmail.C: email whitespace trimBoth-ed
                   17827: 
                   17828: 2002-10-22  paf
                   17829: 
                   17830:        * src/types/: pa_vform.C, pa_vform.h: removed needless
                   17831:          VForm::Append...(...Value)
                   17832: 
                   17833:        * src/main/execute.C: $.name outside of $name[...] checked
                   17834: 
                   17835:        * src/main/: compile.tab.C, compile.y: lexer changed to fix
                   17836:          ^call[]^#HH bug [that situation yelded no EON, which whas wrong]
                   17837: 
                   17838: 2002-10-21  paf
                   17839: 
                   17840:        * operators.txt, src/types/pa_vform.C, src/types/pa_vform.h:
                   17841:          $form:qtail $form:imap.x/y
                   17842: 
                   17843:        * operators.txt, src/types/pa_vform.C: $form:nameless =
                   17844:          "?value&...", "...&value&...", "...&value"
                   17845: 
                   17846:        * operators.txt, src/types/pa_vform.C: $form:image-map
                   17847: 
                   17848:        * operators.txt, src/classes/file.C: /some/page.html:
                   17849:          ^file:fullpath[a.gif] => /some/a.gif
                   17850: 
                   17851: 2002-10-17  paf
                   17852: 
                   17853:        * src/main/: compile.tab.C, compile.y: operators precedence changed
                   17854:          a little: logical not and bitwise negation precedence made
                   17855:          highest, << and >> bitshits precedence made equal [were << higher
                   17856:          than >>]
                   17857: 
                   17858:        * src/classes/op.C: exception handling fixed [were bad with
                   17859:          contexts]
                   17860: 
                   17861: 2002-10-16  paf
                   17862: 
                   17863:        * src/: classes/op.C, include/pa_request.h, main/execute.C,
                   17864:          main/pa_request.C: Request::self considered equal to
                   17865:          VMethodFrame::self, and removed, Request::get_self() mapped to
                   17866:          VMethodFrame.self()
                   17867: 
                   17868:        * src/: classes/op.C, main/pa_request.C: VMainClass now has name =
                   17869:          $hash in open field now gives old good error meesage
                   17870: 
                   17871: 2002-10-15  paf
                   17872: 
                   17873:        * src/types/pa_vjunction.h: ^if(def $junction){was true}{now false}
                   17874:          use ^if($junction is junction){was and now true}
                   17875: 
                   17876:        * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
                   17877:          include/pa_pool.h, main/pa_charset.C, main/pa_pool.C,
                   17878:          types/pa_vxnode.C: xml->parser strings now have origin, which
                   17879:          points to place where value left xml library and came to parser:
                   17880:          place of dom field extraction/call
                   17881: 
                   17882:        * src/: classes/op.C, include/pa_opcode.h, include/pa_request.h,
                   17883:          main/compile.tab.C, main/compile.y, main/execute.C,
                   17884:          types/pa_vmethod_frame.h: removed last pieces of old code
                   17885:          allowing $junction.xxx at compile time
                   17886: 
                   17887:        * ChangeLog, src/classes/op.C, src/main/compile.tab.C,
                   17888:          src/main/compile.y, src/types/pa_vmethod_frame.h: process[self]
                   17889:          objects also considered [were only classes]
                   17890: 
                   17891:        * ChangeLog, src/classes/op.C, src/include/pa_request.h,
                   17892:          src/types/pa_vmethod_frame.h: ^process[CLASS]{body} now executed
                   17893:          with CLASS self.  [   (request&method_frame).self temporarily
                   17894:          changed   ]
                   17895: 
                   17896:        * src/classes/: hash.C, op.C: method_frame now always changed, with
                   17897:          no exception to native calls.  for&foreach changed to use
                   17898:          method_frame.caller for their var's name context
                   17899: 
                   17900:        * src/: main/execute.C, targets/cgi/parser3.C,
                   17901:          types/pa_vstateless_class.C, types/pa_vstateless_class.h:
                   17902:          compiling to system classes disabled
                   17903: 
                   17904:        * operators.txt, src/classes/op.C:
                   17905:          ^process[$caller.CLASS]{code-string} added
                   17906: 
                   17907:        * operators.txt, src/classes/op.C, src/main/compile.tab.C,
                   17908:          src/main/compile.y, src/main/execute.C, src/main/pa_request.C,
                   17909:          src/types/Makefile.am, src/types/pa_vjunction.C,
                   17910:          src/types/pa_vjunction.h, src/types/pa_vmethod_frame.h,
                   17911:          src/types/types.dsp: removed $junction.get $junction.set[]
                   17912:          introducing $caller
                   17913: 
                   17914:        * src/types/pa_value.h: removed outdated comments. doxygen would
                   17915:          find them lower by inheritance tree
                   17916: 
                   17917:        * src/types/pa_vjunction.C: ident
                   17918: 
                   17919: 2002-10-14  paf
                   17920: 
                   17921:        * src/classes/op.C: process compiles to code's class class
                   17922: 
                   17923:        * src/: classes/form.C, classes/mail.C, classes/op.C,
                   17924:          include/pa_request.h, main/compile.C, main/compile.tab.C,
                   17925:          main/compile.y, main/execute.C, main/pa_request.C,
                   17926:          types/pa_vstateless_class.h: operators now main-class-methods
                   17927: 
                   17928:        * src/: classes/op.C, include/pa_request.h: ^try{^call{}} now has
                   17929:          better stack trace [has "call" & co there]
                   17930: 
                   17931:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
                   17932:          operators @auto now executed in MAIN context
                   17933: 
                   17934:        * src/main/execute.C: operator execution context now = MAIN, not
                   17935:          closest stack frame
                   17936: 
                   17937:          @touchit[] $i[after]
                   17938: 
                   17939:          ----t.html $i[before] << local ^touchit[] $i << now 'before',
                   17940:          were 'after'
                   17941: 
                   17942:          ---t.html $i[before] << notlocal [main] ^touchit[] $i << now
                   17943:          'after'
                   17944: 
                   17945:        * src/main/execute.C: comment
                   17946: 
                   17947:        * src/types/: pa_vclass.C, pa_vobject.h, pa_vstateless_class.C,
                   17948:          pa_vstateless_class.h: $form:CLASS resurrected [wes killed in
                   17949:          action]
                   17950: 
                   17951:        * src/types/pa_vxnode.C: misreplace fixed
                   17952: 
                   17953:        * configure, configure.in, src/include/pa_config_auto.h.in,
                   17954:          src/types/pa_vstatus.C, operators.txt:
                   17955:          $status:rusage.tv_secs/usecs introduced
                   17956: 
                   17957: 2002-10-09  paf
                   17958: 
                   17959:        * src/classes/: double.C, int.C, string.C: ^string.int[] now failes
                   17960:          on empty string [or uses (default)]
                   17961: 
                   17962: 2002-10-08  paf
                   17963: 
                   17964:        * src/main/untaint.C: mail header quoted printable changed after
                   17965:          RFC reread
                   17966: 
                   17967:        * operators.txt: plan on ^if(method
                   17968: 
                   17969:        * src/types/pa_vxnode.C: misreplace
                   17970: 
                   17971: 2002-09-24  paf
                   17972: 
1.116     moko     17973:        * src/targets/cgi/Makefile.am: LIBS were bad name in .am
1.95      moko     17974: 
                   17975:        * src/types/pa_vmail.C: HAVE_TIMEZONE & co now checked and
                   17976:          mailreceive would compile on freebsd now
                   17977: 
                   17978:        * src/include/pa_config_fixed.h, src/types/pa_vmail.C, acconfig.h,
                   17979:          configure, configure.in, src/include/pa_config_auto.h.in,
1.116     moko     17980:          src/targets/cgi/Makefile.am: HAVE_TIMEZONE & co now checked and
                   17981:          mailreceive would compile on freebsd now
1.95      moko     17982: 
                   17983:        * src/: classes/file.C, main/untaint.C: 1.  file spec language
                   17984:          changed: now there are only few chars are untainted: * ? ' " < >
                   17985:          | and, on unix, : \ ~ [russian letters and SPACES now enabled,
                   17986:          one should use ^untaint[uri]{...} now]
                   17987: 
                   17988:          2.  $list[^file:list[dir]] now returns simply tainted names in
                   17989:          $list.name, not tainted as filespec
                   17990: 
                   17991:          @russianindex[] #dir with files with russian-lang names
                   17992:          $where[dir]
                   17993: 
                   17994:          $dir[^file:list[$where;\.txt^$]] ^dir.menu{     <a
                   17995:          href=$where/^untaint[uri]{$dir.name}>$dir.name</a><br> }
                   17996: 
                   17997: 2002-09-23  paf
                   17998: 
                   17999:        * src/types/pa_vdouble.h: double->int round added
                   18000: 
                   18001:        * src/classes/date.C: date bug fix, now
                   18002:          round(floatDays*secondsPerDay)
                   18003: 
                   18004:        * src/classes/date.C: date bug fix, now
                   18005:          round(floatDays*secondsPerDay)
                   18006: 
                   18007: 2002-09-20  paf
                   18008: 
                   18009:        * src/main/execute.C: code junction calls disabled [before: code
                   18010:          was compiled in such a way, that there were no code-junctions in
                   18011:          OP_CALL]
                   18012: 
                   18013:          this now error: @badjunctioncall[] ^badjunctioncallinside{code}
                   18014: 
                   18015:          @badjunctioncallinside[code] ^code[]
                   18016: 
                   18017:        * src/main/: compile.tab.C, compile.y: changed grammer on junction
                   18018:          expanding to include ^junction.method
                   18019: 
                   18020:        * src/main/pa_common.C: -d "DIR/" now true
                   18021: 
                   18022:        * src/classes/xdoc.C: xdoc::create[name] now sets $request:charset
                   18023:          as internal xdoc encoding, and after decoding attributes set by
                   18024:          dom functions now encoded OK, not as digital entities
                   18025: 
                   18026:        * src/classes/xdoc.C: empty transform result, being taken as file
                   18027:          now returns empty file, not raises stupid error about "stat-ed
                   18028:          file"
                   18029: 
                   18030:        * src/types/pa_vhash.h: hash.foreach modification of existing keys
                   18031:          allowed
                   18032: 
                   18033:        * src/types/types.dsp: introducing $junction.get/put(1) one can
                   18034:          write iterators now:
                   18035: 
                   18036:          ^user-foreach[key;value]{$key=$value<br>}
                   18037: 
                   18038:          @user-foreach[key;value;code] ^for[i](1;10){    $code.key($i)
                   18039:          $code.value($i*2)       $code }
                   18040: 
                   18041:        * src/main/compile_tools.h: mistype
                   18042: 
1.116     moko     18043:        * src/targets/cgi/Makefile.am: binaries now depend on makefiles,
                   18044:          thus taking linking options configure changes into account [were:
                   18045:          ignoring]
1.95      moko     18046: 
                   18047:        * src/types/: pa_vjunction.C, Makefile.am: introducing
                   18048:          $junction.get/put(1) one can write iterators now:
                   18049: 
                   18050:          ^user-foreach[key;value]{$key=$value<br>}
                   18051: 
                   18052:          @user-foreach[key;value;code] ^for[i](1;10){    $code.key($i)
                   18053:          $code.value($i*2)       $code }
                   18054: 
                   18055:        * src/: include/pa_opcode.h, include/pa_request.h,
                   18056:          main/compile.tab.C, main/compile.y, main/execute.C,
                   18057:          main/main.dsp, targets/cgi/parser3.dsp, types/pa_vjunction.h:
                   18058:          introducing $junction.get/put(1) one can write iterators now:
                   18059: 
                   18060:          ^user-foreach[key;value]{$key=$value<br>}
                   18061: 
                   18062:          @user-foreach[key;value;code] ^for[i](1;10){    $code.key($i)
                   18063:          $code.value($i*2)       $code }
                   18064: 
                   18065: 2002-09-19  paf
                   18066: 
1.116     moko     18067:        * Makefile.am: new: make commit
1.95      moko     18068: 
                   18069:        * aclocal.m4: forced to be older
                   18070: 
                   18071: 2002-09-18  paf
                   18072: 
                   18073:        * parser3.dsw, src/include/pa_opcode.h, src/main/compile.tab.C,
                   18074:          src/main/compile.y, src/main/execute.C: << >> int shifts
                   18075: 
                   18076:        * src/: include/pa_common.h, include/pa_request.h,
                   18077:          main/pa_common.C, main/pa_request.C: auto.p exists but unreadable
                   18078:          - now this - fatal error
                   18079: 
                   18080:        * src/classes/file.C: ^file::exec/cgi $.stdin[can be file now] so
                   18081:          that one can pass binary data there
                   18082: 
                   18083:        * src/: classes/date.C, classes/double.C, classes/file.C,
                   18084:          classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
                   18085:          classes/op.C, classes/response.C, classes/string.C,
                   18086:          classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
                   18087:          include/pa_request.h: pa_request contexts made privated, plus
                   18088:          get_{self/method_frame} to read.  Request_context_saver used in
                   18089:          ^try to save flang too.  [were not saved]
                   18090: 
                   18091:        * src/types/pa_vresponse.C: header value chains joined before
                   18092:          output, this should help $.subject[$var $var] from being
                   18093:          converted to subject: ?koi8-r?Q?...?= ?koi8-r?Q?...?=
                   18094: 
                   18095: 2002-09-17  paf
                   18096: 
                   18097:        * src/: main/execute.C, types/pa_value.h, types/pa_vmethod_frame.h:
                   18098:          removed changes, operators executed with calling self.  lots of
                   18099:          code with ^include code relies on defined/defining self variables
                   18100: 
                   18101:          $a[1] ^include[print_a.p] print_a.p: $a
                   18102: 
                   18103:          ^include[set_a.p] a=$a set_a.p: $a[1]
                   18104: 
                   18105:        * src/: classes/op.C, main/execute.C, main/pa_request.C,
                   18106:          types/pa_value.C, types/pa_value.h, types/pa_vmethod_frame.h,
                   18107:          types/pa_vstateless_class.h: operators now executed with MAIN
                   18108:          self.  it's for ^include sake, too strong a change
                   18109: 
                   18110:        * src/classes/op.C: made place for ^process to compile it's code to
                   18111:          in case of no self
                   18112: 
                   18113:        * src/main/execute.C: found ancient param to Junction, removed.
                   18114:          allowed passing self to native_code_operators [for ^process to
                   18115:          work, she needs self]
                   18116: 
                   18117:        * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
                   18118:          types/pa_vstateless_class.h: found ancient param to Junction,
                   18119:          removed.  allowed passing self to native_code_operators [for
                   18120:          ^process to work, she needs self]
                   18121: 
                   18122:        * src/: main/execute.C, main/pa_request.C, types/pa_value.C,
                   18123:          types/pa_value.h, types/pa_vmethod_frame.h,
                   18124:          types/pa_vstateless_class.h: allowed Request.self to be 0,
                   18125:          checked that in VMethodFrame get/put and $self.
                   18126: 
                   18127:        * src/classes/: table.C, xdoc.C: table::sql  options table::create
                   18128:          copy options options checked, wrong option now fatal error
                   18129: 
                   18130:        * src/main/pa_string.C: string.replace fixed [were missing words on
                   18131:          pieces boundaries]
                   18132: 
1.150     moko     18133:        * configure, configure.in: .so now detected [can be .sl on hpux,
                   18134:          .dll on cygwin, .so in other cases)
1.95      moko     18135: 
                   18136:        * configure, configure.in: .so now detected [can be .sl on hpux,
                   18137:          .dll on cygwin, .so in other cases)
                   18138: 
                   18139:        * operators.txt, src/classes/hash.C, src/classes/table.C,
                   18140:          src/include/pa_globals.h, src/main/pa_globals.C: table.sql
                   18141:          hash::sql flag to allow duplicate keys [$.distinct(1/0)] first
                   18142:          record taken [were last]
                   18143: 
                   18144:        * src/: classes/hash.C, classes/table.C,
                   18145:          include/pa_sql_connection.h: table.sql hash::sql duplicate keys
                   18146:          now errors
                   18147: 
                   18148:        * src/classes/hash.C: foreach delims bug fixed [were ,2,3]
                   18149: 
                   18150:        * src/classes/: op.C, table.C: menu/for delims bug fixed [were
                   18151:          ,2,3]
                   18152: 
                   18153: 2002-09-16  paf
                   18154: 
                   18155:        * src/classes/file.C: file::cgi line ends can be both unix & dos.
                   18156:          and they can be unix [\n\n] on win when 'use CGI' used, it causes
                   18157:          stdout to be binary.  now detected closest header break.
                   18158: 
                   18159:        * src/: main/untaint.C, types/pa_vmail.C: mail:send closing ?=  now
                   18160:          closed right
                   18161: 
                   18162: 2002-09-13  paf
                   18163: 
                   18164:        * operators.txt, src/main/compile.tab.C, src/main/compile.y,
                   18165:          src/main/compile_tools.h: (expression #comment)
                   18166: 
                   18167:          (multiline expression #comment  line2  #comment )
                   18168: 
                   18169:          (expression #comment with (brackets) comment) << OK
                   18170: 
                   18171:        * operators.txt, src/main/compile.tab.C, src/main/compile.y: !|
                   18172:          bitwise !|| numerical xor now [preparing for expression
                   18173:          #comments]
                   18174: 
                   18175:        * src/main/: compile.tab.C, compile.y: @method[$name] now parse
                   18176:          error
                   18177: 
                   18178:        * src/: include/pa_config_fixed.h, main/pa_socks.C: HAVE_WINSOCK_H
                   18179:          cheched in pa_socks.C
                   18180: 
1.116     moko     18181:        * configure, configure.in, src/include/pa_config_auto.h.in:
                   18182:          HAVE_WINSOCK_H created in configure.in
1.95      moko     18183: 
                   18184:        * src/: main/compile.tab.C, main/compile.y, types/pa_vresponse.C:
                   18185:          cookie date now clean [were mistakenly tainted & that worked bad
                   18186:          with opera -- 'happily' that worked OK with msie]
                   18187: 
                   18188: 2002-09-12  paf
                   18189: 
                   18190:        * src/types/: pa_vclass.C, pa_vmail.C, pa_vobject.C: VObject &
                   18191:          VClass get_element now first looks to fields, next to methods &
                   18192:          co todo: the rest reason: more speed
                   18193: 
                   18194:        * src/main/untaint.C: quoted printable encoding stops before
                   18195:          \s*<...>$
                   18196: 
                   18197:        * src/main/untaint.C: quoted printable ' ' now =20 and encoding
                   18198:          stops before <...>$
                   18199: 
                   18200: 2002-09-11  paf
                   18201: 
                   18202:        * src/: main/pa_charset.C, targets/cgi/parser3.dsp: while fixing (
                   18203:          xmlCharEncodingInput/OutputFunc callbacks returned bad value )
                   18204:          forgot to check users of those funcs. not all were using that
                   18205:          return value convention
                   18206: 
                   18207:        * src/lib/pcre/ibm-1254.ucm, etc/parser3.charsets/windows-1254.cfg:
                   18208:          windows-1254 added
                   18209: 
                   18210: 2002-09-10  paf
                   18211: 
                   18212:        * src/: classes/op.C, main/execute.C, types/pa_wcontext.h:
                   18213:          VCodeFrame parent param were specified badly
                   18214: 
                   18215:        * src/: main/execute.C, types/pa_value.h, types/pa_wwrapper.h:
                   18216:          WWrapper which used in constructing objects(second param to sql
                   18217:          method) ^...sql{}[$.default{code}] now has parent, wich helps
                   18218:          code in hash to survivi
                   18219: 
                   18220:        * src/: include/pa_request.h, main/execute.C: removed redundant
                   18221:          param to execute [stack said 'thanks']
                   18222: 
                   18223:        * src/: classes/op.C, main/execute.C, types/pa_value.C,
                   18224:          types/pa_value.h, types/pa_vcode_frame.h,
                   18225:          types/pa_vmethod_frame.h, types/pa_wcontext.C,
                   18226:          types/pa_wcontext.h, types/pa_wwrapper.h: moved junction kill
                   18227:          responsibility to wcontext
                   18228: 
                   18229:        * src/classes/file.C: decided not to log exec's with stderr, that
                   18230:          could be warnings, and it's up to scritper to log/show them
                   18231: 
                   18232:        * src/: classes/double.C, main/execute.C: double:sql badly called
                   18233:          write_assign_lang, not write_no_lang, thus doing unnecessary
                   18234:          double/string converstion, which were loosing time&precesion
                   18235: 
                   18236:        * src/: main/pa_charset.C, types/pa_vmail.C:
                   18237:          xmlCharEncodingInput/OutputFunc callbacks returned bad value in
                   18238:          case of unfinished in buffer processing, causing accidental
                   18239:          transcode stop [in case that source enc != utf-8 & there is
                   18240:          incomplete utf-8 sequence at the end of 16000block iside of
                   18241:          libxml lib] tfm readed & code updated
                   18242: 
                   18243: 2002-09-04  paf
                   18244: 
                   18245:        * configure: makes with sjlj
                   18246: 
                   18247:        * INSTALL, src/include/pa_config_fixed.h,
                   18248:          src/include/pa_sql_connection.h,
                   18249:          src/main/pa_sql_driver_manager.C: -with-sjlj-exceptions define
                   18250:          checked.  on win32 it made default
                   18251: 
                   18252:        * src/include/pa_config_auto.h.in: sjlj define
                   18253: 
                   18254:        * configure, configure.in: introducing --with-sjlj-exceptions [hpux
                   18255:          can not work with longjump/throw pair, and one must switch that
                   18256:          on there.  todo: detect that automatically]
                   18257: 
                   18258:        * src/types/pa_vxnode.C: removed too strong checks of
                   18259:          xnode.elements.  now, for instance, if element does not have any
                   18260:          attributes, $xnode.attributes is void, not error
                   18261: 
                   18262: 2002-09-02  paf
                   18263: 
                   18264:        * operators.txt, src/main/execute.C, src/targets/cgi/parser3.dsp:
                   18265:          removed double_result, didn't help
                   18266: 
                   18267:        * src/main/execute.C: double_result made to move that var away from
                   18268:          hungry g++ optimizer (-O2), before: it were optimized and
                   18269:          comparison operators worked badly
                   18270: 
                   18271:        * src/types/pa_vdate.h: removed debug
                   18272: 
1.116     moko     18273:        * Makefile.am, src/types/pa_vdate.h: happy now only install-exec
1.95      moko     18274: 
                   18275:        * src/main/execute.C: fixed numeric < & co so that thay now use
                   18276:          c=a-b, c OPERATOR 0.  this works fine on solaris/intel for still
                   18277:          unknown reason.
                   18278: 
                   18279: 2002-08-29  paf
                   18280: 
                   18281:        * parser3.dsw, src/classes/classes.dsp, src/classes/hash.C,
                   18282:          src/classes/op.C, src/classes/string.C, src/include/pa_request.h,
                   18283:          src/lib/md5/md5.dsp, src/main/execute.C, src/main/main.dsp,
                   18284:          src/main/pa_request.C, src/targets/cgi/parser3.dsp,
                   18285:          src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vmail.C,
                   18286:          src/types/pa_vmethod_frame.h, src/types/pa_wcontext.h,
                   18287:          src/types/types.dsp: junction_cleaner moved to auto VMethodFrame
                   18288:          [called less frequent, allowed to remove ugly
                   18289:          Junction.change_context-s from many places, switch,
                   18290:          mail:send..html{}, ..] request.root renamed to method_frame [more
                   18291:          easyreading] ancient {...PUSH/POPs...} changed to stack vars
                   18292:          [speed up]
                   18293: 
                   18294: 2002-08-28  paf
                   18295: 
                   18296:        * src/types/pa_vcookie.C: $cookie:name[&] $cookie:name << now
                   18297:          tainted
                   18298: 
                   18299:        * src/types/pa_vcookie.C: fixed cookie delete when
                   18300:          $cookie:name[$.value[]]
                   18301: 
                   18302:        * operators.txt, src/classes/string.C:
                   18303:          ^string.split[delim[;options]]
                   18304: 
                   18305: 2002-08-27  paf
                   18306: 
1.116     moko     18307:        * etc/parser3.charsets/Makefile.am: merged from 3.0.0005
1.95      moko     18308: 
                   18309:        * operators.txt, src/main/compile.tab.C, src/main/compile.y: # now
                   18310:          delimiter
                   18311: 
                   18312:        * INSTALL: recommended latest gmime 1.0.5
                   18313: 
                   18314: 2002-08-26  paf
                   18315: 
                   18316:        * configure, configure.in: apache13/hook added to make dist.
                   18317: 
                   18318: 2002-08-23  paf
                   18319: 
                   18320:        * src/: include/pa_common.h, main/pa_common.C,
                   18321:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C: when auto.p
                   18322:          beside binary [cgi, isapi] not accessible [due to bad rights or
                   18323:          whatever] it's error now
                   18324: 
                   18325: 2002-08-21  paf
                   18326: 
1.116     moko     18327:        * Makefile.am: can use: make happy equals to make update install
1.95      moko     18328: 
                   18329:        * src/main/: compile.tab.C, compile.y, compile_tools.C,
                   18330:          compile_tools.h: "BASE:" "BASE::" syntax allowed, means "base
                   18331:          class".  compiled as if here they named base class
                   18332: 
                   18333:        * src/main/pa_string.C: fixed bad language bug, [were wrong string
                   18334:          cloning constructor]
                   18335: 
                   18336:        * src/: main/execute.C, types/pa_vobject.h: fixed virtual calls
                   18337: 
1.150     moko     18338:        * src/: targets/cgi/parser3.C, types/pa_vfile.C, types/pa_vmail.C:
1.95      moko     18339:          $mail.received.file.value.content-type fixed
                   18340: 
                   18341: 2002-08-20  paf
                   18342: 
                   18343:        * src/classes/file.C: fixed language of file:file result
                   18344: 
                   18345:        * operators.txt, src/classes/void.C: ^void.pos[...] = -1 merged
                   18346:          from 3.0.0005
                   18347: 
                   18348:        * operators.txt, src/classes/void.C: ^void.pos[...] = -1
                   18349: 
                   18350:        * operators.txt, src/classes/void.C: ^void.length[] = 0 merged from
                   18351:          3.0.0005
                   18352: 
                   18353:        * src/classes/void.C, operators.txt: ^void.length[] = 0
                   18354: 
                   18355: 2002-08-19  paf
                   18356: 
                   18357:        * src/classes/xdoc.C: xdoc getElementsByTagName, ...NS overriden,
                   18358:          work now
                   18359: 
                   18360:        * src/: classes/xnode.C, types/pa_vxdoc.C: xdoc.fields fixed [were
                   18361:          error in xnode, which were not catched in xdoc]
                   18362: 
                   18363:        * src/: include/pa_stylesheet_connection.h, main/pa_globals.C:
                   18364:          prepared:        // validate each document after load/create (?)
                   18365:                 //xmlDoValidityCheckingDefaultValue = 1;
                   18366: 
                   18367: 2002-08-15  paf
                   18368: 
                   18369:        * src/classes/classes.h: write to static var caused useless
                   18370:          Exception, introduced Methoded::put_element wich consumes those
                   18371: 
                   18372:        * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
                   18373:          src/types/pa_vcookie.C, src/types/pa_vdate.h,
                   18374:          src/types/pa_vresponse.C, src/types/pa_vresponse.h:
                   18375:          $response:field[date] $response:field[$.xxx[date]]
                   18376: 
                   18377:        * src/: classes/hash.C, classes/string.C, classes/table.C,
                   18378:          classes/void.C, include/pa_sql_connection.h: fixed source of
                   18379:          ^hash::sql{bad}
                   18380: 
                   18381:        * operators.txt: $request:body unprecessed POST request body
                   18382: 
                   18383:        * src/types/pa_vrequest.C: $request:body unprecessed POST request
                   18384: 
                   18385:        * src/types/: pa_value.h, pa_vdate.h, pa_vrequest.C, pa_vxdoc.C,
                   18386:          pa_vxnode.C: few barks: bark("%s field not found", 0, &aname)
                   18387: 
                   18388:        * operators.txt, src/classes/form.C, src/include/pa_pool.h,
                   18389:          src/include/pa_request.h, src/main/pa_pool.C,
                   18390:          src/types/pa_vform.C, src/types/pa_vform.h: planning/preparing_to
                   18391:          $request:body r.post_data now const
                   18392: 
                   18393:        * src/: classes/image.C, classes/op.C, classes/xdoc.C,
                   18394:          classes/xnode.C, main/execute.C, types/pa_value.h,
                   18395:          types/pa_vhash.h, types/pa_vobject.C, types/pa_vobject.h,
                   18396:          types/pa_vtable.h: instead of type() checking everywhere used
                   18397:          Value.as now user descendants can be used in params.
                   18398: 
                   18399:          VObject::as_*, is_defined now taken from bases.  xtable(table)
                   18400:          ^if($xtable) now OK
                   18401: 
                   18402:        * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
                   18403:          types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
                   18404:          types/pa_vxdoc.C, types/pa_vxdoc.h: is->as
                   18405: 
                   18406: 2002-08-14  paf
                   18407: 
                   18408:        * src/: classes/xnode.h, main/execute.C, targets/cgi/parser3.dsp,
                   18409:          types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
                   18410:          types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
                   18411:          types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
                   18412:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
                   18413:          types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
                   18414:          types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
                   18415:          types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
                   18416:          types/pa_vresponse.C, types/pa_vresponse.h,
                   18417:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   18418:          types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
                   18419:          types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
                   18420:          types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
                   18421:          types/pa_vxnode.h, types/pa_wwrapper.h: is now works with VObject
                   18422:          & VClass
                   18423: 
                   18424:        * src/types/pa_vmail.C: mail: turned off utf8 to source transcoding
                   18425: 
                   18426:        * src/targets/cgi/: fixopt.C, fixopt.h, parser3.C, Makefile.am:
                   18427:          removed fixopt stupidity. on stupid linux use cd /document/root
                   18428:          ../cgi/parser3 script
                   18429: 
                   18430:        * src/targets/cgi/fixopt.C: fixopt now preprocesses command line
                   18431:          params, splitting them by space, excluding argv[0], argv[argc-1]
                   18432: 
                   18433:        * src/targets/cgi/: Makefile.am, parser3.C, parser3.dsp, fixopt.C,
                   18434:          fixopt.h: fixopt now preprocesses command line params, splitting
                   18435:          them by space, excluding argv[0], argv[argc-1]
                   18436: 
                   18437:        * src/targets/cgi/parser3.C: -f config file
                   18438: 
                   18439:        * src/targets/cgi/parser3.C: fixed .log file dir
                   18440: 
                   18441: 2002-08-13  paf
                   18442: 
                   18443:        * src/types/pa_vobject.C: allow override parent variables, useful
                   18444:          for form descendants [in vobject too, were in vclass]
                   18445: 
                   18446:        * src/types/pa_vclass.C: allow override parent variables, useful
                   18447:          for form descendants
                   18448: 
                   18449:        * src/types/pa_vclass.C: checked: form[vclass]fields can be
                   18450:          overwritten in derived(table)
                   18451: 
                   18452:        * src/: classes/form.C, classes/mail.C, classes/op.C,
                   18453:          classes/xnode.h, include/pa_request.h, main/execute.C,
                   18454:          main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
                   18455:          types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
                   18456:          types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
                   18457:          types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
                   18458:          types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
                   18459:          types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
                   18460:          types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
                   18461:          types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
                   18462:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   18463:          types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
                   18464:          types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
                   18465:          types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
                   18466:          types/pa_vxnode.h, types/pa_wwrapper.h: introduced
                   18467:          Value::get_element(..., bool looking_down) [needed to exclude
                   18468:          endless recoursion]
                   18469: 
                   18470:        * src/types/: pa_vclass.C, pa_vobject.C: reorganized modules todo:
                   18471:          fix bug with put endless recoursion todo: check 'as'
                   18472: 
                   18473:        * src/types/: Makefile.am, pa_vclass.h, pa_vobject.h, types.dsp:
                   18474:          reorganized modules todo: fix bug with put endless recoursion
                   18475:          todo: check 'as'
                   18476: 
                   18477:        * src/types/pa_vobject.h: checked: table fields can be overwritten
                   18478:          in derived(table)
                   18479: 
                   18480:        * src/types/pa_vobject.h: derived classes can have fields of their
                   18481:          own now
                   18482: 
                   18483:        * src/: classes/table.C, types/pa_vtable.C, types/pa_vtable.h:
                   18484:          fixed error message on using non-created table
                   18485: 
                   18486:        * src/: classes/form.C, classes/hash.C, classes/mail.C,
                   18487:          classes/op.C, classes/xnode.h, include/pa_request.h,
                   18488:          main/compile.C, main/compile.tab.C, main/execute.C,
                   18489:          main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
                   18490:          types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
                   18491:          types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
                   18492:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
                   18493:          types/pa_vimage.C, types/pa_vimage.h, types/pa_vmail.C,
                   18494:          types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
                   18495:          types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
                   18496:          types/pa_vresponse.C, types/pa_vresponse.h,
                   18497:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   18498:          types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
                   18499:          types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
                   18500:          types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
                   18501:          types/pa_vxnode.h, types/pa_wwrapper.h: VObject.get/out now
                   18502:          looking down/up tree todo: fix error message on non-constructed
                   18503:          parents
                   18504: 
                   18505: 2002-08-12  paf
                   18506: 
                   18507:        * src/types/: pa_vstateless_class.h, pa_vstateless_object.h: table
                   18508:          derived OK
                   18509: 
                   18510:        * src/main/execute.C: ^base:create[] dynamic call rewritten todo:
                   18511:          thorough testing
                   18512: 
                   18513:        * src/: main/compile.tab.C, main/compile.y, main/execute.C,
                   18514:          main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
                   18515:          types/pa_vobject.h, types/pa_vstateless_class.h,
                   18516:          types/pa_vstateless_object.h, types/pa_wcontext.h,
                   18517:          types/pa_valiased.C, types/pa_valiased.h, types/Makefile.am:
                   18518:          ^base:create[] dynamic call rewritten todo: thorough testing
                   18519: 
                   18520:        * src/types/: pa_value.h, pa_vclass.h, pa_vobject.h: VObject ctor
                   18521:          now instantates base class, remembers it and saves child in
                   18522:          parent VObject.get_class now returns last child = downward
                   18523:          virtual calls OK
                   18524: 
                   18525:        * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
                   18526:          types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
                   18527:          types/pa_vimage.h, types/pa_vint.h, types/pa_vmethod_frame.h,
                   18528:          types/pa_vobject.h, types/pa_vresponse.h,
                   18529:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   18530:          types/pa_vstring.h, types/pa_vtable.h, types/pa_vxdoc.h,
                   18531:          types/pa_vxnode.h, types/pa_wcontext.h, types/types.dsp: killed
                   18532:          VAliased [redundant], moved $CLASS to VObject only [parser class
                   18533:          instance]
                   18534: 
                   18535:        * src/main/pa_request.C: $response:body[file] content-type check
                   18536:          fixed [were bad when content-type is hash]
                   18537: 
                   18538: 2002-08-09  paf
                   18539: 
                   18540:        * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
                   18541:          types/pa_vobject.h, types/pa_vxdoc.h: started as()
                   18542: 
                   18543: 2002-08-08  paf
                   18544: 
                   18545:        * operators.txt, src/classes/date.C, src/include/pa_globals.h,
                   18546:          src/main/pa_globals.C: year column in month calendar [week year]
                   18547: 
                   18548:        * src/main/execute.C: error reporting on object writes to MAIN
                   18549:          improved [were ruind with fixing $obj[^if(1){$obj}] ]
                   18550: 
                   18551:        * operators.txt, src/types/pa_vdate.h: $date.yearday
                   18552:          $date.daylightsaving
                   18553: 
                   18554:        * src/: classes/mail.C, types/pa_vmail.C: in letter texts one can
                   18555:          use tainted data now. only she must specify the language.
                   18556: 
                   18557:          ^mail:send[     $.from[paf@mail.design.ru]
                   18558:          $.to[paf@mail.design.ru]        $.subject[^taint[uri][ìîñêâà]=2]
                   18559:                $.text[^taint[uri][ìîñêâà]=] ]
                   18560: 
                   18561:        * src/: classes/file.C, classes/op.C, types/pa_vfile.C: ^process
                   18562:          now prints more precise origin
                   18563: 
                   18564:        * src/include/pa_string.h: String::first_char now not fails on
                   18565:          empty strings ^if(-f '') now ok and in 3 other places.
                   18566: 
                   18567:        * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
                   18568:          String::first_char now not fails on empty strings ^if(-f '') now
                   18569:          ok and in 3 other places.
                   18570: 
                   18571: 2002-08-07  paf
                   18572: 
                   18573:        * src/: classes/string.C, main/pa_string.C: ^string.mid(0;bad)
                   18574:          fixed
                   18575: 
                   18576:        * src/main/pa_string.C: ^string.mid(0;bad) fixed
                   18577: 
                   18578:        * src/: main/execute.C, types/pa_vcode_frame.h,
                   18579:          types/pa_vmethod_frame.h, types/pa_wcontext.C,
                   18580:          types/pa_wcontext.h, types/pa_wwrapper.h: vcodeframe were
                   18581:          mistakenly not completely transparent to object writes.
                   18582:          $hash[^if(1){$hash}] now works
                   18583: 
                   18584:        * operators.txt, src/classes/op.C: ^cache...{...^cache<<to past...}
                   18585:          now erasing cache file [there were bad check on that]
                   18586: 
                   18587:        * src/: classes/classes.dsp, classes/table.C,
                   18588:          lib/pcre/pcre_parser_ctype.dsp, main/pa_array.C, types/types.dsp:
                   18589:          all Debug dirs in .dsp now named 'Debug'
                   18590: 
1.116     moko     18591:        * etc/parser3.charsets/Makefile.am: all included into dist
1.95      moko     18592: 
                   18593:        * operators.txt, src/classes/mail.C: exception_type  email.send
                   18594: 
                   18595:        * operators.txt, src/types/pa_vmail.C: exception_type  email.format
                   18596: 
                   18597:        * src/types/pa_vmail.C: mail:send empty  email checked
                   18598: 
                   18599: 2002-08-06  paf
                   18600: 
                   18601:        * operators.txt, src/classes/table.C, src/include/pa_array.h,
                   18602:          src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
                   18603:          ^table::create[$source;$.options] ^table::join[$source;$.options]
                   18604: 
                   18605:        * operators.txt, src/classes/hash.C, src/classes/string.C,
                   18606:          src/classes/table.C: sql options can be string now ^xxx:sql{...}[
                   18607:          #  $.default() }
                   18608: 
                   18609:        * src/classes/file.C: $f[file::cgi] $f.UPPER case fields
                   18610: 
                   18611:        * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
                   18612:          main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h:
                   18613:          $file.content-type [instead of .mime-type] now works for
                   18614:          file::stat also
                   18615: 
                   18616:        * src/main/pa_request.C: case insensitive mime_type_of
                   18617: 
                   18618: 2002-08-05  paf
                   18619: 
                   18620:        * src/types/pa_vxnode.C: xnode.childNodes  now 0... [were 1...]
                   18621: 
                   18622:        * src/types/pa_vmail.C: file buffer relocated to parser heap
                   18623: 
                   18624:        * operators.txt: comment on date:calendar week column
                   18625: 
                   18626:        * src/main/pa_common.C: write checked
                   18627: 
                   18628:        * src/main/: pa_common.C: write checked
                   18629: 
                   18630:        * src/classes/date.C: +1 buf size for stupid snprintfs
                   18631: 
                   18632:        * src/: classes/date.C, include/pa_globals.h, main/pa_globals.C:
                   18633:          month calendar week column [ISO 8601 Week Numbers]
                   18634: 
                   18635: 2002-08-02  paf
                   18636: 
                   18637:        * src/: include/pa_config_fixed.h, main/pa_string.C,
                   18638:          targets/cgi/getopt.c, targets/cgi/parser3.C: removed #define
                   18639:          DEBUG*
                   18640: 
                   18641:        * configure, configure.in, src/include/pa_version.h: release
                   18642:          3_0_0005
                   18643: 
                   18644:        * src/types/: pa_vclass.h, pa_vform.C, pa_vobject.h: opera
                   18645:          multipart post fixed
                   18646: 
                   18647:        * operators.txt, src/main/pa_request.C, src/types/pa_vform.C:
                   18648:          response transcoded source->client only when text/* or simple
                   18649:          onoverridden $response:body
                   18650: 
                   18651: 2002-08-01  paf
                   18652: 
                   18653:        * src/: classes/classes.C, classes/classes.h, classes/date.C,
                   18654:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   18655:          classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
                   18656:          classes/op.C, classes/response.C, classes/string.C,
                   18657:          classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
                   18658:          classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
                   18659:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   18660:          include/pa_config_fixed.h, include/pa_dictionary.h,
                   18661:          include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
                   18662:          include/pa_globals.h, include/pa_hash.h, include/pa_opcode.h,
                   18663:          include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
                   18664:          include/pa_socks.h, include/pa_sql_connection.h,
                   18665:          include/pa_sql_driver_manager.h, include/pa_stack.h,
                   18666:          include/pa_string.h, include/pa_stylesheet_connection.h,
                   18667:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   18668:          include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
                   18669:          lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
                   18670:          lib/pcre/pcre_parser_ctype.c, main/compile.C, main/compile.tab.C,
                   18671:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   18672:          main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
                   18673:          main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
                   18674:          main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
                   18675:          main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
                   18676:          main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
                   18677:          main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
                   18678:          main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
                   18679:          targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
                   18680:          targets/cgi/parser3.C, targets/cgi/pool_storage.h,
                   18681:          targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
                   18682:          targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
                   18683:          types/pa_valiased.C, types/pa_valiased.h, types/pa_value.C,
                   18684:          types/pa_value.h, types/pa_vbool.h, types/pa_vclass.h,
                   18685:          types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
                   18686:          types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
                   18687:          types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
                   18688:          types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
                   18689:          types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
                   18690:          types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
                   18691:          types/pa_vmethod_frame.h, types/pa_vobject.h,
                   18692:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
                   18693:          types/pa_vresponse.h, types/pa_vstateless_class.C,
                   18694:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   18695:          types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
                   18696:          types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
                   18697:          types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   18698:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
1.119     moko     18699:          types/pa_wcontext.h, types/pa_wwrapper.h: Date: now
1.95      moko     18700: 
                   18701:        * src/: classes/classes.C, classes/classes.dsp, classes/classes.h,
                   18702:          classes/date.C, classes/double.C, classes/file.C, classes/form.C,
                   18703:          classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
                   18704:          classes/math.C, classes/op.C, classes/response.C,
                   18705:          classes/string.C, classes/table.C, classes/void.C,
                   18706:          classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   18707:          include/pa_array.h, include/pa_cache_managers.h,
                   18708:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   18709:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   18710:          include/pa_dictionary.h, include/pa_dir.h,
                   18711:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   18712:          include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
                   18713:          include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
                   18714:          include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
                   18715:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   18716:          include/pa_stack.h, include/pa_string.h,
                   18717:          include/pa_stylesheet_connection.h,
                   18718:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   18719:          include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
                   18720:          lib/md5/pa_md5.h, lib/md5/pa_md5c.c, main/compile.C,
                   18721:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   18722:          main/main.dsp, main/pa_array.C, main/pa_cache_managers.C,
                   18723:          main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
                   18724:          main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
                   18725:          main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
                   18726:          main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
                   18727:          main/pa_sql_driver_manager.C, main/pa_string.C,
                   18728:          main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
                   18729:          main/untaint.C, sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
                   18730:          targets/cgi/pa_threads.C, targets/cgi/parser3.C,
                   18731:          targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
                   18732:          targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
                   18733:          targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
                   18734:          targets/isapi/pool_storage.h, types/pa_valiased.C,
                   18735:          types/pa_valiased.h, types/pa_value.C, types/pa_value.h,
                   18736:          types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
                   18737:          types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
                   18738:          types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
                   18739:          types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
                   18740:          types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
                   18741:          types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
                   18742:          types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
                   18743:          types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
                   18744:          types/pa_vresponse.C, types/pa_vresponse.h,
                   18745:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   18746:          types/pa_vstateless_object.h, types/pa_vstatus.C,
                   18747:          types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
                   18748:          types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
                   18749:          types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
                   18750:          types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
                   18751:          types/pa_wwrapper.h, types/types.dsp, Makefile.am,
                   18752:          classes/Makefile.am, main/Makefile.am, targets/cgi/Makefile.am,
                   18753:          types/Makefile.am: ident.C* removed
                   18754: 
                   18755:        * operators.txt, src/classes/file.C, src/main/pa_request.C:
                   18756:          file:find[/can/do/this/now.txt]
                   18757: 
                   18758:        * src/targets/cgi/parser3.C: usage to stdout now
                   18759: 
                   18760: 2002-07-31  paf
                   18761: 
                   18762:        * src/types/pa_vmail.C: mail: errors-to: now default "postmaster"
                   18763: 
                   18764:        * src/: classes/mail.C, types/pa_vmail.C: mail: errors-to: now
                   18765:          default "postmaster"
                   18766: 
                   18767:        * src/: classes/mail.C, types/pa_vmail.C: mail from/to now must be.
                   18768:          -f postmaster now default sendmail key word "postmaster"
                   18769:          replaced to $.from
                   18770: 
                   18771: 2002-07-30  paf
                   18772: 
1.116     moko     18773:        * configure, configure.in, src/targets/cgi/pa_config_paths.h.in,
                   18774:          src/targets/cgi/parser3.C: removed pa_config_paths.h
1.95      moko     18775: 
                   18776:        * src/main/pa_charset.C: comment
                   18777: 
                   18778:        * src/main/pa_charset.C: UTF-8 to 1byte charset convert, no char in
                   18779:          table, &#decimal;
                   18780: 
                   18781:        * src/main/pa_request.C: comment
                   18782: 
                   18783:        * etc/parser3.charsets/windows-1251.cfg: section sign [russian
                   18784:          paragraf]
                   18785: 
                   18786: 2002-07-11  paf
                   18787: 
                   18788:        * src/main/pa_exec.C: build command line badly added params twice
                   18789:          [and first time without ' ']. double wrong. fixed.
                   18790: 
                   18791:        * src/main/pa_exec.C: invalid .exe caused error message with params
                   18792:          wich parser did not provide = reported badly.  fixed that.
                   18793: 
                   18794:        * src/classes/mail.C: $MAIL[ # xxx ]
                   18795: 
                   18796:          now ok
                   18797: 
                   18798:        * operators.txt: plan: sql detailed exception
                   18799: 
                   18800: 2002-07-01  paf
                   18801: 
                   18802:        * src/: classes/form.C, main/pa_request.C: @conf bug fixed
                   18803:          [MForm.configure_admin were called when request.main_class ==0
                   18804: 
                   18805:        * src/classes/form.C: 10*0x400*400 bug fix [4M not 10M]
                   18806: 
                   18807:        * src/classes/form.C: content_length type fix
                   18808: 
                   18809: 2002-06-30  paf
                   18810: 
                   18811:        * src/classes/mail.C: merged from 4
                   18812: 
                   18813:        * src/classes/mail.C: restored $MAIL
                   18814: 
                   18815: 2002-06-28  paf
                   18816: 
                   18817:        * configure, configure.in: removed paths.h
                   18818: 
1.116     moko     18819:        * configure, src/include/pa_version.h,
1.95      moko     18820:          src/targets/cgi/pa_config_paths.h.in: lates changes from 4 build
                   18821:          merged, makes updated
                   18822: 
                   18823:        * ChangeLog, configure, operators.txt, src/classes/xdoc.C,
                   18824:          src/include/pa_charset.h, src/include/pa_config_fixed.h,
                   18825:          src/include/pa_pool.h, src/include/pa_version.h,
                   18826:          src/main/pa_charset.C, src/main/pa_pool.C,
                   18827:          src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
                   18828:          src/types/pa_vmail.C: merged latest updates to head
                   18829: 
                   18830: 2002-06-27  paf
                   18831: 
                   18832:        * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: post-build
                   18833:          not error now
                   18834: 
                   18835:        * operators.txt, src/classes/xdoc.C, src/include/pa_charset.h,
                   18836:          src/include/pa_config_fixed.h, src/include/pa_pool.h,
                   18837:          src/main/pa_charset.C, src/main/pa_pool.C:
                   18838:          ^xdoc::create[[uri]]... base uri for document being created,
                   18839:          imports and other relative file names would be relative to this
                   18840:          uri default uri=path_translated
                   18841: 
                   18842:        * src/classes/xdoc.C: xsltParseStylesheetDoc bug workaround
                   18843: 
                   18844: 2002-06-26  paf
                   18845: 
                   18846:        * configure, configure.in, src/include/pa_version.h:
                   18847:          release_3_0_0004
                   18848: 
                   18849:        * src/main/pa_string.C: blank string '', ' <whitespace>' considered
                   18850:          0 now
                   18851: 
                   18852:        * src/targets/cgi/parser3.C: /cgi-bin/parser empty filename checked
                   18853: 
                   18854: 2002-06-25  paf
                   18855: 
                   18856:        * src/main/pa_string.C: emtpy string, or string of whitespaces
                   18857:          considered bad number now
                   18858: 
                   18859:        * operators.txt, src/classes/xdoc.C: ^xdoc.transform[xdoc <<can be
                   18860:          now
                   18861: 
                   18862:        * operators.txt, src/classes/string.C: ^string.normalize  [old
                   18863:          name: optimize
                   18864: 
                   18865:        * configure, configure.in, src/include/pa_config_auto.h.in: crypt
                   18866:          library configured
                   18867: 
                   18868:        * src/main/pa_request.C: configure_admin forced if no @conf
                   18869: 
1.150     moko     18870:        * operators.txt, src/classes/math.C, src/types/pa_vmail.C:
                   18871:          ^math:crypt updated to generate random salt when needed and to
                   18872:          call system crypt() if not $apr1$ prefix
1.95      moko     18873: 
                   18874: 2002-06-24  paf
                   18875: 
                   18876:        * INSTALL: --with-static/shared-mailreceive described
                   18877: 
                   18878:        * src/include/pa_config_fixed.h: ssize_t fixed
                   18879: 
1.116     moko     18880:        * configure, configure.in, src/include/pa_config_auto.h.in,
                   18881:          src/targets/cgi/Makefile.am, src/types/Makefile.am,
1.95      moko     18882:          src/types/pa_vmail.C: $mail:received makes update
                   18883: 
                   18884:        * src/: include/pa_config_fixed.h, types/pa_vmail.C: #ifdef
                   18885:          WITH_MAILRECEIVE
                   18886: 
                   18887:        * src/targets/cgi/parser3.C: #ifdef WITH_MAILRECEIVE
                   18888: 
                   18889:        * src/targets/cgi/: getopt.c, getopt.h: introducing parser -m
                   18890:          option, for $mail:receive
                   18891: 
                   18892:        * src/types/: pa_vmail.C, pa_vmail.h: uue to separate file
                   18893:          introducting $message:received ^mail:send rewritten with backward
                   18894:          comp
                   18895: 
                   18896:        * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
                   18897:          targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
                   18898:          types/types.dsp: win32xml win32mailreceive pseudomodules paths
                   18899:          now
                   18900: 
                   18901:        * operators.txt, src/classes/mail.C, src/include/Makefile.am,
                   18902:          src/include/pa_charset.h, src/include/pa_config_fixed.h,
                   18903:          src/include/pa_request.h, src/include/pa_string.h,
                   18904:          src/include/pa_uue.h, src/main/Makefile.am, src/main/main.dsp,
                   18905:          src/main/pa_globals.C, src/main/pa_request.C,
                   18906:          src/main/pa_string.C, src/main/pa_uue.C,
                   18907:          src/targets/cgi/Makefile.am, src/targets/cgi/parser3.C,
                   18908:          src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
                   18909:          src/types/pa_vform.C, src/types/pa_vform.h, src/types/types.dsp:
                   18910:          uue to separate file introducting $message:received ^mail:send
                   18911:          rewritten with backward comp
                   18912: 
                   18913: 2002-06-21  paf
                   18914: 
1.116     moko     18915:        * src/lib/: Makefile.am, md5/pa_md5.h: lib restructure apache .am &
                   18916:          co changes
1.95      moko     18917: 
1.116     moko     18918:        * configure, configure.in, src/lib/md5/Makefile.am,
                   18919:          src/lib/md5/pa_md5c.c, src/targets/cgi/Makefile.am: lib
                   18920:          restructure .in and .am files appropriate changes
1.95      moko     18921: 
                   18922:        * src/lib/md5/: md5.dsp, pa_md5.h, pa_md5c.c: moved libltdl and
                   18923:          pcre to libs/ added libs/md5 which is linked to non-apache
                   18924:          targets ^math:crypt[password;$apr1$salt]
                   18925: 
                   18926:        * INSTALL, configure.in, operators.txt, parser3.dsw,
                   18927:          src/Makefile.am, src/classes/Makefile.am,
                   18928:          src/classes/classes.dsp, src/classes/math.C,
                   18929:          src/lib/md5/Makefile.am, src/lib/pcre/LICENCE,
1.116     moko     18930:          src/lib/pcre/Makefile.am, src/lib/pcre/README,
                   18931:          src/lib/pcre/Tech.Notes, src/lib/pcre/dftables.c,
                   18932:          src/lib/pcre/get.c, src/lib/pcre/ibm-1250.ucm,
                   18933:          src/lib/pcre/ibm-1251.ucm, src/lib/pcre/ibm-1257.ucm,
                   18934:          src/lib/pcre/internal.h, src/lib/pcre/maketables.c,
                   18935:          src/lib/pcre/pcre-2_08.tar.gz, src/lib/pcre/pcre.3,
                   18936:          src/lib/pcre/pcre.3.html, src/lib/pcre/pcre.3.txt,
                   18937:          src/lib/pcre/pcre.c, src/lib/pcre/pcre.dsp, src/lib/pcre/pcre.h,
1.95      moko     18938:          src/lib/pcre/pcre_dftables.dsp, src/lib/pcre/pcre_parser_ctype.c,
                   18939:          src/lib/pcre/pcre_parser_ctype.dsp,
                   18940:          src/lib/pcre/ruspart_win2koi.pl, src/lib/pcre/study.c,
                   18941:          src/lib/pcre/win-koi.tab, src/main/Makefile.am,
                   18942:          src/main/compile.tab.C, src/main/main.dsp,
                   18943:          src/targets/cgi/Makefile.am, src/targets/cgi/parser3.dsp,
                   18944:          src/targets/isapi/parser3isapi.dsp, src/types/Makefile.am,
                   18945:          src/types/types.dsp, src/lib/Makefile.am: moved libltdl and pcre
                   18946:          to libs/ added libs/md5 which is linked to non-apache targets
                   18947:          ^math:crypt[password;$apr1$salt]
                   18948: 
                   18949: 2002-06-20  paf
                   18950: 
1.150     moko     18951:        * INSTALL, configure, configure.in, operators.txt,
                   18952:          src/classes/file.C, src/classes/op.C, src/doc/doxygen.cfg,
                   18953:          src/include/pa_globals.h, src/include/pa_request.h,
                   18954:          src/main/execute.C, src/main/pa_request.C,
                   18955:          src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
                   18956:          src/types/pa_vmethod_frame.h: marged latest HEAD updates, mainly
                   18957:          file:justname&co & @auto/conf[filespec
1.95      moko     18958: 
                   18959:        * operators.txt, src/classes/file.C:
                   18960:          !^file:dirname[/a/some.tar.gz]=/a
                   18961:              !^file:dirname[/a/b/]=/a
                   18962:              !^file:basename[/a/some.tar.gz]=some.tar.gz
                   18963:              !^file:justname[/a/some.tar.gz]=some.tar
                   18964:              !^file:justext[/a/some.tar.gz]=gz
                   18965: 
                   18966:        * src/: classes/op.C, include/pa_request.h, main/execute.C,
                   18967:          main/pa_request.C, types/pa_vmethod_frame.h: introducing
                   18968:          @conf/auto[filespec]
                   18969: 
1.116     moko     18970:        * configure: parser3.conf renamed to auto.p autoconf changes
1.95      moko     18971: 
1.150     moko     18972:        * INSTALL, configure.in, operators.txt, src/doc/doxygen.cfg,
1.95      moko     18973:          src/include/pa_globals.h, src/targets/cgi/parser3.C,
                   18974:          src/targets/isapi/parser3isapi.C: parser3.conf renamed to auto.p
                   18975: 
                   18976: 2002-06-18  paf
                   18977: 
                   18978:        * configure, configure.in, src/include/pa_version.h: version to
                   18979:          configure.in
                   18980: 
                   18981:        * INSTALL: reflected .conf.dist dir change
                   18982: 
1.150     moko     18983:        * Makefile.am, configure, configure.in,
1.116     moko     18984:          etc/parser3.charsets/Makefile.am: parser3.conf.dist moved to bin,
1.95      moko     18985:          .in & *.am updated
                   18986: 
                   18987:        * src/classes/file.C: strncasecmp
                   18988: 
                   18989:        * src/classes/file.C: strcasecmp
                   18990: 
1.150     moko     18991:        * etc/Makefile.am: bin/parser3.conf.dist [moved from etc
1.95      moko     18992: 
                   18993:        * src/classes/file.C: ^file::exec[script;$.bad error case
                   18994:          insensitive check now
                   18995: 
                   18996:        * src/classes/file.C: ^file::exec[script;$.bad now error, not skip
                   18997: 
                   18998:        * configure, configure.in, src/include/pa_pool.h,
                   18999:          src/include/pa_types.h: pack configure.in detection simplified.
                   19000:          figured out that gcc on sparc not that stupid as thought
                   19001:          previously: on sparc: when it sees packed class it modifies it's
                   19002:          field-access-code to byte operations [stb, ldub] instead of 4byte
                   19003:          operations [st, lduh] so packed must be all parts of packed
                   19004:          class, i.e. it's parents&fields(classes).  for now it's only
                   19005:          String that packed and what was wrong is that it's parent -
                   19006:          Pooled, were not packed. fixed that.
                   19007: 
                   19008: 2002-06-14  paf
                   19009: 
                   19010:        * operators.txt: more precise xml-to-text options
                   19011: 
                   19012:        * operators.txt, src/types/pa_vxnode.C: xnode
                   19013:          attribute_node.name/value xnode pi.node.data
                   19014: 
                   19015: 2002-06-12  paf
                   19016: 
1.116     moko     19017:        * configure, configure.in, src/targets/cgi/Makefile.am,
                   19018:          src/targets/cgi/parser3.C: removed root conf define creation
1.95      moko     19019: 
                   19020:        * INSTALL, configure.in, operators.txt, etc/Makefile.am,
                   19021:          src/include/pa_globals.h, src/include/pa_request.h,
                   19022:          src/main/compile.tab.C, src/main/pa_globals.C,
                   19023:          src/main/pa_request.C, src/targets/cgi/parser3.C,
                   19024:          src/targets/isapi/parser3isapi.C: parser3.conf now one and only
                   19025: 
                   19026:        * src/classes/mail.C: sendmail -ti [default now]
                   19027: 
                   19028:        * src/: classes/mail.C, main/pa_request.C: $MAIL $CHARSETS allowed
                   19029:          to be strings. for convinient #ing
                   19030: 
                   19031:        * src/: include/pa_globals.h, include/pa_request.h, main/execute.C,
                   19032:          main/pa_globals.C, main/pa_request.C: @rootconf [were @conf]
                   19033: 
                   19034:        * src/: include/pa_globals.h, include/pa_request.h, main/main.dsp,
                   19035:          main/pa_globals.C, main/pa_request.C: @conf
                   19036: 
                   19037: 2002-06-11  paf
                   19038: 
                   19039:        * src/classes/file.C: check simplified
                   19040: 
                   19041:        * src/: classes/file.C, targets/cgi/parser3.dsp,
                   19042:          targets/isapi/parser3isapi.C: suexec env keys filter plus CGI_ as
                   19043:          valid prefix
                   19044: 
                   19045:        * src/: classes/file.C, include/pa_request.h, include/pa_sapi.h,
                   19046:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
                   19047:          file::exec/cgi to pass HTTP_ vars introducing SAPI::environment
                   19048: 
                   19049: 2002-06-10  paf
                   19050: 
                   19051:        * operators.txt, src/classes/op.C, src/include/pa_common.h,
                   19052:          src/main/pa_common.C: lock failures reported now
                   19053: 
                   19054:        * src/main/compile_tools.C: ^if(" 1 "){y} bug fixed optimization
                   19055:          string->double @ compile time were not-enough-checking...
                   19056: 
                   19057:        * src/main/: compile.tab.C, pa_string.C: whitespace after number in
                   19058:          autoconvert now ignored
                   19059: 
                   19060:        * src/types/: pa_vform.C, pa_vform.h: $form: not determined yet
                   19061:          check
                   19062: 
                   19063:        * src/classes/mail.C: mail netscape attachment name fixed. todo:
                   19064:          $response:body content-type:name
                   19065: 
                   19066:        * configure, configure.in: hpux check, nsl link, no socket
                   19067: 
                   19068:        * operators.txt: old merge conflict removed
                   19069: 
                   19070:        * configure, configure.in: pack even address access on sparc&co
                   19071:          arch checked in configure
                   19072: 
                   19073:        * configure, src/include/pa_version.h: makes
                   19074: 
                   19075:        * configure, configure.in, src/include/pa_version.h: makes
                   19076: 
                   19077:        * src/main/untaint.C: (bug#2) mail subject got always prepended
                   19078:          with charset even when all letters were 7bit one
                   19079: 
                   19080:        * src/main/pa_common.C: merged fixed -d (bug)
                   19081: 
                   19082:        * src/main/pa_common.C: fixed -d (bug)
                   19083: 
                   19084: 2002-06-03  paf
                   19085: 
                   19086:        * ChangeLog, operators.txt, etc/parser3.charsets/windows-1251.cfg,
                   19087:          src/classes/classes.dsp, src/main/compile.tab.C,
                   19088:          src/main/main.dsp, src/main/pa_globals.C,
                   19089:          src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
                   19090:          src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: fixed
                   19091:          .dsp-s along with reorganized cvs modules dirs structure
                   19092: 
                   19093:        * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
                   19094:          main/pa_globals.C, targets/cgi/parser3.dsp,
                   19095:          targets/isapi/parser3isapi.dsp, types/types.dsp: reorganized cvs
                   19096:          modules
                   19097: 
                   19098: 2002-05-28  paf
                   19099: 
                   19100:        * src/targets/cgi/parser3.C: info.uri now ""
                   19101: 
                   19102: 2002-05-17  paf
                   19103: 
                   19104:        * src/classes/: table.C: ^table.save << checked empty
                   19105:          pre/match/post columns
                   19106: 
                   19107: 2002-05-16  paf
                   19108: 
                   19109:        * src/classes/image.C: image::measure can png now
                   19110: 
                   19111: 2002-05-15  paf
                   19112: 
                   19113:        * operators.txt, src/classes/date.C: ^date::create[%H:%M[:%S]]
                   19114:          added
                   19115: 
                   19116:        * etc/parser3.charsets/windows-1251.cfg: 0x forgot, fixed
                   19117: 
                   19118:        * operators.txt, src/classes/date.C: ^date::create[%Y[-%m[-%d[
                   19119:          %H[:%M[:%S]]]]]] [-%m now
                   19120: 
                   19121: 2002-05-14  paf
                   19122: 
                   19123:        * etc/parser3.charsets/: windows-1251.cfg: added 3 quotes
                   19124: 
                   19125: 2002-05-07  paf
                   19126: 
                   19127:        * ChangeLog, src/classes/classes.dsp, src/classes/op.C,
                   19128:          src/include/pa_globals.h, src/include/pa_request.h,
                   19129:          src/include/pa_table.h, src/main/compile.tab.C,
                   19130:          src/main/compile.y, src/main/main.dsp, src/main/pa_globals.C,
                   19131:          src/main/pa_request.C, src/main/pa_table.C,
                   19132:          src/targets/isapi/pa_pool.C, src/targets/isapi/parser3isapi.C,
                   19133:          src/targets/isapi/parser3isapi.dsp,
                   19134:          src/targets/isapi/pool_storage.h, src/types/types.dsp: Table
                   19135:          name2number field now &.  main_method_name now on Request pool
                   19136:          rather on global_pool [Junction+VJunction created on same pool as
                   19137:          name = were created on global pool, causing mem leaks]
                   19138: 
                   19139:        * src/: classes/classes.dsp, classes/op.C, include/pa_globals.h,
                   19140:          include/pa_request.h, include/pa_table.h, main/compile.tab.C,
                   19141:          main/compile.y, main/main.dsp, main/pa_globals.C,
                   19142:          main/pa_request.C, main/pa_table.C, targets/isapi/pa_pool.C,
                   19143:          targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
                   19144:          targets/isapi/pool_storage.h, types/types.dsp: Table name2number
                   19145:          field now &.  main_method_name now on Request pool rather on
                   19146:          global_pool [Junction+VJunction created on same pool as name =
                   19147:          were created on global pool, causing mem leaks]
                   19148: 
                   19149: 2002-05-06  paf
                   19150: 
                   19151:        * src/: main/pa_globals.C, targets/cgi/parser3.C,
                   19152:          targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
                   19153:          100*40 bytes per request memory leak [nonpool malloc in globals]
                   19154: 
                   19155:        * src/: main/pa_globals.C, targets/cgi/parser3.C,
                   19156:          targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
                   19157:          100*40 bytes per request memory leak [nonpool malloc in globals]
                   19158: 
                   19159: 2002-04-30  paf
                   19160: 
                   19161:        * configure, src/include/pa_version.h: version now not b
                   19162: 
                   19163:        * src/targets/cgi/parser3.C: request.uri now never 0
                   19164: 
                   19165: 2002-04-29  paf
                   19166: 
                   19167:        * configure.in: removed b
                   19168: 
                   19169:        * src/: classes/op.C, include/pa_exception.h, main/pa_request.C:
                   19170:          Exception::comment/type checked in (), no there's no empty
                   19171:          type/comment by default
                   19172: 
                   19173:        * ChangeLog, src/doc/ClassExample1.dox, src/doc/ClassExample3.dox,
                   19174:          src/doc/aliased.dox, src/doc/methoded.dox, src/doc/string.dox,
                   19175:          src/doc/value.dox, src/include/pa_exception.h,
                   19176:          src/main/pa_request.C, src/targets/cgi/parser3.C: merged from
                   19177:          0001
                   19178: 
                   19179: 2002-04-26  paf
                   19180: 
                   19181:        * src/: doc/doxygen.cfg, targets/cgi/parser3.dsp: doxygen dot image
                   19182:          size reduced
                   19183: 
                   19184: 2002-04-25  paf
                   19185: 
                   19186:        * src/targets/cgi/: parser3.C: setenv in .htaccess when cgi is not
                   19187:          under that dir got REDIRECT_ prefix before HTTP_PARSER_x_CONFIG,
                   19188:          now that took into account
                   19189: 
                   19190:        * operators.txt, src/classes/date.C: ^date::create[2002-12-33
                   19191:          01:03:04]
                   19192: 
                   19193:        * ChangeLog, operators.txt, src/classes/date.C:
                   19194:          ^date::create[2002-12-33 01:03:04]
                   19195: 
                   19196:        * ChangeLog: updated changelog
                   19197: 
                   19198:        * src/classes/table.C: removed restriction on column count to
                   19199:          ^table.hash to work, now must be >0 [were >1]
                   19200: 
                   19201: 2002-04-24  paf
                   19202: 
                   19203:        * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
                   19204:          targets/cgi/parser3.C, targets/cgi/parser3.dsp,
                   19205:          targets/isapi/parser3isapi.dsp, types/types.dsp: MSVC profile
                   19206:          targets
                   19207: 
                   19208: 2002-04-23  paf
                   19209: 
                   19210:        * operators.txt, src/classes/string.C:
                   19211:          int/double/string:sql{}[$.default{code}] fixed [were barking:
                   19212:          "junction used outside of context"]
                   19213: 
                   19214: 2002-04-22  paf
                   19215: 
                   19216:        * types.txt, src/classes/string.C, src/include/pa_string.h,
                   19217:          src/main/pa_string.C, src/types/pa_vstring.C,
                   19218:          src/types/pa_vstring.h: ^string.optimize[]
                   19219: 
                   19220:        * src/: include/pa_globals.h, include/pa_table.h,
                   19221:          main/pa_globals.C, main/pa_string.C, main/pa_table.C: fixed match
                   19222:          table template
                   19223: 
                   19224:        * src/classes/: string.C: optimize removed from string
                   19225:          .left/right/pos
                   19226: 
                   19227:        * src/main/execute.C: rolled back to
                   19228:          before_killing_userjunction_contexts
                   19229: 
                   19230:        * src/main/execute.C: user junctions context killed
                   19231: 
                   19232:        * src/main/execute.C: junctions to local contexts got
                   19233:          cleanized&checked later
                   19234: 
                   19235: 2002-04-19  paf
                   19236: 
                   19237:        * src/: classes/string.C, include/pa_request.h,
                   19238:          include/pa_string.h, main/pa_request.C, main/pa_string.C,
                   19239:          types/pa_vstring.C, types/pa_vstring.h: string now optimized
                   19240:          prior to .left .right .mid .pos .match when that is profitable,
                   19241:          and always before .replace when $ORIGINS(1) optimization disabled
                   19242:          economy from not wasting mem on lots of strings which occur by
                   19243:          lots of String:mid calls to get parts of source string between
                   19244:          found_occurances
                   19245: 
                   19246:        * src/classes/file.C: ovector now local economy: 16 bytes per
                   19247:          ^file:list
                   19248: 
                   19249:        * src/: include/pa_globals.h, include/pa_table.h,
                   19250:          main/pa_globals.C, main/pa_string.C: String::match table columns
                   19251:          globalized, not created @ each ^match anymore economy:
                   19252:          sizeof(Array)+space on 3+x cells=24+ bytes per ^match
                   19253: 
                   19254:        * src/: classes/op.C, classes/string.C, types/pa_value.h: VTable
                   19255:          removed from each String::match replace iteration, and made
                   19256:          stacked sizeof(VTable)=12bytes economy on each replace code
                   19257: 
                   19258:        * src/doc/footer.htm: 2001,
                   19259: 
                   19260:        * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
                   19261:          string.match[]['] option enables generation of $match.prematch
                   19262:          .match .postmatch columns
                   19263: 
                   19264:        * src/main/pa_string.C: String::match options analized without
                   19265:          cstr-ing them now
                   19266: 
                   19267:        * src/doc/: doxygen.cfg, footer.htm, html2chm.cmd, postbuild.txt,
                   19268:          sources2html.cmd, view_chm.cmd, view_html.cmd, chmhelper.pl:
                   19269:          config updated to doxygen 1.2.15, created helper which fixes
                   19270:          minor bugs in chm project files & htm tree.  changed extension to
                   19271:          .htm
                   19272: 
                   19273: 2002-04-18  paf
                   19274: 
                   19275:        * src/doc/doxygen.cfg: .chi generation disabled
                   19276: 
                   19277:        * src/: classes/classes.h, classes/xdoc.C, classes/xnode.C,
                   19278:          classes/xnode.h, types/pa_vxdoc.C: xdoc(xnode) now fully -
                   19279:          fields&methods
                   19280: 
                   19281:        * src/: classes/classes.h, classes/hash.C, types/pa_value.h,
                   19282:          types/pa_vbool.h, types/pa_vcookie.h, types/pa_vdate.h,
                   19283:          types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.h,
                   19284:          types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
                   19285:          types/pa_vjunction.h, types/pa_vobject.h, types/pa_vrequest.h,
                   19286:          types/pa_vresponse.h, types/pa_vstateless_class.h,
                   19287:          types/pa_vstateless_object.h, types/pa_vstatus.h,
                   19288:          types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h,
                   19289:          types/pa_vxdoc.h, types/pa_vxnode.h: fclass_real lowered from
                   19290:          VStateless_class to VObject
                   19291: 
                   19292:        * src/: main/pa_request.C, types/pa_valiased.h,
                   19293:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   19294:          types/pa_vstring.h: VStateless_string_object speicalized light
                   19295:          version of VStateless_object
                   19296: 
                   19297:        * src/classes/op.C: ^throw comment param made optional
                   19298: 
                   19299:        * src/types/: pa_valiased.C, pa_valiased.h, pa_vclass.h,
                   19300:          pa_vobject.h, pa_wcontext.C: VAliased get/set alias now virtual
                   19301:          and implemented down in VClass, fclass_alias removed,
                   19302: 
                   19303:        * src/types/pa_value.C: forced to cut that from .h because of
                   19304:          VStateless_class usage [undefined in .h]
                   19305: 
                   19306:        * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
                   19307:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   19308:          main/pa_request.C, types/pa_vmethod_frame.h: OP_GET_METHOD_FRAME
                   19309:          merged with OP_CALL, VCodeFrame move to stack [no more heap waste
                   19310:          on each CALL]
                   19311: 
                   19312:        * src/: classes/classes.h, classes/date.C, classes/double.C,
                   19313:          classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
                   19314:          classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
                   19315:          classes/response.C, classes/string.C, classes/table.C,
                   19316:          classes/void.C, classes/xnode.C, include/pa_globals.h,
                   19317:          include/pa_request.h, main/execute.C, main/pa_globals.C,
                   19318:          main/pa_request.C, types/Makefile.am, types/pa_value.h,
                   19319:          types/pa_vdouble.h, types/pa_vform.C, types/pa_vhash.h,
                   19320:          types/pa_vint.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
                   19321:          types/pa_vstateless_class.h, types/pa_wcontext.C,
                   19322:          types/pa_wcontext.h, types/pa_wwrapper.h, types/types.dsp:
                   19323:          removed Value::fname
                   19324: 
                   19325: 2002-04-17  paf
                   19326: 
                   19327:        * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
                   19328:          doc/ClassExample3.dox, doc/compiler.dox, doc/module.dox,
                   19329:          doc/pooled.dox, doc/string.dox, doc/targets.dox,
                   19330:          include/pa_pool.h, include/pa_types.h: dox updated to current
                   19331:          state, PTHROW freshen to throw & co
                   19332: 
                   19333:        * src/types/pa_vhash.h: vstring wrong parent fixed
                   19334: 
                   19335:        * src/classes/op.C: taint local result var bug fixed
                   19336: 
                   19337: 2002-04-16  paf
                   19338: 
                   19339:        * asm.txt, form.txt, lang.txt, sql.txt: removed outdated. see in
                   19340:          Attic asm.txt as most interesting
                   19341: 
                   19342:        * src/: main/pa_request.C, targets/isapi/parser3isapi.C: removed
                   19343:          check, preventing content-length: 0 from appearing
                   19344: 
                   19345:        * src/main/execute.C: $result in @main now taken into account as in
                   19346:          usual functions
                   19347: 
                   19348:        * src/: doc/postbuild.txt, main/execute.C: $result in @postprocess
                   19349:          & @unhandled_exception now taken into account as in usual
                   19350:          functions
                   19351: 
                   19352:        * src/doc/postbuild.txt: instructions on post .html build
                   19353: 
                   19354:        * src/doc/: doxygen.cfg, html2chm.cmd: .chm file only now, no .chi
                   19355: 
                   19356:        * src/: classes/file.C, main/pa_exec.C: stderr of execs mark as
                   19357:          tainted
                   19358: 
                   19359:        * src/main/pa_request.C: uri in error log
                   19360: 
                   19361:        * src/: classes/date.C, main/compile.tab.C, targets/cgi/parser3.C:
                   19362:          cheched date:create(days) param for validity [later were assumed
                   19363:          valid and crashed on invalid onces]
                   19364: 
                   19365:        * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
                   19366:          main/execute.C, targets/cgi/parser3.C: OP_CALL -> OP_CALL__WRITE
                   19367:          and used that for removing VString wrapper
                   19368: 
                   19369:        * src/classes/op.C: exception2vhash file now tainted
                   19370: 
                   19371:        * src/classes/op.C: _process pseudo origin copied from local var to
                   19372:          heap
                   19373: 
                   19374:        * src/classes/op.C: extra check on empty file in origin in _execute
                   19375: 
                   19376: 2002-04-15  paf
                   19377: 
                   19378:        * src/: main/execute.C, types/pa_value.h: fixed name update
                   19379: 
                   19380:        * src/classes/: file.C, op.C, table.C: finished dual write_xxx_lang
                   19381:          functions
                   19382: 
                   19383:        * src/: classes/file.C, classes/hash.C, classes/op.C,
                   19384:          include/pa_request.h, main/execute.C, types/pa_wcontext.h:
                   19385:          started dual write_xxx_lang functions, if checked & works
                   19386: 
                   19387:        * src/: classes/date.C, classes/file.C, classes/mail.C,
                   19388:          classes/string.C, classes/xnode.C, include/pa_request.h,
                   19389:          types/pa_value.h, types/pa_wcontext.h: removed absolutely
                   19390:          unnecessary VString shells
                   19391: 
                   19392:        * src/main/execute.C: CodeFrame soul fixed [mistakenly killed by
                   19393:          prev changes]
                   19394: 
                   19395:        * src/: classes/image.C, classes/op.C, classes/string.C,
                   19396:          classes/table.C, include/pa_request.h, main/execute.C,
                   19397:          types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
                   19398:          StringOrValue wcontext result, now ready for dual writes
                   19399: 
                   19400:        * src/targets/cgi/parser3.C: ctime sometimes can be just "",
                   19401:          checked that
                   19402: 
                   19403:        * src/main/: compile.tab.C, compile.y, compile_tools.C,
                   19404:          compile_tools.h, execute.C: OP_GET_ELEMENT+OP_GET_ELEMENT__WRITE
                   19405:          changed to OP_WRITE_VALUE in var get cases
                   19406: 
                   19407:        * src/: classes/op.C, include/pa_globals.h, include/pa_opcode.h,
                   19408:          include/pa_request.h, main/compile.tab.C, main/compile.y,
                   19409:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   19410:          main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C:
                   19411:          switch in hash constructor fixed [were problems with using of
                   19412:          stacked wwrapper after it's death]
                   19413: 
                   19414: 2002-04-12  paf
                   19415: 
                   19416:        * operators.txt, src/classes/table.C: table.select(expression) 0
                   19417: 
                   19418: 2002-04-11  paf
                   19419: 
                   19420:        * src/: classes/string.C, include/pa_request.h, main/execute.C:
                   19421:          Request::process_internal codeFrame & wwrapper stacked [not
                   19422:          wasting  heap anymore]
                   19423: 
                   19424: 2002-04-10  paf
                   19425: 
                   19426:        * src/: classes/double.C, classes/file.C, classes/hash.C,
                   19427:          classes/image.C, classes/int.C, classes/math.C, classes/op.C,
                   19428:          classes/string.C, classes/table.C, classes/void.C,
                   19429:          classes/xdoc.C, include/pa_request.h, main/execute.C,
                   19430:          main/pa_string.C: killed Request::process() wrapping
                   19431:          VString(String) in case we need only String
                   19432: 
                   19433:        * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
                   19434:          killed 8 bytes from String.head
                   19435: 
                   19436: 2002-04-09  paf
                   19437: 
                   19438:        * src/: main/compile.tab.C, targets/cgi/parser3.C,
                   19439:          targets/isapi/parser3isapi.C: removed {   char *a;   {      /*sub
                   19440:          local*/char b[...];      a=b; situations
                   19441: 
                   19442:        * operators.txt, src/classes/xdoc.C: xslt params made literal
                   19443: 
                   19444:        * src/classes/xdoc.C: xslt params fixed
                   19445: 
                   19446:        * src/: main/pa_common.C, targets/cgi/parser3.C,
                   19447:          types/pa_vdouble.h, types/pa_vint.h: int/double get_string now
                   19448:          not pool.malloc(MAX_NUMBER) but really neaded
                   19449: 
                   19450:        * operators.txt, src/classes/double.C, src/classes/int.C:
                   19451:          int/double.int/double(default)
                   19452: 
                   19453: 2002-04-04  paf
                   19454: 
                   19455:        * src/: include/pa_string.h, main/pa_string.C: fixed string.replace
                   19456:          [when reconstructing pieces were split by
                   19457:          max_integral(piece.size), thus some strings to replace happen to
                   19458:          be split into two = not replaced)
                   19459: 
                   19460:        * src/targets/cgi/: parser3.C, parser3.dsp: document root in
                   19461:          standalone version = current dir
                   19462: 
                   19463:        * src/targets/cgi/parser3.C: document root in standalone version =
                   19464:          current dir
                   19465: 
                   19466: 2002-04-03  paf
                   19467: 
                   19468:        * configure, configure.in: more checks on nonexistent charset
                   19469: 
1.116     moko     19470:        * INSTALL, configure, configure.in: root config configure options
1.95      moko     19471: 
                   19472: 2002-04-02  paf
                   19473: 
                   19474:        * src/main/compile.C: parser.compile [exception name more like in
                   19475:          doc]
                   19476: 
                   19477: 2002-04-01  paf
                   19478: 
                   19479:        * src/: classes/mail.C, include/pa_string.h, main/untaint.C,
                   19480:          targets/isapi/parser3isapi.dsp: mail subject encoding taken from
                   19481:          .content-type.charset, not .charset
                   19482: 
                   19483: 2002-03-29  paf
                   19484: 
                   19485:        * etc/parser3.charsets/koi8-r.cfg: koi8-r += ukranian letters
                   19486: 
                   19487:        * operators.txt, src/classes/date.C: ^date::create now may not
                   19488:          supply day, default 1.  checked 29.03 -> 29.02 roll on non 366
                   19489:          days' year.  | 31.05->31.04   roll
                   19490: 
                   19491: 2002-03-28  paf
                   19492: 
                   19493:        * operators.txt, src/classes/date.C, src/classes/op.C,
                   19494:          src/include/pa_globals.h, src/include/pa_hash.h,
                   19495:          src/main/pa_globals.C, src/types/pa_vdate.h: ^cache[file][date]{
                   19496:          ^cache(seconds)    ^cache[date] }
                   19497: 
                   19498:        * src/classes/: xdoc.C, xnode.C, xnode.h: removed redundant pool
                   19499:          param
                   19500: 
                   19501: 2002-03-27  paf
                   19502: 
                   19503:        * operators.txt, src/classes/date.C, src/classes/double.C,
                   19504:          src/classes/file.C, src/classes/form.C, src/classes/hash.C,
                   19505:          src/classes/image.C, src/classes/int.C, src/classes/mail.C,
                   19506:          src/classes/math.C, src/classes/op.C, src/classes/string.C,
                   19507:          src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
                   19508:          src/classes/xnode.C, src/include/pa_exception.h,
                   19509:          src/include/pa_request.h, src/include/pa_stylesheet_connection.h,
                   19510:          src/main/compile.C, src/main/compile_tools.C, src/main/execute.C,
                   19511:          src/main/pa_array.C, src/main/pa_charset.C,
                   19512:          src/main/pa_charsets.C, src/main/pa_common.C,
                   19513:          src/main/pa_dictionary.C, src/main/pa_exception.C,
                   19514:          src/main/pa_exec.C, src/main/pa_pool.C, src/main/pa_request.C,
                   19515:          src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
                   19516:          src/main/pa_string.C, src/main/pa_table.C, src/main/untaint.C,
                   19517:          src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
                   19518:          src/types/pa_value.h, src/types/pa_vcookie.C,
                   19519:          src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vhash.h,
                   19520:          src/types/pa_vmethod_frame.h, src/types/pa_vstatus.C,
                   19521:          src/types/pa_vtable.C, src/types/pa_vxdoc.h,
                   19522:          src/types/pa_vxnode.h, src/types/pa_wcontext.C,
                   19523:          src/types/pa_wwrapper.h: assigned exception types
                   19524: 
                   19525:        * operators.txt, src/classes/op.C, src/include/pa_config_fixed.h,
                   19526:          src/include/pa_request.h, src/main/execute.C,
                   19527:          src/main/pa_request.C: decided agains resetting exception_trace,
                   19528:          just changed name
                   19529: 
                   19530: 2002-03-26  paf
                   19531: 
                   19532:        * src/: include/pa_common.h, main/pa_exec.C: windows exec chdir
                   19533:          fixed
                   19534: 
                   19535:        * src/classes/op.C: forced language of $source field of exception
                   19536:          to 'tainted', so that sql-langed-frags could be outputed outside
                   19537:          of connect
                   19538: 
                   19539:        * operators.txt: removed date.roll limit of +-1 offset
                   19540: 
                   19541:        * src/classes/date.C: removed date.roll limit of +-1 offset
                   19542: 
                   19543:        * operators.txt, src/classes/date.C: fixed date roll on
                   19544:          daylightsaving days mktime took into account tm_isdst flag, which
                   19545:          remained from BEFORE roll, but should have been reset
                   19546: 
                   19547: 2002-03-25  paf
                   19548: 
                   19549:        * operators.txt, src/targets/cgi/parser3.C:
                   19550:          http_site_config_filespec
                   19551: 
                   19552:        * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
                   19553:          main/pa_exec.C: f(!forced_allow) to allow --with-sendmail to work
                   19554:          with any/both --disable-foreign-group-files --disable-execs
                   19555: 
                   19556:        * INSTALL: "--with=sendmail=COMMAND" comment
                   19557: 
                   19558:        * INSTALL, configure, configure.in, src/classes/mail.C,
                   19559:          src/include/pa_config_auto.h.in, src/main/pa_exec.C,
1.116     moko     19560:          src/targets/cgi/Makefile.am: --disable-foreign-group-files now
                   19561:          disables execs also.  introducing --sendmail
1.95      moko     19562: 
                   19563:        * operators.txt: pgsql options comment
                   19564: 
                   19565:        * INSTALL: comment on --disable-link-stdcpp
                   19566: 
1.116     moko     19567:        * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
                   19568:          libstdc++ link skipping configure option
1.95      moko     19569: 
                   19570:        * src/: classes/op.C, include/pa_sql_connection.h: sql connection
                   19571:          with error were put to cache with 'marked_to_rollback' flag, all
                   19572:          consequent even OK requests rolled back
                   19573: 
                   19574: 2002-03-22  paf
                   19575: 
                   19576:        * src/main/pa_exec.C: createprocess nowindow flag check on readfile
                   19577:          false return
                   19578: 
                   19579:        * operators.txt: few comments on sets
                   19580: 
                   19581: 2002-03-18  paf
                   19582: 
                   19583:        * operators.txt, src/classes/op.C, src/include/pa_exception.h,
                   19584:          src/include/pa_globals.h, src/include/pa_request.h,
                   19585:          src/include/pa_stack.h, src/main/pa_globals.C,
                   19586:          src/main/pa_request.C: introducing ^try
                   19587: 
                   19588:        * src/: main/pa_charset.C, targets/isapi/pa_threads.C,
                   19589:          types/pa_vdouble.h: removed some tested @tests
                   19590: 
                   19591: 2002-03-15  paf
                   19592: 
                   19593:        * operators.txt, src/classes/table.C: ^table.locate(logical expr)
                   19594: 
                   19595: 2002-03-13  paf
                   19596: 
                   19597:        * src/main/pa_exception.C: checked not-pooled malloc
                   19598: 
                   19599: 2002-03-11  paf
                   19600: 
                   19601:        * INSTALL, configure, configure.in,
                   19602:          src/include/pa_config_auto.h.in: --disable-foreign-group-files
                   19603: 
                   19604:        * src/main/pa_common.C: --disable-foreign-group-files
                   19605: 
                   19606:        * INSTALL: --disable-execs
                   19607: 
                   19608:        * src/main/pa_exec.C: --disable-execs
                   19609: 
                   19610:        * configure, configure.in, src/include/pa_config_auto.h.in:
                   19611:          --disable-execs
                   19612: 
                   19613:        * src/: include/pa_config_fixed.h, main/pa_exec.C: --disable-execs
                   19614: 
                   19615:        * src/types/pa_vfile.C: $file.text now 0A linebreaks,
                   19616:          file::exec/cgi linebreaks "0D0A" changed to 0A onces
                   19617: 
                   19618: 2002-03-05  paf
                   19619: 
                   19620:        * operators.txt, src/classes/date.C: date week calendar columns
                   19621:          named
                   19622: 
                   19623:        * operators.txt, src/classes/date.C: date week calendar columns
                   19624:          named
                   19625: 
                   19626:        * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: iis5 now
                   19627:          requires headers to be terminated with \r\n manually [refuses to
                   19628:          separate header/body itself]
                   19629: 
                   19630:        * src/: main/pa_globals.C, targets/cgi/parser3.C,
                   19631:          targets/isapi/parser3isapi.C: isapi site config beside .dll
                   19632: 
                   19633: 2002-03-04  paf
                   19634: 
                   19635:        * src/: classes/op.C, types/pa_vfile.C: process body now evaluated
                   19636:          in PASS language
                   19637: 
                   19638:        * src/: classes/op.C, include/pa_string.h, main/pa_string.C: string
                   19639:          deserialize checks on broken file
                   19640: 
                   19641:        * src/targets/isapi/: pa_threads.C, parser3isapi.C,
                   19642:          parser3isapi.dsp: isapi updated
                   19643: 
                   19644: 2002-03-01  paf
                   19645: 
                   19646:        * src/main/pa_exec.C: execle -> execve, now argc OK
                   19647: 
                   19648: 2002-02-28  paf
                   19649: 
                   19650:        * src/main/untaint.C: removed some debug comments
                   19651: 
                   19652:        * src/main/pa_charsets.C: when placing charset to cache using
                   19653:          global name now [were request]
                   19654: 
                   19655:        * configure, configure.in: apache module updated
                   19656: 
                   19657:        * src/main/pa_string.C: origin by first piece preferred before last
                   19658:          piece
                   19659: 
                   19660: 2002-02-27  paf
                   19661: 
                   19662:        * src/main/pa_charset.C: size_t
                   19663: 
                   19664:        * INSTALL: shared/static-xml with-pathlink
                   19665: 
                   19666:        * operators.txt: SMTP comment
                   19667: 
                   19668: 2002-02-26  paf
                   19669: 
                   19670:        * src/main/pa_exec.C: more precise names for vars, cosmetic
                   19671: 
                   19672:        * src/classes/xnode.C: in some situation, xpath query returned
                   19673:          result with type NODESET, but empty nodeset member field, checked
                   19674:          that
                   19675: 
                   19676: 2002-02-22  paf
                   19677: 
                   19678:        * INSTALL: without-zlib comment
                   19679: 
                   19680:        * etc/parser3.charsets/windows-1251.cfg: &deg;
                   19681: 
                   19682:        * configure, configure.in: glib###.a detection fixed
                   19683: 
                   19684:        * INSTALL: hashfile removed from INSTALL
                   19685: 
1.116     moko     19686:        * Makefile.am: make update
1.95      moko     19687: 
                   19688:        * src/main/pa_string.C: string iterators fixed again, so were
                   19689:          String::join_chain
                   19690: 
                   19691:        * src/main/pa_string.C: string iterators fixed again, so were
                   19692:          String::join_chain
                   19693: 
                   19694:        * src/: include/pa_string.h, main/pa_string.C: string iterators
                   19695:          fixed again, so were String::join_chain
                   19696: 
                   19697:        * src/types/pa_vcookie.C: cookie "expires=0" =  "session"
                   19698: 
                   19699:        * operators.txt, src/types/pa_vcookie.C: cookie "expires=0" =
                   19700:          "session"
                   19701: 
1.116     moko     19702:        * configure, configure.in, src/include/pa_config_auto.h.in:
                   19703:          --with-shared-xml --with-static-xml
1.95      moko     19704: 
                   19705:        * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
                   19706:          targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
                   19707:          types/types.dsp: *.dsp: removed refereces to win32db & ancient
                   19708:          xalan&xml
                   19709: 
                   19710:        * acconfig.h: acconfig move in cvs[from src/libltdl to /]
                   19711: 
                   19712:        * operators.txt, src/classes/classes.dsp, src/main/main.dsp,
                   19713:          src/types/types.dsp: removed hashfile support from sources for
                   19714:          now
                   19715: 
1.116     moko     19716:        * configure, configure.in, src/classes/Makefile.am,
1.95      moko     19717:          src/classes/hashfile.C, src/include/Makefile.am,
1.116     moko     19718:          src/include/pa_config_auto.h.in, src/include/pa_db_connection.h,
                   19719:          src/include/pa_db_manager.h, src/include/pa_db_table.h,
                   19720:          src/main/Makefile.am, src/main/pa_db_connection.C,
1.95      moko     19721:          src/main/pa_db_manager.C, src/main/pa_db_table.C,
1.116     moko     19722:          src/main/pa_globals.C, src/targets/cgi/Makefile.am,
                   19723:          src/types/Makefile.am, src/types/pa_vhashfile.C,
                   19724:          src/types/pa_vhashfile.h: removed hashfile support for now
1.95      moko     19725: 
                   19726: 2002-02-21  paf
                   19727: 
                   19728:        * src/main/untaint.C: removed debug code, activated commented-for
                   19729:          debug parts
                   19730: 
1.116     moko     19731:        * Makefile.am: make cvsupdate
1.95      moko     19732: 
                   19733:        * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
                   19734:          main/untaint.C: STRING_*FOREACH_ROW changed to stop at
                   19735:          append_row, not at link zero now string to string appending works
                   19736: 
                   19737: 2002-02-20  paf
                   19738: 
                   19739:        * src/: include/pa_string.h, main/execute.C, main/untaint.C,
                   19740:          targets/cgi/pa_pool.C, targets/cgi/parser3.C: //#define
                   19741:          DEBUG_STRING_APPENDS_VS_EXPANDS
                   19742: 
                   19743:        * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
                   19744:          economy: 22%
                   19745: 
                   19746:        * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
                   19747:          space uptimized: string::link_row removed
                   19748: 
                   19749:        * src/: include/pa_string.h, include/pa_stylesheet_connection.h,
                   19750:          main/pa_db_manager.C, main/pa_dictionary.C, main/pa_string.C,
                   19751:          main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
                   19752:          types/pa_vstring.h: speed uptimized: string::is_empty
                   19753: 
                   19754:        * operators.txt, src/include/pa_common.h,
                   19755:          src/include/pa_config_fixed.h, src/include/pa_string.h,
                   19756:          src/include/pa_types.h, src/main/compile.tab.C,
                   19757:          src/main/execute.C, src/main/pa_string.C, src/main/untaint.C,
                   19758:          src/targets/cgi/pa_pool.C, src/targets/cgi/parser3.C: strign to
                   19759:          string append optimiziation idea and estimates
                   19760: 
                   19761: 2002-02-19  paf
                   19762: 
                   19763:        * src/classes/math.C: not used directly [but erroreously reported
                   19764:          that 'is', thus registering twice&other probs]
                   19765: 
                   19766:        * src/classes/: xdoc.C, xnode.C: getElementsByTagName and *NS moved
                   19767:          to node [element]
                   19768: 
                   19769:        * src/main/compile.C: without string_origins parse error
                   19770:          file+line+col possible
                   19771: 
                   19772:        * src/main/: compile.C: without string_origins not worked
                   19773: 
                   19774: 2002-02-18  paf
                   19775: 
                   19776:        * src/types/pa_vdouble.h: since we have in_expression removed that
                   19777:          trick i've installed into double::as_string
                   19778: 
                   19779:        * src/main/pa_globals.C: extern "C" was removed too fast
                   19780: 
                   19781:        * src/: include/pa_opcode.h, include/pa_request.h,
                   19782:          main/compile.tab.C, main/compile.y, main/execute.C,
                   19783:          types/pa_wcontext.h: in_expression aimed to solve old problem
                   19784:          with string/nonstring values, now in expressions double/int
                   19785:          values are passed as-is, without stupid tostring/fromstring
                   19786:          conversions
                   19787: 
                   19788:        * src/main/: main.dsp, pa_globals.C: removed unneded #ifdef
                   19789:          __cplusplus } #endif
                   19790: 
                   19791:        * src/main/compile.tab.C: bison env set so one could compile
                   19792:          without cygwin installed
                   19793: 
                   19794:        * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
                   19795:          targets/cgi/parser3.dsp, types/types.dsp: win32xml now contains
                   19796:          gnome xml libs parser .dsp-s changed accordingly
                   19797: 
                   19798:        * operators.txt, src/targets/cgi/parser3.C: PARSER_ROOT_CONFIG
                   19799: 
                   19800:        * operators.txt, src/classes/date.C: date::create [were date::set,
                   19801:          with backward comp
                   19802: 
                   19803:        * src/classes/math.C: math:random range check fixed
                   19804: 
                   19805:        * src/main/: compile.tab.C, compile.y: integer  division stops name
                   19806: 
                   19807:        * INSTALL: local install comment
                   19808: 
1.116     moko     19809:        * ltconfig, ltmain.sh: removed libtool subpart files
1.95      moko     19810: 
1.116     moko     19811:        * acinclude.m4, aclocal.m4, configure, configure.in,
                   19812:          src/include/pa_config_auto.h.in,
                   19813:          src/include/pa_config_includes.h, src/targets/cgi/Makefile.am,
                   19814:          src/targets/cgi/parser3.C: removed libtool usage from build mech
1.95      moko     19815: 
                   19816:        * operators.txt: \ comment
                   19817: 
                   19818: 2002-02-13  paf
                   19819: 
                   19820:        * src/include/pa_config_includes.h: sys/time time both included
                   19821:          now.  vaguely remember confilicts on this on some system [not on
                   19822:          six|ablv] so when would see them again would think up proper
                   19823:          check
                   19824: 
1.116     moko     19825:        * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
                   19826:          --with-glib-config CXXLINK=$(CC) for targets/cgi/parser3
1.95      moko     19827: 
                   19828:        * src/main/pa_common.C: truncation never occured when writing files
                   19829:          on unix [since i've changed cache mech] fix
                   19830: 
                   19831:        * src/main/pa_common.C: strnchr: sanity check added
                   19832: 
                   19833:        * etc/parser3.charsets/windows-1257.cfg: id added
                   19834: 
                   19835:        * etc/parser3.charsets/windows-1257.cfg, src/targets/cgi/parser3.C:
                   19836:          baltic charset file generated, in generation script ispunct check
                   19837:          added
                   19838: 
                   19839: 2002-02-08  paf
                   19840: 
1.116     moko     19841:        * src/: include/Makefile.am, sql/Makefile.am,
                   19842:          targets/isapi/Makefile.am: forgotten makes
1.95      moko     19843: 
                   19844:        * src/types/: pa_vcookie.C: VCookie::fill_fields one check
                   19845:          forgotten
                   19846: 
                   19847:        * src/types/pa_vcookie.C: VCookie::fill_fields one check forgotten
                   19848: 
                   19849:        * INSTALL, README: install&others updated
                   19850: 
                   19851:        * AUTHORS, COPYING, ChangeLog, INSTALL: install&others updated
                   19852: 
1.116     moko     19853:        * Makefile.am, configure, configure.in,
                   19854:          etc/parser3.charsets/Makefile.am, src/Makefile.am,
                   19855:          src/classes/Makefile.am, src/main/Makefile.am,
                   19856:          src/main/pa_status_provider.C, src/targets/Makefile.am,
                   19857:          src/targets/cgi/Makefile.am, src/types/Makefile.am: 'make dist'
                   19858:          works
1.95      moko     19859: 
                   19860:        * src/: classes/classes.C, classes/classes.h, classes/date.C,
                   19861:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   19862:          classes/hashfile.C, classes/int.C, classes/mail.C,
                   19863:          classes/math.C, classes/op.C, classes/response.C,
                   19864:          classes/string.C, classes/table.C, classes/void.C,
                   19865:          classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   19866:          include/pa_array.h, include/pa_cache_managers.h,
                   19867:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   19868:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   19869:          include/pa_db_connection.h, include/pa_db_manager.h,
                   19870:          include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
                   19871:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   19872:          include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
                   19873:          include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
                   19874:          include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
                   19875:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   19876:          include/pa_stack.h, include/pa_string.h,
                   19877:          include/pa_stylesheet_connection.h,
                   19878:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   19879:          include/pa_threads.h, include/pa_types.h, main/compile.C,
                   19880:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   19881:          main/pa_array.C, main/pa_cache_managers.C, main/pa_charsets.C,
                   19882:          main/pa_db_connection.C, main/pa_db_manager.C,
                   19883:          main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
                   19884:          main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
                   19885:          main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
                   19886:          main/pa_sql_driver_manager.C, main/pa_status_provider.C,
                   19887:          main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
                   19888:          sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
                   19889:          targets/cgi/pa_threads.C, targets/cgi/pool_storage.h,
                   19890:          targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
                   19891:          targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
                   19892:          types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
                   19893:          types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
                   19894:          types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
                   19895:          types/pa_venv.h, types/pa_vfile.h, types/pa_vform.h,
                   19896:          types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.h,
                   19897:          types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
                   19898:          types/pa_vmethod_frame.h, types/pa_vobject.h,
                   19899:          types/pa_vrequest.h, types/pa_vresponse.h,
                   19900:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   19901:          types/pa_vstateless_object.h, types/pa_vstatus.C,
                   19902:          types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
                   19903:          types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
                   19904:          types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h,
                   19905:          classes/image.C, main/pa_common.C, main/pa_exec.C,
                   19906:          main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
                   19907:          types/pa_vfile.C, types/pa_vform.C, types/pa_vhashfile.C,
                   19908:          types/pa_vimage.C, types/pa_vrequest.C, types/pa_vresponse.C,
                   19909:          types/pa_vstring.C, types/pa_vtable.C, types/pa_vxdoc.C,
                   19910:          types/pa_vxnode.C, main/pa_charset.C: name spelling
                   19911: 
                   19912:        * src/: classes/classes.C, classes/classes.h, classes/date.C,
                   19913:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   19914:          classes/hashfile.C, classes/image.C, classes/int.C,
                   19915:          classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
                   19916:          classes/string.C, classes/table.C, classes/void.C,
                   19917:          classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   19918:          include/pa_array.h, include/pa_cache_managers.h,
                   19919:          include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
                   19920:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   19921:          include/pa_db_connection.h, include/pa_db_manager.h,
                   19922:          include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
                   19923:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   19924:          include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
                   19925:          include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
                   19926:          include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
                   19927:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   19928:          include/pa_stack.h, include/pa_string.h,
                   19929:          include/pa_stylesheet_connection.h,
                   19930:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   19931:          include/pa_threads.h, include/pa_types.h, main/compile.C,
                   19932:          main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
                   19933:          main/execute.C, main/pa_array.C, main/pa_cache_managers.C,
                   19934:          main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
                   19935:          main/pa_db_connection.C, main/pa_db_manager.C,
                   19936:          main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
                   19937:          main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
                   19938:          main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
                   19939:          main/pa_socks.C, main/pa_sql_driver_manager.C,
                   19940:          main/pa_status_provider.C, main/pa_string.C,
                   19941:          main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
                   19942:          sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
                   19943:          targets/cgi/pa_threads.C, targets/cgi/parser3.C,
                   19944:          targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
                   19945:          targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
                   19946:          targets/isapi/pool_storage.h, types/pa_valiased.C,
                   19947:          types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
                   19948:          types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
                   19949:          types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
                   19950:          types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
                   19951:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
                   19952:          types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
                   19953:          types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
                   19954:          types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
                   19955:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
                   19956:          types/pa_vresponse.h, types/pa_vstateless_class.C,
                   19957:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   19958:          types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
                   19959:          types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
                   19960:          types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   19961:          types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
                   19962:          types/pa_wcontext.h, types/pa_wwrapper.h: 2002
                   19963: 
                   19964: 2002-02-07  paf
                   19965: 
                   19966:        * src/main/pa_socks.C: swapped headers to avoid compiler warnings
                   19967: 
1.116     moko     19968:        * configure, configure.in, src/include/pa_config_auto.h.in,
                   19969:          src/main/pa_common.C, src/main/pa_socks.C: compiled under cygwin
                   19970:          added yet another locking function: fcntl
1.95      moko     19971: 
                   19972:        * config.sub: on cygwin configure passes it with strange i1586
                   19973:          const, hacked it to mean i586
                   19974: 
                   19975:        * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
                   19976:          disabled $if reference due to conflicts with local variables
                   19977: 
                   19978:        * operators.txt, src/classes/xdoc.C, src/include/pa_config_fixed.h:
                   19979:          xdoc::set obsolete now, now xdoc::create, with both sences
                   19980: 
                   19981:        * operators.txt, src/classes/table.C, src/include/pa_array.h,
                   19982:          src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
                   19983:          table::create now // 'set' name obsolete now table clone.
                   19984: 
                   19985:        * operators.txt, src/classes/string.C,
                   19986:          src/include/pa_config_fixed.h, src/main/compile.tab.C:
                   19987:          ^int/double/string.format now can be called with normal []
                   19988:          brackets, not stupid {} as it were implemented for some strange
                   19989:          reason.  retaining backward compatibility due to some
                   19990:          already-implemented servers
                   19991: 
                   19992:        * src/: include/pa_array.h, main/compile.C, main/compile.tab.C,
                   19993:          main/compile.y, main/compile_tools.C, main/compile_tools.h:
                   19994:          operators now detected by check at name_without_curly_rdive_read
                   19995:          rule whether diving code constists only of
                   19996:          OP_VALUE+string+OP_GET_ELEMENT.  and last op code substituted
                   19997:          with OP_GET_ELEMENT_OR_OPERATOR to form
                   19998:          OP_VALUE+string+OP_GET_ELEMENT_OR_OPERATOR.  code
                   19999: 
                   20000: 2002-02-06  paf
                   20001: 
                   20002:        * configure, configure.in: prefix expanded, grr
                   20003: 
                   20004:        * operators.txt, src/classes/mail.C: mail:send config changed
                   20005: 
                   20006: 2002-02-05  paf
                   20007: 
                   20008:        * operators.txt: regex options commented
                   20009: 
                   20010:        * src/main/: pa_exec.C: argv0 now correct
                   20011: 
                   20012:        * src/types/pa_vstatus.C: status:rusage 3
                   20013: 
                   20014:        * src/types/pa_vstatus.C: status:rusage 2
                   20015: 
                   20016:        * operators.txt: status:rusage described int operators
                   20017: 
                   20018:        * src/types/pa_vstatus.C: status:rusage 1
                   20019: 
                   20020:        * configure.in, src/types/Makefile.am, src/types/pa_vstatus.h,
                   20021:          src/types/types.dsp: status:rusage
                   20022: 
                   20023:        * configure.in, operators.txt, src/classes/file.C,
                   20024:          src/classes/op.C, src/include/pa_common.h,
                   20025:          src/include/pa_config_includes.h, src/main/compile.tab.C,
                   20026:          src/main/pa_common.C: rewritten ^cache to use
                   20027:          non-blocking-exclusive-caches
                   20028: 
                   20029:        * src/main/pa_common.C: text file read mode on win32 adjusted
                   20030:          [speed impact. was off for debugging purpose, but forgotten
                   20031:          afterwards]
                   20032: 
                   20033: 2002-02-01  paf
                   20034: 
                   20035:        * src/classes/op.C: file_write does EX lock after create, while
                   20036:          file_read does SH after open, so there's a moment after create
                   20037:          but before EX lock when read can sneak into, and read
                   20038:          just-created-for-writing-and-not-yet-locked file, added a check
                   20039:          for that in ^cache...read
                   20040: 
                   20041: 2002-01-31  paf
                   20042: 
                   20043:        * src/main/: compile.y, compile.tab.C: disabled operator call after
                   20044:          ^xxx:
                   20045: 
                   20046:        * src/main/: compile.tab.C, execute.C: made operators lookup first
                   20047:          in ^xxx situation.  so that one could not do $if[1] ^if[xxx]
                   20048: 
                   20049:        * src/: include/pa_opcode.h, include/pa_request.h, main/compile.C,
                   20050:          main/compile.tab.C, main/compile.y, main/compile_tools.C,
                   20051:          main/compile_tools.h, main/execute.C, types/pa_wcontext.h:
                   20052:          operators check 6.1 rewritten. now check is done at compile time
                   20053: 
                   20054:        * src/main/execute.C: operators check 5 floated up old error of
                   20055:          staying in 'entered class/object' state after $a($a..) it
                   20056:          prevented operators from being called thereafter
                   20057: 
                   20058:        * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
                   20059:          main/execute.C: operators check 4 floated up old error of staying
                   20060:          in 'entered object' state after ^a.a(a) it prevented operators
                   20061:          from being called thereafter
                   20062: 
                   20063:        * src/main/execute.C: operators check 3 floated up old error of
                   20064:          staying in 'entered class' state after $a:a(a) it prevented
                   20065:          operators from being called thereafter
                   20066: 
                   20067:        * src/: main/execute.C, types/pa_wcontext.h: operators check 2
                   20068:          floated up old error of staying in 'entered class' state after
                   20069:          $a:a[a] it prevented operators from being called thereafter
                   20070: 
                   20071:        * src/main/execute.C: operators check, thay mistakenly seen in
                   20072:          $class:operator   $object.operators contexts
                   20073: 
                   20074:        * src/: classes/xdoc.C, targets/cgi/parser3.dsp: now compiles under
                   20075:          win32
                   20076: 
1.116     moko     20077:        * INSTALL, configure, configure.in, ident.awk, etc/Makefile.am,
                   20078:          src/classes/Makefile.am, src/main/Makefile.am,
                   20079:          src/targets/cgi/Makefile.am,
1.95      moko     20080:          src/targets/cgi/pa_config_paths.h.in, src/targets/cgi/parser3.C,
1.116     moko     20081:          src/types/Makefile.am: lowered indent.awk back to src/
1.95      moko     20082: 
1.116     moko     20083:        * AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, NEWS, README,
                   20084:          acinclude.m4, aclocal.m4, asm.txt, config.guess, config.sub,
                   20085:          configure, configure.in, form.txt, ident.awk, install-sh,
                   20086:          lang.txt, ltconfig, ltmain.sh, missing, mkinstalldirs,
                   20087:          operators.txt, parser3.dsw, sql.txt, types.txt, etc/Makefile.am,
1.95      moko     20088:          etc/parser3.charsets/Makefile.am,
                   20089:          etc/parser3.charsets/koi8-r.cfg,
                   20090:          etc/parser3.charsets/windows-1250.cfg,
                   20091:          etc/parser3.charsets/windows-1251.cfg, src/Makefile.am,
1.116     moko     20092:          src/classes/Makefile.am, src/include/pa_config_auto.h.in,
                   20093:          src/main/Makefile.am, src/targets/cgi/Makefile.am,
                   20094:          src/targets/cgi/parser3.C, src/types/Makefile.am: moved etc&www
                   20095:          out of src, moved configure&co out of src added windows-1250.cfg
1.95      moko     20096:          straightened installation scripts procedure made
                   20097:          targets/cgi/parser3.C be dependant on ./configure --sysconfdir
                   20098:          change
                   20099: 
                   20100: 2002-01-30  paf
                   20101: 
                   20102:        * src/classes/xdoc.C: acconfig.h changed [comments before #undefs
                   20103:          removed] those comments were a mistake, and prevented libltdl
                   20104:          from function properly
                   20105: 
                   20106: 2002-01-29  paf
                   20107: 
1.116     moko     20108:        * src/: Makefile.am, classes/Makefile.am: removed libltdl/libtool
                   20109:          creation [modified acinclude.m4 which were creating int into just
                   20110:          assignment LIBTOOL=../libtool] added default system
                   20111:          config&charsetts prepared 'make install', now it installs
                   20112:          targets/cgi/parser3 into bin directory etc/parser3.conf &
                   20113:          etc/parser3.charsets/* into $sysconfdir and
1.95      moko     20114:          $sysconfdir/parser3.charsets respectively
                   20115: 
                   20116:        * src/: classes/xdoc.C, include/pa_charset.h, include/pa_globals.h,
                   20117:          main/pa_globals.C: few forgotten ifdef XML added
                   20118: 
                   20119: 2002-01-28  paf
                   20120: 
1.116     moko     20121:        * src/: classes/Makefile.am, targets/cgi/Makefile.am: xalan-patch
1.95      moko     20122:          removed
                   20123: 
                   20124:        * src/main/pa_exception.C: dom|generic error output fix
                   20125: 
                   20126:        * src/classes/xnode.C: xdoc.importNode 3 [check err]
                   20127: 
                   20128:        * src/classes/xnode.C: xdoc.importNode 2 [mistype err]
                   20129: 
                   20130:        * src/: classes/xnode.C, types/pa_vxdoc.h: xdoc.importNode 1
                   20131:          [fixed as_node helper func to accept docs]
                   20132: 
                   20133:        * src/: classes/xdoc.C, classes/xnode.h, main/pa_exception.C:
                   20134:          xdoc.importNode 0
                   20135: 
                   20136:        * src/classes/xdoc.C: xdoc::set now untaints OK
                   20137: 
                   20138: 2002-01-25  paf
                   20139: 
                   20140:        * src/main/: compile.tab.C, compile.y: #comment  before @ after
                   20141:          @SPECIAL now works OK
                   20142: 
                   20143:        * src/main/: pa_exec.C: unix: exec now does chdir to script dir
                   20144: 
                   20145:        * src/main/pa_exec.C: max arg count now 10, and proper message on
                   20146:          violation that added
                   20147: 
                   20148:        * src/classes/hash.C: unified  hash::sql, now
                   20149:          ^hash::sql{query}[[$.limit(2) $.offset(4)]]
                   20150: 
                   20151:        * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
                   20152:          ^file:lock[filename]{code}
                   20153: 
                   20154:        * src/: classes/file.C, classes/op.C, classes/string.C,
                   20155:          classes/table.C, classes/xdoc.C, include/pa_common.h,
                   20156:          main/pa_common.C, types/pa_vfile.h: removed redundant pool param
                   20157:          to some pa_common funcs
                   20158: 
                   20159:        * src/: include/pa_charset.h, main/pa_globals.C:
                   20160:          http://localhost/abc -> $ENV{DOCUMENT_ROOT}/abc | ./abc
                   20161: 
                   20162:        * src/: include/pa_charset.h, main/pa_charset.C,
                   20163:          include/pa_config_fixed.h, main/compile.tab.C: typedef XMLCh...
                   20164:          not stupid illegal define
                   20165: 
                   20166: 2002-01-24  paf
                   20167: 
                   20168:        * src/include/pa_version.h: changed version number
                   20169: 
                   20170:        * src/: classes/hashfile.C, include/pa_db_table.h,
                   20171:          include/pa_opcode.h, main/compile.tab.C, main/compile.y,
                   20172:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   20173:          main/pa_db_connection.C, main/pa_db_table.C,
                   20174:          types/pa_vhashfile.C, types/pa_vhashfile.h: merged from r17 -
                   20175:          hashfile without logfiles
                   20176: 
                   20177:        * src/: classes/hashfile.C, include/pa_db_table.h,
                   20178:          main/compile.tab.C, main/pa_db_connection.C, main/pa_db_table.C,
                   20179:          types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile: removed use
                   20180:          of transactions [libdb removed DB_INIT_LOCK, DB_INIT_LOG,
                   20181:          DB_INIT_TXN init bits, thus got rid of huge log files, which
                   20182:          cluttered disk without huge need]
                   20183: 
                   20184:        * src/classes/: xdoc.C, xnode.C, xnode.h: gdome_xml_doc_get_xmlDoc
                   20185:          handy macro, which is strangly abscent in dome lib
                   20186: 
                   20187:        * src/classes/xdoc.C: xsltSaveResultTo checked <0 response
                   20188: 
                   20189:        * src/classes/xdoc.C: checked empty response
                   20190: 
                   20191:        * src/classes/xnode.C: xdoc.select fixed context node [were always
                   20192:          /, not self node]
                   20193: 
                   20194:        * src/classes/xnode.C: xnode.select returns array always now, in
                   20195:          case 'nothing found' returns empty array
                   20196: 
                   20197:        * src/classes/xnode.C: xpath nodes select bug [0] instead of [i],
                   20198:          be more tender with ctrl/c/v
                   20199: 
                   20200: 2002-01-23  paf
                   20201: 
                   20202:        * src/: classes/xdoc.C, main/pa_globals.C: xdoc::load/set entities
                   20203:          substituted.         // 2. when dom tree with entites goes under
                   20204:          transform text nodes        // got [erroreosly] cut on first
                   20205:          entity occurance
                   20206: 
                   20207:        * src/types/pa_vdouble.h: double prec. todo: get rid of
                   20208:          twice-converting
                   20209: 
                   20210:        * src/types/pa_vdouble.h: %.20E now float format when %g produced
                   20211:          'e' in output this is for regretful twice-converting here:
                   20212:          $a(double value) when they write double falue  they convert it to
                   20213:          string first, thus %g were losing precesion.
                   20214: 
                   20215:          todo: think up some way to remove double->string string->double
                   20216:          twice-converting
                   20217: 
                   20218:        * src/: classes/xdoc.C, main/pa_globals.C, types/pa_vdouble.h:
                   20219:          %.20E now default float format this is for regretful
                   20220:          twice-converting here: $a(double value) when they write double
                   20221:          falue  they convert it to string first, thus %g were losing
                   20222:          precesion.
                   20223: 
                   20224:          todo: think up some way to remove double->string string->double
                   20225:          twice-converting
                   20226: 
                   20227:        * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
                   20228:          main/pa_globals.C: xmlSubstituteEntitiesDefault(1) now global,
                   20229:          reasons in comment inside
                   20230: 
                   20231:        * src/main/pa_globals.C: xslt linked dynamically. [mistekenly were
                   20232:          statically linked]
                   20233: 
                   20234:        * src/: include/pa_exception.h, main/compile.tab.C,
                   20235:          main/pa_exception.C: removed exception va_list constructor.  1.
                   20236:          not needed anymore 2. there were a conflict[causing errors]
                   20237:          between ctor(, va_list) ctor(, ...) compiler[both msvc and gcc]
                   20238:          never detected an ambiguilty here, compiling ctor(, "hello") into
                   20239:          ctor(, va_list) which, of course, caused gpf
                   20240: 
                   20241:        * src/main/pa_globals.C: removed debug xslt messages
                   20242: 
                   20243: 2002-01-22  paf
                   20244: 
                   20245:        * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
                   20246:          main/pa_globals.C: xsl stylesheet load: parsed entities, this
                   20247:          helps compiling stylesheet properly.  example: this refused to
                   20248:          work,             <b>&laquo;<xsl:value-of select="@title"
                   20249:          />&raquo;</b> stranly worked only this way:
                   20250:          <b>&#171;<xsl:value-of select="@title" />&raquo;</b>
                   20251: 
                   20252:          docs says "set it to 1", never going into details, so I decided
                   20253:          to try NOT to do that
                   20254: 
                   20255:        * src/classes/table.C: join behaived badly in case named tables
                   20256:          structure mismatched: 0 strings sneaked into dest failing
                   20257:          afterwards.  replaced them with empty strings
                   20258: 
                   20259: 2002-01-21  paf
                   20260: 
                   20261:        * src/main/pa_charset.C: checked empty transcoders in
                   20262:          transcode_cstr|buf
                   20263: 
                   20264:        * src/classes/xdoc.C: xdoc::load error source = filespec
                   20265: 
                   20266:        * src/classes/xdoc.C: transform error source now
                   20267:          stylesheet_filespec
                   20268: 
1.116     moko     20269:        * src/: classes/xdoc.C, classes/xnode.C,
1.95      moko     20270:          include/pa_stylesheet_connection.h, main/pa_charset.C,
                   20271:          main/pa_globals.C, main/pa_sql_driver_manager.C,
1.116     moko     20272:          main/pa_stylesheet_manager.C, targets/cgi/Makefile.am: autoconf
                   20273:          gnome
1.95      moko     20274: 
                   20275:        * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
                   20276:          include/pa_globals.h, include/pa_stylesheet_connection.h,
                   20277:          main/pa_exception.C, main/pa_globals.C, targets/cgi/pa_threads.C:
                   20278:          xslt generic error 1
                   20279: 
                   20280:        * src/: include/pa_stylesheet_connection.h, main/pa_exception.C:
                   20281:          xml generic message 1
                   20282: 
                   20283:        * src/classes/table.C: ^table::load empty lines or #comments before
                   20284:          headline
                   20285: 
                   20286:        * src/: include/pa_array.h, include/pa_globals.h,
                   20287:          include/pa_request.h, include/pa_threads.h, main/pa_array.C,
                   20288:          main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
                   20289:          targets/cgi/pa_threads.C, targets/isapi/pa_threads.C: xml generic
                   20290:          errors 0
                   20291: 
                   20292: 2002-01-16  paf
                   20293: 
                   20294:        * src/: classes/hash.C, classes/op.C, classes/string.C,
                   20295:          classes/table.C, classes/void.C, classes/xdoc.C,
                   20296:          include/pa_db_connection.h, include/pa_request.h,
                   20297:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   20298:          include/pa_stylesheet_connection.h,
                   20299:          include/pa_stylesheet_manager.h, main/pa_request.C,
                   20300:          main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
                   20301:          targets/cgi/pool_storage.h: auto closers to sql_connection,
                   20302:          stylesheet_connection auto destroyers to remaining gnome objects
                   20303: 
                   20304:        * src/classes/xdoc.C: few comments
                   20305: 
                   20306: 2002-01-15  paf
                   20307: 
                   20308:        * src/classes/xdoc.C: xdoc   file   save   string
                   20309: 
                   20310:          ready.  todo: error handling
                   20311: 
                   20312:        * src/classes/xdoc.C: xdoc save rewritten using
                   20313:          xmlAllocOutputBuffer less mallocs, more reallocs. less fragmented
                   20314:          result
                   20315: 
                   20316:        * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C:
                   20317:          started output options parsing
                   20318: 
                   20319: 2002-01-14  paf
                   20320: 
                   20321:        * src/classes/xdoc.C: method
                   20322: 
                   20323:        * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
                   20324:          include/pa_pool.h, include/pa_stylesheet_connection.h,
                   20325:          main/main.dsp, main/pa_charset.C, main/pa_globals.C,
                   20326:          main/pa_pool.C, main/pa_stylesheet_manager.C, types/pa_vxdoc.h:
                   20327:          xslt transform0.  TODO:   use output options   handle errors
                   20328: 
                   20329:        * src/classes/: xdoc.C, xnode.C: ^xdoc.file
                   20330: 
                   20331: 2002-01-11  paf
                   20332: 
                   20333:        * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
                   20334:          main/compile_tools.C, main/compile_tools.h, main/execute.C:
                   20335:          partial logical && || evaluation
                   20336: 
                   20337:        * src/classes/xnode.C: xpath selectNodes
                   20338: 
                   20339:        * src/: classes/xnode.C, include/pa_charset.h: xpath selectNode 3:
                   20340:          string/number/bool
                   20341: 
                   20342:        * src/classes/xnode.C: xpath selectNode 2
                   20343: 
                   20344:        * src/: classes/xnode.C, include/pa_charset.h, main/pa_charset.C:
                   20345:          xpath selectNode 1
                   20346: 
                   20347: 2002-01-10  paf
                   20348: 
                   20349:        * src/classes/xnode.C: xpath selectNode -100 [just written]
                   20350: 
                   20351:        * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
                   20352:          include/pa_exception.h, include/pa_pool.h, main/pa_charset.C,
                   20353:          main/pa_pool.C: GdomeDOMString_auto_ptr  c++ wrapper [calls
                   20354:          refcounter]
                   20355: 
                   20356: 2001-12-29  paf
                   20357: 
                   20358:        * src/: classes/xdoc.C, include/pa_exception.h, main/pa_charset.C,
                   20359:          main/pa_exception.C, main/pa_globals.C: xdoc ^set ^string with
                   20360:          glib works 0
                   20361: 
                   20362: 2001-12-28  paf
                   20363: 
                   20364:        * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C,
                   20365:          main/pa_exception.C: started glib transcoders
                   20366: 
                   20367:        * src/main/pa_globals.C: renamed gdome to libgdome.dll
                   20368: 
                   20369:        * src/: classes/classes.dsp, classes/mail.C, classes/xdoc.C,
                   20370:          classes/xnode.C, classes/xnode.h, include/pa_exception.h,
                   20371:          include/pa_globals.h, main/compile.tab.C, main/main.dsp,
                   20372:          main/pa_charset.C, main/pa_dir.C, main/pa_exception.C,
                   20373:          main/pa_exec.C, main/pa_globals.C, main/pa_socks.C,
                   20374:          targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vxdoc.C,
                   20375:          types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: gnome
                   20376:          libs just compiled in.  no refcounting no xpath no xslt   yet
                   20377: 
                   20378: 2001-12-27  paf
                   20379: 
                   20380:        * src/: include/pa_charset.h, include/pa_common.h,
                   20381:          include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
                   20382:          main/main.dsp, main/pa_charset.C, main/pa_charsets.C,
                   20383:          main/pa_globals.C, main/pa_pool.C, targets/cgi/parser3.C,
                   20384:          targets/cgi/parser3.dsp, types/pa_vxdoc.C, types/pa_vxdoc.h,
                   20385:          types/pa_vxnode.C, types/pa_vxnode.h, types/types.dsp: going away
                   20386:          from xalan&xerces, started the process.  globals [initialization
                   20387:          pool [charset update charset [transcodings vxnode vxdoc [DOM
                   20388:          calls
                   20389: 
                   20390:        * src/classes/Makefile.am: going away from xalan&xerces, not needed
                   20391:          anymore
                   20392: 
                   20393: 2001-12-26  paf
                   20394: 
                   20395:        * src/: include/pa_charset.h, include/pa_charsets.h,
                   20396:          main/pa_charset.C, main/pa_charsets.C, main/pa_request.C: charset
                   20397:          key globalized [bug]
                   20398: 
                   20399: 2001-12-25  paf
                   20400: 
                   20401:        * src/: classes/mail.C, classes/table.C, include/pa_string.h,
                   20402:          main/pa_string.C: table set & append changed splitting languages,
                   20403:          separators now can be clean AND as-is same to mail command line
                   20404:          $MAIN:MAIL.progX arguments
                   20405: 
                   20406: 2001-12-24  paf
                   20407: 
                   20408:        * src/classes/mail.C: one parted text messages - no multipart
                   20409:          mime-type anymore.  for convinient if $.attach-ments
                   20410: 
                   20411:        * src/: classes/hashfile.C, classes/op.C, main/pa_db_table.C,
                   20412:          main/pa_string.C: read from cache size check updated
                   20413: 
                   20414:        * src/main/: pa_string.C: String::join_chain another ugly bug :(
                   20415: 
                   20416: 2001-12-21  paf
                   20417: 
                   20418:        * src/classes/date.C: date:sql-string now returns localtime
                   20419: 
                   20420:        * src/main/pa_request.C: $result in @main actually not working, to
                   20421:          hell with it for now
                   20422: 
                   20423:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
                   20424:          types/pa_vmethod_frame.h, types/pa_wcontext.h: $result in @main
                   20425:          @postprocess @exception
                   20426: 
                   20427:        * src/main/execute.C: junction evaluation canceled - endless
                   20428:          recursion detected
                   20429: 
                   20430: 2001-12-19  paf
                   20431: 
                   20432:        * src/main/pa_charset.C: charset->charset transcoding via unicode
                   20433:          intermediate
                   20434: 
                   20435:        * src/main/pa_request.C: CLASS_PATH now / = DOCUMENT_ROOT
                   20436: 
                   20437:        * src/classes/hashfile.C: ^hashfile.open DB_HOME now relative
                   20438: 
                   20439:        * src/classes/op.C: ^cache keypath now relative
                   20440: 
                   20441:        * src/classes/mail.C: changed weighting prior to sort
                   20442: 
                   20443:        * src/: classes/mail.C, include/pa_config_fixed.h: to/from 0 check
                   20444:          were missing
                   20445: 
                   20446: 2001-12-17  paf
                   20447: 
                   20448:        * src/main/pa_charset.C: ifndef XML were bad type
                   20449: 
                   20450:        * src/: include/pa_db_table.h, main/pa_db_table.C: db_table used
                   20451:          outdated unset services_pool
                   20452: 
                   20453:        * src/: classes/mail.C, include/pa_charsets.h, include/pa_string.h,
                   20454:          main/pa_charsets.C, main/untaint.C, types/pa_vrequest.C,
                   20455:          types/pa_vresponse.C: ^mail:send[    $.charset[zzz] addded
                   20456: 
                   20457:        * src/main/untaint.C: allowed space in filespec
                   20458: 
                   20459:        * src/main/pa_charset.C: empty bufs transcode [forgot check :(]
                   20460: 
                   20461:        * src/classes/image.C: no govno
                   20462: 
                   20463:        * src/classes/image.C: govno
                   20464: 
                   20465: 2001-12-16  paf
                   20466: 
                   20467:        * src/include/: pa_charset.h, pa_charsets.h: forgot to add
                   20468: 
                   20469:        * src/: main/Makefile.am, main/pa_charset.C, types/Makefile.am:
                   20470:          charset_connection&manager replaced by charset&charsets
                   20471: 
                   20472:        * src/main/pa_charset.C: name_cstr 0
                   20473: 
                   20474:        * src/main/untaint.C: uri lang now knows about client/source
                   20475:          charsets
                   20476: 
                   20477:        * src/: classes/file.C, classes/math.C, classes/op.C,
                   20478:          classes/string.C, classes/table.C, classes/xdoc.C,
                   20479:          include/pa_array.h, include/pa_cache_managers.h,
                   20480:          include/pa_charset_connection.h, include/pa_charset_manager.h,
                   20481:          include/pa_common.h, include/pa_db_connection.h,
                   20482:          include/pa_db_manager.h, include/pa_db_table.h,
                   20483:          include/pa_dictionary.h, include/pa_exception.h,
                   20484:          include/pa_exec.h, include/pa_globals.h, include/pa_hash.h,
                   20485:          include/pa_opcode.h, include/pa_pool.h, include/pa_request.h,
                   20486:          include/pa_sapi.h, include/pa_socks.h,
                   20487:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   20488:          include/pa_string.h, include/pa_stylesheet_connection.h,
                   20489:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   20490:          include/pa_transcoder.h, main/compile_tools.h, main/main.dsp,
                   20491:          main/pa_charset.C, main/pa_charset_connection.C,
                   20492:          main/pa_charset_manager.C, main/pa_charsets.C, main/pa_globals.C,
                   20493:          main/pa_pool.C, main/pa_request.C, main/pa_string.C,
                   20494:          main/pa_transcoder.C, main/untaint.C, types/pa_vfile.C,
                   20495:          types/pa_vform.C, types/pa_vform.h, types/pa_vrequest.C,
                   20496:          types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
                   20497:          types/types.dsp: introducing Charset
                   20498: 
                   20499: 2001-12-14  paf
                   20500: 
                   20501:        * src/: include/pa_request.h, include/pa_transcoder.h,
                   20502:          main/pa_request.C, main/pa_transcoder.C, types/pa_vform.C,
                   20503:          types/pa_vform.h: transcodeToUTF8[were FromUTF8] for forms todo:
                   20504:          uri lang
                   20505: 
                   20506:        * src/main/pa_transcoder.C: transcodeToUTF8, now form&uri lang
                   20507: 
                   20508:        * src/targets/cgi/Makefile.am: -I../../pcre  to .am
                   20509: 
                   20510:        * src/: include/pa_globals.h, main/pa_globals.C: removed unused
                   20511:          defalts_name global
                   20512: 
                   20513:        * src/: include/pa_charset_connection.h, include/pa_pool.h,
                   20514:          include/pa_request.h, main/main.dsp,
                   20515:          main/pa_charset_connection.C, main/pa_charset_manager.C,
                   20516:          main/pa_request.C, types/Makefile.am, types/pa_vrequest.C,
                   20517:          types/pa_vrequest.h, types/pa_vresponse.h, types/types.dsp,
                   20518:          include/pa_transcoder.h, main/pa_transcoder.C, main/Makefile.am:
                   20519:          changed charset model.  now important: $request:charset
                   20520:          $response:charset while $response:content-type.charset become
                   20521:          unimportant [informational]
                   20522: 
                   20523: 2001-12-13  paf
                   20524: 
                   20525:        * src/targets/: cgi/pa_pool.C, isapi/pa_pool.C: EOL@EOF
                   20526: 
                   20527:        * src/classes/xdoc.C: rewritten auto_ptr part other way2, because
                   20528:          of stupid gcc 2.96 /usr/include/g++-3/memory:40: candidates are:
                   20529:          auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with
                   20530:          _Tp = FormatterListener] /usr/include/g++-3/memory:48:
                   20531:          auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &)
                   20532:          [with _Tp1 = FormatterListener, _Tp = FormatterListener]
                   20533: 
                   20534:        * src/: classes/xdoc.C, main/pa_sql_driver_manager.C: rewritten
                   20535:          auto_ptr part other way, because of stupid gcc 2.96
                   20536:          /usr/include/g++-3/memory:40: candidates are: auto_ptr<_Tp>
                   20537:          &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with _Tp =
                   20538:          FormatterListener] /usr/include/g++-3/memory:48:
                   20539:          auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &) [with
                   20540:          _Tp1 = FormatterListener, _Tp = FormatterListener]
                   20541: 
                   20542:        * src/classes/xdoc.C: removed extra inc
                   20543: 
                   20544:        * src/targets/cgi/: pa_pool.C, parser3.C: msvc heap debugging flag
                   20545: 
                   20546:        * src/include/pa_types.h: msvc head debugging flag
                   20547: 
                   20548:        * src/classes/xdoc.C: freed up listener
                   20549: 
                   20550:        * src/classes/string.C: change msg '... code is not code'
                   20551: 
                   20552:        * src/: main/pa_db_connection.C, main/pa_db_manager.C,
                   20553:          main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
                   20554:          targets/cgi/pool_storage.h: couple cache expiratiors were wrong
                   20555:          [past/future prob]
                   20556: 
                   20557:        * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
                   20558:          include/pa_config_fixed.h, include/pa_db_manager.h,
                   20559:          include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
                   20560:          main/pa_cache_managers.C, main/pa_globals.C: ~Cache_managers
                   20561: 
                   20562:        * src/: include/pa_config_fixed.h, main/pa_common.C,
                   20563:          main/pa_string.C: removed signed mismatch warnings
                   20564: 
                   20565:        * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: removed
                   20566:          'expires' from header outputs
                   20567: 
                   20568:        * src/main/pa_string.C: string::recustruct erroreusly used outdated
                   20569:          row ptr
                   20570: 
                   20571:        * src/classes/file.C: file::cgi bug, request_method were passed to
                   20572:          SERVER_PROTOCOL but SERVER_PROTOCOL were forgotten
                   20573: 
                   20574:        * src/classes/xdoc.C: lang list updated
                   20575: 
                   20576: 2001-12-10  paf
                   20577: 
                   20578:        * src/classes/math.C: ^math:random(n) now yields[0;n) not [0;n]
                   20579: 
                   20580:        * src/main/untaint.C: FILE_SPEC untainting changed so that one can
                   20581:          erase files like that, knowing their full name introducing   //
                   20582:          theoretical problem with, for instance, "_2B" and "." fragments,
                   20583:          // they would yield the same    // because
                   20584:          need_file_encode('_')=false  // but we need to delete such files
                   20585:          somehow, getting names from ^index
                   20586: 
                   20587:        * src/main/pa_string.C: ^string.replace bug fixed [bad
                   20588:          string::join_chank break]
                   20589: 
                   20590: 2001-12-07  paf
                   20591: 
                   20592:        * src/: classes/hashfile.C, classes/op.C, classes/table.C,
                   20593:          include/pa_common.h, include/pa_config_auto.h.in,
                   20594:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   20595:          include/pa_db_table.h, include/pa_request.h, main/pa_common.C,
                   20596:          main/pa_db_table.C, main/pa_request.C, main/pa_string.C,
                   20597:          types/pa_vhashfile.C: merged from r14_simple_cache
                   20598: 
                   20599:        * src/main/pa_string.C: stupid sparc architecture failed to access
                   20600:          short at odd address 0x311f0 <deserialize__6StringUiPvUiPCc+16>:
                   20601:             lduh  [ %i2 + 1 ], %l0
                   20602: 
                   20603:          bus error, fixed that
                   20604: 
                   20605:        * src/main/pa_string.C: strange string deserialize bug on
                   20606:          client[pmts], a bit shortened,
                   20607: 
                   20608:        * src/include/pa_config_auto.h.in: makes
                   20609: 
                   20610:        * src/: include/pa_common.h, include/pa_config_fixed.h,
                   20611:          include/pa_config_includes.h, main/pa_common.C: exclusive lock
                   20612:          file write shared lock file read
                   20613: 
                   20614:        * src/: classes/op.C, include/pa_common.h,
                   20615:          include/pa_config_fixed.h, main/pa_common.C: ^cache operator
                   20616: 
                   20617: 2001-12-06  paf
                   20618: 
                   20619:        * src/: classes/op.C, classes/table.C, include/pa_request.h,
                   20620:          main/pa_request.C: #ifdef RESOURCES_DEBUG
                   20621: 
                   20622:        * src/: main/compile.tab.C, targets/cgi/parser3.C: removed debug
                   20623:          info
                   20624: 
                   20625:        * src/classes/hashfile.C: removed transaction from ^cache
                   20626: 
                   20627: 2001-12-05  paf
                   20628: 
                   20629:        * src/targets/cgi/: parser3.C: fatal error reporting fixed.  in
                   20630:          IIS5 there were a prob with illegal call check
                   20631: 
                   20632: 2001-12-04  paf
                   20633: 
                   20634:        * src/: classes/op.C, classes/table.C, include/pa_request.h,
                   20635:          main/pa_request.C: measures to log
                   20636: 
                   20637: 2001-11-23  paf
                   20638: 
                   20639:        * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
                   20640:          main/pa_common.C, main/pa_db_table.C, main/pa_string.C,
                   20641:          types/pa_vhashfile.C: merged from _0014, 1
                   20642: 
                   20643:        * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
                   20644:          main/pa_common.C, main/pa_db_table.C, types/pa_vhashfile.C:
                   20645:          hashfile bugfix2 more wrong sizes.  ^cache behaviour changed: if
                   20646:          ^cache(33) would change
                   20647: 
                   20648:          0660 bits in file_write & hashfile create
                   20649: 
                   20650:        * src/main/: pa_db_table.C, pa_string.C: cache bugfix [wrong types
                   20651:          after pa_string optimization]
                   20652: 
                   20653: 2001-11-22  paf
                   20654: 
                   20655:        * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
                   20656:          table.offset[whence]
                   20657: 
                   20658:        * src/classes/op.C: process cstr(,connection)
                   20659: 
                   20660:        * src/classes/op.C: process now gets its body on current language,
                   20661:          not as-is
                   20662: 
                   20663:        * src/main/untaint.C: ORIGINS mode removed UHTML
                   20664: 
                   20665:        * src/main/untaint.C: ORIGINS mode was bad - forgot about optimize
                   20666:          bit
                   20667: 
1.116     moko     20668:        * src/classes/xdoc.C: cached xslt [removed nocache forcing]
1.95      moko     20669: 
                   20670: 2001-11-21  paf
                   20671: 
                   20672:        * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h:
                   20673:          <xsl:output output options made identical to xsl:output
                   20674:          attributes exclusion:    cdata-section-elements what xalan can do
                   20675:          but that not used now:    it can escape and remove CDATA sections
                   20676: 
                   20677:        * src/: main/untaint.C, targets/cgi/parser3.C: optimized \r
                   20678:          produced by xslt
                   20679: 
                   20680:        * src/targets/cgi/parser3.C: removed debug cgi||1
                   20681: 
                   20682:        * src/main/: pa_string.C, untaint.C: cached some string::size() es
                   20683: 
                   20684:        * src/: classes/table.C, main/pa_string.C, main/untaint.C,
                   20685:          targets/cgi/parser3.C: table.append bug fixed: forgot to switch
                   20686:          default language for {code}, it happen to change it's language
                   20687:          from CLEAN, so later refused to split by CLEAN \t
                   20688: 
                   20689: 2001-11-20  paf
                   20690: 
1.116     moko     20691:        * src/: classes/Makefile.am, classes/table.C, main/Makefile.am,
                   20692:          main/pa_exception.C, types/Makefile.am: moved ident.C & co to
1.95      moko     20693:          bottom of dependeces, so that errors would popup quicklier, fixed
                   20694:          line numbering in table::sql
                   20695: 
                   20696: 2001-11-19  paf
                   20697: 
                   20698:        * src/: classes/op.C, include/pa_request.h, include/pa_string.h,
                   20699:          include/pa_types.h, main/pa_globals.C, main/pa_request.C,
                   20700:          main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
                   20701:          targets/isapi/parser3isapi.C, types/pa_wcontext.C,
                   20702:          types/pa_wcontext.h: UL_CLEAN pieces now inherit UL_OPTIMIZED_BIT
                   20703:          at wcontext.write
                   20704: 
1.116     moko     20705:        * src/targets/: Makefile.am, cgi/parser3.C: #if _MSC_VER
1.95      moko     20706:          _set_new_handler
                   20707: 
1.116     moko     20708:        * src/targets/: cgi/parser3.C, isapi/parser3isapi.C:
                   20709:          set_new_handler in apache&isapi
1.95      moko     20710: 
                   20711: 2001-11-16  paf
                   20712: 
                   20713:        * src/targets/cgi/parser3.C: pool debug @ die
                   20714: 
                   20715:        * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
                   20716:          removed 8 bytes from String, 2 bytes from
                   20717:          string::chunk::row::item
                   20718: 
                   20719:        * src/main/pa_string.C: removed 1+4 bytes from String
                   20720: 
                   20721:        * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
                   20722:          types/pa_vstring.C: removed 1+4 bytes from String
                   20723: 
                   20724:        * src/main/pa_pool.C: introducing estimating String::cstr_bufsize,
                   20725:          0
                   20726: 
                   20727:        * src/: include/pa_globals.h, include/pa_string.h,
                   20728:          include/pa_types.h, main/pa_globals.C, main/pa_pool.C,
                   20729:          main/pa_request.C, main/untaint.C, sql/pa_sql_driver.h,
                   20730:          targets/cgi/parser3.C: introducing estimating
                   20731:          String::cstr_bufsize, 0
                   20732: 
                   20733:        * src/: main/pa_pool.C, include/pa_pool.h: die in pool::fail
                   20734: 
                   20735:        * src/: targets/cgi/parser3.C, main/pa_pool.C: die in pool::fail
                   20736: 
                   20737:        * src/: main/execute.C, main/pa_pool.C, targets/cgi/parser3.C,
                   20738:          include/pa_pool.h: die in pool::fail
                   20739: 
                   20740: 2001-11-15  paf
                   20741: 
                   20742:        * src/: include/pa_exception.h, main/execute.C, main/main.dsp,
                   20743:          main/pa_exception.C, targets/cgi/parser3.C: exception with
                   20744:          dynamic buffer re-back now with counter
                   20745: 
                   20746:        * src/: include/pa_exception.h, main/pa_exception.C: exception with
                   20747:          static buffer back
                   20748: 
                   20749:        * src/targets/cgi/parser3.C: std::
                   20750: 
                   20751:        * src/: classes/classes.awk, include/pa_config_auto.h.in,
                   20752:          include/pa_config_includes.h: setnewhandler check
                   20753: 
1.116     moko     20754:        * src/include/pa_config_auto.h.in: makes
1.95      moko     20755: 
                   20756:        * src/targets/cgi/parser3.C: set_new_handler started
                   20757: 
                   20758: 2001-11-14  paf
                   20759: 
                   20760:        * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
                   20761:          was wrong
                   20762: 
                   20763:        * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
                   20764:          was wrong
                   20765: 
                   20766:        * src/main/pa_request.C: z
                   20767: 
                   20768:        * src/: include/pa_common.h, main/pa_common.C: snprintf on buffer
                   20769:          full returns win32 -1 solaris >buffer_size
                   20770: 
                   20771:          checked all that
                   20772: 
                   20773:        * src/classes/op.C: ^untaint{body} as-is default now
                   20774: 
                   20775:        * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
                   20776:          types/pa_vstateless_class.h, types/pa_vstateless_object.h: merged
                   20777:          with no_bad_constructors_try
                   20778: 
                   20779:        * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
                   20780:          types/pa_vstateless_class.h, types/pa_vstateless_object.h: fixed
                   20781:          this: $bred[^string::length[]] $bred[^response::clear[]]
                   20782:          $bred[^int::int[]]
                   20783: 
                   20784:          now VObject creation moved into overriden
                   20785:          VClass::create_new_value, thus 0 from create_new_value means that
                   20786:          class has no ctors
                   20787: 
                   20788: 2001-11-13  paf
                   20789: 
                   20790:        * src/classes/classes.C: returned accedently removed if in foreach
                   20791:          callbacks [when hash no-0-restructure]
                   20792: 
                   20793: 2001-11-12  paf
                   20794: 
                   20795:        * src/main/pa_pool.C: changed xdoc createXXX politics, now string
                   20796:          passed as-is to method, xalan makes & into &amp; itself
                   20797: 
                   20798:        * src/classes/date.C: date.roll parser2 alg used
                   20799: 
                   20800:        * src/: classes/classes.C, classes/hash.C, classes/xdoc.C,
                   20801:          include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
                   20802:          main/pa_dictionary.C, main/pa_hash.C,
                   20803:          main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C: hash
                   20804:          now does not containt 0 values. put 0 actullay removes.  no check
                   20805:          on 0 value in foreach now required
                   20806: 
                   20807: 2001-11-11  paf
                   20808: 
                   20809:        * src/sql/pa_sql_driver.h: removed extra constructor, doc
                   20810: 
                   20811:        * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: CRLF
                   20812: 
                   20813:        * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql
                   20814:          driver initialize not const
                   20815: 
                   20816: 2001-11-10  paf
                   20817: 
                   20818:        * src/main/pa_exec.C: doc
                   20819: 
                   20820: 2001-11-09  paf
                   20821: 
                   20822:        * src/classes/: string.C, xdoc.C: xdoc::set{code} now untaints
                   20823:          param properly
                   20824: 
                   20825:        * src/classes/string.C: string.save now does untainting before
                   20826:          saving
                   20827: 
                   20828:        * src/main/pa_common.C: line endings fixing fixed last piece[was
                   20829:          still cstr oriented]
                   20830: 
                   20831:        * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
                   20832:          line endings fixing got rid of cstr, now must work ok with post
                   20833:          multipart
                   20834: 
                   20835:        * src/types/pa_vform.C: line endings fixed at post / multipart /
                   20836:          not file  also now
                   20837: 
                   20838: 2001-11-08  paf
                   20839: 
                   20840:        * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
                   20841:          include/pa_db_manager.h, include/pa_sql_driver_manager.h,
                   20842:          include/pa_stylesheet_manager.h, main/pa_charset_manager.C,
                   20843:          main/pa_db_manager.C, main/pa_sql_driver_manager.C,
                   20844:          main/pa_stylesheet_manager.C: restructured Cache manager to be
                   20845:          simple parent, not second parent [gcc 2.96 strangly refused to
                   20846:          call virtual from second parent]
                   20847: 
1.116     moko     20848:        * src/: include/pa_common.h, main/Makefile.am,
                   20849:          targets/cgi/pa_pool.C: makes
1.95      moko     20850: 
                   20851:        * src/: include/pa_request.h, main/pa_request.C,
                   20852:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C: apache
                   20853:          'status' class enabler
                   20854: 
                   20855:          <Location /parser-status.html> ParserStatusAllowed </Location>
                   20856: 
                   20857:        * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
                   20858:          include/pa_db_manager.h, include/pa_sql_driver_manager.h,
                   20859:          include/pa_stylesheet_manager.h, main/main.dsp,
                   20860:          main/pa_cache_managers.C, main/pa_charset_manager.C,
                   20861:          main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
                   20862:          main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
                   20863:          types/pa_vstatus.h: cache_managers, maybe-expiring every request
                   20864:          todo: apache 'status' class enabler
                   20865: 
                   20866: 2001-11-05  paf
                   20867: 
                   20868:        * src/main/: pa_db_connection.C, pa_db_manager.C: expiration from
                   20869:          debug to normal
                   20870: 
                   20871:        * src/main/: pa_db_connection.C, pa_db_manager.C, pa_request.C:
                   20872:          hence i removed skipping 0 values in hash::for_each-es we need to
                   20873:          check cleaned cache items manually. few more checks.
                   20874: 
                   20875:          expiring to 0 time was wrong, changed to 'now' time
                   20876: 
                   20877:        * src/targets/cgi/parser3.C: read can return 0, that means sort of
                   20878:          sig_pipe on freebsd [moko's experiments].   checked that in cgi,
                   20879:          on apache already done :)
                   20880: 
                   20881:        * src/main/: pa_db_connection.C, pa_db_manager.C: hence i removed
                   20882:          skipping 0 values in hash::for_each-es we need to check cleaned
                   20883:          cache items manually
                   20884: 
                   20885:        * src/main/: pa_db_connection.C, pa_db_table.C:
                   20886:          parser_multithreaded check was wrong
                   20887: 
                   20888:        * src/: classes/classes.C, classes/classes.h, classes/date.C,
                   20889:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   20890:          classes/hashfile.C, classes/image.C, classes/int.C,
                   20891:          classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
                   20892:          classes/string.C, classes/table.C, classes/void.C,
                   20893:          classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   20894:          include/pa_array.h, include/pa_charset_connection.h,
                   20895:          include/pa_charset_manager.h, include/pa_common.h,
                   20896:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   20897:          include/pa_db_connection.h, include/pa_db_manager.h,
                   20898:          include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
                   20899:          include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
                   20900:          include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
                   20901:          include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
                   20902:          include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
                   20903:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   20904:          include/pa_stack.h, include/pa_string.h,
                   20905:          include/pa_stylesheet_connection.h,
                   20906:          include/pa_stylesheet_manager.h, include/pa_table.h,
                   20907:          include/pa_threads.h, include/pa_types.h, main/compile.C,
                   20908:          main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
                   20909:          main/execute.C, main/pa_array.C, main/pa_charset_connection.C,
                   20910:          main/pa_charset_manager.C, main/pa_common.C,
                   20911:          main/pa_db_connection.C, main/pa_db_manager.C,
                   20912:          main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
                   20913:          main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
                   20914:          main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
                   20915:          main/pa_socks.C, main/pa_sql_driver_manager.C,
                   20916:          main/pa_status_provider.C, main/pa_string.C,
                   20917:          main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
                   20918:          sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
                   20919:          targets/cgi/pa_threads.C, targets/cgi/parser3.C,
                   20920:          targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
                   20921:          targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
                   20922:          targets/isapi/pool_storage.h, types/pa_valiased.C,
                   20923:          types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
                   20924:          types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
                   20925:          types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
                   20926:          types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
                   20927:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
                   20928:          types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
                   20929:          types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
                   20930:          types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
                   20931:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
                   20932:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   20933:          types/pa_vstateless_object.h, types/pa_vstatus.h,
                   20934:          types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.C,
                   20935:          types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
                   20936:          types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
                   20937:          types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
                   20938:          $status:db fixed used not initialized in db_connection & db_table
                   20939: 
                   20940:        * src/: include/pa_charset_connection.h, main/pa_charset_manager.C:
                   20941:          $status:charset
                   20942: 
                   20943:        * src/: classes/xdoc.C, include/pa_db_connection.h,
                   20944:          include/pa_stylesheet_connection.h,
                   20945:          include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C,
                   20946:          types/pa_vstatus.h: $status:stylesheet
                   20947: 
                   20948:        * src/: include/pa_charset_manager.h, include/pa_db_manager.h,
                   20949:          include/pa_request.h, include/pa_sql_connection.h,
                   20950:          include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
                   20951:          main/main.dsp, main/pa_charset_manager.C, main/pa_common.C,
                   20952:          main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
                   20953:          main/pa_sql_driver_manager.C, main/pa_status_provider.C,
                   20954:          main/pa_stylesheet_manager.C, types/pa_vstatus.h,
                   20955:          types/pa_vxnode.C, types/types.dsp: started status parser class
                   20956: 
                   20957: 2001-11-01  paf
                   20958: 
                   20959:        * src/include/pa_config_auto.h.in: makes
                   20960: 
                   20961:        * src/main/pa_hash.C: removed old extra include
                   20962: 
                   20963:        * src/: classes/math.C, include/pa_common.h: HAVE_TRUNC HAVE_ROUND
                   20964:          checks [for hp, there are such in math.h]
                   20965: 
                   20966:        * src/classes/op.C: ^for endless loop check strightened
                   20967: 
                   20968:        * src/: classes/hash.C, classes/op.C, main/execute.C: changed root
                   20969:          behavior in native calls.  it left unchanged, so ^for ^foreach &
                   20970:          co can use r.root to write their i & key,value there
                   20971: 
                   20972:        * src/classes/op.C: detected for var storage bug, fixed.
                   20973:          todo:foreach
                   20974: 
                   20975:        * src/: classes/hash.C, classes/xdoc.C, classes/xnode.C,
                   20976:          include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
                   20977:          types/pa_vhash.h, types/pa_vxnode.C: hash locking disabled
                   20978:          changing of hash inside of foreach
                   20979: 
                   20980:        * src/: classes/hash.C, classes/hashfile.C, types/pa_vhashfile.C:
                   20981:          ^hashfile.foreach[key|value]{body}[[separator]|{separator}] prev
                   20982:          were hash.foreach
                   20983: 
                   20984:        * src/: classes/hash.C, classes/op.C, types/pa_vmethod_frame.h,
                   20985:          types/pa_vstring.C, types/pa_vstring.h:
                   20986:          ^foreach[key|value]{body}[[separator]|{separator}]
                   20987: 
                   20988:        * src/: classes/hash.C, include/pa_hash.h, main/pa_hash.C,
                   20989:          types/pa_vcookie.C: ^hash.delete[key]
                   20990: 
                   20991: 2001-10-31  paf
                   20992: 
                   20993:        * src/main/: compile.C, pa_common.C: completely empty file now
                   20994:          considered "read", not ignored [not perfect trick used]
                   20995: 
                   20996:        * src/main/pa_common.C: simplier common ifdefs
                   20997: 
                   20998:        * src/main/pa_common.C: typing bug in common - bad ifdeff
                   20999: 
                   21000:        * src/main/pa_db_connection.C: z
                   21001: 
                   21002:        * src/main/: pa_db_connection.C, pa_sql_driver_manager.C:       //
                   21003:          lockdetector flags
                   21004:                  dbenv.lk_detect=DB_LOCK_RANDOM;
                   21005: 
                   21006:        * src/main/pa_sql_driver_manager.C: hiding passwords and addresses
                   21007:          from accidental show [imagine user forgot @exception]
                   21008: 
                   21009:        * src/classes/table.C: ^table.save[[nameless|+append;]path]
                   21010: 
                   21011:        * src/: classes/file.C, classes/image.C, classes/mail.C,
                   21012:          classes/string.C, classes/xnode.C, include/pa_common.h,
                   21013:          main/pa_common.C: ^string.save[[append;]path]
                   21014: 
                   21015:        * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
                   21016:          main/execute.C: \ in expression: int divide 10/3=3
                   21017: 
                   21018:        * src/types/pa_vhashfile.h: hashfile  ^delete to do something only
                   21019:          inside of ^cache
                   21020: 
                   21021:        * src/: include/pa_threads.h, main/pa_db_connection.C,
                   21022:          main/pa_db_table.C, targets/cgi/pa_threads.C,
                   21023:          targets/isapi/pa_threads.C: libdb DB_THREAD flag only when really
                   21024:          needed
                   21025: 
                   21026: 2001-10-30  paf
                   21027: 
                   21028:        * src/: classes/classes.dsp, main/main.dsp,
                   21029:          targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
                   21030:          types/types.dsp: enabled debug incremental compile
                   21031: 
                   21032:        * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
                   21033:          form post data line endings not reformatted now.
                   21034: 
                   21035:        * src/types/: pa_vform.C, pa_vform.h: AppendFormEntry length param
                   21036:          now required [had bug when file= has no value]
                   21037: 
                   21038:        * src/main/: pa_db_connection.C, pa_db_manager.C, pa_db_table.C,
                   21039:          pa_exec.C, pa_request.C, pa_sql_driver_manager.C, pa_string.C:
                   21040:          cstr(asis) default param removed
                   21041: 
                   21042:        * src/classes/xdoc.C: rolled back {} in xdoc.createTextNode for now
                   21043: 
                   21044:        * src/classes/xdoc.C: rolled back {} in xdoc.createElement for now
                   21045: 
                   21046:        * src/include/pa_dir.h: LOAD_DIR fixed
                   21047: 
                   21048:        * src/types/pa_vform.C: VForm::AppendFormEntry {length convention
                   21049:          was broken} fix_line_breaks
                   21050: 
                   21051:        * src/include/: pa_config_fixed.h, pa_pragma_pack_begin.h,
                   21052:          pa_pragma_pack_end.h, pa_string.h, pa_types.h: String & Origin
                   21053:          packed with #pragma pack
                   21054: 
1.116     moko     21055:        * src/include/pa_config_auto.h.in: pragma detection
1.95      moko     21056: 
                   21057: 2001-10-29  paf
                   21058: 
                   21059:        * src/types/pa_wcontext.h: bitfield syntax stricter
                   21060: 
                   21061:        * src/: classes/file.C, types/pa_vimage.C: image&file couple stack
                   21062:          string hash.puts
                   21063: 
                   21064:        * src/include/pa_sql_connection.h: SQL_CONNECTION_FUNC_GUARDED name
                   21065: 
                   21066:        * src/include/pa_sql_connection.h: there were one wrong
                   21067:          SQL_CONNECTION_FUNC_GUARDED [failed]
                   21068: 
                   21069:        * src/targets/isapi/pa_pool.C: added isapi&apache real_malloc debug
                   21070:          param.someday either ifdef or remove it
                   21071: 
                   21072:        * src/targets/cgi/: pa_pool.C, parser3.C: removed debug defines
                   21073: 
                   21074:        * src/main/untaint.C: optimizing returned after debugging
                   21075: 
                   21076:        * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
                   21077:          main/untaint.C: memory hunging #pragma pack(1)
                   21078: 
                   21079:          16 419 844 13 169 394
                   21080: 
                   21081:        * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
                   21082:          targets/cgi/pa_pool.C: String size_t replace to uint in proper
                   21083:          places [todo:Array]
                   21084: 
                   21085:        * src/: main/execute.C, targets/cgi/pa_pool.C,
                   21086:          targets/cgi/parser3.dsp, types/pa_wcontext.h,
                   21087:          types/pa_wwrapper.h: debugging memory WContext flags to bits
                   21088: 
                   21089:          total 5 652 652/158731 total 5 469 332/158731
                   21090: 
                   21091:        * src/: include/pa_array.h, main/pa_array.C: debugging memory
                   21092:          Array:: without cache in get/put now
                   21093: 
                   21094:          [Mon Oct 29 18:23:02 2001] total 5 796 092/158731 [Mon Oct 29
                   21095:          18:25:27 2001] total 5 652 652/158731
                   21096: 
                   21097:        * src/: include/pa_string.h, main/pa_string.C,
                   21098:          targets/cgi/pa_pool.C: debugging memory String::fused_rows func
                   21099:          now
                   21100: 
                   21101:          [Mon Oct 29 17:55:45 2001] total 5917436/158731 [Mon Oct 29
                   21102:          18:11:53 2001] total 5796092/158731
                   21103: 
                   21104:        * src/: classes/file.C, include/pa_hash.h, include/pa_string.h,
                   21105:          main/pa_globals.C, targets/cgi/pa_pool.C: debugging memory hash
                   21106:          key ref now
                   21107: 
                   21108:          [Mon Oct 29 16:01:17 2001] total 17050496/202647 [Mon Oct 29
                   21109:          17:11:17 2001] total 16867948/202658
                   21110: 
                   21111:        * src/: classes/file.C, classes/image.C, classes/string.C,
                   21112:          classes/xdoc.C, include/pa_pool.h, include/pa_string.h,
                   21113:          main/execute.C, main/pa_array.C, main/pa_common.C,
                   21114:          main/pa_hash.C, main/pa_sql_driver_manager.C, main/pa_string.C,
                   21115:          main/untaint.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C,
                   21116:          types/pa_vcookie.C, types/pa_vstring.h: debuggging memory.
                   21117:          string::as_int/double now usually uses stack, not heap [200K out
                   21118:          of 17M :)] VString(String&) not copies reference [29M -> 17M]
                   21119: 
                   21120:        * src/main/pa_sql_driver_manager.C: ping to have services [old
                   21121:          hiding bug]
                   21122: 
                   21123:        * src/Makefile.am: .am order
                   21124: 
                   21125:        * src/: include/pa_array.h, include/pa_charset_manager.h,
                   21126:          include/pa_db_connection.h, include/pa_db_manager.h,
                   21127:          include/pa_db_table.h, include/pa_hash.h, include/pa_request.h,
                   21128:          include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
                   21129:          include/pa_threads.h, types/pa_valiased.h, types/pa_vhashfile.h,
                   21130:          types/pa_vstateless_class.h, types/pa_wcontext.h: gcc 3.0.1
                   21131:          required "friend class"
                   21132: 
                   21133:          ../include/pa_request.h:51: friend declaration requires
                   21134:          class-key, i.e. `friend    class Temp_lang'
                   21135: 
                   21136:        * src/: include/pa_exception.h, include/pa_sql_connection.h,
                   21137:          main/pa_exception.C, main/pa_sql_driver_manager.C,
                   21138:          sql/pa_sql_driver.h: sql driver impl changed in _throw part.
                   21139: 
                   21140:          the idea is to #1 jump to C++ some function to main body, where
                   21141:          every function stack frame has exception unwind information and
                   21142:          from there... #2 propagate_exception()
                   21143: 
                   21144: 2001-10-28  paf
                   21145: 
                   21146:        * src/main/pa_db_connection.C: removed old consts
                   21147: 
                   21148:        * src/main/pa_db_connection.C: expire table [was accidently pasted
                   21149:          with wrong type/cast]
                   21150: 
                   21151:        * src/main/: pa_db_connection.C, pa_db_table.C: exception
                   21152:          translation
                   21153: 
1.116     moko     21154:        * src/: classes/Makefile.am, targets/cgi/Makefile.am: db makes.
1.95      moko     21155:          remember to build DB2 with -fexceptions!!!
                   21156: 
                   21157:        * src/main/pa_db_table.C: DB_RMW defed
                   21158: 
                   21159:        * src/: include/pa_config_auto.h.in, include/pa_config_fixed.h,
                   21160:          include/pa_db_connection.h, include/pa_db_manager.h,
                   21161:          include/pa_db_table.h, main/pa_db_connection.C,
                   21162:          main/pa_db_table.C: db2 on linux with DB 2.4.14: (6/2/98)
                   21163: 
                   21164: 2001-10-27  paf
                   21165: 
                   21166:        * src/: classes/hashfile.C, include/pa_db_connection.h,
                   21167:          include/pa_db_table.h, main/pa_db_connection.C,
                   21168:          main/pa_db_manager.C, main/pa_db_table.C, main/pa_globals.C,
                   21169:          types/pa_vhashfile.C: DB2 ifdefs
                   21170: 
1.116     moko     21171:        * src/: classes/Makefile.am, include/pa_config_fixed.h,
                   21172:          main/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
1.95      moko     21173:          makes with DB2
                   21174: 
1.116     moko     21175:        * src/: include/pa_config_auto.h.in, main/Makefile.am,
                   21176:          types/Makefile.am: makes db
1.95      moko     21177: 
                   21178:        * src/: main/pa_globals.C, targets/cgi/parser3.dsp,
                   21179:          targets/isapi/parser3isapi.dsp: vc projects libdb ifdefed into
                   21180:          globals.C
                   21181: 
                   21182:        * src/: classes/hashfile.C, include/pa_db_connection.h,
                   21183:          include/pa_db_table.h, main/pa_db_connection.C,
                   21184:          main/pa_db_table.C: ^hashfile.clear[]
                   21185: 
                   21186:        * src/classes/classes.awk: no $ in var names
                   21187: 
                   21188:        * src/main/: pa_db_connection.C, pa_db_manager.C: db expiration
                   21189:          connection&table [forgotten calls]
                   21190: 
                   21191: 2001-10-26  paf
                   21192: 
                   21193:        * src/main/pa_db_connection.C: db checkpoints
                   21194: 
                   21195:        * src/: include/pa_db_connection.h, main/pa_db_connection.C: db
                   21196:          checkpoints
                   21197: 
                   21198:        * src/classes/xdoc.C: xdoc createTextNode createElement UL_XML
                   21199:          default. but entities still reparsed. todo: tothink
                   21200: 
                   21201:        * src/main/pa_db_connection.C: db recover mech 2
                   21202: 
                   21203:        * src/: classes/hashfile.C, include/pa_db_connection.h,
                   21204:          include/pa_db_manager.h, include/pa_db_table.h,
                   21205:          include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
                   21206:          main/pa_db_table.C, main/pa_hash.C, types/pa_vhashfile.C,
                   21207:          types/pa_vhashfile.h: db connections & tables now cached at
                   21208:          create time & multithreaded
                   21209: 
                   21210:        * src/: classes/xdoc.C, types/pa_vxdoc.h: transform2 for
                   21211:          parsed_source
                   21212: 
                   21213:        * src/main/pa_db_connection.C: about to remove connection from
                   21214:          vhashfile
                   21215: 
                   21216:        * src/: main/pa_db_table.C, classes/hashfile.C: db: child
                   21217:          transaction commit/rollback responsibility left to parent [as it
                   21218:          sould - else there were a bug with double free]
                   21219: 
                   21220:        * src/include/pa_db_table.h: db: child transaction commit/rollback
                   21221:          responsibility left to parent [as it sould - else there were a
                   21222:          bug with double free]
                   21223: 
                   21224: 2001-10-25  paf
                   21225: 
                   21226:        * src/: classes/hashfile.C, include/pa_common.h,
                   21227:          include/pa_db_connection.h, include/pa_db_manager.h,
                   21228:          main/main.dsp, main/pa_db_connection.C, main/pa_db_manager.C,
                   21229:          types/pa_vhashfile.C, types/pa_vhashfile.h,
                   21230:          include/pa_db_table.h, main/pa_db_table.C: started db_home
                   21231:          [multiple, cached] todo: autorecover [tried, but not succeded,
                   21232:          yet]
                   21233: 
                   21234:        * src/include/pa_dir.h: ancient gpf on dir not found fixed
                   21235: 
                   21236:        * src/: include/pa_db_connection.h, main/pa_db_manager.C:
                   21237:          transaction parent passed
                   21238: 
                   21239: 2001-10-24  parser
                   21240: 
1.116     moko     21241:        * src/classes/Makefile.am: makes
1.95      moko     21242: 
                   21243:        * src/targets/: cgi/pool_storage.h, isapi/parser3isapi.C,
                   21244:          isapi/pool_storage.h: pool_storage fixed
                   21245: 
                   21246:        * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C,
                   21247:          types/pa_vform.h: form fix_line_breaks
                   21248: 
1.116     moko     21249:        * src/targets/cgi/pool_storage.h: makes
1.95      moko     21250: 
                   21251:        * src/: classes/Makefile.am, targets/cgi/Makefile.am,
                   21252:          targets/cgi/pool_storage.h: makes
                   21253: 
                   21254:        * src/sql/pa_sql_driver.h: version
                   21255: 
                   21256:        * src/: include/pa_common.h, main/Makefile.am, main/pa_common.C,
                   21257:          types/pa_vform.C, types/pa_vform.h: .am
                   21258: 
                   21259:        * src/main/: pa_db_connection.C, pa_db_manager.C: hashfile setted
                   21260:          this: DB_RMW Acquire write locks instead of read locks when doing
                   21261:          the retrieval. Setting this flag may decrease the likelihood of
                   21262:          deadlock during a read-modify-write cycle by immediately
                   21263:          acquiring the write lock during the read part of the cycle so
                   21264:          that another thread of control acquiring a read lock for the same
                   21265:          item, in its own read-modify-write cycle, will not result in
                   21266:          deadlock
                   21267: 
                   21268:        * src/targets/isapi/parser3isapi.dsp: doc
                   21269: 
                   21270:        * src/: classes/hashfile.C, types/pa_vhashfile.h: hashfile 1
                   21271: 
                   21272:        * src/: classes/hashfile.C, include/pa_request.h: hashfile.cache 0
                   21273: 
                   21274:        * src/: classes/hashfile.C, include/pa_db_connection.h,
                   21275:          main/pa_db_connection.C: hashfile expired deleted from db when
                   21276:          get & iterate
                   21277: 
                   21278:        * src/: main/pa_db_connection.C, types/pa_vhashfile.C: hashfile
                   21279:          expiring 1
                   21280: 
                   21281:        * src/types/: pa_vhashfile.C, pa_vhashfile.h: hashfile expiring 0
                   21282: 
                   21283:        * src/: main/pa_db_connection.C, types/pa_vhashfile.C:
                   21284:          db_connection not bothers with key when not returning expired
                   21285:          data
                   21286: 
                   21287:        * src/: include/pa_db_connection.h, main/pa_db_connection.C,
                   21288:          types/pa_vhashfile.C: db_cursor constructor public now
                   21289: 
                   21290:        * src/: include/pa_db_connection.h, main/pa_db_connection.C,
                   21291:          types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile data
                   21292:          stamped, todo: put_element analize
                   21293: 
                   21294:        * src/: include/pa_db_connection.h, include/pa_string.h,
                   21295:          main/pa_db_connection.C, main/pa_string.C: hashfile pieced
                   21296:          serialize. todo stamp
                   21297: 
                   21298: 2001-10-23  parser
                   21299: 
                   21300:        * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
                   21301:          classes/image.C, classes/mail.C, classes/response.C,
                   21302:          classes/string.C, classes/table.C, classes/xdoc.C,
                   21303:          include/pa_config_fixed.h, include/pa_db_connection.h,
                   21304:          main/pa_common.C, main/pa_db_connection.C, main/pa_request.C,
                   21305:          types/pa_value.h, types/pa_vcookie.C, types/pa_vhash.h,
                   21306:          types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vresponse.h,
                   21307:          types/pa_vtable.C: ^hashfile.hash[]
                   21308: 
                   21309:        * src/: classes/hashfile.C, classes/xdoc.C,
                   21310:          include/pa_config_fixed.h, main/pa_db_manager.C,
                   21311:          main/pa_globals.C: ifdefs so it compiled without db
                   21312: 
                   21313:        * src/: classes/hashfile.C, include/pa_db_connection.h,
                   21314:          include/pa_db_manager.h, main/pa_db_connection.C,
                   21315:          main/pa_db_manager.C, types/pa_vhashfile.h:
                   21316:          ^hashfile.transaction{code} ^hashfile:clear[filename]
                   21317:          ^hashfile.delete[key]
                   21318: 
                   21319: 2001-10-22  parser
                   21320: 
                   21321:        * src/targets/: cgi/pa_pool.C, cgi/parser3.C, cgi/parser3.dsp,
                   21322:          cgi/pool_storage.h, isapi/pool_storage.h: cgi += pool cleanups
                   21323: 
                   21324:        * src/: classes/classes.dsp, classes/hashfile.C, classes/xdoc.C,
                   21325:          classes/xnode.C, include/pa_charset_connection.h,
                   21326:          include/pa_db_connection.h, include/pa_db_manager.h,
                   21327:          include/pa_exception.h, include/pa_sapi.h,
                   21328:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   21329:          include/pa_stylesheet_connection.h,
                   21330:          include/pa_stylesheet_manager.h,
                   21331:          include/pa_xslt_stylesheet_manager.h, main/main.dsp,
                   21332:          main/pa_db_connection.C, main/pa_db_manager.C,
                   21333:          main/pa_exception.C, main/pa_globals.C, main/pa_pool.C,
                   21334:          main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
                   21335:          main/pa_xslt_stylesheet_manager.C, targets/cgi/parser3.C,
                   21336:          targets/isapi/parser3isapi.C, types/pa_vhashfile.C,
                   21337:          types/pa_vhashfile.h, types/pa_vxdoc.C, types/pa_vxnode.C,
                   21338:          types/types.dsp: hashfile 0
                   21339: 
                   21340:        * src/types/pa_vhashfile.C: z
                   21341: 
                   21342:        * src/: classes/classes.dsp, classes/hashfile.C,
                   21343:          include/pa_config_fixed.h, main/execute.C,
                   21344:          targets/cgi/parser3.dsp, types/pa_vhashfile.C,
                   21345:          types/pa_vhashfile.h, types/types.dsp: hashfile -100
                   21346: 
                   21347:        * src/targets/isapi/parser3isapi.C: SEH minor ifdef changes
                   21348: 
                   21349:        * src/: include/pa_exception.h, include/pa_request.h,
                   21350:          main/execute.C, main/pa_exception.C, main/pa_request.C,
                   21351:          targets/cgi/parser3.C, targets/cgi/parser3.dsp,
                   21352:          types/pa_vclass.h, types/pa_vobject.h: stack backtrace
                   21353: 
                   21354: 2001-10-19  parser
                   21355: 
                   21356:        * src/include/pa_pool.h: header
                   21357: 
                   21358:        * src/main/pa_pool.C: auto compiled on gcc
                   21359: 
                   21360:        * src/classes/image.C: comment
                   21361: 
1.116     moko     21362:        * src/: include/pa_pool.h, main/pa_common.C: makes
1.95      moko     21363: 
                   21364:        * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   21365:          types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
                   21366:          types/pa_vxnode.h: xnode clone got freed
                   21367: 
                   21368:        * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
                   21369:          include/pa_types.h, main/pa_pool.C: first c++ exceptions result:
                   21370:          can free up xalandomstring resulting from pool::transcode
                   21371: 
                   21372:        * src/: classes/Makefile.am, classes/xdoc.C, classes/xnode.C,
                   21373:          include/pa_config_fixed.h, include/pa_exception.h,
                   21374:          include/pa_stylesheet_connection.h, main/pa_charset_connection.C,
                   21375:          main/pa_exception.C, main/pa_pool.C, types/pa_vxdoc.C,
                   21376:          types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: switched
                   21377:          to c++ exceptions 1xml configure fixed to exclude xalan-patch
                   21378:          from non-xml compile
                   21379: 
                   21380:        * src/main/pa_request.C: pool:: context - get_context
                   21381: 
                   21382:        * src/: classes/classes.h, classes/date.C, classes/double.C,
                   21383:          classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
                   21384:          classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
                   21385:          classes/string.C, classes/table.C, classes/void.C,
                   21386:          include/pa_config_fixed.h, include/pa_exception.h,
                   21387:          include/pa_pool.h, include/pa_request.h, include/pa_types.h,
                   21388:          main/compile.C, main/compile_tools.C, main/execute.C,
                   21389:          main/pa_array.C, main/pa_common.C, main/pa_dictionary.C,
                   21390:          main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
                   21391:          main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
                   21392:          main/pa_string.C, main/pa_table.C, main/untaint.C,
                   21393:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                   21394:          types/pa_value.h, types/pa_vbool.h, types/pa_vdouble.h,
                   21395:          types/pa_vfile.h, types/pa_vform.C, types/pa_vhash.h,
                   21396:          types/pa_vint.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
                   21397:          types/pa_vstateless_class.h, types/pa_vtable.C,
                   21398:          types/pa_wcontext.C, types/pa_wwrapper.h: switched to c++
                   21399:          exceptions 0
                   21400: 
                   21401:        * src/classes/classes.awk: $ removed
                   21402: 
                   21403: 2001-10-18  parser
                   21404: 
                   21405:        * src/types/pa_vcookie.C: cookie:CLASS
                   21406: 
                   21407:        * src/main/main.dsp: project
                   21408: 
                   21409:        * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C: vxdoc
                   21410:          set_document & ctor question "who owns document" solved
                   21411: 
                   21412:        * src/: classes/xdoc.C, main/pa_pool.C: extra free removed
                   21413: 
                   21414:        * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
                   21415:          main/pa_pool.C: encoding in dom creating funcs
                   21416: 
                   21417:        * src/: classes/xdoc.C, types/pa_vxdoc.h: dom created by create can
                   21418:          be transformed now
                   21419: 
                   21420:        * src/classes/xdoc.C: dom created by create can be transformed now
                   21421: 
                   21422:        * src/classes/xdoc.C: z
                   21423: 
                   21424:        * src/classes/xdoc.C: comment
                   21425: 
                   21426:        * src/: classes/xdoc.C, classes/xnode.C, main/compile.tab.C: xdoc
                   21427:          create now uses XercesDocumentBridge, appendChild&co now works
                   21428: 
                   21429:        * src/include/pa_stylesheet_connection.h: prev stylesheet destroyed
                   21430:          @ recompile
                   21431: 
                   21432:        * src/main/: compile.tab.C, compile.y, pa_request.C: ^: no colon in
                   21433:          $origin @exception[
                   21434: 
                   21435:        * src/classes/: xdoc.C, xnode.C: xdoc::create[] now. and all dom
                   21436:          tag names forced to XML lang
                   21437: 
                   21438:        * src/: classes/classes.dsp, classes/xdoc.C, types/types.dsp: fiew
                   21439:          leechy-found bugs in code&doc fixed
                   21440: 
                   21441: 2001-10-17  parser
                   21442: 
                   21443:        * src/: classes/classes.dsp, classes/string.C, main/pa_string.C,
                   21444:          types/pa_vxnode.h, types/types.dsp: string::mid fixed, string.mid
                   21445:          n functionality preserved
                   21446: 
                   21447:        * src/types/pa_vimage.h: removed unused vimage::save
                   21448: 
                   21449: 2001-10-16  parser
                   21450: 
                   21451:        * src/: classes/string.C, main/pa_string.C: $string.mid(p[;n])
                   21452: 
                   21453:        * src/classes/: xnode.C: removed few dom returns & changed op.txt
                   21454: 
                   21455:        * src/types/: pa_vhash.h, pa_vtable.h: hash can be used as boolean
                   21456: 
                   21457:        * src/classes/image.C: image.copy tolerance
                   21458: 
                   21459:        * src/classes/image.C: ::CopyResampled made gd2beta+my hands, very
                   21460:          ineffective, but works for small paleted image
                   21461: 
                   21462:        * src/types/pa_vimage.C: comment
                   21463: 
                   21464:        * src/classes/image.C: gd size/resize bugfix
                   21465: 
                   21466:        * src/: classes/classes.dsp, main/main.dsp,
                   21467:          targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
                   21468:          types/types.dsp: ident >nul 2>&1
                   21469: 
                   21470:        * src/main/pa_common.C: \r\n -> \n   DOS \r -> \n Macintosh on all
                   21471:          systems
                   21472: 
                   21473:        * src/: classes/image.C, types/pa_vimage.h: ^image.copy[source](src
                   21474:          x;src y;src w;src h;dst x;dst y[;dest w[;dest h]])
                   21475: 
                   21476: 2001-10-15  parser
                   21477: 
                   21478:        * src/main/execute.C: z
                   21479: 
                   21480:        * src/classes/: xdoc.C:     !::create{qualifiedName}
                   21481: 
                   21482:        * src/types/pa_vxnode.C:     document_type_node.
                   21483:                  !readonly attribute DOMString name
                   21484:              !notation_node.
                   21485:                  !readonly attribute DOMString publicId
                   21486:                  !readonly attribute DOMString systemId
                   21487: 
1.116     moko     21488:        * src/types/: pa_vcode_frame.h, pa_wcontext.C: code_frame fixed -
                   21489:          ::write badly passed string too transparently [failed to
                   21490:          intercept it]
1.95      moko     21491: 
                   21492:        * src/: classes/xdoc.C, classes/xnode.C, include/pa_config_fixed.h,
                   21493:          include/pa_request.h, main/pa_sql_driver_manager.C,
                   21494:          types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
                   21495:          types/pa_vxnode.h: DOM1 major addtion, only few
                   21496:          attributes/methods left
                   21497: 
                   21498: 2001-10-13  parser
                   21499: 
                   21500:        * src/: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
                   21501:          targets/isapi/parser3isapi.C: isapi&cgi couple non-pooled mallocs
                   21502:          in main handler
                   21503: 
                   21504:        * src/targets/isapi/pool_storage.h: isapi pool storage reverse
                   21505:          cleanups & frees order
                   21506: 
                   21507:        * src/types/pa_vcode_frame.h: couple comments
                   21508: 
                   21509:        * src/: main/execute.C, types/pa_vcode_frame.h: vcodeframe made
                   21510:          transparent enough to handle hash if creation&passing
                   21511: 
                   21512:        * src/: include/pa_config_fixed.h, main/execute.C,
                   21513:          main/pa_exception.C: noticed that vcodeframe not transparent
                   21514:          enough, would change now
                   21515: 
                   21516: 2001-10-12  parser
                   21517: 
                   21518:        * src/targets/isapi/parser3isapi.C: xalan&xerces multithread bug
                   21519:          fixed. initialization&free on each thread!
                   21520: 
                   21521:        * src/classes/: double.C, int.C, string.C: sql{}[$.default[({})]]
                   21522:          handling changed: now type of default param analized always, not
                   21523:          only at problem time, thus helping early problem spotting
                   21524: 
                   21525:        * src/: classes/classes.dsp, classes/xdoc.C, main/compile.tab.C,
                   21526:          main/main.dsp, main/pa_globals.C, targets/cgi/parser3.C,
                   21527:          targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
                   21528:          targets/isapi/parser3isapi.dsp, types/types.dsp: xalan&xerces
                   21529:          multithread bug fixed. initialization&free on each thread!
                   21530: 
                   21531: 2001-10-11  parser
                   21532: 
                   21533:        * src/classes/xnode.C: xnode.selectSingle now
                   21534: 
                   21535:        * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
                   21536:          include/pa_pool.h, include/pa_stylesheet_connection.h,
                   21537:          main/pa_exception.C, main/pa_pool.C: moved xslt exceptions
                   21538:          convertors out of Pool into Exception
                   21539: 
                   21540:        * src/main/pa_string.C: const
                   21541: 
                   21542:        * src/: include/pa_string.h, main/pa_string.C: restructured string:
                   21543:          linked pieces of same language together prior to String::replace
                   21544: 
                   21545:        * src/classes/hash.C:     !^hash.add[addme]
                   21546:              !^hash.sub[subme]
                   21547:              !^a.union[b] = new
                   21548:              !^a.intersection[b] = new
                   21549:              !^a.intersects[b] = bool
                   21550: 
                   21551:        * src/classes/hash.C:     !^hash::append[append_from]
                   21552: 
                   21553:        * src/: classes/hash.C, types/pa_vhash.h:
                   21554:          !^hash::create[[copy_from]]
                   21555: 
                   21556:        * src/: classes/string.C, classes/table.C, include/pa_globals.h,
                   21557:          include/pa_string.h, main/pa_globals.C, main/pa_string.C,
                   21558:          main/untaint.C, types/pa_vvoid.h: untaint lang origins table
                   21559:          fixed.  got rid of empty_string, which caused errors - it hasnt
                   21560:          exception but somebody[value.bark] tried to throw it on it's pool
                   21561: 
1.116     moko     21562:        * src/include/pa_config_auto.h.in: makes
1.95      moko     21563: 
                   21564: 2001-10-10  parser
                   21565: 
                   21566:        * src/: classes/op.C, main/compile.tab.C: ^error[msg]
                   21567: 
                   21568:        * src/main/: compile.tab.C, compile.y: ^a[
                   21569: 
                   21570:          @next_method  << now unclosed ] would be reported here
                   21571: 
                   21572:        * src/main/: compile.tab.C, compile.y: ^a[^b] more informative
                   21573:          compile error
                   21574: 
                   21575: 2001-10-09  parser
                   21576: 
1.116     moko     21577:        * src/: classes/Makefile.am, main/Makefile.am,
                   21578:          targets/cgi/Makefile.am, types/Makefile.am: makes
1.95      moko     21579: 
                   21580:        * src/classes/Makefile.am: makes
                   21581: 
                   21582:        * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: xml transform
                   21583:          win32 errors intercepted [xalan transformer patched and
                   21584:          incorporated]
                   21585: 
                   21586:        * src/: classes/classes.dsp, classes/xdoc.C,
                   21587:          include/pa_stylesheet_connection.h, main/main.dsp,
                   21588:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                   21589:          types/pa_vxdoc.h, types/pa_vxnode.h, types/types.dsp: xalan
                   21590:          patches starting
                   21591: 
                   21592:        * src/classes/: string.C, table.C: ^string.save[file]
                   21593: 
                   21594:        * src/classes/: date.C, table.C: calendar moved to date
                   21595: 
                   21596:        * src/classes/: op.C, table.C: table.hash[key field;value field(s)
                   21597:          string/table]  now
                   21598: 
                   21599:        * src/classes/: op.C, table.C: z
                   21600: 
                   21601:        * src/: classes/op.C, classes/table.C, types/pa_vfile.h,
                   21602:          types/pa_vimage.h, types/pa_vjunction.h, types/pa_vxdoc.h,
                   21603:          types/pa_vxnode.h: table:menu & op for delims made allowed not to
                   21604:          be code [be string..]
                   21605: 
                   21606:        * src/classes/: double.C, file.C, image.C, int.C, op.C, string.C,
                   21607:          table.C: lots of
                   21608:          params->as_int/double/as_string/as_junction/as_no_junction
                   21609:          messages added
                   21610: 
                   21611: 2001-10-08  parser
                   21612: 
                   21613:        * src/: classes/date.C, classes/image.C, classes/string.C,
                   21614:          classes/table.C, classes/void.C, include/pa_request.h:
                   21615:          params->as_int/double message added
                   21616: 
                   21617:        * src/classes/image.C: image:circle [and round arc] uses Bresenham
                   21618: 
                   21619:        * src/: classes/image.C, types/pa_vcookie.C, types/pa_vimage.C:
                   21620:          image:sector removed image:html internal "line-*" attribs
                   21621: 
                   21622:        * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
                   21623:          types/pa_vcookie.C: cookie urlencoded [netscape doc reread]
                   21624: 
                   21625:        * src/types/pa_vcookie.C: removing cookie made more netscape-like
                   21626:          way
                   21627: 
                   21628:        * src/: classes/file.C, classes/form.C, main/pa_common.C,
                   21629:          main/untaint.C: header untainting to UL_HTTP_HEADER,
                   21630:          UL_MAIL_HEADER made nonforced [only tainted pieces]
                   21631: 
                   21632:        * src/: include/pa_common.h, main/pa_common.C, main/untaint.C,
                   21633:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C: remove_crlf
                   21634:          @ SAPI::log
                   21635: 
                   21636:        * src/main/untaint.C: \r to ' ' in origins mode
                   21637: 
                   21638:        * src/classes/xdoc.C: xdoc:load exceptions intercepted [like in
                   21639:          set]
                   21640: 
                   21641:        * src/: classes/xdoc.C, include/pa_config_fixed.h,
                   21642:          main/compile.tab.C, types/pa_vxdoc.h: parsedSource produced by
                   21643:          nonstandard liaison freed up
                   21644: 
                   21645: 2001-10-07  parser
                   21646: 
                   21647:        * src/: include/pa_config_fixed.h, main/compile.tab.C: restored
                   21648:          project
                   21649: 
                   21650: 2001-10-05  parser
                   21651: 
                   21652:        * src/: classes/xdoc.C, include/pa_pool.h, main/main.dsp,
                   21653:          main/pa_pool.C: changed xdoc:set to prevent SAXParseException
                   21654:          from outputing to cerr.  lots of "todos"
                   21655: 
                   21656:        * src/main/untaint.C: http_header tainting more gentle with
                   21657:          enquoting now
                   21658: 
                   21659:        * src/: classes/xdoc.C, include/pa_dictionary.h, main/main.dsp,
                   21660:          main/pa_dictionary.C, main/pa_string.C, types/pa_vxdoc.h: started
                   21661:          xml errorhandler.  fixed string.replace a little, read @test
                   21662: 
                   21663:        * src/main/pa_string.C: found replace bug - first_that_starts(char
                   21664:          *) does not have limit, and looks further eos, fixing....
                   21665: 
                   21666:        * src/doc/: doxygen.cfg, html2chm.cmd, sources2html.cmd: paths
                   21667: 
                   21668:        * src/: classes/xdoc.C, main/compile.tab.C: xdoc.transform now
                   21669: 
                   21670:        * src/main/: pa_charset_connection.C: ctype another mem clear
                   21671:          bugfix
                   21672: 
1.116     moko     21673:        * src/main/: compile.tab.C, compile.y: disabled ^literals in names
                   21674:          $result[^[$p^]z] now works fine
1.95      moko     21675: 
                   21676:        * src/: include/pa_hash.h, main/pa_hash.C: Hash::size() calculated
                   21677:          wrong. fixed it
                   21678: 
                   21679:        * src/main/pa_charset_connection.C: unicode zero pair at the beging
                   21680:          of totable appered to be vital
                   21681: 
                   21682: 2001-10-04  parser
                   21683: 
                   21684:        * src/classes/image.C: ^image.length[text]
                   21685: 
                   21686: 2001-10-03  parser
                   21687: 
                   21688:        * src/main/pa_request.C: DEFAULT...charset was ignored when !XML
                   21689: 
                   21690:        * src/main/pa_request.C: restored pcre defaulting in request
                   21691:          [mindlessly "optimized" yesterday] comment left
                   21692: 
                   21693: 2001-10-02  parser
                   21694: 
                   21695:        * src/: main/pa_charset_manager.C,
                   21696:          include/pa_stylesheet_connection.h: forgot non-xml pool.*charset
                   21697:          needed
                   21698: 
                   21699:        * src/: include/pa_pool.h, main/pa_pool.C, types/pa_vresponse.h:
                   21700:          forgot non-xml pool.*charset needed
                   21701: 
                   21702:        * src/classes/table.C: # config comments fixed
                   21703: 
                   21704:        * src/: classes/table.C, main/pa_charset_connection.C: table:load &
                   21705:          charset_connection #comment now
                   21706: 
                   21707:        * src/: classes/classes.dsp, types/types.dsp: release projects
                   21708:          options fixed to use release msvcrt lib
                   21709: 
                   21710:        * src/main/pa_charset_connection.C: pcre tables now const inside
                   21711:          removed default - pcre handles that internally fixed bug on
                   21712:          not-cleaning tables [previously was calloced, now member]
                   21713: 
                   21714:        * src/: include/pa_request.h, main/pa_charset_connection.C,
                   21715:          main/pa_request.C, types/pa_vstring.h: pcre tables now const
                   21716:          inside removed default - pcre handles that internally fixed bug
                   21717:          on not-cleaning tables [previously was calloced, now member]
                   21718: 
                   21719:        * src/: include/pa_config_fixed.h, main/pa_charset_connection.C:
                   21720:          tested charset reload on file change @ apache version = OK tested
                   21721:          freeing up prev encoding on adding new = OK
                   21722: 
                   21723: 2001-10-01  parser
                   21724: 
                   21725:        * src/main/pa_charset_connection.C: removed entitify external hack
                   21726:          [internal installed]
                   21727: 
1.116     moko     21728:        * src/main/Makefile.am: makes+removed dtd
1.95      moko     21729: 
                   21730:        * src/: include/pa_charset_connection.h,
                   21731:          include/pa_charset_manager.h,
                   21732:          include/pa_xslt_stylesheet_manager.h, main/main.dsp,
                   21733:          main/pa_charset_connection.C, main/pa_charset_manager.C,
                   21734:          main/pa_request.C: charset loading & caching mech 0
                   21735: 
                   21736:        * src/: include/pa_stylesheet_connection.h,
                   21737:          include/pa_xslt_stylesheet_manager.h, main/main.dsp,
                   21738:          main/pa_globals.C, main/pa_request.C: would make charset loading
                   21739:          & caching mech now
                   21740: 
                   21741: 2001-09-30  parser
                   21742: 
                   21743:        * src/main/pa_request.C: forgot to fill toTable
                   21744: 
                   21745:        * src/: include/pa_config_fixed.h, main/pa_request.C: started
                   21746:          hack_s_maximumCharacterValues to XALAN_HACK_DIGITAL_ENTITIES but
                   21747:          failed on win32 for now..
                   21748: 
                   21749:        * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
                   21750:          now charsets table configuration variable is: CHARSETS
                   21751: 
                   21752:        * src/: classes/xdoc.C, include/pa_request.h, main/pa_request.C:
                   21753:          ctype with unicode 1. todo: no &#1055; entities on output somehow
                   21754: 
                   21755:        * src/: classes/file.C, classes/op.C, classes/string.C,
                   21756:          include/pa_request.h, main/pa_request.C: started ctype with
                   21757:          unicode values
                   21758: 
                   21759: 2001-09-28  parser
                   21760: 
                   21761:        * src/: main/pa_request.C, classes/mail.C, classes/op.C,
                   21762:          classes/xdoc.C, include/pa_stylesheet_connection.h: letter body
                   21763:          string passed AS-IS now
                   21764: 
                   21765:        * src/classes/: xdoc.C, xnode.C: xdoc addencoding works! invented a
                   21766:          way of user-configuring... todo: implement
                   21767: 
                   21768: 2001-09-27  parser
                   21769: 
                   21770:        * src/classes/table.C: table.sort changed to sort table itself
                   21771: 
                   21772:        * src/: classes/xdoc.C, targets/isapi/parser3isapi.dsp:
                   21773:          X^.getElementsByTagName[tagname] = array of xnode
                   21774:          X^.getElementsByTagNameNS[namespaceURI;localName] = array of
                   21775:          nodes removed - regretfully not supported @ xalan. maybe someday
                   21776:          would reimplement, if needed.
                   21777: 
                   21778:          win32build system: solved long waiting anti-non-started-apache
                   21779:          problem
                   21780: 
                   21781:        * src/: classes/classes.dsp, classes/xdoc.C, main/main.dsp,
                   21782:          targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
                   21783:          types/types.dsp: win32 ident make system so not to rebuild
                   21784:          library [ident.C.new]
                   21785: 
                   21786: 2001-09-26  parser
                   21787: 
                   21788:        * src/: classes/classes.dsp, classes/xdoc.C, classes/xnode.C,
                   21789:          classes/xnode.h, include/pa_config_fixed.h, main/main.dsp,
                   21790:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                   21791:          types/pa_vxnode.C, types/types.dsp: z
                   21792: 
                   21793:        * src/classes/classes.C: forgot one non-xml check
                   21794: 
1.116     moko     21795:        * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
                   21796:          targets/cgi/Makefile.am, types/Makefile.am: makes with clases.awk
1.95      moko     21797: 
                   21798:        * src/targets/cgi/parser3.C: z
                   21799: 
                   21800:        * src/: include/pa_config_fixed.h, targets/cgi/parser3.C,
                   21801:          targets/isapi/parser3isapi.C: #ifdef SMTP
                   21802: 
                   21803:        * src/: classes/classes.dsp, classes/dnode.C, classes/dnode.h,
                   21804:          classes/dom.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
                   21805:          main/compile.tab.C, types/pa_vdnode.C, types/pa_vdnode.h,
                   21806:          types/pa_vdom.C, types/pa_vdom.h, types/pa_vxdoc.C,
                   21807:          types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
                   21808:          types/types.dsp: xdoc&xnode now
                   21809: 
                   21810:        * src/: classes/classes.C, classes/classes.awk,
                   21811:          classes/classes.dsp, classes/classes.h, classes/date.C,
                   21812:          classes/dnode.C, classes/dnode.h, classes/dom.C,
                   21813:          classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
                   21814:          classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
                   21815:          classes/op.C, classes/response.C, classes/string.C,
                   21816:          classes/table.C, classes/void.C, include/pa_array.h,
                   21817:          include/pa_common.h, include/pa_config_fixed.h,
                   21818:          include/pa_config_includes.h, include/pa_dictionary.h,
                   21819:          include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
                   21820:          include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
                   21821:          include/pa_socks.h, include/pa_sql_connection.h,
                   21822:          include/pa_sql_driver_manager.h, include/pa_stack.h,
                   21823:          include/pa_string.h, include/pa_stylesheet_connection.h,
                   21824:          include/pa_table.h, include/pa_threads.h, include/pa_types.h,
                   21825:          include/pa_xslt_stylesheet_manager.h, main/compile.C,
                   21826:          main/compile.y, main/compile_tools.C, main/compile_tools.h,
                   21827:          main/execute.C, main/main.dsp, main/pa_array.C, main/pa_common.C,
                   21828:          main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
                   21829:          main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
                   21830:          main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
                   21831:          main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
                   21832:          main/pa_xslt_stylesheet_manager.C, main/untaint.C,
                   21833:          sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
                   21834:          targets/cgi/pa_threads.C, targets/cgi/parser3.C,
                   21835:          targets/cgi/parser3.dsp, targets/isapi/pa_pool.C,
                   21836:          targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
                   21837:          targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h,
                   21838:          types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
                   21839:          types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
                   21840:          types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
                   21841:          types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vdom.C,
                   21842:          types/pa_vdom.h, types/pa_vdouble.h, types/pa_venv.h,
                   21843:          types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
                   21844:          types/pa_vform.h, types/pa_vimage.C, types/pa_vimage.h,
                   21845:          types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
                   21846:          types/pa_vmethod_frame.h, types/pa_vobject.h,
                   21847:          types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
                   21848:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   21849:          types/pa_vstateless_object.h, types/pa_vstring.C,
                   21850:          types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
                   21851:          types/pa_vvoid.h, types/pa_wcontext.C, types/pa_wcontext.h,
                   21852:          types/pa_wwrapper.h, types/types.dsp: added ident.awk and
                   21853:          main.dsp splitted to main+classes+types along to .am
                   21854: 
                   21855:        * src/classes/Makefile.am: removed useless var
                   21856: 
                   21857:        * src/: classes/classes.cmd, main/main.dsp,
                   21858:          targets/cgi/parser3.dsp: moved classes.inc generation on win32 to
                   21859:          main.dsp
                   21860: 
                   21861: 2001-09-25  parser
                   21862: 
                   21863:        * src/include/pa_config_auto.h.in: xml on linux[elik] works! no
                   21864:          1251 though, todo ICU
                   21865: 
1.116     moko     21866:        * src/: Makefile.am, classes/Makefile.am, classes/dom.C,
1.95      moko     21867:          include/pa_stylesheet_connection.h, main/Makefile.am,
1.116     moko     21868:          main/pa_pool.C, targets/cgi/Makefile.am, types/Makefile.am,
                   21869:          types/pa_vdom.h: xml configure makes
1.95      moko     21870: 
                   21871: 2001-09-24  parser
                   21872: 
1.116     moko     21873:        * src/: classes/Makefile.am, include/pa_config_auto.h.in,
                   21874:          types/Makefile.am: makes
1.95      moko     21875: 
1.116     moko     21876:        * src/targets/cgi/Makefile.am: makefiles
1.95      moko     21877: 
                   21878:        * src/: Makefile.am, targets/Makefile.am, targets/cgi/pa_pool.C:
                   21879:          started unix makes update
                   21880: 
                   21881:        * src/: Makefile.am, main/Makefile.am, targets/cgi/Makefile.am:
                   21882:          started unix makes update
                   21883: 
                   21884:        * src/types/: pa_vdnode.C, pa_vvoid.h, pa_vtable.C: z
                   21885: 
                   21886:        * src/types/pa_value.h: z
                   21887: 
                   21888:        * src/types/: pa_vhash.h, pa_vtable.h, pa_vclass.h: fixed small
                   21889:          bugs with usinge hash/table in expressions
                   21890: 
                   21891:        * src/types/: pa_vfile.h, pa_vimage.h, pa_vstring.h: fiew wrong
                   21892:          resolved conflicts fixed [const]
                   21893: 
                   21894:        * src/: classes/classes.cmd, classes/image.C, classes/op.C,
                   21895:          classes/table.C, include/pa_request.h, include/pa_sapi.h,
                   21896:          main/compile.C, main/compile.tab.C, main/compile.y,
                   21897:          main/compile_tools.h, main/main.dsp, main/pa_common.C,
                   21898:          main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
                   21899:          targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vbool.h,
                   21900:          types/pa_vdate.h, types/pa_vdouble.h, types/pa_vform.C,
                   21901:          types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
                   21902:          types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h: merged3
                   21903:          with before_xml [merge2 actually didn't happen - i've created
                   21904:          tags on wrong branch. so this merge is in fact re-merge]
                   21905: 
                   21906: 2001-09-21  parser
                   21907: 
                   21908:        * src/: main/main.dsp, targets/cgi/parser3.dsp,
                   21909:          targets/isapi/parser3isapi.dsp: updated project files [/ sadly
                   21910:          produced "" in make file and sadly wrong interpreted on load]
                   21911: 
1.116     moko     21912:        * src/: classes/classes.h, classes/hash.C, classes/op.C,
                   21913:          classes/table.C, doc/doxygen.cfg, include/pa_common.h,
                   21914:          include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
                   21915:          include/pa_sql_driver_manager.h, include/pa_string.h,
                   21916:          main/compile.tab.C, main/main.dsp, main/pa_common.C,
                   21917:          main/pa_exec.C, main/pa_globals.C, targets/cgi/parser3.dsp,
                   21918:          targets/isapi/parser3isapi.dsp: merged with before_xml
1.95      moko     21919: 
                   21920:        * src/: classes/classes.C, classes/date.C, classes/dnode.C,
                   21921:          classes/dom.C, classes/file.C, classes/form.C, classes/int.C,
                   21922:          classes/mail.C, doc/doxygen.cfg, include/pa_config_fixed.h,
                   21923:          include/pa_pool.h, main/main.dsp, main/pa_globals.C,
                   21924:          main/pa_pool.C, main/pa_request.C,
                   21925:          main/pa_xslt_stylesheet_manager.C, targets/cgi/pa_pool.C,
                   21926:          targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
                   21927:          targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
                   21928:          targets/isapi/parser3isapi.dsp, types/pa_valiased.C,
                   21929:          types/pa_vcookie.C, types/pa_vdnode.C, types/pa_vdom.C,
                   21930:          types/pa_vfile.C, types/pa_vform.C, types/pa_vimage.C,
                   21931:          types/pa_vrequest.C, types/pa_vresponse.h,
                   21932:          types/pa_vstateless_class.C, types/pa_vstring.C,
                   21933:          types/pa_vtable.C, types/pa_wcontext.C: zillions of #ifdef XML
                   21934:          created new projects for sql drivers [planning to remove sql
                   21935:          drivers from main cvs project] first, will join latest changes
                   21936: 
                   21937:        * src/classes/: dom.C: defaulted dom writing methods encoding to
                   21938:          pool.get_charset
                   21939: 
                   21940:        * src/classes/dom.C: defaulted dom writing methods encoding to
                   21941:          pool.get_charset
                   21942: 
                   21943:        * src/include/pa_pool.h: defaulted dom writing methods encoding to
                   21944:          pool.get_charset
                   21945: 
                   21946:        * src/: classes/dom.C, include/pa_pool.h, main/pa_pool.C,
                   21947:          types/pa_vdnode.C, types/pa_vresponse.h: defaulted dom writing
                   21948:          methods encoding to pool.get_charset
                   21949: 
                   21950:        * src/: include/pa_pool.h, main/pa_pool.C: checked whether
                   21951:          transcoder were created right "unsupported encoding" message.
                   21952:          not @ set time, but @ use time, so until xml output functions
                   21953:          .string, .file, .save used - no encoding name check occur
                   21954: 
                   21955:          reduced transcode buffer size to 60 fixed pool cleanup - no
                   21956:          registration needed, pools are officially destructured
                   21957: 
                   21958: 2001-09-20  parser
                   21959: 
                   21960:        * src/classes/image.C: 20K preload on jpg measure [image::measure]
                   21961: 
                   21962:        * src/main/: pa_pool.C, pa_request.C: Pool::transcode defaults from
                   21963:          $MAIN:DEFAULTS.content-type[$.charset[here]]
                   21964: 
                   21965:        * src/: classes/dnode.C, classes/dom.C,
                   21966:          include/pa_config_includes.h, include/pa_globals.h,
                   21967:          include/pa_pool.h, main/main.dsp, main/pa_globals.C,
                   21968:          main/pa_pool.C, targets/cgi/parser3.dsp,
                   21969:          targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
                   21970:          types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vresponse.h:
                   21971:          Pool::transcode 0
                   21972: 
                   21973:        * src/classes/dom.C: dom. string save file moved output xml options
                   21974:          to last param and made it optional
                   21975: 
                   21976:        * src/types/pa_vdnode.C:     !$elementnode.attributes = hash of
                   21977:          dnodes
                   21978:              !$attributenode.specified = boolean
                   21979:                      true if the attribute received its value explicitly
                   21980:          in the XML document,
                   21981:                      or if a value was assigned programatically with the
                   21982:          setValue function.
                   21983:                  false if the attribute value came from the default value
                   21984:          declared in the document's DTD.
                   21985:              !$pinode.target = target of this processing instruction
                   21986:                  XML defines this as being the first token following the
                   21987:          markup
                   21988:                  that begins the processing instruction.
                   21989:                  XPath:
                   21990:              !^node.select[xpath/query/expression] = hash of 0->node0
                   21991:          1->node1
                   21992:              !^node.select-single[xpath/query/expression] = first node if
                   21993:          any
                   21994: 
                   21995:        * src/types/: pa_value.h, pa_vbool.h, pa_vdate.h, pa_vdouble.h,
                   21996:          pa_vhash.h, pa_vint.h, pa_vstring.h, pa_vtable.h, pa_vvoid.h:
                   21997:          some 'const's added
                   21998: 
                   21999:        * src/types/: pa_vhash.h, pa_vtable.h: table/hash  can be used in
                   22000:          expression context now, there value = size and boolean value
                   22001:          size!=0
                   22002: 
                   22003:        * src/types/: pa_vhash.h, pa_vstring.h, pa_vtable.h: table/hash
                   22004:          can be used in expression context now, there value = size and
                   22005:          boolean value size!=0
                   22006: 
                   22007:        * src/: classes/dnode.C, classes/dom.C, targets/cgi/parser3.dsp,
                   22008:          types/pa_vstring.h: dnode .file .string .save moved back to dom
                   22009:          due to strange xalan bug
                   22010: 
                   22011: 2001-09-18  parser
                   22012: 
                   22013:        * src/: classes/dnode.C, classes/dom.C, classes/hash.C,
                   22014:          classes/image.C, classes/op.C, classes/table.C,
                   22015:          include/pa_common.h, include/pa_globals.h, include/pa_request.h,
                   22016:          include/pa_sql_driver_manager.h, main/compile.C,
                   22017:          main/compile.tab.C, main/compile.y, main/compile_tools.h,
                   22018:          main/execute.C, main/pa_common.C, main/pa_request.C,
                   22019:          main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
                   22020:          targets/cgi/parser3.C, targets/cgi/parser3.dsp,
                   22021:          targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vform.C,
                   22022:          types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
                   22023:          types/pa_vimage.h, types/pa_vtable.h: merged latest bugfixes from
                   22024:          before_xml branch ^if(def $hash) now true only when
                   22025:          ^hash:_count[]!=0 moved .string .save .file from dom to dnode
                   22026: 
                   22027:        * src/: classes/op.C, main/execute.C: operators self changed to
                   22028:          root ^for variable context changed to self
                   22029: 
                   22030:        * src/types/: pa_vdnode.C, pa_vdom.h, pa_vhash.h, pa_vtable.h: dom,
                   22031:          dnode 1
                   22032: 
                   22033:        * src/: classes/dnode.C, classes/dnode.h, main/main.dsp,
                   22034:          types/pa_vdnode.C, types/pa_vdnode.h: dom, dnode 0
                   22035: 
                   22036:        * src/: classes/image.C, main/pa_string.C, main/pa_table.C: image:
                   22037:          poly* fixed
                   22038: 
                   22039: 2001-09-17  parser
                   22040: 
                   22041:        * src/: classes/dom.C, main/main.dsp, main/pa_globals.C,
                   22042:          types/pa_vdom.h: started dnode+dom
                   22043: 
                   22044:          dnode     DOM methods:     $node.name     $node.value
                   22045:          ...others...
                   22046: 
                   22047:              ^node.xpath[/rates/USD] = hash
                   22048:                  $hash[
                   22049:                          $.0[node0]
                   22050:                          $.1[node1]
                   22051:                  ]
                   22052: 
                   22053:        * src/: classes/image.C, types/pa_vimage.C: $image.line-style now
                   22054:          applies to all linear primitives
                   22055: 
                   22056:        * src/: classes/classes.h, classes/dom.C, classes/hash.C,
                   22057:          include/pa_stylesheet_connection.h, main/main.dsp,
                   22058:          targets/cgi/pa_pool.C, types/pa_vdom.h, types/pa_vfile.h,
                   22059:          types/pa_vimage.h: started dnode     DOM:     $node.name
                   22060:          $node.value     ...others...      ^node.xpath[/rates/USD] = hash
                   22061:          dom(dnode)
                   22062: 
                   22063:        * src/: classes/hash.C, main/compile.C, main/compile.tab.C,
                   22064:          main/compile.y, main/compile_tools.h, main/execute.C,
                   22065:          targets/cgi/parser3.C: expressions unary+ ^hash.count[] bugfix:
                   22066:          in expression compound($aa.zz.xx) names now can have minus '-' in
                   22067:          name after '.'
                   22068: 
                   22069: 2001-09-15  parser
                   22070: 
                   22071:        * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
                   22072:          image: $line-width ^line(...)[****   style]
                   22073: 
                   22074:        * src/: classes/dom.C, targets/isapi/parser3isapi.C,
                   22075:          targets/isapi/pool_storage.h, types/pa_vdom.h: fixed bug in isapi
                   22076:          pool_storage - cleanups first, allocations second.  apache wisely
                   22077:          does just like that
                   22078: 
                   22079:        * src/targets/isapi/: parser3isapi.C, pool_storage.h: pool_storage
                   22080:          rewritten using template, no bugs now
                   22081: 
                   22082:        * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/pa_pool.C,
                   22083:          targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
                   22084:          targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h:
                   22085:          poorly started isapi pool_storage, would rewrite using template
                   22086:          now
                   22087: 
                   22088:        * src/: classes/dom.C, classes/image.C, include/pa_pool.h,
                   22089:          include/pa_stylesheet_connection.h, main/main.dsp,
                   22090:          targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
                   22091:          targets/isapi/pool_storage.h, types/pa_vdom.C, types/pa_vdom.h:
                   22092:          xalan objects freed up [introducing Pool::register_cleanup]
                   22093: 
                   22094:        * src/: doc/doxygen.cfg, include/pa_sapi.h, types/pa_vdom.h:
                   22095:          comments
                   22096: 
                   22097: 2001-09-14  parser
                   22098: 
                   22099:        * src/main/: pa_sql_driver_manager.C, pa_xslt_stylesheet_manager.C:
                   22100:          z
                   22101: 
                   22102:        * src/: classes/dom.C, classes/file.C, classes/image.C,
                   22103:          classes/mail.C, include/pa_common.h,
                   22104:          include/pa_sql_driver_manager.h, include/pa_string.h,
                   22105:          include/pa_stylesheet_connection.h,
                   22106:          include/pa_xslt_stylesheet_manager.h, main/main.dsp,
                   22107:          main/pa_common.C, main/pa_exec.C, main/pa_globals.C,
                   22108:          main/pa_sql_driver_manager.C, main/pa_xslt_stylesheet_manager.C,
                   22109:          main/untaint.C, types/pa_vfile.C: dom.xslt  stylesheet
                   22110:          compiled&cached
                   22111: 
                   22112: 2001-09-13  parser
                   22113: 
                   22114:        * src/: classes/dom.C, classes/file.C, classes/image.C,
                   22115:          types/pa_vfile.C, types/pa_vfile.h: ^dom.file[] charset
                   22116: 
                   22117:        * src/classes/dom.C: dom:file content-type(.method)
                   22118: 
                   22119:        * src/: include/pa_common.h, include/pa_globals.h,
                   22120:          main/pa_common.C, main/pa_request.C: $MAIN:CLASS_PATH now can be
                   22121:          string now more informative error messages
                   22122: 
                   22123:        * src/: include/pa_globals.h, include/pa_request.h,
                   22124:          main/pa_request.C, targets/cgi/parser3.C,
                   22125:          targets/isapi/parser3isapi.C: ParserRootConfig .../parser3.conf
                   22126:          ParserSiteConfig .../parser3.conf
                   22127: 
                   22128:          cgi&isapi looks for {configure|c:\windows}/parser3.conf
                   22129: 
                   22130: 2001-09-12  parser
                   22131: 
                   22132:        * src/: classes/op.C, include/pa_sql_driver_manager.h,
                   22133:          main/pa_sql_driver_manager.C: ^connect[] ^connect[aaa] more
                   22134:          precise error reporting: "connection string must start with
                   22135:          protocol://" now
                   22136: 
                   22137:        * src/main/compile.tab.C: fixed - subname code parts actually []
                   22138:          braced
                   22139: 
                   22140:        * src/main/: compile.y, compile_tools.h: name.[part].xxx syntax
                   22141:          lexer on LS_USER level did [] matching without setting nestage,
                   22142:          introduced special LS_NAME_SQUARE_PART state
                   22143: 
                   22144: 2001-09-11  parser
                   22145: 
                   22146:        * src/: classes/dom.C, include/pa_string.h, main/pa_globals.C,
                   22147:          main/untaint.C: ^dom:set{<some>xml</some>} default language XML
                   22148:          languages+=xml
                   22149: 
                   22150:        * src/: classes/dom.C, types/pa_vdom.h: ^dom:set[<some>xml</some>]
                   22151: 
                   22152:        * src/classes/dom.C: ^dom:save/string/file[output options] output
                   22153:          options:     $.method[xml|html|text] detection fixed
                   22154: 
                   22155:        * src/types/pa_vdom.h: messages
                   22156: 
                   22157:        * src/classes/dom.C: ^dom:save/string/file[output options] output
                   22158:          options:     $.method[xml|html|text] detection fixed
                   22159: 
                   22160: 2001-09-10  parser
                   22161: 
                   22162:        * src/classes/dom.C: ^dom:save/string/file[output options] output
                   22163:          options:     $.method[xml|html|text] $.encoding[windows-1251|...]
                   22164: 
                   22165:        * src/classes/dom.C: ^dom.xslt[stylesheet filename][params hash
                   22166:          added]
                   22167: 
                   22168:        * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
                   22169:          ^dom.xslt[stylesheet filename] 0
                   22170: 
                   22171:        * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
                   22172:          ^dom.xslt[stylesheet filename] -1 doc is lying
                   22173: 
                   22174:        * src/classes/dom.C: ^dom.file[encoding] = file
                   22175: 
                   22176:        * src/classes/: dom.C: ^dom.string[encoding] 1
                   22177:          ^dom.save[encoding;filename]
                   22178: 
                   22179:        * src/classes/dom.C: ^dom.string[] 0
                   22180: 
                   22181:        * src/classes/dom.C: ^dom.save[b.xml] 1:error handling
                   22182: 
                   22183:        * src/: classes/dom.C, main/main.dsp, types/pa_vform.C,
                   22184:          types/pa_vform.h: ^dom.save[b.xml] 0
                   22185: 
                   22186: 2001-09-08  parser
                   22187: 
                   22188:        * src/types/pa_vform.C: $form:tables.name.field
                   22189: 
                   22190: 2001-09-07  parser
                   22191: 
                   22192:        * src/classes/table.C: table:empty removed, superceded by ^if(def
                   22193:          $table)...
                   22194: 
                   22195:        * src/targets/cgi/parser3.C: z
                   22196: 
                   22197:        * src/main/pa_string.C: $a[] ^if($a){y;n} is 'n' now  [conversion
                   22198:          from '' to int/double is 0]
                   22199: 
                   22200:        * src/: classes/dom.C, types/pa_value.h, types/pa_vtable.h: (def
                   22201:          $table) is false when table is empty
                   22202: 
                   22203:        * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
                   22204:          !$form:tables $atable[$form:tables.a]
                   22205:          ^atable.menu{a=$atable.element}[,]
                   22206: 
                   22207:        * src/: targets/cgi/parser3.dsp, types/pa_vform.C,
                   22208:          types/pa_vform.h, types/pa_vhash.h: !$form:fields
                   22209: 
1.116     moko     22210:        * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95      moko     22211:          types/pa_vdom.h, types/pa_vform.C: merged with successful start
                   22212:          of dom
                   22213: 
                   22214:        * src/: include/pa_hash.h, main/pa_hash.C, types/pa_vfile.h,
                   22215:          types/pa_vform.C, types/pa_vform.h: z
                   22216: 
                   22217:        * src/: main/pa_exception.C, types/pa_vform.C: getting FIRST form
                   22218:          element [not last]
                   22219: 
1.116     moko     22220:        * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95      moko     22221:          types/pa_vdom.h: introducing dom. dom:load[a.xml]
                   22222: 
                   22223: 2001-09-06  parser
                   22224: 
                   22225:        * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
                   22226:          table with one column 'element' and two rows: 1 and 2
                   22227: 
                   22228:        * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
                   22229:          table with one column 'element' and two rows: 1 and 2
                   22230: 
                   22231:        * src/: classes/void.C, main/pa_string.C, main/pa_table.C: fixed up
                   22232:          bad int/double conversions, and now $form:nonexistent.int(88)
                   22233:          would return 88
                   22234: 
                   22235:        * src/: classes/hash.C, include/pa_globals.h, main/pa_globals.C,
                   22236:          types/pa_vhash.h: now there's special hash key '_default'
                   22237:          [instead of ^_default method] $hash[         $.a[1]  $.b[2]
                   22238:          $._default[xx] ] $hash.c
                   22239: 
                   22240:        * src/main/: compile.tab.C, compile.y: ^if(0){}{ ^if(1){}^; } bug
                   22241:          fixed [thanks, fif], ^; were treated there non-literally
                   22242: 
                   22243:        * src/doc/doxygen.cfg: merged new default options from 1.2.10
                   22244:          doxygen
                   22245: 
                   22246:        * src/: classes/image.C, classes/op.C, classes/string.C,
                   22247:          classes/table.C, doc/doxygen.cfg, targets/isapi/parser3isapi.C,
                   22248:          types/pa_vtable.C: few #ifndef DOXYGEN
                   22249: 
                   22250: 2001-09-05  parser
                   22251: 
                   22252:        * src/classes/: string.C, table.C: sql options can be void [same as
                   22253:          image:html the other day]
                   22254: 
                   22255:        * src/targets/cgi/Makefile.am: .am undo
                   22256: 
                   22257:        * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
                   22258:          targets/cgi/parser3.C: #define STRINGIZE(name) #name does not
                   22259:          macro expantion on param, simply qoutes whatever passed, undone
                   22260: 
                   22261:        * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
                   22262:          targets/cgi/Makefile.am, targets/cgi/parser3.C: #define
                   22263:          STRINGIZE(name) #name invented
                   22264: 
                   22265:        * src/: classes/op.C, include/pa_sql_driver_manager.h,
                   22266:          main/pa_sql_driver_manager.C: #define MAIN_SQL_NAME "SQL" #define
                   22267:          MAIN_SQL_DRIVERS_NAME "drivers"
                   22268: 
                   22269:          moved to be availible to all users
                   22270: 
                   22271:        * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h:
                   22272:          SQL_DRIVER_CREATE_FUNC_NAME
                   22273: 
                   22274:        * src/classes/mail.C: MAIN:MAIL check fixed
                   22275: 
                   22276: 2001-09-04  parser
                   22277: 
                   22278:        * src/classes/image.C: image.html now can accept void params
                   22279: 
                   22280:        * src/targets/isapi/parser3isapi.C: z
                   22281: 
                   22282:        * src/targets/cgi/parser3.C: full_file_spec bug
                   22283: 
                   22284:        * src/targets/cgi/parser3.C: getenvcheck
                   22285: 
                   22286:        * src/targets/cgi/parser3.C: zz
                   22287: 
                   22288:        * src/targets/cgi/parser3.C: zzz
                   22289: 
                   22290:        * src/classes/date.C: date
                   22291: 
                   22292:        * src/classes/date.C: date:sql-string is now without ''
                   22293: 
1.116     moko     22294:        * src/: include/pa_config_auto.h.in, targets/cgi/Makefile.am,
1.95      moko     22295:          targets/cgi/parser3.C: configure --sysconfdir=sysadmin-controlled
                   22296:          auto.p location for targets/cgi/parser3, default[/usr/local/etc]
                   22297: 
1.116     moko     22298:        * src/include/pa_config_auto.h.in: makes
1.95      moko     22299: 
                   22300: 2001-09-03  parser
                   22301: 
                   22302:        * src/targets/cgi/parser3.C: /configure cgi SYSCONFDIR
                   22303: 
                   22304: 2001-09-01  parser
                   22305: 
                   22306:        * src/classes/image.C: letter_spacing
                   22307: 
                   22308:        * src/classes/image.C: image: font params changed
                   22309: 
                   22310:        * src/classes/image.C: image: as_int as_string used
                   22311: 
                   22312:        * src/types/pa_vmethod_frame.h: $result[] now gets properly
                   22313:          analized
                   22314: 
                   22315: 2001-08-31  parser
                   22316: 
                   22317:        * src/targets/cgi/parser3.C: z
                   22318: 
1.116     moko     22319:        * src/: include/pa_dir.h, targets/cgi/parser3.C: compiled under
                   22320:          cygwin
1.95      moko     22321: 
                   22322:        * src/classes/void.C: void:int/double += (default)
                   22323: 
                   22324:        * src/classes/image.C: image:font added space param image:font
                   22325:          changed charwidth alg, added kerning const[for now]
                   22326: 
                   22327:        * src/classes/: string.C, table.C: string:int/double (defaults)
                   22328: 
                   22329: 2001-08-29  parser
                   22330: 
                   22331:        * src/main/pa_exception.C: exception redundant debug info
                   22332: 
                   22333: 2001-08-28  parser
                   22334: 
                   22335:        * src/classes/image.C: image error msgs
                   22336: 
                   22337:        * src/classes/image.C: image: gifsize little endian
                   22338: 
                   22339:        * src/doc/doxygen.cfg: doxygen conf removed some garbage from under
                   22340:          doxygeneration
                   22341: 
                   22342:        * src/: classes/Makefile.am, main/Makefile.am,
                   22343:          targets/cgi/Makefile.am, types/Makefile.am: .am-s
                   22344: 
                   22345:        * src/: include/pa_dictionary.h, main/pa_dictionary.C,
                   22346:          main/pa_sql_driver_manager.C: NO_STRING_ORIGIN check3
                   22347: 
                   22348:        * src/main/compile.C: NO_STRING_ORIGIN check2
                   22349: 
                   22350:        * src/classes/table.C: NO_STRING_ORIGIN check
                   22351: 
                   22352:        * src/include/pa_dictionary.h: gcc: ../include/pa_dictionary.h:19:
                   22353:          storage class specifiers invalid in friend function declarations
                   22354: 
                   22355:        * src/: classes/op.C, main/compile.tab.C, main/pa_dir.C,
                   22356:          main/untaint.C, targets/cgi/parser3.C,
                   22357:          targets/isapi/parser3isapi.C: strncpy forced with zero ending in
                   22358:          case of limit
                   22359: 
                   22360:        * src/: classes/file.C, main/pa_common.C: file:move
                   22361:          autocreate/remove dest/src dir
                   22362: 
                   22363:        * src/: classes/string.C, include/pa_dictionary.h,
                   22364:          include/pa_string.h, main/pa_dictionary.C, main/pa_string.C,
                   22365:          main/untaint.C: pa_directory speeded up. moved zero 'from' check
                   22366:          to directory constructor.  string:replace
                   22367: 
                   22368: 2001-08-27  parser
                   22369: 
                   22370:        * src/classes/image.C: fixed jpgsize alg
                   22371: 
                   22372:        * src/classes/image.C: fixed jpgsize alg
                   22373: 
                   22374:        * src/main/pa_exception.C: z
                   22375: 
                   22376:        * src/main/pa_common.C: removed debug info from pa_common
                   22377: 
                   22378:        * src/: main/pa_request.C, targets/cgi/parser3.C: parser3 test.html
                   22379:          [auto.p from current dir loading]
                   22380: 
1.116     moko     22381:        * src/: main/pa_common.C, main/pa_exception.C,
                   22382:          main/pa_sql_driver_manager.C, targets/cgi/Makefile.am: configure
                   22383:          for solaris -lsocket
1.95      moko     22384: 
                   22385: 2001-08-24  parser
                   22386: 
                   22387:        * src/targets/cgi/parser3.C: not cgi extra \n 3
                   22388: 
                   22389:        * src/targets/cgi/parser3.C: not cgi extra \n 2
                   22390: 
                   22391:        * src/targets/cgi/parser3.C: not cgi extra \n
                   22392: 
                   22393:        * src/main/pa_sql_driver_manager.C: z
                   22394: 
                   22395:        * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C:
                   22396:          sql* removed services from disconnect - cross-request ideological
                   22397:          probs.
                   22398: 
                   22399:        * src/sql/pa_sql_driver.h: sql* removed services from disconnect -
                   22400:          cross-request ideological probs.  oracle - fixed bug: cs
                   22401:          allocated on request.pool and got freed before disconnect
                   22402: 
                   22403:        * src/classes/: file.C, form.C, mail.C, table.C: fiew non-pool
                   22404:          mallocs fixed
                   22405: 
                   22406: 2001-08-23  parser
                   22407: 
                   22408:        * src/classes/file.C: minor bug in file:save fixed
                   22409: 
                   22410:        * src/main/pa_sql_driver_manager.C: oracle: dlink
                   22411: 
                   22412: 2001-08-22  parser
                   22413: 
                   22414:        * src/: classes/file.C, main/compile.tab.C, types/pa_vfile.C,
                   22415:          types/pa_vfile.h: file:load|save[text|binary;
                   22416: 
                   22417:        * src/main/: compile.tab.C, compile.y: ^method[]^[^] literals []
                   22418: 
                   22419: 2001-08-21  parser
                   22420: 
                   22421:        * src/classes/: file.C, table.C: ^file:list
                   22422: 
                   22423: 2001-08-20  parser
                   22424: 
                   22425:        * src/: main/compile.tab.C, main/compile.y,
                   22426:          main/pa_sql_driver_manager.C, types/pa_value.h, types/pa_vbool.h,
                   22427:          types/pa_vdouble.h, types/pa_vint.h: $var(123) ^var.inc[]
                   22428:          recousively caused problems: inc incremeted 123 literal!! fixed
                   22429: 
                   22430: 2001-08-10  parser
                   22431: 
                   22432:        * src/main/: compile.tab.C, compile.y: [codes] name part syntax now
                   22433: 
                   22434:        * src/main/: compile.tab.C, compile.y: (codes) name part syntax
                   22435:          added
                   22436: 
                   22437:        * src/main/: compile.tab.C, compile.y: (codes) name part syntax
                   22438:          added
                   22439: 
                   22440:        * src/classes/table.C: table:sort restored [it was bad test :(]
                   22441: 
                   22442:        * src/types/: pa_value.h, pa_vstring.h: string now def only when ne
                   22443:          ''
                   22444: 
                   22445:        * src/main/: pa_request.C: wanted to make const int
                   22446:          MAX_EXECUTE_SECONDS=1;
                   22447: 
                   22448:          but couldnt, set_callback_and_alarm appeared to be not exported
                   22449:          :(
                   22450: 
                   22451:        * src/main/pa_string.C: string.match hanged on. there were a hang
                   22452:          check but it weren't wise enough
                   22453: 
                   22454:          @parse[dateString][tmp]
                   22455:          $tmp[^dateString.match[(\d\d\d\d-)?(\d\d-)?][g]] $tmp.1 $tmp.2
                   22456:          #end
                   22457: 
                   22458:          @main[] ^parse[2001-02-03]
                   22459: 
                   22460:        * src/classes/: table.C: table:sort now default desc
                   22461: 
                   22462:        * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
                   22463:          table.sort now creates new sorted table
                   22464: 
                   22465: 2001-08-09  parser
                   22466: 
                   22467:        * src/main/pa_string.C: $a[010] now ^if($a==10){true} were octal
                   22468: 
                   22469:        * src/classes/hash.C: hash:_default now [was hash:default]
                   22470: 
                   22471:        * src/classes/op.C: case without switch check added
                   22472: 
                   22473:        * src/types/pa_vcookie.C: cookie name&value origins added, more
                   22474:          precise $ORIGINS(1)
                   22475: 
                   22476:        * src/main/Makefile.am: .am
                   22477: 
                   22478:        * src/classes/void.C: void: int double  copy/paste from int: bug
                   22479:          fixed
                   22480: 
                   22481:        * src/classes/void.C: void: int double  copy/paste from int: bug
                   22482:          fixed
                   22483: 
                   22484: 2001-08-07  parser
                   22485: 
                   22486:        * src/: classes/double.C, classes/int.C, classes/string.C,
                   22487:          classes/table.C, include/pa_globals.h, main/pa_globals.C:
                   22488:          !^int/double:sql{query}[[$.limit(2) $.offset(4) $.default(0)]]
                   22489:          string, table
                   22490: 
                   22491:        * src/: classes/math.C, main/pa_request.C: math:random fixed. win32
                   22492:          srand made working
                   22493: 
                   22494: 2001-08-06  parser
                   22495: 
                   22496:        * src/: classes/mail.C, classes/op.C, include/pa_array.h,
                   22497:          include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
                   22498:          main/compile.tab.C, main/compile.y, main/pa_array.C,
                   22499:          main/pa_dictionary.C, main/pa_exec.C, main/pa_globals.C,
                   22500:          main/pa_hash.C, main/pa_request.C, main/pa_string.C: class_path
                   22501: 
                   22502:        * src/main/pa_exec.C: exec win32 real filename
                   22503: 
                   22504:        * src/classes/file.C: exec stderr out
                   22505: 
                   22506:        * src/classes/hash.C: hash:keys renamed to hash:_keys :(
                   22507: 
                   22508: 2001-08-03  parser
                   22509: 
                   22510:        * src/: classes/table.C, types/pa_vtable.h: vtable.locks killed
                   22511: 
                   22512: 2001-08-02  parser
                   22513: 
                   22514:        * src/: classes/string.C, classes/table.C, include/pa_array.h,
                   22515:          main/execute.C, main/pa_exec.C: introducing Array_iter
                   22516: 
                   22517:        * src/main/execute.C: detected quick_get recursion bug. changed to
                   22518:          get@execute, but needs array iterator, separate from array to
                   22519:          avoid it & use caching
                   22520: 
                   22521:        * src/main/: pa_dictionary.C, pa_globals.C: memset dictionary minor
                   22522:          bug fixed
                   22523: 
                   22524:        * src/: classes/classes.h, classes/op.C, include/pa_globals.h,
                   22525:          main/execute.C, main/pa_globals.C: found another multithread bug
                   22526:          in op.C (last, last global var killed) :)
                   22527: 
                   22528: 2001-08-01  parser
                   22529: 
                   22530:        * src/: include/pa_dictionary.h, include/pa_globals.h,
                   22531:          include/pa_string.h, main/main.dsp, main/pa_dictionary.C,
                   22532:          main/pa_globals.C, main/pa_request.C, main/pa_string.C,
                   22533:          main/untaint.C: speeded up typo-html replacements. introducing
                   22534:          Dictionary with first-char caching
                   22535: 
                   22536: 2001-07-31  parser
                   22537: 
                   22538:        * src/types/Makefile.am: pa_vtable.C added to .am
                   22539: 
                   22540:        * src/main/compile.tab.C: added, so that could be compiled even on
                   22541:          non-bison-enabled platforms
                   22542: 
                   22543: 2001-07-28  parser
                   22544: 
                   22545:        * src/classes/table.C: table:hash always produces hash, when can't
                   22546:          - empty
                   22547: 
                   22548:        * src/main/: compile.y, untaint.C: bug fix @ untaint when \r
                   22549:          skipped \n
                   22550: 
                   22551: 2001-07-27  parser
                   22552: 
                   22553:        * src/classes/: double.C, int.C, string.C: provided meaningful msg
                   22554:          on int/double/string :sql without result and default
                   22555: 
                   22556: 2001-07-26  parser
                   22557: 
                   22558:        * src/classes/op.C: fixed bad multithread bug with strangly global
                   22559:          OP
                   22560: 
                   22561:        * src/main/compile.y: $man[$.age[zzz]]  0
                   22562: 
                   22563:        * src/: include/pa_opcode.h, main/compile.y, main/execute.C: hash
                   22564:          creation syntax problem persists. restored $: for a while.
                   22565:          thinking of $man[$.age[zzz]] syntax now
                   22566: 
                   22567:        * src/: classes/double.C, classes/int.C, classes/string.C,
                   22568:          include/pa_opcode.h, main/compile.C, main/compile.y,
                   22569:          main/compile_tools.h, main/execute.C, types/pa_vcode_frame.h,
                   22570:          types/pa_vmethod_frame.h, types/pa_wcontext.h,
                   22571:          types/pa_wwrapper.h: fixing :: realization #1
                   22572: 
                   22573:        * src/: include/pa_opcode.h, main/compile.C, main/compile.y,
                   22574:          main/compile_tools.h, main/execute.C, main/pa_request.C,
                   22575:          types/pa_vmethod_frame.h: introducing :: this is constructor call
                   22576:          prefix.  ordinary : remains for static accesses
                   22577: 
                   22578: 2001-07-25  parser
                   22579: 
                   22580:        * src/types/pa_vtable.C: table: get_element order changeed. now: 1.
                   22581:          fields 2. methods 3. columns
                   22582: 
                   22583:        * src/types/: pa_vdouble.h, pa_vint.h: odbc: no result queries;
                   22584:          quote.  optimized double&int tostring-s
                   22585: 
                   22586:        * src/main/: compile.C, compile.y, compile_tools.h: allowed
                   22587:          whitespace before first method decl
                   22588: 
                   22589:        * src/classes/table.C: allowed nontable result in table:sql,
                   22590:          results in empty table
                   22591: 
                   22592:        * src/main/: compile.C, compile.y, compile_tools.h: allowed empty
                   22593:          lines before first method decl
                   22594: 
                   22595:        * src/: classes/table.C, main/main.dsp, types/pa_vtable.C,
                   22596:          types/pa_vtable.h: ^table.record[] now $table.fields
                   22597: 
                   22598:        * src/main/compile.y: $var[] is now empty string, not void
                   22599: 
                   22600:        * src/main/: compile.y, execute.C: $var[] is now empty string, not
                   22601:          void
                   22602: 
                   22603:        * src/: classes/string.C, include/pa_globals.h, main/execute.C,
                   22604:          main/pa_globals.C: match replace code context moved to implicit
                   22605:          $match context
                   22606: 
                   22607:        * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
                   22608:          main/compile_tools.h, main/execute.C: with killed, code storage
                   22609:          introduced with former 'with' syntax
                   22610: 
                   22611: 2001-07-24  parser
                   22612: 
                   22613:        * src/: main/compile.C, main/execute.C, main/pa_string.C,
                   22614:          types/pa_value.h: first get_element, next get operator
                   22615: 
                   22616:        * src/main/compile.y: removed @end handling
                   22617: 
                   22618:        * src/main/: compile.C, compile.y: @end handling method2
                   22619: 
                   22620:        * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
                   22621:          file:move
                   22622: 
                   22623:        * src/main/pa_common.C: file_read close @ eof when imgsize bug
                   22624:          fixed
                   22625: 
                   22626: 2001-07-23  parser
                   22627: 
                   22628:        * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql odbc
                   22629:          driver
                   22630: 
                   22631:        * src/classes/hash.C: changed sql driver query interface
                   22632: 
                   22633:        * src/: classes/hash.C, classes/string.C, classes/table.C,
                   22634:          classes/void.C, include/pa_sql_connection.h, sql/pa_sql_driver.h:
                   22635:          changed sql driver query interface
                   22636: 
                   22637: 2001-07-20  parser
                   22638: 
                   22639:        * src/types/pa_vrequest.C: X!$browser:type
                   22640: 
                   22641:        * src/: classes/file.C, classes/string.C, include/pa_string.h,
                   22642:          main/execute.C, main/pa_string.C, types/pa_valiased.C,
                   22643:          types/pa_valiased.h, types/pa_value.h, types/pa_vclass.h,
                   22644:          types/pa_vcookie.h, types/pa_vdate.h, types/pa_vfile.h,
                   22645:          types/pa_vform.h, types/pa_vhash.h, types/pa_vmath.h,
                   22646:          types/pa_vobject.h, types/pa_vrequest.C,
                   22647:          types/pa_vstateless_class.h, types/pa_vstateless_object.h: only
                   22648:          ^class:method dynamic calls allowed.  ^BASE.method call disabled.
                   22649:          BASE element globally removed
                   22650: 
                   22651: 2001-07-18  parser
                   22652: 
                   22653:        * src/classes/file.C: file:exec/cgi msg
                   22654: 
                   22655:        * src/classes/file.C: $file:exit-code renamed to 'status'
                   22656: 
                   22657:        * src/: classes/file.C, main/pa_exec.C: file:exec
                   22658: 
1.116     moko     22659:        * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
                   22660:          targets/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
                   22661:          removed $id from *.in *.am
1.95      moko     22662: 
                   22663:        * src/main/: pa_request.C, untaint.C: ORIGINS langs name
                   22664:          abbrevations
                   22665: 
                   22666:        * src/: classes/date.C, classes/mail.C, classes/math.C,
                   22667:          classes/string.C, classes/table.C, include/pa_globals.h,
                   22668:          include/pa_string.h, main/execute.C, main/pa_globals.C,
                   22669:          main/pa_request.C, main/pa_string.C, main/untaint.C,
                   22670:          types/pa_value.h, types/pa_vdouble.h, types/pa_vfile.h,
                   22671:          types/pa_vint.h, types/pa_vstring.C, types/pa_vstring.h:
                   22672:          $ORIGINS(1) output tracing mode
                   22673: 
                   22674: 2001-07-13  parser
                   22675: 
                   22676:        * src/: classes/double.C, classes/int.C, classes/string.C,
                   22677:          include/pa_request.h, main/execute.C, main/pa_request.C:
                   22678:          auto.p[@auto], /news/auto.p[no @auto], so that initializing
                   22679:          second would not call first @auto
                   22680: 
                   22681:        * src/main/: execute.C, pa_request.C: order of MAIN parents was
                   22682:          wrong, fixed
                   22683: 
                   22684: 2001-07-12  parser
                   22685: 
                   22686:        * src/types/pa_value.h: pa_value.putelement modification of system
                   22687:          classes prevented
                   22688: 
                   22689: 2001-07-11  parser
                   22690: 
                   22691:        * src/: classes/string.C, doc/sources2html.cmd: lr split now yelds
                   22692:          table $piece
                   22693: 
                   22694:        * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
                   22695:          types/pa_vstateless_class.h: $file created by file:state +=
                   22696:          .atime .mtime .ctime +found&fixed bug with exceptions on
                   22697:          get_junction-created objects [they were on wrong pool]
                   22698: 
                   22699: 2001-07-09  parser
                   22700: 
                   22701:        * src/main/untaint.C: qp wrong name
                   22702: 
                   22703:        * src/: classes/date.C, classes/string.C, classes/table.C,
                   22704:          main/compile.y: date format 0
                   22705: 
                   22706: 2001-07-07  parser
                   22707: 
                   22708:        * src/: classes/date.C, classes/table.C, include/pa_common.h,
                   22709:          include/pa_string.h, main/pa_common.C, types/pa_vdate.h: date
                   22710:          roll table calendar
                   22711: 
                   22712:        * src/: classes/Makefile.am, classes/date.C, classes/file.C,
                   22713:          classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
                   22714:          classes/op.C, classes/string.C, classes/table.C, classes/void.C,
                   22715:          include/pa_request.h, main/main.dsp, types/pa_value.h,
                   22716:          types/pa_vdate.h, types/pa_wcontext.C: date  now set $fields roll
                   22717:          string.  todo: sql, calendar
                   22718: 
                   22719: 2001-07-06  parser
                   22720: 
                   22721:        * src/: classes/math.C, include/pa_request.h, main/execute.C,
                   22722:          main/main.dsp, main/pa_request.C, types/pa_vmath.h: math 0
                   22723: 
                   22724: 2001-07-03  parser
                   22725: 
                   22726:        * src/: classes/Makefile.am, classes/math.C, classes/op.C,
                   22727:          classes/random.C, main/main.dsp: class random renamed to math,
                   22728:          operators became methods
                   22729: 
                   22730:        * src/classes/op.C:  pow sqrt
                   22731: 
                   22732:        * src/: classes/op.C, main/execute.C:  sin asin cos acos tan atan
                   22733: 
                   22734: 2001-07-02  parser
                   22735: 
                   22736:        * src/classes/table.C: ^table.columns column renamed from 'name' to
                   22737:          'column'
                   22738: 
                   22739:        * src/classes/hash.C: ^hash.keys[]
                   22740: 
                   22741:        * src/: classes/table.C, main/pa_table.C: ^table:columns[]
                   22742: 
                   22743:        * src/main/: compile.y, compile_tools.h: in expressions now allowed
                   22744:          'strings'
                   22745: 
                   22746: 2001-06-29  parser
                   22747: 
                   22748:        * src/main/: execute.C: /0  %0 checkes ver 2
                   22749: 
                   22750:        * src/main/execute.C: /0  %0 checke
                   22751: 
                   22752:        * src/classes/Makefile.am: nothing - void
                   22753: 
                   22754:        * src/classes/table.C: empty strings @ sql
                   22755: 
                   22756: 2001-06-28  parser
                   22757: 
                   22758:        * src/: classes/double.C, classes/file.C, classes/form.C,
                   22759:          classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
                   22760:          classes/op.C, classes/random.C, classes/response.C,
                   22761:          classes/string.C, classes/table.C, classes/void.C,
                   22762:          main/compile.C, main/compile_tools.C, main/execute.C,
                   22763:          main/pa_array.C, main/pa_common.C, main/pa_dir.C,
                   22764:          main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
                   22765:          main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
                   22766:          main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
                   22767:          main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
                   22768:          targets/isapi/parser3isapi.C, main/compile.y: */ static const
                   22769:          char *RCSId="$Id: double.C,v 1.31 2001/06/28 07:41:59 parser Exp
                   22770:          $";
                   22771: 
                   22772:        * src/: classes/double.C, classes/file.C, classes/form.C,
                   22773:          classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
                   22774:          classes/op.C, classes/random.C, classes/response.C,
                   22775:          classes/string.C, classes/table.C, classes/void.C,
                   22776:          main/compile.C, main/compile.y, main/compile_tools.C,
                   22777:          main/execute.C, main/pa_array.C, main/pa_common.C, main/pa_dir.C,
                   22778:          main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
                   22779:          main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
                   22780:          main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
                   22781:          main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
1.119     moko     22782:          targets/isapi/parser3isapi.C: static char *RCSId="Id";
1.95      moko     22783: 
                   22784:        * src/main/: compile.y, compile_tools.h: $:name: == ${name}:
                   22785:          $class:name: == ${class:name}:
                   22786: 
                   22787:        * src/classes/string.C: exactly one
                   22788: 
                   22789: 2001-06-27  parser
                   22790: 
                   22791:        * src/: classes/nothing.C, classes/void.C, types/pa_vnothing.h,
                   22792:          types/pa_vvoid.h: nothing renamed to void
                   22793: 
                   22794:        * src/classes/op.C: ^switch ^case
                   22795: 
                   22796:        * src/main/compile.y: nothing renamed to void
                   22797: 
                   22798:        * src/: classes/hash.C, classes/table.C, main/compile.y,
                   22799:          main/execute.C, main/main.dsp, main/pa_request.C,
                   22800:          targets/cgi/pa_pool.C, types/pa_value.h, types/pa_vcode_frame.h,
                   22801:          types/pa_vmethod_frame.h, types/pa_vtable.h: nothing renamed to
                   22802:          void
                   22803: 
                   22804:        * src/main/compile.y: lexer: $zzzz^zzzz were name part
                   22805: 
                   22806: 2001-05-28  parser
                   22807: 
                   22808:        * src/doc/html2chm.cmd: removed >a
                   22809: 
                   22810:        * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: release
                   22811:          project options [some bugs]
                   22812: 
                   22813:        * src/doc/sources2html.cmd: z
                   22814: 
                   22815:        * src/: classes/classes.C, main/compile.C, main/compile.y,
                   22816:          main/execute.C: operators are not in root class again
                   22817: 
                   22818: 2001-05-24  parser
                   22819: 
                   22820:        * src/targets/cgi/parser3.dsp: project file
                   22821: 
                   22822:        * src/: classes/op.C, main/pa_request.C, targets/cgi/parser3.C:
                   22823:          ^log ^exp
                   22824: 
                   22825:        * src/: main/pa_request.C, targets/cgi/parser3.C: // no _
                   22826:          conversions in @exception[params]
                   22827: 
                   22828:        * src/main/pa_request.C: // no _ conversions in @exception[params]
                   22829: 
                   22830: 2001-05-23  parser
                   22831: 
                   22832:        * src/main/pa_string.C: string cmp bug
                   22833: 
                   22834:        * src/classes/: mail.C, op.C: rem max 1000
                   22835: 
                   22836:        * src/: classes/op.C, main/compile.y: allow one empty line before
                   22837:          LS_DEF_NAME
                   22838: 
                   22839: 2001-05-22  parser
                   22840: 
                   22841:        * src/classes/op.C: if params code-required
                   22842: 
                   22843: 2001-05-21  parser
                   22844: 
                   22845:        * src/types/pa_vstring.C: eoleof
                   22846: 
                   22847:        * src/classes/Makefile.am: .AM
                   22848: 
                   22849:        * src/classes/nothing.C: resultless ^sql  moved to nothing:
                   22850: 
                   22851:        * src/classes/: nothing.C, op.C: 'unknown' renamed to 'nothing'
                   22852: 
                   22853:        * src/: classes/double.C, classes/nothing.C, classes/string.C,
                   22854:          classes/unknown.C, main/main.dsp, types/pa_vnothing.h,
                   22855:          types/pa_vunknown.h, classes/hash.C, main/compile.y,
                   22856:          main/execute.C, targets/cgi/pa_pool.C, types/pa_vcode_frame.h,
                   22857:          types/pa_vmethod_frame.h, types/pa_vtable.h, classes/table.C,
                   22858:          main/pa_request.C, types/pa_value.h: 'unknown' renamed to
                   22859:          'nothing'
                   22860: 
                   22861:        * src/types/: pa_vstring.C, pa_vstring.h: removed unnecessary
                   22862:          vstring::set_string
                   22863: 
                   22864:        * src/classes/: double.C, int.C, string.C: int,double;sql
                   22865: 
                   22866:        * src/: classes/hash.C, classes/int.C, classes/string.C,
                   22867:          classes/table.C, include/pa_string.h, main/pa_string.C,
                   22868:          types/pa_vstring.C, types/pa_vstring.h: started int:sql
                   22869: 
                   22870:        * src/: classes/classes.C, classes/hash.C, classes/op.C,
                   22871:          classes/table.C, main/compile.C, main/compile.y, main/execute.C:
                   22872:          hash:sql moved to main trunc. operators.txt updated
                   22873: 
                   22874:        * src/classes/: hash.C, op.C, table.C: hash:sql
                   22875: 
                   22876:        * src/classes/op.C: z
                   22877: 
                   22878:        * src/: main/compile.C, classes/classes.C: 1
                   22879: 
                   22880:        * src/: classes/classes.C, main/compile.C, main/compile.y,
                   22881:          main/execute.C: 0
                   22882: 
                   22883:        * src/main/execute.C: z
                   22884: 
                   22885:        * src/targets/cgi/parser3.C: z
                   22886: 
                   22887:        * src/targets/cgi/parser3.C: argv can be just "parser3". made
                   22888:          site_auto_path "." in that case
                   22889: 
                   22890:        * src/targets/cgi/: parser3.C: z
                   22891: 
                   22892:        * src/main/pa_request.C: .am
                   22893: 
                   22894:        * src/: main/pa_request.C, targets/cgi/parser3.C:
                   22895:          pcre_tables=pcre_default_tables;
                   22896: 
                   22897: 2001-05-19  parser
                   22898: 
                   22899:        * src/main/pa_string.C: z
                   22900: 
                   22901:        * src/: include/pa_string.h, main/untaint.C, targets/cgi/pa_pool.C:
                   22902:          introducing String::cstr_bufsize, returns just size+1 for as_is
                   22903:          target.
                   22904: 
                   22905:        * src/: main/untaint.C, targets/cgi/pa_pool.C,
                   22906:          targets/cgi/parser3.C: fixed bug in pre html untaint, wrong size
                   22907:          used, 4* mem wasted
                   22908: 
                   22909:        * src/classes/string.C: root context in match replace body now
                   22910:          unchanged
                   22911: 
                   22912:        * src/types/pa_value.h: parameter # 1 based
                   22913: 
                   22914:        * src/main/pa_common.C: common:  actual filename '%s'
                   22915: 
                   22916:        * src/classes/string.C: z
                   22917: 
                   22918:        * src/classes/Makefile.am: classes/.am
                   22919: 
                   22920:        * src/classes/: Makefile.am: classes/.am
                   22921: 
                   22922:        * src/: classes/Makefile.am, main/pa_sql_driver_manager.C,
                   22923:          targets/cgi/pa_pool.C: classes/.am
                   22924: 
                   22925: 2001-05-18  parser
                   22926: 
1.116     moko     22927:        * src/: include/pa_config_auto.h.in, targets/cgi/pa_pool.C: .am
                   22928:          pa_threads.C ins
1.95      moko     22929: 
                   22930:        * src/targets/cgi/Makefile.am: .am pa_threads.C added
                   22931: 
                   22932: 2001-05-17  parser
                   22933: 
                   22934:        * src/: classes/string.C, include/pa_config_fixed.h,
                   22935:          include/pa_config_includes.h, main/compile.y,
                   22936:          main/compile_tools.h, main/execute.C, main/pa_array.C,
                   22937:          main/pa_common.C, main/pa_dir.C, main/pa_hash.C, main/pa_pool.C,
                   22938:          main/untaint.C, types/pa_vcookie.C, types/pa_vfile.C,
                   22939:          types/pa_vform.C: #include "pa_config_includes.h" removed from
                   22940:          most .C
                   22941: 
                   22942:        * src/doc/html2chm.cmd: z
                   22943: 
                   22944:        * src/doc/: chm.cmd, doxygen.cmd, html2chm.cmd, sources2html.cmd,
                   22945:          view.cmd, view_chm.cmd, view_html.cmd: doc cmds
                   22946: 
                   22947:        * src/main/pa_sql_driver_manager.C: moved expiration to
                   22948:          get_connection_from_cache
                   22949: 
                   22950:        * src/main/pa_sql_driver_manager.C: cache expiration bf
                   22951: 
                   22952:        * src/: classes/classes.h, include/pa_sql_connection.h,
                   22953:          include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C:
                   22954:          cache expiration[use SQL_Driver::disconnect]
                   22955: 
                   22956:        * src/main/pa_table.C: table.locate current restored on "not found"
                   22957: 
                   22958:        * src/: main/execute.C, types/pa_vmethod_frame.h: endless recursion
                   22959:          line no
                   22960: 
                   22961:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
                   22962:          ANTI_ENDLESS_EXECUTE_RECOURSION
                   22963: 
                   22964:        * src/: classes/op.C, include/pa_sql_connection.h,
                   22965:          include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C,
                   22966:          sql/pa_sql_driver.h: fixed problem at last: 2connections own
                   22967:          1driver and set_services fight for driver::fservices. before fix
                   22968: 
                   22969:        * src/: classes/op.C, include/pa_config_fixed.h,
                   22970:          include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
                   22971:          main/pa_sql_driver_manager.C: found problem at last: 2connections
                   22972:          own 1driver and set_services fight for driver::fservices. before
                   22973:          fix
                   22974: 
                   22975:        * src/: include/pa_config_fixed.h, include/pa_threads.h,
                   22976:          targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
                   22977:          targets/isapi/pa_threads.C, targets/isapi/parser3isapi.dsp: added
                   22978:          pa_threads.C
                   22979: 
                   22980:        * src/include/pa_threads.h: removed targets/parser
                   22981: 
                   22982:        * src/include/: pa_array.h, pa_common.h, pa_config_fixed.h,
                   22983:          pa_config_includes.h, pa_exception.h, pa_exec.h, pa_globals.h,
                   22984:          pa_hash.h, pa_opcode.h, pa_pool.h, pa_request.h, pa_sapi.h,
                   22985:          pa_socks.h, pa_sql_connection.h, pa_stack.h, pa_string.h,
                   22986:          pa_table.h, pa_threads.h: #include "pa_config_includes.h" in all
                   22987:          headers
                   22988: 
                   22989:        * src/: classes/image.C, include/pa_sql_driver_manager.h,
                   22990:          main/pa_sql_driver_manager.C, main/pa_string.C: wrong includes
                   22991:          order prevented sqlmanager to see MULTYTHREAD define
                   22992: 
                   22993:        * src/: include/pa_config_fixed.h, include/pa_threads.h,
                   22994:          main/pa_sql_driver_manager.C: SYNCHRONIZED moved closer to caches
                   22995:          put/gets
                   22996: 
                   22997:        * src/: include/pa_hash.h, main/execute.C: removed /*SYNCHRONIZED*/
                   22998:          from hash.h
                   22999: 
                   23000:        * src/: classes/op.C, include/pa_sql_connection.h,
                   23001:          main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: connection
                   23002:          from cache ->set_services(&services);
                   23003: 
                   23004: 2001-05-16  parser
                   23005: 
                   23006:        * src/targets/cgi/parser3.C: z
                   23007: 
                   23008:        * src/: include/pa_pool.h, targets/cgi/pa_pool.C: removed pool
                   23009:          debug, #ifdefed some.  would debug later, on more precise sample
                   23010:          than stupid: @main[] $name[$z[]] ^for[i](0;10000-2){ $tail[9994]
                   23011:          $name.$tail[$tail!] $name.$tail } ok3
                   23012: 
                   23013:        * src/: include/pa_array.h, main/pa_array.C, targets/cgi/parser3.C:
                   23014:          removed array debug. before vstring rebasing
                   23015: 
                   23016:        * src/: include/pa_array.h, include/pa_string.h, main/execute.C,
                   23017:          main/pa_array.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C:
                   23018:          array debugged; adjusted
                   23019: 
                   23020:        * src/main/: pa_sql_driver_manager.C, pa_string.C:
                   23021:          SQL_Driver_manager line no for connect/charset errors
                   23022: 
                   23023: 2001-05-15  parser
                   23024: 
                   23025:        * src/: include/pa_array.h, include/pa_string.h, main/pa_array.C,
                   23026:          main/pa_string.C: string+array made linear grows
                   23027: 
                   23028:        * src/: include/pa_string.h, main/pa_string.C,
                   23029:          targets/cgi/pa_pool.C, targets/cgi/parser3.C: think that all must
                   23030:          grow lineary, not exponentialy
                   23031: 
                   23032:        * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C,
                   23033:          targets/cgi/pa_pool.C, targets/cgi/parser3.C: string fixed bug
                   23034:          with fullchunk cmps
                   23035: 
                   23036:        * src/targets/cgi/: pa_pool.C, parser3.C: main loss here: 5673321/
                   23037:          70041=           81
                   23038: 
                   23039:        * src/: include/pa_string.h, targets/cgi/pa_pool.C,
                   23040:          targets/cgi/parser3.C: detected huge mem allocation: size/times
                   23041:          malloc 27809390/368771, calloc 3232/83. would test now
                   23042: 
                   23043:        * src/: classes/random.C, main/compile.y, main/execute.C,
                   23044:          main/pa_request.C, types/pa_value.h, types/pa_vmethod_frame.h:
                   23045:          numbered params had wrong name - for instance: bad error message
                   23046:          in ^for[] bad body type. fixed
                   23047: 
                   23048: 2001-05-14  parser
                   23049: 
                   23050:        * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
                   23051:          main/untaint.C: ^string.upper|lower[]
                   23052: 
                   23053: 2001-05-11  parser
                   23054: 
                   23055:        * src/: classes/double.C, classes/image.C, classes/op.C,
                   23056:          classes/string.C, classes/table.C, classes/unknown.C,
                   23057:          main/execute.C, types/pa_value.h, types/pa_vbool.h,
                   23058:          types/pa_vdouble.h, types/pa_vint.h, types/pa_vstring.h,
                   23059:          types/pa_vunknown.h: op: MAX_LOOPS as_int
                   23060: 
                   23061:        * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: fixed some
                   23062:          .dsp for win32tools
                   23063: 
                   23064: 2001-05-11  paf
                   23065: 
                   23066:        * src/: classes/classes.cmd, classes/gawk.exe, classes/ls.exe,
                   23067:          main/bison.exe, targets/isapi/KILL.EXE, targets/isapi/PSTAT.EXE,
                   23068:          targets/isapi/istart.cmd, targets/isapi/istop.cmd,
                   23069:          targets/isapi/kill.pl: moved win32 helpers to /win32tools
                   23070: 
                   23071: 2001-05-10  paf
                   23072: 
                   23073:        * src/include/: pa_common.h, pa_config_includes.h: inline undefed
                   23074:          for C++, that's all
                   23075: 
1.116     moko     23076:        * src/include/: pa_config_auto.h.in, pa_config_fixed.h,
                   23077:          pa_config_includes.h: inline wonders
1.95      moko     23078: 
                   23079:        * src/: classes/Makefile.am, classes/hash.C, doc/doxygen.cfg,
                   23080:          doc/doxygen.cmd: hash.C added
                   23081: 
                   23082:        * src/: main/pa_request.C, types/pa_vrequest.C: op configured
                   23083: 
                   23084:        * src/main/compile.y: @end grammar: allowed zero strings in control
                   23085:          menthod
                   23086: 
                   23087:        * src/types/: pa_value.h, pa_vclass.h, pa_vstateless_class.h,
                   23088:          pa_vstateless_object.h: changed priority: field before method
                   23089:          lookup in vclass & vobject
                   23090: 
                   23091:        * src/: doc/doxygen.cmd, main/compile.y, types/pa_vobject.h:
                   23092:          grammar: priorities changes [lowerd && prior] vobject: now first
                   23093:          fields, next methods
                   23094: 
                   23095: 2001-05-08  paf
                   23096: 
                   23097:        * src/main/pa_table.C: table columnname2item on nameless ignored
                   23098:          bark=false. fixed
                   23099: 
                   23100:        * src/: classes/table.C, types/pa_value.h, types/pa_vhash.h,
                   23101:          types/pa_vmethod_frame.h: hash:default works at last!
                   23102: 
                   23103:        * src/: classes/mail.C, classes/table.C, doc/doxygen.cmd,
                   23104:          main/main.dsp, types/pa_vhash.h, types/pa_vstateless_class.h:
                   23105:          hash:default
                   23106: 
                   23107:        * src/classes/table.C: z
                   23108: 
                   23109:        * src/classes/table.C: table:hash always hash of hash now
                   23110: 
                   23111:        * src/classes/table.C: table:empty return bool now
                   23112: 
                   23113:        * src/: classes/table.C, doc/chm.cmd, include/pa_array.h,
                   23114:          include/pa_table.h, main/pa_table.C, types/pa_value.h,
                   23115:          types/pa_vtable.h: table:hash
                   23116: 
                   23117:        * src/classes/table.C: table:record have name
                   23118: 
                   23119:        * src/: classes/op.C, types/pa_vtable.h: allowed $table.2342734
                   23120:          returns vunknown
                   23121: 
                   23122:        * src/classes/: double.C, int.C, op.C, string.C:
                   23123:          int,double,string:int[] double[] string:length[] results now have
                   23124:          hames
                   23125: 
                   23126:        * src/: classes/op.C, classes/table.C, main/main.dsp,
                   23127:          types/pa_vtable.h: removed table:find. table:locate and op:eval
                   23128:          now return bool
                   23129: 
                   23130:        * src/: doc/chm.cmd, main/execute.C, types/pa_value.h: wrong pool
                   23131:          in method checkparams again. fixed
                   23132: 
                   23133: 2001-05-07  paf
                   23134: 
                   23135:        * src/doc/chm.cmd: cmd
                   23136: 
                   23137:        * src/: classes/image.C, classes/mail.C, classes/string.C,
                   23138:          doc/chm.cmd, include/pa_table.h, main/pa_table.C,
                   23139:          types/pa_value.h: method reported errors on wrong pool
                   23140: 
                   23141:        * src/main/execute.C: ^var[^class:var.method[]] is not constructor
                   23142:          now
                   23143: 
                   23144:        * src/: doc/ClassExample2.dox, doc/aliased.dox, doc/chm.cmd,
                   23145:          include/code.h, include/pa_opcode.h, main/compile.C,
                   23146:          main/compile_tools.h, main/execute.C, types/pa_value.h,
                   23147:          types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
                   23148:          types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
                   23149:          types/pa_vfile.h, types/pa_vform.h, types/pa_vhash.h,
                   23150:          types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
                   23151:          types/pa_vmethod_frame.h, types/pa_vobject.h,
                   23152:          types/pa_vrequest.h, types/pa_vresponse.h,
                   23153:          types/pa_vstateless_class.h, types/pa_vstring.h,
                   23154:          types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
                   23155:          types/pa_wwrapper.h: pa_code.h
                   23156: 
                   23157:        * src/doc/: chm.cmd, doxygen.cmd, view.cmd: dox cmd
                   23158: 
                   23159:        * src/: classes/string.C, classes/table.C, doc/ClassExample1.dox,
                   23160:          doc/ClassExample2.dox, doc/ClassExample3.dox, doc/aliased.dox,
                   23161:          doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
                   23162:          doc/doxygen.cmd, doc/executor.dox, doc/index.dox,
                   23163:          doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
                   23164:          doc/string.dox, doc/targets.dox, doc/value.dox, include/code.h,
                   23165:          include/pa_hash.h, include/pa_string.h, main/pa_request.C,
                   23166:          main/pa_sql_driver_manager.C, types/pa_vjunction.h,
                   23167:          types/pa_vtable.h: dox, split by not clean parts also
                   23168: 
                   23169:        * src/: include/pa_table.h, main/pa_table.C, types/pa_value.h,
                   23170:          types/pa_vtable.h: table: fields, then methods.  so to enable
                   23171:          'dir' fields & co. more
                   23172: 
                   23173:        * src/types/: pa_value.h, pa_vtable.h: table: fields, then methods.
                   23174:          so to enable 'dir' fields & co.
                   23175: 
                   23176:        * src/main/compile.y: grammar: @end
                   23177: 
                   23178: 2001-05-04  paf
                   23179: 
                   23180:        * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
                   23181:          doc/ClassExample3.dox, main/execute.C: dox: example1 updated
                   23182: 
                   23183:        * src/: classes/classes.h, classes/double.C, classes/file.C,
                   23184:          classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
                   23185:          classes/op.C, classes/random.C, classes/response.C,
                   23186:          classes/string.C, classes/table.C, classes/unknown.C,
                   23187:          doc/doxygen.cfg, doc/index.dox, main/pa_string.C: removed m-
                   23188:          method dox
                   23189: 
                   23190: 2001-05-03  paf
                   23191: 
                   23192:        * src/: classes/classes.h, classes/double.C, doc/aliased.dox,
                   23193:          doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
                   23194:          doc/doxygen.txt, doc/executor.dox, doc/index.dox,
                   23195:          doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
                   23196:          doc/string.dox, doc/targets.dox, doc/value.dox,
                   23197:          main/pa_request.C: dox splitted .dox files and added some
                   23198: 
                   23199:        * src/: classes/Makefile.am, doc/doxygen.txt: classes/am
                   23200: 
                   23201: 2001-05-02  paf
                   23202: 
                   23203:        * src/classes/: image.C, table.C: table:dir result are not tainted
                   23204:          by file_name  language now
                   23205: 
                   23206: 2001-04-28  paf
                   23207: 
                   23208:        * src/classes/classes.inc: removed classes.inc
                   23209: 
                   23210:        * src/: classes/classes.inc, main/Makefile.am: removed pa_methoded
                   23211:          from .am
                   23212: 
                   23213:        * src/classes/classes.awk: skipped classes in .awk
                   23214: 
                   23215:        * src/: classes/Makefile.am, classes/classes.C, classes/classes.h,
                   23216:          classes/classes.inc, classes/double.C, classes/file.C,
                   23217:          classes/form.C, classes/int.C, classes/op.C, classes/response.C,
                   23218:          classes/string.C, classes/table.C, classes/unknown.C,
                   23219:          include/pa_methoded.h, main/main.dsp, main/pa_methoded.C,
                   23220:          targets/cgi/parser3.C, types/pa_vdouble.h, types/pa_vfile.h,
                   23221:          types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h: renamed
                   23222:          pa_methoded back to classes/classes.h
                   23223: 
                   23224:        * src/: classes/Makefile.am, main/main.dsp: classes/Makefile.am
                   23225: 
                   23226:        * src/: classes/Makefile.am, classes/classes.awk,
                   23227:          classes/classes.cmd, classes/classes.inc, classes/gawk.exe,
                   23228:          classes/ls.exe, main/bison.exe: classes.inc autogenerator
                   23229: 
                   23230:        * src/: classes/classes.C, classes/classes.h, classes/double.C,
                   23231:          classes/file.C, classes/form.C, classes/int.C, classes/op.C,
                   23232:          classes/response.C, classes/string.C, classes/table.C,
                   23233:          classes/unknown.C, include/pa_methoded.h, main/Makefile.am,
                   23234:          main/main.dsp, main/pa_methoded.C, targets/cgi/parser3.C,
                   23235:          types/pa_vdouble.h, types/pa_vfile.h, types/pa_vform.h,
                   23236:          types/pa_vimage.h, types/pa_vint.h: classes/classes renamet to
                   23237:          include|main/pa_methoded
                   23238: 
                   23239:        * src/: include/pa_string.h, main/pa_globals.C, main/untaint.C,
                   23240:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C: z
                   23241: 
                   23242:        * src/: classes/form.C, include/pa_globals.h, main/pa_globals.C:
                   23243:          moved some configured data to request::classes_conf moved some
                   23244:          string crations from globals to M...  [works]
                   23245: 
                   23246:        * src/: classes/form.C, classes/mail.C, classes/op.C,
                   23247:          include/pa_globals.h, include/pa_request.h, main/pa_globals.C,
                   23248:          main/pa_request.C: moved some configured data to
                   23249:          request::classes_conf moved some string crations from globals to
                   23250:          M...
                   23251: 
                   23252:        * src/: classes/form.C, include/pa_request.h, main/pa_request.C:
                   23253:          about to move configured data to special request hash
                   23254: 
                   23255:        * src/: classes/classes.C, classes/classes.h, classes/file.C,
                   23256:          classes/form.C, classes/mail.C, include/pa_request.h,
                   23257:          main/pa_request.C: configure started
                   23258: 
                   23259:        * src/: main/execute.C, types/pa_wcontext.h: Methoded reorganized
                   23260:          2. todo: methoded-configure
                   23261: 
                   23262:        * src/: classes/_double.h, classes/_file.h, classes/_form.h,
                   23263:          classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
                   23264:          classes/_random.h, classes/_response.h, classes/_string.h,
                   23265:          classes/_table.h, classes/_unknown.h, classes/classes.inc,
                   23266:          classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
                   23267:          classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
                   23268:          classes/random.C, classes/response.C, classes/string.C,
                   23269:          classes/table.C, classes/unknown.C, include/pa_globals.h,
                   23270:          include/pa_request.h, main/compile.y, main/execute.C,
                   23271:          main/main.dsp, main/pa_globals.C, main/pa_request.C,
                   23272:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                   23273:          types/pa_value.h, types/pa_vcookie.h, types/pa_vdouble.h,
                   23274:          types/pa_venv.h, types/pa_vfile.h, types/pa_vform.C,
                   23275:          types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
                   23276:          types/pa_vrequest.h, types/pa_vresponse.h,
                   23277:          types/pa_vstateless_class.h, types/pa_vstring.h,
                   23278:          types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
                   23279:          classes/classes.C, classes/classes.h: Methoded reorganized. todo:
                   23280:          methoded-configure
                   23281: 
                   23282:        * src/: classes/file.C, classes/table.C, main/compile.y,
                   23283:          main/execute.C, main/pa_request.C, targets/cgi/parser3.C,
                   23284:          types/pa_vtable.h, types/pa_wcontext.h: removed ^a.menu{$name}
                   23285:          ability. now $a{^menu{$name}} or ^a.menu{$a.name}
                   23286: 
                   23287:        * src/: classes/_string.h, classes/classes.C, classes/classes.h,
                   23288:          classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
                   23289:          classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
                   23290:          classes/random.C, classes/response.C, classes/string.C,
                   23291:          classes/table.C, classes/unknown.C, include/pa_request.h,
                   23292:          main/compile.y, main/execute.C, main/pa_globals.C,
                   23293:          main/pa_request.C, types/pa_value.h, types/pa_vdouble.h,
                   23294:          types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
                   23295:          types/pa_vimage.h, types/pa_vint.h, types/pa_vresponse.h,
                   23296:          types/pa_vstring.h, types/pa_vtable.h, types/pa_vunknown.h:
                   23297:          beautifying just compiled. todo: debug, configure
                   23298: 
                   23299: 2001-04-27  paf
                   23300: 
                   23301:        * src/: classes/file.C, classes/image.C, classes/table.C,
                   23302:          main/execute.C, main/pa_request.C, types/pa_vstateless_class.h:
                   23303:          beautifying -99
                   23304: 
                   23305:        * src/: classes/_double.h, classes/_form.h, classes/_int.h,
                   23306:          classes/_response.h, classes/_unknown.h, classes/classes.C,
                   23307:          classes/classes.h, classes/double.C, classes/file.C,
                   23308:          classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
                   23309:          classes/op.C, classes/random.C, classes/response.C,
                   23310:          classes/string.C, include/pa_globals.h, main/main.dsp,
                   23311:          main/pa_globals.C, types/pa_vdouble.h, types/pa_vfile.h,
                   23312:          types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
                   23313:          types/pa_vresponse.h, types/pa_vstring.h, types/pa_vtable.h,
                   23314:          types/pa_vunknown.h: beautifying -100
                   23315: 
                   23316:        * src/main/compile.y: serge@ found @CLASS bug. fixed
                   23317: 
                   23318:        * src/: classes/_file.h, classes/_image.h, classes/_mail.h,
                   23319:          classes/_op.h, classes/_random.h, classes/_table.h,
                   23320:          classes/file.C, classes/image.C, classes/int.C, classes/mail.C,
                   23321:          classes/op.C, classes/random.C, classes/response.C,
                   23322:          classes/string.C, classes/table.C, classes/unknown.C,
                   23323:          include/pa_globals.h, main/main.dsp, main/pa_globals.C,
                   23324:          main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
                   23325:          types/pa_vcookie.h, types/pa_venv.h, types/pa_vrequest.h: started
                   23326:          beautifying
                   23327: 
                   23328: 2001-04-26  paf
                   23329: 
                   23330:        * src/: main/pa_request.C, types/pa_vfile.h: code documentation ++
                   23331: 
                   23332:        * src/: doc/doxygen.cfg, include/pa_socks.h, main/pa_socks.C: code
                   23333:          documentation ++
                   23334: 
                   23335:        * src/: classes/_exec.h, doc/doxygen.cfg,
                   23336:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   23337:          targets/cgi/pa_pool.C: code documentation ++
                   23338: 
                   23339:        * src/: classes/_image.h, classes/op.C, classes/random.C,
                   23340:          types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
                   23341:          types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
                   23342:          types/pa_vform.C, types/pa_vform.h, types/pa_vimage.C,
                   23343:          types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
                   23344:          types/pa_vmethod_frame.h, types/pa_vobject.h,
                   23345:          types/pa_vrequest.C, types/pa_vrequest.h,
                   23346:          types/pa_vstateless_class.C, types/pa_vstateless_object.h,
                   23347:          types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.h,
                   23348:          types/pa_vunknown.h, types/pa_wcontext.C, types/pa_wwrapper.h:
                   23349:          code documentation ++
                   23350: 
                   23351:        * src/: classes/image.C, classes/mail.C, classes/string.C,
                   23352:          classes/table.C, doc/doxygen.cfg, doc/doxygen.txt,
                   23353:          include/pa_array.h, include/pa_dir.h, include/pa_string.h,
                   23354:          main/compile_tools.h, main/pa_common.C, sql/pa_sql_driver.h,
                   23355:          types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
                   23356:          types/pa_vhash.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
                   23357:          types/pa_vobject.h, types/pa_vstateless_class.h,
                   23358:          types/pa_wcontext.h, types/pa_wwrapper.h: code documentation ++
                   23359: 
                   23360:        * src/main/: pa_request.C, pa_string.C: z
                   23361: 
                   23362:        * src/: include/pa_common.h, include/pa_types.h,
                   23363:          main/pa_sql_driver_manager.C: module [and, guess, isapi]
                   23364:          connection caching fixed.  request-pooled-url were stored into
                   23365:          global connectioncache
                   23366: 
                   23367: 2001-04-25  paf
                   23368: 
                   23369:        * src/: doc/doxygen.cfg, doc/doxygen.txt,
                   23370:          targets/isapi/parser3isapi.C: started doc / [doxygen.txt]
                   23371: 
                   23372:        * src/: include/code.h, include/pa_common.h, main/compile.y,
                   23373:          main/execute.C, main/pa_common.C: -d
                   23374: 
                   23375:        * src/: classes/file.C, main/pa_exec.C, targets/cgi/parser3.C:
                   23376:          illegal call check a bit improved, but still under iis no mapping
                   23377:          of dir with parser allowed!
                   23378: 
                   23379: 2001-04-24  paf
                   23380: 
                   23381:        * src/targets/Makefile.am: apache module lib .am
                   23382: 
                   23383:        * src/main/pa_exec.C: windows32 buildCommand
                   23384: 
                   23385: 2001-04-23  paf
                   23386: 
                   23387:        * src/targets/cgi/Makefile.am: win32 conditional
                   23388: 
                   23389:        * src/targets/cgi/Makefile.am: win32 conditional
                   23390: 
                   23391:        * src/targets/cgi/Makefile.am: liblink
                   23392: 
                   23393:        * src/: include/pa_array.h, main/pa_array.C, types/pa_vfile.h:
                   23394:          vfile fields return type
                   23395: 
                   23396:        * src/types/pa_vfile.h: vfile fields return type
                   23397: 
                   23398:        * src/include/pa_config_auto.h.in: .h.in
                   23399: 
                   23400:        * src/: classes/Makefile, main/Makefile, targets/cgi/Makefile,
                   23401:          types/Makefile: makefiles removed
                   23402: 
                   23403:        * src/: classes/Makefile, main/Makefile, main/pa_string.C,
                   23404:          targets/cgi/Makefile, types/Makefile: configure.in + makefiles
                   23405: 
                   23406:        * src/main/pa_string.C: tested OK /// @test really @b test: s x m
                   23407:          [tested: i & g ]
                   23408: 
                   23409:        * src/: classes/random.C, targets/cgi/parser3.C: redo failed ///
                   23410:          @test noticed series in isapi, check how initialize_random_class
                   23411:          is called! [must be called only once]
                   23412: 
                   23413:        * src/main/execute.C: operators first! so that ^table.menu{^rem{}}
                   23414:          would not be 'unknown column'
                   23415: 
                   23416:        * src/: classes/table.C, types/pa_vform.C, types/pa_vtable.h: ///
                   23417:          @test $a.menu{ $a[123] } and $a.menu{^table:set[]...}
                   23418: 
                   23419:        * src/: main/pa_request.C, targets/cgi/parser3.C: /// @test with
                   23420:          commandline start "parser3 a.html" so that ^load[a.cfg] worked!
                   23421:          [now doesnt]
                   23422: 
                   23423:        * src/targets/cgi/parser3.C: cgi cmdline ver
                   23424: 
                   23425:        * src/targets/cgi/parser3.C: cgi /// @test disable
                   23426:          /cgi-bin/parser3/auto.p
                   23427: 
                   23428:        * src/main/untaint.C: untaint without charset
                   23429: 
                   23430:        * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
                   23431:          main/pa_common.C: common: file_write /// @test mkdirs
                   23432:          file_delete rmdirs
                   23433: 
                   23434:        * src/main/untaint.C: mail header only once to =?
                   23435: 
                   23436:        * src/: classes/image.C, classes/mail.C, include/pa_globals.h,
                   23437:          include/pa_string.h, main/pa_exec.C, main/pa_request.C,
                   23438:          main/untaint.C: untaint -        @test optimize whitespaces for
                   23439:          all but 'html'
                   23440: 
                   23441:        * src/: classes/mail.C, include/pa_hash.h, include/pa_string.h,
                   23442:          main/pa_common.C, main/pa_hash.C, main/pa_request.C,
                   23443:          main/untaint.C: untaint -  @test mail-header
                   23444: 
                   23445: 2001-04-20  paf
                   23446: 
                   23447:        * src/: classes/string.C, classes/table.C, include/pa_globals.h,
                   23448:          include/pa_request.h, include/pa_string.h, main/compile.y,
                   23449:          main/pa_globals.C, main/pa_request.C, main/pa_string.C,
                   23450:          targets/cgi/parser3.C: $MAIN:LOCALE
                   23451: 
                   23452:        * src/main/untaint.C: z
                   23453: 
                   23454:        * src/: main/untaint.C, targets/cgi/parser3.C: fixed header "a/a"
                   23455: 
                   23456: 2001-04-19  paf
                   23457: 
                   23458:        * src/main/compile_tools.h: $a$b bugfix
                   23459: 
                   23460:        * src/targets/cgi/parser3.C: z
                   23461: 
                   23462:        * src/classes/file.C: z
                   23463: 
                   23464:        * src/: classes/file.C, include/pa_common.h, types/pa_vcookie.C:
                   23465:          done: header to $fields. waits for header '\' tricks
                   23466: 
                   23467:        * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
                   23468:          main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vcookie.C:
                   23469:          changed urlencode here and in untaint.C to HTTP standard's " and
                   23470:          \" mech
                   23471: 
                   23472:        * src/: main/pa_request.C, targets/isapi/parser3isapi.C: fixed
                   23473:          http://alx/~paf/ doesnt load /auto.p
                   23474: 
                   23475: 2001-04-18  paf
                   23476: 
                   23477:        * src/main/pa_request.C: 1
                   23478: 
                   23479:        * src/: main/Makefile.am, main/main.dsp, targets/cgi/Makefile.am:
                   23480:          linux @alx
                   23481: 
                   23482: 2001-04-17  paf
                   23483: 
                   23484:        * src/: classes/file.C, classes/image.C, doc/doxygen.cfg,
                   23485:          include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
                   23486:          sql/pa_sql_driver.h: SQL_Driver_services renamed. doxygen statics
                   23487:          enabled
                   23488: 
                   23489:        * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
                   23490:          classes/_exec.h, classes/_file.h, classes/_form.h,
                   23491:          classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
                   23492:          classes/_random.h, classes/_response.h, classes/_string.h,
                   23493:          classes/_table.h, classes/_unknown.h, classes/file.C,
                   23494:          classes/image.C, classes/mail.C, classes/op.C, classes/random.C,
                   23495:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   23496:          include/pa_hash.h, include/pa_sql_driver_manager.h,
                   23497:          include/pa_version.h, main/Makefile.am, main/compile.y,
                   23498:          main/pa_common.C, main/pa_exec.C, main/pa_socks.C,
                   23499:          main/pa_sql_driver_manager.C, sql/Makefile.am,
                   23500:          sql/pa_sql_driver.h, targets/cgi/Makefile.am,
                   23501:          targets/cgi/parser3.C, types/Makefile.am, types/pa_vcookie.C,
                   23502:          types/pa_vform.C, types/pa_vimage.h: exec @jav
                   23503: 
                   23504:        * src/: include/pa_sql_driver_manager.h,
                   23505:          main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
                   23506:          types/pa_vimage.h: sql driver interface now has initialize(client
                   23507:          .so)
                   23508: 
                   23509: 2001-04-16  paf
                   23510: 
                   23511:        * src/Makefile.am: compile2 cygwin
                   23512: 
                   23513:        * src/: include/pa_config_includes.h, main/pa_exec.C,
                   23514:          main/pa_socks.C, targets/cgi/Makefile.am: compile1 cygwin
                   23515: 
                   23516:        * src/targets/cgi/Makefile.am: compile0 jav
                   23517: 
                   23518:        * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
                   23519:          classes/_exec.h, classes/_file.h, classes/_form.h,
                   23520:          classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
                   23521:          classes/_random.h, classes/_response.h, classes/_string.h,
                   23522:          classes/_table.h, classes/_unknown.h, classes/image.C,
                   23523:          classes/mail.C, classes/op.C, classes/random.C,
                   23524:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   23525:          include/pa_hash.h, include/pa_version.h, main/Makefile.am,
                   23526:          main/compile.y, main/pa_common.C, main/pa_exec.C,
                   23527:          sql/Makefile.am, targets/cgi/Makefile.am, targets/cgi/parser3.C,
                   23528:          types/Makefile.am, types/pa_vcookie.C, types/pa_vform.C:
                   23529:          compile-1
                   23530: 
                   23531: 2001-04-15  paf
                   23532: 
                   23533:        * src/classes/op.C: z
                   23534: 
                   23535:        * src/classes/table.C: table:empty +=process
                   23536: 
                   23537:        * src/types/pa_value.h: MethodParams !junction
                   23538: 
                   23539:        * src/: classes/_string.h, classes/double.C, classes/file.C,
                   23540:          classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
                   23541:          classes/random.C, classes/response.C, classes/string.C,
                   23542:          classes/table.C, classes/unknown.C, main/pa_request.C:
                   23543:          MethodParams everywhere
                   23544: 
                   23545:        * src/: classes/op.C, include/pa_request.h, types/pa_value.h,
                   23546:          types/pa_vmethod_frame.h: MethodParams in op.C
                   23547: 
                   23548: 2001-04-12  paf
                   23549: 
                   23550:        * src/: classes/image.C, types/pa_vimage.h: image:font :text
                   23551: 
                   23552:        * src/: classes/_unknown.h, classes/unknown.C,
                   23553:          include/pa_globals.h, main/main.dsp, main/pa_globals.C,
                   23554:          types/pa_vunknown.h: ^unknown:int[]=0 double[]=0
                   23555: 
                   23556:        * src/: classes/image.C, main/pa_hash.C: hash bug fixed
                   23557: 
                   23558:        * src/classes/image.C: image:gif now does not have params
                   23559: 
                   23560:        * src/classes/image.C:
                   23561:          image:line/fill/rectangle/bar/replace/polygon/polybar
                   23562: 
                   23563:        * src/: classes/image.C, classes/op.C, main/execute.C,
                   23564:          types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
                   23565:          for var now written not to r.wcontext, but to r.root cleared
                   23566:          "entered_object" state
                   23567: 
                   23568: 2001-04-11  paf
                   23569: 
                   23570:        * src/classes/image.C: image:create image:load
                   23571: 
                   23572:        * src/: classes/image.C, main/main.dsp: gd with mem write + image
                   23573:          just compiled
                   23574: 
                   23575:        * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
                   23576:          todo: gif without file
                   23577: 
                   23578:        * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
                   23579:          started porting to Pooled descendant
                   23580: 
                   23581:        * src/: classes/image.C, main/execute.C, main/main.dsp,
                   23582:          main/pa_request.C, types/pa_vcframe.h, types/pa_vcode_frame.h,
                   23583:          types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
                   23584:          types/pa_vmframe.h: libimaging dead end: pil parses header in .py
                   23585: 
                   23586:        * src/: classes/image.C, include/pa_globals.h, main/main.dsp,
                   23587:          main/pa_globals.C, types/pa_vimage.C, types/pa_vimage.h: gd dead
                   23588:          end. switching to python imaging lib
                   23589: 
                   23590:        * src/main/main.dsp: gd+smtp made separate libs
                   23591: 
                   23592:        * src/: include/pa_globals.h, include/pa_string.h,
                   23593:          main/pa_common.C, main/pa_request.C, main/untaint.C,
                   23594:          types/pa_vfile.C, types/pa_vstring.C: fixed vstring:as_vfile
                   23595:          length
                   23596: 
                   23597:        * src/: classes/mail.C, classes/op.C, targets/cgi/parser3.C,
                   23598:          types/pa_value.h, types/pa_vfile.C, types/pa_vfile.h,
                   23599:          types/pa_vform.C, types/pa_vstring.C, types/pa_vstring.h: forced
                   23600:          UL_FILE_NAME of posted file name
                   23601: 
                   23602:        * src/: classes/image.C, main/pa_request.C, types/pa_vform.C: fixed
                   23603:          post [broke when moved post read to core]
                   23604: 
                   23605: 2001-04-10  paf
                   23606: 
                   23607:        * src/classes/image.C: image:html done
                   23608: 
                   23609:        * src/: classes/image.C, types/pa_vimage.C: jpg measure bugs fixed
                   23610: 
                   23611:        * src/classes/image.C: z
                   23612: 
                   23613:        * src/: classes/_image.h, classes/image.C, types/pa_vimage.C: image
                   23614:          forgotten!
                   23615: 
                   23616:        * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
                   23617:          main/pa_request.C, main/pa_string.C, main/untaint.C,
                   23618:          types/pa_vimage.h: image:measure -90
                   23619: 
                   23620:        * src/: classes/_double.h, classes/_file.h, classes/_form.h,
                   23621:          classes/_int.h, classes/_mail.h, classes/_op.h,
                   23622:          classes/_random.h, classes/_response.h, classes/_string.h,
                   23623:          classes/_table.h, classes/file.C, classes/mail.C,
                   23624:          include/pa_common.h, include/pa_globals.h, main/execute.C,
                   23625:          main/main.dsp, main/pa_common.C, main/pa_globals.C,
                   23626:          targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vfile.C,
                   23627:          types/pa_vfile.h, types/pa_vhash.h, types/pa_vimage.h,
                   23628:          types/pa_vresponse.h, types/pa_vstring.h: image:measure -100 just
                   23629:          compiled
                   23630: 
                   23631:        * src/classes/mail.C: minor bug with unclear from/to
                   23632: 
                   23633:        * src/classes/mail.C: sendmail unix skipping defaults
                   23634: 
                   23635:        * src/: classes/mail.C, include/pa_common.h, main/pa_common.C:
                   23636:          sendmail unix added defaults
                   23637: 
                   23638:        * src/classes/mail.C: unix sendmail compiled. todo:testing
                   23639: 
                   23640:        * src/: classes/mail.C, main/pa_globals.C: smtp some consts
                   23641: 
                   23642: 2001-04-09  paf
                   23643: 
                   23644:        * src/: classes/file.C, include/pa_exec.h, include/pa_sapi.h,
                   23645:          main/main.dsp, main/pa_exec.C, targets/cgi/parser3.C,
                   23646:          targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
                   23647:          targets/isapi/parser3isapi.dsp: all targets exec
                   23648: 
                   23649:        * src/: include/pa_sapi.h, include/pa_string.h,
                   23650:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                   23651:          targets/isapi/parser3isapi.dsp: sapi exec dead end. badly parsed
                   23652:          args in apache:util.script
                   23653: 
                   23654:        * src/include/pa_string.h: written but not tested exec with env for
                   23655:          unix
                   23656: 
                   23657:        * src/: classes/file.C, main/main.dsp, main/pa_request.C,
                   23658:          targets/cgi/parser3.C: exec win32 env
                   23659: 
                   23660:        * src/: classes/file.C, include/pa_hash.h, main/pa_hash.C: exec env
                   23661:          0
                   23662: 
                   23663:        * src/: classes/exec.C, classes/file.C, include/pa_globals.h,
                   23664:          main/execute.C, main/main.dsp, main/pa_globals.C,
                   23665:          main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h,
                   23666:          types/pa_vform.C, types/pa_vstring.C: exec4. todo env
                   23667: 
                   23668:        * src/: classes/exec.C, include/pa_common.h, main/pa_common.C,
                   23669:          main/untaint.C: exec3. decided exec:cgi to move to file:cgi
                   23670: 
                   23671:        * src/: classes/_exec.h, main/execute.C, main/pa_globals.C,
                   23672:          main/pa_request.C, types/pa_vcookie.C, types/pa_vfile.C: exec -2
                   23673: 
                   23674:        * src/: classes/_exec.h, classes/exec.C, include/pa_common.h,
                   23675:          include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
                   23676:          main/pa_common.C, main/pa_request.C, main/pa_string.C,
                   23677:          targets/cgi/parser3.C, targets/cgi/parser3.dsp,
                   23678:          targets/isapi/parser3isapi.C, types/pa_vform.C, types/pa_vform.h:
                   23679:          exec class just compiled. moved post read to request core
                   23680: 
                   23681:        * src/: classes/_op.h, include/pa_dir.h, include/pa_globals.h,
                   23682:          include/pa_sapi.h, main/main.dsp, main/pa_dir.C,
                   23683:          main/pa_globals.C, targets/cgi/parser3.C,
                   23684:          targets/cgi/parser3.dsp: problems with ^exec:cgi post data. they
                   23685:          are already read by vform
                   23686: 
                   23687: 2001-04-08  paf
                   23688: 
                   23689:        * src/: classes/file.C, classes/mail.C, classes/string.C,
                   23690:          include/pa_request.h, include/pa_string.h, main/pa_request.C:
                   23691:          uuencode. string<<
                   23692: 
                   23693: 2001-04-07  paf
                   23694: 
                   23695:        * src/classes/mail.C: z
                   23696: 
                   23697:        * src/classes/mail.C: z
                   23698: 
                   23699:        * src/classes/mail.C: ^mail[$attach
                   23700: 
                   23701:        * src/classes/mail.C: ^attach dead end
                   23702: 
                   23703:        * src/: include/pa_socks.h, main/main.dsp, main/pa_socks.C,
                   23704:          targets/cgi/parser3.C, targets/cgi/parser3.dsp,
                   23705:          targets/isapi/parser3isapi.C: mail:send 1
                   23706: 
                   23707:        * src/: classes/mail.C, main/pa_request.C: z
                   23708: 
                   23709:        * src/: classes/mail.C, include/pa_globals.h, include/pa_request.h,
                   23710:          main/main.dsp, main/pa_globals.C, main/pa_request.C: smtp just
                   23711:          compiled
                   23712: 
                   23713:        * src/classes/mail.C: +=
                   23714: 
                   23715:        * src/: classes/mail.C, include/pa_string.h: mail:send -1 text
                   23716:          prepared
                   23717: 
                   23718:        * src/: classes/_mail.h, classes/mail.C, include/pa_common.h,
                   23719:          include/pa_globals.h, include/pa_string.h, main/main.dsp,
                   23720:          main/pa_common.C, main/pa_globals.C, main/pa_request.C,
                   23721:          main/untaint.C, types/pa_vcookie.C: mail:send -10 just compiled
                   23722: 
                   23723: 2001-04-06  paf
                   23724: 
                   23725:        * src/: classes/table.C, include/pa_globals.h, main/pa_globals.C,
                   23726:          main/pa_string.C: table:dir 1
                   23727: 
                   23728:        * src/: classes/table.C, include/pa_dir.h, main/execute.C,
                   23729:          main/main.dsp, main/pa_dir.C: table:dir 0 [without regexp]
                   23730: 
                   23731:        * src/: classes/_op.h, classes/_root.h, classes/op.C,
                   23732:          classes/root.C, include/pa_globals.h, include/pa_request.h,
                   23733:          main/compile.C, main/execute.C, main/main.dsp, main/pa_globals.C,
                   23734:          main/pa_request.C: renamed 'root' to 'op'
                   23735: 
                   23736:        * src/classes/: _op.h, op.C: renamed from 'root'
                   23737: 
                   23738:        * src/types/pa_valiased.C: another root inherititance skipped
                   23739: 
                   23740:        * src/main/: compile.C, compile.y, execute.C: operators are now not
                   23741:          root methods of parent class. just 'ROOT' class
                   23742: 
                   23743:        * src/: classes/random.C, classes/table.C, main/pa_globals.C:
                   23744:          @office
                   23745: 
                   23746:        * src/: main/pa_request.C, sql/pa_sql_driver.h: mysql limit
                   23747: 
                   23748: 2001-04-05  paf
                   23749: 
                   23750:        * src/: main/execute.C, main/pa_request.C, main/pa_string.C,
                   23751:          types/pa_value.h, types/pa_vmframe.h, types/pa_wcontext.h:
                   23752:          constructor flag dropped at get_method_frame and remembered into
                   23753:          method_frame
                   23754: 
                   23755:        * src/: classes/file.C, classes/root.C, classes/string.C,
                   23756:          classes/table.C, main/pa_request.C: junction to code&expression
                   23757:          in errors
                   23758: 
                   23759:        * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
                   23760:          main/pa_string.C, targets/isapi/parser3isapi.dsp:
                   23761:          $LOCALE:ctype[Russian_Russia.1251]
                   23762: 
                   23763:        * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
                   23764:          include/pa_hash.h, include/pa_string.h, main/pa_hash.C,
                   23765:          main/pa_table.C: hash now not thread-safe.
                   23766: 
                   23767:        * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
                   23768:          main/untaint.C: z
                   23769: 
                   23770:        * src/: classes/random.C, classes/root.C, classes/table.C,
                   23771:          include/pa_sql_connection.h, include/pa_string.h, main/execute.C,
                   23772:          main/pa_sql_driver_manager.C, main/pa_string.C, main/untaint.C,
                   23773:          sql/pa_sql_driver.h, types/pa_vmframe.h, types/pa_wcontext.C,
                   23774:          types/pa_wcontext.h: sql quote. string untaint UL_SQL
                   23775: 
                   23776:        * src/: classes/table.C, include/pa_sql_connection.h,
                   23777:          main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql ping
                   23778: 
                   23779:        * src/classes/table.C: select * from hren error contains statement
                   23780: 
                   23781:        * src/: classes/table.C, include/pa_sql_connection.h,
                   23782:          include/pa_types.h, main/pa_sql_driver_manager.C, main/untaint.C,
                   23783:          sql/pa_sql_driver.h, targets/cgi/parser3.dsp: mysql 0
                   23784: 
                   23785:        * src/: classes/root.C, include/pa_sql_connection.h,
                   23786:          include/pa_sql_driver.h, main/main.dsp,
                   23787:          main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql driver
                   23788:          services for conv memory & error reporting
                   23789: 
                   23790: 2001-04-04  paf
                   23791: 
                   23792:        * src/doc/doxygen.cfg: z
                   23793: 
                   23794:        * src/include/pa_sql_driver.h: mysql connect
                   23795: 
                   23796:        * src/include/pa_sql_driver.h: mysql info
                   23797: 
                   23798:        * src/: classes/root.C, include/pa_sql_driver.h,
                   23799:          include/pa_sql_driver_manager.h, main/main.dsp,
                   23800:          main/pa_sql_driver_manager.C: more manager&connection&driver
                   23801: 
                   23802:        * src/sql/Makefile.am: forgot to add mysql client
                   23803: 
                   23804:        * src/: include/pa_sql_driver.h, include/pa_sql_driver_manager.h,
                   23805:          main/pa_sql_driver_manager.C: connect&sql -1000 just compiled
                   23806:          [forgot to add libltdl, added]
                   23807: 
                   23808:        * src/: Makefile.am, classes/root.C, classes/string.C,
                   23809:          classes/table.C, include/pa_globals.h, include/pa_hash.h,
                   23810:          include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
                   23811:          include/pa_string.h, include/pa_table.h, main/main.dsp,
                   23812:          main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
                   23813:          main/pa_string.C, main/pa_table.C, main/untaint.C: connect&sql
                   23814:          -1000 just compiled
                   23815: 
                   23816:        * src/: classes/random.C, classes/root.C, classes/table.C,
                   23817:          include/pa_globals.h, include/pa_pool.h, include/pa_request.h,
                   23818:          main/pa_request.C, types/pa_vclass.h: sql frame -10
                   23819: 
                   23820: 2001-04-03  paf
                   23821: 
                   23822:        * src/types/pa_vform.C: z
                   23823: 
                   23824:        * src/: classes/string.C, types/pa_vform.C: string:match replace
                   23825:          assigned lang
                   23826: 
                   23827:        * src/: classes/string.C, main/compile.y: grammar: fixed to allow
                   23828:          {}[]< empty []
                   23829: 
                   23830:        * src/: classes/file.C, classes/string.C, classes/table.C,
                   23831:          include/pa_string.h, main/pa_common.C, main/pa_string.C,
                   23832:          main/untaint.C: string:match replace 2.  string.cstr(forced lang)
                   23833: 
                   23834:        * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
                   23835:          string:match replace strange matches
                   23836: 
                   23837:        * src/classes/string.C: string:match replace 0
                   23838: 
                   23839:        * src/: classes/string.C, main/pa_string.C: string:match replace
                   23840:          prepared 2
                   23841: 
                   23842:        * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
                   23843:          string:match replace prepared
                   23844: 
                   23845:        * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
                   23846:          string:match replace -11
                   23847: 
                   23848:        * src/: classes/string.C, include/pa_globals.h,
                   23849:          include/pa_string.h, include/pa_threads.h, main/pa_globals.C,
                   23850:          main/pa_string.C, targets/isapi/parser3isapi.dsp: string:match 0
                   23851: 
                   23852:        * src/: classes/string.C, include/pa_globals.h,
                   23853:          include/pa_string.h, main/main.dsp, main/pa_globals.C,
                   23854:          main/pa_string.C: string:match [search] -1 just compiled
                   23855: 
                   23856:        * src/types/pa_vstring.C: z
                   23857: 
                   23858:        * src/: classes/double.C, classes/file.C, classes/form.C,
                   23859:          classes/int.C, classes/response.C, classes/root.C,
                   23860:          classes/string.C, classes/table.C, include/pa_string.h,
                   23861:          main/pa_string.C: string:match -10 [frame]
                   23862: 
                   23863:        * src/: classes/file.C, main/compile_tools.C, main/pa_common.C,
                   23864:          main/pa_request.C: z
                   23865: 
                   23866:        * src/: main/pa_common.C, main/untaint.C, targets/cgi/parser3.C,
                   23867:          targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h:
                   23868:          todo/tests
                   23869: 
                   23870:        * src/include/pa_common.h: z
                   23871: 
                   23872:        * src/: include/pa_globals.h, include/pa_hash.h, main/pa_globals.C,
                   23873:          main/pa_request.C, targets/cgi/parser3.C,
                   23874:          targets/isapi/parser3isapi.C, types/pa_vfile.C:
                   23875:          content-disposition
                   23876: 
                   23877:        * src/: include/pa_common.h, include/pa_globals.h,
                   23878:          main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
                   23879:          targets/isapi/parser3isapi.C, types/pa_value.h: main:post-process
                   23880: 
                   23881:        * src/: include/pa_common.h, include/pa_request.h,
                   23882:          include/pa_sapi.h, main/main.dsp, main/pa_common.C,
                   23883:          main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
                   23884:          types/pa_vfile.C, types/pa_vfile.h, types/pa_vstring.h: vfile in
                   23885:          response:body
                   23886: 
                   23887:        * src/classes/table.C: table:append now uses string::split
                   23888: 
                   23889:        * src/classes/table.C: z
                   23890: 
                   23891:        * src/: classes/file.C, classes/root.C, classes/string.C,
                   23892:          classes/table.C, doc/doxygen.cmd, doc/doxygen.txt,
                   23893:          doc/generate.cmd, include/pa_array.h, include/pa_request.h,
                   23894:          include/pa_string.h, main/execute.C, main/pa_string.C,
                   23895:          main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C:
                   23896:          string::pos & cmp & piece bugs fixed.  string::split new
                   23897:          table:load separated from set table:set implemented with clean \n
                   23898:          \t searches
                   23899: 
                   23900: 2001-04-02  paf
                   23901: 
                   23902:        * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
                   23903:          types/pa_valiased.C, types/pa_valiased.h, types/pa_vdouble.h,
                   23904:          types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
                   23905:          types/pa_vstring.h, types/pa_vtable.h: string::pos. about to use
                   23906:          it in table:set/load
                   23907: 
                   23908:        * src/: classes/table.C, include/pa_array.h, include/pa_string.h,
                   23909:          include/pa_table.h, main/execute.C, types/pa_value.h: table:join
                   23910: 
                   23911:        * src/classes/random.C: random:generate 1
                   23912: 
                   23913:        * src/: classes/_random.h, classes/random.C, include/pa_globals.h,
                   23914:          main/main.dsp, main/pa_globals.C, main/pa_request.C,
                   23915:          types/pa_value.h: random:generate
                   23916: 
                   23917: 2001-03-30  paf
                   23918: 
                   23919:        * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
                   23920:          todo: table flip and append. string::pos
                   23921: 
                   23922:        * src/: classes/double.C, classes/file.C, classes/int.C,
                   23923:          classes/response.C, classes/root.C, classes/string.C,
                   23924:          classes/table.C, main/compile.y, main/execute.C,
                   23925:          types/pa_value.h, types/pa_vstateless_class.C,
                   23926:          types/pa_vstateless_class.h: static|dynamic|any method
                   23927:          registration
                   23928: 
                   23929:        * src/: classes/file.C, classes/table.C, include/pa_table.h,
                   23930:          main/pa_table.C, types/pa_vstring.h, types/pa_wwrapper.h:
                   23931:          table:flip
                   23932: 
                   23933: 2001-03-29  paf
                   23934: 
                   23935:        * src/classes/string.C: string:xsplit forgot that they must result
                   23936:          in 1 row N column [not vice versa]
                   23937: 
                   23938:        * src/classes/string.C: z
                   23939: 
                   23940:        * src/classes/string.C: string: rsplit
                   23941: 
                   23942:        * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
                   23943:          string: lsplit
                   23944: 
                   23945:        * src/: classes/string.C, include/pa_string.h, main/execute.C,
                   23946:          main/pa_array.C, main/pa_string.C, types/pa_vtable.h: string:
                   23947:          lsplit -1
                   23948: 
                   23949:        * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
                   23950:          string: pos
                   23951: 
                   23952:        * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
                   23953:          string: pos -1
                   23954: 
                   23955:        * src/: classes/string.C, classes/table.C, include/pa_string.h,
                   23956:          main/compile.y, main/pa_request.C, main/pa_string.C,
                   23957:          main/untaint.C: string: left right mid
                   23958: 
                   23959:        * src/: classes/string.C, main/compile.y, main/compile_tools.C,
                   23960:          main/compile_tools.h, main/main.dsp, types/pa_value.h,
                   23961:          types/pa_vstring.h, types/pa_vunknown.h: empty params allowed. []
                   23962:          and [;] are different now.
                   23963: 
                   23964:        * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
                   23965:          main/untaint.C: pool.request undone
                   23966: 
                   23967:        * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
                   23968:          main/untaint.C: pool.request
                   23969: 
                   23970: 2001-03-28  paf
                   23971: 
                   23972:        * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
                   23973:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                   23974:          types/pa_value.h, types/pa_vrequest.C, types/pa_vunknown.h:
                   23975:          $request:browser [.type .version]; unknown.get_double now = 0.
                   23976: 
                   23977:        * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
                   23978:          include/pa_table.h, main/pa_globals.C, main/pa_request.C,
                   23979:          main/pa_table.C, types/pa_vfile.C, types/pa_vfile.h,
                   23980:          types/pa_vform.C: file:load autodetection of mime-type by
                   23981:          user-file-name
                   23982: 
                   23983:        * src/: classes/file.C, main/execute.C, main/pa_common.C,
                   23984:          main/untaint.C, targets/cgi/parser3.C, types/pa_vfile.C,
                   23985:          types/pa_vfile.h, types/pa_vform.C: file:load 1. tainted
                   23986: 
                   23987:        * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
                   23988:          types/pa_vfile.C, types/pa_vfile.h: started file:load. wrong
                   23989:          write. must be self.set
                   23990: 
                   23991:        * src/: classes/file.C, classes/root.C, classes/table.C,
                   23992:          include/pa_table.h, main/pa_table.C: table:locate1, file:test
                   23993: 
                   23994:        * src/: classes/table.C, include/pa_array.h, include/pa_hash.h,
                   23995:          include/pa_table.h, main/pa_array.C, main/pa_table.C,
                   23996:          types/pa_vtable.h: table:locate just compiled
                   23997: 
                   23998: 2001-03-27  paf
                   23999: 
                   24000:        * src/main/: execute.C, pa_common.C: fixed r/w context of
                   24001:          code-params2, fixed ntfs hardlink slow dir update
                   24002: 
                   24003:        * src/: main/execute.C, types/pa_value.h, types/pa_vmframe.h,
                   24004:          types/pa_wcontext.h: fixed r/w context of code-params
                   24005: 
                   24006:        * src/: classes/table.C, main/execute.C: about to change junction
                   24007:          rcontext!!
                   24008: 
                   24009:        * src/: classes/double.C, classes/int.C, classes/root.C,
                   24010:          classes/string.C, classes/table.C, main/compile_tools.C,
                   24011:          main/execute.C, main/pa_request.C, main/untaint.C,
                   24012:          types/pa_value.h, types/pa_vbool.h, types/pa_vcookie.C,
                   24013:          types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
                   24014:          types/pa_vmframe.h, types/pa_vstring.h, types/pa_vtable.h,
                   24015:          types/pa_vunknown.h: sort 0
                   24016: 
                   24017:        * src/types/: pa_valiased.C, pa_valiased.h, pa_vdouble.h,
                   24018:          pa_vfile.h, pa_vint.h, pa_vresponse.h, pa_vstring.h, pa_vtable.h:
                   24019:          renamed to are_static_calls_disabled
                   24020: 
                   24021:        * src/: classes/table.C, main/pa_common.C, main/pa_request.C,
                   24022:          targets/cgi/parser3.C, types/pa_value.h, types/pa_vbool.h,
                   24023:          types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
                   24024:          types/pa_vstring.h, types/pa_vunknown.h: continue on sort
                   24025: 
                   24026:        * src/main/compile.y: fixed minor bug in @mn[][] ...^{
                   24027: 
                   24028:        * src/: classes/table.C, include/pa_common.h, main/compile.y:
                   24029:          started table:sort fixed minor bug in #...^{
                   24030: 
                   24031:        * src/: classes/table.C, include/pa_common.h, main/compile.y,
                   24032:          main/execute.C, main/pa_common.C, main/pa_table.C: table:save
                   24033:          decided to have as it were. stepped back.  grammar: added 'in'
                   24034:          'is' 'lt'&co follow-space check
                   24035: 
                   24036: 2001-03-26  paf
                   24037: 
                   24038:        * src/: classes/file.C, classes/root.C, classes/table.C,
                   24039:          include/pa_common.h, include/pa_globals.h, include/pa_table.h,
                   24040:          main/pa_common.C, main/pa_globals.C, main/pa_request.C,
                   24041:          main/pa_table.C: moved ::save to pa_table.  disabled @auto
                   24042:          invocation in ^process
                   24043: 
                   24044:        * src/main/compile.y: grammar: [] 0params [;] 2 params (was 0)
                   24045: 
                   24046:        * src/: classes/table.C, include/pa_array.h, include/pa_table.h,
                   24047:          main/pa_array.C: table:record
                   24048: 
                   24049:        * src/: main/untaint.C, targets/cgi/parser3.C,
                   24050:          targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
                   24051:          targets/isapi/pool_storage.h, types/pa_valiased.h,
                   24052:          types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.h,
                   24053:          types/pa_vint.h, types/pa_vresponse.h, types/pa_vstring.h,
                   24054:          types/pa_vtable.h: z
                   24055: 
                   24056:        * src/: include/pa_pool.h, main/execute.C, types/pa_valiased.C,
                   24057:          types/pa_valiased.h, types/pa_value.h, types/pa_vdouble.h,
                   24058:          types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
                   24059:          types/pa_vstring.h, types/pa_vtable.h: disabled $a(123)
                   24060:          $b[$a.CLASS] ^b.inc[123] shit.  allowed no checks in native
                   24061:          method realisations on 'self' validity - they now can simply
                   24062:          assume that 'self' is V{Proper} .
                   24063: 
                   24064: 2001-03-25  paf
                   24065: 
                   24066:        * src/main/untaint.C: z
                   24067: 
                   24068:        * src/main/: pa_request.C, untaint.C: moved default typo-table to
                   24069:          lowlevel - it initialization could be skipped if failed in @auto.
                   24070:          so that exception report would use some table
                   24071: 
                   24072:        * src/main/pa_request.C: table empty lines ignored. system-default
                   24073:          content type assigned in output:result [can fail in main:auto and
                   24074:          skipped normal defaults extraction]
                   24075: 
                   24076:        * src/: include/pa_string.h, main/compile.y: #comment fixed minor
                   24077:          bug
                   24078: 
                   24079:        * src/main/: pa_globals.C, untaint.C: html-typo - moved all
                   24080:          processing to table [except preliminary \r\n \r \n replacements
                   24081:          to "\n"]
                   24082: 
                   24083:        * src/: classes/table.C, main/untaint.C: html-typo - decided to
                   24084:          move all the processing to table
                   24085: 
                   24086:        * src/: classes/table.C, include/pa_table.h, main/pa_globals.C,
                   24087:          main/pa_table.C, main/untaint.C: returned table originating.
                   24088:          useful for reporting typo table problems origin. think would be
                   24089:          useful somewhere else
                   24090: 
                   24091:        * src/main/untaint.C: typo  \r \r\n \n properly handled
                   24092: 
                   24093:        * src/: classes/table.C, include/pa_globals.h, include/pa_string.h,
                   24094:          include/pa_table.h, main/compile.y, main/compile_tools.C,
                   24095:          main/compile_tools.h, main/pa_globals.C, main/pa_request.C,
                   24096:          main/pa_string.C, main/pa_table.C, main/untaint.C,
                   24097:          types/pa_vcookie.h: typo & typo-default
                   24098: 
                   24099: 2001-03-24  paf
                   24100: 
                   24101:        * src/main/pa_common.C: z
                   24102: 
                   24103:        * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
                   24104:          targets/cgi/parser3.C: html-typo 2
                   24105: 
                   24106:        * src/: doc/doxygen.cfg, doc/doxygen.txt, doc/generate.cmd,
                   24107:          doc/view.cmd, include/pa_array.h, include/pa_globals.h,
                   24108:          include/pa_pool.h, include/pa_string.h, include/pa_table.h,
                   24109:          main/execute.C, main/pa_array.C, main/pa_globals.C,
                   24110:          main/pa_request.C, main/pa_string.C, main/untaint.C,
                   24111:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
                   24112:          types/pa_value.h, types/pa_vtable.h: html-typo 0 html-typo 1.
                   24113:          noticed double default content-type prob. run cgi.cmd tomorrow
                   24114:          first html-typo sample. detected << problem: they become ltlt too
                   24115:          fast
                   24116: 
                   24117:        * src/main/compile.y: z
                   24118: 
                   24119:        * src/main/: compile.y, compile_tools.h: #comment
                   24120: 
                   24121:        * src/: classes/file.C, classes/root.C, classes/table.C,
                   24122:          include/pa_common.h, include/pa_request.h, main/compile.y,
                   24123:          main/pa_common.C, main/pa_request.C, main/pa_string.C,
                   24124:          targets/isapi/parser3isapi.C, types/pa_vfile.h: file_read
                   24125:          stringified
                   24126: 
                   24127:        * src/types/pa_valiased.C: decided to String-ify file_read
                   24128: 
                   24129:        * src/targets/: cgi/parser3.C, isapi/nt_log_events.mc,
                   24130:          isapi/parser3isapi.dsp: cgi: sapi::log
                   24131: 
                   24132:        * src/: include/pa_sapi.h, main/pa_common.C, main/pa_request.C,
                   24133:          targets/cgi/parser3.C, targets/isapi/nt_log_events.mc,
                   24134:          targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp: nt
                   24135:          error log experiments failed - cgi under iis got no access to
                   24136:          log. registereventsource simply failed with 5(illegal call) code,
                   24137:          while worked OK as standalone executable.  isapi: used
                   24138:          HSE_APPEND_LOG_PARAMETER feature
                   24139: 
                   24140:        * src/: include/pa_common.h, include/pa_globals.h,
                   24141:          main/pa_common.C, main/pa_globals.C, main/pa_request.C,
                   24142:          targets/isapi/parser3isapi.C: fixed default content-type
                   24143:          allocation storage
                   24144: 
                   24145:        * src/: include/pa_globals.h, include/pa_request.h,
                   24146:          main/pa_globals.C, main/pa_request.C: z
                   24147: 
                   24148:        * src/: include/pa_array.h, include/pa_hash.h,
                   24149:          include/pa_request.h, main/compile.y, main/pa_array.C,
                   24150:          main/pa_common.C, main/pa_hash.C, main/pa_request.C,
                   24151:          types/pa_vcookie.C: cyclic uses ignored. defaulted default
                   24152:          content-type
                   24153: 
                   24154:        * src/main/: compile.y, execute.C, main.dsp: @CLASS equals @BASE.
                   24155:          sanity
                   24156: 
                   24157:        * src/: main/pa_globals.C, types/pa_vclass.C, types/pa_vclass.h,
                   24158:          types/pa_vstateless_class.C, types/pa_vstateless_class.h: thrown
                   24159:          away freeze mech.  no danger now for you can't do
                   24160:          ^request:process[@new-method[] body] trick anymore.  still
                   24161:          remains $some_instance.process[@new-method[] possibility] but
                   24162:          would leave it as a feature.  see index for sample
                   24163: 
                   24164:        * src/: include/pa_common.h, main/pa_common.C,
                   24165:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C: auto.p
                   24166:          monkey every target
                   24167: 
                   24168:        * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
                   24169:          targets/cgi/parser3.C, targets/isapi/pool_storage.h,
                   24170:          types/pa_vform.C, types/pa_vform.h: auto.p monkey
                   24171: 
                   24172: 2001-03-23  paf
                   24173: 
                   24174:        * src/: include/pa_pool.h, main/pa_request.C,
                   24175:          targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
                   24176:          targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
                   24177:          targets/isapi/pool_storage.h: isapi: dumb pool storage
                   24178: 
                   24179:        * src/targets/isapi/pa_pool.C: decided to continue with extension
                   24180: 
                   24181:        * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: isapi: think
                   24182:          it would be better to rewrite as filter then to deal with pool
                   24183: 
                   24184:        * src/: main/main.dsp, targets/isapi/parser3isapi.C: isapi: docroot
                   24185:          now like in cgi, not from APPL_PHYSICAL_PATH
                   24186: 
                   24187:        * src/: classes/root.C, classes/table.C, include/pa_common.h,
                   24188:          include/pa_config_fixed.h, include/pa_config_includes.h,
                   24189:          include/pa_string.h, include/pa_threads.h, include/pa_types.h,
                   24190:          include/pa_version.h, main/compile.y, main/execute.C,
                   24191:          main/pa_array.C, main/pa_common.C, main/pa_hash.C,
                   24192:          main/pa_pool.C, main/pa_request.C, main/pa_string.C,
                   24193:          main/untaint.C, targets/cgi/parser3.C,
                   24194:          targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vform.C:
                   24195:          cgi: reinvent document_root and request_uri under iis. autoconf
                   24196:          updated. introducing ap_config_includes
                   24197: 
                   24198:        * src/targets/cgi/parser3.C: cgi: reinvent document_root under iis
                   24199: 
                   24200:        * src/targets/cgi/parser3.C: cgi: only one pool now
                   24201: 
                   24202:        * src/: include/pa_globals.h, include/pa_sapi.h, main/main.dsp,
                   24203:          main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
                   24204:          targets/isapi/parser3isapi.C, types/pa_vcookie.C,
                   24205:          types/pa_venv.h, types/pa_vform.C: sapi made object
                   24206: 
                   24207:        * src/: include/pa_globals.h, main/pa_request.C,
                   24208:          targets/cgi/parser3.C, targets/cgi/parser3.dsp,
                   24209:          targets/isapi/parser3isapi.C, types/pa_vcookie.C,
                   24210:          types/pa_venv.h, types/pa_vform.C: all: sapi beauty
                   24211: 
                   24212:        * src/: main/pa_request.C, targets/cgi/parser3.C,
                   24213:          targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
                   24214:          isapi minor env beauty
                   24215: 
                   24216:        * src/: main/pa_request.C, targets/cgi/parser3.C,
                   24217:          targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
                   24218:          isapi document_root 0
                   24219: 
                   24220: 2001-03-22  paf
                   24221: 
                   24222:        * src/targets/isapi/parser3isapi.C: isapi keep-alive
                   24223: 
                   24224:        * src/targets/: cgi/vform_fields_fill.C, cgi/vform_fields_fill.h,
                   24225:          isapi/parser3isapi.C: z
                   24226: 
                   24227:        * src/: include/pa_pool.h, main/pa_request.C,
                   24228:          targets/cgi/parser3.C, targets/isapi/parser3isapi.C: isapi 1
                   24229: 
                   24230:        * src/targets/isapi/: KILL.EXE, PSTAT.EXE, istart.cmd, istop.cmd,
                   24231:          kill.pl: isapi added utils
                   24232: 
                   24233:        * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/parser3.C,
                   24234:          targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
                   24235:          types/pa_vform.C: isapi 0
                   24236: 
                   24237:        * src/: include/pa_pool.h, targets/cgi/pa_pool.C,
                   24238:          targets/cgi/parser3.C, targets/cgi/parser3.dsp,
                   24239:          targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
                   24240:          targets/isapi/parser3isapi.def, targets/isapi/parser3isapi.dsp:
                   24241:          started isapi
                   24242: 
                   24243:        * src/: include/pa_globals.h, main/pa_common.C, main/pa_request.C:
                   24244:          some comments
                   24245: 
                   24246:        * src/: include/pa_globals.h, include/pa_request.h,
                   24247:          include/pa_types.h, main/pa_globals.C, main/pa_request.C,
                   24248:          targets/cgi/parser3.C, types/pa_vcookie.C: config of auto.p path:
                   24249:          parser_root_auto_path parser_site_auto_path
                   24250: 
                   24251:        * src/types/pa_vcookie.C: cookie attr decoded
                   24252: 
                   24253: 2001-03-21  paf
                   24254: 
                   24255:        * src/targets/cgi/parser3.C: z
                   24256: 
                   24257:        * src/include/pa_globals.h: post. todo: config of auto.p path
                   24258: 
                   24259:        * src/: include/pa_globals.h, targets/cgi/parser3.C,
                   24260:          types/pa_venv.h: in cookie & env. todo:post
                   24261: 
                   24262:        * src/: Makefile.am, classes/Makefile.am, classes/file.C,
                   24263:          classes/root.C, classes/table.C, include/pa_array.h,
                   24264:          include/pa_common.h, include/pa_globals.h, include/pa_pool.h,
                   24265:          include/pa_request.h, include/pa_string.h, main/Makefile.am,
                   24266:          main/compile.y, main/execute.C, main/main.dsp, main/pa_common.C,
                   24267:          main/pa_globals.C, main/pa_request.C, main/pa_string.C,
                   24268:          main/pa_table.C, main/untaint.C, targets/Makefile.am,
                   24269:          targets/cgi/Makefile.am, targets/cgi/parser3.C,
                   24270:          targets/cgi/parser3.dsp, types/Makefile.am, types/pa_vcookie.C,
                   24271:          types/pa_vform.C, types/pa_vstring.h, types/pa_wwrapper.h:
                   24272:          shifted apache branch on main trunc
                   24273: 
                   24274:        * src/: include/pa_common.h, include/pa_globals.h,
                   24275:          include/pa_pool.h, include/pa_request.h, main/main.dsp,
                   24276:          main/pa_common.C, main/pa_request.C, targets/cgi/parser3.dsp,
                   24277:          types/pa_vcookie.C, types/pa_vform.C, types/pa_vstring.h:
                   24278:          starting mod_parser3
                   24279: 
                   24280:        * src/targets/cgi/parser3.C: starting mod_parser3
                   24281: 
                   24282: 2001-03-20  paf
                   24283: 
                   24284:        * src/: main/pa_common.C, targets/cgi/Makefile.am,
                   24285:          targets/cgi/parser3.C: automake compiled and works. todo:make
                   24286:          win32 ifdefs work and add ifdef unistd
                   24287: 
                   24288:        * src/: classes/table.C, include/pa_common.h, include/pa_request.h,
                   24289:          main/Makefile.am, main/pa_common.C, main/pa_request.C,
                   24290:          main/pa_table.C, targets/cgi/Makefile.am, targets/cgi/parser3.C:
                   24291:          z
                   24292: 
                   24293:        * src/: include/pa_request.h, main/Makefile.am, main/compile.y,
                   24294:          main/execute.C, main/pa_common.C, types/Makefile.am: removing
                   24295:          locking
                   24296: 
                   24297:        * src/: classes/Makefile.am, types/Makefile.am: z
                   24298: 
                   24299:        * src/: Makefile.am, classes/file.C, classes/root.C,
                   24300:          classes/table.C, include/pa_array.h, include/pa_request.h,
                   24301:          include/pa_string.h, main/Makefile.am, main/execute.C,
                   24302:          main/pa_common.C, main/pa_globals.C, main/pa_request.C,
                   24303:          main/pa_string.C, main/untaint.C, targets/Makefile.am,
                   24304:          targets/cgi/Makefile.am, targets/cgi/parser3.C,
                   24305:          types/pa_vcookie.C, types/pa_wwrapper.h: String::UL_
                   24306: 
                   24307:        * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
                   24308:          main/pa_request.C, types/pa_vfile.h: ^table:save
                   24309: 
                   24310:        * src/: classes/file.C, classes/table.C, include/pa_array.h,
                   24311:          include/pa_common.h, include/pa_request.h, include/pa_string.h,
                   24312:          include/pa_table.h, include/pa_threads.h, main/pa_globals.C,
                   24313:          main/untaint.C, types/pa_valiased.h, types/pa_value.h,
                   24314:          types/pa_vform.h: z
                   24315: 
                   24316:        * src/include/pa_string.h: z
                   24317: 
                   24318:        * src/: classes/_request.h, classes/request.C, main/main.dsp,
                   24319:          main/pa_globals.C, types/pa_value.h, types/pa_vform.h,
                   24320:          types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
                   24321:          :Value
                   24322: 
                   24323:        * src/: classes/_request.h, classes/request.C, main/pa_globals.C,
                   24324:          types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
                   24325:          :VStateless_object
                   24326: 
                   24327:        * src/: classes/_response.h, classes/response.C, main/pa_globals.C,
                   24328:          types/pa_vform.h, types/pa_vresponse.h: VResponse moved to
                   24329:          :VStateless_object
                   24330: 
                   24331:        * src/: main/main.dsp, targets/cgi/parser3.dsp,
                   24332:          types/pa_valiased.C, types/pa_vform.h: commented VForm
                   24333: 
                   24334:        * src/: targets/cgi/pa_vform.C, types/pa_valiased.C,
                   24335:          types/pa_valiased.h, types/pa_value.h,
                   24336:          types/pa_vstateless_class.C, types/pa_vstateless_class.h,
                   24337:          types/pa_vstateless_object.h: moved common get_element part from
                   24338:          stateless object&class into VAliased
                   24339: 
                   24340:        * src/: classes/_env.h, classes/_table.h, classes/env.C,
                   24341:          classes/table.C, main/execute.C, main/main.dsp,
                   24342:          main/pa_globals.C, main/pa_request.C, types/pa_value.h,
                   24343:          types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.h: VEnv is
                   24344:          now :Value
                   24345: 
                   24346:        * src/: classes/_cookie.h, classes/_table.h, classes/cookie.C,
                   24347:          main/execute.C, main/main.dsp, main/pa_globals.C,
                   24348:          types/pa_vcookie.C, types/pa_vcookie.h: VCookie is now :Value
                   24349: 
                   24350:        * src/types/: pa_vfile.C, pa_vfile.h, pa_vstateless_object.h: vfile
                   24351:          doxx
                   24352: 
                   24353:        * src/: classes/_file.h, classes/file.C, include/pa_types.h,
                   24354:          main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
                   24355:          types/pa_valiased.h, types/pa_vfile.C, types/pa_vfile.h,
                   24356:          types/pa_vstateless_class.h, types/pa_vstateless_object.h: \ to /
                   24357:          and ^file:save
                   24358: 
                   24359: 2001-03-19  paf
                   24360: 
                   24361:        * src/types/pa_vfile.C: z
                   24362: 
                   24363:        * src/: classes/file.C, classes/request.C, classes/table.C,
                   24364:          include/pa_string.h, main/main.dsp, main/pa_pool.C,
                   24365:          main/pa_request.C, main/untaint.C, types/pa_value.h,
                   24366:          types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C: file 1
                   24367: 
                   24368:        * src/: classes/table.C, include/pa_common.h, include/pa_globals.h,
                   24369:          include/pa_string.h, include/pa_table.h, main/main.dsp,
                   24370:          main/pa_common.C, main/pa_globals.C, types/pa_value.h,
                   24371:          types/pa_vcookie.h, types/pa_venv.h, types/pa_vform.C,
                   24372:          types/pa_vform.h, types/pa_vrequest.h, types/pa_vtable.h,
                   24373:          classes/_file.h, classes/file.C, types/pa_vfile.C,
                   24374:          types/pa_vfile.h: file class just compiled
                   24375: 
                   24376:        * src/: classes/table.C, include/pa_pool.h, include/pa_request.h,
                   24377:          include/pa_table.h, include/pa_types.h, main/execute.C,
                   24378:          main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
                   24379:          types/pa_vclass.h, types/pa_vform.C, types/pa_vstateless_class.h,
                   24380:          types/pa_vstateless_object.h: ^table:set{default level: TABLE}
                   24381: 
                   24382:        * src/include/pa_pool.h: z
                   24383: 
                   24384:        * src/: include/pa_hash.h, include/pa_types.h, main/pa_common.C,
                   24385:          main/pa_hash.C, main/pa_request.C, types/pa_vcookie.C: renamed
                   24386:          Hash::Value to Val so to doxygen would finlly stop confusing
                   24387:          those Value-s
                   24388: 
                   24389:        * src/: include/code.h, include/pa_array.h, include/pa_common.h,
                   24390:          include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
                   24391:          include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
                   24392:          include/pa_string.h, include/pa_table.h, include/pa_threads.h,
                   24393:          include/pa_types.h, main/compile.C, main/compile.y,
                   24394:          main/compile_tools.C, main/compile_tools.h, main/execute.C,
                   24395:          main/pa_array.C, main/pa_common.C, main/pa_exception.C,
                   24396:          main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
                   24397:          main/pa_request.C, main/pa_string.C, main/pa_table.C,
                   24398:          main/untaint.C, types/pa_valiased.h, types/pa_value.h: z
                   24399: 
                   24400:        * src/types/: pa_valiased.h, pa_vbool.h: doc: Value and it's
                   24401:          derivates somehow unlinked. don't know why yet
                   24402: 
                   24403:        * src/: include/code.h, include/pa_array.h, include/pa_pool.h,
                   24404:          include/pa_string.h, include/pa_threads.h, main/compile.C,
                   24405:          main/compile.y, main/compile_tools.C, main/compile_tools.h,
                   24406:          main/execute.C, main/pa_array.C, main/pa_common.C,
                   24407:          main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
                   24408:          main/pa_pool.C, main/pa_request.C, main/pa_string.C,
                   24409:          main/pa_table.C, main/untaint.C, types/pa_value.h: auto @brief
                   24410: 
                   24411:        * src/: classes/root.C, classes/table.C, main/pa_exception.C,
                   24412:          main/pa_request.C, targets/cgi/parser3.C, types/pa_vbool.h,
                   24413:          types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdouble.h,
                   24414:          types/pa_venv.h, types/pa_vform.h, types/pa_vint.h,
                   24415:          types/pa_vrequest.h: doc: detected Value derivates prob
                   24416: 
                   24417:        * src/include/pa_globals.h: z
                   24418: 
                   24419:        * src/: classes/_request.h, classes/request.C, include/code.h,
                   24420:          include/pa_array.h, include/pa_common.h, include/pa_exception.h,
                   24421:          include/pa_globals.h, include/pa_hash.h, include/pa_pool.h,
                   24422:          include/pa_request.h, include/pa_stack.h, include/pa_string.h,
                   24423:          include/pa_table.h, include/pa_threads.h, include/pa_types.h,
                   24424:          main/execute.C, main/pa_pool.C, main/pa_request.C,
                   24425:          main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
                   24426:          types/pa_value.h, types/pa_vform.C: doxygen include/, Value
                   24427: 
                   24428: 2001-03-18  paf
                   24429: 
                   24430:        * src/: classes/cookie.C, types/pa_vcookie.C, types/pa_vcookie.h:
                   24431:          cookie: allowed access to hash-assigned
                   24432: 
                   24433:        * src/targets/cgi/parser3.C: z
                   24434: 
                   24435:        * src/: classes/_cookie.h, classes/cookie.C, include/pa_common.h,
                   24436:          include/pa_globals.h, include/pa_request.h, include/pa_string.h,
                   24437:          include/pa_types.h, main/main.dsp, main/pa_common.C,
                   24438:          main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
                   24439:          main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
                   24440:          types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
                   24441:          types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
                   24442:          types/pa_vunknown.h: cookie class
                   24443: 
                   24444:        * src/main/pa_request.C: zero length output allowed
                   24445: 
                   24446:        * src/: classes/response.C, main/pa_request.C, types/pa_value.h,
                   24447:          types/pa_vhash.h, types/pa_vresponse.h: ^response:clear[]
                   24448: 
                   24449:        * src/: classes/root.C, main/pa_request.C: taint forgotten forced
                   24450:          lang switch
                   24451: 
                   24452:        * src/: classes/root.C, include/pa_globals.h, include/pa_string.h,
                   24453:          main/pa_globals.C, main/pa_request.C, main/pa_string.C,
                   24454:          types/pa_value.h, types/pa_vhash.h:
                   24455:          $defautl[$content-type[$value[text/html] $charset[windows-1251]]
                   24456: 
                   24457:        * src/main/execute.C: z
                   24458: 
                   24459:        * src/: classes/root.C, main/pa_request.C, main/untaint.C,
                   24460:          targets/cgi/parser3.C: taint[uri
                   24461: 
                   24462:        * src/: classes/request.C, classes/response.C, classes/root.C,
                   24463:          include/pa_common.h, include/pa_globals.h, include/pa_request.h,
                   24464:          include/pa_string.h, main/pa_common.C, main/pa_globals.C,
                   24465:          main/pa_request.C, targets/cgi/parser3.C: ^taint 0
                   24466: 
                   24467:        * src/: classes/root.C, classes/string.C, include/pa_string.h,
                   24468:          main/pa_globals.C, main/pa_request.C, main/pa_string.C,
                   24469:          types/pa_vdouble.h, types/pa_vform.C, types/pa_vint.h,
                   24470:          types/pa_vstateless_class.C: convinient string(pool, char *src,
                   24471:          bool tainted) ctor
                   24472: 
                   24473:        * src/: include/pa_hash.h, include/pa_request.h,
                   24474:          include/pa_string.h, main/pa_globals.C, main/pa_hash.C,
                   24475:          main/pa_request.C, main/pa_string.C, main/untaint.C,
                   24476:          targets/cgi/parser3.C: proper @exceptions params tainting
                   24477: 
                   24478:        * src/: include/pa_hash.h, main/pa_hash.C, targets/cgi/parser3.C:
                   24479:          response fields to header
                   24480: 
                   24481:        * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
                   24482:          z
                   24483: 
                   24484:        * src/: classes/_response.h, classes/response.C,
                   24485:          include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
                   24486:          main/compile.C, main/compile.y, main/execute.C, main/main.dsp,
                   24487:          main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
                   24488:          targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_value.h,
                   24489:          types/pa_vhash.h, types/pa_vrequest.h, types/pa_vresponse.h:
                   24490:          $response: 0  request::core exception rethrow
                   24491: 
                   24492: 2001-03-16  paf
                   24493: 
                   24494:        * src/: main/execute.C, main/main.dsp, types/pa_value.h,
                   24495:          types/pa_vrequest.h: native method' class call with less params
                   24496:          then needed error reporting
                   24497: 
                   24498:        * src/: classes/_request.h, classes/request.C,
                   24499:          include/pa_globals.h, include/pa_request.h, main/execute.C,
                   24500:          main/main.dsp, main/pa_globals.C, main/pa_request.C,
                   24501:          targets/cgi/parser3.C, types/pa_vform.C, types/pa_vrequest.C,
                   24502:          types/pa_vrequest.h: $request : query :uri
                   24503: 
                   24504:        * src/: include/pa_globals.h, main/execute.C, main/pa_globals.C,
                   24505:          types/pa_value.h, types/pa_vcframe.h, types/pa_vmframe.h,
                   24506:          types/pa_wcontext.h: $result
                   24507: 
                   24508:        * src/: main/execute.C, types/pa_vmframe.h: if(in "/news/")
                   24509: 
                   24510:        * src/: classes/double.C, include/code.h, main/compile.y,
                   24511:          main/compile_tools.C, main/compile_tools.h, main/execute.C: ()
                   24512:          and {} param wcontext conflict fixed by OP_EXPR_CODE__STORE_PARAM
                   24513: 
                   24514:        * src/: include/code.h, include/pa_hash.h, include/pa_request.h,
                   24515:          main/compile.y, main/execute.C, types/pa_value.h,
                   24516:          types/pa_vhash.h, types/pa_vstring.h, types/pa_vtable.h,
                   24517:          types/pa_wcontext.C, types/pa_wcontext.h: see () and {} param
                   24518:          wcontext conflict
                   24519: 
                   24520:        * src/: main/execute.C, types/pa_value.h,
                   24521:          types/pa_vstateless_object.h, types/pa_vstring.h: disabled
                   24522:          $string.field
                   24523: 
                   24524: 2001-03-15  paf
                   24525: 
                   24526:        * src/main/pa_request.C: news sample
                   24527: 
                   24528:        * src/: main/compile.y, main/execute.C, main/pa_request.C,
                   24529:          targets/cgi/parser3.C, types/pa_vstring.h: @exception
                   24530: 
                   24531:        * src/main/: compile.y, execute.C: z
                   24532: 
                   24533:        * src/: main/compile.y, main/pa_request.C, targets/cgi/parser3.C,
                   24534:          types/pa_vstring.h: pre-pre-pre-beta cgi under win32 apache pre
                   24535:          pre pre works
                   24536: 
                   24537:        * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
                   24538:          targets/cgi/parser3.C, types/pa_vform.C, types/pa_vform.h: vform
                   24539:          fillfields just compiled
                   24540: 
                   24541: 2001-03-14  paf
                   24542: 
                   24543:        * src/: include/pa_request.h, main/pa_request.C,
                   24544:          targets/cgi/parser3.C: z
                   24545: 
                   24546:        * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
                   24547:          targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h,
                   24548:          types/pa_vstring.h: limits -1
                   24549: 
                   24550:        * src/: include/pa_globals.h, include/pa_request.h,
                   24551:          include/pa_types.h, main/main.dsp, main/pa_globals.C,
                   24552:          main/pa_request.C, targets/cgi/parser3.C,
                   24553:          targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h:
                   24554:          request_info -1
                   24555: 
                   24556:        * src/: include/pa_globals.h, main/pa_globals.C,
                   24557:          targets/cgi/parser3.C, targets/cgi/parser3.dsp,
                   24558:          targets/cgi/vform_fields_fill.C, targets/cgi/vform_fields_fill.h:
                   24559:          vform_fields_fill
                   24560: 
                   24561:        * src/targets/cgi/parser3.C: #  if MSVC
                   24562: 
                   24563:        * src/: include/pa_common.h, include/pa_types.h, main/pa_request.C,
                   24564:          targets/cgi/parser3.C: PATH_DELIMITER_CHAR
                   24565: 
                   24566:        * src/targets/cgi/parser3.C: z
                   24567: 
                   24568:        * src/: include/core.h, include/pa_globals.h, include/pa_pool.h,
                   24569:          include/pa_string.h, include/pa_types.h, main/compile.y,
                   24570:          main/core.C, main/main.dsp, main/pa_globals.C, main/pa_request.C,
                   24571:          targets/cgi/pa_vform.C, targets/cgi/parser3.C,
                   24572:          targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vform.h,
                   24573:          types/pa_vunknown.h: global handler, exceptions in parser3
                   24574: 
                   24575: 2001-03-13  paf
                   24576: 
                   24577:        * src/: classes/form.C, main/compile.y, main/core.C,
                   24578:          types/pa_value.h, types/pa_vclass.h, types/pa_venv.h,
                   24579:          types/pa_vform.h, types/pa_vstateless_class.C,
                   24580:          types/pa_vstateless_class.h: form:fields removed. use $form.CLASS
                   24581:          instead
                   24582: 
                   24583:        * src/: include/core.h, include/pa_common.h, include/pa_request.h,
                   24584:          main/core.C, main/execute.C, main/main.dsp, main/pa_request.C,
                   24585:          targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vform.h:
                   24586:          started cgi target
                   24587: 
                   24588:        * src/: include/core.h, include/pa_common.h, include/pa_request.h,
                   24589:          main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C:
                   24590:          before error show with parser
                   24591: 
                   24592:        * src/: classes/_form.h, classes/form.C, include/core.h,
                   24593:          include/pa_request.h, main/core.C, main/pa_request.C,
                   24594:          targets/cgi/parser3.C, targets/cgi/parser3.dsp: z
                   24595: 
                   24596:        * src/targets/cgi/: parser.dsp, parser3.dsp: z
                   24597: 
                   24598:        * src/targets/cgi/: Makefile.am, pa_pool.C, pa_vform.C, parser.dsp,
                   24599:          parser3.C: renamed targets/ parser to cgi
                   24600: 
                   24601:        * src/: classes/double.C, classes/env.C, classes/int.C,
                   24602:          classes/root.C, classes/string.C, classes/table.C,
                   24603:          include/pa_request.h, types/pa_vhash.h: z
                   24604: 
                   24605:        * src/: classes/_env.h, classes/env.C, classes/root.C,
                   24606:          include/core.h, include/pa_pool.h, include/pa_request.h,
                   24607:          main/compile.C, main/compile.y, main/core.C, main/main.dsp,
                   24608:          main/pa_common.C, main/pa_request.C, types/pa_value.h,
                   24609:          types/pa_venv.h, types/pa_vstateless_class.h: started $form:
                   24610:          [historical moment :)]
                   24611: 
                   24612:        * src/: include/code.h, include/pa_string.h, main/compile.y,
                   24613:          main/execute.C, main/pa_string.C: 'value is type' expr operator
                   24614: 
                   24615:        * src/types/pa_venv.h: $ENV 1
                   24616: 
                   24617:        * src/main/execute.C: z
                   24618: 
                   24619:        * src/: main/execute.C, types/pa_value.h, types/pa_venv.h: for
                   24620:          future methods of ENV constructor if
                   24621: 
                   24622:        * src/: include/pa_request.h, types/pa_venv.h: $ENV 0.1 stateless
                   24623:          class
                   24624: 
                   24625:        * src/: classes/_double.h, classes/_env.h, classes/_int.h,
                   24626:          classes/_root.h, classes/_string.h, classes/_table.h,
                   24627:          classes/double.C, classes/env.C, classes/int.C, classes/root.C,
                   24628:          classes/string.C, classes/table.C, include/pa_request.h,
                   24629:          main/compile.C, main/compile_tools.h, main/core.C,
                   24630:          main/execute.C, main/main.dsp, main/pa_request.C,
                   24631:          types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
                   24632:          types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
                   24633:          types/pa_vobject.h, types/pa_vstateless_class.C,
                   24634:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   24635:          types/pa_wcontext.h: $ENV: re 0, stateless classes
                   24636: 
                   24637:        * src/: classes/_double.h, classes/_env.h, classes/_int.h,
                   24638:          classes/_root.h, classes/_string.h, classes/_table.h,
                   24639:          classes/double.C, classes/env.C, classes/int.C, classes/root.C,
                   24640:          classes/string.C, classes/table.C, include/pa_request.h,
                   24641:          main/compile.C, main/compile_tools.h, main/core.C,
                   24642:          main/execute.C, main/main.dsp, main/pa_request.C,
                   24643:          types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
                   24644:          types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
                   24645:          types/pa_vobject.h, types/pa_vstateless_class.C,
                   24646:          types/pa_vstateless_class.h, types/pa_vstateless_object.h,
                   24647:          types/pa_wcontext.h: $ENV: re 0, stateless classes
                   24648: 
                   24649:        * src/: include/pa_request.h, main/compile.C, main/execute.C,
                   24650:          main/pa_request.C, types/pa_value.h, types/pa_vmframe.h: fixed
                   24651:          yesterdays bad decision on execute_static_method
                   24652: 
                   24653:        * src/: classes/table.C, include/pa_types.h, main/pa_request.C: z
                   24654: 
                   24655:        * src/: classes/double.C, classes/int.C, classes/root.C,
                   24656:          types/pa_vdouble.h, types/pa_vint.h: Int,Double  dec mul div mod
                   24657: 
                   24658:        * src/main/pa_request.C: z
                   24659: 
                   24660:        * src/: classes/root.C, classes/table.C, include/pa_exception.h,
                   24661:          include/pa_pool.h: skipped_restructure_exceptions_dead_end
                   24662: 
                   24663:        * src/: classes/root.C, classes/table.C, include/pa_exception.h,
                   24664:          include/pa_pool.h, main/pa_request.C:
                   24665:          restructure_exceptions_dead_end
                   24666: 
                   24667:        * src/: classes/root.C, main/compile.y: ^if required junctions.
                   24668:          allowed ; inside {} to break params
                   24669: 
                   24670:        * src/classes/root.C: ^eval
                   24671: 
                   24672:        * src/: classes/_string.h, classes/double.C, classes/int.C,
                   24673:          classes/string.C, main/execute.C, types/pa_wcontext.h: int doube
                   24674:          string ^format
                   24675: 
                   24676:        * src/: main/execute.C, types/pa_wcontext.h: constructing flag not
                   24677:          'bad' but not 'enough'
                   24678: 
                   24679:        * src/: classes/double.C, classes/root.C, classes/table.C,
                   24680:          include/pa_common.h, include/pa_types.h, main/compile.y,
                   24681:          main/pa_common.C, main/pa_request.C, main/untaint.C,
                   24682:          types/pa_vdouble.h, types/pa_vint.h, types/pa_vtable.h,
                   24683:          types/pa_wwrapper.h: think constructing flag as is  is bad
                   24684: 
                   24685:        * src/: classes/double.C, classes/int.C, classes/root.C,
                   24686:          classes/string.C, classes/table.C, main/core.C, main/execute.C,
                   24687:          types/pa_vint.h: ^for
                   24688: 
                   24689: 2001-03-12  paf
                   24690: 
                   24691:        * src/classes/table.C: table ^empty
                   24692: 
                   24693:        * src/: classes/table.C, include/pa_table.h: table ^menu
                   24694: 
                   24695:        * src/: classes/root.C, classes/table.C, types/pa_vtable.h: table
                   24696:          ^offset ^line ^count
                   24697: 
                   24698:        * src/classes/root.C: ^round()  ^floor()        ^ceiling()
                   24699:          ^abs()  ^sign()
                   24700: 
                   24701:        * src/classes/: root.C, table.C: ^use
                   24702: 
                   24703:        * src/: classes/root.C, classes/table.C, include/pa_request.h,
                   24704:          main/compile.y, main/core.C, main/execute.C, types/pa_vclass.h,
                   24705:          types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
                   24706:          ^while. switched off wcontext.constructing after write(value) or
                   24707:          auto-vhash-constructing
                   24708: 
                   24709:        * src/: classes/root.C, classes/table.C, include/pa_request.h,
                   24710:          main/pa_request.C: fail_if_junction_ helper func
                   24711: 
                   24712:        * src/: classes/root.C, classes/table.C, include/pa_common.h,
                   24713:          include/pa_request.h, main/execute.C, main/main.dsp,
                   24714:          main/pa_common.C, main/pa_request.C: ^process error point by
                   24715:          actual method_name, not source.  ^load
                   24716: 
                   24717:        * src/types/pa_vtable.h: table: no, better with string in cells...
                   24718: 
                   24719:        * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C,
                   24720:          classes/_table.h, classes/table.C, main/untaint.C: z
                   24721: 
                   24722:        * src/: classes/root.C, include/pa_common.h, include/pa_string.h,
                   24723:          include/pa_table.h, main/core.C, main/execute.C,
                   24724:          main/pa_common.C, main/pa_request.C, main/pa_table.C,
                   24725:          types/pa_value.h: table:set 0
                   24726: 
                   24727:        * src/: classes/root.C, include/core.h, include/pa_array.h,
                   24728:          include/pa_request.h, include/pa_table.h, main/core.C,
                   24729:          main/main.dsp, main/pa_request.C, main/pa_table.C,
                   24730:          types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
                   24731:          types/pa_vdouble.h, types/pa_vint.h, types/pa_vmframe.h,
                   24732:          types/pa_vstring.h: freeze, ^table:create[] -1
                   24733: 
                   24734:        * src/: classes/root.C, types/pa_value.h: z
                   24735: 
                   24736:        * src/: classes/root.C, main/execute.C, types/pa_vclass.h: used
                   24737:          get_method in couple places optimizing them
                   24738: 
                   24739:        * src/classes/root.C: z
                   24740: 
                   24741:        * src/: classes/root.C, types/pa_vclass.h: process temp main
                   24742:          zeroing
                   24743: 
                   24744:        * src/: classes/double.C, classes/int.C, classes/root.C,
                   24745:          classes/string.C, include/pa_common.h, include/pa_request.h,
                   24746:          include/pa_string.h, include/pa_types.h, main/compile.C,
                   24747:          main/compile.y, main/compile_tools.h, main/execute.C,
                   24748:          main/pa_common.C, main/pa_request.C, types/pa_value.h,
                   24749:          types/pa_vmframe.h: ^process. actual names to store param and
                   24750:          check_actual_numbered_params for better place diagnostics
                   24751: 
                   24752:        * src/: classes/root.C, main/execute.C, main/main.dsp: setname for
                   24753:          method-junctions bug fixed
                   24754: 
                   24755:        * src/types/: pa_vdouble.h, pa_vint.h, pa_vobject.h,
                   24756:          pa_vstateless_object.h, pa_vstring.h: stateless_object
                   24757: 
                   24758: 2001-03-11  paf
                   24759: 
                   24760:        * src/: main/main.dsp, types/pa_value.h, types/pa_vdouble.h,
                   24761:          types/pa_vint.h, types/pa_vobject.h, types/pa_vstring.h: VString
                   24762:          VDouble VInt base now VObject_base - without fields
                   24763: 
                   24764:        * src/: classes/root.C, include/core.h, main/core.C: z
                   24765: 
                   24766:        * src/: classes/double.C, classes/int.C, classes/root.C,
                   24767:          classes/string.C, include/core.h, include/pa_hash.h,
                   24768:          include/pa_pool.h, include/pa_request.h, include/pa_string.h,
                   24769:          main/compile.C, main/core.C, main/pa_request.C: ^untaint 0
                   24770: 
                   24771:        * src/: classes/double.C, classes/int.C, classes/root.C,
                   24772:          include/pa_request.h, main/execute.C: intercept_string
                   24773: 
                   24774:        * src/: classes/double.C, classes/int.C, classes/root.C,
                   24775:          types/pa_vclass.C, types/pa_vclass.h: add_native_method helper
                   24776: 
                   24777:        * src/: classes/double.C, classes/int.C, include/pa_request.h:
                   24778:          ^inc-s(expr)
                   24779: 
                   24780:        * src/: classes/_double.h, classes/_env.h, classes/_int.h,
                   24781:          classes/_root.h, classes/_string.h, classes/double.C,
                   24782:          classes/env.C, classes/int.C, classes/root.C, classes/string.C,
                   24783:          include/code.h, include/core.h, include/pa_array.h,
                   24784:          include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
                   24785:          include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
                   24786:          include/pa_string.h, include/pa_table.h, include/pa_threads.h,
                   24787:          include/pa_types.h, main/compile.C, main/compile.y,
                   24788:          main/compile_tools.C, main/compile_tools.h, main/core.C,
                   24789:          main/execute.C, main/pa_array.C, main/pa_common.C,
                   24790:          main/pa_exception.C, main/pa_hash.C, main/pa_pool.C,
                   24791:          main/pa_request.C, main/pa_string.C, main/pa_table.C,
                   24792:          types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
                   24793:          types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
                   24794:          types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
                   24795:          types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
                   24796:          types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
                   24797:          types/pa_wcontext.h, types/pa_wwrapper.h: headers updated
                   24798: 
                   24799:        * src/: main/pa_request.C, types/pa_vhash.h: z
                   24800: 
                   24801:        * src/: include/core.h, include/pa_request.h, main/core.C,
                   24802:          main/main.dsp, main/pa_request.C: renamed AUTO: to MAIN:
                   24803: 
                   24804:        * src/: include/pa_valiased.h, include/pa_value.h,
                   24805:          include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
                   24806:          include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
                   24807:          include/pa_vjunction.h, include/pa_vmframe.h,
                   24808:          include/pa_vobject.h, include/pa_vstring.h,
                   24809:          include/pa_vunknown.h, include/pa_wcontext.h,
                   24810:          include/pa_wwrapper.h, main/compile.y, main/core.C,
                   24811:          main/main.dsp, main/pa_cframe.C, main/pa_request.C,
                   24812:          main/pa_value.C, main/pa_vclass.C, main/pa_wcontext.C,
                   24813:          types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
                   24814:          types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
                   24815:          types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
                   24816:          types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
                   24817:          types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
                   24818:          types/pa_wcontext.h, types/pa_wwrapper.h: splitted types from
                   24819:          include/
                   24820: 
                   24821: 2001-03-10  paf
                   24822: 
                   24823:        * src/: include/core.h, include/pa_request.h, main/core.C,
                   24824:          main/pa_request.C: run+auto=run
                   24825: 
                   24826:        * src/: classes/root.C, include/pa_request.h: minor if junction bug
                   24827: 
                   24828:        * src/: classes/_double.h, classes/_env.h, classes/_int.h,
                   24829:          classes/_root.h, classes/_string.h, classes/double.C,
                   24830:          classes/env.C, classes/int.C, classes/root.C, classes/string.C,
                   24831:          include/code.h, include/core.h, include/pa_array.h,
                   24832:          include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
                   24833:          include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
                   24834:          include/pa_string.h, include/pa_table.h, include/pa_threads.h,
                   24835:          include/pa_types.h, include/pa_valiased.h, include/pa_value.h,
                   24836:          include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
                   24837:          include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
                   24838:          include/pa_vjunction.h, include/pa_vmframe.h,
                   24839:          include/pa_vobject.h, include/pa_vstring.h,
                   24840:          include/pa_vunknown.h, include/pa_wcontext.h,
                   24841:          include/pa_wwrapper.h, main/compile.C, main/compile.y,
                   24842:          main/compile_tools.C, main/compile_tools.h, main/core.C,
                   24843:          main/execute.C, main/pa_array.C, main/pa_cframe.C,
                   24844:          main/pa_common.C, main/pa_exception.C, main/pa_hash.C,
                   24845:          main/pa_pool.C, main/pa_request.C, main/pa_string.C,
                   24846:          main/pa_table.C, main/pa_value.C, main/pa_vclass.C,
                   24847:          main/pa_wcontext.C: sources header
                   24848: 
                   24849:        * src/main/pa_request.C: auto..
                   24850: 
                   24851:        * src/: include/pa_request.h, main/compile.C, main/compile.y,
                   24852:          main/pa_request.C: auto tree0
                   24853: 
                   24854:        * src/: include/core.h, include/pa_request.h, main/compile.y,
                   24855:          main/core.C, main/pa_request.C: names to core.C
                   24856: 
                   24857:        * src/: include/core.h, include/pa_common.h, include/pa_pool.h,
                   24858:          include/pa_request.h, main/core.C, main/execute.C,
                   24859:          main/pa_common.C, main/pa_request.C: root auto.p loaded
                   24860: 
                   24861:        * src/: include/code.h, include/pa_request.h, include/pa_vint.h,
                   24862:          include/pa_vjunction.h, include/pa_vstring.h, main/compile.y,
                   24863:          main/compile_tools.C, main/compile_tools.h, main/execute.C:
                   24864:          optimized from OP_STRING+OP_WRITE to OP_STRING__WRITE
                   24865: 
                   24866:        * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
                   24867:          @auto[] realised. auto.p scan togo
                   24868: 
                   24869:        * src/: include/pa_request.h, main/execute.C: autocalc
                   24870:          code-junctions result now have names
                   24871: 
                   24872:        * src/: classes/double.C, classes/int.C, classes/root.C,
                   24873:          classes/string.C, include/pa_request.h, include/pa_string.h,
                   24874:          include/pa_wcontext.h, main/compile.y, main/execute.C,
                   24875:          main/pa_string.C, main/pa_wcontext.C: tainting 0
                   24876: 
                   24877:        * src/classes/env.C: env:file/line
                   24878: 
                   24879:        * src/: include/core.h, include/pa_array.h, include/pa_hash.h,
                   24880:          include/pa_request.h, include/pa_value.h, include/pa_vcframe.h,
                   24881:          include/pa_vdouble.h, include/pa_vint.h, include/pa_vstring.h,
                   24882:          include/pa_vunknown.h, include/pa_wcontext.h, main/compile.y,
                   24883:          main/compile_tools.C, main/compile_tools.h, main/core.C,
                   24884:          main/execute.C, main/main.dsp, main/pa_cframe.C,
                   24885:          main/pa_request.C, main/pa_wcontext.C: const fight finished
                   24886: 
                   24887:        * src/include/pa_vclass.h: const fight to go
                   24888: 
                   24889:        * src/: classes/_env.h, classes/env.C, classes/root.C,
                   24890:          include/pa_request.h, include/pa_vclass.h, main/core.C,
                   24891:          main/main.dsp: env0
                   24892: 
                   24893:        * src/: classes/_double.h, classes/_int.h, classes/_root.h,
                   24894:          classes/_string.h, classes/double.C, classes/int.C,
                   24895:          classes/root.C, classes/string.C, include/pa_request.h,
                   24896:          include/pa_string.h, include/pa_types.h, include/pa_vcframe.h,
                   24897:          include/pa_wcontext.h, main/core.C, main/main.dsp,
                   24898:          main/pa_cframe.C, main/pa_string.C, main/pa_vclass.C,
                   24899:          main/pa_wcontext.C: ^lang prepare0
                   24900: 
                   24901: 2001-03-09  paf
                   24902: 
                   24903:        * src/: include/pa_vmframe.h, main/compile.C, main/execute.C: expr
                   24904:          construct proper naming
                   24905: 
                   24906:        * src/: classes/_double.h, classes/_int.h, classes/_string.h,
                   24907:          classes/double.C, classes/int.C, classes/root.C,
                   24908:          classes/string.C, include/code.h, include/pa_value.h,
                   24909:          include/pa_vbool.h, include/pa_vdouble.h, include/pa_vint.h,
                   24910:          include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
                   24911:          main/compile.y, main/compile_tools.C, main/core.C,
                   24912:          main/execute.C, main/main.dsp: Int and Double classes with ^int[]
                   24913:          and ^double[]. fixed expr type
                   24914: 
                   24915:        * src/: classes/root.C, include/pa_request.h, main/execute.C:
                   24916:          ^string.length[]
                   24917: 
                   24918: 2001-03-08  paf
                   24919: 
                   24920:        * src/include/pa_vmframe.h: fixed forgotten method_frame my check
                   24921: 
                   24922:        * src/: include/pa_vclass.h, include/pa_vstring.h,
                   24923:          include/pa_wcontext.h, main/compile.y, main/core.C,
                   24924:          main/execute.C, main/main.dsp: dead end: vstring can't be
                   24925:          derivated from vobject
                   24926: 
                   24927:        * src/: include/pa_vclass.h, include/pa_vhash.h,
                   24928:          include/pa_vobject.h, include/pa_vstring.h, main/main.dsp: z
                   24929: 
                   24930:        * src/include/: pa_vclass.h, pa_vhash.h, pa_vobject.h: removes some
                   24931:          remained clone conseqs
                   24932: 
                   24933:        * src/main/pa_vclass.C: that were ok... [vclass were out of vcs]
                   24934: 
                   24935:        * src/main/pa_vclass.C: wow! vclass were out of vcs
                   24936: 
                   24937:        * src/: include/pa_bool.h, include/pa_double.h, include/pa_value.h,
                   24938:          include/pa_vbool.h, include/pa_vclass.h, include/pa_vdouble.h,
                   24939:          include/pa_vhash.h, include/pa_vjunction.h, include/pa_vmframe.h,
                   24940:          include/pa_vobject.h, include/pa_vstring.h,
                   24941:          include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
                   24942:          main/execute.C: withoud cloning. didn't need it actually, params
                   24943:          got passed from out unnamed ewpool
                   24944: 
                   24945:        * src/: include/pa_vdouble.h, include/pa_vhash.h,
                   24946:          include/pa_vjunction.h, include/pa_vobject.h,
                   24947:          include/pa_vunknown.h, main/compile.y: cloning dead end
                   24948: 
                   24949:        * src/: include/pa_bool.h, include/pa_double.h,
                   24950:          include/pa_valiased.h, include/pa_value.h, include/pa_vbool.h,
                   24951:          include/pa_vclass.h, include/pa_vdouble.h, include/pa_vhash.h,
                   24952:          include/pa_vjunction.h, include/pa_vmframe.h,
                   24953:          include/pa_vobject.h, include/pa_vstring.h,
                   24954:          include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
                   24955:          main/execute.C, main/main.dsp, main/pa_value.C: value.cloning so
                   24956:          to give params proper names
                   24957: 
                   24958:        * src/main/pa_wcontext.C: z
                   24959: 
                   24960:        * src/: include/pa_vmframe.h, main/execute.C: added names to
                   24961:          unknown values in get_element and unfilled params. removed wrong
                   24962:          name change in get_element
                   24963: 
                   24964:        * src/main/execute.C: z
                   24965: 
                   24966:        * src/main/execute.C: fixed problems calling operators in
                   24967:          constructors
                   24968: 
                   24969:        * src/: classes/root.C, include/pa_stack.h, main/execute.C:
                   24970:          detected problems calling operators in constructors
                   24971: 
                   24972:        * src/: classes/root.C, include/pa_request.h, main/execute.C:
                   24973:          autocalc def to string
                   24974: 
                   24975:        * src/: classes/root.C, include/pa_request.h, include/pa_value.h,
                   24976:          include/pa_vbool.h, include/pa_wwrapper.h, main/execute.C: ^if 0
                   24977: 
                   24978:        * src/classes/root.C: added root.c
                   24979: 
                   24980:        * src/: include/pa_request.h, include/pa_value.h,
                   24981:          include/pa_vcframe.h, include/pa_vmframe.h,
                   24982:          include/pa_wcontext.h, main/compile.C, main/compile.y,
                   24983:          main/core.C, main/execute.C, main/pa_cframe.C,
                   24984:          main/pa_wcontext.C: 'if' just compiled
                   24985: 
                   24986:        * src/: include/pa_vbool.h, include/pa_vdouble.h,
                   24987:          include/pa_vjunction.h, include/pa_vmframe.h,
                   24988:          include/pa_vstring.h, include/pa_wcontext.h, main/execute.C,
                   24989:          main/pa_wcontext.C: z
                   24990: 
                   24991:        * src/: include/pa_value.h, include/pa_vmframe.h, main/compile.y,
                   24992:          main/core.C, main/execute.C, main/main.dsp: z. detected probs
                   24993:          with parameter names  in operator methods
                   24994: 
                   24995:        * src/main/compile.y: minor renamings in .y
                   24996: 
                   24997:        * src/: include/pa_request.h, main/compile.C, main/compile.y,
                   24998:          main/core.C, main/main.dsp: introducing ROOT_CLASS.  it's default
                   24999:          @BASE.  changed 'RUN' assignment mech
                   25000: 
                   25001:        * src/main/execute.C: z
                   25002: 
                   25003:        * src/: include/code.h, main/compile.y, main/compile_tools.C,
                   25004:          main/compile_tools.h, main/execute.C: made class: dynamic, not
                   25005:          static. so to enable runtime ^use
                   25006: 
                   25007:        * src/main/compile.y: minor grammar bug with OP_CODE__STORE_PARAM
                   25008: 
                   25009:        * src/: include/code.h, main/compile.y, main/compile_tools.C,
                   25010:          main/execute.C: joined 2 into one OP_CODE__STORE_PARAM
                   25011: 
                   25012:        * src/main/execute.C: root root in code-junction
                   25013: 
                   25014: 2001-03-07  paf
                   25015: 
                   25016:        * src/include/: pa_value.h, pa_vclass.h, pa_vhash.h, pa_vmframe.h,
                   25017:          pa_vobject.h, pa_wwrapper.h: const in Value.get_element
                   25018: 
                   25019:        * src/: include/pa_stack.h, include/pa_value.h,
                   25020:          include/pa_vclass.h, include/pa_vhash.h, include/pa_vmframe.h,
                   25021:          include/pa_vobject.h, include/pa_wwrapper.h, main/execute.C:
                   25022:          fixed rwcontext of {} params up
                   25023: 
                   25024:        * src/main/: compile.y, compile_tools.h: ^func(params)
                   25025: 
                   25026:        * src/main/compile.y: .y priorities syntax shaped up a bit
                   25027: 
                   25028:        * src/: include/pa_hash.h, include/pa_value.h, include/pa_vhash.h,
                   25029:          include/pa_vunknown.h, main/compile.y, main/execute.C,
                   25030:          main/pa_hash.C: expr def in -f
                   25031: 
                   25032:        * src/main/: compile.y, execute.C: expr calls
                   25033: 
                   25034:        * src/main/: compile.y, execute.C, pa_string.C: bug in string.cmp
                   25035:          fixed
                   25036: 
                   25037:        * src/main/compile.y: expr quoted code
                   25038: 
                   25039:        * src/main/: compile.y, execute.C: expr whitespace solved. added ""
                   25040:          support0
                   25041: 
                   25042:        * src/main/compile.y: expr string comparisons 0
                   25043: 
                   25044:        * src/: include/pa_string.h, main/compile.y, main/execute.C,
                   25045:          main/pa_string.C: just compiled lt&co
                   25046: 
                   25047:        * src/main/execute.C: ^var.menu{$field} problem detected. that
                   25048:          $field not a $var.field
                   25049: 
                   25050: 2001-03-06  paf
                   25051: 
                   25052:        * src/main/compile.y: .y expr visible-shorter
                   25053: 
                   25054:        * src/: include/code.h, main/compile.y, main/execute.C: 1 problems
                   25055:          with skipping whitespace in yylex fixed 2 xors: # bitwise ##
                   25056:          logical
                   25057: 
                   25058:        * src/: include/pa_vstring.h, main/compile.y: problems with
                   25059:          skipping whitespace in yylex
                   25060: 
                   25061:        * src/include/pa_vbool.h: forgot this
                   25062: 
                   25063:        * src/: include/code.h, main/compile.y, main/execute.C: without
                   25064:          string ops in expressions 0
                   25065: 
                   25066:        * src/: include/pa_value.h, include/pa_vdouble.h,
                   25067:          include/pa_vstring.h, include/pa_vunknown.h, main/compile.y,
                   25068:          main/execute.C, main/main.dsp: !~
                   25069: 
                   25070:        * src/: include/pa_vcframe.h, include/pa_vclass.h,
                   25071:          include/pa_vdouble.h, include/pa_vhash.h, include/pa_vjunction.h,
                   25072:          include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
                   25073:          include/pa_vunknown.h, include/pa_wcontext.h,
                   25074:          include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
                   25075:          main/compile_tools.h, main/execute.C: +-*/
                   25076: 
                   25077:        * src/: include/pa_vdouble.h, main/compile.y, main/compile_tools.C,
                   25078:          main/compile_tools.h: grammar-1.1 $a(z) $a=0
                   25079: 
                   25080:        * src/: include/pa_value.h, include/pa_vdouble.h, main/compile.y,
                   25081:          main/execute.C: expr grammar-1 2*2=4.000000 :)
                   25082: 
                   25083:        * src/main/compile.y: expr grammar-1
                   25084: 
                   25085:        * src/main/compile.y: expr lexx1
                   25086: 
                   25087:        * src/main/: compile.y, execute.C, main.dsp: z
                   25088: 
                   25089:        * src/: include/code.h, include/pa_valiased.h, include/pa_value.h,
                   25090:          include/pa_vdouble.h, include/pa_vstring.h, main/compile.y,
                   25091:          main/execute.C: expr lex0 exec-1
                   25092: 
                   25093:        * src/: include/code.h, main/compile.y, main/compile_tools.h: g
                   25094: 
                   25095: 2001-02-26  paf
                   25096: 
                   25097:        * src/main/compile.y: max_string in yyerror bug fix
                   25098: 
                   25099: 2001-02-25  paf
                   25100: 
                   25101:        * src/: include/pa_value.h, include/pa_vmframe.h,
                   25102:          include/pa_wcontext.h, main/execute.C: VAliased3
                   25103: 
                   25104:        * src/include/: pa_value.h, pa_vmframe.h: VAliased2
                   25105: 
                   25106:        * src/main/execute.C: VAliased1
                   25107: 
                   25108:        * src/: include/pa_request.h, include/pa_value.h,
                   25109:          include/pa_vmframe.h, include/pa_wcontext.h, main/execute.C:
                   25110:          VAliased0
                   25111: 
                   25112:        * src/: include/pa_pool.h, include/pa_request.h,
                   25113:          include/pa_value.h, include/pa_vclass.h, include/pa_vmframe.h,
                   25114:          include/pa_vobject.h, main/core.C, main/execute.C, main/main.dsp:
                   25115:          VAliased just compiled
                   25116: 
                   25117:        * src/: include/pa_pool.h, include/pa_value.h, include/pa_vclass.h,
                   25118:          include/pa_vobject.h, main/execute.C: alias dead end
                   25119: 
                   25120:        * src/: include/pa_value.h, include/pa_vclass.h,
                   25121:          include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
                   25122:          main/main.dsp: no not get fields into interm VFielded class.
                   25123:          fields & staticfields 1
                   25124: 
                   25125:        * src/: include/pa_vcframe.h, include/pa_vmframe.h,
                   25126:          include/pa_vobject.h, include/pa_wcontext.h,
                   25127:          include/pa_wwrapper.h, main/core.C, main/execute.C,
                   25128:          main/main.dsp: would now get fields into interm VFielded class
                   25129: 
                   25130:        * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
                   25131:          include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
                   25132:          include/pa_wcontext.h, main/compile.y, main/core.C,
                   25133:          main/execute.C, main/main.dsp, main/pa_hash.C, main/pa_value.C,
                   25134:          main/pa_wcontext.C: virtuals2
                   25135: 
                   25136:        * src/main/compile.y: : 1
                   25137: 
                   25138:        * src/main/compile.y: rethought to $class:static.field.subfield
                   25139: 
                   25140:        * src/: include/pa_vclass.h, main/compile.y, main/execute.C:
                   25141:          $class:element
                   25142: 
                   25143:        * src/: include/pa_value.h, include/pa_vmframe.h,
                   25144:          include/pa_wwrapper.h, main/compile.y, main/execute.C,
                   25145:          main/pa_wcontext.C: before execute class calls rewrite
                   25146: 
                   25147:        * src/: include/pa_request.h, main/compile.C, main/core.C: default
                   25148:          name RUN, also alias
                   25149: 
                   25150:        * src/main/compile.y: escaping bug
                   25151: 
                   25152:        * src/: include/pa_request.h, include/pa_value.h,
                   25153:          include/pa_vobject.h, main/compile.y, main/compile_tools.h,
                   25154:          main/core.C, main/execute.C, main/pa_common.C: vobject1
                   25155: 
                   25156:        * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
                   25157:          include/pa_vmframe.h, include/pa_vobject.h,
                   25158:          include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
                   25159:          main/compile_tools.h, main/execute.C: ^class:method() just
                   25160:          compiled
                   25161: 
                   25162: 2001-02-24  paf
                   25163: 
                   25164:        * src/main/main.dsp: no bison -d
                   25165: 
                   25166:        * src/main/: compile.y, compile_tools.h: use0 line no on 'undef
                   25167:          class' err msg wrong
                   25168: 
                   25169:        * src/main/compile.y: z
                   25170: 
                   25171:        * src/main/: compile.y, core.C: yylex need some @special lines adj
                   25172: 
                   25173:        * src/: include/pa_request.h, include/pa_vclass.h, main/compile.C,
                   25174:          main/compile.y, main/compile_tools.h, main/core.C: modules0
                   25175: 
                   25176:        * src/: include/pa_vclass.h, main/core.C: z
                   25177: 
                   25178:        * src/: include/pa_value.h, include/pa_vclass.h,
                   25179:          include/pa_vobject.h, main/main.dsp: vobject00
                   25180: 
                   25181:        * src/main/pa_array.C: minor bug in expanding very small arrays.
                   25182:          60% from 1 were 0
                   25183: 
                   25184:        * src/: include/pa_value.h, include/pa_wcontext.h,
                   25185:          include/pa_wwrapper.h, main/execute.C, main/pa_value.C: it works
                   25186:          as bad as you've named it: wcontext.value() was not a perfect
                   25187:          idea
                   25188: 
                   25189:        * src/main/execute.C: codeframe1
                   25190: 
                   25191:        * src/: include/pa_value.h, include/pa_vcframe.h,
                   25192:          include/pa_vclass.h, include/pa_vframe.h, include/pa_vhash.h,
                   25193:          include/pa_vjunction.h, include/pa_vmframe.h,
                   25194:          include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
                   25195:          main/main.dsp, main/pa_cframe.C, main/pa_wcontext.C: codeframe
                   25196:          just compiled
                   25197: 
                   25198:        * src/: include/pa_vframe.h, main/compile.y: found junction
                   25199:          ideology @: ^x{$a()) must construct current wcontext element, so
                   25200:          smart wcontext handling needed
                   25201: 
                   25202:        * src/main/compile.y: fixed grammar bugs in constructor/params
                   25203:          klinch
                   25204: 
                   25205:        * src/main/: compile.y, execute.C: fixed empty constructor
                   25206:          optimized empty case. failed on calls - produced empty string
                   25207:          param
                   25208: 
                   25209:        * src/main/compile.y: fixed last \n macrotemplate strip bug
                   25210: 
                   25211:        * src/: include/code.h, include/pa_request.h, include/pa_value.h,
                   25212:          include/pa_vclass.h, include/pa_vframe.h, main/compile.y,
                   25213:          main/compile_tools.C, main/compile_tools.h, main/core.C,
                   25214:          main/execute.C: code junctions0. something wrong with last \n
                   25215:          macrotemplate strip
                   25216: 
                   25217:        * src/: include/pa_value.h, main/compile.C, main/core.C,
                   25218:          main/pa_value.C: minor error reporting format beautifyings
                   25219: 
                   25220:        * src/: include/pa_value.h, include/pa_vclass.h,
                   25221:          include/pa_vframe.h, main/core.C, main/execute.C,
                   25222:          main/pa_value.C: get_method RIP. junctions everywhere. call with
                   25223:          junctions0
                   25224: 
                   25225: 2001-02-23  paf
                   25226: 
                   25227:        * src/include/: pa_value.h, pa_vclass.h, pa_vframe.h,
                   25228:          pa_wwrapper.h: lara came, can't work, sorry :(
                   25229: 
                   25230:        * src/main/: compile.y, execute.C, main.dsp: rethought some. before
                   25231:          junction
                   25232: 
                   25233:        * src/: include/pa_vframe.h, include/pa_vunknown.h,
                   25234:          include/pa_wcontext.h, include/pa_wwrapper.h, main/core.C,
                   25235:          main/execute.C, main/main.dsp, main/pa_value.C: call0
                   25236: 
                   25237:        * src/: include/pa_hash.h, include/pa_value.h,
                   25238:          include/pa_wcontext.h, main/core.C, main/execute.C,
                   25239:          main/main.dsp, main/pa_hash.C: started call. store param, vframe
                   25240:          done
                   25241: 
                   25242:        * src/include/pa_wcontext.h: z
                   25243: 
                   25244:        * src/main/: compile.y, compile_tools.C, compile_tools.h: fixed
                   25245:          wrong grammar in complex constructor case
                   25246: 
                   25247:        * src/main/: compile.y, execute.C: empty constructor bug fixed
                   25248: 
                   25249:        * src/main/execute.C: with result rwpool
                   25250: 
                   25251:        * src/: include/pa_value.h, main/core.C, main/execute.C,
                   25252:          main/main.dsp: value named
                   25253: 
                   25254:        * src/: include/pa_value.h, include/pa_vstring.h, main/execute.C:
                   25255:          strign 2 value in 2 places in execute
                   25256: 
                   25257:        * src/: include/pa_value.h, include/pa_wcontext.h, main/compile.y,
                   25258:          main/execute.C, main/main.dsp, main/pa_array.C: auto VHash on
                   25259:          wcontext.put_element when wcontext fvalue==0
                   25260: 
                   25261: 2001-02-22  paf
                   25262: 
                   25263:        * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
                   25264:          include/pa_vhash.h, include/pa_vstring.h, include/pa_wcontext.h,
                   25265:          main/execute.C, main/main.dsp: auto VHash in pa.th.cre.at.e
                   25266: 
                   25267:        * src/: include/pa_wcontext.h, main/compile.y, main/execute.C:
                   25268:          erroreos checkout
                   25269: 
                   25270:        * src/: include/pa_request.h, main/compile.y: $self.put(val)
                   25271: 
                   25272:        * src/: include/pa_array.h, main/compile.y, main/compile_tools.C,
                   25273:          main/compile_tools.h, main/pa_array.C: $self.get
                   25274: 
                   25275:        * src/main/: compile.C, compile.y, compile_tools.C: z
                   25276: 
                   25277:        * src/main/compile.y: $: wasn't finished - $:sdf(sdf) troubled a
                   25278:          bit. finished now.
                   25279: 
                   25280:        * src/main/compile.y: $: finished
                   25281: 
                   25282:        * src/main/: compile.C, compile.y, execute.C: started : with $a.$:f
                   25283: 
                   25284:        * src/: include/code.h, main/compile_tools.C, main/compile_tools.h,
                   25285:          main/execute.C: OP_STRING better then some xxx _VALUE
                   25286: 
                   25287:        * src/: include/code.h, include/pa_vstring.h, main/compile.y,
                   25288:          main/compile_tools.C, main/compile_tools.h, main/execute.C:
                   25289:          string to vstring it .y all
                   25290: 
                   25291:        * src/: include/pa_request.h, include/pa_stack.h,
                   25292:          include/pa_wcontext.h, main/execute.C: z about to vstring it .y
                   25293:          all
                   25294: 
                   25295:        * src/main/: compile.C, core.C, execute.C, pa_string.C: more
                   25296:          precise parse error line:col
                   25297: 
                   25298:        * src/: include/pa_pool.h, include/pa_vclass.h, main/core.C,
                   25299:          main/pa_hash.C, main/pa_pool.C: TRY...
                   25300: 
                   25301:        * src/: include/pa_exception.h, include/pa_pool.h,
                   25302:          include/pa_request.h, include/pa_value.h, include/pa_wcontext.h,
                   25303:          main/compile.C, main/compile.y, main/compile_tools.C,
                   25304:          main/core.C, main/pa_array.C, main/pa_exception.C,
                   25305:          main/pa_hash.C, main/pa_pool.C, main/pa_string.C,
                   25306:          main/pa_table.C: removed exception from request
                   25307: 
                   25308:        * src/: include/pa_vstring.h, main/compile.C, main/core.C: added
                   25309:          some forgotten
                   25310: 
                   25311:        * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
                   25312:          include/pa_wcontext.h, main/compile.y, main/compile_tools.C,
                   25313:          main/compile_tools.h, main/execute.C, main/main.dsp: iiieeyys!
                   25314:          get/put simple vars to VClass works0
                   25315: 
                   25316:        * src/: include/pa_array.h, include/pa_wcontext.h,
                   25317:          main/pa_string.C: in process, but found that exceptions are too
                   25318:          global
                   25319: 
                   25320:        * src/: include/code.h, include/pa_string.h, include/pa_value.h,
                   25321:          include/pa_vclass.h, include/pa_wcontext.h, main/compile.y,
                   25322:          main/execute.C, main/pa_string.C: write_value write_string 0 it
                   25323:          seems wcontext must write strings regardles of fvalue!=0
                   25324: 
                   25325: 2001-02-21  paf
                   25326: 
                   25327:        * src/main/execute.C: tired :)
                   25328: 
                   25329:        * src/main/: compile.C, compile.y, execute.C: store0
                   25330: 
                   25331:        * src/: include/compile.h, include/execute.h, include/pa_array.h,
                   25332:          include/pa_request.h, include/pa_stack.h, include/pa_vclass.h,
                   25333:          include/pa_wcontext.h, main/compile.C, main/compile.y,
                   25334:          main/execute.C, main/main.dsp, main/pa_array.C,
                   25335:          main/pa_request.C: get put -1 [just compiled]
                   25336: 
                   25337:        * src/: include/core.h, include/pa_context.h, include/pa_request.h,
                   25338:          include/pa_vclass.h, include/pa_wcontext.h, main/core.C,
                   25339:          main/main.dsp, main/pa_request.C: request core methods0
                   25340: 
                   25341:        * src/: include/compile.h, include/pa_array.h, main/compile.C,
                   25342:          main/compile.y, main/execute.C: MAIN_METHOD_NAME ready to write
                   25343:          execute
                   25344: 
                   25345:        * src/: include/pa_exception.h, include/pa_value.h, main/compile.C,
                   25346:          main/compile.y, main/compile_tools.C, main/compile_tools.h: .y
                   25347:          methods and one_big_piece. now compile returns array<method*>
                   25348: 
                   25349:        * src/main/compile.y: more straightforward yylex[end]
                   25350: 
                   25351:        * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
                   25352:          string.operator==(char*)
                   25353: 
                   25354:        * src/: include/execute.h, include/pa_array.h, include/pa_value.h,
                   25355:          main/execute.C, main/pa_array.C: after array.const get wonders
                   25356: 
                   25357:        * src/include/: compile.h, pa_context.h, pa_hash.h, pa_request.h,
                   25358:          pa_string.h, pa_value.h: struck with const array.gets
                   25359: 
                   25360:        * src/main/: execute.C: z
                   25361: 
                   25362:        * src/main/: compile.y, execute.C: z
                   25363: 
                   25364:        * src/main/: compile.C, compile.y, compile_tools.h: error
                   25365:          processing in eval & yyerror so it wouldn't cause memleaks.
                   25366: 
                   25367:        * src/main/: compile.C, compile.y: failed to add absolute precies
                   25368:          parse error positions. leaving RIGHTMOST position as
                   25369:          @file[line:col]
                   25370: 
                   25371:        * src/: include/compile.h, main/compile.C, main/compile.y,
                   25372:          main/compile_tools.h: line numbers needed. would add them to .y
                   25373:          now internally. externally it's not as precise as needed
                   25374: 
                   25375:        * src/: include/code.h, include/pa_types.h, main/compile.C,
                   25376:          main/compile.y, main/compile_tools.C, main/compile_tools.h,
                   25377:          main/execute.C, main/main.dsp: .y to c++ hierarchy output fix.
                   25378:          compiler works ok
                   25379: 
                   25380: 2001-02-20  paf
                   25381: 
                   25382:        * src/main/: compile.C, compile.y, compile_tools.C,
                   25383:          compile_tools.h, execute.C, main.dsp: nestage probs, eof yylex
                   25384:          not perfect
                   25385: 
                   25386:        * src/: include/code.h, include/compile.h, include/execute.h,
                   25387:          include/pa_array.h, include/pa_common.h, include/pa_pool.h,
                   25388:          include/pa_string.h, include/pa_table.h, include/pa_types.h,
                   25389:          main/compile.C, main/compile.y, main/compile_tools.C,
                   25390:          main/compile_tools.h, main/core.C, main/execute.C, main/main.dsp,
                   25391:          main/pa_array.C, main/pa_common.C, main/pa_hash.C,
                   25392:          main/pa_string.C, main/pa_table.C: bison[yacc] first time
                   25393:          compiled.  execute=dump for now
                   25394: 
                   25395:        * src/main/core.C: core rewrite using yacc investigations now will
                   25396:          be compile[yacc]/execute[opcodes]
                   25397: 
                   25398: 2001-02-15  paf
                   25399: 
                   25400:        * src/: include/pa_value.h, main/core.C: maybe a-la yacc those ifs
                   25401:          rewrite as turing machine? for it seems it would be it's too many
                   25402:          ifs with this syntax now
                   25403: 
                   25404: 2001-02-14  paf
                   25405: 
                   25406:        * src/main/core.C: get_params 1
                   25407: 
                   25408:        * src/main/core.C: get_params figured ^menu[UNEVALUATED unthinked
                   25409:          :( ]
                   25410: 
                   25411:        * src/main/core.C: varios breaks
                   25412: 
                   25413:        * src/main/core.C: get names 3
                   25414: 
                   25415:        * src/main/core.C: get names 2
                   25416: 
                   25417:        * src/main/core.C: get names 1
                   25418: 
                   25419:        * src/: include/pa_string.h, main/core.C, main/pa_string.C: get
                   25420:          names 0
                   25421: 
                   25422:        * src/: include/pa_value.h, main/core.C, main/pa_string.C: process
                   25423:          text repassing2 operator static vars
                   25424: 
                   25425:        * src/: include/pa_context.h, include/pa_string.h, main/core.C,
                   25426:          main/pa_string.C: process text repassing
                   25427: 
                   25428:        * src/: include/pa_context.h, include/pa_value.h, main/core.C:
                   25429:          module:calls changes
                   25430: 
                   25431: 2001-02-13  paf
                   25432: 
                   25433:        * src/: include/pa_context.h, include/pa_value.h, main/core.C:
                   25434:          ^class:calls[] started
                   25435: 
                   25436:        * src/: include/pa_value.h, main/core.C: z
                   25437: 
                   25438:        * src/main/core.C: operators : and self. prefixes
                   25439: 
                   25440:        * src/main/core.C: z
                   25441: 
                   25442:        * src/: include/pa_string.h, main/pa_string.C: String_iterator
                   25443:          tested
                   25444: 
                   25445:        * src/: include/pa_string.h, main/pa_string.C: String_iterator
                   25446:          optimized
                   25447: 
                   25448:        * src/main/pa_string.C: String_iterator::skip_to optimized a bit.
                   25449:          would change privates to better support optimization
                   25450: 
                   25451:        * src/: include/pa_string.h, main/pa_string.C:
                   25452:          String_iterator::skip_to todo:optimize
                   25453: 
                   25454: 2001-02-12  paf
                   25455: 
                   25456:        * src/: include/pa_string.h, main/core.C, main/pa_string.C: started
                   25457:          String_iterator
                   25458: 
                   25459:        * src/: include/pa_context.h, include/pa_value.h, main/core.C: some
                   25460:          comments
                   25461: 
                   25462:        * src/: include/pa_context.h, include/pa_value.h, main/core.C: get
                   25463:          self/methodref joined
                   25464: 
                   25465: 2001-02-11  paf
                   25466: 
                   25467:        * src/: include/pa_context.h, include/pa_value.h, main/core.C,
                   25468:          main/main.dsp: core started.  core.C, context&value .h
                   25469: 
                   25470:        * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
                   25471:          include/pa_string.h, main/main.dsp, main/pa_array.C,
                   25472:          main/pa_hash.C, main/pa_pool.C, main/pa_string.C: :pooled
                   25473: 
                   25474: 2001-01-30  paf
                   25475: 
                   25476:        * src/: Makefile.am, main/Makefile.am, targets/Makefile.am: .am
                   25477:          comments
                   25478: 
                   25479:        * src/: include/pa_pool.h, main/Makefile.am, main/main.dsp,
                   25480:          main/pa_pool.C: moved pa_pool.C to be target specific
                   25481: 
                   25482:        * src/: include/pa_exception.h, include/pa_pool.h,
                   25483:          include/pa_table.h, main/pa_exception.C, main/pa_table.C: minor *
                   25484:          to & changes
                   25485: 
                   25486:        * src/: include/pa_exception.h, include/pa_pool.h,
                   25487:          include/pa_request.h, include/pa_table.h, main/pa_array.C,
                   25488:          main/pa_exception.C, main/pa_pool.C, main/pa_table.C: error
                   25489:          re-associated. that's much better even removed 'die' necessety
                   25490: 
                   25491:        * src/: include/pa_error.h, include/pa_exception.h,
                   25492:          include/pa_pool.h, include/pa_request.h, main/main.dsp,
                   25493:          main/pa_error.C, main/pa_exception.C, main/pa_pool.C,
                   25494:          targets/Makefile.am: lowered targets/parser into subdir, added
                   25495:          parser_Pool(Pool) failed to add. would think..
                   25496: 
                   25497:        * src/: include/pa_error.h, include/pa_hash.h, include/pa_string.h,
                   25498:          include/pa_table.h, main/pa_error.C, main/pa_hash.C,
                   25499:          main/pa_string.C, main/pa_table.C: Table more like C++ style
                   25500:          hence lots of 'const'
                   25501: 
                   25502:        * src/: include/pa_error.h, include/pa_request.h,
                   25503:          include/pa_string.h, include/pa_table.h, main/pa_error.C,
                   25504:          main/pa_table.C: Error fixed
                   25505: 
                   25506: 2001-01-29  paf
                   25507: 
                   25508:        * src/: include/pa_array.h, include/pa_common.h,
                   25509:          include/pa_error.h, include/pa_hash.h, include/pa_pool.h,
                   25510:          include/pa_request.h, include/pa_string.h, include/pa_table.h,
                   25511:          main/Makefile.am, main/pa_array.C, main/pa_common.C,
                   25512:          main/pa_error.C, main/pa_hash.C, main/pa_table.C: added forgotten
                   25513: 
                   25514:        * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
                   25515:          include/pa_string.h, include/pa_table.h, include/pa_types.h,
                   25516:          main/Makefile.am, main/main.dsp, main/pa_array.C, main/pa_hash.C,
                   25517:          main/pa_string.C, main/pa_table.C: Request Error Table
                   25518: 
                   25519:        * src/: include/pa_pool.h, main/pa_array.C: tested - decision "no
                   25520:          templates"
                   25521: 
                   25522:        * src/: include/pa_array.h, include/pa_pool.h, main/Makefile.am,
                   25523:          main/main.dsp, main/pa_array.C: templates failed no template
                   25524:          specializations [VC6], no library auto instantation [VC6, GNU c++
                   25525:          2.95.2-6 from latest cygwin]
                   25526: 
                   25527:        * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
                   25528:          include/pa_string.h, include/pa_table.h, include/pa_types.h,
                   25529:          main/main.dsp, main/pa_array.C, main/pa_string.C,
                   25530:          main/pa_table.C: Table started would test template Array now
                   25531: 
                   25532:        * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
                   25533:          String originating
                   25534: 
                   25535:        * src/: include/pa_hash.h, include/pa_pool.h, include/pa_threads.h,
                   25536:          main/pa_hash.C: made local Hash-es not thread safe=quicker by
                   25537:          SYNCHRONIZED(thread_safe)
                   25538: 
                   25539:        * src/include/: pa_array.h, pa_hash.h, pa_string.h: moved .h public
                   25540:          parts to top
                   25541: 
                   25542:        * src/: include/pa_hash.h, include/pa_threads.h, main/pa_hash.C,
                   25543:          main/pa_threads.C: decided on one global_mutex, like PHP as I can
                   25544:          see: needed only in global Hash now, made Hash:: put/get
                   25545:          SYNCHRONIZED
                   25546: 
                   25547:        * src/: include/pa_hash.h, include/pa_threads.h, main/main.dsp,
                   25548:          main/pa_threads.C: added pa_threads
                   25549: 
                   25550:          Mutex
                   25551: 
                   25552:        * src/include/pa_hash.h: some comments
                   25553: 
                   25554:        * src/: main/pa_array.C, include/pa_array.h, include/pa_pool.h:
                   25555:          Array& operator += (Array& src)
                   25556: 
                   25557:        * src/main/pa_array.C: expand not convinient, would rewrite
                   25558: 
                   25559:        * src/: include/pa_array.h, main/pa_array.C: Array::operator +=
                   25560:          (Array& src)
                   25561: 
                   25562:          rethought, would change now
                   25563: 
                   25564: 2001-01-27  paf
                   25565: 
                   25566:        * src/: include/pa_array.h, main/pa_array.C: array [] with chunk
                   25567:          caching
                   25568: 
                   25569:        * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
                   25570:          include/pa_string.h, main/pa_array.C, main/pa_string.C: array
                   25571:          cache rethought to chunk caching
                   25572: 
                   25573:        * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
                   25574:          include/pa_string.h, main/main.dsp, main/pa_array.C,
                   25575:          main/pa_hash.C, main/pa_string.C: Array 0
                   25576: 
                   25577:        * src/main/pa_string.C: String::operator ==
                   25578: 
                   25579:        * src/main/pa_hash.C: String(&String)
                   25580: 
                   25581:        * src/main/pa_hash.C: added pa_hash.C [forgotten]
                   25582: 
                   25583:        * src/: include/pa_hash.h, include/pa_string.h, include/pa_types.h,
                   25584:          main/main.dsp, main/pa_string.C: uint, and added pa_types &
                   25585:          pa_hash[forgotten]
                   25586: 
                   25587: 2001-01-26  paf
                   25588: 
                   25589:        * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
                   25590:          removed templates [vc++ suxx]
                   25591: 
                   25592:        * src/: include/pa_pool.h, include/pa_string.h, main/main.dsp,
                   25593:          main/pa_pool.C, main/pa_string.C: templates in VC++ suxx.
                   25594: 
                   25595:        * src/include/: pa_pool.h, pa_string.h: pa_pool split
                   25596: 
1.119     moko     25597:        * src/main/: main.dsp, pa_string.C: Id check
1.95      moko     25598: 
1.119     moko     25599:        * src/: main/pa_pool.C, main/pa_string.C, include/pa_pool.h: Id
1.95      moko     25600:          check
                   25601: 
                   25602:        * src/: include/pa_pool.h, main/pa_string.C: String prealloc &
                   25603:          dynamic row_count
                   25604: 
                   25605:        * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
                   25606:          main/main.dsp, main/pa_pool.C, main/pa_string.C,
                   25607:          targets/Makefile.am: Initial revision
                   25608: 
                   25609:        * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
                   25610:          main/main.dsp, main/pa_pool.C, main/pa_string.C,
                   25611:          targets/Makefile.am: creating parser3 module
                   25612: 

E-mail: