Annotation of parser3/ChangeLog, revision 1.33

1.33    ! paf         1: 2004-02-06  paf
        !             2:        * src/main/untaint.C 1.128:
        !             3:                beauty: removed old def/ifdef
        !             4: 
        !             5:        * src/main/pa_sql_driver_manager.C 1.81:
        !             6:        * src/main/pa_stylesheet_manager.C 1.25:
        !             7:                beauty: unified destructing style
        !             8: 
        !             9:        * src/main/untaint.C 1.127:
        !            10:                beauty: coredump @unknown untaint language now
        !            11: 
        !            12: 2004-02-03  paf
        !            13:        * src/main/pa_common.C 1.173:
        !            14:                typo: %l -> %u
        !            15: 
        !            16:        * src/classes/xnode.C 1.64:
        !            17:                memleaks found: not fixed yet. todo
        !            18: 
        !            19:        * src/classes/xdoc.C 1.130:
        !            20:                bugfix: libxml: FOR UTF-8 TOO russian letters in attributes or
        !            21:                documents-results of transform now not &#04xx;
        !            22: 
        !            23:        * src/main/pa_charset.C 1.47:
        !            24:                bugfix: forgot to undo some
        !            25: 
        !            26:        * src/classes/image.C 1.104:
        !            27:        * src/main/pa_exec.C 1.56:
        !            28:        * src/main/pa_memory.C 1.4:
        !            29:        * src/targets/isapi/parser3isapi.C 1.86:
        !            30:        * src/types/pa_value.C 1.15:
        !            31:        * src/types/pa_vcookie.C 1.62:
        !            32:                beauty: %u is more simple=proper for size_t then %ld/%lu
        !            33: 
        !            34:        * src/main/pa_charset.C 1.46:
        !            35:                beauty: uncomment PA_PATCHED_LIBXML_BACKWARD to link with old
        !            36:                patched libxml libraries
        !            37: 
        !            38: 2004-02-02  paf
        !            39:        * src/types/pa_vform.C 1.78:
        !            40:                bugfix: empty values with enctype=multipart/form-data now produce entries in $form:tables
        !            41:                <form method=post enctype=multipart/form-data>
        !            42:                <input type=hidden name=a>
        !            43:                <input type=hidden name=b>
        !            44:                
        !            45:                <input type=submit>
        !            46:                </form>
        !            47:                $k[^form:fields._keys[]]
        !            48:                ^eval($k)
        !            49:                <hr>
        !            50:                <pre>$request:body
        !            51: 
        !            52:        * src/types/pa_vcookie.C 1.61:
        !            53:                bugfix: erasing cookie: params now output
        !            54:                $cookie:example[
        !            55:                        $.value[value]
        !            56:                        $.path[/there/]
        !            57:                ]
        !            58:                
        !            59:                $cookie:example[
        !            60:                        $.value[]
        !            61:                        $.expires[session]
        !            62:                        $.path[/there/]
        !            63:                        $.domain[test.com]
        !            64:                ]
        !            65: 
        !            66: 2004-01-30  paf
        !            67:        * src/classes/date.C 1.59:
        !            68:        * www/htdocs/.htaccess 1.26:
        !            69:                bugfix: ^date::create[invalid year] now produces exception. 
        !            70:                todo: check other fields
        !            71: 
        !            72:        * src/classes/date.C 1.60:
        !            73:        * src/classes/date.C 1.61:
        !            74:        * src/include/pa_string.h 1.155:
        !            75:        * src/main/pa_string.C 1.193:
        !            76:                bugfix: ^date::create[invalid fields now produce exception.
        !            77: 
        !            78:        * src/classes/xdoc.C 1.129:
        !            79:                bugfix: libxml: russian letters in attributes or documents
        !            80:                results of transform now not &#04xx;
        !            81: 
1.32      paf        82: 2004-01-29  paf
                     83:        * src/targets/apache13core/mod_parser3_core.C 1.2:
                     84:                bugfix: old style new used
                     85: 
                     86:        * src/include/pa_memory.h 1.9:
                     87:                bugfix: [potential] strdup copied one more byte then specified
                     88:                 then zeroed it << useless and potentially harmful(could gpf)
1.33    ! paf        89: 
        !            90:        * src/include/pa_memory.h 1.10:
        !            91:                typo error
1.32      paf        92: 
                     93: 2004-01-22  paf
                     94:        * src/main/pa_common.C [release_3_1_1] 1.160.2.1:
                     95:                bugfix: buffer overflow
                     96:                * in libxml&xsl error-reporting code
                     97:                * in parser-error reporting code [when no @unhandled_exception defined]
                     98:                
                     99:                fixed in one place: my *snprintf override
                    100: 
                    101:        * src/main/untaint.C [release_3_1_1] 1.122.2.2:
                    102:                bugfix: whitespace now optimized properly [were bug: ^taint[1 &
                    103:                2]="1 &2"
                    104: 
                    105:        * src/main/untaint.C 1.126:
                    106:                merged: bugfix from 3.1.1 on whitespace optimization
                    107: 
                    108:        * src/main/pa_globals.C 1.166:
                    109:                beauty: bigger buffer for xml-related errors
                    110: 
                    111:        * src/classes/xdoc.C 1.128:
                    112:                bugfix: when stylesheet contains error, gpf
                    113: 
                    114:        * src/main/compile.tab.C [release_3_1_1] 1.91.2.1:
                    115:        * src/main/untaint.C [release_3_1_1] 1.122.2.1:
                    116:                *** empty log message ***
                    117: 
                    118:        * src/main/pa_common.C 1.172:
                    119:                merged: bugfix from 3.1.1 on memory overflow
                    120: 
                    121: 2004-01-13  paf
                    122:        * operators.txt 1.150:
                    123:                typo erro
                    124: 
1.31      paf       125: 2003-12-25  paf
                    126:        * src/main/pa_common.C 1.171:
                    127:                bugfix: ^file::load[binary;http:// now not garbled  [pieces
                    128:                after zero bytes were removed]
                    129: 
                    130: 2003-12-22  paf
                    131:        * operators.txt 1.149:
                    132:        * src/classes/op.C 1.144:
                    133:        * src/include/pa_sql_connection.h 1.37:
                    134:        * src/include/pa_sql_driver_manager.h 1.31:
                    135:        * src/main/pa_sql_driver_manager.C 1.80:
                    136:        * src/sql/pa_sql_driver.h 1.37:
                    137:        * www/htdocs/.htaccess 1.25:
                    138:                feature: sql introducing ability to transcode charsets
                    139: 
                    140:        * src/include/Makefile.am 1.9:
                    141:        * src/include/Makefile.in 1.17:
                    142:                bugfix: removed from dist: src/include/pa_config_auto.h which
                    143:                were configured for make-dist-platform and badly updated proper
                    144:                config file in target [when .tar used for updating existing
                    145:                source tree]
                    146: 
                    147: 2003-12-19  paf
                    148:        * src/main/pa_sql_driver_manager.C 1.79:
                    149:                beauty: more straighforward error message
                    150: 
                    151:        * src/main/pa_charset.C 1.45:
                    152:                bugfix: memory for charsethandler structure for libxml now
                    153:                allocated properly
                    154: 
1.30      paf       155: 2003-12-17  paf
                    156:        * src/main/pa_globals.C 1.165:
                    157:                bugfix: removed false warning [warning: unreported
                    158:                xmlGenericErrors]
                    159: 
                    160:        * src/types/pa_vfile.C 1.39:
                    161:                beauty: removed outdated cast
                    162: 
                    163:        * src/main/pa_common.C 1.170:
                    164:                bugfix: empty http response caused gpf
                    165: 
                    166:        * src/include/pa_string.h 1.154:
                    167:                bugfix: removed too strong a assert
                    168: 
                    169: 2003-12-15  paf
                    170:        * src/classes/xdoc.C 1.127:
                    171:                bugfix: taint uri under ^xdoc::create{now works}
                    172: 
                    173: 2003-12-11  paf
                    174:        * src/classes/file.C 1.119:
                    175:        * src/classes/mail.C 1.99:
                    176:        * src/classes/op.C 1.143:
                    177:        * src/classes/xdoc.C 1.126:
                    178:        * src/main/pa_request.C 1.263:
                    179:        * src/types/pa_vimage.C 1.28:
                    180:        * src/types/pa_vmath.C 1.6:
                    181:        * src/types/pa_vstatus.C 1.21:
                    182:                beauty cancel: gcc does not understand that
                    183: 
                    184:        * src/include/pa_cache_managers.h 1.15:
                    185:        * src/main/pa_cache_managers.C 1.12:
                    186:        * src/main/pa_globals.C 1.164:
                    187:        * src/main/pa_request.C 1.264:
                    188:        * src/types/pa_vstatus.C 1.22:
                    189:                bugfix(solaris): removed dependency on object initialization
                    190:                order [one more place]
                    191: 
                    192:        * src/main/pa_cache_managers.C 1.11:
                    193:        * src/main/pa_sql_driver_manager.C 1.78:
                    194:        * src/main/pa_stylesheet_manager.C 1.23:
                    195:                bugfix(solaris): removed dependency on object initialization
                    196:                order [two places]
                    197: 
                    198:        * src/main/Makefile.am 1.43:
                    199:        * src/main/Makefile.in 1.56:
                    200:                *** empty log message ***
                    201: 
                    202:        * src/classes/file.C 1.118:
                    203:        * src/classes/mail.C 1.98:
                    204:        * src/classes/op.C 1.142:
                    205:        * src/classes/xdoc.C 1.125:
                    206:        * src/include/pa_cache_managers.h 1.14:
                    207:        * src/include/pa_sql_connection.h 1.36:
                    208:        * src/include/pa_sql_driver_manager.h 1.30:
                    209:        * src/include/pa_stylesheet_manager.h 1.20:
                    210:        * src/main/pa_request.C 1.262:
                    211:        * src/main/pa_stylesheet_manager.C 1.24:
                    212:        * src/types/pa_vimage.C 1.27:
                    213:        * src/types/pa_vmath.C 1.5:
                    214:        * src/types/pa_vstatus.C 1.20:
                    215:                beauty: removed redundant ctor call [relying on implicit String
                    216:                :Body(cstr) call]
                    217: 
                    218:        * operators.txt 1.148:
                    219:        * src/types/pa_vstatus.C 1.23:
                    220:                    !$status:pid process id
                    221:                    !$status:tid thread id
                    222: 
                    223: 2003-12-10  paf
                    224:        * src/include/pa_sql_connection.h 1.35:
                    225:        * www/htdocs/.htaccess 1.24:
                    226:                bugfix: $status:sql.cache back  << time now ok
                    227: 
                    228:        * operators.txt 1.147:
                    229:        * src/main/pa_sql_driver_manager.C 1.77:
                    230:        * src/main/pa_stylesheet_manager.C 1.22:
                    231:                $status:stylesheet.cache back operational
                    232: 
                    233:        * operators.txt 1.146:
                    234:        * src/classes/xdoc.C 1.124:
                    235:        * src/include/pa_charset.h 1.28:
                    236:        * src/include/pa_sql_connection.h 1.34:
                    237:        * src/main/pa_charset.C 1.44:
                    238:        * src/main/pa_sql_driver_manager.C 1.76:
                    239:        * src/main/pa_string.C 1.192:
                    240:        * src/types/pa_vxdoc.h 1.35:
                    241:        * www/htdocs/.htaccess 1.23:
                    242:                $status:sql.cache back operational
                    243: 
1.29      paf       244: 2003-12-02  paf
1.30      paf       245:        * src/types/pa_vmail.C 1.57:
                    246:                bugfix: ^mail:send[$.file[$.value[>>xxxx<<]] now untaints
                    247:                properly [were: as-is forced]
                    248: 
                    249:        * src/main/pa_xml_io.C 1.15:
                    250:                bugfix: on some platforms one can't throw exceptions out of libxml callbacks:
                    251:                reimplemented error handling of http://localhost, parser://method and safemode check callbacks
                    252: 
                    253:        * src/main/pa_string.C [release_3_1_1] 1.185.2.1:
                    254:                bugfix: SPARC gpf on %4!=0 address int ref [merged from HEAD]
                    255: 
                    256:        * src/classes/image.C 1.103:
                    257:                nothing: comment removed
                    258: 
1.29      paf       259:        * src/main/pa_string.C 1.191:
                    260:                bugfix: sparc gpf on reading %4!=0 addresses to int
                    261: 
                    262: 2003-12-01  paf
                    263:        * src/main/pa_globals.C 1.163:
                    264:                bugfix: win32: compile prob
                    265: 
                    266:        * src/main/pa_xml_io.C 1.13:
                    267:                todo: safe mode check not to throw exception
                    268: 
                    269:        * src/main/pa_xml_io.C 1.12:
                    270:                bugfix: http://localhost typo error
                    271: 
                    272:        * src/classes/xdoc.C 1.123:
                    273:        * src/main/pa_xml_io.C 1.14:
                    274:                bugfix: typo
                    275: 
                    276: 2003-11-28  paf
                    277:        * src/main/pa_xml_io.C 1.9:
                    278:                installed safe-mode checker as filter of all xml documents read
                    279: 
                    280:        * operators.txt 1.144:
                    281:        * src/include/pa_request.h 1.173:
                    282:        * src/main/pa_xml_io.C 1.3:
                    283:                works.
                    284:                todo: maybe replace original open mech of xdoc::create & co to use libxml open, so that this would work for root document
                    285:                
                    286:                $xdoc[^xdoc::create{<?xml version="1.0"?>
                    287:                <!DOCTYPE test SYSTEM "parser://method/params/here">
                    288:                <test>
                    289:                        &test^;
                    290:                </test>
                    291:                }]
                    292:                
                    293:                ^taint[^xdoc.string[]]
                    294:                
                    295:                @method[param]
                    296:                <!ENTITY test "test-entity-value+$form:user+$param!">
                    297: 
                    298:        * src/main/pa_xml_io.C 1.8:
                    299:                http://localhost/ now checked for safe mode
                    300: 
                    301:        * src/classes/xdoc.C 1.122:
                    302:        * src/include/pa_stylesheet_connection.h 1.37:
                    303:        * src/include/pa_stylesheet_manager.h 1.19:
                    304:        * src/main/pa_stylesheet_manager.C 1.21:
                    305:                replaced original open mech of xdoc::create & co to use libxml open, so that this would work for root document
                    306:                todo: safe mode checks to libxml: ideally to some 1 point
                    307: 
                    308:        * src/include/Makefile.in 1.16:
                    309:        * src/main/Makefile.in 1.55:
                    310:                *** empty log message ***
                    311: 
                    312:        * operators.txt 1.145:
                    313:        * src/main/pa_xml_io.C 1.4:
                    314:                leading / in http://parser[abscent params]
                    315: 
                    316:        * src/main/pa_xml_io.C 1.5:
                    317:                comment
                    318: 
                    319: 2003-11-27  paf
                    320:        * src/classes/date.C 1.58:
                    321:                bugfix: typo error
                    322: 
                    323:        * src/main/pa_xml_io.C 1.2:
                    324:                libxml: started parser://methodcall/params
                    325: 
                    326: 2003-11-26  paf
                    327:        * src/types/pa_value.h 1.117:
                    328:                warnings: --
                    329: 
                    330:        * operators.txt 1.143:
                    331:        * src/include/Makefile.am 1.8:
                    332:        * src/include/pa_globals.h 1.108:
                    333:        * src/include/pa_xml_io.h 1.1:
                    334:        * src/main/Makefile.am 1.42:
                    335:        * src/main/main.vcproj 1.7:
                    336:        * src/main/pa_globals.C 1.162:
                    337:        * src/main/pa_request.C 1.261:
                    338:        * src/main/pa_xml_io.C 1.1:
                    339:                simplification: xml errors to hash<thread_id,error>
                    340:                reorganization: xml io moved  to pa_xml_io.C/h
                    341: 
1.28      paf       342: 2003-11-25  paf
1.29      paf       343:        * src/classes/table.C 1.194:
                    344:                bugfix: a, c?x:y, z in gcc considered(?) as  a, (c?x:y, z)
                    345: 
1.28      paf       346:        * src/main/untaint.C 1.125:
                    347:                bugfix: consequences of not reading this comment: 
                    348:                CORD_pos_chars_left /* Number of characters in cache.  <= 0 ==
                    349:                 none   */
                    350: 
                    351:        * src/include/pa_array.h 1.63:
                    352:                removed needless checks
1.29      paf       353: 
                    354:        * src/classes/table.C 1.195:
                    355:                bugfix: wrong sequence. [sadly no waring whatever)
1.28      paf       356: 
                    357: 2003-11-24  paf
                    358:        * operators.txt 1.142:
                    359:        * src/types/pa_vxnode.C 1.36:
                    360:        * src/types/pa_vxnode.h 1.28:
                    361:                $xdoc[^xdoc::create[test]]
                    362:                $tn[^xdoc.createTextNode[text node value]]
                    363:                $dummy[^xdoc.firstChild.appendChild[$tn]]
                    364:                $xdoc.firstChild.firstChild.nodeValue[different]
                    365:                ^taint[^xdoc.string[]]
                    366: 
                    367:        * src/main/pa_request.C 1.260:
                    368:        * src/types/pa_vform.C 1.77:
                    369:        * src/types/pa_vform.h 1.48:
                    370:                removed limit: now $form:xxx can be accessed anytime, even in @auto/conf
                    371:                [and request/response:charset still can be changed anytime]
                    372: 
                    373:        * src/include/pa_hash.h 1.61:
                    374:        * src/types/types.vcproj 1.6:
                    375:                linker HPUX nongnu workaround: static Hash::allocates -> static Hash_allocates
                    376: 
                    377:        * src/main/pa_common.C 1.169:
                    378:                bugfix: ^file::load[binary;http://...]   now not transcodes
                    379:                response body
                    380: 
                    381: 2003-11-21  paf
                    382:        * src/main/pa_exec.C 1.55:
                    383:                bug in safe mode
                    384: 
                    385:        * src/include/Makefile.am 1.7:
                    386:                pa_xml_exception.h
                    387: 
                    388:        * Makefile.am 1.40:
                    389:        * Makefile.in 1.54:
                    390:        * configure 1.73:
                    391:        * configure.in 1.71:
                    392:        * parser3.sln 1.8:
                    393:        * src/classes/Makefile.am 1.47:
                    394:        * src/classes/Makefile.am 1.48:
                    395:        * src/classes/Makefile.in 1.59:
                    396:        * src/classes/classes.vcproj 1.5:
                    397:        * src/include/Makefile.in 1.15:
                    398:        * src/include/pa_config_auto.h.in 1.39:
                    399:        * src/lib/Makefile.am 1.7:
                    400:        * src/lib/Makefile.in 1.12:
                    401:        * src/lib/gd/Makefile.am 1.1:
                    402:        * src/lib/gd/Makefile.in 1.1:
                    403:        * src/lib/gd/Makefile.in 1.2:
                    404:        * src/lib/gd/gd.vcproj 1.1:
                    405:        * src/lib/gd/gif.C 1.1:
                    406:        * src/lib/gd/gif.h 1.1:
                    407:        * src/lib/gd/gifio.C 1.1:
                    408:        * src/lib/gd/mtables.h 1.1:
                    409:        * src/lib/smtp/Makefile.am 1.1:
                    410:        * src/lib/smtp/Makefile.in 1.1:
                    411:        * src/lib/smtp/Makefile.in 1.2:
                    412:        * src/lib/smtp/comms.C 1.1:
                    413:        * src/lib/smtp/smtp.C 1.1:
                    414:        * src/lib/smtp/smtp.h 1.1:
                    415:        * src/lib/smtp/smtp.vcproj 1.1:
                    416:        * src/targets/apache13/p3runConfigure.in 1.15:
                    417:        * src/targets/apache13core/Makefile.in 1.5:
                    418:        * src/targets/cgi/Makefile.am 1.50:
                    419:        * src/targets/cgi/Makefile.in 1.66:
                    420:        * src/types/Makefile.am 1.35:
                    421:        * src/types/Makefile.in 1.54:
                    422:                rearrange: gd&smtp moved to src/lib
                    423: 
                    424:        * src/targets/apache13/ApacheModuleParser3.vcproj 1.5:
                    425:        * src/targets/isapi/parser3isapi.C 1.85:
                    426:                more warnings --
                    427: 
                    428:        * Makefile.am 1.41:
                    429:        * Makefile.in 1.55:
                    430:        * acinclude.m4 1.28:
                    431:        * aclocal.m4 1.31:
                    432:        * acsite.m4 1.6:
                    433:        * configure 1.74:
                    434:        * configure.in 1.72:
                    435:        * src/classes/mail.C 1.97:
                    436:                *** empty log message ***
                    437: 
                    438:        * src/targets/apache13core/ApacheModuleParser3Core.vcproj 1.5:
                    439:        * src/targets/apache13core/Makefile.am 1.5:
                    440:        * src/targets/apache13core/mod_parser3.C 1.7:
                    441:        * src/targets/apache13core/mod_parser3_core.C 1.1:
                    442:                renamed mod_parser3 to mod_parser3_core to help DOXYGEN
                    443: 
                    444:        * src/classes/mail.C 1.96:
                    445:                bugfix: typo
                    446: 
                    447: 2003-11-20  paf
                    448:        * src/main/execute.C 1.303:
                    449:        * src/main/pa_request.C 1.257:
                    450:                old forgotten todo: when can't report problem (undefined @
                    451:                unhandled_exception) problem source string were not reported
                    452: 
                    453:        * src/classes/classes.vcproj 1.4:
                    454:        * src/classes/date.C 1.53:
                    455:        * src/classes/double.C 1.55:
                    456:        * src/classes/file.C 1.114:
                    457:        * src/classes/hash.C 1.61:
                    458:        * src/classes/hashfile.C 1.31:
                    459:        * src/classes/image.C 1.98:
                    460:        * src/classes/int.C 1.51:
                    461:        * src/classes/mail.C 1.93:
                    462:        * src/classes/math.C 1.35:
                    463:        * src/classes/memory.C 1.4:
                    464:        * src/classes/op.C 1.138:
                    465:        * src/classes/string.C 1.128:
                    466:        * src/classes/table.C 1.191:
                    467:        * src/classes/xdoc.C 1.118:
                    468:        * src/classes/xnode.C 1.62:
                    469:        * src/include/pa_config_includes.h 1.27:
                    470:        * src/include/pa_operation.h 1.3:
                    471:        * src/include/pa_sql_connection.h 1.32:
                    472:        * src/include/pa_table.h 1.54:
                    473:        * src/include/pa_types.h 1.46:
                    474:        * src/lib/ltdl/config_fixed.h 1.3:
                    475:        * src/lib/ltdl/ltdl.vcproj 1.2:
                    476:        * src/lib/md5/md5.vcproj 1.2:
                    477:        * src/lib/pcre/maketables.c 1.2:
                    478:        * src/lib/pcre/pcre_dftables.vcproj 1.2:
                    479:        * src/lib/pcre/pcre_parser_ctype.vcproj 1.2:
                    480:        * src/lib/sdbm/apr_file_io.C 1.2:
                    481:        * src/main/compile.tab.C 1.93:
                    482:        * src/main/execute.C 1.301:
                    483:        * src/main/main.vcproj 1.6:
                    484:        * src/main/pa_cache_managers.C 1.9:
                    485:        * src/main/pa_charset.C 1.40:
                    486:        * src/main/pa_common.C 1.166:
                    487:        * src/main/pa_dir.C 1.16:
                    488:        * src/main/pa_exec.C 1.53:
                    489:        * src/main/pa_globals.C 1.160:
                    490:        * src/main/pa_os.C 1.3:
                    491:        * src/main/pa_request.C 1.255:
                    492:        * src/main/pa_string.C 1.187:
                    493:        * src/main/pa_table.C 1.57:
                    494:        * src/targets/apache13/ApacheModuleParser3.vcproj 1.4:
                    495:        * src/targets/apache13core/ApacheModuleParser3Core.vcproj 1.4:
                    496:        * src/targets/cgi/parser3.vcproj 1.5:
                    497:        * src/targets/isapi/parser3isapi.vcproj 1.2:
                    498:        * src/types/pa_value.h 1.115:
                    499:        * src/types/pa_vconsole.h 1.3:
                    500:        * src/types/pa_vdate.h 1.28:
                    501:        * src/types/pa_vfile.h 1.54:
                    502:        * src/types/pa_vhashfile.C 1.36:
                    503:        * src/types/pa_vimage.C 1.25:
                    504:        * src/types/pa_vimage.h 1.36:
                    505:        * src/types/pa_vmail.C 1.53:
                    506:        * src/types/pa_vobject.C 1.14:
                    507:        * src/types/pa_vstateless_class.h 1.46:
                    508:        * src/types/pa_vtable.C 1.23:
                    509:        * src/types/pa_vtable.h 1.50:
                    510:        * src/types/pa_vvoid.h 1.19:
                    511:        * src/types/pa_vxdoc.h 1.33:
                    512:        * src/types/pa_vxnode.h 1.26:
                    513:        * src/types/types.vcproj 1.5:
                    514:                turned on warnings level4 on all projects (except libltdl=off & libsdbm=level3)
                    515:                found several unitialized vars
                    516: 
                    517:        * src/classes/classes.C 1.20:
                    518:        * src/classes/classes.h 1.25:
                    519:        * src/classes/date.C 1.54:
                    520:        * src/classes/double.C 1.56:
                    521:        * src/classes/file.C 1.115:
                    522:        * src/classes/form.C 1.37:
                    523:        * src/classes/hash.C 1.62:
                    524:        * src/classes/hashfile.C 1.32:
                    525:        * src/classes/image.C 1.99:
                    526:        * src/classes/int.C 1.52:
                    527:        * src/classes/mail.C 1.94:
                    528:        * src/classes/math.C 1.36:
                    529:        * src/classes/memory.C 1.5:
                    530:        * src/classes/op.C 1.139:
                    531:        * src/classes/response.C 1.25:
                    532:        * src/classes/string.C 1.129:
                    533:        * src/classes/table.C 1.192:
                    534:        * src/classes/void.C 1.30:
                    535:        * src/classes/xdoc.C 1.119:
                    536:        * src/classes/xnode.C 1.63:
                    537:        * src/classes/xnode.h 1.20:
                    538:        * src/include/pa_array.h 1.62:
                    539:        * src/include/pa_cache_managers.h 1.12:
                    540:        * src/include/pa_charset.h 1.27:
                    541:        * src/include/pa_charsets.h 1.11:
                    542:        * src/include/pa_common.h 1.97:
                    543:        * src/include/pa_config_fixed.h 1.62:
                    544:        * src/include/pa_dictionary.h 1.16:
                    545:        * src/include/pa_dir.h 1.15:
                    546:        * src/include/pa_exception.h 1.42:
                    547:        * src/include/pa_exec.h 1.14:
                    548:        * src/include/pa_globals.h 1.107:
                    549:        * src/include/pa_hash.h 1.60:
                    550:        * src/include/pa_memory.h 1.8:
                    551:        * src/include/pa_opcode.h 1.26:
                    552:        * src/include/pa_operation.h 1.4:
                    553:        * src/include/pa_os.h 1.3:
                    554:        * src/include/pa_request.h 1.172:
                    555:        * src/include/pa_request_charsets.h 1.3:
                    556:        * src/include/pa_request_info.h 1.3:
                    557:        * src/include/pa_sapi.h 1.24:
                    558:        * src/include/pa_socks.h 1.13:
                    559:        * src/include/pa_sql_connection.h 1.33:
                    560:        * src/include/pa_sql_driver_manager.h 1.29:
                    561:        * src/include/pa_stack.h 1.21:
                    562:        * src/include/pa_string.h 1.153:
                    563:        * src/include/pa_stylesheet_connection.h 1.35:
                    564:        * src/include/pa_stylesheet_manager.h 1.18:
                    565:        * src/include/pa_table.h 1.56:
                    566:        * src/include/pa_threads.h 1.28:
                    567:        * src/include/pa_types.h 1.47:
                    568:        * src/include/pa_uue.h 1.6:
                    569:        * src/include/pa_xml_exception.h 1.2:
                    570:        * src/lib/md5/pa_md5.h 1.9:
                    571:        * src/lib/md5/pa_md5c.c 1.11:
                    572:        * src/lib/sdbm/apr_file_io.C 1.3:
                    573:        * src/lib/sdbm/apr_strings.C 1.2:
                    574:        * src/main/compile.C 1.71:
                    575:        * src/main/compile_tools.C 1.56:
                    576:        * src/main/compile_tools.h 1.71:
                    577:        * src/main/execute.C 1.302:
                    578:        * src/main/pa_cache_managers.C 1.10:
                    579:        * src/main/pa_charset.C 1.41:
                    580:        * src/main/pa_charsets.C 1.14:
                    581:        * src/main/pa_common.C 1.168:
                    582:        * src/main/pa_dictionary.C 1.20:
                    583:        * src/main/pa_dir.C 1.17:
                    584:        * src/main/pa_exception.C 1.46:
                    585:        * src/main/pa_exec.C 1.54:
                    586:        * src/main/pa_globals.C 1.161:
                    587:        * src/main/pa_memory.C 1.3:
                    588:        * src/main/pa_os.C 1.4:
                    589:        * src/main/pa_pool.C 1.62:
                    590:        * src/main/pa_request.C 1.256:
                    591:        * src/main/pa_socks.C 1.20:
                    592:        * src/main/pa_sql_driver_manager.C 1.74:
                    593:        * src/main/pa_string.C 1.188:
                    594:        * src/main/pa_stylesheet_manager.C 1.20:
                    595:        * src/main/pa_table.C 1.58:
                    596:        * src/main/pa_uue.C 1.6:
                    597:        * src/main/pa_xml_exception.C 1.2:
                    598:        * src/main/untaint.C 1.123:
                    599:        * src/sql/pa_sql_driver.h 1.36:
                    600:        * src/targets/apache13/mod_parser3.c 1.9:
                    601:        * src/targets/apache13/pa_httpd.h 1.5:
                    602:        * src/targets/apache13core/mod_parser3.C 1.6:
                    603:        * src/targets/apache13core/pa_threads.C 1.3:
                    604:        * src/targets/cgi/pa_threads.C 1.14:
                    605:        * src/targets/cgi/parser3.C 1.222:
                    606:        * src/targets/isapi/pa_threads.C 1.15:
                    607:        * src/targets/isapi/parser3isapi.C 1.84:
                    608:        * src/types/pa_junction.h 1.3:
                    609:        * src/types/pa_method.h 1.3:
                    610:        * src/types/pa_value.C 1.13:
                    611:        * src/types/pa_value.h 1.116:
                    612:        * src/types/pa_vbool.h 1.23:
                    613:        * src/types/pa_vclass.C 1.19:
                    614:        * src/types/pa_vclass.h 1.42:
                    615:        * src/types/pa_vcode_frame.h 1.26:
                    616:        * src/types/pa_vconsole.h 1.4:
                    617:        * src/types/pa_vcookie.C 1.59:
                    618:        * src/types/pa_vcookie.h 1.25:
                    619:        * src/types/pa_vdate.h 1.29:
                    620:        * src/types/pa_vdouble.h 1.44:
                    621:        * src/types/pa_venv.h 1.30:
                    622:        * src/types/pa_vfile.C 1.38:
                    623:        * src/types/pa_vfile.h 1.55:
                    624:        * src/types/pa_vform.C 1.76:
                    625:        * src/types/pa_vform.h 1.47:
                    626:        * src/types/pa_vhash.h 1.49:
                    627:        * src/types/pa_vhashfile.C 1.37:
                    628:        * src/types/pa_vhashfile.h 1.26:
                    629:        * src/types/pa_vimage.C 1.26:
                    630:        * src/types/pa_vimage.h 1.37:
                    631:        * src/types/pa_vint.h 1.40:
                    632:        * src/types/pa_vjunction.h 1.21:
                    633:        * src/types/pa_vmail.C 1.54:
                    634:        * src/types/pa_vmail.h 1.13:
                    635:        * src/types/pa_vmath.C 1.4:
                    636:        * src/types/pa_vmath.h 1.16:
                    637:        * src/types/pa_vmemory.h 1.3:
                    638:        * src/types/pa_vmethod_frame.C 1.3:
                    639:        * src/types/pa_vmethod_frame.h 1.47:
                    640:        * src/types/pa_vobject.C 1.15:
                    641:        * src/types/pa_vobject.h 1.41:
                    642:        * src/types/pa_vrequest.C 1.31:
                    643:        * src/types/pa_vrequest.h 1.27:
                    644:        * src/types/pa_vresponse.C 1.19:
                    645:        * src/types/pa_vresponse.h 1.34:
                    646:        * src/types/pa_vstateless_class.C 1.21:
                    647:        * src/types/pa_vstateless_class.h 1.47:
                    648:        * src/types/pa_vstateless_object.h 1.30:
                    649:        * src/types/pa_vstatus.C 1.19:
                    650:        * src/types/pa_vstatus.h 1.17:
                    651:        * src/types/pa_vstring.C 1.24:
                    652:        * src/types/pa_vstring.h 1.57:
                    653:        * src/types/pa_vtable.C 1.24:
                    654:        * src/types/pa_vtable.h 1.51:
                    655:        * src/types/pa_vvoid.h 1.20:
                    656:        * src/types/pa_vxdoc.C 1.26:
                    657:        * src/types/pa_vxdoc.h 1.34:
                    658:        * src/types/pa_vxnode.C 1.34:
                    659:        * src/types/pa_vxnode.h 1.27:
                    660:        * src/types/pa_wcontext.C 1.27:
                    661:        * src/types/pa_wcontext.h 1.45:
                    662:        * src/types/pa_wwrapper.h 1.30:
                    663:                static const char * const IDENT
                    664: 
                    665:        * src/classes/date.C 1.55:
                    666:        * src/classes/date.C 1.56:
                    667:        * src/classes/date.C 1.57:
                    668:        * src/classes/file.C 1.116:
                    669:        * src/classes/file.C 1.117:
                    670:        * src/classes/hash.C 1.63:
                    671:        * src/classes/hash.C 1.64:
                    672:        * src/classes/image.C 1.100:
                    673:        * src/classes/image.C 1.101:
                    674:        * src/classes/image.C 1.102:
                    675:        * src/classes/mail.C 1.95:
                    676:        * src/classes/math.C 1.37:
                    677:        * src/classes/op.C 1.140:
                    678:        * src/classes/op.C 1.141:
                    679:        * src/classes/string.C 1.130:
                    680:        * src/classes/string.C 1.131:
                    681:        * src/classes/table.C 1.193:
                    682:        * src/classes/xdoc.C 1.120:
                    683:        * src/classes/xdoc.C 1.121:
                    684:        * src/include/pa_array.h 1.61:
                    685:        * src/include/pa_cache_managers.h 1.13:
                    686:        * src/include/pa_pool.h 1.89:
                    687:        * src/include/pa_request.h 1.171:
                    688:        * src/include/pa_string.h 1.152:
                    689:        * src/include/pa_stylesheet_connection.h 1.36:
                    690:        * src/include/pa_table.h 1.55:
                    691:        * src/main/compile_tools.h 1.70:
                    692:        * src/main/pa_charset.C 1.42:
                    693:        * src/main/pa_charset.C 1.43:
                    694:        * src/main/pa_common.C 1.167:
                    695:        * src/main/pa_dictionary.C 1.21:
                    696:        * src/main/pa_dir.C 1.18:
                    697:        * src/main/pa_request.C 1.259:
                    698:        * src/main/pa_sql_driver_manager.C 1.75:
                    699:        * src/main/pa_string.C 1.189:
                    700:        * src/main/pa_string.C 1.190:
                    701:        * src/main/pa_table.C 1.59:
                    702:        * src/main/untaint.C 1.124:
                    703:        * src/types/pa_value.C 1.14:
                    704:        * src/types/pa_vcookie.C 1.60:
                    705:        * src/types/pa_vdate.h 1.30:
                    706:        * src/types/pa_vhash.h 1.48:
                    707:        * src/types/pa_vhashfile.C 1.38:
                    708:        * src/types/pa_vimage.h 1.38:
                    709:        * src/types/pa_vmail.C 1.55:
                    710:        * src/types/pa_vmethod_frame.C 1.4:
                    711:        * src/types/pa_vmethod_frame.h 1.48:
                    712:        * src/types/pa_vxnode.C 1.35:
                    713:        * src/types/pa_wcontext.h 1.44:
                    714:                more warnings --
                    715: 
                    716: 2003-11-19  paf
                    717:        * operators.txt 1.141:
                    718:        * src/classes/op.C 1.136:
                    719:        * src/include/pa_request.h 1.170:
                    720:        * src/main/pa_request.C 1.254:
                    721:                cache[...]{body}{catch block with $exception.handled[cache] 
                    722:                meaning "get expired cache, if any. else error"}
                    723: 
                    724:        * src/classes/op.C 1.135:
                    725:        * src/include/pa_os.h 1.2:
                    726:        * src/include/pa_request.h 1.169:
                    727:        * src/main/pa_common.C 1.165:
                    728:                cache: ^cache[] fallback
                    729:                todo: kinda ^try:  ^cache[...]{body}{catch code with $exception.cache field}
                    730: 
                    731:        * src/classes/op.C 1.137:
                    732:                more ansi C++ comp
                    733: 
                    734: 2003-11-12  paf
                    735:        * src/classes/xnode.C 1.61:
                    736:                replaceChild: 2nd param now named oldChild [copy/paste bug]
                    737: 
                    738: 2003-11-11  paf
                    739:        * src/types/pa_value.h [release_3_0_8] 1.109.6.1:
                    740:        * src/types/pa_vfile.h [release_3_0_8] 1.52.6.1:
                    741:                more C++ compatible [HP C++ failed]
                    742: 
                    743:        * operators.txt 1.139:
                    744:        * operators.txt 1.140:
                    745:                *** empty log message ***
                    746: 
                    747:        * bin/auto.p.dist.in 1.10:
                    748:                colno
                    749: 
                    750: 2003-11-10  paf
                    751:        * src/types/pa_vhashfile.C 1.35:
                    752:        * src/types/pa_vhashfile.h 1.25:
                    753:                add: hashfile old serialize version and exipire now removes entries
                    754: 
                    755:        * operators.txt 1.135:
                    756:                comment: updated
                    757: 
                    758:        * operators.txt 1.138:
                    759:        * src/main/pa_request.C 1.253:
                    760:        * src/types/Makefile.am 1.34:
                    761:        * src/types/pa_vconsole.h 1.1:
                    762:        * src/types/types.vcproj 1.4:
                    763:                $console:line read/write  [for nntp]
                    764: 
                    765:        * operators.txt 1.134:
                    766:        * src/classes/hashfile.C 1.30:
                    767:        * src/include/pa_common.h 1.96:
                    768:        * src/main/pa_common.C 1.164:
                    769:        * src/types/pa_vhashfile.C 1.34:
                    770:        * src/types/pa_vhashfile.h 1.24:
                    771:                ^hashfile.delete[] removes files altogether [and dir, if could]
                    772: 
                    773:        * src/types/pa_vconsole.h 1.2:
                    774:                flush
                    775: 
                    776:        * src/types/Makefile.in 1.53:
                    777:                *** empty log message ***
                    778: 
                    779:        * src/lib/sdbm/sdbm.c 1.3:
                    780:                bugfix: sdbm: .h said it's OK to remove nonexistent pair. .c
                    781:                coded that that was error. fixed
                    782: 
                    783:        * src/types/pa_vhashfile.C 1.33:
                    784:                sdbm: exception type change to file.access [regretfull can't
                    785:                split it to different exceptions without modifying sdbm source
                    786:                wich would prefer not to]
                    787: 
                    788:        * operators.txt 1.136:
                    789:                mysql: transaction support: ?autocommit=0
                    790: 
                    791: 2003-11-07  paf
                    792:        * src/classes/date.C 1.52:
                    793:        * src/classes/file.C 1.113:
                    794:        * src/classes/hash.C 1.60:
                    795:        * src/classes/hashfile.C 1.29:
                    796:        * src/classes/image.C 1.97:
                    797:        * src/classes/table.C 1.190:
                    798:        * src/classes/xdoc.C 1.117:
                    799:        * src/include/Makefile.am 1.6:
                    800:        * src/include/pa_array.h 1.60:
                    801:        * src/include/pa_pool.h 1.88:
                    802:        * src/include/pa_request.h 1.168:
                    803:        * src/main/Makefile.am 1.41:
                    804:        * src/main/execute.C 1.300:
                    805:        * src/main/main.vcproj 1.5:
                    806:        * src/main/pa_pool.C 1.61:
                    807:        * src/main/pa_request.C 1.252:
                    808:        * src/targets/cgi/parser3.C 1.221:
                    809:        * src/types/pa_vclass.C 1.18:
                    810:        * src/types/pa_vclass.h 1.41:
                    811:        * src/types/pa_vhashfile.h 1.23:
                    812:        * src/types/pa_vobject.h 1.40:
                    813:        * src/types/pa_vstateless_class.h 1.45:
                    814:                resurrected: pool idea. now only for destructing objects at
                    815:                request processing end
                    816: 
                    817:        * src/include/Makefile.in 1.14:
                    818:        * src/main/Makefile.in 1.54:
                    819:                *** empty log message ***
                    820: 
                    821: 2003-11-06  paf
                    822:        * src/classes/xdoc.C 1.116:
                    823:        * src/classes/xnode.C 1.60:
                    824:        * src/include/pa_charset.h 1.26:
                    825:        * src/include/pa_globals.h 1.106:
                    826:        * src/include/pa_stylesheet_connection.h 1.34:
                    827:        * src/main/pa_exception.C 1.45:
                    828:        * src/types/pa_vxnode.h 1.25:
                    829:                XmlException changes
                    830: 
                    831:        * src/types/pa_vhashfile.C 1.30:
                    832:                hashfile: foreach body can bodify $self
                    833: 
                    834:        * operators.txt 1.133:
                    835:        * src/types/pa_vhashfile.C 1.32:
                    836:                hashfile: clear & expiration [time in value. todo: move time to
                    837:                key]
                    838: 
                    839:        * src/include/pa_memory.h 1.7:
                    840:        * src/targets/cgi/parser3.C 1.220:
                    841:        * src/types/pa_value.C 1.12:
                    842:        * src/types/pa_value.h 1.114:
                    843:        * src/types/pa_vcookie.C 1.58:
                    844:        * src/types/pa_vhashfile.C 1.23:
                    845:        * src/types/pa_vhashfile.h 1.18:
                    846:        * www/htdocs/.htaccess 1.22:
                    847:                hashfile implemented get/put [raw]
                    848: 
                    849:        * operators.txt 1.130:
                    850:        * src/classes/hashfile.C 1.26:
                    851:        * src/types/pa_vhashfile.C 1.25:
                    852:        * src/types/pa_vhashfile.h 1.20:
                    853:                hashfile: hash
                    854: 
                    855:        * src/lib/sdbm/Makefile.am 1.2:
                    856:        * src/lib/sdbm/apr_file_io.C 1.1:
                    857:        * src/lib/sdbm/apr_strings.C 1.1:
                    858:                move to upper dir, .am updated
                    859: 
                    860:        * configure 1.69:
                    861:        * configure.in 1.65:
                    862:        * operators.txt 1.128:
                    863:        * parser3.sln 1.6:
                    864:        * src/classes/classes.vcproj 1.3:
                    865:        * src/classes/hashfile.C 1.24:
                    866:        * src/classes/xdoc.C 1.115:
                    867:        * src/include/pa_config_fixed.h 1.61:
                    868:        * src/include/pa_exception.h 1.40:
                    869:        * src/include/pa_globals.h 1.105:
                    870:        * src/include/pa_memory.h 1.6:
                    871:        * src/include/pa_version.h 1.11:
                    872:        * src/lib/ltdl/libltdl.vcproj 1.2:
                    873:        * src/lib/ltdl/libltdl.vcproj.vspscc 1.2:
                    874:        * src/lib/ltdl/ltdl.vcproj 1.1:
                    875:        * src/lib/ltdl/ltdl.vcproj.vspscc 1.1:
                    876:        * src/lib/sdbm/apr-include/apr.h 1.4:
                    877:        * src/lib/sdbm/apr-include/apr_errno.h 1.4:
                    878:        * src/lib/sdbm/apr-include/apr_file_info.h 1.1:
                    879:        * src/lib/sdbm/apr-include/apr_file_io.h 1.4:
                    880:        * src/lib/sdbm/apr-include/apr_pools.h 1.4:
                    881:        * src/lib/sdbm/apr-include/apr_sdbm.h 1.3:
                    882:        * src/lib/sdbm/apr-include/apr_strings.h 1.3:
                    883:        * src/lib/sdbm/apr-include/apu.h 1.3:
                    884:        * src/main/compile.tab.C 1.92:
                    885:        * src/main/main.vcproj 1.3:
                    886:        * src/main/pa_charset.C 1.39:
                    887:        * src/targets/apache13/ApacheModuleParser3.vcproj 1.3:
                    888:        * src/targets/apache13/mod_parser3.c 1.8:
                    889:        * src/targets/apache13core/ApacheModuleParser3Core.vcproj 1.3:
                    890:        * src/targets/cgi/parser3.vcproj 1.4:
                    891:        * src/types/Makefile.am 1.30:
                    892:        * src/types/pa_vhash.C 1.4:
                    893:        * src/types/pa_vhashfile.C 1.22:
                    894:        * src/types/pa_vhashfile.h 1.17:
                    895:        * src/types/pa_vxnode.h 1.24:
                    896:        * src/types/types.vcproj 1.3:
                    897:        * www/htdocs/.htaccess 1.21:
                    898:                hashfile: started again with sdbm from apache
                    899: 
                    900:        * operators.txt 1.131:
                    901:        * src/classes/hash.C 1.58:
                    902:        * src/classes/hash.C 1.59:
                    903:        * src/classes/hashfile.C 1.27:
                    904:        * src/classes/hashfile.C 1.28:
                    905:        * src/types/pa_vhashfile.C 1.26:
                    906:        * src/types/pa_vhashfile.h 1.21:
                    907:                hashfile: foreach
                    908: 
                    909:        * operators.txt 1.132:
                    910:        * src/types/pa_vhashfile.C 1.27:
                    911:        * src/types/pa_vhashfile.h 1.22:
                    912:                hashfile: clear and proper locking
                    913: 
                    914:        * src/include/Makefile.in 1.13:
                    915:        * src/include/pa_config_includes.h 1.26:
                    916:        * src/include/pa_version.h 1.12:
                    917:                our replacements of max& co only for cpp
                    918: 
                    919:        * parser3.sln 1.7:
                    920:        * src/targets/apache13/p3runConfigure.in 1.14:
                    921:        * src/targets/cgi/Makefile.am 1.49:
                    922:                .vcproj & .am updated to include sdbm
                    923: 
                    924:        * operators.txt 1.129:
                    925:        * src/classes/hashfile.C 1.25:
                    926:        * src/types/pa_vhashfile.C 1.24:
                    927:        * src/types/pa_vhashfile.h 1.19:
                    928:        * tests/todo.txt 1.4:
                    929:                hashfile: delete
                    930: 
                    931:        * configure.in 1.66:
                    932:        * configure.in 1.67:
                    933:        * src/classes/Makefile.am 1.46:
                    934:        * src/classes/Makefile.in 1.58:
                    935:        * src/include/Makefile.am 1.5:
                    936:        * src/lib/Makefile.am 1.6:
                    937:        * src/lib/Makefile.in 1.11:
                    938:        * src/lib/sdbm/Makefile.am 1.3:
                    939:        * src/lib/sdbm/Makefile.in 1.1:
                    940:        * src/lib/sdbm/apr-include/Makefile.am 1.1:
                    941:        * src/lib/sdbm/apr-include/Makefile.in 1.1:
                    942:        * src/lib/sdbm/sdbm.vcproj 1.3:
                    943:        * src/main/Makefile.am 1.39:
                    944:        * src/main/Makefile.am 1.40:
                    945:        * src/main/Makefile.in 1.53:
                    946:        * src/targets/cgi/.cvsignore 1.3:
                    947:        * src/targets/cgi/Makefile.in 1.65:
                    948:        * src/types/Makefile.am 1.32:
                    949:        * src/types/Makefile.am 1.33:
                    950:        * src/types/Makefile.in 1.52:
                    951:                *** empty log message ***
                    952: 
                    953:        * src/include/pa_common.h 1.95:
                    954:        * src/include/pa_exception.h 1.41:
                    955:        * src/include/pa_os.h 1.1:
                    956:        * src/include/pa_xml_exception.h 1.1:
                    957:        * src/lib/sdbm/sdbm.vcproj 1.1:
                    958:        * src/main/main.vcproj 1.4:
                    959:        * src/main/pa_common.C 1.162:
                    960:        * src/main/pa_os.C 1.1:
                    961:        * src/main/pa_xml_exception.C 1.1:
                    962:                locking move to pa_os [along with pa_sleep]
                    963:                apr-impl locking done
                    964: 
                    965:        * src/types/pa_vhashfile.C 1.29:
                    966:                hashfile: clear now works [were trying to do that in foreach, 
                    967:                no errors, but surely wrong]
                    968: 
                    969:        * src/lib/sdbm/apr-include/apr_pools.h 1.5:
                    970:        * src/lib/sdbm/sdbm.c 1.2:
                    971:        * src/lib/sdbm/sdbm.vcproj 1.2:
                    972:                just compiled
                    973: 
                    974:        * tests/todo.txt 1.5:
                    975:                hashfile: done
                    976: 
                    977:        * src/classes/op.C 1.134:
                    978:        * src/main/pa_os.C 1.2:
                    979:                just linked
                    980: 
                    981:        * src/classes/Makefile.am 1.45:
                    982:        * src/types/Makefile.am 1.31:
                    983:                .am sdbm INCLUDES updates
                    984: 
                    985: 2003-11-05  paf
                    986:        * src/lib/sdbm/apr-include/apr.h 1.2:
                    987:        * src/lib/sdbm/apr-include/apr_errno.h 1.2:
                    988:        * src/lib/sdbm/apr-include/apr_file_io.h 1.2:
                    989:        * src/lib/sdbm/apr-include/apr_pools.h 1.2:
                    990:        * src/lib/sdbm/apr-include/apr_strings.h 1.1:
                    991:        * src/lib/sdbm/apr-include/apu.h 1.1:
                    992:                started porting: grabbed some parts of apr headers
                    993: 
                    994:        * src/lib/sdbm/Makefile.am 1.1:
                    995:        * src/lib/sdbm/sdbm.c 1.1:
                    996:        * src/lib/sdbm/sdbm_hash.c 1.1:
                    997:        * src/lib/sdbm/sdbm_lock.c 1.1:
                    998:        * src/lib/sdbm/sdbm_pair.c 1.1:
                    999:        * src/lib/sdbm/sdbm_pair.h 1.1:
                   1000:        * src/lib/sdbm/sdbm_private.h 1.1:
                   1001:        * src/lib/sdbm/sdbm_tune.h 1.1:
                   1002:                original from httpd-2.0.43\srclib\apr-util\dbm\sdbm
                   1003: 
                   1004:        * src/lib/sdbm/apr-include/apr.h 1.1:
                   1005:        * src/lib/sdbm/apr-include/apr.h 1.3:
                   1006:        * src/lib/sdbm/apr-include/apr_errno.h 1.1:
                   1007:        * src/lib/sdbm/apr-include/apr_errno.h 1.3:
                   1008:        * src/lib/sdbm/apr-include/apr_file_io.h 1.1:
                   1009:        * src/lib/sdbm/apr-include/apr_file_io.h 1.3:
                   1010:        * src/lib/sdbm/apr-include/apr_pools.h 1.1:
                   1011:        * src/lib/sdbm/apr-include/apr_pools.h 1.3:
                   1012:        * src/lib/sdbm/apr-include/apr_sdbm.h 1.1:
                   1013:        * src/lib/sdbm/apr-include/apr_sdbm.h 1.2:
                   1014:        * src/lib/sdbm/apr-include/apr_strings.h 1.2:
                   1015:        * src/lib/sdbm/apr-include/apu.h 1.2:
                   1016:                *** empty log message ***
                   1017: 
                   1018:        * src/classes/classes.vcproj [release_3_1_1] 1.2.6.1:
                   1019:        * src/include/pa_config_fixed.h [release_3_1_1] 1.58.6.1:
                   1020:        * src/main/main.vcproj [release_3_1_1] 1.2.6.1:
                   1021:        * src/targets/apache13/ApacheModuleParser3.vcproj [release_3_1_1] 1.2.6.1:
                   1022:        * src/targets/apache13/mod_parser3.c [release_3_1_1] 1.7.2.1:
                   1023:        * src/targets/apache13core/ApacheModuleParser3Core.vcproj [release_3_1_1] 1.2.6.1:
                   1024:        * src/targets/cgi/parser3.vcproj [release_3_1_1] 1.3.2.1:
                   1025:                not has to be in \parser3project dir anymore
                   1026: 
                   1027:        * src/main/helpers/CaseFolding.txt 1.1:
                   1028:                http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
                   1029: 
                   1030:        * src/main/pa_charset.C [release_3_1_1] 1.38.2.1:
                   1031:                bugfix: had broken binary search [copied thoughtlessly from
                   1032:                xalan]
                   1033: 
                   1034: 2003-11-04  paf
                   1035:        * operators.txt 1.124:
                   1036:        * src/classes/table.C 1.187:
                   1037:        * tests/todo.txt 1.2:
                   1038:                ^table::load
                   1039:                        !$.separator[^#09]
                   1040:                        !$.encloser["] <nothing> by default
                   1041: 
                   1042:        * operators.txt 1.125:
                   1043:        * src/classes/table.C 1.188:
                   1044:        * src/main/pa_string.C 1.186:
                   1045:        * tests/todo.txt 1.3:
                   1046:                ^table.save[...
                   1047:                        $.separator[^#09]
                   1048:                        $.encloser["] <nothing> by default
                   1049: 
                   1050:        * operators.txt 1.126:
                   1051:        * src/classes/mail.C 1.91:
                   1052:        * src/types/pa_vmail.C 1.52:
                   1053:        * src/types/pa_vmail.h 1.12:
                   1054:                    !^mail:send[
                   1055:                        $.options[unix: string to append to sendmail command line]
                   1056: 
                   1057:        * src/classes/Makefile.am 1.44:
                   1058:        * src/classes/Makefile.in 1.57:
                   1059:                classes.C to rebuild last
                   1060: 
                   1061:        * src/classes/mail.C 1.92:
                   1062:        * src/classes/table.C 1.189:
                   1063:                compiled on unix
                   1064: 
                   1065:        * operators.txt 1.127:
                   1066:                comment: ^mail:send[$.options[
                   1067: 
                   1068: 2003-11-03  paf
                   1069:        * src/targets/cgi/parser3.C 1.219:
                   1070:                beauty: SIGUSRX removed qs= printing [already included into uri
                   1071:                xxx]
                   1072: 
                   1073:        * operators.txt 1.120:
                   1074:        * src/classes/date.C 1.49:
                   1075:                    !^date::unix-timestamp()
                   1076:                    !^date.unix-timestamp[]
                   1077: 
                   1078:        * operators.txt 1.121:
                   1079:        * src/classes/image.C 1.95:
                   1080:        * tests/todo.txt 1.1:
                   1081:        * www/htdocs/auto.p 1.21:
                   1082:                ^image.gif[filename] for $response:download
                   1083: 
                   1084:        * operators.txt 1.123:
                   1085:        * src/classes/table.C 1.186:
                   1086:        * src/main/pa_common.C 1.161:
                   1087:                ^table::load[; options:
                   1088:                        !$.column-separator[^#09]
                   1089:                        !$.column-encloser["]
                   1090: 
                   1091:        * operators.txt 1.122:
                   1092:        * src/include/pa_config_fixed.h 1.60:
                   1093:        * src/types/pa_vrequest.C 1.30:
                   1094:                $request:document-root
                   1095: 
                   1096:        * src/classes/date.C 1.50:
                   1097:                minor precaution
                   1098: 
                   1099: 2003-10-31  paf
                   1100:        * src/include/pa_config_fixed.h 1.59:
                   1101:        * src/include/pa_version.h [release_3_1_1] 1.10.2.1:
                   1102:                *** empty log message ***
                   1103: 
1.27      paf      1104: 2003-10-30  paf
                   1105:        * src/classes/date.C 1.47:
                   1106:        * src/classes/image.C 1.94:
                   1107:                improvement diagnostics: $now[^date::create[$undefined]] now is error
                   1108: 
                   1109:        * src/targets/apache13core/Makefile.am 1.4:
                   1110:        * src/targets/apache13core/Makefile.in 1.4:
                   1111:                gc include dir added, thanks to Victor Fedoseev for finding
                   1112: 
                   1113:        * src/main/pa_common.C 1.160:
                   1114:                read errors would now be reported 'actually read -1 bytes'
                   1115: 
                   1116:        * operators.txt 1.119:
                   1117:        * src/classes/date.C 1.48:
                   1118:        * src/types/pa_vdate.h 1.27:
                   1119:                merged from 3.0.8: ^date.roll[TZ;GMT] $date.hour
                   1120: 
1.26      paf      1121: 2003-10-24  paf
                   1122:        * Makefile.am 1.36:
                   1123:        * src/classes/Makefile.am 1.43:
                   1124:        * src/lib/cord/Makefile.am 1.3:
                   1125:        * src/lib/md5/Makefile.am 1.3:
                   1126:        * src/lib/pcre/Makefile.am 1.2:
                   1127:        * src/main/Makefile.am 1.37:
                   1128:        * src/targets/apache13/Makefile.am 1.18:
                   1129:        * src/targets/apache13core/Makefile.am 1.3:
                   1130:        * src/targets/cgi/Makefile.am 1.48:
                   1131:        * src/targets/isapi/Makefile.am 1.3:
                   1132:                .dsp/w -> .vcproj/sln
                   1133: 
                   1134:        * Makefile.in 1.50:
                   1135:        * src/classes/Makefile.in 1.56:
                   1136:        * src/include/pa_version.h 1.10:
                   1137:        * src/lib/cord/Makefile.in 1.3:
                   1138:        * src/lib/md5/Makefile.in 1.8:
                   1139:        * src/lib/pcre/Makefile.in 1.10:
                   1140:        * src/main/Makefile.am 1.38:
                   1141:        * src/main/Makefile.in 1.52:
                   1142:        * src/targets/apache13/Makefile.in 1.48:
                   1143:        * src/targets/apache13core/Makefile.in 1.3:
                   1144:        * src/targets/cgi/Makefile.in 1.64:
                   1145:        * src/targets/isapi/Makefile.in 1.13:
                   1146:                *** empty log message ***
                   1147: 
                   1148: 2003-10-22  paf
                   1149:        * src/include/pa_request.h 1.167:
                   1150:                fixed: $h[^hash::create[]] $$h[1]
                   1151: 
                   1152: 2003-10-21  paf
                   1153:        * src/classes/op.C 1.133:
                   1154:        * src/include/pa_request.h 1.166:
                   1155:                fixed: false 'endless recoursion' message with intensive throw-catches
                   1156:                fixed: incorrect name and line (one name upper then needed) in error message about problems inside try block
                   1157: 
                   1158:        * operators.txt 1.118:
                   1159:        * src/include/pa_string.h 1.151:
                   1160:        * src/main/pa_string.C 1.185:
                   1161:                fixed: string.match[g] without <'> option produced columns with
                   1162:                NULL's, which gpf'ed at table.save time
                   1163: 
                   1164: 2003-10-10  paf
                   1165:        * src/include/pa_string.h 1.150:
                   1166:        * src/main/compile.tab.C 1.91:
                   1167:        * www/htdocs/.htaccess 1.20:
                   1168:                CORD_chr does not check offset argument for validity
                   1169:                did that in String::Body::pos myself
                   1170:                http://i2/tasks/edit/?id=4577425257580789777
                   1171: 
                   1172: 2003-10-07  paf
                   1173:        * src/main/compile.tab.C 1.90:
                   1174:        * src/main/compile.y 1.207:
                   1175:                ^if ( better error:
                   1176:                .html(1:4): parse error, expecting `'['' or `'{'' or `'(''  now
                   1177: 
                   1178: 2003-10-03  paf
                   1179:        * parser3.sln 1.5:
                   1180:        * src/include/pa_dictionary.h 1.15:
                   1181:        * src/main/pa_dictionary.C 1.19:
                   1182:        * src/main/pa_string.C 1.184:
                   1183:        * src/targets/cgi/parser3.vcproj 1.3:
                   1184:        * www/htdocs/.htaccess 1.19:
                   1185:                dictionary optimized by precalculating cstr&length
                   1186: 
                   1187: 2003-10-02  paf
                   1188:        * src/classes/op.C 1.132:
                   1189:        * src/include/pa_request.h 1.165:
                   1190:        * src/include/pa_stack.h 1.20:
                   1191:        * src/main/execute.C 1.299:
                   1192:        * src/main/pa_request.C 1.251:
                   1193:        * src/main/pa_sql_driver_manager.C 1.73:
                   1194:        * src/main/pa_stylesheet_manager.C 1.19:
                   1195:        * www/htdocs/.htaccess 1.18:
                   1196:                bugfix: ^throw context were saved/restored incompletely
                   1197:                http://www.parser.ru/forum/?id=21484
                   1198: 
                   1199: 2003-09-30  paf
                   1200:        * src/targets/apache13/mod_parser3.c 1.7:
                   1201:        * src/targets/apache13/pa_httpd.h 1.4:
                   1202:        * src/targets/apache13core/mod_parser3.C 1.5:
                   1203:                content-type now changes
                   1204: 
                   1205:        * src/main/pa_string.C 1.183:
                   1206:                string::replace bug fix [were ignoring occurrances after lang-mismatched
                   1207: 
                   1208: 2003-09-29  paf
                   1209:        * src/include/pa_charset.h 1.25:
                   1210:        * src/main/helpers/simple_folding.pl 1.1:
                   1211:        * src/main/pa_charset.C 1.38:
                   1212:        * src/main/pa_string.C 1.181:
                   1213:        * www/htdocs/auto.p 1.20:
                   1214:                utf-8 upper/lower
                   1215: 
                   1216:        * src/classes/string.C 1.127:
                   1217:                bugfix: s.right(>s.length) returned nothing
                   1218: 
                   1219:        * www/htdocs/base.p 1.7:
                   1220:        * www/htdocs/derived.p 1.25:
                   1221:        * www/htdocs/font.gif 1.2:
                   1222:        * www/htdocs/global.xsl 1.9:
                   1223:        * www/htdocs/index.html 1.213:
                   1224:        * www/htdocs/mailreceive.eml 1.4:
                   1225:        * www/htdocs/mailreceive.html 1.2:
                   1226:        * www/htdocs/operators.p 1.12:
                   1227:        * www/htdocs/parser-status.html 1.3:
                   1228:        * www/htdocs/people.dtd 1.2:
                   1229:        * www/htdocs/some.p 1.3:
                   1230:                removing old tests
                   1231: 
                   1232:        * src/main/pa_common.C 1.159:
                   1233:                bugfix: utf signature were not ignored due to typo error
                   1234:                http://i2/tasks/edit/?id=4573354650786434584
                   1235: 
                   1236:        * src/classes/table.C 1.184:
                   1237:                bugfix: flip: must produce nameless
                   1238:                http://i2/tasks/edit/?id=4573405524674081244
                   1239: 
                   1240:        * src/main/utf8-to-lower.inc 1.1:
                   1241:        * src/main/utf8-to-upper.inc 1.1:
                   1242:                generated by helper
                   1243: 
                   1244:        * src/main/pa_string.C 1.182:
                   1245:                string::serialize bug fix with zero-terminator
                   1246: 
                   1247:        * src/classes/table.C 1.185:
                   1248:                ^nameless_table.save column row now has no \t at the end
                   1249: 
                   1250:        * src/classes/form.C 1.36:
                   1251:                better error message: MAX_POST_SIZE_NAME to error message
                   1252: 
                   1253:        * src/include/pa_request.h 1.164:
                   1254:        * src/main/execute.C 1.298:
                   1255:        * src/main/pa_request.C 1.250:
                   1256:                @postprocess  now takes $response:body/download
                   1257: 
                   1258: 2003-09-26  paf
                   1259:        * src/include/pa_string.h 1.149:
                   1260:        * src/main/pa_common.C 1.157:
                   1261:        * src/main/pa_string.C 1.180:
                   1262:        * www/htdocs/.htaccess 1.17:
                   1263:                String.for_each bug fixed [omited one-char cases]
                   1264: 
                   1265:        * src/main/untaint.C 1.121:
                   1266:                removed needless const
                   1267: 
                   1268:        * src/main/untaint.C 1.122:
                   1269:                removed needless field
                   1270: 
                   1271:        * src/classes/op.C 1.131:
                   1272:        * src/include/pa_string.h 1.148:
                   1273:        * src/main/pa_string.C 1.178:
                   1274:        * www/htdocs/.htaccess 1.15:
                   1275:                string::serialize/deserialize implemented
                   1276:                Language enum assigned meaningful letters [more convinient for debugging. read warning before adding/changing anything]
                   1277: 
                   1278:        * src/include/pa_stack.h 1.19:
                   1279:                bugfix: before collecting garbage, runtime-executor stack were
                   1280:                cleared... BADLY
                   1281: 
                   1282:        * src/main/pa_string.C 1.179:
                   1283:        * www/htdocs/.htaccess 1.16:
                   1284:        * www/htdocs/auto.p 1.19:
                   1285:                ^stirng.replace code used old param-convention on langs.append, fixed that
                   1286:                search fo the like, found none
                   1287: 
                   1288: 2003-09-25  paf
                   1289:        * src/main/compile.tab.C [string_fragments_to_cord] 1.88.2.1:
                   1290:        * src/main/pa_string.C [string_fragments_to_cord] 1.175.2.7:
                   1291:                string: debug: .v() functions aligned to that of eeparser3 look
                   1292: 
                   1293:        * src/include/pa_string.h 1.147:
                   1294:        * src/include/pa_version.h 1.9:
                   1295:        * src/main/pa_string.C 1.177:
                   1296:        * src/main/untaint.C 1.120:
                   1297:                templates and anonymous unions differences on unix
                   1298: 
                   1299:        * parser3.sln 1.4:
                   1300:        * src/classes/file.C 1.112:
                   1301:        * src/classes/image.C 1.93:
                   1302:        * src/classes/mail.C 1.90:
                   1303:        * src/classes/op.C 1.130:
                   1304:        * src/classes/table.C 1.183:
                   1305:        * src/classes/xdoc.C 1.114:
                   1306:        * src/classes/xnode.C 1.59:
                   1307:        * src/include/pa_cache_managers.h 1.11:
                   1308:        * src/include/pa_charset.h 1.24:
                   1309:        * src/include/pa_charsets.h 1.10:
                   1310:        * src/include/pa_common.h 1.94:
                   1311:        * src/include/pa_request.h 1.163:
                   1312:        * src/include/pa_sql_driver_manager.h 1.28:
                   1313:        * src/include/pa_string.h 1.146:
                   1314:        * src/include/pa_stylesheet_manager.h 1.17:
                   1315:        * src/include/pa_table.h 1.53:
                   1316:        * src/lib/cord/cordbscs.c 1.3:
                   1317:        * src/lib/cord/cordprnt.c 1.3:
                   1318:        * src/lib/cord/cordxtra.c 1.4:
                   1319:        * src/lib/cord/include/cord.h 1.3:
                   1320:        * src/main/compile.tab.C 1.89:
                   1321:        * src/main/compile_tools.h 1.69:
                   1322:        * src/main/pa_charset.C 1.37:
                   1323:        * src/main/pa_charsets.C 1.13:
                   1324:        * src/main/pa_common.C 1.156:
                   1325:        * src/main/pa_exec.C 1.52:
                   1326:        * src/main/pa_request.C 1.249:
                   1327:        * src/main/pa_sql_driver_manager.C 1.72:
                   1328:        * src/main/pa_string.C 1.176:
                   1329:        * src/main/pa_stylesheet_manager.C 1.18:
                   1330:        * src/main/untaint.C 1.119:
                   1331:        * src/types/pa_value.h 1.113:
                   1332:        * src/types/pa_vimage.C 1.24:
                   1333:        * src/types/pa_vmail.C 1.51:
                   1334:        * src/types/pa_vmath.C 1.3:
                   1335:        * src/types/pa_vstateless_class.h 1.44:
                   1336:        * src/types/pa_vstatus.C 1.18:
                   1337:        * src/types/pa_vxnode.C 1.33:
                   1338:        * www/htdocs/.htaccess 1.14:
                   1339:                string_fragments_to_cord merged to HEAD
                   1340: 
                   1341:        * src/lib/cord/cordprnt.c [string_fragments_to_cord] 1.2.4.1:
                   1342:                removed warnings
                   1343: 
                   1344: 2003-09-24  paf
                   1345:        * src/classes/file.C [string_fragments_to_cord] 1.111.4.1:
                   1346:        * src/classes/image.C [string_fragments_to_cord] 1.92.2.1:
                   1347:        * src/classes/mail.C [string_fragments_to_cord] 1.89.4.1:
                   1348:        * src/classes/op.C [string_fragments_to_cord] 1.129.4.1:
                   1349:        * src/classes/xdoc.C [string_fragments_to_cord] 1.113.2.1:
                   1350:        * src/classes/xnode.C [string_fragments_to_cord] 1.58.2.1:
                   1351:        * src/include/pa_cache_managers.h [string_fragments_to_cord] 1.10.4.1:
                   1352:        * src/include/pa_charset.h [string_fragments_to_cord] 1.23.4.1:
                   1353:        * src/include/pa_charsets.h [string_fragments_to_cord] 1.9.4.1:
                   1354:        * src/include/pa_common.h [string_fragments_to_cord] 1.93.4.1:
                   1355:        * src/include/pa_request.h [string_fragments_to_cord] 1.162.4.1:
                   1356:        * src/include/pa_sql_driver_manager.h [string_fragments_to_cord] 1.27.4.1:
                   1357:        * src/include/pa_string.h [string_fragments_to_cord] 1.145.4.10:
                   1358:        * src/include/pa_stylesheet_manager.h [string_fragments_to_cord] 1.16.4.1:
                   1359:        * src/include/pa_table.h [string_fragments_to_cord] 1.52.4.1:
                   1360:        * src/main/compile_tools.h [string_fragments_to_cord] 1.68.4.1:
                   1361:        * src/main/pa_charset.C [string_fragments_to_cord] 1.36.2.1:
                   1362:        * src/main/pa_charsets.C [string_fragments_to_cord] 1.12.4.1:
                   1363:        * src/main/pa_common.C [string_fragments_to_cord] 1.155.2.1:
                   1364:        * src/main/pa_exec.C [string_fragments_to_cord] 1.51.4.1:
                   1365:        * src/main/pa_request.C [string_fragments_to_cord] 1.248.4.1:
                   1366:        * src/main/pa_sql_driver_manager.C [string_fragments_to_cord] 1.71.4.1:
                   1367:        * src/main/pa_string.C [string_fragments_to_cord] 1.175.2.6:
                   1368:        * src/main/pa_stylesheet_manager.C [string_fragments_to_cord] 1.17.4.1:
                   1369:        * src/main/untaint.C [string_fragments_to_cord] 1.118.2.6:
                   1370:        * src/types/pa_value.h [string_fragments_to_cord] 1.112.2.1:
                   1371:        * src/types/pa_vimage.C [string_fragments_to_cord] 1.23.4.1:
                   1372:        * src/types/pa_vmail.C [string_fragments_to_cord] 1.50.2.1:
                   1373:        * src/types/pa_vmath.C [string_fragments_to_cord] 1.2.4.1:
                   1374:        * src/types/pa_vstateless_class.h [string_fragments_to_cord] 1.43.4.1:
                   1375:        * src/types/pa_vstatus.C [string_fragments_to_cord] 1.17.4.1:
                   1376:        * src/types/pa_vxnode.C [string_fragments_to_cord] 1.32.2.1:
                   1377:                v() functions of String::Body, String::Languages and String itself
                   1378:                StringBody->String::Body
                   1379: 
                   1380:        * src/include/pa_string.h [string_fragments_to_cord] 1.145.4.8:
                   1381:        * src/lib/cord/cordbscs.c [string_fragments_to_cord] 1.2.4.4:
                   1382:        * src/lib/cord/include/cord.h [string_fragments_to_cord] 1.2.4.4:
                   1383:                langs: speed up by joining adjucent blocks of same char [
                   1384:                CORD_append_block]
                   1385: 
                   1386:        * src/include/pa_string.h [string_fragments_to_cord] 1.145.4.9:
                   1387:        * src/lib/cord/cordbscs.c [string_fragments_to_cord] 1.2.4.5:
                   1388:        * src/lib/cord/include/cord.h [string_fragments_to_cord] 1.2.4.5:
                   1389:                CORD_append_block showed no efficiency = never optimized anything.
                   1390:                todo: somehow speed up harder cases: concatenationA+concatenationB when last block of A and first of B contain same letters
                   1391: 
                   1392:        * src/classes/table.C [string_fragments_to_cord] 1.182.4.2:
                   1393:        * src/include/pa_string.h [string_fragments_to_cord] 1.145.4.5:
                   1394:        * src/lib/cord/include/cord.h [string_fragments_to_cord] 1.2.4.2:
                   1395:        * src/main/pa_string.C [string_fragments_to_cord] 1.175.2.3:
                   1396:                aval/ works!
                   1397: 
                   1398:        * src/include/pa_string.h [string_fragments_to_cord] 1.145.4.6:
                   1399:        * src/main/pa_string.C [string_fragments_to_cord] 1.175.2.4:
                   1400:                aval is not actually working yet :(
                   1401:                but more working &understood :)
                   1402: 
                   1403:        * src/include/pa_string.h [string_fragments_to_cord] 1.145.4.7:
                   1404:        * src/lib/cord/cordbscs.c [string_fragments_to_cord] 1.2.4.3:
                   1405:        * src/lib/cord/include/cord.h [string_fragments_to_cord] 1.2.4.3:
                   1406:        * src/main/pa_string.C [string_fragments_to_cord] 1.175.2.5:
                   1407:                aval/ works!
                   1408:                todo: save space by extending blocks when appending block with c == lastblock.c
                   1409: 
                   1410: 2003-09-23  paf
                   1411:        * src/include/pa_string.h [string_fragments_to_cord] 1.145.4.2:
                   1412:        * src/main/untaint.C [string_fragments_to_cord] 1.118.2.2:
                   1413:                just compiled
                   1414:                todo: serialize&deserialize
                   1415: 
                   1416:        * src/main/untaint.C [string_fragments_to_cord] 1.118.2.4:
                   1417:                something even more works :)
                   1418: 
                   1419:        * src/classes/table.C [string_fragments_to_cord] 1.182.4.1:
                   1420:        * src/include/pa_string.h [string_fragments_to_cord] 1.145.4.1:
                   1421:        * src/lib/cord/cordbscs.c [string_fragments_to_cord] 1.2.4.1:
                   1422:        * src/lib/cord/cordxtra.c [string_fragments_to_cord] 1.3.2.1:
                   1423:        * src/lib/cord/include/cord.h [string_fragments_to_cord] 1.2.4.1:
                   1424:        * src/main/pa_string.C [string_fragments_to_cord] 1.175.2.1:
                   1425:        * src/main/untaint.C [string_fragments_to_cord] 1.118.2.1:
                   1426:                main idea implemented, details left
                   1427: 
                   1428:        * src/include/pa_string.h [string_fragments_to_cord] 1.145.4.3:
                   1429:        * src/lib/cord/cordbscs.c [string_fragments_to_cord] 1.2.4.2:
                   1430:        * src/lib/cord/cordxtra.c [string_fragments_to_cord] 1.3.2.2:
                   1431:                something already works :)
                   1432: 
                   1433:        * src/include/pa_string.h [string_fragments_to_cord] 1.145.4.4:
                   1434:        * src/main/pa_string.C [string_fragments_to_cord] 1.175.2.2:
                   1435:        * src/main/untaint.C [string_fragments_to_cord] 1.118.2.3:
                   1436:                something more works :)
                   1437: 
                   1438:        * src/main/untaint.C [string_fragments_to_cord] 1.118.2.5:
                   1439:                $a[ok!]
                   1440:                $a works!
                   1441: 
                   1442: 2003-09-22  paf
                   1443:        * src/classes/xdoc.C 1.112:
                   1444:        * src/classes/xnode.C 1.57:
                   1445:                new DOM2 methods from Alexandr Egorov <egr> (all?)
                   1446:                xdoc:
                   1447:                createAttributeNS
                   1448:                createElementNS
                   1449:                xnode:
                   1450:                getAttributeNS
                   1451:                setAttributeNS
                   1452:                removeAttributeNS
                   1453:                getAttributeNodeNS
                   1454:                setAttributeNodeNS
                   1455:                hasAttribute
                   1456:                hasAttributeNS
                   1457: 
                   1458:        * src/classes/memory.C 1.3:
                   1459:        * src/include/pa_memory.h 1.5:
                   1460:                #ifdef GC_DEBUG
                   1461: 
                   1462:        * src/include/pa_memory.h 1.4:
                   1463:        * src/main/pa_globals.C 1.159:
                   1464:                when xml memory allocator returns 0, just die.
                   1465:                http://i2/tasks/edit/?id=4570798492410259445
                   1466: 
                   1467:        * src/lib/cord/cordxtra.c 1.3:
                   1468:                CORD_pos bugfix [failed to find 8bit chars due to bitwise
                   1469:                operation signed-char error]
                   1470: 
                   1471:        * src/classes/xdoc.C 1.113:
                   1472:        * src/classes/xnode.C 1.58:
                   1473:                copy/paste comment bugfix
                   1474: 
                   1475: 2003-09-19  paf
                   1476:        * src/targets/apache13/mod_parser3.c 1.6:
                   1477:                now compiles on MSVC7
                   1478: 
                   1479:        * operators.txt 1.117:
                   1480:        * src/main/pa_common.C 1.155:
                   1481:                merged
                   1482:                $f[^file::load[binary;http://...]]
                   1483:                $f.tables
                   1484: 
                   1485:        * src/types/pa_wcontext.C 1.26:
                   1486:                output message: more practical suggestion
                   1487: 
                   1488: 2003-09-02  paf
                   1489:        * src/targets/apache13/mod_parser3.c 1.5:
                   1490:                çàáûòîå èçìåíåíèå
                   1491: 
                   1492:        * src/types/pa_vdate.h [release_3_0_8] 1.24.6.2:
                   1493:                forgot initializer
                   1494: 
                   1495:        * src/main/pa_common.C [release_3_0_8] 1.153.2.2:
                   1496:                got rid of 'stdout' symbol reference on unix (users reported
                   1497:                problems with some old libc)
                   1498: 
                   1499:        * operators.txt [release_3_0_8] 1.115.2.1:
                   1500:                *** empty log message ***
                   1501: 
                   1502:        * src/main/pa_common.C [release_3_0_8] 1.153.2.3:
                   1503:                printf is buffered, write(1 is not. can't flush stdout without
                   1504:                referencing 'stdout' symbol. to hell with non-ansi libraries
                   1505:                without 'stdout' symbol
                   1506: 
                   1507: 2003-09-01  paf
                   1508:        * src/targets/apache13/Makefile.am [release_3_1_0] 1.16.2.1:
                   1509:        * src/targets/apache13/Makefile.in [release_3_1_0] 1.46.2.1:
                   1510:        * src/targets/apache13/mod_parser3.C [release_3_1_0] 1.29.2.1:
                   1511:        * src/targets/apache13/mod_parser3.c [release_3_1_0] 1.3.2.1:
                   1512:                renamed to .c [lowercase] to correspond to runconfigure.
                   1513:                added files to fix 'make dist'
                   1514: 
                   1515:        * src/targets/apache13/Makefile.am 1.17:
                   1516:        * src/targets/apache13/Makefile.in 1.47:
                   1517:        * src/targets/apache13/mod_parser3.c 1.4:
                   1518:                merged with 3.1.0:
                   1519:                renamed to .c [lowercase] to correspond to runconfigure.
                   1520:                added files to fix 'make dist'
                   1521: 
                   1522:        * src/classes/date.C [release_3_0_8] 1.45.2.1:
                   1523:        * src/include/pa_common.h [release_3_0_8] 1.92.2.1:
                   1524:        * src/main/compile.tab.C [release_3_0_8] 1.83.2.1:
                   1525:        * src/main/pa_common.C [release_3_0_8] 1.153.2.1:
                   1526:        * src/types/pa_vdate.h [release_3_0_8] 1.24.6.1:
                   1527:                $date.TZ
                   1528:                ^date.roll[TZ;new zone]
                   1529: 
                   1530:        * src/classes/image.C 1.92:
                   1531:                memory handling bugs [unpatched 'new' calls]
                   1532: 
                   1533: 2003-08-19  paf
                   1534:        * src/types/pa_vmail.C 1.48:
                   1535:        * src/types/pa_vmail.h 1.11:
                   1536:                parses headers, still problems with body
                   1537: 
                   1538:        * src/types/pa_vmail.C 1.47:
                   1539:                mail_receive just compiled
                   1540: 
                   1541:        * src/types/pa_vmail.C 1.50:
                   1542:                turned  off recoding in gmime (were still recoding headers)
                   1543: 
                   1544:        * src/include/pa_memory.h 1.3:
                   1545:        * src/types/pa_value.h 1.111:
                   1546:                -= few warnings
                   1547: 
                   1548:        * src/targets/apache13/mod_parser3.C 1.31:
                   1549:        * src/targets/apache13/mod_parser3.c 1.2:
                   1550:                .c
                   1551: 
                   1552:        * src/types/pa_vmail.C 1.49:
                   1553:                works as before, same charset problems:
                   1554:                gmime recodes to UTF-8 only headers, not body. so not recoding anything for now
                   1555: 
                   1556:        * src/targets/apache13/mod_parser3.C 1.30:
                   1557:        * src/targets/apache13/pa_httpd.h 1.3:
                   1558:        * src/targets/apache13core/mod_parser3.C 1.3:
                   1559:                apache module compiled on MSVC7
                   1560: 
                   1561:        * src/types/pa_value.C 1.11:
                   1562:        * src/types/pa_value.h 1.112:
                   1563:        * src/types/pa_vdate.h 1.26:
                   1564:        * src/types/pa_vrequest.C 1.29:
                   1565:        * src/types/pa_vstring.h 1.56:
                   1566:        * src/types/pa_vxdoc.C 1.25:
                   1567:        * src/types/pa_vxnode.C 1.32:
                   1568:                bark intefrace obsoleted, simplified a little
                   1569: 
                   1570:        * src/types/pa_vhash.C 1.3:
                   1571:        * src/types/pa_vhash.h 1.47:
                   1572:                _default+foreach bug refix [lost fix from 3.0.8]
                   1573: 
                   1574:        * src/types/pa_vcookie.C 1.57:
                   1575:                in VC7
                   1576:                if(type var=xxx){
                   1577:                }else{
                   1578:                  now visible here
                   1579:                }
                   1580:                
                   1581:                bug fix
                   1582: 
                   1583:        * src/main/compile.tab.C 1.87:
                   1584:                initialized couple of variables about which user reported runtime problems when parser were compiled with VC7, warning level4.
                   1585:                study shows that later in bison they've fixed that. would migrate to latest bison someday
                   1586: 
                   1587: 2003-08-18  paf
                   1588:        * src/classes/classes.vcproj 1.2:
                   1589:        * src/include/pa_config_fixed.h 1.58:
                   1590:        * src/main/main.vcproj 1.2:
                   1591:        * src/types/types.vcproj 1.2:
                   1592:                win32: continued process detaching from \parser3project directory
                   1593: 
                   1594:        * ~sak5c961f3101c36563.tmp 1.1:
                   1595:                Temporary file created by Visual Studio .NET to detect Jalindi
                   1596:                Igloo capabilities.
                   1597: 
                   1598:        * gnu.vcproj 1.1:
                   1599:        * parser3.sln 1.1:
                   1600:        * src/classes/classes.vcproj 1.1:
                   1601:        * src/lib/cord/cord.vcproj 1.1:
                   1602:        * src/lib/ltdl/libltdl.vcproj 1.1:
                   1603:        * src/lib/md5/md5.vcproj 1.1:
                   1604:        * src/lib/pcre/pcre.vcproj 1.1:
                   1605:        * src/lib/pcre/pcre_dftables.vcproj 1.1:
                   1606:        * src/lib/pcre/pcre_parser_ctype.vcproj 1.1:
                   1607:        * src/main/main.vcproj 1.1:
                   1608:        * src/targets/apache13/ApacheModuleParser3.vcproj 1.1:
                   1609:        * src/targets/apache13core/ApacheModuleParser3Core.vcproj 1.1:
                   1610:        * src/targets/cgi/parser3.vcproj 1.1:
                   1611:        * src/targets/isapi/parser3isapi.vcproj 1.1:
                   1612:        * src/types/types.vcproj 1.1:
                   1613:                new VS project files
                   1614: 
                   1615:        * configure 1.68:
                   1616:        * configure.in 1.64:
                   1617:        * src/classes/Makefile.am 1.42:
                   1618:        * src/classes/Makefile.in 1.55:
                   1619:        * src/classes/classes.awk 1.8:
                   1620:        * src/doc/footer.htm 1.3:
                   1621:        * src/include/pa_config_fixed.h 1.57:
                   1622:        * src/include/pa_version.h 1.8:
                   1623:        * src/lib/Makefile.am 1.5:
                   1624:        * src/lib/Makefile.in 1.10:
                   1625:        * src/lib/patches/Makefile.in 1.12:
                   1626:        * src/main/compile.tab.C 1.86:
                   1627:        * src/main/pa_charset.C 1.36:
                   1628:        * src/main/pa_string.C 1.175:
                   1629:        * src/main/untaint.C 1.118:
                   1630:        * src/types/pa_vmail.C 1.46:
                   1631:        * www/htdocs/.htaccess [release_3_1_0] 1.13.2.1:
                   1632:        * www/htdocs/auto.p [release_3_1_0] 1.18.2.1:
                   1633:                merged 3.1.0 latest changes
                   1634: 
                   1635:        * gnu.dsp 1.5:
                   1636:        * gnu.vcproj.vspscc 1.1:
                   1637:        * parser3.dsw 1.9:
                   1638:        * parser3.vssscc 1.1:
                   1639:        * src/classes/classes.dsp 1.31:
                   1640:        * src/classes/classes.vcproj.vspscc 1.1:
                   1641:        * src/lib/cord/cord.dsp 1.3:
                   1642:        * src/lib/cord/cord.vcproj.vspscc 1.1:
                   1643:        * src/lib/ltdl/libltdl.dsp 1.7:
                   1644:        * src/lib/ltdl/libltdl.vcproj.vspscc 1.1:
                   1645:        * src/lib/md5/md5.dsp 1.5:
                   1646:        * src/lib/md5/md5.vcproj.vspscc 1.1:
                   1647:        * src/lib/pcre/pcre.dsp 1.4:
                   1648:        * src/lib/pcre/pcre.vcproj.vspscc 1.1:
                   1649:        * src/lib/pcre/pcre_dftables.dsp 1.2:
                   1650:        * src/lib/pcre/pcre_dftables.vcproj.vspscc 1.1:
                   1651:        * src/lib/pcre/pcre_parser_ctype.dsp 1.3:
                   1652:        * src/lib/pcre/pcre_parser_ctype.vcproj.vspscc 1.1:
                   1653:        * src/main/main.dsp 1.167:
                   1654:        * src/main/main.vcproj.vspscc 1.1:
                   1655:        * src/targets/apache13/ApacheModuleParser3.dsp 1.18:
                   1656:        * src/targets/apache13/ApacheModuleParser3.vcproj.vspscc 1.1:
                   1657:        * src/targets/apache13core/ApacheModuleParser3Core.dsp 1.4:
                   1658:        * src/targets/apache13core/ApacheModuleParser3Core.vcproj.vspscc 1.1:
                   1659:        * src/targets/cgi/parser3.dsp 1.66:
                   1660:        * src/targets/cgi/parser3.vcproj 1.2:
                   1661:        * src/targets/isapi/parser3isapi.dsp 1.44:
                   1662:        * src/targets/isapi/parser3isapi.vcproj.vspscc 1.1:
                   1663:        * src/types/types.dsp 1.42:
                   1664:        * src/types/types.vcproj.vspscc 1.1:
                   1665:                moved to MSVC 7
                   1666: 
                   1667: 2003-08-15  paf
                   1668:        * src/main/untaint.C [release_3_0_8] 1.116.2.1:
                   1669:                email addresses in forms:
                   1670:                  "non-ascii" <yyy>
                   1671:                  non-ascii <yyy>
                   1672:                now encoded correctly
                   1673: 
                   1674:        * src/main/untaint.C [release_3_1_0] 1.117.2.1:
                   1675:                email addresses in forms:
                   1676:                  "non-ascii" <yyy>
                   1677:                  non-ascii <yyy>
                   1678:                now encoded correctly [kinda merge from 3.0.8]
                   1679: 
                   1680: 2003-07-29  paf
                   1681:        * src/classes/Makefile.am [release_3_1_0] 1.41.2.2:
                   1682:        * src/classes/Makefile.in [release_3_1_0] 1.54.2.2:
                   1683:        * src/classes/classes.awk [release_3_1_0] 1.7.2.1:
                   1684:                classes.awk added to make dist
                   1685: 
                   1686:        * src/types/pa_vmail.C [release_3_1_0] 1.45.2.1:
                   1687:                just started --with-mail-receive
                   1688: 
                   1689: 2003-07-28  paf
                   1690:        * src/classes/Makefile.am [release_3_1_0] 1.41.2.1:
                   1691:        * src/classes/Makefile.in [release_3_1_0] 1.54.2.1:
                   1692:        * src/lib/Makefile.am [release_3_1_0] 1.4.2.1:
                   1693:        * src/lib/Makefile.in [release_3_1_0] 1.9.2.1:
                   1694:                removed circular dependence in src/classes, src/lib/gc now in dist
                   1695: 
                   1696:        * src/main/pa_string.C [release_3_1_0] 1.174.2.1:
                   1697:                ^cache bug fix [were not working at all]
                   1698: 
                   1699: 2003-07-25  paf
                   1700:        * src/doc/footer.htm [release_3_1_0] 1.2.28.1:
                   1701:                year
                   1702: 
1.24      paf      1703: 2003-07-24  paf
                   1704:        * INSTALL 1.33:
                   1705:        * Makefile.am 1.35:
                   1706:        * Makefile.in 1.49:
                   1707:        * acsite.m4 1.2:
                   1708:        * bin/Makefile.in 1.10:
                   1709:        * configure 1.67:
                   1710:        * configure.in 1.63:
                   1711:        * etc/Makefile.in 1.15:
                   1712:        * etc/parser3.charsets/Makefile.in 1.18:
                   1713:        * etc/parser3.charsets/koi8-r.cfg 1.4:
                   1714:        * etc/parser3.charsets/windows-1251.cfg 1.8:
                   1715:        * operators.txt 1.116:
                   1716:        * parser3.dsw 1.8:
                   1717:        * src/Makefile.in 1.56:
                   1718:        * src/classes/Makefile.am 1.41:
                   1719:        * src/classes/Makefile.in 1.54:
                   1720:        * src/classes/classes.C 1.19:
                   1721:        * src/classes/classes.awk 1.7:
                   1722:        * src/classes/classes.dsp 1.29:
                   1723:        * src/classes/classes.h 1.24:
                   1724:        * src/classes/date.C 1.46:
                   1725:        * src/classes/double.C 1.54:
                   1726:        * src/classes/file.C 1.111:
                   1727:        * src/classes/form.C 1.35:
                   1728:        * src/classes/hash.C 1.57:
                   1729:        * src/classes/image.C 1.91:
                   1730:        * src/classes/int.C 1.50:
                   1731:        * src/classes/mail.C 1.89:
                   1732:        * src/classes/math.C 1.34:
                   1733:        * src/classes/memory.C 1.2:
                   1734:        * src/classes/op.C 1.129:
                   1735:        * src/classes/response.C 1.24:
                   1736:        * src/classes/string.C 1.126:
                   1737:        * src/classes/table.C 1.182:
                   1738:        * src/classes/void.C 1.29:
                   1739:        * src/classes/xdoc.C 1.111:
                   1740:        * src/classes/xnode.C 1.56:
                   1741:        * src/classes/xnode.h 1.19:
                   1742:        * src/doc/exception.dox 1.2:
                   1743:        * src/doc/index.dox 1.5:
                   1744:        * src/doc/memory.dox 1.2:
                   1745:        * src/doc/string.dox 1.5:
                   1746:        * src/include/Makefile.am 1.4:
                   1747:        * src/include/Makefile.in 1.12:
                   1748:        * src/include/pa_array.h 1.59:
                   1749:        * src/include/pa_cache_managers.h 1.10:
                   1750:        * src/include/pa_charset.h 1.23:
                   1751:        * src/include/pa_charsets.h 1.9:
                   1752:        * src/include/pa_common.h 1.93:
                   1753:        * src/include/pa_config_auto.h.in 1.38:
                   1754:        * src/include/pa_config_fixed.h 1.56:
                   1755:        * src/include/pa_config_includes.h 1.25:
                   1756:        * src/include/pa_dictionary.h 1.14:
                   1757:        * src/include/pa_dir.h 1.14:
                   1758:        * src/include/pa_exception.h 1.39:
                   1759:        * src/include/pa_exec.h 1.13:
                   1760:        * src/include/pa_globals.h 1.104:
                   1761:        * src/include/pa_hash.h 1.59:
                   1762:        * src/include/pa_memory.h 1.2:
                   1763:        * src/include/pa_opcode.h 1.25:
                   1764:        * src/include/pa_operation.h 1.2:
                   1765:        * src/include/pa_pool.h 1.87:
                   1766:        * src/include/pa_pragma_pack_begin.h 1.7:
                   1767:        * src/include/pa_pragma_pack_end.h 1.7:
                   1768:        * src/include/pa_request.h 1.162:
                   1769:        * src/include/pa_request_charsets.h 1.2:
                   1770:        * src/include/pa_request_info.h 1.2:
                   1771:        * src/include/pa_sapi.h 1.23:
                   1772:        * src/include/pa_socks.h 1.12:
                   1773:        * src/include/pa_sql_connection.h 1.31:
                   1774:        * src/include/pa_sql_driver_manager.h 1.27:
                   1775:        * src/include/pa_stack.h 1.18:
                   1776:        * src/include/pa_string.h 1.145:
                   1777:        * src/include/pa_stylesheet_connection.h 1.33:
                   1778:        * src/include/pa_stylesheet_manager.h 1.16:
                   1779:        * src/include/pa_table.h 1.52:
                   1780:        * src/include/pa_threads.h 1.27:
                   1781:        * src/include/pa_types.h 1.45:
                   1782:        * src/include/pa_uue.h 1.5:
                   1783:        * src/lib/Makefile.am 1.4:
                   1784:        * src/lib/Makefile.in 1.9:
                   1785:        * src/lib/cord/Makefile.am 1.2:
                   1786:        * src/lib/cord/Makefile.in 1.2:
                   1787:        * src/lib/cord/cord.dsp 1.2:
                   1788:        * src/lib/cord/cordbscs.c 1.2:
                   1789:        * src/lib/cord/cordprnt.c 1.2:
                   1790:        * src/lib/cord/cordxtra.c 1.2:
                   1791:        * src/lib/cord/include/Makefile.am 1.2:
                   1792:        * src/lib/cord/include/Makefile.in 1.2:
                   1793:        * src/lib/cord/include/cord.h 1.2:
                   1794:        * src/lib/cord/include/ec.h 1.2:
                   1795:        * src/lib/cord/include/private/Makefile.am 1.2:
                   1796:        * src/lib/cord/include/private/Makefile.in 1.2:
                   1797:        * src/lib/cord/include/private/cord_pos.h 1.2:
                   1798:        * src/lib/cord/source.url 1.2:
                   1799:        * src/lib/gc/Makefile.am 1.2:
                   1800:        * src/lib/gc/Makefile.in 1.2:
1.25      paf      1801:        * src/lib/gc/include/Makefile.am 1.2:
                   1802:        * src/lib/gc/include/Makefile.in 1.2:
                   1803:        * src/lib/gc/include/gc.h 1.2:
1.24      paf      1804:        * src/lib/ltdl/Makefile.in 1.5:
                   1805:        * src/lib/ltdl/libltdl.dsp 1.6:
                   1806:        * src/lib/md5/Makefile.in 1.7:
                   1807:        * src/lib/md5/pa_md5.h 1.8:
                   1808:        * src/lib/md5/pa_md5c.c 1.10:
                   1809:        * src/lib/patches/Makefile.am 1.4:
                   1810:        * src/lib/patches/Makefile.in 1.11:
                   1811:        * src/lib/patches/gc.patch 1.2:
                   1812:        * src/lib/patches/gdome2.patch 1.2:
                   1813:        * src/lib/patches/libxml2.patch 1.2:
                   1814:        * src/lib/patches/libxslt.patch 1.2:
                   1815:        * src/lib/pcre/Makefile.in 1.9:
                   1816:        * src/lib/pcre/pcre.h 1.2:
                   1817:        * src/lib/pcre/pcre_parser_ctype.c 1.4:
                   1818:        * src/main/Makefile.am 1.36:
                   1819:        * src/main/Makefile.in 1.51:
                   1820:        * src/main/compile.C 1.70:
                   1821:        * src/main/compile.tab.C 1.84:
                   1822:        * src/main/compile.tab.C 1.85:
                   1823:        * src/main/compile.y 1.206:
                   1824:        * src/main/compile_tools.C 1.55:
                   1825:        * src/main/compile_tools.h 1.68:
                   1826:        * src/main/execute.C 1.297:
                   1827:        * src/main/main.dsp 1.165:
                   1828:        * src/main/pa_array.C 1.57:
                   1829:        * src/main/pa_cache_managers.C 1.8:
                   1830:        * src/main/pa_charset.C 1.35:
                   1831:        * src/main/pa_charsets.C 1.12:
                   1832:        * src/main/pa_common.C 1.154:
                   1833:        * src/main/pa_dictionary.C 1.18:
                   1834:        * src/main/pa_dir.C 1.15:
                   1835:        * src/main/pa_exception.C 1.44:
                   1836:        * src/main/pa_exec.C 1.51:
                   1837:        * src/main/pa_globals.C 1.157:
                   1838:        * src/main/pa_hash.C 1.54:
                   1839:        * src/main/pa_memory.C 1.2:
                   1840:        * src/main/pa_pool.C 1.60:
                   1841:        * src/main/pa_request.C 1.248:
                   1842:        * src/main/pa_socks.C 1.19:
                   1843:        * src/main/pa_sql_driver_manager.C 1.71:
                   1844:        * src/main/pa_string.C 1.174:
                   1845:        * src/main/pa_stylesheet_manager.C 1.17:
                   1846:        * src/main/pa_table.C 1.56:
                   1847:        * src/main/pa_uue.C 1.5:
                   1848:        * src/main/untaint.C 1.117:
                   1849:        * src/sql/Makefile.in 1.12:
                   1850:        * src/sql/pa_sql_driver.h 1.35:
                   1851:        * src/targets/Makefile.am 1.10:
                   1852:        * src/targets/Makefile.in 1.43:
                   1853:        * src/targets/apache13/ApacheModuleParser3.dsp 1.17:
                   1854:        * src/targets/apache13/Makefile.am 1.16:
                   1855:        * src/targets/apache13/Makefile.in 1.46:
                   1856:        * src/targets/apache13/mod_parser3.C 1.29:
                   1857:        * src/targets/apache13/p3runConfigure.in 1.13:
                   1858:        * src/targets/apache13/pa_httpd.h 1.2:
                   1859:        * src/targets/apache13/pa_md5c.c 1.6:
                   1860:        * src/targets/apache13/pa_pool.C 1.9:
                   1861:        * src/targets/apache13/pa_threads.C 1.12:
                   1862:        * src/targets/apache13core/ApacheModuleParser3Core.dsp 1.2:
                   1863:        * src/targets/apache13core/Makefile.am 1.2:
                   1864:        * src/targets/apache13core/Makefile.in 1.2:
                   1865:        * src/targets/apache13core/mod_parser3.C 1.2:
                   1866:        * src/targets/apache13core/pa_threads.C 1.2:
                   1867:        * src/targets/cgi/Makefile.am 1.47:
                   1868:        * src/targets/cgi/Makefile.in 1.63:
                   1869:        * src/targets/cgi/getopt.c 1.3:
                   1870:        * src/targets/cgi/getopt.h 1.3:
                   1871:        * src/targets/cgi/pa_pool.C 1.42:
                   1872:        * src/targets/cgi/pa_threads.C 1.13:
                   1873:        * src/targets/cgi/parser3.C 1.218:
                   1874:        * src/targets/cgi/parser3.dsp 1.64:
                   1875:        * src/targets/cgi/pool_storage.h 1.14:
                   1876:        * src/targets/cgi/pp3.cmd 1.2:
                   1877:        * src/targets/isapi/Makefile.am 1.2:
                   1878:        * src/targets/isapi/Makefile.in 1.12:
                   1879:        * src/targets/isapi/pa_pool.C 1.17:
                   1880:        * src/targets/isapi/pa_threads.C 1.14:
                   1881:        * src/targets/isapi/parser3isapi.C 1.83:
                   1882:        * src/targets/isapi/parser3isapi.dsp 1.42:
                   1883:        * src/targets/isapi/pool_storage.h 1.20:
                   1884:        * src/types/Makefile.am 1.29:
                   1885:        * src/types/Makefile.in 1.51:
                   1886:        * src/types/pa_junction.h 1.2:
                   1887:        * src/types/pa_method.h 1.2:
                   1888:        * src/types/pa_value.C 1.10:
                   1889:        * src/types/pa_value.h 1.110:
                   1890:        * src/types/pa_vbool.h 1.22:
                   1891:        * src/types/pa_vclass.C 1.17:
                   1892:        * src/types/pa_vclass.h 1.40:
                   1893:        * src/types/pa_vcode_frame.h 1.25:
                   1894:        * src/types/pa_vcookie.C 1.56:
                   1895:        * src/types/pa_vcookie.h 1.24:
                   1896:        * src/types/pa_vdate.h 1.25:
                   1897:        * src/types/pa_vdouble.h 1.43:
                   1898:        * src/types/pa_venv.h 1.29:
                   1899:        * src/types/pa_vfile.C 1.37:
                   1900:        * src/types/pa_vfile.h 1.53:
                   1901:        * src/types/pa_vform.C 1.75:
                   1902:        * src/types/pa_vform.h 1.46:
                   1903:        * src/types/pa_vhash.C 1.2:
                   1904:        * src/types/pa_vhash.h 1.46:
                   1905:        * src/types/pa_vimage.C 1.23:
                   1906:        * src/types/pa_vimage.h 1.35:
                   1907:        * src/types/pa_vint.h 1.39:
                   1908:        * src/types/pa_vjunction.h 1.20:
                   1909:        * src/types/pa_vmail.C 1.45:
                   1910:        * src/types/pa_vmail.h 1.10:
                   1911:        * src/types/pa_vmath.C 1.2:
                   1912:        * src/types/pa_vmath.h 1.15:
                   1913:        * src/types/pa_vmemory.h 1.2:
                   1914:        * src/types/pa_vmethod_frame.C 1.2:
                   1915:        * src/types/pa_vmethod_frame.h 1.46:
                   1916:        * src/types/pa_vobject.C 1.13:
                   1917:        * src/types/pa_vobject.h 1.39:
                   1918:        * src/types/pa_vrequest.C 1.28:
                   1919:        * src/types/pa_vrequest.h 1.26:
                   1920:        * src/types/pa_vresponse.C 1.18:
                   1921:        * src/types/pa_vresponse.h 1.33:
                   1922:        * src/types/pa_vstateless_class.C 1.20:
                   1923:        * src/types/pa_vstateless_class.h 1.43:
                   1924:        * src/types/pa_vstateless_object.h 1.29:
                   1925:        * src/types/pa_vstatus.C 1.17:
                   1926:        * src/types/pa_vstatus.h 1.16:
                   1927:        * src/types/pa_vstring.C 1.23:
                   1928:        * src/types/pa_vstring.h 1.55:
                   1929:        * src/types/pa_vtable.C 1.22:
                   1930:        * src/types/pa_vtable.h 1.49:
                   1931:        * src/types/pa_vvoid.h 1.18:
                   1932:        * src/types/pa_vxdoc.C 1.24:
                   1933:        * src/types/pa_vxdoc.h 1.32:
                   1934:        * src/types/pa_vxnode.C 1.31:
                   1935:        * src/types/pa_vxnode.h 1.23:
                   1936:        * src/types/pa_wcontext.C 1.25:
                   1937:        * src/types/pa_wcontext.h 1.43:
                   1938:        * src/types/pa_wwrapper.h 1.29:
                   1939:        * src/types/types.dsp 1.40:
                   1940:        * www/htdocs/.htaccess 1.13:
                   1941:        * www/htdocs/auto.p 1.18:
                   1942:        * www/htdocs/index.html 1.212:
                   1943:                moved tempate_gc to HEAD
                   1944: 
                   1945:        * parser3.dsw [template_gc] 1.7.6.1.2.4:
                   1946:        * src/main/pa_globals.C [template_gc] 1.152.2.19.2.21:
                   1947:        * src/targets/apache13/ApacheModuleParser3.dsp [template_gc] 1.16.12.1.2.6:
                   1948:        * www/htdocs/.htaccess [template_gc] 1.12.6.9.2.18:
                   1949:                few paths for libxml debug/release changes
                   1950: 
                   1951:        * src/targets/apache13/ApacheModuleParser3.dsp [release_3_0_8] 1.16.16.2:
                   1952:        * src/targets/cgi/parser3.dsp [release_3_0_8] 1.63.2.1:
                   1953:        * src/targets/isapi/parser3isapi.dsp [release_3_0_8] 1.41.16.1:
                   1954:                more step towards \parser3project not having to be in root
                   1955: 
                   1956:        * parser3.dsw [template_gc] 1.7.6.1.2.5:
                   1957:        * src/main/pa_globals.C [template_gc] 1.152.2.19.2.22:
                   1958:        * www/htdocs/.htaccess [template_gc] 1.12.6.9.2.19:
                   1959:                relative paths to xml&gc libs
                   1960: 
                   1961:        * src/lib/md5/pa_md5c.c [template_gc] 1.6.2.1.2.4:
                   1962:                PA_ -> pa_
                   1963: 
                   1964:        * src/classes/math.C [template_gc] 1.24.2.12.2.16:
                   1965:        * src/classes/math.C [template_gc] 1.24.2.12.2.17:
                   1966:                uuid bugfix
                   1967: 
                   1968:        * tests/141.html [template_gc] 1.1.2.2:
                   1969:        * tests/Makefile [template_gc] 1.1.2.8.2.10:
                   1970:        * tests/results/005.processed [template_gc] 1.1.2.2.2.2:
                   1971:        * tests/results/030.processed [template_gc] 1.1.2.2.2.2:
                   1972:        * tests/results/075.processed [template_gc] 1.1.2.1.2.2:
                   1973:        * tests/results/078.processed [template_gc] 1.1.2.1.2.2:
                   1974:                to reflect date format change (were - become ' ')
                   1975: 
1.25      paf      1976:        * src/classes/classes.dsp 1.30:
                   1977:        * src/main/main.dsp 1.166:
                   1978:        * src/main/pa_globals.C 1.158:
                   1979:        * src/targets/apache13core/ApacheModuleParser3Core.dsp 1.3:
                   1980:        * src/targets/cgi/parser3.dsp 1.65:
                   1981:        * src/targets/isapi/parser3isapi.dsp 1.43:
                   1982:        * src/types/types.dsp 1.41:
                   1983:                cvs: getting rid of win32xml pseudo project
                   1984: 
1.24      paf      1985:        * src/classes/math.C 1.33:
                   1986:                merged uuid bugfix
                   1987: 
                   1988:        * src/include/pa_version.h [release_3_0_8] 1.7.18.1:
1.25      paf      1989:        * src/include/pa_version.h [release_3_1_0] 1.7.20.1:
                   1990:        * src/lib/patches/Makefile.in [release_3_1_0] 1.11.2.1:
1.24      paf      1991:                release
                   1992: 
                   1993:        * src/classes/math.C [release_3_0_8] 1.33.2.1:
                   1994:        * src/lib/md5/pa_md5.h [release_3_0_8] 1.7.2.1:
                   1995:        * src/lib/md5/pa_md5c.c [release_3_0_8] 1.9.2.1:
                   1996:        * src/targets/apache13/ApacheModuleParser3.dsp [release_3_0_8] 1.16.16.1:
                   1997:        * src/targets/apache13/pa_md5c.c [release_3_0_8] 1.5.6.1:
                   1998:                apache module compiled [were minor unnecessary changes in lib
                   1999:                md5 interface]
                   2000: 
1.26      paf      2001:        * src/include/pa_config_fixed.h [release_3_1_0] 1.56.2.3:
                   2002:        * src/main/pa_charset.C [release_3_1_0] 1.35.2.1:
                   2003:                bad #endif fix
                   2004: 
1.24      paf      2005:        * tests/001.html 1.2:
                   2006:        * tests/002.html 1.2:
                   2007:        * tests/003.html 1.2:
                   2008:        * tests/004.html 1.2:
                   2009:        * tests/005.html 1.2:
                   2010:        * tests/006.html 1.2:
                   2011:        * tests/007.html 1.2:
                   2012:        * tests/008.html 1.2:
                   2013:        * tests/009.html 1.2:
                   2014:        * tests/010.html 1.2:
                   2015:        * tests/011.html 1.2:
                   2016:        * tests/012.html 1.2:
                   2017:        * tests/013.html 1.2:
                   2018:        * tests/014.html 1.2:
                   2019:        * tests/015.html 1.2:
                   2020:        * tests/016.html 1.2:
                   2021:        * tests/017.html 1.2:
                   2022:        * tests/018.html 1.2:
                   2023:        * tests/019.html 1.2:
                   2024:        * tests/019paf2001.gif 1.2:
                   2025:        * tests/020.html 1.2:
                   2026:        * tests/021.html 1.2:
                   2027:        * tests/022.html 1.2:
                   2028:        * tests/022_dir/a.html 1.2:
                   2029:        * tests/022_dir/b.txt 1.2:
                   2030:        * tests/022_dir/c.htm 1.2:
                   2031:        * tests/023.html 1.2:
                   2032:        * tests/024.html 1.2:
                   2033:        * tests/025.html 1.2:
                   2034:        * tests/026.html 1.2:
                   2035:        * tests/027.html 1.2:
                   2036:        * tests/028.html 1.2:
                   2037:        * tests/029.html 1.2:
                   2038:        * tests/030.html 1.2:
                   2039:        * tests/031.html 1.2:
                   2040:        * tests/032.html 1.2:
                   2041:        * tests/033.html 1.2:
                   2042:        * tests/034.html 1.2:
                   2043:        * tests/035.html 1.2:
                   2044:        * tests/036.html 1.2:
                   2045:        * tests/037.html 1.2:
                   2046:        * tests/038.html 1.2:
                   2047:        * tests/039.html 1.2:
                   2048:        * tests/040.html 1.2:
                   2049:        * tests/041.html 1.2:
                   2050:        * tests/042.html 1.2:
                   2051:        * tests/043.html 1.2:
                   2052:        * tests/044.html 1.2:
                   2053:        * tests/045.html 1.2:
                   2054:        * tests/046.html 1.2:
                   2055:        * tests/047.html 1.2:
                   2056:        * tests/048.html 1.2:
                   2057:        * tests/049.html 1.2:
                   2058:        * tests/050.html 1.2:
                   2059:        * tests/051.html 1.2:
                   2060:        * tests/051b.p 1.2:
                   2061:        * tests/051t.p 1.2:
                   2062:        * tests/052.html 1.2:
                   2063:        * tests/053.html 1.2:
                   2064:        * tests/054.html 1.2:
                   2065:        * tests/055.html 1.2:
                   2066:        * tests/056.html 1.2:
                   2067:        * tests/057.html 1.2:
                   2068:        * tests/058.html 1.2:
                   2069:        * tests/058_paf2000.png 1.2:
                   2070:        * tests/059.html 1.2:
                   2071:        * tests/060.html 1.2:
                   2072:        * tests/061.dat 1.2:
                   2073:        * tests/061.html 1.2:
                   2074:        * tests/062.html 1.2:
                   2075:        * tests/063.html 1.2:
                   2076:        * tests/064.html 1.2:
                   2077:        * tests/065.html 1.2:
                   2078:        * tests/066.html 1.2:
                   2079:        * tests/067.html 1.2:
                   2080:        * tests/068.html 1.2:
                   2081:        * tests/069.html 1.2:
                   2082:        * tests/070.html 1.2:
                   2083:        * tests/071.html 1.2:
                   2084:        * tests/072.html 1.2:
                   2085:        * tests/073.html 1.2:
                   2086:        * tests/074.html 1.2:
                   2087:        * tests/075.html 1.2:
                   2088:        * tests/076.html 1.2:
                   2089:        * tests/077.html 1.2:
                   2090:        * tests/078.html 1.2:
                   2091:        * tests/079.html 1.2:
                   2092:        * tests/080.html 1.2:
                   2093:        * tests/081.html 1.2:
                   2094:        * tests/082.html 1.2:
                   2095:        * tests/083.html 1.2:
                   2096:        * tests/084.html 1.2:
                   2097:        * tests/085.html 1.2:
                   2098:        * tests/086.html 1.2:
                   2099:        * tests/087.html 1.2:
                   2100:        * tests/088.html 1.2:
                   2101:        * tests/089.html 1.2:
                   2102:        * tests/090.html 1.2:
                   2103:        * tests/091.html 1.2:
                   2104:        * tests/092.html 1.2:
                   2105:        * tests/093.html 1.2:
                   2106:        * tests/094.html 1.2:
                   2107:        * tests/095.html 1.2:
                   2108:        * tests/096.html 1.2:
                   2109:        * tests/096_dir/163.jpg 1.2:
                   2110:        * tests/096_dir/188.jpg 1.2:
                   2111:        * tests/097.html 1.2:
                   2112:        * tests/098.html 1.2:
                   2113:        * tests/098font.gif 1.2:
                   2114:        * tests/099.html 1.2:
                   2115:        * tests/100.html 1.2:
                   2116:        * tests/101.html 1.2:
                   2117:        * tests/102.html 1.2:
                   2118:        * tests/103.html 1.2:
                   2119:        * tests/103mark.gif 1.2:
                   2120:        * tests/103paf2001.gif 1.2:
                   2121:        * tests/104.html 1.2:
                   2122:        * tests/105.html 1.2:
                   2123:        * tests/106.html 1.2:
                   2124:        * tests/107.html 1.2:
                   2125:        * tests/108.html 1.2:
                   2126:        * tests/108.xsl 1.2:
                   2127:        * tests/109.html 1.2:
                   2128:        * tests/110.html 1.2:
                   2129:        * tests/111.html 1.2:
                   2130:        * tests/112.html 1.2:
                   2131:        * tests/113.html 1.2:
                   2132:        * tests/114.html 1.2:
                   2133:        * tests/115.html 1.2:
                   2134:        * tests/116.html 1.2:
                   2135:        * tests/117.html 1.2:
                   2136:        * tests/118.html 1.2:
                   2137:        * tests/119.html 1.2:
                   2138:        * tests/120.html 1.2:
                   2139:        * tests/121.html 1.2:
                   2140:        * tests/122.html 1.2:
                   2141:        * tests/123.html 1.2:
                   2142:        * tests/124.html 1.2:
                   2143:        * tests/125.html 1.2:
                   2144:        * tests/126.html 1.2:
                   2145:        * tests/127.html 1.2:
                   2146:        * tests/128.html 1.2:
                   2147:        * tests/129.html 1.2:
                   2148:        * tests/130.html 1.2:
                   2149:        * tests/131.html 1.2:
                   2150:        * tests/132.html 1.2:
                   2151:        * tests/133.html 1.2:
                   2152:        * tests/134.html 1.2:
                   2153:        * tests/135.html 1.2:
                   2154:        * tests/136.html 1.2:
                   2155:        * tests/137.html 1.2:
                   2156:        * tests/138.html 1.2:
                   2157:        * tests/139.html 1.2:
                   2158:        * tests/140.html 1.2:
                   2159:        * tests/141.html 1.2:
                   2160:        * tests/Makefile 1.2:
                   2161:        * tests/descript.ion 1.2:
                   2162:        * tests/outputs/create-dir 1.2:
                   2163:        * tests/results/001.processed 1.2:
                   2164:        * tests/results/002.processed 1.2:
                   2165:        * tests/results/003.processed 1.2:
                   2166:        * tests/results/004.processed 1.2:
                   2167:        * tests/results/005.processed 1.2:
                   2168:        * tests/results/006.processed 1.2:
                   2169:        * tests/results/007.processed 1.2:
                   2170:        * tests/results/008.processed 1.2:
                   2171:        * tests/results/009.processed 1.2:
                   2172:        * tests/results/010.processed 1.2:
                   2173:        * tests/results/011.processed 1.2:
                   2174:        * tests/results/012.processed 1.2:
                   2175:        * tests/results/013.processed 1.2:
                   2176:        * tests/results/014.processed 1.2:
                   2177:        * tests/results/015.processed 1.2:
                   2178:        * tests/results/016.processed 1.2:
                   2179:        * tests/results/017.processed 1.2:
                   2180:        * tests/results/018.processed 1.2:
                   2181:        * tests/results/019.processed 1.2:
                   2182:        * tests/results/020.processed 1.2:
                   2183:        * tests/results/021.processed 1.2:
                   2184:        * tests/results/022.processed 1.2:
                   2185:        * tests/results/023.processed 1.2:
                   2186:        * tests/results/024.processed 1.2:
                   2187:        * tests/results/025.processed 1.2:
                   2188:        * tests/results/026.processed 1.2:
                   2189:        * tests/results/027.processed 1.2:
                   2190:        * tests/results/028.processed 1.2:
                   2191:        * tests/results/029.processed 1.2:
                   2192:        * tests/results/030.processed 1.2:
                   2193:        * tests/results/031.processed 1.2:
                   2194:        * tests/results/032.processed 1.2:
                   2195:        * tests/results/033.processed 1.2:
                   2196:        * tests/results/034.processed 1.2:
                   2197:        * tests/results/035.processed 1.2:
                   2198:        * tests/results/036.processed 1.2:
                   2199:        * tests/results/037.processed 1.2:
                   2200:        * tests/results/038.processed 1.2:
                   2201:        * tests/results/039.processed 1.2:
                   2202:        * tests/results/040.processed 1.2:
                   2203:        * tests/results/041.processed 1.2:
                   2204:        * tests/results/042.processed 1.2:
                   2205:        * tests/results/043.processed 1.2:
                   2206:        * tests/results/044.processed 1.2:
                   2207:        * tests/results/045.processed 1.2:
                   2208:        * tests/results/046.processed 1.2:
                   2209:        * tests/results/047.processed 1.2:
                   2210:        * tests/results/048.processed 1.2:
                   2211:        * tests/results/049.processed 1.2:
                   2212:        * tests/results/050.processed 1.2:
                   2213:        * tests/results/051.processed 1.2:
                   2214:        * tests/results/052.processed 1.2:
                   2215:        * tests/results/053.processed 1.2:
                   2216:        * tests/results/054.processed 1.2:
                   2217:        * tests/results/055.processed 1.2:
                   2218:        * tests/results/056.processed 1.2:
                   2219:        * tests/results/057.processed 1.2:
                   2220:        * tests/results/058.processed 1.2:
                   2221:        * tests/results/059.processed 1.2:
                   2222:        * tests/results/060.processed 1.2:
                   2223:        * tests/results/061.processed 1.2:
                   2224:        * tests/results/062.processed 1.2:
                   2225:        * tests/results/063.processed 1.2:
                   2226:        * tests/results/064.processed 1.2:
                   2227:        * tests/results/065.processed 1.2:
                   2228:        * tests/results/066.processed 1.2:
                   2229:        * tests/results/067.processed 1.2:
                   2230:        * tests/results/068.processed 1.2:
                   2231:        * tests/results/069.processed 1.2:
                   2232:        * tests/results/070.processed 1.2:
                   2233:        * tests/results/071.processed 1.2:
                   2234:        * tests/results/072.processed 1.2:
                   2235:        * tests/results/073.processed 1.2:
                   2236:        * tests/results/074.processed 1.2:
                   2237:        * tests/results/075.processed 1.2:
                   2238:        * tests/results/076.processed 1.2:
                   2239:        * tests/results/077.processed 1.2:
                   2240:        * tests/results/078.processed 1.2:
                   2241:        * tests/results/079.processed 1.2:
                   2242:        * tests/results/080.processed 1.2:
                   2243:        * tests/results/081.processed 1.2:
                   2244:        * tests/results/082.processed 1.2:
                   2245:        * tests/results/083.processed 1.2:
                   2246:        * tests/results/084.processed 1.2:
                   2247:        * tests/results/085.processed 1.2:
                   2248:        * tests/results/086.processed 1.2:
                   2249:        * tests/results/087.processed 1.2:
                   2250:        * tests/results/088.processed 1.2:
                   2251:        * tests/results/089.processed 1.2:
                   2252:        * tests/results/090.processed 1.2:
                   2253:        * tests/results/091.processed 1.2:
                   2254:        * tests/results/092.processed 1.2:
                   2255:        * tests/results/093.processed 1.2:
                   2256:        * tests/results/094.processed 1.2:
                   2257:        * tests/results/095.processed 1.2:
                   2258:        * tests/results/096.processed 1.2:
                   2259:        * tests/results/097.processed 1.2:
                   2260:        * tests/results/098.processed 1.2:
                   2261:        * tests/results/099.processed 1.2:
                   2262:        * tests/results/100.processed 1.2:
                   2263:        * tests/results/101.processed 1.2:
                   2264:        * tests/results/102.processed 1.2:
                   2265:        * tests/results/103.processed 1.2:
                   2266:        * tests/results/104.processed 1.2:
                   2267:        * tests/results/105.processed 1.2:
                   2268:        * tests/results/106.processed 1.2:
                   2269:        * tests/results/107.processed 1.2:
                   2270:        * tests/results/108.processed 1.2:
                   2271:        * tests/results/109.processed 1.2:
                   2272:        * tests/results/110.processed 1.2:
                   2273:        * tests/results/111.processed 1.2:
                   2274:        * tests/results/112.processed 1.2:
                   2275:        * tests/results/113.processed 1.2:
                   2276:        * tests/results/114.processed 1.2:
                   2277:        * tests/results/115.processed 1.2:
                   2278:        * tests/results/116.processed 1.2:
                   2279:        * tests/results/117.processed 1.2:
                   2280:        * tests/results/118.processed 1.2:
                   2281:        * tests/results/119.processed 1.2:
                   2282:        * tests/results/120.processed 1.2:
                   2283:        * tests/results/121.processed 1.2:
                   2284:        * tests/results/122.processed 1.2:
                   2285:        * tests/results/123.processed 1.2:
                   2286:        * tests/results/124.processed 1.2:
                   2287:        * tests/results/125.processed 1.2:
                   2288:        * tests/results/126.processed 1.2:
                   2289:        * tests/results/127.processed 1.2:
                   2290:        * tests/results/128.processed 1.2:
                   2291:        * tests/results/129.processed 1.2:
                   2292:        * tests/results/130.processed 1.2:
                   2293:        * tests/results/131.processed 1.2:
                   2294:        * tests/results/132.processed 1.2:
                   2295:        * tests/results/133.processed 1.2:
                   2296:        * tests/results/134.processed 1.2:
                   2297:        * tests/results/135.processed 1.2:
                   2298:        * tests/results/136.processed 1.2:
                   2299:        * tests/results/137.processed 1.2:
                   2300:        * tests/results/138.processed 1.2:
                   2301:        * tests/results/139.processed 1.2:
                   2302:        * tests/results/140.processed 1.2:
                   2303:        * tests/results/141.processed 1.2:
                   2304:        * tests/run_parser.sh 1.2:
                   2305:                merged(copied) to HEAD from template_gc
                   2306: 
1.25      paf      2307:        * tests/141.html [template_gc] 1.1.2.3:
                   2308:        * tests/results/141.processed [template_gc] 1.1.2.3:
                   2309:                fixed bug with too-small-a-buffer
                   2310: 
1.24      paf      2311: 2003-07-23  paf
                   2312:        * src/targets/apache13core/ApacheModuleParser3Core.dsp 1.1:
                   2313:                file ApacheModuleParser3Core.dsp was initially added on branch
                   2314:                template_gc.
                   2315: 
                   2316:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.24:
                   2317:        * src/include/pa_stack.h [template_gc] 1.17.2.6.2.8:
                   2318:        * src/main/execute.C [template_gc] 1.295.2.27.2.23:
                   2319:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.34:
                   2320:        * src/main/pa_sql_driver_manager.C [template_gc] 1.69.2.17.2.14:
                   2321:        * src/main/pa_stylesheet_manager.C [template_gc] 1.16.2.7.2.8:
                   2322:        * src/targets/apache13/ApacheModuleParser3.dsp [template_gc] 1.16.12.1.2.3:
                   2323:        * src/targets/isapi/parser3isapi.dsp [template_gc] 1.41.12.1.2.4:
                   2324:                stack top_index() fixed
                   2325: 
                   2326:        * src/targets/Makefile.am [template_gc] 1.9.24.1:
                   2327:        * src/targets/Makefile.in [template_gc] 1.42.2.3.2.2:
                   2328:        * src/targets/apache13/Makefile.am [template_gc] 1.15.10.1.2.2:
                   2329:        * src/targets/apache13/Makefile.in [template_gc] 1.44.2.3.2.3:
                   2330:        * src/targets/apache13/p3runConfigure.in [template_gc] 1.11.14.4.2.2:
                   2331:        * src/targets/apache13/pa_httpd.h [template_gc] 1.1.2.3:
                   2332:        * src/targets/apache13core/Makefile.am [template_gc] 1.1.2.1:
                   2333:        * src/targets/apache13core/Makefile.in [template_gc] 1.1.2.1:
                   2334:                apache13 splitted to simplify apache build
                   2335: 
                   2336:        * src/lib/patches/gc.patch 1.1:
                   2337:                file gc.patch was initially added on branch template_gc.
                   2338: 
                   2339:        * src/targets/apache13/mod_parser3.c 1.1:
                   2340:                file mod_parser3.c was initially added on branch template_gc.
                   2341: 
                   2342:        * src/targets/apache13core/mod_parser3.C 1.1:
                   2343:                file mod_parser3.C was initially added on branch template_gc.
                   2344: 
                   2345:        * src/classes/op.C [template_gc] 1.127.2.22.2.34:
                   2346:        * src/include/pa_sql_connection.h [template_gc] 1.30.2.7.2.8:
                   2347:                connection closing/caching fixed [connections were not closed
                   2348:                put to cache]
                   2349: 
                   2350:        * src/targets/apache13core/Makefile.am 1.1:
                   2351:                file Makefile.am was initially added on branch template_gc.
                   2352: 
                   2353:        * src/targets/apache13/pa_threads.C [template_gc] 1.11.2.1.2.1:
                   2354:                decided to support multithreading in apache module only on win32
                   2355:                see that apache 1.3.28 supports it only in win32+netware...
                   2356: 
                   2357:        * src/targets/apache13/pa_httpd.h 1.1:
                   2358:                file pa_httpd.h was initially added on branch template_gc.
                   2359: 
                   2360:        * src/targets/apache13core/Makefile.in 1.1:
                   2361:                file Makefile.in was initially added on branch template_gc.
                   2362: 
                   2363:        * src/targets/apache13/Makefile.am [template_gc] 1.15.10.1.2.3:
                   2364:        * src/targets/apache13/Makefile.in [template_gc] 1.44.2.3.2.4:
                   2365:                proper dependence to rebuild p3conf from .in
                   2366: 
                   2367:        * src/main/pa_globals.C [template_gc] 1.152.2.19.2.20:
                   2368:                minor style changes
                   2369: 
                   2370:        * src/targets/apache13/ApacheModuleParser3.dsp [template_gc] 1.16.12.1.2.5:
                   2371:        * src/targets/apache13/mod_parser3.c [template_gc] 1.1.2.5:
                   2372:        * src/targets/apache13/mod_parser3_main.C [template_gc] 1.1.2.2:
                   2373:        * src/targets/apache13/pa_httpd.h [template_gc] 1.1.2.2:
                   2374:        * src/targets/apache13/pa_threads.C [template_gc] 1.11.2.1.2.2:
                   2375:        * src/targets/apache13core/ApacheModuleParser3Core.dsp [template_gc] 1.1.2.1:
                   2376:        * src/targets/apache13core/mod_parser3.C [template_gc] 1.1.2.1:
                   2377:        * src/targets/apache13core/pa_threads.C [template_gc] 1.1.2.1:
                   2378:                splitted apache to two projects to simplify separate c/c++ compilation
                   2379: 
                   2380:        * src/targets/apache13/mod_parser3.c [template_gc] 1.1.2.2:
                   2381:                *** empty log message ***
                   2382: 
                   2383:        * src/targets/apache13/ApacheModuleParser3.dsp [template_gc] 1.16.12.1.2.2:
                   2384:        * src/targets/apache13/mod_parser3.C [template_gc] 1.28.2.6.2.6:
                   2385:                updated to new sapi interface
                   2386: 
                   2387:        * src/targets/apache13/ApacheModuleParser3.dsp [template_gc] 1.16.12.1.2.4:
                   2388:        * src/targets/apache13/Makefile.am [template_gc] 1.15.10.1.2.1:
                   2389:        * src/targets/apache13/Makefile.in [template_gc] 1.44.2.3.2.2:
                   2390:        * src/targets/apache13/mod_parser3.C [template_gc] 1.28.2.6.2.7:
                   2391:        * src/targets/apache13/mod_parser3.c [template_gc] 1.1.2.1:
                   2392:        * src/targets/apache13/mod_parser3.c [template_gc] 1.1.2.3:
                   2393:        * src/targets/apache13/mod_parser3_main.C [template_gc] 1.1.2.1:
                   2394:        * src/targets/apache13/pa_httpd.h [template_gc] 1.1.2.1:
                   2395:        * src/targets/apache13/pa_md5c.c [template_gc] 1.5.2.1.2.1:
                   2396:                started splitting mod_parser3 into two parts: C and C++
                   2397: 
                   2398:        * src/classes/math.C [template_gc] 1.24.2.12.2.15:
                   2399:        * src/lib/md5/pa_md5.h [template_gc] 1.5.2.1.2.2:
                   2400:        * src/lib/md5/pa_md5c.c [template_gc] 1.6.2.1.2.3:
                   2401:                renamed a little [to move to comman naming conv]
                   2402: 
                   2403:        * src/lib/patches/gc.patch [template_gc] 1.1.2.1:
                   2404:                this bug remains even in latest-at-the-moment: gc6.2alpha6
                   2405:                just reported to hans
                   2406: 
                   2407:        * src/targets/apache13/mod_parser3_main.C 1.1:
                   2408:                file mod_parser3_main.C was initially added on branch
                   2409:                template_gc.
                   2410: 
1.25      paf      2411:        * src/targets/apache13core/pa_threads.C 1.1:
                   2412:                file pa_threads.C was initially added on branch template_gc.
                   2413: 
1.24      paf      2414: 2003-07-22  paf
                   2415:        * src/main/pa_exec.C [template_gc] 1.48.2.18.2.17:
                   2416:                on win32 bugfix in handling shbang
                   2417: 
                   2418:        * INSTALL [template_gc] 1.31.6.4:
                   2419:                disable-threads adviced
                   2420: 
                   2421:        * INSTALL [template_gc] 1.31.6.5:
                   2422:                gc part updated stightly
                   2423: 
                   2424:        * src/main/pa_memory.C [template_gc] 1.1.2.5.2.13:
                   2425:                out of memory is no longer coredump
                   2426: 
                   2427:        * src/targets/isapi/parser3isapi.C [template_gc] 1.82.2.6.2.8:
                   2428:        * src/targets/isapi/parser3isapi.dsp [template_gc] 1.41.12.1.2.3:
                   2429:                updated to new sapi interface
                   2430: 
                   2431:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.43:
                   2432:                removed reduntant invariant check [there is one deeper in cord
                   2433:                lib]
                   2434: 
                   2435:        * src/classes/file.C [template_gc] 1.107.2.16.2.23:
                   2436:                comment on OS
                   2437: 
                   2438: 2003-07-21  paf
                   2439:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.29:
                   2440:                http:// CRLF now [merged from HEAD]
                   2441: 
                   2442:        * src/classes/file.C [template_gc] 1.107.2.16.2.21:
                   2443:                env passing fixed
                   2444: 
                   2445:        * src/classes/file.C [template_gc] 1.107.2.16.2.22:
                   2446:                file::exec/cgi environment variables now must be UPPERCASE and
                   2447:                A-Z 0-9 _-
                   2448: 
                   2449:        * src/classes/Makefile.am [template_gc] 1.40.16.3:
                   2450:        * src/classes/Makefile.in [template_gc] 1.53.2.3.2.2:
                   2451:                removed circular dependency on classes.C
                   2452: 
                   2453:        * src/main/pa_common.C 1.153:
                   2454:                http:// CRLF now
                   2455: 
                   2456: 2003-07-02  paf
                   2457:        * operators.txt [template_gc] 1.109.2.1.2.9:
                   2458:        * src/types/pa_vstatus.C [template_gc] 1.15.2.6.2.8:
                   2459:                renamed $memory:status fields to reflect their real meaning
                   2460: 
                   2461: 2003-06-27  paf
                   2462:        * src/classes/file.C [template_gc] 1.107.2.16.2.20:
                   2463:        * src/include/pa_charset.h [template_gc] 1.20.2.18.2.13:
                   2464:        * src/include/pa_exec.h [template_gc] 1.11.2.6.2.6:
                   2465:        * src/include/pa_hash.h [template_gc] 1.58.2.18.2.9:
                   2466:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.26:
                   2467:                merged from HEAD file::exec/cgi .charset
                   2468: 
                   2469: 2003-06-26  paf
                   2470:        * src/classes/file.C [template_gc] 1.107.2.16.2.19:
                   2471:        * src/classes/hash.C [template_gc] 1.54.2.13.2.16:
                   2472:        * src/classes/image.C [template_gc] 1.90.2.15.2.22:
                   2473:        * src/classes/op.C [template_gc] 1.127.2.22.2.33:
                   2474:        * src/classes/string.C [template_gc] 1.125.2.15.2.26:
                   2475:        * src/classes/table.C [template_gc] 1.172.2.14.2.33:
                   2476:        * www/htdocs/.htaccess [template_gc] 1.12.6.9.2.17:
                   2477:                fixed several uninitialized local structures.
                   2478:                notably ^hash.foreach now inserts delimiters properly [were inserting it before first body]
                   2479: 
                   2480: 2003-06-24  paf
                   2481:        * src/include/pa_hash.h [template_gc] 1.58.2.18.2.8:
                   2482:                simplified HASH_ALLOCATES_COUNT
                   2483: 
                   2484: 2003-06-20  paf
                   2485:        * operators.txt 1.115:
                   2486:        * src/include/pa_globals.h 1.103:
                   2487:        * src/main/pa_common.C 1.152:
                   2488:        * src/main/pa_globals.C 1.156:
                   2489:                introducing
                   2490:                $f[^file::load[binary;http://...]]
                   2491:                $f.tables
                   2492: 
                   2493: 2003-06-06  paf
                   2494:        * src/types/pa_vhash.h 1.45:
                   2495:        * src/types/pa_vhash.h [template_gc] 1.43.2.14.2.7:
                   2496:                hash.field lookup first now: along with table. [were method
                   2497:                lookup: inconsistent]
                   2498: 
1.23      paf      2499: 2003-06-02  paf
                   2500:        * src/include/pa_memory.h [template_gc] 1.1.2.9.2.20:
                   2501:                empty string clone fixed to return writable memory
                   2502: 
                   2503:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.28:
                   2504:                fix_line_breaks bug fix [terminating zero were not appended] 
                   2505:                which violated string invariant
                   2506: 
                   2507: 2003-05-30  paf
                   2508:        * src/main/pa_common.C 1.151:
                   2509:                date format now
                   2510:                Sun, 06 Nov 1994 08:49:37 GMT  ; RFC 822, updated by RFC 1123
                   2511: 
                   2512:        * src/types/pa_value.C [template_gc] 1.9.2.15.2.13:
                   2513:                date format now
                   2514:                Sun, 06 Nov 1994 08:49:37 GMT  ; RFC 822, updated by RFC 1123 [as in HEAD]
                   2515: 
                   2516:        * src/classes/xnode.C [template_gc] 1.54.2.10.2.15:
                   2517:                found minor bug, commended for future
                   2518: 
                   2519:        * src/classes/file.C [template_gc] 1.107.2.16.2.18:
                   2520:        * src/classes/form.C [template_gc] 1.34.2.7.2.9:
                   2521:        * src/targets/apache13/mod_parser3.C [template_gc] 1.28.2.6.2.5:
                   2522:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.26:
                   2523:        * src/targets/isapi/parser3isapi.C [template_gc] 1.82.2.6.2.7:
                   2524:                initialized request_info properly
                   2525: 
                   2526: 2003-05-28  paf
                   2527:        * src/classes/form.C [template_gc] 1.34.2.7.2.8:
                   2528:                request_info.content_length can't be <0, size_t for some time
                   2529: 
                   2530: 2003-05-26  paf
                   2531:        * src/classes/file.C [template_gc] 1.107.2.16.2.17:
                   2532:        * src/classes/string.C [template_gc] 1.125.2.15.2.25:
                   2533:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.42:
                   2534:                few forgotten <0 changed to !=STRING_NOT_FOUND
                   2535: 
                   2536:        * src/classes/math.C [template_gc] 1.24.2.12.2.14:
                   2537:                merged ffffu from HEAD
                   2538: 
                   2539: 2003-05-11  paf
                   2540:        * src/types/pa_vxdoc.h [template_gc] 1.31.2.9.2.11:
                   2541:        * src/types/pa_vxnode.h [template_gc] 1.22.2.6.2.8:
                   2542:                think that found cause of premature doc free.
                   2543:                transformed document had xmlDoc reference stored to non-gc-memory (libgdome)
                   2544:                added holding-reference
                   2545: 
                   2546:        * src/main/pa_globals.C [template_gc] 1.152.2.19.2.19:
                   2547:                xml memory debugging functions (ifdefed)
                   2548: 
                   2549: 2003-04-29  paf
                   2550:        * src/main/pa_globals.C [template_gc] 1.152.2.19.2.18:
                   2551:                started digging on double free.
                   2552:                on win32 found that that's perfectly normal.
                   2553: 
                   2554: 2003-04-25  paf
                   2555:        * src/classes/math.C 1.31:
                   2556:                snprintf(buf, 3) become (buf,2) and failed to print anything.
                   2557:                changed to quicker and simplier code
                   2558: 
                   2559:        * src/classes/hash.C 1.56:
                   2560:                allowed ^hash::create[^rem{xxx}]   [were to strict a check]
                   2561: 
                   2562:        * src/classes/table.C 1.180:
                   2563:        * src/lib/md5/pa_md5c.c 1.9:
                   2564:                minor compile errors
                   2565: 
                   2566:        * src/classes/table.C 1.181:
                   2567:                table.join bug fix  [bad limit check]
                   2568: 
                   2569:        * src/classes/math.C [template_gc] 1.24.2.12.2.13:
                   2570:                merged from HEAD: simpiler hash_string
                   2571: 
                   2572: 2003-04-24  paf
                   2573:        * src/lib/md5/pa_md5c.c [template_gc] 1.6.2.1.2.2:
                   2574:        * src/lib/pcre/pcre.h [template_gc] 1.1.14.1.2.4:
                   2575:                thanks to Ilia Soldis <soldis@infolio.ru> for reporing this
                   2576:                ansi c fiolation syntax report
                   2577: 
                   2578:        * src/include/pa_table.h [template_gc] 1.48.2.11.2.11:
                   2579:                too strict assert loosened
                   2580: 
                   2581: 2003-04-21  paf
                   2582:        * src/targets/cgi/Makefile.am [template_gc] 1.46.2.5.2.2:
                   2583:        * src/targets/cgi/Makefile.in [template_gc] 1.62.2.5.2.2:
                   2584:                pp3 added to .am
                   2585: 
                   2586:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.33:
                   2587:                merged from HEAD:
                   2588:                "x:..." and "\\..." file names on Win32 considered disk-global
                   2589: 
                   2590:        * src/main/pa_globals.C [template_gc] 1.152.2.19.2.16:
                   2591:                .5.6 version of libxml allows to install xmlMallocAtomic [
                   2592:                author agreed to my suggestion], used that
                   2593: 
                   2594:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.51:
                   2595:                assert added [looking for bug]
                   2596: 
                   2597:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.24:
                   2598:        * src/types/pa_value.C [template_gc] 1.9.2.15.2.12:
                   2599:        * src/types/pa_value.h [template_gc] 1.109.2.25.2.12:
                   2600:        * src/types/pa_vmail.C [template_gc] 1.40.2.12.2.18:
                   2601:                attributed_meaning_to_string added L_UNSPECIFIED piece
                   2602:                which was sortof OK, but violated string invariant [assertion barked on that]
                   2603:                changed to L_PASS_APPEND, made that param obligatory
                   2604: 
                   2605:        * src/types/pa_vmail.C [template_gc] 1.40.2.12.2.19:
                   2606:                ^mail:send[$.body backward compatibility
                   2607: 
                   2608:        * src/main/pa_globals.C [template_gc] 1.152.2.19.2.17:
                   2609:                pcre memory management changed to use GC memory
                   2610: 
                   2611:        * src/main/pa_request.C 1.247:
                   2612:                "x:..." and "\\..." file names on Win32 considered disk-global
                   2613: 
                   2614:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.41:
                   2615:                String::ArrayFragment::append_positions bug fixed [assert
                   2616:                helped]
                   2617: 
                   2618: 2003-04-18  paf
                   2619:        * src/main/untaint.C [template_gc] 1.115.2.12.2.28:
                   2620:                merged from HEAD:
                   2621:                enabled '~' letter in filenames
                   2622: 
                   2623:        * src/main/untaint.C 1.116:
                   2624:                enabled '~' letter in filenames
                   2625: 
                   2626: 2003-04-16  paf
                   2627:        * src/classes/file.C [template_gc] 1.107.2.16.2.16:
                   2628:                small bug introduced in autoptr times fixed
                   2629: 
                   2630:        * src/classes/table.C [template_gc] 1.172.2.14.2.32:
                   2631:        * src/lib/Makefile.in [template_gc] 1.8.2.3.2.3:
                   2632:                fix: gcc reported tiny error
                   2633: 
                   2634:        * etc/parser3.charsets/koi8-r.cfg [template_gc] 1.2.22.1:
                   2635:        * etc/parser3.charsets/windows-1251.cfg [template_gc] 1.6.14.1:
                   2636:                merged from HEAD
                   2637: 
                   2638: 2003-04-15  paf
                   2639:        * operators.txt 1.112:
                   2640:        * operators.txt [release_3_0_0007] 1.107.2.2:
                   2641:        * src/classes/math.C 1.27:
                   2642:        * src/lib/md5/pa_md5.h 1.7:
                   2643:        * src/lib/md5/pa_md5c.c 1.8:
                   2644:                ^math:md5[string]
                   2645:                16-byte digest
                   2646: 
                   2647:        * operators.txt 1.113:
                   2648:        * src/classes/math.C 1.28:
                   2649:        * src/classes/math.C 1.29:
                   2650:                ^math:uuid[]
                   2651: 
                   2652:        * tests/results/141.processed 1.1:
                   2653:                file 141.processed was initially added on branch template_gc.
                   2654: 
                   2655:        * operators.txt 1.114:
                   2656:        * src/classes/math.C 1.30:
                   2657:                ^math:uid64[]
                   2658: 
                   2659:        * operators.txt [template_gc] 1.109.2.1.2.8:
                   2660:        * src/classes/math.C [template_gc] 1.24.2.12.2.12:
                   2661:        * src/lib/md5/pa_md5.h [template_gc] 1.5.2.1.2.1:
                   2662:        * src/lib/md5/pa_md5c.c [template_gc] 1.6.2.1.2.1:
                   2663:        * tests/141.html [template_gc] 1.1.2.1:
                   2664:        * tests/results/141.processed [template_gc] 1.1.2.1:
                   2665:        * www/htdocs/.htaccess [template_gc] 1.12.6.9.2.16:
                   2666:                merged from head
                   2667:                ^math:uuid[]
                   2668:                ^math:uid64[]
                   2669:                ^math:md5[string]
                   2670:                
                   2671:                test added: 141.html
                   2672: 
                   2673:        * tests/141.html 1.1:
                   2674:                file 141.html was initially added on branch template_gc.
                   2675: 
                   2676:        * operators.txt [release_3_0_0007] 1.107.2.1:
                   2677:        * src/classes/file.C [release_3_0_0007] 1.106.2.1:
                   2678:        * src/include/pa_common.h [release_3_0_0007] 1.88.4.1:
                   2679:        * src/include/pa_config_fixed.h [release_3_0_0007] 1.52.4.1:
                   2680:        * src/main/pa_common.C [release_3_0_0007] 1.140.2.3:
                   2681:                ^file::load[mode;name;
                   2682:                    $.offset
                   2683:                    $.limit
                   2684: 
                   2685: 2003-04-14  paf
                   2686:        * src/classes/table.C 1.178:
                   2687:                more warnings
                   2688: 
                   2689:        * src/include/pa_array.h [template_gc] 1.57.2.27.2.16:
                   2690:        * src/include/pa_table.h [template_gc] 1.48.2.11.2.9:
                   2691:        * src/main/pa_table.C [template_gc] 1.53.2.10.2.7:
                   2692:        * www/htdocs/.htaccess [template_gc] 1.12.6.9.2.15:
                   2693:                removed checks in table::set_current, moved them back to table::locate
                   2694:                implemented table::create/join ñ $.reverse
                   2695: 
                   2696:        * tests/results/140.processed 1.1:
                   2697:                file 140.processed was initially added on branch template_gc.
                   2698: 
                   2699:        * src/include/pa_table.h 1.50:
                   2700:        * src/main/pa_array.C 1.56:
                   2701:        * src/main/pa_table.C 1.55:
                   2702:                removed checks in table::set_current, moved them back to table
                   2703:                :locate
                   2704: 
                   2705:        * src/classes/table.C 1.179:
                   2706:        * src/include/pa_table.h 1.51:
                   2707:                table $.distinct[tables] bug fixed
                   2708: 
                   2709:        * src/classes/table.C [template_gc] 1.172.2.14.2.31:
                   2710:        * src/include/pa_array.h [template_gc] 1.57.2.27.2.17:
                   2711:        * src/include/pa_table.h [template_gc] 1.48.2.11.2.10:
                   2712:        * src/main/pa_table.C [template_gc] 1.53.2.10.2.8:
                   2713:        * tests/140.html [template_gc] 1.1.2.1:
                   2714:        * tests/results/140.processed [template_gc] 1.1.2.1:
                   2715:                table $.reverse option works in create&co
                   2716:                table $.distinct[tables] bug fix merged
                   2717: 
                   2718:        * tests/140.html 1.1:
                   2719:                file 140.html was initially added on branch template_gc.
                   2720: 
                   2721:        * src/classes/math.C 1.26:
                   2722:        * src/lib/md5/pa_md5.h 1.6:
                   2723:        * src/lib/md5/pa_md5c.c 1.7:
                   2724:                started ^math:md5
                   2725: 
                   2726: 2003-04-11  paf
                   2727:        * src/lib/patches/gdome2.patch [template_gc] 1.1.6.6:
                   2728:                less xml, couple dup were valid
                   2729: 
                   2730:        * tests/128.html 1.1:
                   2731:                file 128.html was initially added on branch template_gc.
                   2732: 
                   2733:        * tests/results/134.processed 1.1:
                   2734:                file 134.processed was initially added on branch template_gc.
                   2735: 
                   2736:        * tests/129.html 1.1:
                   2737:                file 129.html was initially added on branch template_gc.
                   2738: 
                   2739:        * tests/130.html 1.1:
                   2740:                file 130.html was initially added on branch template_gc.
                   2741: 
                   2742:        * tests/results/126.processed 1.1:
                   2743:                file 126.processed was initially added on branch template_gc.
                   2744: 
                   2745:        * tests/130.html [template_gc] 1.1.2.1:
                   2746:        * tests/131.html [template_gc] 1.1.2.1:
                   2747:        * tests/132.html [template_gc] 1.1.2.1:
                   2748:        * tests/133.html [template_gc] 1.1.2.1:
                   2749:        * tests/134.html [template_gc] 1.1.2.1:
                   2750:        * tests/135.html [template_gc] 1.1.2.1:
                   2751:        * tests/136.html [template_gc] 1.1.2.1:
                   2752:        * tests/137.html [template_gc] 1.1.2.1:
                   2753:        * tests/138.html [template_gc] 1.1.2.1:
                   2754:        * tests/139.html [template_gc] 1.1.2.1:
                   2755:        * tests/descript.ion [template_gc] 1.1.2.1:
                   2756:        * tests/results/130.processed [template_gc] 1.1.2.1:
                   2757:        * tests/results/131.processed [template_gc] 1.1.2.1:
                   2758:        * tests/results/132.processed [template_gc] 1.1.2.1:
                   2759:        * tests/results/133.processed [template_gc] 1.1.2.1:
                   2760:        * tests/results/134.processed [template_gc] 1.1.2.1:
                   2761:        * tests/results/135.processed [template_gc] 1.1.2.1:
                   2762:        * tests/results/136.processed [template_gc] 1.1.2.1:
                   2763:        * tests/results/137.processed [template_gc] 1.1.2.1:
                   2764:        * tests/results/138.processed [template_gc] 1.1.2.1:
                   2765:        * tests/results/139.processed [template_gc] 1.1.2.1:
                   2766:                added few mustfail tests
                   2767:                130.html mustfail: empty regexp
                   2768:                131.html mustfail: invalid date/time
                   2769:                132.html mustfail: access to junction outside of context
                   2770:                133.html mustfail: access to junction outside of context, case version
                   2771:                134.html mustfail: hash: adding a key inside of foreach
                   2772:                135.html mustfail: modifying system class
                   2773:                136.html mustfail: $.name outside of $hash[here]
                   2774:                137.html mustfail: appendChild without import
                   2775:                138.html mustfail: invalid encoding inside of xml
                   2776:                139.html mustfail: bad XPath
                   2777: 
                   2778:        * tests/131.html 1.1:
                   2779:                file 131.html was initially added on branch template_gc.
                   2780: 
                   2781:        * tests/results/136.processed 1.1:
                   2782:                file 136.processed was initially added on branch template_gc.
                   2783: 
                   2784:        * src/lib/patches/gdome2.patch [template_gc] 1.1.6.3:
                   2785:                context-style
                   2786: 
                   2787:        * tests/132.html 1.1:
                   2788:                file 132.html was initially added on branch template_gc.
                   2789: 
                   2790:        * tests/results/128.processed 1.1:
                   2791:                file 128.processed was initially added on branch template_gc.
                   2792: 
                   2793:        * tests/results/138.processed 1.1:
                   2794:                file 138.processed was initially added on branch template_gc.
                   2795: 
                   2796:        * operators.txt [template_gc] 1.109.2.1.2.7:
                   2797:        * src/classes/date.C [template_gc] 1.42.2.11.2.13:
                   2798:        * src/classes/table.C [template_gc] 1.172.2.14.2.30:
                   2799:        * src/include/pa_array.h [template_gc] 1.57.2.27.2.15:
                   2800:        * src/include/pa_common.h [template_gc] 1.89.2.13.2.13:
                   2801:        * src/include/pa_config_includes.h [template_gc] 1.23.2.5.2.3:
                   2802:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.50:
                   2803:        * src/include/pa_table.h [template_gc] 1.48.2.11.2.8:
                   2804:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.32:
                   2805:        * src/main/pa_sql_driver_manager.C [template_gc] 1.69.2.17.2.13:
                   2806:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.40:
                   2807:        * src/main/pa_table.C [template_gc] 1.53.2.10.2.6:
                   2808:        * www/htdocs/.htaccess [template_gc] 1.12.6.9.2.14:
                   2809:                merged from HEAD
                   2810:                from before_append_array_limit_sense_change
                   2811:                to after_append_array_limit_sense_change
                   2812: 
                   2813:        * operators.txt [template_gc] 1.109.2.1.2.6:
                   2814:        * src/classes/table.C [template_gc] 1.172.2.14.2.28:
                   2815:        * tests/084.html [template_gc] 1.1.2.1.2.1:
                   2816:        * tests/125.html [template_gc] 1.1.2.1:
                   2817:        * tests/126.html [template_gc] 1.1.2.1:
                   2818:        * tests/127.html [template_gc] 1.1.2.1:
                   2819:        * tests/128.html [template_gc] 1.1.2.1:
                   2820:        * tests/129.html [template_gc] 1.1.2.1:
                   2821:        * tests/results/125.processed [template_gc] 1.1.2.1:
                   2822:        * tests/results/126.processed [template_gc] 1.1.2.1:
                   2823:        * tests/results/127.processed [template_gc] 1.1.2.1:
                   2824:        * tests/results/128.processed [template_gc] 1.1.2.1:
                   2825:        * tests/results/129.processed [template_gc] 1.1.2.1:
                   2826:                merged from HEAD
                   2827:                ^table.hash[key][$.distinct[tables]]
                   2828:                
                   2829:                maked appropriate tests [changed one old nonconforming]
                   2830: 
                   2831:        * tests/descript.ion 1.1:
                   2832:                file descript.ion was initially added on branch template_gc.
                   2833: 
                   2834:        * tests/133.html 1.1:
                   2835:                file 133.html was initially added on branch template_gc.
                   2836: 
                   2837:        * src/lib/patches/gdome2.patch [template_gc] 1.1.6.4:
                   2838:                removed bad lines
                   2839: 
                   2840:        * tests/results/131.processed 1.1:
                   2841:                file 131.processed was initially added on branch template_gc.
                   2842: 
                   2843:        * tests/134.html 1.1:
                   2844:                file 134.html was initially added on branch template_gc.
                   2845: 
                   2846:        * tests/135.html 1.1:
                   2847:                file 135.html was initially added on branch template_gc.
                   2848: 
                   2849:        * tests/results/133.processed 1.1:
                   2850:                file 133.processed was initially added on branch template_gc.
                   2851: 
                   2852:        * tests/136.html 1.1:
                   2853:                file 136.html was initially added on branch template_gc.
                   2854: 
                   2855:        * src/lib/patches/gdome2.patch [template_gc] 1.1.6.7:
                   2856:                const
                   2857: 
                   2858:        * tests/results/125.processed 1.1:
                   2859:                file 125.processed was initially added on branch template_gc.
                   2860: 
                   2861:        * tests/137.html 1.1:
                   2862:                file 137.html was initially added on branch template_gc.
                   2863: 
                   2864:        * operators.txt 1.110:
                   2865:        * src/classes/table.C 1.174:
                   2866:                ^table.hash[key][$.distinct[tables]]
                   2867: 
                   2868:        * tests/results/135.processed 1.1:
                   2869:                file 135.processed was initially added on branch template_gc.
                   2870: 
                   2871:        * tests/138.html 1.1:
                   2872:                file 138.html was initially added on branch template_gc.
                   2873: 
                   2874:        * operators.txt 1.111:
                   2875:        * src/classes/date.C 1.45:
                   2876:        * src/classes/table.C 1.176:
                   2877:        * src/include/pa_array.h 1.58:
                   2878:        * src/include/pa_common.h 1.92:
                   2879:        * src/include/pa_config_includes.h 1.24:
                   2880:        * src/include/pa_globals.h 1.102:
                   2881:        * src/include/pa_table.h 1.49:
                   2882:        * src/main/pa_array.C 1.55:
                   2883:        * src/main/pa_globals.C 1.155:
                   2884:        * src/main/pa_request.C 1.246:
                   2885:        * src/main/pa_sql_driver_manager.C 1.70:
                   2886:        * src/main/pa_string.C 1.173:
                   2887:        * src/main/pa_table.C 1.54:
                   2888:        * www/htdocs/.htaccess [template_gc] 1.12.6.9.2.13:
                   2889:                append_array_limit_sense_change
                   2890:                locate accepts options same as create
                   2891:                new option: $.reverse(1)   [do not work in table::create]
                   2892: 
                   2893:        * tests/results/127.processed 1.1:
                   2894:                file 127.processed was initially added on branch template_gc.
                   2895: 
                   2896:        * tests/139.html 1.1:
                   2897:                file 139.html was initially added on branch template_gc.
                   2898: 
                   2899:        * src/lib/patches/Makefile.in [template_gc] 1.10.2.3.2.3:
                   2900:        * src/lib/patches/gdome2.patch [template_gc] 1.1.6.5:
                   2901:                *** empty log message ***
                   2902: 
                   2903:        * tests/results/137.processed 1.1:
                   2904:                file 137.processed was initially added on branch template_gc.
                   2905: 
                   2906:        * tests/results/130.processed 1.1:
                   2907:                file 130.processed was initially added on branch template_gc.
                   2908: 
                   2909:        * tests/results/129.processed 1.1:
                   2910:                file 129.processed was initially added on branch template_gc.
                   2911: 
                   2912:        * src/include/pa_common.h 1.91:
                   2913:        * src/include/pa_common.h [template_gc] 1.89.2.13.2.12:
                   2914:        * src/main/pa_common.C 1.150:
                   2915:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.27:
                   2916:                gcc didn't like (stat xxx,
                   2917: 
                   2918:        * INSTALL [template_gc] 1.31.6.3:
                   2919:        * src/include/pa_charset.h [template_gc] 1.20.2.18.2.11:
                   2920:        * src/lib/Makefile.am [template_gc] 1.3.10.3:
                   2921:        * src/lib/patches/Makefile.am [template_gc] 1.3.6.2:
                   2922:        * src/lib/patches/gdome2.patch [template_gc] 1.1.6.2:
                   2923:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.25:
                   2924:                re-added libgdome patch. regretfully libgdome bug can not be
                   2925:                worked around
                   2926: 
                   2927:        * src/classes/xdoc.C 1.110:
                   2928:        * src/classes/xnode.C 1.55:
                   2929:        * src/include/pa_charset.h 1.22:
                   2930:                merged fix for
                   2931:                found very old xml (dom) bug:
                   2932:                were passing domString objects and later ERROREOUSLY freed them
                   2933: 
                   2934:        * src/classes/table.C 1.175:
                   2935:        * src/classes/table.C 1.177:
                   2936:        * src/classes/table.C [template_gc] 1.172.2.14.2.29:
                   2937:                typo
                   2938: 
                   2939:        * tests/results/139.processed 1.1:
                   2940:                file 139.processed was initially added on branch template_gc.
                   2941: 
                   2942:        * tests/125.html 1.1:
                   2943:                file 125.html was initially added on branch template_gc.
                   2944: 
                   2945:        * tests/results/132.processed 1.1:
                   2946:                file 132.processed was initially added on branch template_gc.
                   2947: 
                   2948:        * tests/126.html 1.1:
                   2949:                file 126.html was initially added on branch template_gc.
                   2950: 
                   2951:        * tests/127.html 1.1:
                   2952:                file 127.html was initially added on branch template_gc.
                   2953: 
                   2954: 2003-04-10  paf
                   2955:        * src/doc/string.dox [template_gc] 1.4.22.2:
                   2956:        * src/include/pa_memory.h [template_gc] 1.1.2.9.2.19:
                   2957:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.49:
                   2958:        * src/lib/cord/cordbscs.c [template_gc] 1.1.2.11:
                   2959:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.39:
                   2960:        * src/types/pa_vform.C [template_gc] 1.74.2.11.2.8:
                   2961:        * src/types/pa_vform.h [template_gc] 1.45.2.8.2.5:
                   2962:        * tests/123.html [template_gc] 1.1.2.1:
                   2963:        * tests/124.html [template_gc] 1.1.2.1:
                   2964:        * tests/results/001.processed [template_gc] 1.1.2.2.2.1:
                   2965:        * tests/results/002.processed [template_gc] 1.1.2.2.2.1:
                   2966:        * tests/results/003.processed [template_gc] 1.1.2.2.2.1:
                   2967:        * tests/results/004.processed [template_gc] 1.1.2.2.2.1:
                   2968:        * tests/results/005.processed [template_gc] 1.1.2.2.2.1:
                   2969:        * tests/results/006.processed [template_gc] 1.1.2.2.2.1:
                   2970:        * tests/results/008.processed [template_gc] 1.1.2.2.2.1:
                   2971:        * tests/results/009.processed [template_gc] 1.1.2.2.2.1:
                   2972:        * tests/results/010.processed [template_gc] 1.1.2.1.2.1:
                   2973:        * tests/results/011.processed [template_gc] 1.1.2.2.2.1:
                   2974:        * tests/results/012.processed [template_gc] 1.1.2.2.2.1:
                   2975:        * tests/results/013.processed [template_gc] 1.1.2.2.2.1:
                   2976:        * tests/results/014.processed [template_gc] 1.1.2.2.2.1:
                   2977:        * tests/results/015.processed [template_gc] 1.1.2.2.2.1:
                   2978:        * tests/results/016.processed [template_gc] 1.1.2.2.2.1:
                   2979:        * tests/results/017.processed [template_gc] 1.1.2.2.2.1:
                   2980:        * tests/results/018.processed [template_gc] 1.1.2.1.2.1:
                   2981:        * tests/results/020.processed [template_gc] 1.1.2.2.2.1:
                   2982:        * tests/results/021.processed [template_gc] 1.1.2.2.2.1:
                   2983:        * tests/results/022.processed [template_gc] 1.1.2.2.2.1:
                   2984:        * tests/results/023.processed [template_gc] 1.1.2.1.2.1:
                   2985:        * tests/results/024.processed [template_gc] 1.1.2.2.2.1:
                   2986:        * tests/results/025.processed [template_gc] 1.1.2.2.2.1:
                   2987:        * tests/results/026.processed [template_gc] 1.1.2.2.2.1:
                   2988:        * tests/results/027.processed [template_gc] 1.1.2.2.2.1:
                   2989:        * tests/results/028.processed [template_gc] 1.1.2.2.2.1:
                   2990:        * tests/results/029.processed [template_gc] 1.1.2.2.2.1:
                   2991:        * tests/results/030.processed [template_gc] 1.1.2.2.2.1:
                   2992:        * tests/results/031.processed [template_gc] 1.1.2.2.2.1:
                   2993:        * tests/results/032.processed [template_gc] 1.1.2.1.2.1:
                   2994:        * tests/results/033.processed [template_gc] 1.1.2.1.2.1:
                   2995:        * tests/results/034.processed [template_gc] 1.1.2.1.2.1:
                   2996:        * tests/results/035.processed [template_gc] 1.1.2.1.2.1:
                   2997:        * tests/results/036.processed [template_gc] 1.1.2.1.2.1:
                   2998:        * tests/results/037.processed [template_gc] 1.1.2.1.2.1:
                   2999:        * tests/results/038.processed [template_gc] 1.1.2.1.2.1:
                   3000:        * tests/results/039.processed [template_gc] 1.1.2.1.2.1:
                   3001:        * tests/results/040.processed [template_gc] 1.1.2.1.2.1:
                   3002:        * tests/results/041.processed [template_gc] 1.1.2.1.2.1:
                   3003:        * tests/results/042.processed [template_gc] 1.1.2.1.2.1:
                   3004:        * tests/results/043.processed [template_gc] 1.1.2.1.2.1:
                   3005:        * tests/results/044.processed [template_gc] 1.1.2.1.2.1:
                   3006:        * tests/results/045.processed [template_gc] 1.1.2.1.2.1:
                   3007:        * tests/results/046.processed [template_gc] 1.1.2.1.2.1:
                   3008:        * tests/results/047.processed [template_gc] 1.1.2.1.2.1:
                   3009:        * tests/results/048.processed [template_gc] 1.1.2.1.2.1:
                   3010:        * tests/results/049.processed [template_gc] 1.1.2.1.2.1:
                   3011:        * tests/results/050.processed [template_gc] 1.1.2.1.2.1:
                   3012:        * tests/results/051.processed [template_gc] 1.1.2.1.2.1:
                   3013:        * tests/results/052.processed [template_gc] 1.1.2.1.2.1:
                   3014:        * tests/results/053.processed [template_gc] 1.1.2.1.2.1:
                   3015:        * tests/results/054.processed [template_gc] 1.1.2.1.2.1:
                   3016:        * tests/results/055.processed [template_gc] 1.1.2.1.2.1:
                   3017:        * tests/results/056.processed [template_gc] 1.1.2.1.2.1:
                   3018:        * tests/results/057.processed [template_gc] 1.1.2.3.2.1:
                   3019:        * tests/results/058.processed [template_gc] 1.1.2.2.2.1:
                   3020:        * tests/results/059.processed [template_gc] 1.1.2.1.2.1:
                   3021:        * tests/results/060.processed [template_gc] 1.1.2.1.2.1:
                   3022:        * tests/results/061.processed [template_gc] 1.1.2.1.2.1:
                   3023:        * tests/results/062.processed [template_gc] 1.1.2.1.2.1:
                   3024:        * tests/results/063.processed [template_gc] 1.1.2.1.2.1:
                   3025:        * tests/results/064.processed [template_gc] 1.1.2.1.2.1:
                   3026:        * tests/results/065.processed [template_gc] 1.1.2.1.2.1:
                   3027:        * tests/results/066.processed [template_gc] 1.1.2.1.2.1:
                   3028:        * tests/results/067.processed [template_gc] 1.1.2.1.2.1:
                   3029:        * tests/results/068.processed [template_gc] 1.1.2.1.2.1:
                   3030:        * tests/results/069.processed [template_gc] 1.1.2.1.2.1:
                   3031:        * tests/results/070.processed [template_gc] 1.1.2.1.2.1:
                   3032:        * tests/results/071.processed [template_gc] 1.1.2.1.2.1:
                   3033:        * tests/results/072.processed [template_gc] 1.1.2.1.2.1:
                   3034:        * tests/results/073.processed [template_gc] 1.1.2.1.2.1:
                   3035:        * tests/results/074.processed [template_gc] 1.1.2.1.2.1:
                   3036:        * tests/results/075.processed [template_gc] 1.1.2.1.2.1:
                   3037:        * tests/results/076.processed [template_gc] 1.1.2.1.2.1:
                   3038:        * tests/results/077.processed [template_gc] 1.1.2.1.2.1:
                   3039:        * tests/results/078.processed [template_gc] 1.1.2.1.2.1:
                   3040:        * tests/results/079.processed [template_gc] 1.1.2.1.2.1:
                   3041:        * tests/results/080.processed [template_gc] 1.1.2.1.2.1:
                   3042:        * tests/results/081.processed [template_gc] 1.1.2.1.2.1:
                   3043:        * tests/results/082.processed [template_gc] 1.1.2.1.2.1:
                   3044:        * tests/results/083.processed [template_gc] 1.1.2.1.2.1:
                   3045:        * tests/results/084.processed [template_gc] 1.1.2.1.2.1:
                   3046:        * tests/results/085.processed [template_gc] 1.1.2.1.2.1:
                   3047:        * tests/results/086.processed [template_gc] 1.1.2.1.2.1:
                   3048:        * tests/results/087.processed [template_gc] 1.1.2.1.2.1:
                   3049:        * tests/results/088.processed [template_gc] 1.1.2.1.2.1:
                   3050:        * tests/results/089.processed [template_gc] 1.1.2.1.2.1:
                   3051:        * tests/results/090.processed [template_gc] 1.1.2.1.2.1:
                   3052:        * tests/results/091.processed [template_gc] 1.1.2.1.2.1:
                   3053:        * tests/results/092.processed [template_gc] 1.1.2.1.2.1:
                   3054:        * tests/results/093.processed [template_gc] 1.1.2.1.2.1:
                   3055:        * tests/results/094.processed [template_gc] 1.1.2.1.2.1:
                   3056:        * tests/results/095.processed [template_gc] 1.1.2.1.2.1:
                   3057:        * tests/results/096.processed [template_gc] 1.1.2.1.2.1:
                   3058:        * tests/results/097.processed [template_gc] 1.1.2.1.2.1:
                   3059:        * tests/results/101.processed [template_gc] 1.1.2.1.2.1:
                   3060:        * tests/results/102.processed [template_gc] 1.1.2.1.2.1:
                   3061:        * tests/results/104.processed [template_gc] 1.1.2.1.2.1:
                   3062:        * tests/results/105.processed [template_gc] 1.1.2.1.2.1:
                   3063:        * tests/results/106.processed [template_gc] 1.1.2.1.2.1:
                   3064:        * tests/results/107.processed [template_gc] 1.1.2.1.2.2:
                   3065:        * tests/results/108.processed [template_gc] 1.1.2.1.2.2:
                   3066:        * tests/results/109.processed [template_gc] 1.1.2.1.2.2:
                   3067:        * tests/results/110.processed [template_gc] 1.1.2.1.2.1:
                   3068:        * tests/results/111.processed [template_gc] 1.1.2.1.2.1:
                   3069:        * tests/results/112.processed [template_gc] 1.1.2.1.2.1:
                   3070:        * tests/results/113.processed [template_gc] 1.1.2.1.2.1:
                   3071:        * tests/results/114.processed [template_gc] 1.1.2.1.2.1:
                   3072:        * tests/results/115.processed [template_gc] 1.1.2.1.2.1:
                   3073:        * tests/results/116.processed [template_gc] 1.1.2.1.2.1:
                   3074:        * tests/results/117.processed [template_gc] 1.1.2.1.2.2:
                   3075:        * tests/results/118.processed [template_gc] 1.1.2.1.2.1:
                   3076:        * tests/results/119.processed [template_gc] 1.1.2.1.2.1:
                   3077:        * tests/results/120.processed [template_gc] 1.1.2.1.2.1:
                   3078:        * tests/results/121.processed [template_gc] 1.1.2.2:
                   3079:        * tests/results/122.processed [template_gc] 1.1.2.2:
                   3080:        * tests/results/123.processed [template_gc] 1.1.2.1:
                   3081:        * tests/results/124.processed [template_gc] 1.1.2.1:
                   3082:                new convention: char* never 0. assert in cord on that
                   3083: 
                   3084:        * tests/124.html 1.1:
                   3085:                file 124.html was initially added on branch template_gc.
                   3086: 
                   3087:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.24:
                   3088:                couple more asserts
                   3089: 
                   3090:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.25:
                   3091:        * src/classes/xnode.C [template_gc] 1.54.2.10.2.14:
                   3092:        * src/include/pa_charset.h [template_gc] 1.20.2.18.2.10:
                   3093:                found very old xml (dom) bug:
                   3094:                were passing domString objects and later ERROREOUSLY freed them
                   3095: 
                   3096:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.20:
                   3097:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.21:
                   3098:                bugfix on memory buffer overrun [but that's memory from
                   3099:                gc_malloc, not from g_malloc :(, but would hope]
                   3100: 
                   3101:        * tests/results/123.processed 1.1:
                   3102:                file 123.processed was initially added on branch template_gc.
                   3103: 
                   3104:        * src/include/pa_charset.h [template_gc] 1.20.2.18.2.9:
                   3105:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.23:
                   3106:                little transcodes speedup
                   3107: 
                   3108:        * tests/results/124.processed 1.1:
                   3109:                file 124.processed was initially added on branch template_gc.
                   3110: 
                   3111:        * tests/123.html 1.1:
                   3112:                file 123.html was initially added on branch template_gc.
                   3113: 
                   3114:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.19:
                   3115:                checked custom malloc for returning 0
                   3116: 
                   3117:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.22:
                   3118:                couple assertions on fantastic situations added [may be those
                   3119:                is the case now?]
                   3120: 
                   3121: 2003-04-09  paf
                   3122:        * tests/122.html [template_gc] 1.1.2.1:
                   3123:        * tests/results/122.processed [template_gc] 1.1.2.1:
                   3124:                122 date test <= and == added [after volatile fix. passes on
                   3125:                win&intel-solaris]
                   3126: 
                   3127:        * src/targets/cgi/pp3.cmd [template_gc] 1.1.2.1:
                   3128:                custom profiling script:
                   3129:                plist/ST << Sort by function time
                   3130: 
                   3131:        * src/classes/date.C [template_gc] 1.42.2.11.2.12:
                   3132:                merged ^date.roll changes
                   3133: 
                   3134:        * src/classes/date.C 1.44:
                   3135:                ^date.roll bug fix
                   3136: 
                   3137:        * tests/results/122.processed 1.1:
                   3138:                file 122.processed was initially added on branch template_gc.
                   3139: 
                   3140:        * tests/122.html 1.1:
                   3141:                file 122.html was initially added on branch template_gc.
                   3142: 
                   3143:        * src/classes/date.C 1.43:
                   3144:                ^date.roll now throws less errors:
                   3145:                month shifts handles end of month situation by reducing day number
                   3146:                hour-hole shift reduces hour to recover
                   3147: 
                   3148:        * src/targets/cgi/pp3.cmd 1.1:
                   3149:                file pp3.cmd was initially added on branch template_gc.
                   3150: 
                   3151:        * operators.txt [template_gc] 1.109.2.1.2.5:
                   3152:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.18:
                   3153:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.26:
                   3154:                http://
                   3155:                  $.charset[] param
                   3156:                done
                   3157: 
                   3158: 2003-04-08  paf
                   3159:        * src/main/untaint.C [template_gc] 1.115.2.12.2.21:
                   3160:                CORD_pos_advance turned out to have limit on 'n' param. worked
                   3161:                that around
                   3162: 
                   3163:        * src/main/untaint.C [template_gc] 1.115.2.12.2.22:
                   3164:                removed redundant & in CORD_pos param passing [for it's a
                   3165:                pointer really]
                   3166: 
                   3167:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.24:
                   3168:                merged PA_USE_ALARM bugfix from HEAD
                   3169: 
                   3170:        * src/lib/cord/source.url 1.1:
                   3171:                file source.url was initially added on branch template_gc.
                   3172: 
                   3173:        * src/classes/date.C [template_gc] 1.42.2.11.2.11:
                   3174:        * src/classes/file.C [template_gc] 1.107.2.16.2.14:
                   3175:        * src/classes/hash.C [template_gc] 1.54.2.13.2.15:
                   3176:        * src/classes/op.C [template_gc] 1.127.2.22.2.31:
                   3177:        * src/classes/string.C [template_gc] 1.125.2.15.2.23:
                   3178:        * src/classes/table.C [template_gc] 1.172.2.14.2.26:
                   3179:        * src/include/pa_charset.h [template_gc] 1.20.2.18.2.7:
                   3180:        * src/include/pa_memory.h [template_gc] 1.1.2.9.2.18:
                   3181:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.47:
                   3182:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.34:
                   3183:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.16:
                   3184:        * src/main/pa_exec.C [template_gc] 1.48.2.18.2.15:
                   3185:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.29:
                   3186:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.37:
                   3187:        * src/main/pa_uue.C [template_gc] 1.4.2.5.2.5:
                   3188:        * src/main/untaint.C [template_gc] 1.115.2.12.2.25:
                   3189:        * src/types/pa_vfile.C [template_gc] 1.36.2.10.2.5:
                   3190:        * src/types/pa_vfile.h [template_gc] 1.52.2.16.2.7:
                   3191:        * src/types/pa_vform.C [template_gc] 1.74.2.11.2.6:
                   3192:        * src/types/pa_vform.h [template_gc] 1.45.2.8.2.4:
                   3193:        * src/types/pa_vmail.C [template_gc] 1.40.2.12.2.15:
                   3194:                pa_vform violated String::invariant. started fixing [not
                   3195:                compiled now]
                   3196: 
                   3197:        * src/classes/file.C [template_gc] 1.107.2.16.2.15:
                   3198:        * src/classes/op.C [template_gc] 1.127.2.22.2.32:
                   3199:        * src/classes/table.C [template_gc] 1.172.2.14.2.27:
                   3200:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.24:
                   3201:        * src/include/pa_charset.h [template_gc] 1.20.2.18.2.8:
                   3202:        * src/include/pa_charsets.h [template_gc] 1.8.2.8.2.5:
                   3203:        * src/include/pa_common.h [template_gc] 1.89.2.13.2.11:
                   3204:        * src/include/pa_request_charsets.h [template_gc] 1.1.2.3.2.3:
                   3205:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.17:
                   3206:        * src/main/pa_charsets.C [template_gc] 1.11.2.10.2.4:
                   3207:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.25:
                   3208:        * src/main/pa_exec.C [template_gc] 1.48.2.18.2.16:
                   3209:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.30:
                   3210:        * src/main/untaint.C [template_gc] 1.115.2.12.2.27:
                   3211:        * src/types/pa_value.h [template_gc] 1.109.2.25.2.11:
                   3212:        * src/types/pa_vmail.C [template_gc] 1.40.2.12.2.17:
                   3213:        * src/types/pa_vrequest.C [template_gc] 1.27.2.9.2.5:
                   3214:        * src/types/pa_vresponse.C [template_gc] 1.17.2.6.2.6:
                   3215:                started http://
                   3216:                  $.charset[] param
                   3217:                and
                   3218:                  http response charset detection
                   3219:                just compiled.
                   3220:                todo:test
                   3221: 
                   3222:        * src/classes/string.C [template_gc] 1.125.2.15.2.24:
                   3223:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.48:
                   3224:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.38:
                   3225:        * src/main/untaint.C [template_gc] 1.115.2.12.2.26:
                   3226:        * src/targets/isapi/parser3isapi.C [template_gc] 1.82.2.6.2.6:
                   3227:        * src/types/pa_vform.C [template_gc] 1.74.2.11.2.7:
                   3228:        * src/types/pa_vmail.C [template_gc] 1.40.2.12.2.16:
                   3229:                changed transcode param converntion  along with string creating convention -- all strings are zero-terminated,
                   3230:                this allowed to fix one remaining String("123", 2) case
                   3231: 
                   3232:        * src/include/pa_config_auto.h.in [template_gc] 1.37.2.2.2.3:
                   3233:        * src/lib/cord/Makefile.in [template_gc] 1.1.2.2:
                   3234:                *** empty log message ***
                   3235: 
                   3236:        * src/classes/string.C [template_gc] 1.125.2.15.2.22:
                   3237:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.46:
                   3238:        * src/lib/cord/cordbscs.c [template_gc] 1.1.2.10:
                   3239:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.33:
                   3240:        * src/main/compile.y [template_gc] 1.204.2.8.2.17:
                   3241:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.36:
                   3242:        * src/main/untaint.C [template_gc] 1.115.2.12.2.24:
                   3243:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.23:
                   3244:        * www/htdocs/.htaccess [template_gc] 1.12.6.9.2.12:
                   3245:                number of string style improvements & optimizations
                   3246: 
                   3247:        * src/lib/cord/Makefile.am [template_gc] 1.1.2.2:
                   3248:        * src/lib/cord/cordbscs.c [template_gc] 1.1.2.9:
                   3249:        * src/lib/cord/source.url [template_gc] 1.1.2.1:
                   3250:                From: "Boehm, Hans" <hans_boehm@hp.com>
                   3251:                To: "'Alexandr Petrosian (PAF)'" <PAF@design.ru>; "Boehm, Hans" <hans_boehm@hp.com>
                   3252:                Sent: Tuesday, April 08, 2003 2:16 AM
                   3253:                Subject: RE: libgc 6.2.alpha4 cord/cordbscs.c/CORD_cat bug [were: CORD__extend_path bug?
                   3254:                
                   3255:                
                   3256:                Thanks for the bug report and patch.
                   3257:                
                   3258:                I hadn't looked at this code in a while.  Reading it now, it seems to me that the tests should also be ">= MAX_DEPTH" to comply with the invariant, though that may not matter a lot.  I changed that, too.
                   3259:                
                   3260:                Hans
                   3261: 
                   3262:        * src/classes/xnode.C [template_gc] 1.54.2.10.2.13:
                   3263:                =0 bug fix [left from autoptr default ctor :(]
                   3264: 
                   3265: 2003-04-07  paf
                   3266:        * src/types/pa_vobject.h [template_gc] 1.38.2.10.2.7:
                   3267:                small style change
                   3268: 
                   3269:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.45:
                   3270:        * src/lib/cord/cordbscs.c [template_gc] 1.1.2.8:
                   3271:                CORD_cat bugfix
                   3272: 
                   3273:        * src/include/pa_common.h [template_gc] 1.89.2.13.2.10:
                   3274:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.23:
                   3275:        * src/main/pa_exec.C [template_gc] 1.48.2.18.2.14:
                   3276:                merged from head:safe mode error message now includes numbers
                   3277: 
                   3278:        * src/include/pa_common.h 1.90:
                   3279:        * src/main/pa_common.C 1.149:
                   3280:        * src/main/pa_exec.C 1.50:
                   3281:                safe mode error message now includes numbers
                   3282: 
                   3283:        * src/main/execute.C 1.296:
                   3284:        * src/main/execute.C [template_gc] 1.295.2.27.2.22:
                   3285:                n-th attempt to make a=a work with double.
                   3286:                problem: as_double returns it's result in fp-register
                   3287:                compiler optimizes access to that register after b->as_double,
                   3288:                and just compares ALREADY_STORED_VALUE with prev-calculated a->as_double from memory.
                   3289:                _SAME_ double values do not match here.
                   3290:                when forced to REload fp-register, values do match.
                   3291:                
                   3292:                tried to make them volatile.
                   3293: 
                   3294:        * src/main/untaint.C [template_gc] 1.115.2.12.2.19:
                   3295:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.22:
                   3296:        * www/htdocs/.htaccess [template_gc] 1.12.6.9.2.11:
                   3297:                unknown untaint lang now causes death
                   3298: 
                   3299: 2003-04-04  paf
                   3300:        * src/types/pa_vmail.C 1.44:
                   3301:                mail receive: .txt attachemnts bug fix
                   3302:                http://i2/tasks/edit/?id=4507350336410850921
                   3303: 
                   3304:        * src/main/pa_globals.C 1.154:
                   3305:                exif mem leak
                   3306:                http://i2/tasks/edit/?id=4480590323629807263
                   3307: 
                   3308:        * src/classes/classes.dsp 1.27:
                   3309:        * src/lib/ltdl/libltdl.dsp 1.5:
                   3310:        * src/lib/md5/md5.dsp 1.4:
                   3311:        * src/lib/pcre/pcre.dsp 1.3:
                   3312:        * src/main/compile.tab.C 1.82:
                   3313:        * src/main/main.dsp 1.163:
                   3314:        * src/main/pa_globals.C 1.153:
                   3315:        * src/targets/cgi/parser3.dsp 1.62:
                   3316:        * src/types/types.dsp 1.38:
                   3317:                links to xml libs made relative, no need to unpack
                   3318:                parser3project to /parser3project.
                   3319: 
                   3320:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.31:
                   3321:        * src/main/compile.y [template_gc] 1.204.2.8.2.15:
                   3322:                more understandable error message in case @CLASS with more then
                   3323:                one line inside
                   3324: 
                   3325:        * src/classes/classes.dsp 1.28:
                   3326:        * src/main/main.dsp 1.164:
                   3327:        * src/targets/cgi/parser3.dsp 1.63:
                   3328:        * src/types/pa_vmail.C 1.43:
                   3329:        * src/types/types.dsp 1.39:
                   3330:                buf fix http://i2/tasks/edit/?id=4493946731322521294
                   3331:                $.to[billgates@microsoft.com
                   3332:                BCc: send-spam-to@someemails.ru
                   3333:                ]
                   3334: 
                   3335:        * src/classes/file.C 1.110:
                   3336:        * src/include/pa_exec.h 1.12:
                   3337:        * src/main/pa_exec.C 1.49:
                   3338:                incorportated pa_exec patch by
                   3339:                From: "Victor Fedoseev" <vvf_ru@mail.ru>
                   3340:                To: "Alexandr Petrosian (PAF)" <PAF@design.ru>
                   3341:                Sent: Thursday, January 23, 2003 9:14 AM
                   3342:                
                   3343:                huge speedup on ^file::cgi with big result
                   3344: 
                   3345:        * configure [template_gc] 1.66.2.5.2.7:
                   3346:        * tests/Makefile [template_gc] 1.1.2.8.2.8:
                   3347:        * tests/Makefile [template_gc] 1.1.2.8.2.9:
                   3348:                *** empty log message ***
                   3349: 
                   3350:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.21:
                   3351:                more understandable error message in case of errors in @unhandled_exception
                   3352: 
                   3353:        * src/classes/math.C 1.25:
                   3354:                allowed random 1...
                   3355: 
                   3356:        * src/classes/xdoc.C 1.109:
                   3357:                memory allocation func bugfix
                   3358:                http://i2/tasks/edit/?id=4499303470368629745
                   3359: 
1.24      paf      3360:        * src/classes/table.C 1.173:
                   3361:                sort table with 0 rows bug fixed
                   3362: 
1.23      paf      3363:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.32:
                   3364:        * src/main/compile.y [template_gc] 1.204.2.8.2.16:
                   3365:        * src/main/compile_tools.h [template_gc] 1.67.2.8.2.11:
                   3366:                error column more precise - tab handling bug fixed
                   3367: 
1.24      paf      3368:        * src/classes/math.C [template_gc] 1.24.2.12.2.11:
                   3369:                allowed random 0..
                   3370: 
1.23      paf      3371:        * src/classes/hash.C 1.55:
                   3372:        * src/types/pa_vhash.h 1.44:
                   3373:                $hash._default showed in foreach & co bug fix
                   3374:                http://i2/tasks/edit/?id=4493701604654042676
                   3375:                
                   3376:                @main[]
                   3377:                $with_default[
                   3378:                        $.a[1]
                   3379:                        $._default[default from with_default]
                   3380:                ]
                   3381:                ^show[$with_default]
                   3382:                
                   3383:                $to_add_to[
                   3384:                        $.b[2]
                   3385:                ]
                   3386:                ^to_add_to.add[$with_default]
                   3387:                =$to_add_to.xxx=<br>
                   3388:                
                   3389:                
                   3390:                ^show[$to_add_to]
                   3391:                
                   3392:                
                   3393:                $cloned[^hash::create[$with_default]]
                   3394:                =$cloned.xxx=<br>
                   3395:                ^show[$cloned]
                   3396:                
                   3397:                
                   3398:                @show[hash]
                   3399:                ^hash.foreach[k;v]{
                   3400:                        $k = $v <br>
                   3401:                
                   3402:                }
                   3403:                <hr>
                   3404: 
                   3405: 2003-04-03  paf
                   3406:        * src/classes/op.C [template_gc] 1.127.2.22.2.23:
                   3407:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.18:
                   3408:        * src/include/pa_stack.h [template_gc] 1.17.2.6.2.6:
                   3409:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.23:
                   3410:        * src/main/execute.C [template_gc] 1.295.2.27.2.16:
                   3411:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.22:
                   3412:                strack trace reset after handled exception [old bug fixed]
                   3413: 
                   3414:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.22:
                   3415:        * src/main/compile.y [template_gc] 1.204.2.8.2.10:
                   3416:                parse position old bug fixed.
                   3417:                position reporting made precise [both, in parse erros and runtime errors]
                   3418: 
                   3419:        * operators.txt [template_gc] 1.109.2.1.2.4:
                   3420:        * src/classes/date.C [template_gc] 1.42.2.11.2.10:
                   3421:        * src/classes/date.C [template_gc] 1.42.2.11.2.9:
                   3422:        * src/classes/double.C [template_gc] 1.53.2.8.2.4:
                   3423:        * src/classes/file.C [template_gc] 1.107.2.16.2.13:
                   3424:        * src/classes/hash.C [template_gc] 1.54.2.13.2.14:
                   3425:        * src/classes/image.C [template_gc] 1.90.2.15.2.20:
                   3426:        * src/classes/image.C [template_gc] 1.90.2.15.2.21:
                   3427:        * src/classes/int.C [template_gc] 1.49.2.7.2.5:
                   3428:        * src/classes/mail.C [template_gc] 1.88.2.16.2.17:
                   3429:        * src/classes/math.C [template_gc] 1.24.2.12.2.9:
                   3430:        * src/classes/memory.C [template_gc] 1.1.2.4:
                   3431:        * src/classes/op.C [template_gc] 1.127.2.22.2.27:
                   3432:        * src/classes/op.C [template_gc] 1.127.2.22.2.28:
                   3433:        * src/classes/response.C [template_gc] 1.23.2.8.2.3:
                   3434:        * src/classes/string.C [template_gc] 1.125.2.15.2.20:
                   3435:        * src/classes/string.C [template_gc] 1.125.2.15.2.21:
                   3436:        * src/classes/table.C [template_gc] 1.172.2.14.2.24:
                   3437:        * src/classes/table.C [template_gc] 1.172.2.14.2.25:
                   3438:        * src/classes/void.C [template_gc] 1.28.2.5.2.9:
                   3439:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.22:
                   3440:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.23:
                   3441:        * src/classes/xnode.C [template_gc] 1.54.2.10.2.12:
                   3442:        * src/classes/xnode.h [template_gc] 1.18.2.6.2.7:
                   3443:        * src/main/execute.C [template_gc] 1.295.2.27.2.19:
                   3444:        * src/types/pa_method.h [template_gc] 1.1.2.4.2.5:
                   3445:        * src/types/pa_vmethod_frame.h [template_gc] 1.45.2.8.2.12:
                   3446:                MethodParams& now [methods without params receive zero
                   3447:                reference, but they are expected not to look there]
                   3448: 
                   3449:        * src/main/execute.C [template_gc] 1.295.2.27.2.18:
                   3450:        * src/types/pa_value.C [template_gc] 1.9.2.15.2.11:
                   3451:        * src/types/pa_value.h [template_gc] 1.109.2.25.2.10:
                   3452:        * src/types/pa_vstring.h [template_gc] 1.54.2.11.2.5:
                   3453:                slightly improved error messages text:
                   3454:                1. is '%s', it
                   3455:                2. method undefined in case of ^void[]
                   3456: 
1.24      paf      3457:        * src/lib/Makefile.in [template_gc] 1.8.2.3.2.2:
                   3458:                removed 'patches'
                   3459: 
1.23      paf      3460:        * src/classes/math.C [template_gc] 1.24.2.12.2.10:
                   3461:                top limit
                   3462: 
                   3463:        * src/classes/op.C [template_gc] 1.127.2.22.2.24:
                   3464:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.19:
                   3465:                removed from trace 'a' exception when
                   3466:                ^try{
                   3467:                   ^throw[a;1]
                   3468:                }{
                   3469:                   ^throw[b;2]
                   3470:                }
                   3471:                
                   3472:                this makes life easier: were: bad stack order -- were in exception catch unwind order, which didn't match execution order
                   3473:                
                   3474:                
                   3475:                @main[]
                   3476:                ^try{
                   3477:                        ^first[]
                   3478:                }{
                   3479:                        ^throw[c;3]
                   3480:                }
                   3481:                
                   3482:                @first[]
                   3483:                ^throw[a;1]
                   3484:                
                   3485:                showed
                   3486:                throw a
                   3487:                first
                   3488:                throw b
                   3489:                try
                   3490:                
                   3491:                which is no good
                   3492: 
                   3493:        * src/classes/op.C [template_gc] 1.127.2.22.2.30:
                   3494:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.26:
                   3495:        * tests/042.html [template_gc] 1.1.2.1.2.1:
                   3496:                test 042 changed to realities, and passed [bug fixed]
                   3497: 
                   3498:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.25:
                   3499:        * src/main/compile.y [template_gc] 1.204.2.8.2.12:
                   3500:                *** empty log message ***
                   3501: 
                   3502:        * operators.txt [template_gc] 1.109.2.1.2.3:
                   3503:        * src/classes/op.C [template_gc] 1.127.2.22.2.26:
                   3504:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.21:
                   3505:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.24:
                   3506:        * src/types/pa_vmethod_frame.h [template_gc] 1.45.2.8.2.11:
                   3507:                ^process...[filename]
                   3508:                useful for better error reporting  [file/line/col]
                   3509: 
                   3510:        * INSTALL [template_gc] 1.31.6.2:
                   3511:        * src/include/pa_operation.h [template_gc] 1.1.2.6.2.5:
                   3512:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.23:
                   3513:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.29:
                   3514:        * src/main/compile.y [template_gc] 1.204.2.8.2.14:
                   3515:        * src/main/compile_tools.C [template_gc] 1.54.2.5.2.11:
                   3516:        * src/main/compile_tools.h [template_gc] 1.67.2.8.2.10:
                   3517:        * src/main/execute.C [template_gc] 1.295.2.27.2.20:
                   3518:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.27:
                   3519:                debug info format simplified, now it's:
                   3520:                OP_VALUE
                   3521:                Operation::Origin << here
                   3522:                value*
                   3523:                
                   3524:                higher limits:
                   3525:                  file number (max: 255)
                   3526:                  line number (max: 64535)
                   3527:                  column number (max: 255)
                   3528: 
                   3529:        * src/main/compile.C [template_gc] 1.69.2.6.2.8:
                   3530:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.27:
                   3531:        * src/main/compile.y [template_gc] 1.204.2.8.2.13:
                   3532:        * src/main/compile_tools.h [template_gc] 1.67.2.8.2.9:
                   3533:                precise parse error position in case of
                   3534:                
                   3535:                ^bug
                   3536:                ]
                   3537: 
                   3538:        * src/classes/op.C [template_gc] 1.127.2.22.2.25:
                   3539:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.20:
                   3540:        * src/include/pa_stack.h [template_gc] 1.17.2.6.2.7:
                   3541:        * src/include/pa_types.h [template_gc] 1.44.2.3.2.1:
                   3542:        * src/main/execute.C [template_gc] 1.295.2.27.2.17:
                   3543:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.23:
                   3544:                exception handling done. now we have error columns
                   3545:                todo: test it
                   3546: 
                   3547:        * src/classes/op.C [template_gc] 1.127.2.22.2.29:
                   3548:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.22:
                   3549:        * src/main/compile.C [template_gc] 1.69.2.6.2.7:
                   3550:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.24:
                   3551:        * src/main/compile.y [template_gc] 1.204.2.8.2.11:
                   3552:        * src/main/compile_tools.C [template_gc] 1.54.2.5.2.10:
                   3553:        * src/main/compile_tools.h [template_gc] 1.67.2.8.2.8:
                   3554:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.25:
                   3555:                introducing ^process...[main-method-alias]
                   3556: 
                   3557: 2003-04-02  paf
                   3558:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.21:
                   3559:        * src/types/pa_vxdoc.h [template_gc] 1.31.2.9.2.10:
                   3560:                removed ref leak in xdoc::create/load
                   3561: 
                   3562:        * src/classes/op.C [template_gc] 1.127.2.22.2.22:
                   3563:        * src/include/pa_operation.h [template_gc] 1.1.2.6.2.3:
                   3564:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.16:
                   3565:        * src/main/compile.C [template_gc] 1.69.2.6.2.5:
                   3566:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.20:
                   3567:        * src/main/compile.y [template_gc] 1.204.2.8.2.8:
                   3568:        * src/main/compile_tools.C [template_gc] 1.54.2.5.2.8:
                   3569:        * src/main/compile_tools.h [template_gc] 1.67.2.8.2.6:
                   3570:        * src/main/execute.C [template_gc] 1.295.2.27.2.14:
                   3571:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.20:
                   3572:        * www/htdocs/.htaccess [template_gc] 1.12.6.9.2.9:
                   3573:                prepared debug info
                   3574:                todo:use it
                   3575: 
                   3576:        * src/main/pa_dictionary.C [template_gc] 1.17.2.6.2.6:
                   3577:        * tests/Makefile [template_gc] 1.1.2.8.2.6:
                   3578:                replace bug fix [broke Dictionary constructor when moved to gc]
                   3579: 
                   3580:        * src/classes/op.C [template_gc] 1.127.2.22.2.21:
                   3581:        * src/classes/table.C [template_gc] 1.172.2.14.2.22:
                   3582:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.15:
                   3583:        * src/main/compile_tools.C [template_gc] 1.54.2.5.2.7:
                   3584:        * src/main/execute.C [template_gc] 1.295.2.27.2.12:
                   3585:        * src/types/pa_value.h [template_gc] 1.109.2.25.2.9:
                   3586:        * src/types/pa_vbool.h [template_gc] 1.21.2.3.2.2:
                   3587:        * src/types/pa_vclass.h [template_gc] 1.39.2.5.2.4:
                   3588:        * src/types/pa_vdate.h [template_gc] 1.24.2.5.2.4:
                   3589:        * src/types/pa_vdouble.h [template_gc] 1.42.2.9.2.3:
                   3590:        * src/types/pa_vfile.h [template_gc] 1.52.2.16.2.6:
                   3591:        * src/types/pa_vhash.h [template_gc] 1.43.2.14.2.6:
                   3592:        * src/types/pa_vimage.h [template_gc] 1.34.2.8.2.7:
                   3593:        * src/types/pa_vint.h [template_gc] 1.38.2.10.2.4:
                   3594:        * src/types/pa_vjunction.h [template_gc] 1.19.2.5.2.2:
                   3595:        * src/types/pa_vobject.C [template_gc] 1.12.2.7.2.8:
                   3596:        * src/types/pa_vobject.h [template_gc] 1.38.2.10.2.6:
                   3597:        * src/types/pa_vstring.h [template_gc] 1.54.2.11.2.4:
                   3598:        * src/types/pa_vtable.h [template_gc] 1.48.2.8.2.6:
                   3599:        * src/types/pa_vvoid.h [template_gc] 1.17.2.8.2.3:
                   3600:        * src/types/pa_vxdoc.h [template_gc] 1.31.2.9.2.9:
                   3601:        * src/types/pa_vxnode.h [template_gc] 1.22.2.6.2.7:
                   3602:                more locally scoped vars in execute (more easily optimizable)
                   3603: 
                   3604:        * src/lib/patches/gdome2.patch [template_gc] 1.1.6.1:
                   3605:                starting in gdome 0.7.4 this is no longer needed [author
                   3606:                applied my patch]
                   3607: 
                   3608:        * src/include/pa_operation.h [template_gc] 1.1.2.6.2.4:
                   3609:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.17:
                   3610:        * src/main/compile.C [template_gc] 1.69.2.6.2.6:
                   3611:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.21:
                   3612:        * src/main/compile.y [template_gc] 1.204.2.8.2.9:
                   3613:        * src/main/compile_tools.C [template_gc] 1.54.2.5.2.9:
                   3614:        * src/main/compile_tools.h [template_gc] 1.67.2.8.2.7:
                   3615:        * src/main/execute.C [template_gc] 1.295.2.27.2.15:
                   3616:        * src/main/pa_exception.C [template_gc] 1.43.2.15.2.9:
                   3617:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.21:
                   3618:                debug info: started using.
                   3619:                todo:complete
                   3620: 
                   3621:        * src/lib/patches/Makefile.am [template_gc] 1.3.6.1:
                   3622:        * src/lib/patches/Makefile.in [template_gc] 1.10.2.3.2.2:
                   3623:                not patches now
                   3624: 
                   3625:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.21:
                   3626:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.22:
                   3627:        * www/htdocs/.htaccess [template_gc] 1.12.6.9.2.6:
                   3628:                uncommented http:// file loading
                   3629: 
                   3630:        * tests/Makefile [template_gc] 1.1.2.8.2.7:
                   3631:        * tests/results/108.processed [template_gc] 1.1.2.1.2.1:
                   3632:        * tests/results/117.processed [template_gc] 1.1.2.1.2.1:
                   3633:                meta considered OK [it's up to coder now to remove it not
                   3634:                needed]
                   3635: 
                   3636:        * configure [template_gc] 1.66.2.5.2.3:
                   3637:        * src/include/pa_config_auto.h.in [template_gc] 1.37.2.2.2.2:
                   3638:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.14:
                   3639:                --enable-assertions autoconf-ed
                   3640: 
                   3641:        * src/include/pa_array.h [template_gc] 1.57.2.27.2.12:
                   3642:        * src/include/pa_stack.h [template_gc] 1.17.2.6.2.4:
                   3643:        * src/main/main.dsp [template_gc] 1.161.6.14.2.8:
                   3644:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.19:
                   3645:                array::get/put inlined
                   3646: 
                   3647:        * src/include/pa_array.h [template_gc] 1.57.2.27.2.14:
                   3648:        * src/main/execute.C [template_gc] 1.295.2.27.2.13:
                   3649:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.20:
                   3650:        * tests/run_parser.sh [template_gc] 1.1.2.1.2.1:
                   3651:                gif encoder bug fix [gdGrowingBuf]
                   3652: 
                   3653:        * src/classes/form.C [template_gc] 1.34.2.7.2.7:
                   3654:        * src/classes/hash.C [template_gc] 1.54.2.13.2.13:
                   3655:        * src/classes/image.C [template_gc] 1.90.2.15.2.19:
                   3656:        * src/classes/string.C [template_gc] 1.125.2.15.2.19:
                   3657:        * src/classes/table.C [template_gc] 1.172.2.14.2.23:
                   3658:        * src/classes/void.C [template_gc] 1.28.2.5.2.8:
                   3659:        * src/include/pa_common.h [template_gc] 1.89.2.13.2.9:
                   3660:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.20:
                   3661:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.19:
                   3662:        * src/main/pa_sql_driver_manager.C [template_gc] 1.69.2.17.2.12:
                   3663:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.35:
                   3664:                all calls to String::String(str,helper_length) are checked.
                   3665:                found/fixed one place:
                   3666:                $request:body now zero-terminated,
                   3667: 
                   3668:        * src/lib/patches/libxslt.patch [template_gc] 1.1.6.1:
                   3669:                decided against patching -- one can remove that header in @
                   3670:                postprocess, if he/she wants to
                   3671: 
                   3672:        * src/include/pa_operation.h [template_gc] 1.1.2.6.2.2:
                   3673:                strange mistake fixed: forgot to return Operation class->union
                   3674:                after switching from autoptrs.
                   3675: 
                   3676:        * configure.in [template_gc] 1.62.2.5.2.4:
                   3677:        * src/lib/Makefile.am [template_gc] 1.3.10.2:
                   3678:        * www/htdocs/.htaccess [template_gc] 1.12.6.9.2.8:
                   3679:                removed patches
                   3680: 
                   3681:        * configure [template_gc] 1.66.2.5.2.4:
                   3682:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.15:
                   3683:        * src/main/pa_globals.C [template_gc] 1.152.2.19.2.14:
                   3684:                *** empty log message ***
                   3685: 
                   3686:        * configure.in [template_gc] 1.62.2.5.2.3:
                   3687:        * src/classes/xnode.C [template_gc] 1.54.2.10.2.11:
                   3688:        * src/include/pa_config_fixed.h [template_gc] 1.54.2.5.2.5:
                   3689:        * src/include/pa_config_includes.h [template_gc] 1.23.2.5.2.2:
                   3690:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.43:
                   3691:        * src/lib/cord/cordbscs.c [template_gc] 1.1.2.6:
                   3692:        * src/main/pa_memory.C [template_gc] 1.1.2.5.2.11:
                   3693:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.18:
                   3694:                converted debug hacks to ANSI assertions
                   3695:                started configure.in --enable-assertions
                   3696: 
                   3697:        * src/include/pa_array.h [template_gc] 1.57.2.27.2.13:
                   3698:        * src/include/pa_stack.h [template_gc] 1.17.2.6.2.5:
                   3699:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.44:
                   3700:        * src/main/compile_tools.C [template_gc] 1.54.2.5.2.6:
                   3701:        * src/main/main.dsp [template_gc] 1.161.6.14.2.9:
                   3702:        * src/main/pa_table.C [template_gc] 1.53.2.10.2.4:
                   3703:        * src/types/pa_vmethod_frame.C [template_gc] 1.1.2.5.2.10:
                   3704:                array get/put check become assertion
                   3705:                iterator in methodframe filler
                   3706: 
                   3707:        * src/lib/cord/cordbscs.c [template_gc] 1.1.2.7:
                   3708:        * src/main/pa_globals.C [template_gc] 1.152.2.19.2.13:
                   3709:                globals.c: gc_substitute_memory_management_functions
                   3710:                +installed CORD_oom function
                   3711: 
                   3712:        * src/lib/patches/libxml2.patch [template_gc] 1.1.6.1:
                   3713:                found a way of dealing with charset tables without patching
                   3714:                library [price: imposed limit of 10 user-defined charsets, but
                   3715:                limit can be easily increased]
                   3716: 
                   3717:        * src/classes/table.C [template_gc] 1.172.2.14.2.21:
                   3718:        * src/include/pa_table.h [template_gc] 1.48.2.11.2.7:
                   3719:        * src/main/pa_table.C [template_gc] 1.53.2.10.2.5:
                   3720:                few for(size_t i=0...) -> for(Array_iterator... i(..); i
                   3721:                has_next()
                   3722: 
                   3723: 2003-04-01  paf
                   3724:        * src/lib/gc/Makefile.am 1.1:
                   3725:        * src/lib/gc/include/Makefile.am 1.1:
                   3726:                file Makefile.am was initially added on branch template_gc.
                   3727: 
                   3728:        * src/classes/classes.dsp [template_gc] 1.25.10.5.2.8:
                   3729:        * src/include/pa_config_fixed.h [template_gc] 1.54.2.5.2.4:
                   3730:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.19:
                   3731:        * src/main/main.dsp [template_gc] 1.161.6.14.2.7:
                   3732:        * src/main/pa_globals.C [template_gc] 1.152.2.19.2.10:
                   3733:        * src/targets/apache13/ApacheModuleParser3.dsp [template_gc] 1.16.12.1.2.1:
                   3734:        * src/targets/cgi/parser3.dsp [template_gc] 1.60.10.2.2.12:
                   3735:        * src/targets/isapi/parser3isapi.dsp [template_gc] 1.41.12.1.2.2:
                   3736:        * src/types/types.dsp [template_gc] 1.35.10.9.2.8:
                   3737:                prepared xml-static configuration
                   3738: 
                   3739:        * src/main/pa_globals.C [template_gc] 1.152.2.19.2.11:
                   3740:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.16:
                   3741:                xml memory debugging showed no errors. todo: debug parser memory
                   3742: 
                   3743:        * src/main/pa_memory.C [template_gc] 1.1.2.5.2.9:
                   3744:                bug() to set bpt in (memory.c)
                   3745:                some .am changes
                   3746: 
                   3747:        * src/lib/gc/Makefile.in 1.1:
                   3748:        * src/lib/gc/include/Makefile.in 1.1:
                   3749:                file Makefile.in was initially added on branch template_gc.
                   3750: 
                   3751:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.20:
                   3752:        * src/classes/xnode.h [template_gc] 1.18.2.6.2.6:
                   3753:        * src/include/pa_memory.h [template_gc] 1.1.2.9.2.17:
                   3754:        * src/main/pa_memory.C [template_gc] 1.1.2.5.2.10:
                   3755:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.17:
                   3756:        * src/types/pa_vxdoc.h [template_gc] 1.31.2.9.2.8:
                   3757:        * src/types/pa_vxnode.C [template_gc] 1.30.2.5.2.8:
                   3758:        * src/types/pa_vxnode.h [template_gc] 1.22.2.6.2.6:
                   3759:        * www/htdocs/.htaccess [template_gc] 1.12.6.9.2.5:
                   3760:                memory bug debugged down: gdome uses glib memory, and stores last pointer to xmlDoc there, gc misses that and collects valid memory
                   3761:                fixed by remembering xmlDoc from dom object in xdoc.
                   3762:                todo: do something with premature free of xdoc with xnodes/node values referring into it
                   3763: 
                   3764:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.15:
                   3765:        * src/targets/cgi/parser3.dsp [template_gc] 1.60.10.2.2.13:
                   3766:                more build configurations
                   3767: 
                   3768:        * src/include/pa_memory.h [template_gc] 1.1.2.9.2.16:
                   3769:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.18:
                   3770:        * src/main/pa_globals.C [template_gc] 1.152.2.19.2.12:
                   3771:        * src/main/pa_memory.C [template_gc] 1.1.2.5.2.8:
                   3772:                moved memory debugging to global level: to pa_gc_malloc
                   3773: 
                   3774:        * src/lib/gc/Makefile.am [template_gc] 1.1.2.1:
                   3775:        * src/lib/gc/Makefile.in [template_gc] 1.1.2.1:
                   3776:        * src/lib/gc/include/Makefile.am [template_gc] 1.1.2.1:
                   3777:        * src/lib/gc/include/Makefile.in [template_gc] 1.1.2.1:
                   3778:                *** empty log message ***
                   3779: 
                   3780:        * src/classes/mail.C [template_gc] 1.88.2.16.2.15:
                   3781:        * src/classes/mail.C [template_gc] 1.88.2.16.2.16:
                   3782:                typo fix
                   3783: 
                   3784: 2003-03-31  paf
                   3785:        * INSTALL [template_gc] 1.31.6.1:
                   3786:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.19:
                   3787:        * src/main/pa_globals.C [template_gc] 1.152.2.19.2.9:
                   3788:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.14:
                   3789:        * src/targets/cgi/parser3.dsp [template_gc] 1.60.10.2.2.11:
                   3790:        * www/htdocs/.htaccess [template_gc] 1.12.6.9.2.4:
                   3791:                started xml lib memory debugging, simple checks failed:
                   3792:                it seems that library does realloc(bad ptr), and recording those ptrs in heap [for debugging] was bad:
                   3793:                heap situation changes = everything works fine
                   3794: 
                   3795:        * src/include/pa_charset.h [template_gc] 1.20.2.18.2.6:
                   3796:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.13:
                   3797:                worked around  xmlRegisterCharEncodingHandler limitation [
                   3798:                currently imposed limit of 10 user-defined charsets]
                   3799: 
                   3800: 2003-03-28  paf
                   3801:        * src/main/execute.C [template_gc] 1.295.2.27.2.11:
                   3802:                execution stack copied to local
                   3803:                register
                   3804:                variable, removed lots [~2e7) of memory accesses
                   3805: 
                   3806: 2003-03-27  paf
                   3807:        * src/classes/string.C [template_gc] 1.125.2.15.2.17:
                   3808:        * src/classes/table.C [template_gc] 1.172.2.14.2.19:
                   3809:        * src/include/pa_array.h [template_gc] 1.57.2.27.2.9:
                   3810:        * src/include/pa_stack.h [template_gc] 1.17.2.6.2.3:
                   3811:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.40:
                   3812:        * src/main/compile_tools.C [template_gc] 1.54.2.5.2.5:
                   3813:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.33:
                   3814:        * src/main/untaint.C [template_gc] 1.115.2.12.2.18:
                   3815:        * src/types/pa_vmethod_frame.C [template_gc] 1.1.2.5.2.9:
                   3816:                fixed clients of &get():
                   3817:                most to use non-ref version,
                   3818:                some[in tight places] to get_unchecked_ref
                   3819: 
                   3820:        * src/classes/date.C [template_gc] 1.42.2.11.2.8:
                   3821:        * src/classes/file.C [template_gc] 1.107.2.16.2.12:
                   3822:        * src/classes/hash.C [template_gc] 1.54.2.13.2.12:
                   3823:        * src/classes/string.C [template_gc] 1.125.2.15.2.18:
                   3824:        * src/classes/table.C [template_gc] 1.172.2.14.2.20:
                   3825:        * src/classes/void.C [template_gc] 1.28.2.5.2.7:
                   3826:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.41:
                   3827:        * src/lib/cord/cord.dsp [template_gc] 1.1.2.8:
                   3828:        * src/lib/cord/cordbscs.c [template_gc] 1.1.2.5:
                   3829:        * src/lib/cord/include/cord.h [template_gc] 1.1.2.2:
                   3830:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.16:
                   3831:        * src/main/compile.y [template_gc] 1.204.2.8.2.7:
                   3832:        * src/main/compile_tools.h [template_gc] 1.67.2.8.2.5:
                   3833:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.17:
                   3834:        * src/main/pa_exec.C [template_gc] 1.48.2.18.2.12:
                   3835:        * src/main/pa_exec.C [template_gc] 1.48.2.18.2.13:
                   3836:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.18:
                   3837:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.34:
                   3838:        * src/main/pa_uue.C [template_gc] 1.4.2.5.2.4:
                   3839:        * src/sql/pa_sql_driver.h [template_gc] 1.34.2.4.2.4:
                   3840:        * src/types/pa_value.C [template_gc] 1.9.2.15.2.10:
                   3841:        * src/types/pa_venv.h [template_gc] 1.28.2.5.2.5:
                   3842:        * src/types/pa_vfile.C [template_gc] 1.36.2.10.2.4:
                   3843:        * src/types/pa_vmail.C [template_gc] 1.40.2.12.2.14:
                   3844:                introducing append_help_length [radical improvement here]
                   3845: 
                   3846:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.12:
                   3847:                GC_java_finalization turned off [was 'not recommened' in gc.h, 
                   3848:                on win32 noticed no difference]
                   3849: 
                   3850:        * src/include/pa_array.h [template_gc] 1.57.2.27.2.11:
                   3851:                returned checked array get [were disabled for debugging]
                   3852:                result:not slower [don't understand that, it were INLINED]
                   3853:                todo: find out a way of inlining it!
                   3854: 
                   3855:        * src/classes/memory.C [template_gc] 1.1.2.3:
                   3856:        * src/include/pa_array.h [template_gc] 1.57.2.27.2.10:
                   3857:        * src/include/pa_hash.h [template_gc] 1.58.2.18.2.7:
                   3858:        * src/include/pa_memory.h [template_gc] 1.1.2.9.2.15:
                   3859:        * src/lib/cord/cord.dsp [template_gc] 1.1.2.7:
                   3860:        * src/lib/cord/cordxtra.c [template_gc] 1.1.2.3:
                   3861:        * src/lib/gc/include/gc.h [template_gc] 1.1.2.2:
                   3862:        * src/main/pa_memory.C [template_gc] 1.1.2.5.2.6:
                   3863:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.10:
                   3864:        * src/targets/cgi/parser3.dsp [template_gc] 1.60.10.2.2.9:
                   3865:        * src/types/pa_vstatus.C [template_gc] 1.15.2.6.2.7:
                   3866:                disabled gc, become even slower
                   3867: 
                   3868:        * src/classes/classes.dsp [template_gc] 1.25.10.5.2.7:
                   3869:        * src/classes/memory.C [template_gc] 1.1.2.2:
                   3870:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.16:
                   3871:        * src/include/pa_array.h [template_gc] 1.57.2.27.2.8:
                   3872:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.14:
                   3873:        * src/include/pa_stack.h [template_gc] 1.17.2.6.2.2:
                   3874:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.39:
                   3875:        * src/lib/cord/cord.dsp [template_gc] 1.1.2.6:
                   3876:        * src/lib/ltdl/libltdl.dsp [template_gc] 1.3.2.2.2.4:
                   3877:        * src/lib/md5/md5.dsp [template_gc] 1.2.10.2.2.3:
                   3878:        * src/lib/pcre/pcre.dsp [template_gc] 1.1.14.1.2.3:
                   3879:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.15:
                   3880:        * src/main/compile.y [template_gc] 1.204.2.8.2.6:
                   3881:        * src/main/compile_tools.C [template_gc] 1.54.2.5.2.4:
                   3882:        * src/main/compile_tools.h [template_gc] 1.67.2.8.2.4:
                   3883:        * src/main/main.dsp [template_gc] 1.161.6.14.2.6:
                   3884:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.32:
                   3885:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.9:
                   3886:        * src/targets/cgi/parser3.dsp [template_gc] 1.60.10.2.2.8:
                   3887:        * src/types/pa_vmail.C [template_gc] 1.40.2.12.2.13:
                   3888:        * src/types/pa_vmethod_frame.C [template_gc] 1.1.2.5.2.8:
                   3889:        * src/types/types.dsp [template_gc] 1.35.10.9.2.7:
                   3890:        * www/htdocs/.htaccess [template_gc] 1.12.6.9.2.3:
                   3891:                Array::put(index, T>>&<< removed
                   3892:                after Stack::pop wiping removed [moved to separate func]
                   3893:                other Array & removed
                   3894: 
                   3895:        * src/lib/gc/include/gc_fake.h 1.1:
                   3896:                file gc_fake.h was initially added on branch template_gc.
                   3897: 
                   3898:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.42:
                   3899:        * src/lib/gc/include/gc.h [template_gc] 1.1.2.3:
                   3900:        * src/lib/gc/include/gc_fake.h [template_gc] 1.1.2.1:
                   3901:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.17:
                   3902:        * src/main/pa_memory.C [template_gc] 1.1.2.5.2.7:
                   3903:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.11:
                   3904:        * src/targets/cgi/parser3.dsp [template_gc] 1.60.10.2.2.10:
                   3905:                convention changed: all resulting strings are zero-terminated
                   3906: 
                   3907:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.17:
                   3908:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.18:
                   3909:        * src/main/pa_globals.C [template_gc] 1.152.2.19.2.6:
                   3910:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.13:
                   3911:                forgot to merge XML memory funcs replacement from gc branch
                   3912: 
                   3913:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.18:
                   3914:        * src/main/pa_globals.C [template_gc] 1.152.2.19.2.7:
                   3915:                XML memory funcs to GC works in debug, but fails in release
                   3916:                todo: fix that
                   3917: 
                   3918:        * src/doc/memory.dox 1.1:
                   3919:                file memory.dox was initially added on branch template_gc.
                   3920: 
                   3921:        * src/doc/memory.dox [template_gc] 1.1.2.1:
                   3922:                forgot to add
                   3923: 
                   3924: 2003-03-26  paf
                   3925:        * src/lib/cord/include/private/cord_pos.h 1.1:
                   3926:                file cord_pos.h was initially added on branch template_gc.
                   3927: 
                   3928:        * src/classes/classes.dsp [template_gc] 1.25.10.5.2.6:
                   3929:        * src/classes/file.C [template_gc] 1.107.2.16.2.11:
                   3930:        * src/classes/op.C [template_gc] 1.127.2.22.2.20:
                   3931:        * src/classes/table.C [template_gc] 1.172.2.14.2.18:
                   3932:        * src/include/pa_array.h [template_gc] 1.57.2.27.2.7:
                   3933:        * src/include/pa_charset.h [template_gc] 1.20.2.18.2.5:
                   3934:        * src/include/pa_stack.h [template_gc] 1.17.2.6.2.1:
                   3935:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.38:
                   3936:        * src/include/pa_table.h [template_gc] 1.48.2.11.2.6:
                   3937:        * src/lib/cord/cord.dsp [template_gc] 1.1.2.5:
                   3938:        * src/lib/ltdl/libltdl.dsp [template_gc] 1.3.2.2.2.3:
                   3939:        * src/lib/md5/md5.dsp [template_gc] 1.2.10.2.2.2:
                   3940:        * src/lib/pcre/pcre.dsp [template_gc] 1.1.14.1.2.2:
                   3941:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.14:
                   3942:        * src/main/compile.y [template_gc] 1.204.2.8.2.5:
                   3943:        * src/main/main.dsp [template_gc] 1.161.6.14.2.5:
                   3944:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.12:
                   3945:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.16:
                   3946:        * src/main/pa_exec.C [template_gc] 1.48.2.18.2.11:
                   3947:        * src/main/pa_sql_driver_manager.C [template_gc] 1.69.2.17.2.11:
                   3948:        * src/main/pa_stylesheet_manager.C [template_gc] 1.16.2.7.2.7:
                   3949:        * src/main/pa_table.C [template_gc] 1.53.2.10.2.3:
                   3950:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.8:
                   3951:        * src/targets/cgi/parser3.dsp [template_gc] 1.60.10.2.2.7:
                   3952:        * src/types/pa_vmethod_frame.C [template_gc] 1.1.2.5.2.7:
                   3953:        * src/types/pa_vmethod_frame.h [template_gc] 1.45.2.8.2.10:
                   3954:        * src/types/pa_vobject.C [template_gc] 1.12.2.7.2.7:
                   3955:        * src/types/pa_vobject.h [template_gc] 1.38.2.10.2.5:
                   3956:        * src/types/types.dsp [template_gc] 1.35.10.9.2.6:
                   3957:                pre-evaluated .count() in some places
                   3958: 
                   3959:        * src/lib/cord/Makefile.am 1.1:
                   3960:        * src/lib/cord/include/Makefile.am 1.1:
                   3961:        * src/lib/cord/include/private/Makefile.am 1.1:
                   3962:                file Makefile.am was initially added on branch template_gc.
                   3963: 
                   3964:        * src/lib/cord/Makefile.in 1.1:
                   3965:        * src/lib/cord/include/Makefile.in 1.1:
                   3966:        * src/lib/cord/include/private/Makefile.in 1.1:
                   3967:                file Makefile.in was initially added on branch template_gc.
                   3968: 
                   3969:        * src/classes/classes.dsp [template_gc] 1.25.10.5.2.4:
                   3970:        * src/lib/cord/cord.dsp [template_gc] 1.1.2.3:
                   3971:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.13:
                   3972:        * src/main/compile_tools.h [template_gc] 1.67.2.8.2.3:
                   3973:        * src/main/main.dsp [template_gc] 1.161.6.14.2.3:
                   3974:        * src/targets/cgi/parser3.dsp [template_gc] 1.60.10.2.2.5:
                   3975:        * src/targets/isapi/parser3isapi.dsp [template_gc] 1.41.12.1.2.1:
                   3976:        * src/types/types.dsp [template_gc] 1.35.10.9.2.4:
                   3977:                .dsp updated to use lib/gc,lib/cord
                   3978: 
                   3979:        * src/lib/cord/include/gc.h [template_gc] 1.1.2.2:
                   3980:        * src/lib/gc/include/gc.h [template_gc] 1.1.2.1:
                   3981:                introducing lib/gc
                   3982: 
                   3983:        * src/lib/cord/include/cord.h [template_gc] 1.1.2.1:
                   3984:        * src/lib/cord/include/ec.h [template_gc] 1.1.2.1:
                   3985:        * src/lib/cord/include/gc.h [template_gc] 1.1.2.1:
                   3986:        * src/lib/cord/include/private/cord_pos.h [template_gc] 1.1.2.1:
                   3987:                bundled gc includes
                   3988: 
                   3989:        * src/lib/cord/include/cord.h 1.1:
                   3990:                file cord.h was initially added on branch template_gc.
                   3991: 
                   3992:        * src/lib/cord/include/ec.h 1.1:
                   3993:                file ec.h was initially added on branch template_gc.
                   3994: 
                   3995:        * src/classes/op.C [template_gc] 1.127.2.22.2.18:
                   3996:        * src/include/pa_array.h [template_gc] 1.57.2.27.2.6:
                   3997:        * src/include/pa_sql_connection.h [template_gc] 1.30.2.7.2.7:
                   3998:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.35:
                   3999:        * src/include/pa_version.h [template_gc] 1.7.16.1:
                   4000:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.12:
                   4001:        * src/main/compile.y [template_gc] 1.204.2.8.2.4:
                   4002:        * src/main/execute.C [template_gc] 1.295.2.27.2.10:
                   4003:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.15:
                   4004:        * src/main/pa_exception.C [template_gc] 1.43.2.15.2.8:
                   4005:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.17:
                   4006:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.30:
                   4007:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.7:
                   4008:        * src/targets/cgi/parser3.dsp [template_gc] 1.60.10.2.2.4:
                   4009:        * www/htdocs/.htaccess [template_gc] 1.12.6.9.2.2:
                   4010:                a number of bugfixes [while testing first real site (aval)]
                   4011: 
                   4012:        * src/classes/classes.dsp [template_gc] 1.25.10.5.2.5:
                   4013:        * src/lib/cord/cord.dsp [template_gc] 1.1.2.4:
                   4014:        * src/lib/ltdl/libltdl.dsp [template_gc] 1.3.2.2.2.2:
                   4015:        * src/lib/md5/md5.dsp [template_gc] 1.2.10.2.2.1:
                   4016:        * src/main/main.dsp [template_gc] 1.161.6.14.2.4:
                   4017:        * src/targets/cgi/parser3.dsp [template_gc] 1.60.10.2.2.6:
                   4018:        * src/types/types.dsp [template_gc] 1.35.10.9.2.5:
                   4019:                started profiling
                   4020: 
                   4021:        * src/lib/cord/include/gc.h 1.1:
                   4022:        * src/lib/gc/include/gc.h 1.1:
                   4023:                file gc.h was initially added on branch template_gc.
                   4024: 
                   4025:        * acsite.m4 1.1:
                   4026:                file acsite.m4 was initially added on branch template_gc.
                   4027: 
                   4028:        * acsite.m4 [template_gc] 1.1.2.1:
                   4029:        * bin/Makefile.in [template_gc] 1.9.2.3.2.1:
                   4030:        * etc/Makefile.in [template_gc] 1.14.2.3.2.1:
                   4031:        * etc/parser3.charsets/Makefile.in [template_gc] 1.17.2.3.2.1:
                   4032:        * src/Makefile.in [template_gc] 1.55.2.3.2.1:
                   4033:        * src/classes/Makefile.am [template_gc] 1.40.16.2:
                   4034:        * src/classes/Makefile.in [template_gc] 1.53.2.3.2.1:
                   4035:        * src/classes/mail.C [template_gc] 1.88.2.16.2.14:
                   4036:        * src/classes/math.C [template_gc] 1.24.2.12.2.8:
                   4037:        * src/classes/op.C [template_gc] 1.127.2.22.2.19:
                   4038:        * src/include/Makefile.in [template_gc] 1.11.2.5.2.1:
                   4039:        * src/include/pa_common.h [template_gc] 1.89.2.13.2.8:
                   4040:        * src/include/pa_config_auto.h.in [template_gc] 1.37.2.2.2.1:
                   4041:        * src/include/pa_config_fixed.h [template_gc] 1.54.2.5.2.3:
                   4042:        * src/include/pa_config_includes.h [template_gc] 1.23.2.5.2.1:
                   4043:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.13:
                   4044:        * src/include/pa_sql_driver_manager.h [template_gc] 1.26.2.9.2.5:
                   4045:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.36:
                   4046:        * src/include/pa_stylesheet_connection.h [template_gc] 1.32.2.5.2.4:
                   4047:        * src/include/pa_version.h [template_gc] 1.7.16.2:
                   4048:        * src/lib/Makefile.am [template_gc] 1.3.10.1:
                   4049:        * src/lib/Makefile.in [template_gc] 1.8.2.3.2.1:
                   4050:        * src/lib/cord/Makefile.am [template_gc] 1.1.2.1:
                   4051:        * src/lib/cord/Makefile.in [template_gc] 1.1.2.1:
                   4052:        * src/lib/cord/include/Makefile.am [template_gc] 1.1.2.1:
                   4053:        * src/lib/cord/include/Makefile.in [template_gc] 1.1.2.1:
                   4054:        * src/lib/cord/include/private/Makefile.am [template_gc] 1.1.2.1:
                   4055:        * src/lib/cord/include/private/Makefile.in [template_gc] 1.1.2.1:
                   4056:        * src/lib/ltdl/Makefile.in [template_gc] 1.4.2.1.2.2:
                   4057:        * src/lib/md5/Makefile.in [template_gc] 1.6.2.3.2.1:
                   4058:        * src/lib/patches/Makefile.in [template_gc] 1.10.2.3.2.1:
                   4059:        * src/lib/pcre/Makefile.in [template_gc] 1.8.2.3.2.2:
                   4060:        * src/main/Makefile.am [template_gc] 1.35.6.4.2.2:
                   4061:        * src/main/Makefile.in [template_gc] 1.50.2.6.2.1:
                   4062:        * src/main/pa_exec.C [template_gc] 1.48.2.18.2.10:
                   4063:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.31:
                   4064:        * src/main/untaint.C [template_gc] 1.115.2.12.2.17:
                   4065:        * src/sql/Makefile.in [template_gc] 1.11.2.3.2.1:
                   4066:        * src/targets/Makefile.in [template_gc] 1.42.2.3.2.1:
                   4067:        * src/targets/apache13/Makefile.in [template_gc] 1.44.2.3.2.1:
                   4068:        * src/targets/apache13/p3runConfigure.in [template_gc] 1.11.14.4.2.1:
                   4069:        * src/targets/cgi/Makefile.am [template_gc] 1.46.2.5.2.1:
                   4070:        * src/targets/cgi/Makefile.in [template_gc] 1.62.2.5.2.1:
                   4071:        * src/targets/isapi/Makefile.in [template_gc] 1.11.2.3.2.1:
                   4072:        * src/types/Makefile.am [template_gc] 1.28.10.1.2.2:
                   4073:        * src/types/Makefile.in [template_gc] 1.50.2.4.2.1:
                   4074:        * src/types/pa_vclass.h [template_gc] 1.39.2.5.2.3:
                   4075:        * src/types/pa_vcookie.h [template_gc] 1.23.2.6.2.3:
                   4076:        * src/types/pa_vform.h [template_gc] 1.45.2.8.2.3:
                   4077:        * src/types/pa_vhash.h [template_gc] 1.43.2.14.2.5:
                   4078:        * src/types/pa_vimage.h [template_gc] 1.34.2.8.2.6:
                   4079:        * src/types/pa_vint.h [template_gc] 1.38.2.10.2.3:
                   4080:        * src/types/pa_vmail.h [template_gc] 1.9.2.6.2.5:
                   4081:        * src/types/pa_vresponse.h [template_gc] 1.32.2.6.2.4:
                   4082:        * src/types/pa_vstateless_class.h [template_gc] 1.42.2.16.2.6:
                   4083:        * src/types/pa_vstatus.C [template_gc] 1.15.2.6.2.6:
                   4084:        * src/types/pa_vstatus.h [template_gc] 1.15.2.7.2.3:
                   4085:        * src/types/pa_vtable.h [template_gc] 1.48.2.8.2.5:
                   4086:        * src/types/pa_vxdoc.h [template_gc] 1.31.2.9.2.7:
                   4087:                configured math funcs
                   4088:                ported pa_exec
                   4089: 
                   4090:        * src/classes/classes.dsp 1.26:
                   4091:        * src/lib/ltdl/libltdl.dsp 1.4:
                   4092:        * src/lib/md5/md5.dsp 1.3:
                   4093:        * src/lib/pcre/pcre.dsp 1.2:
                   4094:        * src/main/main.dsp 1.162:
                   4095:        * src/targets/cgi/parser3.dsp 1.61:
                   4096:        * src/types/types.dsp 1.37:
                   4097:                .dsp profiling updated
                   4098: 
                   4099: 2003-03-25  paf
                   4100:        * src/include/pa_memory.h [template_gc] 1.1.2.9.2.14:
                   4101:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.9:
                   4102:                memory: new 'new' overloads for structure handling
                   4103: 
1.24      paf      4104:        * tests/results/109.processed [template_gc] 1.1.2.1.2.1:
                   4105:                it was a bug in parser. updated 109 test result
                   4106: 
1.23      paf      4107:        * operators.txt [template_gc] 1.109.2.1.2.2:
                   4108:        * src/main/pa_sql_driver_manager.C [template_gc] 1.69.2.17.2.10:
                   4109:        * src/types/pa_vstatus.C [template_gc] 1.15.2.6.2.5:
                   4110:                $status.memory
                   4111:                used
                   4112:                free
                   4113:                since_compact
                   4114:                process
                   4115: 
                   4116:        * src/doc/exception.dox 1.1:
                   4117:                file exception.dox was initially added on branch template_gc.
                   4118: 
                   4119:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.11:
                   4120:        * src/main/untaint.C [template_gc] 1.115.2.12.2.15:
                   4121:                untaint.C L_MAIL_HEADER
                   4122: 
                   4123:        * src/classes/xnode.C [template_gc] 1.54.2.10.2.9:
                   4124:        * src/classes/xnode.h [template_gc] 1.18.2.6.2.5:
                   4125:        * src/include/pa_memory.h [template_gc] 1.1.2.9.2.13:
                   4126:        * src/types/pa_vxdoc.h [template_gc] 1.31.2.9.2.6:
                   4127:        * src/types/pa_vxnode.h [template_gc] 1.22.2.6.2.5:
                   4128:                xnode.C compiled, doc/node finalizers isntalled
                   4129: 
                   4130:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.14:
                   4131:        * src/types/pa_vxnode.C [template_gc] 1.30.2.5.2.6:
                   4132:                vxnode compiled
                   4133:                xml linked
                   4134: 
                   4135:        * tests/results/121.processed 1.1:
                   4136:                file 121.processed was initially added on branch template_gc.
                   4137: 
                   4138:        * src/include/pa_sql_connection.h [template_gc] 1.30.2.7.2.6:
                   4139:        * src/main/pa_globals.C [template_gc] 1.152.2.19.2.5:
                   4140:        * src/main/untaint.C [template_gc] 1.115.2.12.2.16:
                   4141:        * src/sql/pa_sql_driver.h [template_gc] 1.34.2.4.2.3:
                   4142:                untaint.C L_SQL
                   4143: 
                   4144:        * src/types/pa_vmemory.h 1.1:
                   4145:                file pa_vmemory.h was initially added on branch template_gc.
                   4146: 
                   4147:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.14:
                   4148:                fixed transform params
                   4149: 
                   4150:        * operators.txt [template_gc] 1.109.2.1.2.1:
                   4151:        * src/classes/Makefile.am [template_gc] 1.40.16.1:
                   4152:        * src/classes/classes.dsp [template_gc] 1.25.10.5.2.3:
                   4153:        * src/classes/memory.C [template_gc] 1.1.2.1:
                   4154:        * src/classes/op.C [template_gc] 1.127.2.22.2.17:
                   4155:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.15:
                   4156:        * src/types/Makefile.am [template_gc] 1.28.10.1.2.1:
                   4157:        * src/types/pa_venv.h [template_gc] 1.28.2.5.2.4:
                   4158:        * src/types/pa_vmemory.h [template_gc] 1.1.2.1:
                   4159:        * src/types/types.dsp [template_gc] 1.35.10.9.2.3:
                   4160:        * www/htdocs/.htaccess [template_gc] 1.12.6.9.2.1:
                   4161:                ^memory:compact[]
                   4162: 
                   4163:        * src/types/pa_vxdoc.C [template_gc] 1.23.2.5.2.4:
                   4164:                vxdoc compiled
                   4165: 
                   4166:        * tests/121.html 1.1:
                   4167:                file 121.html was initially added on branch template_gc.
                   4168: 
                   4169:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.15:
                   4170:        * tests/Makefile [template_gc] 1.1.2.8.2.5:
                   4171:                fixed transform params2
                   4172: 
                   4173:        * src/doc/string.dox [template_gc] 1.4.22.1:
                   4174:                updated: new string internals
                   4175: 
                   4176:        * src/classes/image.C [template_gc] 1.90.2.15.2.18:
                   4177:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.13:
                   4178:        * src/classes/xnode.C [template_gc] 1.54.2.10.2.10:
                   4179:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.34:
                   4180:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.29:
                   4181:        * src/types/pa_vxnode.C [template_gc] 1.30.2.5.2.7:
                   4182:                removed StringBody(0) ambiguilty, introducting static
                   4183:                StringBody::Format(int)
                   4184: 
                   4185:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.10:
                   4186:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.6:
                   4187:        * tests/Makefile [template_gc] 1.1.2.8.2.4:
                   4188:        * tests/results/107.processed [template_gc] 1.1.2.1.2.1:
                   4189:                fixed dom language [values are now considered tainted.
                   4190:                it was a bug in parser. updated 107 test result
                   4191: 
                   4192:        * src/classes/image.C [template_gc] 1.90.2.15.2.17:
                   4193:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.12:
                   4194:        * src/classes/xnode.h [template_gc] 1.18.2.6.2.4:
                   4195:        * src/doc/exception.dox [template_gc] 1.1.2.1:
                   4196:        * src/doc/index.dox [template_gc] 1.4.8.1:
                   4197:        * src/include/pa_charset.h [template_gc] 1.20.2.18.2.4:
                   4198:        * src/include/pa_memory.h [template_gc] 1.1.2.9.2.12:
                   4199:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.12:
                   4200:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.33:
                   4201:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.8:
                   4202:        * src/main/pa_memory.C [template_gc] 1.1.2.5.2.5:
                   4203:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.28:
                   4204:                xdoc.C compiled
                   4205:                todo: xnode.C / finalizers
                   4206: 
                   4207:        * src/classes/memory.C 1.1:
                   4208:                file memory.C was initially added on branch template_gc.
                   4209: 
                   4210:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.16:
                   4211:        * src/main/untaint.C [template_gc] 1.115.2.12.2.14:
                   4212:        * src/types/pa_value.C [template_gc] 1.9.2.15.2.9:
                   4213:        * src/types/pa_value.h [template_gc] 1.109.2.25.2.8:
                   4214:        * src/types/pa_vfile.h [template_gc] 1.52.2.16.2.5:
                   4215:        * src/types/pa_vobject.C [template_gc] 1.12.2.7.2.6:
                   4216:        * src/types/pa_vobject.h [template_gc] 1.38.2.10.2.4:
                   4217:        * src/types/pa_vstring.C [template_gc] 1.22.2.3.2.5:
                   4218:        * src/types/pa_vstring.h [template_gc] 1.54.2.11.2.3:
                   4219:        * tests/121.html [template_gc] 1.1.2.1:
                   4220:        * tests/results/121.processed [template_gc] 1.1.2.1:
                   4221:                untaint.C L_URI
                   4222: 
                   4223:        * src/include/pa_stylesheet_manager.h [template_gc] 1.15.2.5.2.5:
                   4224:        * src/main/pa_stylesheet_manager.C [template_gc] 1.16.2.7.2.6:
                   4225:                fixed stylesheet caching
                   4226: 
                   4227: 2003-03-24  paf
                   4228:        * src/classes/void.C [template_gc] 1.28.2.5.2.6:
                   4229:                void.C compiled
                   4230: 
                   4231:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.14:
                   4232:        * src/main/pa_sql_driver_manager.C [template_gc] 1.69.2.17.2.9:
                   4233:                http://
                   4234: 
                   4235:        * src/classes/file.C [template_gc] 1.107.2.16.2.10:
                   4236:        * src/classes/image.C [template_gc] 1.90.2.15.2.16:
                   4237:        * src/classes/mail.C [template_gc] 1.88.2.16.2.13:
                   4238:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.32:
                   4239:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.13:
                   4240:        * src/main/pa_sql_driver_manager.C [template_gc] 1.69.2.17.2.8:
                   4241:                introducing string[body]::pos(char)
                   4242: 
                   4243:        * src/types/pa_vstatus.C [template_gc] 1.15.2.6.2.4:
                   4244:                pa_vstatus.C compiled
                   4245: 
                   4246:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.30:
                   4247:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.26:
                   4248:        * src/main/untaint.C [template_gc] 1.115.2.12.2.12:
                   4249:                String::ArrayFragment::append_positions fixed
                   4250: 
                   4251:        * src/classes/hash.C [template_gc] 1.54.2.13.2.11:
                   4252:        * src/classes/string.C [template_gc] 1.125.2.15.2.16:
                   4253:        * src/classes/table.C [template_gc] 1.172.2.14.2.14:
                   4254:        * src/types/pa_value.C [template_gc] 1.9.2.15.2.7:
                   4255:                all linked
                   4256:                todo: debug
                   4257: 
                   4258:        * src/classes/hash.C [template_gc] 1.54.2.13.2.10:
                   4259:        * src/classes/image.C [template_gc] 1.90.2.15.2.12:
                   4260:        * src/classes/string.C [template_gc] 1.125.2.15.2.10:
                   4261:        * src/classes/table.C [template_gc] 1.172.2.14.2.9:
                   4262:        * src/include/pa_memory.h [template_gc] 1.1.2.9.2.10:
                   4263:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.23:
                   4264:        * src/main/pa_memory.C [template_gc] 1.1.2.5.2.4:
                   4265:        * src/types/pa_vimage.h [template_gc] 1.34.2.8.2.4:
                   4266:        * src/types/pa_vmail.C [template_gc] 1.40.2.12.2.10:
                   4267:                image.C compiled
                   4268: 
                   4269:        * src/classes/mail.C [template_gc] 1.88.2.16.2.10:
                   4270:        * src/classes/string.C [template_gc] 1.125.2.15.2.11:
                   4271:        * src/classes/table.C [template_gc] 1.172.2.14.2.11:
                   4272:        * src/types/pa_vmail.h [template_gc] 1.9.2.6.2.3:
                   4273:                mail.C compiled
                   4274: 
                   4275:        * src/types/pa_vmath.C [template_gc] 1.1.2.9.2.4:
                   4276:        * src/types/pa_vmethod_frame.C [template_gc] 1.1.2.5.2.5:
                   4277:        * src/types/pa_vmethod_frame.h [template_gc] 1.45.2.8.2.9:
                   4278:        * src/types/pa_vobject.C [template_gc] 1.12.2.7.2.5:
                   4279:        * src/types/pa_vrequest.C [template_gc] 1.27.2.9.2.4:
                   4280:        * src/types/pa_vresponse.C [template_gc] 1.17.2.6.2.5:
                   4281:        * src/types/pa_vstateless_class.C [template_gc] 1.19.2.9.2.4:
                   4282:        * src/types/pa_vstateless_class.h [template_gc] 1.42.2.16.2.4:
                   4283:                pa_vstateless_class.C compiled
                   4284: 
                   4285:        * src/classes/hash.C [template_gc] 1.54.2.13.2.9:
                   4286:        * src/classes/string.C [template_gc] 1.125.2.15.2.9:
                   4287:        * src/classes/table.C [template_gc] 1.172.2.14.2.8:
                   4288:        * src/classes/void.C [template_gc] 1.28.2.5.2.4:
                   4289:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.9:
                   4290:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.8:
                   4291:        * src/include/pa_sql_connection.h [template_gc] 1.30.2.7.2.4:
                   4292:                hash.C compiled
                   4293: 
                   4294:        * src/classes/string.C [template_gc] 1.125.2.15.2.15:
                   4295:        * src/types/pa_value.C [template_gc] 1.9.2.15.2.6:
                   4296:        * src/types/pa_value.h [template_gc] 1.109.2.25.2.5:
                   4297:        * src/types/pa_vhash.h [template_gc] 1.43.2.14.2.4:
                   4298:                pa_value.C compiled
                   4299: 
                   4300:        * src/types/pa_vtable.C [template_gc] 1.21.2.5.2.6:
                   4301:                pa_vtable.C compiled
                   4302: 
                   4303:        * src/main/execute.C [template_gc] 1.295.2.27.2.7:
                   4304:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.22:
                   4305:        * src/types/pa_wcontext.h [template_gc] 1.42.2.9.2.5:
                   4306:                classes.lib
                   4307:                main.lib compiled
                   4308: 
                   4309:        * src/classes/image.C [template_gc] 1.90.2.15.2.14:
                   4310:        * src/classes/op.C [template_gc] 1.127.2.22.2.16:
                   4311:        * src/classes/table.C [template_gc] 1.172.2.14.2.16:
                   4312:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.28:
                   4313:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.10:
                   4314:        * src/main/compile.y [template_gc] 1.204.2.8.2.3:
                   4315:        * src/main/execute.C [template_gc] 1.295.2.27.2.8:
                   4316:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.11:
                   4317:        * src/main/untaint.C [template_gc] 1.115.2.12.2.11:
                   4318:        * tests/Makefile [template_gc] 1.1.2.8.2.1:
                   4319:                attempt to do gif encoding to CORD_ec [bad]
                   4320:                would rewrite as realloc now
                   4321: 
                   4322:        * src/classes/mail.C [template_gc] 1.88.2.16.2.11:
                   4323:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.10:
                   4324:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.5:
                   4325:        * src/types/pa_vstateless_class.C [template_gc] 1.19.2.9.2.5:
                   4326:                all compiled.
                   4327:                todo:link
                   4328: 
                   4329:        * src/types/pa_vfile.C [template_gc] 1.36.2.10.2.3:
                   4330:                pa_vfile.C compiled
                   4331: 
                   4332:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.24:
                   4333:        * tests/Makefile [template_gc] 1.1.2.8.2.2:
                   4334:                string::pos fixed
                   4335: 
                   4336:        * src/classes/op.C [template_gc] 1.127.2.22.2.14:
                   4337:        * src/classes/string.C [template_gc] 1.125.2.15.2.12:
                   4338:        * src/classes/table.C [template_gc] 1.172.2.14.2.12:
                   4339:        * src/classes/void.C [template_gc] 1.28.2.5.2.5:
                   4340:        * src/include/pa_sql_connection.h [template_gc] 1.30.2.7.2.5:
                   4341:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.24:
                   4342:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.9:
                   4343:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.19:
                   4344:                op.C compiled
                   4345: 
                   4346:        * src/classes/string.C [template_gc] 1.125.2.15.2.14:
                   4347:        * src/classes/table.C [template_gc] 1.172.2.14.2.13:
                   4348:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.26:
                   4349:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.21:
                   4350:        * src/types/pa_vtable.C [template_gc] 1.21.2.5.2.5:
                   4351:        * src/types/pa_vtable.h [template_gc] 1.48.2.8.2.4:
                   4352:                table.C compiled
                   4353: 
                   4354:        * src/types/pa_value.h [template_gc] 1.109.2.25.2.6:
                   4355:        * src/types/pa_vclass.C [template_gc] 1.16.2.5.2.3:
                   4356:        * src/types/pa_vcookie.C [template_gc] 1.55.2.9.2.6:
                   4357:        * src/types/pa_vstateless_class.C [template_gc] 1.19.2.9.2.3:
                   4358:                pa_vcookie.C compiled
                   4359: 
                   4360:        * parser3.dsw [template_gc] 1.7.6.1.2.3:
                   4361:        * src/classes/date.C [template_gc] 1.42.2.11.2.6:
                   4362:        * src/classes/file.C [template_gc] 1.107.2.16.2.7:
                   4363:        * src/include/pa_exec.h [template_gc] 1.11.2.6.2.5:
                   4364:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.27:
                   4365:        * src/main/pa_exec.C [template_gc] 1.48.2.18.2.8:
                   4366:        * src/main/pa_sql_driver_manager.C [template_gc] 1.69.2.17.2.6:
                   4367:                empty run passed OK
                   4368: 
                   4369:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.11:
                   4370:        * src/classes/xnode.C [template_gc] 1.54.2.10.2.8:
                   4371:        * src/classes/xnode.h [template_gc] 1.18.2.6.2.3:
                   4372:        * src/include/pa_charset.h [template_gc] 1.20.2.18.2.3:
                   4373:        * src/include/pa_config_fixed.h [template_gc] 1.54.2.5.2.2:
                   4374:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.11:
                   4375:        * src/include/pa_stylesheet_connection.h [template_gc] 1.32.2.5.2.3:
                   4376:        * src/include/pa_stylesheet_manager.h [template_gc] 1.15.2.5.2.4:
                   4377:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.7:
                   4378:        * src/main/pa_exception.C [template_gc] 1.43.2.15.2.7:
                   4379:        * src/main/pa_globals.C [template_gc] 1.152.2.19.2.4:
                   4380:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.13:
                   4381:        * src/main/pa_stylesheet_manager.C [template_gc] 1.16.2.7.2.5:
                   4382:        * src/types/pa_vxdoc.h [template_gc] 1.31.2.9.2.5:
                   4383:        * src/types/pa_vxnode.h [template_gc] 1.22.2.6.2.4:
                   4384:                started XML
                   4385: 
                   4386:        * src/types/pa_vform.C [template_gc] 1.74.2.11.2.5:
                   4387:                pa_vform.C compiled
                   4388: 
                   4389:        * src/classes/math.C [template_gc] 1.24.2.12.2.6:
                   4390:        * src/classes/op.C [template_gc] 1.127.2.22.2.13:
                   4391:                math.C compiled
                   4392: 
                   4393:        * src/classes/classes.C [template_gc] 1.18.2.6.2.2:
                   4394:        * src/classes/classes.awk [template_gc] 1.6.6.3.2.1:
                   4395:        * src/classes/classes.h [template_gc] 1.23.2.9.2.3:
                   4396:        * src/classes/date.C [template_gc] 1.42.2.11.2.5:
                   4397:        * src/classes/double.C [template_gc] 1.53.2.8.2.3:
                   4398:        * src/classes/file.C [template_gc] 1.107.2.16.2.6:
                   4399:        * src/classes/form.C [template_gc] 1.34.2.7.2.5:
                   4400:        * src/classes/hash.C [template_gc] 1.54.2.13.2.8:
                   4401:        * src/classes/image.C [template_gc] 1.90.2.15.2.11:
                   4402:        * src/classes/int.C [template_gc] 1.49.2.7.2.3:
                   4403:        * src/classes/mail.C [template_gc] 1.88.2.16.2.9:
                   4404:        * src/classes/math.C [template_gc] 1.24.2.12.2.5:
                   4405:        * src/classes/op.C [template_gc] 1.127.2.22.2.12:
                   4406:        * src/classes/response.C [template_gc] 1.23.2.8.2.2:
                   4407:        * src/classes/string.C [template_gc] 1.125.2.15.2.8:
                   4408:        * src/classes/table.C [template_gc] 1.172.2.14.2.7:
                   4409:        * src/classes/void.C [template_gc] 1.28.2.5.2.3:
                   4410:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.8:
                   4411:        * src/classes/xnode.C [template_gc] 1.54.2.10.2.7:
                   4412:        * src/include/pa_memory.h [template_gc] 1.1.2.9.2.9:
                   4413:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.7:
                   4414:        * src/include/pa_sapi.h [template_gc] 1.22.2.8.2.4:
                   4415:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.22:
                   4416:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.18:
                   4417:        * src/types/pa_vdate.h [template_gc] 1.24.2.5.2.3:
                   4418:        * src/types/pa_vmethod_frame.h [template_gc] 1.45.2.8.2.8:
                   4419:                file.C
                   4420:                table.C compiled
                   4421: 
                   4422:        * src/classes/file.C [template_gc] 1.107.2.16.2.9:
                   4423:        * src/classes/image.C [template_gc] 1.90.2.15.2.15:
                   4424:        * src/classes/mail.C [template_gc] 1.88.2.16.2.12:
                   4425:        * src/include/pa_memory.h [template_gc] 1.1.2.9.2.11:
                   4426:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.31:
                   4427:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.12:
                   4428:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.12:
                   4429:        * src/main/pa_sql_driver_manager.C [template_gc] 1.69.2.17.2.7:
                   4430:        * src/types/pa_vimage.h [template_gc] 1.34.2.8.2.5:
                   4431:                size_t pos everywhere checks changed to check for eq STRING_NOT_FOUND
                   4432: 
                   4433:        * src/classes/int.C [template_gc] 1.49.2.7.2.4:
                   4434:        * src/classes/table.C [template_gc] 1.172.2.14.2.10:
                   4435:                int.C compiled
                   4436: 
                   4437:        * src/types/pa_wcontext.C [template_gc] 1.24.2.5.2.4:
                   4438:                pa_wcontext.C compiled
                   4439: 
                   4440:        * src/types/pa_vstring.C [template_gc] 1.22.2.3.2.4:
                   4441:                pa_vstring.C compiled
                   4442: 
                   4443:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.27:
                   4444:        * src/main/untaint.C [template_gc] 1.115.2.12.2.13:
                   4445:        * tests/Makefile [template_gc] 1.1.2.8.2.3:
                   4446:                string optimize bit implemented
                   4447: 
                   4448:        * src/include/pa_hash.h [template_gc] 1.58.2.18.2.6:
                   4449:        * src/main/execute.C [template_gc] 1.295.2.27.2.9:
                   4450:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.23:
                   4451:                hashcode implemented fully, including per-char callback [it can
                   4452:                be - substr CORD node]
                   4453: 
                   4454:        * src/classes/table.C [template_gc] 1.172.2.14.2.17:
                   4455:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.29:
                   4456:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.25:
                   4457:                String::this_starts fixed
                   4458: 
                   4459:        * src/classes/date.C [template_gc] 1.42.2.11.2.7:
                   4460:        * src/classes/file.C [template_gc] 1.107.2.16.2.8:
                   4461:        * src/classes/form.C [template_gc] 1.34.2.7.2.6:
                   4462:        * src/classes/image.C [template_gc] 1.90.2.15.2.13:
                   4463:        * src/classes/math.C [template_gc] 1.24.2.12.2.7:
                   4464:        * src/classes/op.C [template_gc] 1.127.2.22.2.15:
                   4465:        * src/classes/table.C [template_gc] 1.172.2.14.2.15:
                   4466:        * src/include/pa_cache_managers.h [template_gc] 1.9.2.7.2.4:
                   4467:        * src/include/pa_charsets.h [template_gc] 1.8.2.8.2.4:
                   4468:        * src/include/pa_common.h [template_gc] 1.89.2.13.2.7:
                   4469:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.10:
                   4470:        * src/include/pa_sql_driver_manager.h [template_gc] 1.26.2.9.2.4:
                   4471:        * src/include/pa_table.h [template_gc] 1.48.2.11.2.5:
                   4472:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.6:
                   4473:        * src/main/pa_exception.C [template_gc] 1.43.2.15.2.6:
                   4474:        * src/main/pa_exec.C [template_gc] 1.48.2.18.2.9:
                   4475:        * src/main/pa_globals.C [template_gc] 1.152.2.19.2.3:
                   4476:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.11:
                   4477:        * src/main/pa_uue.C [template_gc] 1.4.2.5.2.3:
                   4478:        * src/targets/apache13/mod_parser3.C [template_gc] 1.28.2.6.2.4:
                   4479:        * src/targets/isapi/parser3isapi.C [template_gc] 1.82.2.6.2.5:
                   4480:        * src/types/pa_value.C [template_gc] 1.9.2.15.2.8:
                   4481:        * src/types/pa_value.h [template_gc] 1.109.2.25.2.7:
                   4482:        * src/types/pa_vmail.C [template_gc] 1.40.2.12.2.12:
                   4483:        * src/types/pa_vmethod_frame.C [template_gc] 1.1.2.5.2.6:
                   4484:        * src/types/pa_vstateless_class.h [template_gc] 1.42.2.16.2.5:
                   4485:                2*2 worked :)
                   4486: 
                   4487:        * src/classes/string.C [template_gc] 1.125.2.15.2.13:
                   4488:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.9:
                   4489:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.25:
                   4490:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.20:
                   4491:                string.C compiled
                   4492: 
                   4493:        * src/include/pa_array.h [template_gc] 1.57.2.27.2.5:
                   4494:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.11:
                   4495:                gif encoding rewritten to rewalloc with 100byte buf ahead
                   4496: 
                   4497:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.10:
                   4498:        * src/types/pa_vmail.C [template_gc] 1.40.2.12.2.11:
                   4499:        * src/types/pa_vmail.h [template_gc] 1.9.2.6.2.4:
                   4500:        * src/types/pa_vmath.C [template_gc] 1.1.2.9.2.3:
                   4501:                pa_vmail.C compiled
                   4502: 
                   4503:        * src/types/pa_vhash.C [template_gc] 1.1.2.3.2.2:
                   4504:        * src/types/pa_vimage.C [template_gc] 1.22.2.7.2.6:
                   4505:                pa_vimage.C compiled
                   4506: 
                   4507:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.21:
                   4508:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.17:
                   4509:        * src/main/pa_uue.C [template_gc] 1.4.2.5.2.2:
                   4510:        * src/main/untaint.C [template_gc] 1.115.2.12.2.10:
                   4511:                main.lib compiled
                   4512: 
                   4513: 2003-03-21  paf
                   4514:        * src/classes/hash.C [template_gc] 1.54.2.13.2.6:
                   4515:        * src/classes/mail.C [template_gc] 1.88.2.16.2.8:
                   4516:        * src/classes/op.C [template_gc] 1.127.2.22.2.9:
                   4517:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.5:
                   4518:        * src/main/execute.C [template_gc] 1.295.2.27.2.6:
                   4519:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.7:
                   4520:        * src/types/pa_value.C [template_gc] 1.9.2.15.2.5:
                   4521:        * src/types/pa_value.h [template_gc] 1.109.2.25.2.4:
                   4522:        * src/types/pa_vcookie.C [template_gc] 1.55.2.9.2.5:
                   4523:        * src/types/pa_vhash.h [template_gc] 1.43.2.14.2.3:
                   4524:        * src/types/pa_vimage.C [template_gc] 1.22.2.7.2.4:
                   4525:        * src/types/pa_vmethod_frame.h [template_gc] 1.45.2.8.2.7:
                   4526:        * src/types/pa_vobject.C [template_gc] 1.12.2.7.2.4:
                   4527:        * src/types/pa_vobject.h [template_gc] 1.38.2.10.2.3:
                   4528:        * src/types/pa_vrequest.C [template_gc] 1.27.2.9.2.3:
                   4529:        * src/types/pa_vresponse.h [template_gc] 1.32.2.6.2.3:
                   4530:        * src/types/pa_vtable.C [template_gc] 1.21.2.5.2.4:
                   4531:                pa_request.C 50% compiled
                   4532: 
                   4533:        * src/classes/op.C [template_gc] 1.127.2.22.2.11:
                   4534:        * src/include/pa_cache_managers.h [template_gc] 1.9.2.7.2.3:
                   4535:        * src/include/pa_sql_connection.h [template_gc] 1.30.2.7.2.3:
                   4536:        * src/include/pa_sql_driver_manager.h [template_gc] 1.26.2.9.2.3:
                   4537:        * src/include/pa_stylesheet_manager.h [template_gc] 1.15.2.5.2.3:
                   4538:        * src/main/pa_exception.C [template_gc] 1.43.2.15.2.5:
                   4539:        * src/main/pa_globals.C [template_gc] 1.152.2.19.2.2:
                   4540:        * src/main/pa_sql_driver_manager.C [template_gc] 1.69.2.17.2.5:
                   4541:        * src/sql/pa_sql_driver.h [template_gc] 1.34.2.4.2.2:
                   4542:        * src/types/pa_vimage.C [template_gc] 1.22.2.7.2.5:
                   4543:                pa_sql_driver_manager.C compiled
                   4544: 
                   4545:        * src/lib/cord/cordbscs.c [template_gc] 1.1.2.4:
                   4546:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.14:
                   4547:                test14 [bug fixed]
                   4548: 
1.24      paf      4549:        * src/classes/file.C 1.108:
                   4550:                ^file::exec/cgi now does not pass post data by default.
                   4551:                use: ^file::exec[...;$.stdin[$request.body]
                   4552: 
1.23      paf      4553:        * src/classes/classes.C [template_gc] 1.18.2.6.2.1:
                   4554:        * src/classes/classes.h [template_gc] 1.23.2.9.2.2:
                   4555:        * src/classes/date.C [template_gc] 1.42.2.11.2.4:
                   4556:        * src/classes/double.C [template_gc] 1.53.2.8.2.2:
                   4557:        * src/classes/file.C [template_gc] 1.107.2.16.2.5:
                   4558:        * src/classes/form.C [template_gc] 1.34.2.7.2.4:
                   4559:        * src/classes/hash.C [template_gc] 1.54.2.13.2.5:
                   4560:        * src/classes/image.C [template_gc] 1.90.2.15.2.8:
                   4561:        * src/classes/int.C [template_gc] 1.49.2.7.2.2:
                   4562:        * src/classes/mail.C [template_gc] 1.88.2.16.2.6:
                   4563:        * src/classes/math.C [template_gc] 1.24.2.12.2.4:
                   4564:        * src/classes/op.C [template_gc] 1.127.2.22.2.7:
                   4565:        * src/classes/string.C [template_gc] 1.125.2.15.2.7:
                   4566:        * src/classes/table.C [template_gc] 1.172.2.14.2.6:
                   4567:        * src/classes/void.C [template_gc] 1.28.2.5.2.2:
                   4568:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.6:
                   4569:        * src/classes/xnode.C [template_gc] 1.54.2.10.2.5:
                   4570:        * src/classes/xnode.h [template_gc] 1.18.2.6.2.2:
                   4571:        * src/include/pa_cache_managers.h [template_gc] 1.9.2.7.2.2:
                   4572:        * src/include/pa_charsets.h [template_gc] 1.8.2.8.2.2:
                   4573:        * src/include/pa_common.h [template_gc] 1.89.2.13.2.5:
                   4574:        * src/include/pa_exec.h [template_gc] 1.11.2.6.2.2:
                   4575:        * src/include/pa_memory.h [template_gc] 1.1.2.9.2.8:
                   4576:        * src/include/pa_operation.h [template_gc] 1.1.2.6.2.1:
                   4577:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.3:
                   4578:        * src/include/pa_sapi.h [template_gc] 1.22.2.8.2.3:
                   4579:        * src/include/pa_sql_driver_manager.h [template_gc] 1.26.2.9.2.2:
                   4580:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.17:
                   4581:        * src/include/pa_stylesheet_connection.h [template_gc] 1.32.2.5.2.2:
                   4582:        * src/include/pa_stylesheet_manager.h [template_gc] 1.15.2.5.2.2:
                   4583:        * src/include/pa_table.h [template_gc] 1.48.2.11.2.4:
                   4584:        * src/main/compile.C [template_gc] 1.69.2.6.2.3:
                   4585:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.7:
                   4586:        * src/main/compile.y [template_gc] 1.204.2.8.2.1:
                   4587:        * src/main/compile_tools.C [template_gc] 1.54.2.5.2.3:
                   4588:        * src/main/compile_tools.h [template_gc] 1.67.2.8.2.2:
                   4589:        * src/main/execute.C [template_gc] 1.295.2.27.2.4:
                   4590:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.4:
                   4591:        * src/main/pa_charsets.C [template_gc] 1.11.2.10.2.2:
                   4592:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.8:
                   4593:        * src/main/pa_exec.C [template_gc] 1.48.2.18.2.5:
                   4594:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.5:
                   4595:        * src/main/pa_sql_driver_manager.C [template_gc] 1.69.2.17.2.4:
                   4596:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.15:
                   4597:        * src/main/pa_stylesheet_manager.C [template_gc] 1.16.2.7.2.4:
                   4598:        * src/main/untaint.C [template_gc] 1.115.2.12.2.9:
                   4599:        * src/targets/apache13/mod_parser3.C [template_gc] 1.28.2.6.2.3:
                   4600:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.4:
                   4601:        * src/targets/isapi/parser3isapi.C [template_gc] 1.82.2.6.2.4:
                   4602:        * src/types/pa_junction.h [template_gc] 1.1.2.2.2.2:
                   4603:        * src/types/pa_method.h [template_gc] 1.1.2.4.2.3:
                   4604:        * src/types/pa_value.C [template_gc] 1.9.2.15.2.4:
                   4605:        * src/types/pa_value.h [template_gc] 1.109.2.25.2.3:
                   4606:        * src/types/pa_vbool.h [template_gc] 1.21.2.3.2.1:
                   4607:        * src/types/pa_vclass.C [template_gc] 1.16.2.5.2.2:
                   4608:        * src/types/pa_vclass.h [template_gc] 1.39.2.5.2.2:
                   4609:        * src/types/pa_vcode_frame.h [template_gc] 1.24.2.3.2.3:
                   4610:        * src/types/pa_vcookie.C [template_gc] 1.55.2.9.2.4:
                   4611:        * src/types/pa_vcookie.h [template_gc] 1.23.2.6.2.2:
                   4612:        * src/types/pa_vdate.h [template_gc] 1.24.2.5.2.2:
                   4613:        * src/types/pa_vdouble.h [template_gc] 1.42.2.9.2.2:
                   4614:        * src/types/pa_venv.h [template_gc] 1.28.2.5.2.3:
                   4615:        * src/types/pa_vfile.C [template_gc] 1.36.2.10.2.2:
                   4616:        * src/types/pa_vfile.h [template_gc] 1.52.2.16.2.4:
                   4617:        * src/types/pa_vform.C [template_gc] 1.74.2.11.2.4:
                   4618:        * src/types/pa_vform.h [template_gc] 1.45.2.8.2.2:
                   4619:        * src/types/pa_vhash.h [template_gc] 1.43.2.14.2.2:
                   4620:        * src/types/pa_vimage.C [template_gc] 1.22.2.7.2.3:
                   4621:        * src/types/pa_vimage.h [template_gc] 1.34.2.8.2.2:
                   4622:        * src/types/pa_vint.h [template_gc] 1.38.2.10.2.2:
                   4623:        * src/types/pa_vjunction.h [template_gc] 1.19.2.5.2.1:
                   4624:        * src/types/pa_vmail.C [template_gc] 1.40.2.12.2.8:
                   4625:        * src/types/pa_vmail.h [template_gc] 1.9.2.6.2.2:
                   4626:        * src/types/pa_vmath.C [template_gc] 1.1.2.9.2.2:
                   4627:        * src/types/pa_vmath.h [template_gc] 1.14.2.4.2.2:
                   4628:        * src/types/pa_vmethod_frame.C [template_gc] 1.1.2.5.2.4:
                   4629:        * src/types/pa_vmethod_frame.h [template_gc] 1.45.2.8.2.5:
                   4630:        * src/types/pa_vobject.C [template_gc] 1.12.2.7.2.3:
                   4631:        * src/types/pa_vobject.h [template_gc] 1.38.2.10.2.2:
                   4632:        * src/types/pa_vrequest.C [template_gc] 1.27.2.9.2.2:
                   4633:        * src/types/pa_vrequest.h [template_gc] 1.25.2.3.2.2:
                   4634:        * src/types/pa_vresponse.C [template_gc] 1.17.2.6.2.3:
                   4635:        * src/types/pa_vresponse.h [template_gc] 1.32.2.6.2.2:
                   4636:        * src/types/pa_vstateless_class.C [template_gc] 1.19.2.9.2.2:
                   4637:        * src/types/pa_vstateless_class.h [template_gc] 1.42.2.16.2.3:
                   4638:        * src/types/pa_vstateless_object.h [template_gc] 1.28.2.4.2.2:
                   4639:        * src/types/pa_vstatus.C [template_gc] 1.15.2.6.2.3:
                   4640:        * src/types/pa_vstatus.h [template_gc] 1.15.2.7.2.2:
                   4641:        * src/types/pa_vstring.C [template_gc] 1.22.2.3.2.3:
                   4642:        * src/types/pa_vstring.h [template_gc] 1.54.2.11.2.2:
                   4643:        * src/types/pa_vtable.C [template_gc] 1.21.2.5.2.3:
                   4644:        * src/types/pa_vtable.h [template_gc] 1.48.2.8.2.3:
                   4645:        * src/types/pa_vvoid.h [template_gc] 1.17.2.8.2.2:
                   4646:        * src/types/pa_vxdoc.C [template_gc] 1.23.2.5.2.3:
                   4647:        * src/types/pa_vxdoc.h [template_gc] 1.31.2.9.2.4:
                   4648:        * src/types/pa_vxnode.C [template_gc] 1.30.2.5.2.4:
                   4649:        * src/types/pa_vxnode.h [template_gc] 1.22.2.6.2.3:
                   4650:        * src/types/pa_wcontext.C [template_gc] 1.24.2.5.2.3:
                   4651:        * src/types/pa_wcontext.h [template_gc] 1.42.2.9.2.4:
                   4652:        * src/types/pa_wwrapper.h [template_gc] 1.28.2.3.2.3:
                   4653:                introducing StringBody [C++ CORD wrapper]
                   4654: 
                   4655:        * src/main/pa_common.C 1.146:
                   4656:        * src/main/pa_common.C 1.148:
                   4657:                } typo bug fix
                   4658: 
                   4659:        * src/classes/hash.C [template_gc] 1.54.2.13.2.7:
                   4660:        * src/classes/image.C [template_gc] 1.90.2.15.2.10:
                   4661:        * src/classes/op.C [template_gc] 1.127.2.22.2.10:
                   4662:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.7:
                   4663:        * src/classes/xnode.C [template_gc] 1.54.2.10.2.6:
                   4664:        * src/include/pa_common.h [template_gc] 1.89.2.13.2.6:
                   4665:        * src/include/pa_hash.h [template_gc] 1.58.2.18.2.5:
                   4666:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.6:
                   4667:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.20:
                   4668:        * src/main/compile.C [template_gc] 1.69.2.6.2.4:
                   4669:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.10:
                   4670:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.8:
                   4671:        * src/types/pa_vmail.C [template_gc] 1.40.2.12.2.9:
                   4672:        * src/types/pa_vresponse.C [template_gc] 1.17.2.6.2.4:
                   4673:        * src/types/pa_vxnode.C [template_gc] 1.30.2.5.2.5:
                   4674:                pa_request.C compiled
                   4675: 
                   4676:        * src/classes/image.C [template_gc] 1.90.2.15.2.9:
                   4677:        * src/classes/mail.C [template_gc] 1.88.2.16.2.7:
                   4678:        * src/classes/op.C [template_gc] 1.127.2.22.2.8:
                   4679:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.4:
                   4680:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.18:
                   4681:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.8:
                   4682:        * src/main/compile.y [template_gc] 1.204.2.8.2.2:
                   4683:        * src/main/execute.C [template_gc] 1.295.2.27.2.5:
                   4684:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.9:
                   4685:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.6:
                   4686:        * src/types/pa_junction.h [template_gc] 1.1.2.2.2.3:
                   4687:        * src/types/pa_method.h [template_gc] 1.1.2.4.2.4:
                   4688:        * src/types/pa_vcode_frame.h [template_gc] 1.24.2.3.2.4:
                   4689:        * src/types/pa_vimage.h [template_gc] 1.34.2.8.2.3:
                   4690:        * src/types/pa_vmethod_frame.h [template_gc] 1.45.2.8.2.6:
                   4691:                execute.C compiled
                   4692: 
                   4693:        * src/main/pa_common.C 1.147:
                   4694:        * src/targets/cgi/parser3.C 1.217:
                   4695:                *** empty log message ***
                   4696: 
                   4697:        * src/include/pa_charset.h [template_gc] 1.20.2.18.2.2:
                   4698:        * src/include/pa_charsets.h [template_gc] 1.8.2.8.2.3:
                   4699:        * src/include/pa_exec.h [template_gc] 1.11.2.6.2.3:
                   4700:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.9:
                   4701:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.5:
                   4702:        * src/main/pa_charsets.C [template_gc] 1.11.2.10.2.3:
                   4703:        * src/main/pa_dictionary.C [template_gc] 1.17.2.6.2.5:
                   4704:        * src/main/pa_exec.C [template_gc] 1.48.2.18.2.6:
                   4705:                pa_charsets.C compiled
                   4706: 
                   4707:        * src/include/pa_exec.h [template_gc] 1.11.2.6.2.4:
                   4708:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.19:
                   4709:        * src/main/pa_exec.C [template_gc] 1.48.2.18.2.7:
                   4710:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.16:
                   4711:                pa_exec.C compiled [win32 only for now]  todo: on unix
                   4712: 
                   4713:        * src/classes/file.C 1.109:
                   4714:        * src/include/pa_charset.h 1.21:
                   4715:        * src/main/pa_charset.C 1.34:
                   4716:                $file::exec/cgi[script;
                   4717:                   $.charset[this is script's charset]
                   4718:                
                   4719:                command line, env values, input got transcoded before call
                   4720:                stdout, stderr got transcoded after call
                   4721: 
                   4722: 2003-03-20  paf
                   4723:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.12:
                   4724:                this_starts fixed
                   4725: 
                   4726:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.16:
                   4727:        * src/lib/cord/cordbscs.c [template_gc] 1.1.2.3:
                   4728:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.13:
                   4729:        * src/main/untaint.C [template_gc] 1.115.2.12.2.8:
                   4730:                cord bug fix, but still errors
                   4731:                todo: clear out
                   4732: 
                   4733:        * src/include/pa_array.h [template_gc] 1.57.2.27.2.4:
                   4734:        * src/include/pa_hash.h [template_gc] 1.58.2.18.2.4:
                   4735:        * src/include/pa_memory.h [template_gc] 1.1.2.9.2.6:
                   4736:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.9:
                   4737:        * src/main/pa_memory.C [template_gc] 1.1.2.5.2.3:
                   4738:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.8:
                   4739:                test: gc/exit runned OK
                   4740: 
                   4741:        * src/classes/image.C [template_gc] 1.90.2.15.2.5:
                   4742:        * src/classes/mail.C [template_gc] 1.88.2.16.2.4:
                   4743:        * src/classes/math.C [template_gc] 1.24.2.12.2.3:
                   4744:        * src/classes/string.C [template_gc] 1.125.2.15.2.5:
                   4745:        * src/include/pa_dictionary.h [template_gc] 1.13.2.8.2.3:
                   4746:        * src/include/pa_hash.h [template_gc] 1.58.2.18.2.3:
                   4747:        * src/include/pa_memory.h [template_gc] 1.1.2.9.2.5:
                   4748:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.7:
                   4749:        * src/lib/cord/cordbscs.c [template_gc] 1.1.2.2:
                   4750:        * src/lib/cord/cordxtra.c [template_gc] 1.1.2.2:
                   4751:        * src/lib/pcre/dftables.c [template_gc] 1.1.14.1.2.2:
                   4752:        * src/lib/pcre/get.c [template_gc] 1.1.14.1.2.3:
                   4753:        * src/lib/pcre/maketables.c [template_gc] 1.1.14.1.2.2:
                   4754:        * src/lib/pcre/pcre.c [template_gc] 1.1.14.1.2.2:
                   4755:        * src/lib/pcre/pcre.h [template_gc] 1.1.14.1.2.2:
                   4756:        * src/lib/pcre/pcre_parser_ctype.c [template_gc] 1.3.2.1.2.2:
                   4757:        * src/lib/pcre/study.c [template_gc] 1.1.14.1.2.2:
                   4758:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.4:
                   4759:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.5:
                   4760:        * src/main/pa_dictionary.C [template_gc] 1.17.2.6.2.2:
                   4761:        * src/main/pa_exec.C [template_gc] 1.48.2.18.2.3:
                   4762:        * src/main/pa_memory.C [template_gc] 1.1.2.5.2.2:
                   4763:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.4:
                   4764:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.6:
                   4765:        * src/main/untaint.C [template_gc] 1.115.2.12.2.4:
                   4766:        * src/types/pa_vfile.h [template_gc] 1.52.2.16.2.3:
                   4767:        * src/types/pa_vmail.C [template_gc] 1.40.2.12.2.5:
                   4768:                untaint.C 99% [except mail&sql&optimize]
                   4769: 
1.24      paf      4770:        * src/types/pa_vmail.C 1.42:
                   4771:                another naming problem: should not name vars like that: unpredictable close caused problems with later sending mail:
                   4772:                Mar 20 06:39:53 pt-6 sendmail[19044]: File descriptors missing on startup: stdin; Bad file number
                   4773:                
                   4774:                todo: find out why so many filters(stream) here. probably wrong?
                   4775: 
1.23      paf      4776:        * src/include/pa_dictionary.h [template_gc] 1.13.2.8.2.4:
                   4777:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.8:
                   4778:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.6:
                   4779:        * src/main/pa_dictionary.C [template_gc] 1.17.2.6.2.3:
                   4780:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.7:
                   4781:        * src/main/untaint.C [template_gc] 1.115.2.12.2.5:
                   4782:                test compiled
                   4783: 
                   4784:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.15:
                   4785:                more tests
                   4786: 
                   4787:        * src/classes/image.C [template_gc] 1.90.2.15.2.7:
                   4788:        * src/include/pa_dictionary.h [template_gc] 1.13.2.8.2.5:
                   4789:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.14:
                   4790:        * src/lib/ltdl/ltdl.c [template_gc] 1.3.2.1.2.1:
                   4791:        * src/lib/ltdl/ltdl.h [template_gc] 1.2.2.1.2.1:
                   4792:        * src/lib/pcre/internal.h [template_gc] 1.1.18.1:
                   4793:        * src/lib/pcre/pcre.c [template_gc] 1.1.14.1.2.3:
                   4794:        * src/lib/pcre/study.c [template_gc] 1.1.14.1.2.3:
                   4795:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.6:
                   4796:        * src/main/pa_dictionary.C [template_gc] 1.17.2.6.2.4:
                   4797:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.11:
                   4798:        * src/main/untaint.C [template_gc] 1.115.2.12.2.7:
                   4799:        * src/types/pa_vmail.C [template_gc] 1.40.2.12.2.7:
                   4800:                more tests [bugs fixed]
                   4801: 
1.24      paf      4802:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.11:
                   4803:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.10:
                   4804:                added: assertion on new String ctor & append params convention
                   4805: 
1.23      paf      4806:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.12:
                   4807:                string.pos fixed
                   4808: 
                   4809:        * src/classes/file.C [template_gc] 1.107.2.16.2.4:
                   4810:        * src/classes/hash.C [template_gc] 1.54.2.13.2.4:
                   4811:        * src/classes/image.C [template_gc] 1.90.2.15.2.6:
                   4812:        * src/classes/mail.C [template_gc] 1.88.2.16.2.5:
                   4813:        * src/classes/op.C [template_gc] 1.127.2.22.2.6:
                   4814:        * src/classes/string.C [template_gc] 1.125.2.15.2.6:
                   4815:        * src/classes/table.C [template_gc] 1.172.2.14.2.5:
                   4816:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.5:
                   4817:        * src/include/pa_common.h [template_gc] 1.89.2.13.2.4:
                   4818:        * src/include/pa_memory.h [template_gc] 1.1.2.9.2.7:
                   4819:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.10:
                   4820:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.5:
                   4821:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.7:
                   4822:        * src/main/pa_exception.C [template_gc] 1.43.2.15.2.4:
                   4823:        * src/main/pa_exec.C [template_gc] 1.48.2.18.2.4:
                   4824:        * src/main/pa_sql_driver_manager.C [template_gc] 1.69.2.17.2.3:
                   4825:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.9:
                   4826:        * src/main/pa_stylesheet_manager.C [template_gc] 1.16.2.7.2.3:
                   4827:        * src/main/untaint.C [template_gc] 1.115.2.12.2.6:
                   4828:        * src/targets/isapi/parser3isapi.C [template_gc] 1.82.2.6.2.3:
                   4829:        * src/types/pa_vimage.C [template_gc] 1.22.2.7.2.2:
                   4830:        * src/types/pa_vmail.C [template_gc] 1.40.2.12.2.6:
                   4831:                more tests OK
                   4832: 
                   4833:        * parser3.dsw [template_gc] 1.7.6.1.2.2:
                   4834:        * src/classes/file.C [template_gc] 1.107.2.16.2.3:
                   4835:        * src/classes/image.C [template_gc] 1.90.2.15.2.4:
                   4836:        * src/classes/op.C [template_gc] 1.127.2.22.2.5:
                   4837:        * src/classes/string.C [template_gc] 1.125.2.15.2.4:
                   4838:        * src/classes/table.C [template_gc] 1.172.2.14.2.4:
                   4839:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.4:
                   4840:        * src/classes/xnode.C [template_gc] 1.54.2.10.2.4:
                   4841:        * src/include/pa_common.h [template_gc] 1.89.2.13.2.3:
                   4842:        * src/include/pa_memory.h [template_gc] 1.1.2.9.2.4:
                   4843:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.2:
                   4844:        * src/include/pa_request_charsets.h [template_gc] 1.1.2.3.2.2:
                   4845:        * src/include/pa_sql_connection.h [template_gc] 1.30.2.7.2.2:
                   4846:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.6:
                   4847:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.3:
                   4848:        * src/main/execute.C [template_gc] 1.295.2.27.2.3:
                   4849:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.3:
                   4850:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.4:
                   4851:        * src/main/pa_exception.C [template_gc] 1.43.2.15.2.3:
                   4852:        * src/main/pa_exec.C [template_gc] 1.48.2.18.2.2:
                   4853:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.3:
                   4854:        * src/main/pa_sql_driver_manager.C [template_gc] 1.69.2.17.2.2:
                   4855:        * src/main/pa_stylesheet_manager.C [template_gc] 1.16.2.7.2.2:
                   4856:        * src/main/untaint.C [template_gc] 1.115.2.12.2.3:
                   4857:        * src/sql/pa_sql_driver.h [template_gc] 1.34.2.4.2.1:
                   4858:        * src/targets/apache13/mod_parser3.C [template_gc] 1.28.2.6.2.2:
                   4859:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.3:
                   4860:        * src/targets/isapi/parser3isapi.C [template_gc] 1.82.2.6.2.2:
                   4861:        * src/types/pa_value.C [template_gc] 1.9.2.15.2.3:
                   4862:        * src/types/pa_vcode_frame.h [template_gc] 1.24.2.3.2.2:
                   4863:        * src/types/pa_vcookie.C [template_gc] 1.55.2.9.2.3:
                   4864:        * src/types/pa_venv.h [template_gc] 1.28.2.5.2.2:
                   4865:        * src/types/pa_vform.C [template_gc] 1.74.2.11.2.3:
                   4866:        * src/types/pa_vmail.C [template_gc] 1.40.2.12.2.4:
                   4867:        * src/types/pa_vmethod_frame.C [template_gc] 1.1.2.5.2.3:
                   4868:        * src/types/pa_vmethod_frame.h [template_gc] 1.45.2.8.2.4:
                   4869:        * src/types/pa_vobject.C [template_gc] 1.12.2.7.2.2:
                   4870:        * src/types/pa_vresponse.C [template_gc] 1.17.2.6.2.2:
                   4871:        * src/types/pa_vstatus.C [template_gc] 1.15.2.6.2.2:
                   4872:        * src/types/pa_vstring.C [template_gc] 1.22.2.3.2.2:
                   4873:        * src/types/pa_vxdoc.C [template_gc] 1.23.2.5.2.2:
                   4874:        * src/types/pa_vxdoc.h [template_gc] 1.31.2.9.2.3:
                   4875:        * src/types/pa_vxnode.C [template_gc] 1.30.2.5.2.3:
                   4876:        * src/types/pa_wcontext.h [template_gc] 1.42.2.9.2.3:
                   4877:                untaint.C 30%,
                   4878:                pa_common.C [done, without http for now]
                   4879: 
                   4880:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.13:
                   4881:                warning
                   4882: 
                   4883:        * src/lib/ltdl/Makefile.in [template_gc] 1.4.2.1.2.1:
                   4884:        * src/lib/ltdl/config_fixed.h [template_gc] 1.2.2.2.2.1:
                   4885:        * src/lib/ltdl/configure [template_gc] 1.4.2.1.2.1:
                   4886:        * src/lib/ltdl/configure.in [template_gc] 1.4.2.1.2.1:
                   4887:        * src/lib/ltdl/libltdl.dsp [template_gc] 1.3.2.2.2.1:
                   4888:        * src/lib/ltdl/ltdl.c [template_gc] 1.3.2.1.2.2:
                   4889:        * src/lib/ltdl/ltdl.h [template_gc] 1.2.2.1.2.2:
                   4890:        * src/lib/pcre/dftables.c [template_gc] 1.1.14.1.2.3:
                   4891:        * src/lib/pcre/get.c [template_gc] 1.1.14.1.2.4:
                   4892:        * src/lib/pcre/internal.h [template_gc] 1.1.18.2:
                   4893:        * src/lib/pcre/maketables.c [template_gc] 1.1.14.1.2.3:
                   4894:        * src/lib/pcre/pcre.c [template_gc] 1.1.14.1.2.4:
                   4895:        * src/lib/pcre/pcre.h [template_gc] 1.1.14.1.2.3:
                   4896:        * src/lib/pcre/pcre_parser_ctype.c [template_gc] 1.3.2.1.2.3:
                   4897:        * src/lib/pcre/study.c [template_gc] 1.1.14.1.2.4:
                   4898:                undone bad replaces
                   4899: 
                   4900: 2003-03-19  paf
                   4901:        * src/classes/classes.dsp [template_gc] 1.25.10.5.2.2:
                   4902:        * src/classes/string.C [template_gc] 1.125.2.15.2.3:
                   4903:        * src/classes/table.C [template_gc] 1.172.2.14.2.3:
                   4904:        * src/include/pa_array.h [template_gc] 1.57.2.27.2.1:
                   4905:        * src/include/pa_common.h [template_gc] 1.89.2.13.2.2:
                   4906:        * src/include/pa_dictionary.h [template_gc] 1.13.2.8.2.2:
                   4907:        * src/include/pa_exception.h [template_gc] 1.38.2.15.2.2:
                   4908:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.3:
                   4909:        * src/include/pa_table.h [template_gc] 1.48.2.11.2.2:
                   4910:        * src/lib/cord/cord.dsp [template_gc] 1.1.2.2:
                   4911:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.2:
                   4912:        * src/main/main.dsp [template_gc] 1.161.6.14.2.2:
                   4913:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.2:
                   4914:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.3:
                   4915:        * src/targets/cgi/parser3.dsp [template_gc] 1.60.10.2.2.2:
                   4916:        * src/types/pa_method.h [template_gc] 1.1.2.4.2.2:
                   4917:        * src/types/pa_value.h [template_gc] 1.109.2.25.2.2:
                   4918:        * src/types/pa_vmethod_frame.C [template_gc] 1.1.2.5.2.2:
                   4919:        * src/types/pa_vmethod_frame.h [template_gc] 1.45.2.8.2.2:
                   4920:        * src/types/types.dsp [template_gc] 1.35.10.9.2.2:
                   4921:                string reimplementation with cord+array<fragment>: 70%
                   4922: 
                   4923:        * src/lib/pcre/Makefile.in [template_gc] 1.8.2.3.2.1:
                   4924:        * src/lib/pcre/dftables.c [template_gc] 1.1.14.1.2.1:
                   4925:        * src/lib/pcre/get.c [template_gc] 1.1.14.1.2.2:
                   4926:        * src/lib/pcre/maketables.c [template_gc] 1.1.14.1.2.1:
                   4927:        * src/lib/pcre/pcre.c [template_gc] 1.1.14.1.2.1:
                   4928:        * src/lib/pcre/pcre.dsp [template_gc] 1.1.14.1.2.1:
                   4929:        * src/lib/pcre/pcre.h [template_gc] 1.1.14.1.2.1:
                   4930:        * src/lib/pcre/pcre_parser_ctype.c [template_gc] 1.3.2.1.2.1:
                   4931:        * src/lib/pcre/study.c [template_gc] 1.1.14.1.2.1:
                   4932:                restored bad replaces
                   4933: 
                   4934:        * src/classes/date.C [template_gc] 1.42.2.11.2.3:
                   4935:        * src/classes/form.C [template_gc] 1.34.2.7.2.3:
                   4936:        * src/classes/hash.C [template_gc] 1.54.2.13.2.3:
                   4937:        * src/classes/image.C [template_gc] 1.90.2.15.2.3:
                   4938:        * src/classes/mail.C [template_gc] 1.88.2.16.2.3:
                   4939:        * src/classes/op.C [template_gc] 1.127.2.22.2.4:
                   4940:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.3:
                   4941:        * src/classes/xnode.C [template_gc] 1.54.2.10.2.3:
                   4942:        * src/include/pa_array.h [template_gc] 1.57.2.27.2.3:
                   4943:        * src/include/pa_config_fixed.h [template_gc] 1.54.2.5.2.1:
                   4944:        * src/include/pa_exception.h [template_gc] 1.38.2.15.2.3:
                   4945:        * src/include/pa_memory.h [template_gc] 1.1.2.9.2.3:
                   4946:        * src/include/pa_sapi.h [template_gc] 1.22.2.8.2.2:
                   4947:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.5:
                   4948:        * src/include/pa_table.h [template_gc] 1.48.2.11.2.3:
                   4949:        * src/main/compile.C [template_gc] 1.69.2.6.2.2:
                   4950:        * src/main/compile_tools.C [template_gc] 1.54.2.5.2.2:
                   4951:        * src/main/execute.C [template_gc] 1.295.2.27.2.2:
                   4952:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.2:
                   4953:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.3:
                   4954:        * src/main/pa_exception.C [template_gc] 1.43.2.15.2.2:
                   4955:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.2:
                   4956:        * src/main/pa_socks.C [template_gc] 1.18.2.5.2.1:
                   4957:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.5:
                   4958:        * src/main/pa_table.C [template_gc] 1.53.2.10.2.2:
                   4959:        * src/main/untaint.C [template_gc] 1.115.2.12.2.2:
                   4960:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.2:
                   4961:        * src/targets/cgi/parser3.dsp [template_gc] 1.60.10.2.2.3:
                   4962:        * src/types/pa_value.C [template_gc] 1.9.2.15.2.2:
                   4963:        * src/types/pa_vcookie.C [template_gc] 1.55.2.9.2.2:
                   4964:        * src/types/pa_vfile.h [template_gc] 1.52.2.16.2.2:
                   4965:        * src/types/pa_vform.C [template_gc] 1.74.2.11.2.2:
                   4966:        * src/types/pa_vmail.C [template_gc] 1.40.2.12.2.3:
                   4967:        * src/types/pa_vmethod_frame.h [template_gc] 1.45.2.8.2.3:
                   4968:        * src/types/pa_vstateless_class.h [template_gc] 1.42.2.16.2.2:
                   4969:        * src/types/pa_vtable.C [template_gc] 1.21.2.5.2.2:
                   4970:        * src/types/pa_vtable.h [template_gc] 1.48.2.8.2.2:
                   4971:        * src/types/pa_vxdoc.h [template_gc] 1.31.2.9.2.2:
                   4972:        * src/types/pa_vxnode.C [template_gc] 1.30.2.5.2.2:
                   4973:        * src/types/pa_vxnode.h [template_gc] 1.22.2.6.2.2:
                   4974:        * src/types/pa_wcontext.C [template_gc] 1.24.2.5.2.2:
                   4975:        * src/types/pa_wcontext.h [template_gc] 1.42.2.9.2.2:
                   4976:        * src/types/pa_wwrapper.h [template_gc] 1.28.2.3.2.2:
                   4977:                started test
                   4978: 
                   4979:        * src/classes/op.C [template_gc] 1.127.2.22.2.3:
                   4980:        * src/include/pa_array.h [template_gc] 1.57.2.27.2.2:
                   4981:        * src/include/pa_memory.h [template_gc] 1.1.2.9.2.2:
                   4982:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.4:
                   4983:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.4:
                   4984:                string compiled
                   4985:                todo: test it
                   4986: 
                   4987: 2003-03-18  paf
                   4988:        * src/classes/date.C [template_gc] 1.42.2.11.2.2:
                   4989:        * src/classes/file.C [template_gc] 1.107.2.16.2.2:
                   4990:        * src/classes/form.C [template_gc] 1.34.2.7.2.2:
                   4991:        * src/classes/hash.C [template_gc] 1.54.2.13.2.2:
                   4992:        * src/classes/image.C [template_gc] 1.90.2.15.2.2:
                   4993:        * src/classes/mail.C [template_gc] 1.88.2.16.2.2:
                   4994:        * src/classes/math.C [template_gc] 1.24.2.12.2.2:
                   4995:        * src/classes/op.C [template_gc] 1.127.2.22.2.2:
                   4996:        * src/classes/string.C [template_gc] 1.125.2.15.2.2:
                   4997:        * src/classes/table.C [template_gc] 1.172.2.14.2.2:
                   4998:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.2:
                   4999:        * src/classes/xnode.C [template_gc] 1.54.2.10.2.2:
                   5000:        * src/include/pa_hash.h [template_gc] 1.58.2.18.2.2:
                   5001:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.2:
                   5002:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.2:
                   5003:        * src/types/pa_vmail.C [template_gc] 1.40.2.12.2.2:
                   5004:                lots of replacements,
                   5005:                todo:we can ignore lang in cmp and pos really,
                   5006:                                but would split properly!
                   5007: 
                   5008:        * src/include/pa_pool.h [gc] 1.86.4.2:
                   5009:        * src/main/execute.C [gc] 1.295.4.2:
                   5010:        * src/targets/cgi/pa_pool.C [gc] 1.41.4.2:
                   5011:                gc logging
                   5012: 
                   5013:        * src/lib/cord/cord.dsp [template_gc] 1.1.2.1:
                   5014:        * src/lib/cord/cordbscs.c [template_gc] 1.1.2.1:
                   5015:        * src/lib/cord/cordprnt.c [template_gc] 1.1.2.1:
                   5016:        * src/lib/cord/cordxtra.c [template_gc] 1.1.2.1:
                   5017:                gc: cord part made parser/src/lib: it's not compiled into libgc
                   5018:                by default
                   5019: 
                   5020:        * src/lib/cord/cordxtra.c 1.1:
                   5021:                file cordxtra.c was initially added on branch template_gc.
                   5022: 
                   5023:        * src/lib/cord/cordbscs.c 1.1:
                   5024:                file cordbscs.c was initially added on branch template_gc.
                   5025: 
                   5026:        * parser3.dsw [template_gc] 1.7.6.1.2.1:
                   5027:        * src/classes/classes.dsp [template_gc] 1.25.10.5.2.1:
                   5028:        * src/classes/classes.h [template_gc] 1.23.2.9.2.1:
                   5029:        * src/classes/date.C [template_gc] 1.42.2.11.2.1:
                   5030:        * src/classes/double.C [template_gc] 1.53.2.8.2.1:
                   5031:        * src/classes/file.C [template_gc] 1.107.2.16.2.1:
                   5032:        * src/classes/form.C [template_gc] 1.34.2.7.2.1:
                   5033:        * src/classes/hash.C [template_gc] 1.54.2.13.2.1:
                   5034:        * src/classes/image.C [template_gc] 1.90.2.15.2.1:
                   5035:        * src/classes/int.C [template_gc] 1.49.2.7.2.1:
                   5036:        * src/classes/mail.C [template_gc] 1.88.2.16.2.1:
                   5037:        * src/classes/math.C [template_gc] 1.24.2.12.2.1:
                   5038:        * src/classes/op.C [template_gc] 1.127.2.22.2.1:
                   5039:        * src/classes/response.C [template_gc] 1.23.2.8.2.1:
                   5040:        * src/classes/string.C [template_gc] 1.125.2.15.2.1:
                   5041:        * src/classes/table.C [template_gc] 1.172.2.14.2.1:
                   5042:        * src/classes/void.C [template_gc] 1.28.2.5.2.1:
                   5043:        * src/classes/xdoc.C [template_gc] 1.108.2.19.2.1:
                   5044:        * src/classes/xnode.C [template_gc] 1.54.2.10.2.1:
                   5045:        * src/classes/xnode.h [template_gc] 1.18.2.6.2.1:
                   5046:        * src/include/Makefile.am [template_gc] 1.3.14.2.2.1:
                   5047:        * src/include/pa_cache_managers.h [template_gc] 1.9.2.7.2.1:
                   5048:        * src/include/pa_charset.h [template_gc] 1.20.2.18.2.1:
                   5049:        * src/include/pa_charsets.h [template_gc] 1.8.2.8.2.1:
                   5050:        * src/include/pa_common.h [template_gc] 1.89.2.13.2.1:
                   5051:        * src/include/pa_dictionary.h [template_gc] 1.13.2.8.2.1:
                   5052:        * src/include/pa_exception.h [template_gc] 1.38.2.15.2.1:
                   5053:        * src/include/pa_exec.h [template_gc] 1.11.2.6.2.1:
                   5054:        * src/include/pa_globals.h [template_gc] 1.101.2.15.2.1:
                   5055:        * src/include/pa_hash.h [template_gc] 1.58.2.18.2.1:
                   5056:        * src/include/pa_memory.h [template_gc] 1.1.2.9.2.1:
                   5057:        * src/include/pa_pool.h [template_gc] 1.86.2.32.2.1:
                   5058:        * src/include/pa_request.h [template_gc] 1.160.2.37.2.1:
                   5059:        * src/include/pa_request_charsets.h [template_gc] 1.1.2.3.2.1:
                   5060:        * src/include/pa_sapi.h [template_gc] 1.22.2.8.2.1:
                   5061:        * src/include/pa_sql_connection.h [template_gc] 1.30.2.7.2.1:
                   5062:        * src/include/pa_sql_driver_manager.h [template_gc] 1.26.2.9.2.1:
                   5063:        * src/include/pa_string.h [template_gc] 1.144.2.28.2.1:
                   5064:        * src/include/pa_stylesheet_connection.h [template_gc] 1.32.2.5.2.1:
                   5065:        * src/include/pa_stylesheet_manager.h [template_gc] 1.15.2.5.2.1:
                   5066:        * src/include/pa_table.h [template_gc] 1.48.2.11.2.1:
                   5067:        * src/include/pa_uue.h [template_gc] 1.4.2.3.2.1:
                   5068:        * src/lib/pcre/get.c [template_gc] 1.1.14.1.2.1:
                   5069:        * src/main/Makefile.am [template_gc] 1.35.6.4.2.1:
                   5070:        * src/main/compile.C [template_gc] 1.69.2.6.2.1:
                   5071:        * src/main/compile.tab.C [template_gc] 1.81.2.13.2.1:
                   5072:        * src/main/compile_tools.C [template_gc] 1.54.2.5.2.1:
                   5073:        * src/main/compile_tools.h [template_gc] 1.67.2.8.2.1:
                   5074:        * src/main/execute.C [template_gc] 1.295.2.27.2.1:
                   5075:        * src/main/main.dsp [template_gc] 1.161.6.14.2.1:
                   5076:        * src/main/pa_charset.C [template_gc] 1.33.2.19.2.1:
                   5077:        * src/main/pa_charsets.C [template_gc] 1.11.2.10.2.1:
                   5078:        * src/main/pa_common.C [template_gc] 1.143.2.21.2.1:
                   5079:        * src/main/pa_dictionary.C [template_gc] 1.17.2.6.2.1:
                   5080:        * src/main/pa_exception.C [template_gc] 1.43.2.15.2.1:
                   5081:        * src/main/pa_exec.C [template_gc] 1.48.2.18.2.1:
                   5082:        * src/main/pa_globals.C [template_gc] 1.152.2.19.2.1:
                   5083:        * src/main/pa_memory.C [template_gc] 1.1.2.5.2.1:
                   5084:        * src/main/pa_pool.C [template_gc] 1.59.2.6.2.1:
                   5085:        * src/main/pa_request.C [template_gc] 1.245.2.37.2.1:
                   5086:        * src/main/pa_sql_driver_manager.C [template_gc] 1.69.2.17.2.1:
                   5087:        * src/main/pa_string.C [template_gc] 1.172.2.21.2.1:
                   5088:        * src/main/pa_stylesheet_manager.C [template_gc] 1.16.2.7.2.1:
                   5089:        * src/main/pa_table.C [template_gc] 1.53.2.10.2.1:
                   5090:        * src/main/pa_uue.C [template_gc] 1.4.2.5.2.1:
                   5091:        * src/main/untaint.C [template_gc] 1.115.2.12.2.1:
                   5092:        * src/targets/apache13/mod_parser3.C [template_gc] 1.28.2.6.2.1:
                   5093:        * src/targets/cgi/parser3.C [template_gc] 1.216.2.30.2.1:
                   5094:        * src/targets/cgi/parser3.dsp [template_gc] 1.60.10.2.2.1:
                   5095:        * src/targets/isapi/parser3isapi.C [template_gc] 1.82.2.6.2.1:
                   5096:        * src/types/pa_junction.h [template_gc] 1.1.2.2.2.1:
                   5097:        * src/types/pa_method.h [template_gc] 1.1.2.4.2.1:
                   5098:        * src/types/pa_value.C [template_gc] 1.9.2.15.2.1:
                   5099:        * src/types/pa_value.h [template_gc] 1.109.2.25.2.1:
                   5100:        * src/types/pa_vclass.C [template_gc] 1.16.2.5.2.1:
                   5101:        * src/types/pa_vclass.h [template_gc] 1.39.2.5.2.1:
                   5102:        * src/types/pa_vcode_frame.h [template_gc] 1.24.2.3.2.1:
                   5103:        * src/types/pa_vcookie.C [template_gc] 1.55.2.9.2.1:
                   5104:        * src/types/pa_vcookie.h [template_gc] 1.23.2.6.2.1:
                   5105:        * src/types/pa_vdate.h [template_gc] 1.24.2.5.2.1:
                   5106:        * src/types/pa_vdouble.h [template_gc] 1.42.2.9.2.1:
                   5107:        * src/types/pa_venv.h [template_gc] 1.28.2.5.2.1:
                   5108:        * src/types/pa_vfile.C [template_gc] 1.36.2.10.2.1:
                   5109:        * src/types/pa_vfile.h [template_gc] 1.52.2.16.2.1:
                   5110:        * src/types/pa_vform.C [template_gc] 1.74.2.11.2.1:
                   5111:        * src/types/pa_vform.h [template_gc] 1.45.2.8.2.1:
                   5112:        * src/types/pa_vhash.C [template_gc] 1.1.2.3.2.1:
                   5113:        * src/types/pa_vhash.h [template_gc] 1.43.2.14.2.1:
                   5114:        * src/types/pa_vimage.C [template_gc] 1.22.2.7.2.1:
                   5115:        * src/types/pa_vimage.h [template_gc] 1.34.2.8.2.1:
                   5116:        * src/types/pa_vint.h [template_gc] 1.38.2.10.2.1:
                   5117:        * src/types/pa_vmail.C [template_gc] 1.40.2.12.2.1:
                   5118:        * src/types/pa_vmail.h [template_gc] 1.9.2.6.2.1:
                   5119:        * src/types/pa_vmath.C [template_gc] 1.1.2.9.2.1:
                   5120:        * src/types/pa_vmath.h [template_gc] 1.14.2.4.2.1:
                   5121:        * src/types/pa_vmethod_frame.C [template_gc] 1.1.2.5.2.1:
                   5122:        * src/types/pa_vmethod_frame.h [template_gc] 1.45.2.8.2.1:
                   5123:        * src/types/pa_vobject.C [template_gc] 1.12.2.7.2.1:
                   5124:        * src/types/pa_vobject.h [template_gc] 1.38.2.10.2.1:
                   5125:        * src/types/pa_vrequest.C [template_gc] 1.27.2.9.2.1:
                   5126:        * src/types/pa_vrequest.h [template_gc] 1.25.2.3.2.1:
                   5127:        * src/types/pa_vresponse.C [template_gc] 1.17.2.6.2.1:
                   5128:        * src/types/pa_vresponse.h [template_gc] 1.32.2.6.2.1:
                   5129:        * src/types/pa_vstateless_class.C [template_gc] 1.19.2.9.2.1:
                   5130:        * src/types/pa_vstateless_class.h [template_gc] 1.42.2.16.2.1:
                   5131:        * src/types/pa_vstateless_object.h [template_gc] 1.28.2.4.2.1:
                   5132:        * src/types/pa_vstatus.C [template_gc] 1.15.2.6.2.1:
                   5133:        * src/types/pa_vstatus.h [template_gc] 1.15.2.7.2.1:
                   5134:        * src/types/pa_vstring.C [template_gc] 1.22.2.3.2.1:
                   5135:        * src/types/pa_vstring.h [template_gc] 1.54.2.11.2.1:
                   5136:        * src/types/pa_vtable.C [template_gc] 1.21.2.5.2.1:
                   5137:        * src/types/pa_vtable.h [template_gc] 1.48.2.8.2.1:
                   5138:        * src/types/pa_vvoid.h [template_gc] 1.17.2.8.2.1:
                   5139:        * src/types/pa_vxdoc.C [template_gc] 1.23.2.5.2.1:
                   5140:        * src/types/pa_vxdoc.h [template_gc] 1.31.2.9.2.1:
                   5141:        * src/types/pa_vxnode.C [template_gc] 1.30.2.5.2.1:
                   5142:        * src/types/pa_vxnode.h [template_gc] 1.22.2.6.2.1:
                   5143:        * src/types/pa_wcontext.C [template_gc] 1.24.2.5.2.1:
                   5144:        * src/types/pa_wcontext.h [template_gc] 1.42.2.9.2.1:
                   5145:        * src/types/pa_wwrapper.h [template_gc] 1.28.2.3.2.1:
                   5146:        * src/types/types.dsp [template_gc] 1.35.10.9.2.1:
                   5147:                started porting to gc:
                   5148:                PA_Object done
                   5149:                lots of replacements also
                   5150: 
                   5151:        * src/lib/cord/cordprnt.c 1.1:
                   5152:                file cordprnt.c was initially added on branch template_gc.
                   5153: 
                   5154:        * src/lib/cord/cord.dsp 1.1:
                   5155:                file cord.dsp was initially added on branch template_gc.
                   5156: 
                   5157: 2003-03-17  paf
                   5158:        * src/classes/date.C [gc] 1.42.4.1:
                   5159:        * src/classes/file.C [gc] 1.107.4.1:
                   5160:        * src/classes/form.C [gc] 1.34.4.1:
                   5161:        * src/classes/image.C [gc] 1.90.4.1:
                   5162:        * src/classes/mail.C [gc] 1.88.4.1:
                   5163:        * src/classes/op.C [gc] 1.127.4.1:
                   5164:        * src/classes/table.C [gc] 1.172.4.1:
                   5165:        * src/classes/xdoc.C [gc] 1.108.4.1:
                   5166:        * src/classes/xnode.C [gc] 1.54.4.1:
                   5167:        * src/include/pa_pool.h [gc] 1.86.4.1:
                   5168:        * src/include/pa_pragma_pack_begin.h [gc] 1.6.4.1:
                   5169:        * src/include/pa_pragma_pack_end.h [gc] 1.6.4.1:
                   5170:        * src/include/pa_string.h [gc] 1.144.4.1:
                   5171:        * src/include/pa_types.h [gc] 1.44.4.1:
                   5172:        * src/main/compile.C [gc] 1.69.4.1:
                   5173:        * src/main/compile.tab.C [gc] 1.81.4.1:
                   5174:        * src/main/execute.C [gc] 1.295.4.1:
                   5175:        * src/main/pa_charset.C [gc] 1.33.4.1:
                   5176:        * src/main/pa_common.C [gc] 1.145.2.1:
                   5177:        * src/main/pa_exception.C [gc] 1.43.4.1:
                   5178:        * src/main/pa_exec.C [gc] 1.48.4.1:
                   5179:        * src/main/pa_globals.C [gc] 1.152.4.1:
                   5180:        * src/main/pa_pool.C [gc] 1.59.4.1:
                   5181:        * src/main/pa_request.C [gc] 1.245.4.1:
                   5182:        * src/main/pa_sql_driver_manager.C [gc] 1.69.4.1:
                   5183:        * src/main/pa_string.C [gc] 1.172.4.1:
                   5184:        * src/main/pa_stylesheet_manager.C [gc] 1.16.4.1:
                   5185:        * src/main/pa_uue.C [gc] 1.4.4.1:
                   5186:        * src/main/untaint.C [gc] 1.115.4.1:
                   5187:        * src/targets/cgi/pa_pool.C [gc] 1.41.4.1:
                   5188:        * src/targets/cgi/parser3.C [gc] 1.216.4.1:
                   5189:        * src/targets/cgi/parser3.dsp [gc] 1.60.12.1:
                   5190:        * src/targets/cgi/pool_storage.h [gc] 1.13.4.1:
                   5191:        * src/types/pa_vcookie.C [gc] 1.55.4.1:
                   5192:        * src/types/pa_vdouble.h [gc] 1.42.4.1:
                   5193:        * src/types/pa_vfile.C [gc] 1.36.4.1:
                   5194:        * src/types/pa_vform.C [gc] 1.74.4.1:
                   5195:        * src/types/pa_vint.h [gc] 1.38.4.1:
                   5196:        * src/types/pa_vmail.C [gc] 1.41.2.1:
                   5197:        * src/types/pa_vxdoc.C [gc] 1.23.4.1:
                   5198:        * src/types/pa_vxdoc.h [gc] 1.31.4.1:
                   5199:        * src/types/pa_vxnode.C [gc] 1.30.4.1:
                   5200:        * src/types/pa_vxnode.h [gc] 1.22.4.1:
                   5201:        * www/htdocs/.htaccess [gc] 1.12.8.1:
                   5202:        * www/htdocs/auto.p [gc] 1.17.12.1:
                   5203:                libgc attempt
                   5204: 
                   5205:        * src/main/pa_common.C [gc] 1.145.2.2:
                   5206:        * src/main/pa_common.C [gc] 1.145.2.3:
                   5207:                *** empty log message ***
                   5208: 
                   5209: 2003-03-13  paf
                   5210:        * src/include/pa_request.h [autoptr] 1.160.2.37:
                   5211:        * src/lib/ltdl/libltdl.dsp [autoptr] 1.3.2.1:
                   5212:        * src/lib/md5/md5.dsp [autoptr] 1.2.10.1:
                   5213:        * src/main/compile.tab.C [autoptr] 1.81.2.13:
                   5214:        * src/main/execute.C [autoptr] 1.295.2.27:
                   5215:        * src/main/pa_request.C [autoptr] 1.245.2.37:
                   5216:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.28:
                   5217:        * src/types/pa_value.C [autoptr] 1.9.2.15:
                   5218:        * src/types/pa_value.h [autoptr] 1.109.2.25:
                   5219:        * src/types/pa_vobject.h [autoptr] 1.38.2.9:
                   5220:        * src/types/pa_vstateless_class.h [autoptr] 1.42.2.16:
                   5221:        * src/types/pa_vstatus.C [autoptr] 1.15.2.6:
                   5222:        * src/types/types.dsp [autoptr] 1.35.10.8:
                   5223:        * www/htdocs/.htaccess [autoptr] 1.12.6.9:
                   5224:                set_base, set_derived simplified [counter leaks fixed]
                   5225: 
                   5226:        * src/include/pa_config_fixed.h 1.55:
                   5227:        * src/types/pa_vstatus.C 1.16:
                   5228:        * src/types/types.dsp 1.36:
                   5229:                incorporated status class patch
                   5230:                From: "Victor Fedoseev" <vvf_ru@mail.ru>
                   5231:                Sent: Thursday, January 23, 2003 8:14 AM
                   5232:                
                   5233:                now we have $status.rusage.maxrss,tv_sec,tv_usec un WIN32 [plus Win32 specific:
                   5234:                QuotaPeakNonPagedPoolUsage
                   5235:                QuotaPeakPagedPoolUsage
                   5236:                PeakPagefileUsage]
                   5237: 
                   5238:        * src/include/pa_sql_driver_manager.h [autoptr] 1.26.2.9:
                   5239:        * src/main/pa_sql_driver_manager.C [autoptr] 1.69.2.17:
                   5240:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.29:
                   5241:                lt_dlexit called
                   5242: 
                   5243: 2003-03-12  paf
                   5244:        * Makefile.in [autoptr] 1.48.2.4:
                   5245:        * bin/Makefile.in [autoptr] 1.9.2.3:
                   5246:        * configure [autoptr] 1.66.2.4:
                   5247:        * configure.in [autoptr] 1.62.2.4:
                   5248:        * etc/Makefile.in [autoptr] 1.14.2.3:
                   5249:        * etc/parser3.charsets/Makefile.in [autoptr] 1.17.2.3:
                   5250:        * src/Makefile.in [autoptr] 1.55.2.3:
                   5251:        * src/classes/Makefile.in [autoptr] 1.53.2.3:
                   5252:        * src/include/Makefile.in [autoptr] 1.11.2.5:
                   5253:        * src/lib/Makefile.in [autoptr] 1.8.2.3:
                   5254:        * src/lib/md5/Makefile.in [autoptr] 1.6.2.3:
                   5255:        * src/lib/patches/Makefile.in [autoptr] 1.10.2.3:
                   5256:        * src/lib/pcre/Makefile.in [autoptr] 1.8.2.3:
                   5257:        * src/main/Makefile.in [autoptr] 1.50.2.6:
                   5258:        * src/sql/Makefile.in [autoptr] 1.11.2.3:
                   5259:        * src/targets/Makefile.in [autoptr] 1.42.2.3:
                   5260:        * src/targets/apache13/p3runConfigure.in [autoptr] 1.11.14.4:
                   5261:        * src/targets/cgi/Makefile.am [autoptr] 1.46.2.4:
                   5262:        * src/targets/cgi/Makefile.in [autoptr] 1.62.2.4:
                   5263:        * src/targets/isapi/Makefile.in [autoptr] 1.11.2.3:
                   5264:        * src/types/Makefile.in [autoptr] 1.50.2.4:
                   5265:                libstdc++ linkage fixed for g++ 3.2.2
                   5266: 
                   5267:        * src/include/pa_sql_driver_manager.h [autoptr] 1.26.2.8:
                   5268:        * src/include/pa_stylesheet_manager.h [autoptr] 1.15.2.5:
                   5269:        * src/main/compile.tab.C [autoptr] 1.81.2.12:
                   5270:                gcc 3.2 rightliy complained on using privately declared class [
                   5271:                fixed]
                   5272: 
                   5273:        * Makefile.am [autoptr] 1.34.2.3:
                   5274:        * Makefile.in [autoptr] 1.48.2.5:
                   5275:        * src/targets/apache13/Makefile.in 1.45:
                   5276:        * src/targets/apache13/p3runConfigure.in 1.12:
                   5277:        * src/targets/apache13/p3runConfigure.in [autoptr] 1.11.14.2:
                   5278:        * tests/Makefile [autoptr] 1.1.2.8:
                   5279:                *** empty log message ***
                   5280: 
                   5281:        * src/include/pa_request.h [autoptr] 1.160.2.36:
                   5282:        * src/main/compile.tab.C [autoptr] 1.81.2.11:
                   5283:        * src/main/execute.C [autoptr] 1.295.2.26:
                   5284:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.25:
                   5285:                SIGPIPE now can be intercepted
                   5286:                and does not cause exception in exception handler
                   5287: 
                   5288:        * Makefile.in [autoptr] 1.48.2.3:
                   5289:        * bin/Makefile.in [autoptr] 1.9.2.2:
                   5290:        * configure [autoptr] 1.66.2.3:
                   5291:        * configure.in [autoptr] 1.62.2.3:
                   5292:        * etc/Makefile.in [autoptr] 1.14.2.2:
                   5293:        * etc/parser3.charsets/Makefile.in [autoptr] 1.17.2.2:
                   5294:        * src/Makefile.in [autoptr] 1.55.2.2:
                   5295:        * src/classes/Makefile.in [autoptr] 1.53.2.2:
                   5296:        * src/include/Makefile.in [autoptr] 1.11.2.4:
                   5297:        * src/lib/Makefile.in [autoptr] 1.8.2.2:
                   5298:        * src/lib/md5/Makefile.in [autoptr] 1.6.2.2:
                   5299:        * src/lib/patches/Makefile.in [autoptr] 1.10.2.2:
                   5300:        * src/lib/pcre/Makefile.in [autoptr] 1.8.2.2:
                   5301:        * src/main/Makefile.in [autoptr] 1.50.2.5:
                   5302:        * src/sql/Makefile.in [autoptr] 1.11.2.2:
                   5303:        * src/targets/Makefile.in [autoptr] 1.42.2.2:
                   5304:        * src/targets/apache13/Makefile.in [autoptr] 1.44.2.2:
                   5305:        * src/targets/apache13/p3runConfigure.in [autoptr] 1.11.14.3:
                   5306:        * src/targets/cgi/Makefile.am [autoptr] 1.46.2.3:
                   5307:        * src/targets/cgi/Makefile.in [autoptr] 1.62.2.3:
                   5308:        * src/targets/isapi/Makefile.in [autoptr] 1.11.2.2:
                   5309:        * src/types/Makefile.in [autoptr] 1.50.2.3:
                   5310:                configure now default links libstdc++ statically.
                   5311:                that can be overriden by --with-dynamic-stdcpp
                   5312: 
                   5313:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.26:
                   5314:                1. more detailed log on signals.
                   5315:                2. sigpipe before request constructor now causes death
                   5316: 
                   5317:        * configure [autoptr] 1.66.2.5:
                   5318:        * configure.in [autoptr] 1.62.2.5:
                   5319:        * src/lib/ltdl/Makefile.in [autoptr] 1.4.2.1:
                   5320:        * src/lib/ltdl/configure [autoptr] 1.4.2.1:
                   5321:        * src/lib/ltdl/configure.in [autoptr] 1.4.2.1:
                   5322:        * src/targets/apache13/Makefile.in [autoptr] 1.44.2.3:
                   5323:        * src/targets/cgi/Makefile.am [autoptr] 1.46.2.5:
                   5324:        * src/targets/cgi/Makefile.in [autoptr] 1.62.2.5:
                   5325:                lib/ltdl/Makefile now created by /configure.in only [were by
                   5326:                lib/ltdl/configure.in OVERWRITE]
                   5327: 
                   5328: 2003-03-11  paf
                   5329:        * src/main/compile.tab.C [autoptr] 1.81.2.10:
                   5330:        * src/main/compile.y [autoptr] 1.204.2.7:
                   5331:        * src/sql/pa_sql_driver.h [autoptr] 1.34.2.4:
                   5332:        * src/types/pa_vstateless_class.C [autoptr] 1.19.2.8:
                   5333:        * src/types/pa_vstateless_class.h [autoptr] 1.42.2.15:
                   5334:        * www/htdocs/.htaccess [autoptr] 1.12.6.8:
                   5335:                removed necessity of libstdc++
                   5336: 
                   5337:        * src/include/pa_request.h 1.161:
                   5338:        * src/include/pa_request.h [autoptr] 1.160.2.35:
                   5339:                ANTI_ENDLESS_EXECUTE_RECOURSION doubled
                   5340: 
                   5341: 2003-03-08  paf
                   5342:        * tests/117.html 1.1:
                   5343:                file 117.html was initially added on branch autoptr.
                   5344: 
                   5345:        * src/classes/xdoc.C [autoptr] 1.108.2.19:
                   5346:                forgotten: global xdoc when ndef XML
                   5347: 
                   5348:        * src/classes/mail.C [autoptr] 1.88.2.16:
                   5349:        * src/classes/response.C [autoptr] 1.23.2.8:
                   5350:        * src/include/pa_request.h [autoptr] 1.160.2.33:
                   5351:        * src/main/pa_request.C [autoptr] 1.245.2.36:
                   5352:                removing vform,response,cookie.h -> pa_request.h dependency
                   5353: 
                   5354:        * tests/118.html 1.1:
                   5355:                file 118.html was initially added on branch autoptr.
                   5356: 
                   5357:        * tests/results/115.processed 1.1:
                   5358:                file 115.processed was initially added on branch autoptr.
                   5359: 
                   5360:        * tests/119.html 1.1:
                   5361:                file 119.html was initially added on branch autoptr.
                   5362: 
                   5363:        * tests/120.html 1.1:
                   5364:                file 120.html was initially added on branch autoptr.
                   5365: 
                   5366:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.22:
                   5367:                charsets: see some strange things with old xml lib-- it's
                   5368:                internal memory handling has faults
                   5369: 
                   5370:        * tests/results/117.processed 1.1:
                   5371:                file 117.processed was initially added on branch autoptr.
                   5372: 
                   5373:        * tests/results/109.processed 1.1:
                   5374:                file 109.processed was initially added on branch autoptr.
                   5375: 
                   5376:        * tests/results/110.processed 1.1:
                   5377:                file 110.processed was initially added on branch autoptr.
                   5378: 
                   5379:        * tests/021.html [autoptr] 1.1.2.2:
                   5380:        * tests/031.html [autoptr] 1.1.2.2:
                   5381:        * tests/033.html [autoptr] 1.1.2.2:
                   5382:        * tests/109.html [autoptr] 1.1.2.1:
                   5383:        * tests/110.html [autoptr] 1.1.2.1:
                   5384:        * tests/111.html [autoptr] 1.1.2.1:
                   5385:        * tests/112.html [autoptr] 1.1.2.1:
                   5386:        * tests/113.html [autoptr] 1.1.2.1:
                   5387:        * tests/114.html [autoptr] 1.1.2.1:
                   5388:        * tests/115.html [autoptr] 1.1.2.1:
                   5389:        * tests/116.html [autoptr] 1.1.2.1:
                   5390:        * tests/117.html [autoptr] 1.1.2.1:
                   5391:        * tests/118.html [autoptr] 1.1.2.1:
                   5392:        * tests/119.html [autoptr] 1.1.2.1:
                   5393:        * tests/120.html [autoptr] 1.1.2.1:
                   5394:        * tests/results/109.processed [autoptr] 1.1.2.1:
                   5395:        * tests/results/110.processed [autoptr] 1.1.2.1:
                   5396:        * tests/results/111.processed [autoptr] 1.1.2.1:
                   5397:        * tests/results/112.processed [autoptr] 1.1.2.1:
                   5398:        * tests/results/113.processed [autoptr] 1.1.2.1:
                   5399:        * tests/results/114.processed [autoptr] 1.1.2.1:
                   5400:        * tests/results/115.processed [autoptr] 1.1.2.1:
                   5401:        * tests/results/116.processed [autoptr] 1.1.2.1:
                   5402:        * tests/results/117.processed [autoptr] 1.1.2.1:
                   5403:        * tests/results/118.processed [autoptr] 1.1.2.1:
                   5404:        * tests/results/119.processed [autoptr] 1.1.2.1:
                   5405:        * tests/results/120.processed [autoptr] 1.1.2.1:
                   5406:                xml: tests
                   5407:                109 dom create/show
                   5408:                110 xpath selectSingle
                   5409:                111 xdoc.create from tainted &
                   5410:                112 xdoc.create/output with russian attr value
                   5411:                113 xpath selectString/Number
                   5412:                114 dom attributes.count
                   5413:                115 xpath selectBool
                   5414:                116 output media-type change
                   5415:                117 transform by dom stylesheet
                   5416:                118 empty transform result
                   5417:                119 dom setAttribute
                   5418:                120 nbsp letter output
                   5419:                
                   5420:                =END OF PREPARED XML TESTS=
                   5421: 
                   5422:        * tests/results/119.processed 1.1:
                   5423:                file 119.processed was initially added on branch autoptr.
                   5424: 
                   5425:        * tests/results/120.processed 1.1:
                   5426:                file 120.processed was initially added on branch autoptr.
                   5427: 
                   5428:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.23:
                   5429:                todo: move to latest xml version on win32 and run memleak tests again
                   5430: 
                   5431:        * src/classes/op.C [autoptr] 1.127.2.21:
                   5432:        * src/include/pa_request.h [autoptr] 1.160.2.34:
                   5433:                removing vclass,object.h -> pa_request.h dependency
                   5434: 
                   5435:        * tests/results/112.processed 1.1:
                   5436:                file 112.processed was initially added on branch autoptr.
                   5437: 
                   5438:        * tests/results/114.processed 1.1:
                   5439:                file 114.processed was initially added on branch autoptr.
                   5440: 
                   5441:        * src/main/pa_request.C [autoptr] 1.245.2.32:
                   5442:        * src/main/pa_request.C [autoptr] 1.245.2.33:
                   5443:        * www/htdocs/.htaccess [autoptr] 1.12.6.7:
                   5444:                forgotten: ifdef XML
                   5445: 
                   5446:        * src/classes/hash.C [autoptr] 1.54.2.13:
                   5447:        * src/classes/mail.C [autoptr] 1.88.2.15:
                   5448:        * src/classes/string.C [autoptr] 1.125.2.15:
                   5449:        * src/classes/table.C [autoptr] 1.172.2.14:
                   5450:        * src/include/pa_array.h [autoptr] 1.57.2.27:
                   5451:        * src/main/pa_sql_driver_manager.C [autoptr] 1.69.2.16:
                   5452:        * src/types/pa_vmail.C [autoptr] 1.40.2.10:
                   5453:        * src/types/pa_vmail.h [autoptr] 1.9.2.5:
                   5454:        * www/htdocs/.htaccess [autoptr] 1.12.6.6:
                   5455:        * www/htdocs/index.html 1.211:
                   5456:                started full-scale-site-test [~ http://parser.ru sources]
                   5457:                
                   5458:                some fixes
                   5459: 
                   5460:        * tests/110.html 1.1:
                   5461:                file 110.html was initially added on branch autoptr.
                   5462: 
                   5463:        * tests/109.html 1.1:
                   5464:                file 109.html was initially added on branch autoptr.
                   5465: 
                   5466:        * src/include/pa_types.h [autoptr] 1.44.2.3:
                   5467:        * src/main/pa_charset.C [autoptr] 1.33.2.19:
                   5468:                charsets: fixed problems when transcode from charset A to A.
                   5469: 
                   5470:        * tests/results/116.processed 1.1:
                   5471:                file 116.processed was initially added on branch autoptr.
                   5472: 
1.24      paf      5473:        * Makefile.in [autoptr] 1.48.2.2:
                   5474:        * src/main/pa_request.C [autoptr] 1.245.2.34:
                   5475:        * www/cgi-bin/parser3.log [autoptr] 1.78.10.1:
                   5476:                *** empty log message ***
                   5477: 
1.23      paf      5478:        * tests/111.html 1.1:
                   5479:                file 111.html was initially added on branch autoptr.
                   5480: 
                   5481:        * src/main/untaint.C [autoptr] 1.115.2.12:
                   5482:        * src/types/pa_vmail.C [autoptr] 1.40.2.11:
                   5483:                mail: transcode fixed.
                   5484:                todo: still problems when transcode from charset A to A.
                   5485: 
                   5486:        * tests/112.html 1.1:
                   5487:                file 112.html was initially added on branch autoptr.
                   5488: 
                   5489:        * tests/results/118.processed 1.1:
                   5490:                file 118.processed was initially added on branch autoptr.
                   5491: 
                   5492:        * tests/113.html 1.1:
                   5493:                file 113.html was initially added on branch autoptr.
                   5494: 
                   5495:        * tests/results/111.processed 1.1:
                   5496:                file 111.processed was initially added on branch autoptr.
                   5497: 
                   5498:        * tests/Makefile [autoptr] 1.1.2.7:
                   5499:                make install & co
                   5500: 
                   5501:        * tests/114.html 1.1:
                   5502:                file 114.html was initially added on branch autoptr.
                   5503: 
                   5504:        * tests/115.html 1.1:
                   5505:                file 115.html was initially added on branch autoptr.
                   5506: 
                   5507:        * src/include/pa_config_fixed.h [autoptr] 1.54.2.5:
                   5508:        * src/types/pa_vxdoc.C [autoptr] 1.23.2.5:
                   5509:                yet another return 0; fixed
                   5510: 
                   5511:        * src/include/pa_config_fixed.h [autoptr] 1.54.2.4:
                   5512:        * src/types/pa_vmail.C [autoptr] 1.40.2.12:
                   5513:        * src/types/pa_vmail.h [autoptr] 1.9.2.6:
                   5514:                vmail.C received just compiled [not tested]
                   5515: 
                   5516:        * tests/results/113.processed 1.1:
                   5517:                file 113.processed was initially added on branch autoptr.
                   5518: 
                   5519:        * tests/116.html 1.1:
                   5520:                file 116.html was initially added on branch autoptr.
                   5521: 
                   5522:        * src/include/pa_request.h [autoptr] 1.160.2.32:
                   5523:                removing vmail.h -> pa_request.h dependency [testing...]
                   5524: 
                   5525: 2003-03-07  paf
                   5526:        * src/classes/xdoc.C [autoptr] 1.108.2.18:
                   5527:        * src/include/pa_charset.h [autoptr] 1.20.2.18:
                   5528:        * src/include/pa_stylesheet_connection.h [autoptr] 1.32.2.5:
                   5529:        * tests/108.html [autoptr] 1.1.2.1:
                   5530:        * tests/108.xsl [autoptr] 1.1.2.1:
                   5531:        * tests/results/108.processed [autoptr] 1.1.2.1:
                   5532:                xml: test 108 transform with params [bugs fixed]
                   5533: 
                   5534:        * tests/results/107.processed 1.1:
                   5535:                file 107.processed was initially added on branch autoptr.
                   5536: 
                   5537:        * tests/108.xsl 1.1:
                   5538:                file 108.xsl was initially added on branch autoptr.
                   5539: 
1.24      paf      5540:        * src/classes/xdoc.C [autoptr] 1.108.2.15:
                   5541:        * src/types/pa_vxdoc.h [autoptr] 1.31.2.7:
                   5542:        * src/types/pa_vxnode.h [autoptr] 1.22.2.5:
                   5543:                xml: linked
                   5544: 
1.23      paf      5545:        * tests/106.html 1.1:
                   5546:                file 106.html was initially added on branch autoptr.
                   5547: 
                   5548:        * src/classes/classes.C [autoptr] 1.18.2.6:
                   5549:                fixed: prevent system classes from modification to lock ALL the
                   5550:                classes, not only directly used
                   5551: 
                   5552:        * tests/107.html 1.1:
                   5553:                file 107.html was initially added on branch autoptr.
                   5554: 
                   5555:        * tests/108.html 1.1:
                   5556:                file 108.html was initially added on branch autoptr.
                   5557: 
                   5558:        * tests/results/106.processed 1.1:
                   5559:                file 106.processed was initially added on branch autoptr.
                   5560: 
                   5561:        * src/include/pa_charset.h [autoptr] 1.20.2.16:
                   5562:        * src/main/pa_charset.C [autoptr] 1.33.2.16:
                   5563:        * www/htdocs/.htaccess [autoptr] 1.12.6.5:
                   5564:                xml: charset two mem alloc functions used for different cases [
                   5565:                libxml, libxsl]
                   5566: 
                   5567:        * src/classes/xdoc.C [autoptr] 1.108.2.17:
                   5568:        * src/include/pa_charset.h [autoptr] 1.20.2.17:
                   5569:        * src/include/pa_request.h [autoptr] 1.160.2.31:
                   5570:        * src/main/execute.C [autoptr] 1.295.2.25:
                   5571:        * src/main/pa_charset.C [autoptr] 1.33.2.17:
                   5572:        * src/main/pa_exception.C [autoptr] 1.43.2.15:
                   5573:        * src/main/pa_globals.C [autoptr] 1.152.2.19:
                   5574:        * src/main/pa_request.C [autoptr] 1.245.2.31:
                   5575:        * src/types/pa_vxdoc.C [autoptr] 1.23.2.4:
                   5576:        * src/types/pa_vxdoc.h [autoptr] 1.31.2.9:
                   5577:        * src/types/pa_vxnode.C [autoptr] 1.30.2.5:
                   5578:        * tests/107.html [autoptr] 1.1.2.1:
                   5579:        * tests/results/107.processed [autoptr] 1.1.2.1:
                   5580:                xml: test: 107 bug fixes
                   5581: 
                   5582:        * tests/results/108.processed 1.1:
                   5583:                file 108.processed was initially added on branch autoptr.
                   5584: 
                   5585:        * src/classes/xdoc.C [autoptr] 1.108.2.14:
                   5586:        * src/types/pa_vxdoc.h [autoptr] 1.31.2.6:
                   5587:                xdoc.C compiled
                   5588: 
                   5589:        * tests/106.html [autoptr] 1.1.2.1:
                   5590:        * tests/results/106.processed [autoptr] 1.1.2.1:
                   5591:                test: 106 xdoc create, string
                   5592: 
                   5593:        * src/classes/xdoc.C [autoptr] 1.108.2.16:
                   5594:        * src/classes/xnode.C [autoptr] 1.54.2.10:
                   5595:        * src/classes/xnode.h [autoptr] 1.18.2.6:
                   5596:        * src/types/pa_value.h [autoptr] 1.109.2.24:
                   5597:        * src/types/pa_vxdoc.C [autoptr] 1.23.2.3:
                   5598:        * src/types/pa_vxdoc.h [autoptr] 1.31.2.8:
                   5599:        * src/types/pa_vxnode.C [autoptr] 1.30.2.4:
                   5600:        * src/types/pa_vxnode.h [autoptr] 1.22.2.6:
                   5601:                test: 107 bug fixes
                   5602: 
                   5603:        * src/main/pa_charset.C [autoptr] 1.33.2.18:
                   5604:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.21:
                   5605:                fixed: mem leak from copy/paste bug
                   5606: 
                   5607: 2003-03-06  paf
                   5608:        * tests/023.html [autoptr] 1.1.2.2:
                   5609:                in some cases it rounded up badly. postponing solution of that
                   5610:                problem, making more simple test
                   5611: 
                   5612:        * src/include/pa_charset.h [autoptr] 1.20.2.14:
                   5613:        * src/include/pa_config_fixed.h [autoptr] 1.54.2.3:
                   5614:        * src/include/pa_memory.h [autoptr] 1.1.2.6:
                   5615:        * src/include/pa_pool.h [autoptr] 1.86.2.32:
                   5616:        * src/main/pa_charset.C [autoptr] 1.33.2.14:
                   5617:        * src/main/pa_memory.C [autoptr] 1.1.2.4:
                   5618:        * src/main/pa_pool.C [autoptr] 1.59.2.6:
                   5619:        * src/types/pa_vxdoc.C [autoptr] 1.23.2.2:
                   5620:        * src/types/pa_vxdoc.h [autoptr] 1.31.2.5:
                   5621:        * src/types/pa_vxnode.C [autoptr] 1.30.2.3:
                   5622:        * src/types/pa_vxnode.h [autoptr] 1.22.2.4:
                   5623:                xml: charsets
                   5624: 
                   5625:        * src/include/pa_stylesheet_connection.h [autoptr] 1.32.2.4:
                   5626:        * src/include/pa_stylesheet_manager.h [autoptr] 1.15.2.4:
                   5627:        * src/main/pa_sql_driver_manager.C [autoptr] 1.69.2.15:
                   5628:        * src/main/pa_stylesheet_manager.C [autoptr] 1.16.2.6:
                   5629:                xml: stylesheet&manager done
                   5630: 
                   5631:        * src/classes/xnode.C [autoptr] 1.54.2.9:
                   5632:        * src/classes/xnode.h [autoptr] 1.18.2.5:
                   5633:        * src/include/pa_charset.h [autoptr] 1.20.2.15:
                   5634:        * src/include/pa_memory.h [autoptr] 1.1.2.8:
                   5635:        * src/include/pa_request.h [autoptr] 1.160.2.30:
                   5636:        * src/include/pa_string.h [autoptr] 1.144.2.28:
                   5637:        * src/main/pa_globals.C [autoptr] 1.152.2.18:
                   5638:        * src/main/pa_request.C [autoptr] 1.245.2.30:
                   5639:        * src/main/pa_stylesheet_manager.C [autoptr] 1.16.2.7:
                   5640:                xnode.C compiled
                   5641: 
                   5642:        * src/include/pa_memory.h [autoptr] 1.1.2.7:
                   5643:        * src/include/pa_stylesheet_connection.h [autoptr] 1.32.2.3:
                   5644:        * src/include/pa_stylesheet_manager.h [autoptr] 1.15.2.3:
                   5645:        * src/main/pa_stylesheet_manager.C [autoptr] 1.16.2.5:
                   5646:                xml: stylesheet&manager STARTED
                   5647: 
                   5648:        * src/include/pa_globals.h [autoptr] 1.101.2.15:
                   5649:        * src/main/pa_charset.C [autoptr] 1.33.2.15:
                   5650:        * src/main/pa_exception.C [autoptr] 1.43.2.14:
                   5651:        * src/main/pa_globals.C [autoptr] 1.152.2.17:
                   5652:                xml: exceptions
                   5653: 
                   5654:        * src/classes/xdoc.C [autoptr] 1.108.2.13:
                   5655:                xdoc.C 50%
                   5656: 
                   5657:        * src/include/pa_charset.h [autoptr] 1.20.2.13:
                   5658:        * src/include/pa_charsets.h [autoptr] 1.8.2.8:
                   5659:        * src/main/pa_charset.C [autoptr] 1.33.2.13:
                   5660:        * src/main/pa_charsets.C [autoptr] 1.11.2.10:
                   5661:        * www/htdocs/.htaccess [autoptr] 1.12.6.4:
                   5662:                charset_utf8 declaration moved to charsets.C
                   5663: 
                   5664:        * Makefile.am [autoptr] 1.34.2.2:
                   5665:        * tests/Makefile [autoptr] 1.1.2.4:
                   5666:        * tests/Makefile [autoptr] 1.1.2.6:
                   5667:                *** empty log message ***
                   5668: 
                   5669:        * tests/058_paf2000.png [autoptr] 1.1.2.2:
                   5670:        * tests/results/058.processed [autoptr] 1.1.2.2:
                   5671:                .png added with -kb now
                   5672: 
                   5673: 2003-03-05  paf
                   5674:        * tests/results/105.processed 1.1:
                   5675:                file 105.processed was initially added on branch autoptr.
                   5676: 
                   5677:        * src/classes/math.C [autoptr] 1.24.2.12:
                   5678:                can be: crypt in -lcrypt OK, but crypt.h be missing
                   5679: 
                   5680:        * src/classes/op.C [autoptr] 1.127.2.20:
                   5681:        * src/main/main.dsp [autoptr] 1.161.6.13:
                   5682:        * tests/104.html [autoptr] 1.1.2.1:
                   5683:        * tests/results/104.processed [autoptr] 1.1.2.1:
                   5684:        * www/htdocs/.htaccess [autoptr] 1.12.6.3:
                   5685:                ^bpt operator added [does int3 in debug build on win32]
                   5686: 
                   5687:        * www/htdocs/auto.p [autoptr] 1.17.10.1:
                   5688:        * www/htdocs/autoptr.html [autoptr] 1.1.2.4:
                   5689:        * www/htdocs/base.p [autoptr] 1.6.6.1:
                   5690:        * www/htdocs/derived.p [autoptr] 1.24.6.1:
                   5691:        * www/htdocs/font.gif [autoptr] 1.1.6.1:
                   5692:        * www/htdocs/global.xsl [autoptr] 1.8.10.1:
                   5693:        * www/htdocs/index.html [autoptr] 1.210.2.1:
                   5694:        * www/htdocs/mailreceive.eml [autoptr] 1.3.10.1:
                   5695:        * www/htdocs/mailreceive.html [autoptr] 1.1.10.1:
                   5696:        * www/htdocs/operators.p [autoptr] 1.11.8.1:
                   5697:        * www/htdocs/parser-status.html [autoptr] 1.2.18.1:
                   5698:        * www/htdocs/people.dtd [autoptr] 1.1.20.1:
                   5699:        * www/htdocs/some.p [autoptr] 1.2.8.1:
                   5700:                removed old tests
                   5701: 
                   5702:        * tests/104.html 1.1:
                   5703:                file 104.html was initially added on branch autoptr.
                   5704: 
1.24      paf      5705:        * tests/105.html 1.1:
                   5706:                file 105.html was initially added on branch autoptr.
                   5707: 
1.23      paf      5708:        * src/classes/math.C [autoptr] 1.24.2.11:
                   5709:        * src/classes/op.C [autoptr] 1.127.2.19:
                   5710:        * src/classes/string.C [autoptr] 1.125.2.13:
                   5711:        * src/lib/Makefile.in [autoptr] 1.8.2.1:
                   5712:        * src/lib/md5/Makefile.in [autoptr] 1.6.2.1:
                   5713:        * src/lib/patches/Makefile.in [autoptr] 1.10.2.1:
                   5714:        * src/lib/pcre/Makefile.in [autoptr] 1.8.2.1:
                   5715:        * src/main/pa_exec.C [autoptr] 1.48.2.18:
                   5716:        * src/targets/Makefile.in [autoptr] 1.42.2.1:
                   5717:        * src/targets/apache13/Makefile.am [autoptr] 1.15.10.1:
                   5718:        * src/targets/cgi/Makefile.am [autoptr] 1.46.2.1:
                   5719:        * src/targets/cgi/Makefile.in [autoptr] 1.62.2.1:
                   5720:                gcc more happy. todo:make linker happy
                   5721: 
                   5722:        * tests/results/104.processed 1.1:
                   5723:                file 104.processed was initially added on branch autoptr.
                   5724: 
                   5725:        * ltmain.sh [autoptr] 1.5.2.1:
                   5726:                ltmain.sh added
                   5727: 
                   5728:        * src/targets/apache13/p3runConfigure.in [autoptr] 1.11.14.1:
                   5729:        * src/targets/cgi/Makefile.am [autoptr] 1.46.2.2:
                   5730:        * src/targets/cgi/Makefile.in [autoptr] 1.62.2.2:
                   5731:                linker needed more tricks to link OK
                   5732: 
                   5733:        * src/types/pa_vhash.C [autoptr] 1.1.2.2:
                   5734:        * src/types/pa_vhash.h [autoptr] 1.43.2.13:
                   5735:                hash_default_element_name made static
                   5736: 
                   5737:        * src/include/Makefile.am [autoptr] 1.3.14.2:
                   5738:        * src/include/Makefile.in [autoptr] 1.11.2.3:
                   5739:        * src/main/Makefile.am [autoptr] 1.35.6.4:
                   5740:        * src/main/Makefile.in [autoptr] 1.50.2.4:
                   5741:        * src/types/Makefile.am [autoptr] 1.28.10.1:
                   5742:        * src/types/Makefile.in [autoptr] 1.50.2.2:
                   5743:                forgotten files added to Makes
                   5744: 
                   5745:        * src/types/pa_vhash.C [autoptr] 1.1.2.3:
                   5746:        * src/types/pa_vhash.h [autoptr] 1.43.2.14:
                   5747:                hash_default_element_name change undone ;(
                   5748: 
                   5749:        * src/classes/file.C [autoptr] 1.107.2.16:
                   5750:        * src/include/pa_exec.h [autoptr] 1.11.2.6:
                   5751:        * src/main/pa_exec.C [autoptr] 1.48.2.17:
                   5752:                pa_exec env param made optional
                   5753: 
                   5754:        * tests/057.html [autoptr] 1.1.2.3:
                   5755:        * tests/results/057.processed [autoptr] 1.1.2.3:
                   5756:                test bug fixed
                   5757: 
                   5758:        * src/classes/string.C [autoptr] 1.125.2.14:
                   5759:        * src/include/pa_string.h [autoptr] 1.144.2.27:
                   5760:        * src/main/pa_string.C [autoptr] 1.172.2.20:
                   5761:        * tests/105.html [autoptr] 1.1.2.1:
                   5762:        * tests/results/105.processed [autoptr] 1.1.2.1:
                   5763:                String::match bug fixed
                   5764: 
                   5765: 2003-03-04  paf
                   5766:        * tests/results/060.processed 1.1:
                   5767:                file 060.processed was initially added on branch autoptr.
                   5768: 
                   5769:        * tests/results/059.processed 1.1:
                   5770:                file 059.processed was initially added on branch autoptr.
                   5771: 
                   5772:        * tests/072.html 1.1:
                   5773:                file 072.html was initially added on branch autoptr.
                   5774: 
                   5775:        * tests/results/052.processed 1.1:
                   5776:                file 052.processed was initially added on branch autoptr.
                   5777: 
                   5778:        * tests/074.html 1.1:
                   5779:                file 074.html was initially added on branch autoptr.
                   5780: 
                   5781:        * tests/results/099.processed 1.1:
                   5782:                file 099.processed was initially added on branch autoptr.
                   5783: 
                   5784:        * tests/076.html 1.1:
                   5785:                file 076.html was initially added on branch autoptr.
                   5786: 
                   5787:        * tests/results/092.processed 1.1:
                   5788:                file 092.processed was initially added on branch autoptr.
                   5789: 
                   5790:        * tests/results/102.processed 1.1:
                   5791:                file 102.processed was initially added on branch autoptr.
                   5792: 
                   5793:        * tests/results/084.processed 1.1:
                   5794:                file 084.processed was initially added on branch autoptr.
                   5795: 
                   5796:        * tests/078.html 1.1:
                   5797:                file 078.html was initially added on branch autoptr.
                   5798: 
                   5799:        * tests/results/076.processed 1.1:
                   5800:                file 076.processed was initially added on branch autoptr.
                   5801: 
                   5802:        * tests/081.html 1.1:
                   5803:                file 081.html was initially added on branch autoptr.
                   5804: 
                   5805:        * tests/results/068.processed 1.1:
                   5806:                file 068.processed was initially added on branch autoptr.
                   5807: 
                   5808:        * tests/results/061.processed 1.1:
                   5809:                file 061.processed was initially added on branch autoptr.
                   5810: 
                   5811:        * src/classes/Makefile.in [autoptr] 1.53.2.1:
                   5812:        * src/classes/mail.C [autoptr] 1.88.2.13:
                   5813:        * src/main/Makefile.in [autoptr] 1.50.2.3:
                   5814:        * src/main/pa_exec.C [autoptr] 1.48.2.16:
                   5815:        * src/sql/Makefile.in [autoptr] 1.11.2.1:
                   5816:        * src/types/Makefile.in [autoptr] 1.50.2.1:
                   5817:                *** empty log message ***
                   5818: 
                   5819:        * tests/083.html 1.1:
                   5820:                file 083.html was initially added on branch autoptr.
                   5821: 
                   5822:        * tests/results/053.processed 1.1:
                   5823:                file 053.processed was initially added on branch autoptr.
                   5824: 
                   5825:        * tests/053.html [autoptr] 1.1.2.1:
                   5826:        * tests/054.html [autoptr] 1.1.2.1:
                   5827:        * tests/055.html [autoptr] 1.1.2.1:
                   5828:        * tests/056.html [autoptr] 1.1.2.1:
                   5829:        * tests/057.html [autoptr] 1.1.2.1:
                   5830:        * tests/058.html [autoptr] 1.1.2.1:
                   5831:        * tests/058_paf2000.png [autoptr] 1.1.2.1:
                   5832:        * tests/059.html [autoptr] 1.1.2.1:
                   5833:        * tests/060.html [autoptr] 1.1.2.1:
                   5834:        * tests/results/053.processed [autoptr] 1.1.2.1:
                   5835:        * tests/results/054.processed [autoptr] 1.1.2.1:
                   5836:        * tests/results/055.processed [autoptr] 1.1.2.1:
                   5837:        * tests/results/056.processed [autoptr] 1.1.2.1:
                   5838:        * tests/results/057.processed [autoptr] 1.1.2.1:
                   5839:        * tests/results/058.processed [autoptr] 1.1.2.1:
                   5840:        * tests/results/059.processed [autoptr] 1.1.2.1:
                   5841:        * tests/results/060.processed [autoptr] 1.1.2.1:
                   5842:                test:
                   5843:                53 string.replace
                   5844:                54 junctions
                   5845:                55 table.hash
                   5846:                56 call indirect
                   5847:                57 date.create[string]
                   5848:                58 image.measure[png]
                   5849: 
                   5850:        * src/classes/image.C [autoptr] 1.90.2.14:
                   5851:        * tests/098.html [autoptr] 1.1.2.1:
                   5852:        * tests/098font.gif [autoptr] 1.1.2.1:
                   5853:        * tests/results/098.processed [autoptr] 1.1.2.1:
                   5854:                test:
                   5855:                98 image font text [bug fixed]
                   5856: 
                   5857:        * tests/085.html 1.1:
                   5858:                file 085.html was initially added on branch autoptr.
                   5859: 
                   5860:        * tests/096_dir/188.jpg 1.1:
                   5861:                file 188.jpg was initially added on branch autoptr.
                   5862: 
                   5863:        * tests/096_dir/163.jpg 1.1:
                   5864:                file 163.jpg was initially added on branch autoptr.
                   5865: 
                   5866:        * tests/087.html 1.1:
                   5867:                file 087.html was initially added on branch autoptr.
                   5868: 
                   5869:        * tests/103paf2001.gif 1.1:
                   5870:                file 103paf2001.gif was initially added on branch autoptr.
                   5871: 
                   5872:        * tests/results/103.processed 1.1:
                   5873:                file 103.processed was initially added on branch autoptr.
                   5874: 
                   5875:        * tests/results/093.processed 1.1:
                   5876:                file 093.processed was initially added on branch autoptr.
                   5877: 
                   5878:        * tests/053.html 1.1:
                   5879:                file 053.html was initially added on branch autoptr.
                   5880: 
                   5881:        * tests/results/085.processed 1.1:
                   5882:                file 085.processed was initially added on branch autoptr.
                   5883: 
                   5884:        * tests/089.html 1.1:
                   5885:                file 089.html was initially added on branch autoptr.
                   5886: 
                   5887:        * tests/090.html 1.1:
                   5888:                file 090.html was initially added on branch autoptr.
                   5889: 
                   5890:        * tests/100.html 1.1:
                   5891:                file 100.html was initially added on branch autoptr.
                   5892: 
                   5893:        * tests/results/077.processed 1.1:
                   5894:                file 077.processed was initially added on branch autoptr.
                   5895: 
                   5896:        * tests/055.html 1.1:
                   5897:                file 055.html was initially added on branch autoptr.
                   5898: 
                   5899:        * src/classes/table.C [autoptr] 1.172.2.12:
                   5900:        * src/main/execute.C [autoptr] 1.295.2.23:
                   5901:        * tests/061.dat [autoptr] 1.1.2.1:
                   5902:        * tests/061.html [autoptr] 1.1.2.1:
                   5903:        * tests/062.html [autoptr] 1.1.2.1:
                   5904:        * tests/063.html [autoptr] 1.1.2.1:
                   5905:        * tests/064.html [autoptr] 1.1.2.1:
                   5906:        * tests/065.html [autoptr] 1.1.2.1:
                   5907:        * tests/066.html [autoptr] 1.1.2.1:
                   5908:        * tests/067.html [autoptr] 1.1.2.1:
                   5909:        * tests/068.html [autoptr] 1.1.2.1:
                   5910:        * tests/069.html [autoptr] 1.1.2.1:
                   5911:        * tests/070.html [autoptr] 1.1.2.1:
                   5912:        * tests/071.html [autoptr] 1.1.2.1:
                   5913:        * tests/072.html [autoptr] 1.1.2.1:
                   5914:        * tests/073.html [autoptr] 1.1.2.1:
                   5915:        * tests/074.html [autoptr] 1.1.2.1:
                   5916:        * tests/075.html [autoptr] 1.1.2.1:
                   5917:        * tests/076.html [autoptr] 1.1.2.1:
                   5918:        * tests/077.html [autoptr] 1.1.2.1:
                   5919:        * tests/078.html [autoptr] 1.1.2.1:
                   5920:        * tests/079.html [autoptr] 1.1.2.1:
                   5921:        * tests/080.html [autoptr] 1.1.2.1:
                   5922:        * tests/081.html [autoptr] 1.1.2.1:
                   5923:        * tests/082.html [autoptr] 1.1.2.1:
                   5924:        * tests/083.html [autoptr] 1.1.2.1:
                   5925:        * tests/084.html [autoptr] 1.1.2.1:
                   5926:        * tests/085.html [autoptr] 1.1.2.1:
                   5927:        * tests/086.html [autoptr] 1.1.2.1:
                   5928:        * tests/087.html [autoptr] 1.1.2.1:
                   5929:        * tests/088.html [autoptr] 1.1.2.1:
                   5930:        * tests/089.html [autoptr] 1.1.2.1:
                   5931:        * tests/090.html [autoptr] 1.1.2.1:
                   5932:        * tests/091.html [autoptr] 1.1.2.1:
                   5933:        * tests/092.html [autoptr] 1.1.2.1:
                   5934:        * tests/093.html [autoptr] 1.1.2.1:
                   5935:        * tests/094.html [autoptr] 1.1.2.1:
                   5936:        * tests/095.html [autoptr] 1.1.2.1:
                   5937:        * tests/results/061.processed [autoptr] 1.1.2.1:
                   5938:        * tests/results/062.processed [autoptr] 1.1.2.1:
                   5939:        * tests/results/063.processed [autoptr] 1.1.2.1:
                   5940:        * tests/results/064.processed [autoptr] 1.1.2.1:
                   5941:        * tests/results/065.processed [autoptr] 1.1.2.1:
                   5942:        * tests/results/066.processed [autoptr] 1.1.2.1:
                   5943:        * tests/results/067.processed [autoptr] 1.1.2.1:
                   5944:        * tests/results/068.processed [autoptr] 1.1.2.1:
                   5945:        * tests/results/069.processed [autoptr] 1.1.2.1:
                   5946:        * tests/results/070.processed [autoptr] 1.1.2.1:
                   5947:        * tests/results/071.processed [autoptr] 1.1.2.1:
                   5948:        * tests/results/072.processed [autoptr] 1.1.2.1:
                   5949:        * tests/results/073.processed [autoptr] 1.1.2.1:
                   5950:        * tests/results/074.processed [autoptr] 1.1.2.1:
                   5951:        * tests/results/075.processed [autoptr] 1.1.2.1:
                   5952:        * tests/results/076.processed [autoptr] 1.1.2.1:
                   5953:        * tests/results/077.processed [autoptr] 1.1.2.1:
                   5954:        * tests/results/078.processed [autoptr] 1.1.2.1:
                   5955:        * tests/results/079.processed [autoptr] 1.1.2.1:
                   5956:        * tests/results/080.processed [autoptr] 1.1.2.1:
                   5957:        * tests/results/081.processed [autoptr] 1.1.2.1:
                   5958:        * tests/results/082.processed [autoptr] 1.1.2.1:
                   5959:        * tests/results/083.processed [autoptr] 1.1.2.1:
                   5960:        * tests/results/084.processed [autoptr] 1.1.2.1:
                   5961:        * tests/results/085.processed [autoptr] 1.1.2.1:
                   5962:        * tests/results/086.processed [autoptr] 1.1.2.1:
                   5963:        * tests/results/087.processed [autoptr] 1.1.2.1:
                   5964:        * tests/results/088.processed [autoptr] 1.1.2.1:
                   5965:        * tests/results/089.processed [autoptr] 1.1.2.1:
                   5966:        * tests/results/090.processed [autoptr] 1.1.2.1:
                   5967:        * tests/results/091.processed [autoptr] 1.1.2.1:
                   5968:        * tests/results/092.processed [autoptr] 1.1.2.1:
                   5969:        * tests/results/093.processed [autoptr] 1.1.2.1:
                   5970:        * tests/results/094.processed [autoptr] 1.1.2.1:
                   5971:        * tests/results/095.processed [autoptr] 1.1.2.1:
                   5972:                tests:
                   5973:                61 file::stat size
                   5974:                62 string->int autoconvert
                   5975:                63 double .int,dec,div,mul
                   5976:                64 date compare
                   5977:                65 file: basename,justname,justext
                   5978:                66 math:crypt
                   5979:                67 string.match simple on long
                   5980:                68 string.match normalized simple on long
                   5981:                69 string.int
                   5982:                70 file::stat content-type
                   5983:                71 table.join
                   5984:                72 hash parameter conditional pass
                   5985:                73 date daylightsaving,yearday
                   5986:                74 date arithmetics
                   5987:                75 response date values/attributes
                   5988:                76 string.pos of void, void.pos
                   5989:                77 syntax parsing
                   5990:                78 cookie tainting
                   5991:                79 switch with local
                   5992:                80 scientific numeric literal in string autoconvert
                   5993:                81 xor: logical and numerical
                   5994:                82 for delims
                   5995:                83 menu delims
                   5996:                84 table.hash distinct
                   5997:                85 long string  replace
                   5998:                86 throw+catch current language preserve
                   5999:                87 bit shifts
                   6000:                88 junction tests + $caller test
                   6001:                89 hash.foreach selfmodification
                   6002:                90 int/void to int
                   6003:                91 $caller test
                   6004:                92 junction is + def junction tests
                   6005:                93 $caller test
                   6006:                94 syntax test
                   6007:                95 table.hash(keygenerator)  [bug fixed]
                   6008: 
                   6009:        * tests/results/070.processed 1.1:
                   6010:                file 070.processed was initially added on branch autoptr.
                   6011: 
                   6012:        * tests/results/069.processed 1.1:
                   6013:                file 069.processed was initially added on branch autoptr.
                   6014: 
                   6015:        * tests/061.dat 1.1:
                   6016:                file 061.dat was initially added on branch autoptr.
                   6017: 
                   6018:        * tests/092.html 1.1:
                   6019:                file 092.html was initially added on branch autoptr.
                   6020: 
                   6021:        * tests/102.html 1.1:
                   6022:                file 102.html was initially added on branch autoptr.
                   6023: 
                   6024:        * tests/results/062.processed 1.1:
                   6025:                file 062.processed was initially added on branch autoptr.
                   6026: 
                   6027:        * tests/057.html 1.1:
                   6028:                file 057.html was initially added on branch autoptr.
                   6029: 
                   6030:        * tests/results/054.processed 1.1:
                   6031:                file 054.processed was initially added on branch autoptr.
                   6032: 
                   6033:        * tests/094.html 1.1:
                   6034:                file 094.html was initially added on branch autoptr.
                   6035: 
                   6036:        * tests/059.html 1.1:
                   6037:                file 059.html was initially added on branch autoptr.
                   6038: 
                   6039:        * tests/060.html 1.1:
                   6040:                file 060.html was initially added on branch autoptr.
                   6041: 
                   6042:        * tests/096.html 1.1:
                   6043:                file 096.html was initially added on branch autoptr.
                   6044: 
                   6045:        * tests/results/094.processed 1.1:
                   6046:                file 094.processed was initially added on branch autoptr.
                   6047: 
                   6048:        * tests/062.html 1.1:
                   6049:                file 062.html was initially added on branch autoptr.
                   6050: 
                   6051:        * tests/results/086.processed 1.1:
                   6052:                file 086.processed was initially added on branch autoptr.
                   6053: 
                   6054:        * tests/098font.gif 1.1:
                   6055:                file 098font.gif was initially added on branch autoptr.
                   6056: 
                   6057:        * tests/098.html 1.1:
                   6058:                file 098.html was initially added on branch autoptr.
                   6059: 
                   6060:        * tests/results/078.processed 1.1:
                   6061:                file 078.processed was initially added on branch autoptr.
                   6062: 
                   6063:        * tests/064.html 1.1:
                   6064:                file 064.html was initially added on branch autoptr.
                   6065: 
                   6066:        * tests/results/071.processed 1.1:
                   6067:                file 071.processed was initially added on branch autoptr.
                   6068: 
                   6069:        * tests/results/063.processed 1.1:
                   6070:                file 063.processed was initially added on branch autoptr.
                   6071: 
                   6072:        * tests/066.html 1.1:
                   6073:                file 066.html was initially added on branch autoptr.
                   6074: 
                   6075:        * tests/results/055.processed 1.1:
                   6076:                file 055.processed was initially added on branch autoptr.
                   6077: 
                   6078:        * tests/068.html 1.1:
                   6079:                file 068.html was initially added on branch autoptr.
                   6080: 
                   6081:        * tests/071.html 1.1:
                   6082:                file 071.html was initially added on branch autoptr.
                   6083: 
                   6084:        * tests/results/095.processed 1.1:
                   6085:                file 095.processed was initially added on branch autoptr.
                   6086: 
                   6087:        * tests/results/087.processed 1.1:
                   6088:                file 087.processed was initially added on branch autoptr.
                   6089: 
                   6090:        * tests/073.html 1.1:
                   6091:                file 073.html was initially added on branch autoptr.
                   6092: 
                   6093:        * tests/results/079.processed 1.1:
                   6094:                file 079.processed was initially added on branch autoptr.
                   6095: 
                   6096:        * tests/results/080.processed 1.1:
                   6097:                file 080.processed was initially added on branch autoptr.
                   6098: 
                   6099:        * tests/results/072.processed 1.1:
                   6100:                file 072.processed was initially added on branch autoptr.
                   6101: 
                   6102:        * tests/075.html 1.1:
                   6103:                file 075.html was initially added on branch autoptr.
                   6104: 
                   6105:        * tests/results/064.processed 1.1:
                   6106:                file 064.processed was initially added on branch autoptr.
                   6107: 
                   6108:        * tests/103.html [autoptr] 1.1.2.1:
                   6109:        * tests/103mark.gif [autoptr] 1.1.2.1:
                   6110:        * tests/103paf2001.gif [autoptr] 1.1.2.1:
                   6111:        * tests/results/103.processed [autoptr] 1.1.2.1:
                   6112:                tests:
                   6113:                103 image.copy transparence test
                   6114: 
                   6115:        * tests/results/056.processed 1.1:
                   6116:                file 056.processed was initially added on branch autoptr.
                   6117: 
                   6118:        * tests/077.html 1.1:
                   6119:                file 077.html was initially added on branch autoptr.
                   6120: 
                   6121:        * tests/080.html 1.1:
                   6122:                file 080.html was initially added on branch autoptr.
                   6123: 
                   6124:        * tests/079.html 1.1:
                   6125:                file 079.html was initially added on branch autoptr.
                   6126: 
                   6127:        * tests/results/096.processed 1.1:
                   6128:                file 096.processed was initially added on branch autoptr.
                   6129: 
                   6130:        * tests/082.html 1.1:
                   6131:                file 082.html was initially added on branch autoptr.
                   6132: 
                   6133:        * tests/results/088.processed 1.1:
                   6134:                file 088.processed was initially added on branch autoptr.
                   6135: 
                   6136:        * tests/results/081.processed 1.1:
                   6137:                file 081.processed was initially added on branch autoptr.
                   6138: 
                   6139:        * tests/084.html 1.1:
                   6140:                file 084.html was initially added on branch autoptr.
                   6141: 
                   6142:        * tests/results/073.processed 1.1:
                   6143:                file 073.processed was initially added on branch autoptr.
                   6144: 
                   6145:        * tests/058_paf2000.png 1.1:
                   6146:                file 058_paf2000.png was initially added on branch autoptr.
                   6147: 
                   6148:        * tests/results/065.processed 1.1:
                   6149:                file 065.processed was initially added on branch autoptr.
                   6150: 
                   6151:        * tests/086.html 1.1:
                   6152:                file 086.html was initially added on branch autoptr.
                   6153: 
                   6154:        * tests/results/057.processed 1.1:
                   6155:                file 057.processed was initially added on branch autoptr.
                   6156: 
                   6157:        * tests/052.html 1.1:
                   6158:                file 052.html was initially added on branch autoptr.
                   6159: 
                   6160:        * tests/088.html 1.1:
                   6161:                file 088.html was initially added on branch autoptr.
                   6162: 
                   6163:        * tests/054.html 1.1:
                   6164:                file 054.html was initially added on branch autoptr.
                   6165: 
                   6166:        * src/main/pa_common.C [autoptr] 1.143.2.21:
                   6167:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.20:
                   6168:        * tests/097.html [autoptr] 1.1.2.1:
                   6169:        * tests/results/097.processed [autoptr] 1.1.2.1:
                   6170:                test:
                   6171:                97 file::load http://  [bugs fixed]
                   6172: 
                   6173:        * tests/101.html 1.1:
                   6174:                file 101.html was initially added on branch autoptr.
                   6175: 
                   6176:        * tests/091.html 1.1:
                   6177:                file 091.html was initially added on branch autoptr.
                   6178: 
                   6179:        * tests/results/097.processed 1.1:
                   6180:                file 097.processed was initially added on branch autoptr.
                   6181: 
                   6182:        * tests/056.html 1.1:
                   6183:                file 056.html was initially added on branch autoptr.
                   6184: 
                   6185:        * tests/results/089.processed 1.1:
                   6186:                file 089.processed was initially added on branch autoptr.
                   6187: 
                   6188:        * tests/results/090.processed 1.1:
                   6189:                file 090.processed was initially added on branch autoptr.
                   6190: 
                   6191:        * src/classes/hash.C [autoptr] 1.54.2.12:
                   6192:        * src/classes/image.C [autoptr] 1.90.2.13:
                   6193:        * src/classes/table.C [autoptr] 1.172.2.13:
                   6194:        * src/include/pa_memory.h [autoptr] 1.1.2.5:
                   6195:        * tests/096.html [autoptr] 1.1.2.1:
                   6196:        * tests/096_dir/163.jpg [autoptr] 1.1.2.1:
                   6197:        * tests/096_dir/188.jpg [autoptr] 1.1.2.1:
                   6198:        * tests/results/096.processed [autoptr] 1.1.2.1:
                   6199:                tests:
                   6200:                96 image EXIF  [bug fixed]
                   6201: 
                   6202:        * tests/results/100.processed 1.1:
                   6203:                file 100.processed was initially added on branch autoptr.
                   6204: 
                   6205:        * tests/103.html 1.1:
                   6206:                file 103.html was initially added on branch autoptr.
                   6207: 
                   6208:        * tests/093.html 1.1:
                   6209:                file 093.html was initially added on branch autoptr.
                   6210: 
                   6211:        * tests/results/082.processed 1.1:
                   6212:                file 082.processed was initially added on branch autoptr.
                   6213: 
                   6214:        * tests/052.html [autoptr] 1.1.2.1:
                   6215:        * tests/outputs/049.processed [autoptr] 1.1.2.2:
                   6216:        * tests/outputs/050.processed [autoptr] 1.1.2.2:
                   6217:        * tests/outputs/051.processed [autoptr] 1.1.2.2:
                   6218:        * tests/results/052.processed [autoptr] 1.1.2.1:
                   6219:                test:
                   6220:                52 pre/match/post test: passed AS-IT-WERE, but wrong :) separate task: fix that
                   6221: 
                   6222:        * tests/058.html 1.1:
                   6223:                file 058.html was initially added on branch autoptr.
                   6224: 
                   6225:        * tests/results/074.processed 1.1:
                   6226:                file 074.processed was initially added on branch autoptr.
                   6227: 
                   6228:        * tests/095.html 1.1:
                   6229:                file 095.html was initially added on branch autoptr.
                   6230: 
                   6231:        * tests/results/066.processed 1.1:
                   6232:                file 066.processed was initially added on branch autoptr.
                   6233: 
                   6234:        * tests/061.html 1.1:
                   6235:                file 061.html was initially added on branch autoptr.
                   6236: 
                   6237:        * tests/results/058.processed 1.1:
                   6238:                file 058.processed was initially added on branch autoptr.
                   6239: 
                   6240:        * tests/103mark.gif 1.1:
                   6241:                file 103mark.gif was initially added on branch autoptr.
                   6242: 
                   6243:        * tests/097.html 1.1:
                   6244:                file 097.html was initially added on branch autoptr.
                   6245: 
                   6246:        * tests/063.html 1.1:
                   6247:                file 063.html was initially added on branch autoptr.
                   6248: 
                   6249:        * src/main/execute.C [autoptr] 1.295.2.22:
                   6250:        * src/main/pa_table.C [autoptr] 1.53.2.10:
                   6251:                test:
                   6252:                59 table.locate [bug fixed]
                   6253:                60 string eq string [bug fixed]
                   6254: 
                   6255:        * tests/099.html 1.1:
                   6256:                file 099.html was initially added on branch autoptr.
                   6257: 
                   6258:        * tests/065.html 1.1:
                   6259:                file 065.html was initially added on branch autoptr.
                   6260: 
                   6261:        * tests/results/098.processed 1.1:
                   6262:                file 098.processed was initially added on branch autoptr.
                   6263: 
                   6264:        * tests/results/091.processed 1.1:
                   6265:                file 091.processed was initially added on branch autoptr.
                   6266: 
                   6267:        * tests/results/101.processed 1.1:
                   6268:                file 101.processed was initially added on branch autoptr.
                   6269: 
                   6270:        * tests/057.html [autoptr] 1.1.2.2:
                   6271:        * tests/099.html [autoptr] 1.1.2.1:
                   6272:        * tests/100.html [autoptr] 1.1.2.1:
                   6273:        * tests/results/057.processed [autoptr] 1.1.2.2:
                   6274:        * tests/results/099.processed [autoptr] 1.1.2.1:
                   6275:        * tests/results/100.processed [autoptr] 1.1.2.1:
                   6276:                tests:
                   6277:                57 date create 2002: added
                   6278:                99,100 response:body/download
                   6279: 
                   6280:        * tests/067.html 1.1:
                   6281:                file 067.html was initially added on branch autoptr.
                   6282: 
                   6283:        * tests/results/083.processed 1.1:
                   6284:                file 083.processed was initially added on branch autoptr.
                   6285: 
                   6286:        * tests/results/075.processed 1.1:
                   6287:                file 075.processed was initially added on branch autoptr.
                   6288: 
                   6289:        * src/main/execute.C [autoptr] 1.295.2.24:
                   6290:        * tests/101.html [autoptr] 1.1.2.1:
                   6291:        * tests/102.html [autoptr] 1.1.2.1:
                   6292:        * tests/results/101.processed [autoptr] 1.1.2.1:
                   6293:        * tests/results/102.processed [autoptr] 1.1.2.1:
                   6294:                tests:
                   6295:                101 method/variable name conflict test
                   6296:                102 form fields change should not not change anything [bug fix]
                   6297: 
                   6298:        * tests/070.html 1.1:
                   6299:                file 070.html was initially added on branch autoptr.
                   6300: 
                   6301:        * tests/069.html 1.1:
                   6302:                file 069.html was initially added on branch autoptr.
                   6303: 
                   6304:        * tests/results/067.processed 1.1:
                   6305:                file 067.processed was initially added on branch autoptr.
                   6306: 
                   6307:        * src/classes/image.C [autoptr] 1.90.2.15:
                   6308:        * src/include/pa_request.h [autoptr] 1.160.2.29:
                   6309:        * src/include/pa_stack.h [autoptr] 1.17.2.6:
                   6310:        * src/types/pa_vimage.h [autoptr] 1.34.2.8:
                   6311:                number of gcc compiler bugs fixed
                   6312: 
                   6313: 2003-03-03  paf
                   6314:        * tests/037.html 1.1:
                   6315:                file 037.html was initially added on branch autoptr.
                   6316: 
                   6317:        * tests/results/044.processed 1.1:
                   6318:                file 044.processed was initially added on branch autoptr.
                   6319: 
                   6320:        * tests/039.html 1.1:
                   6321:                file 039.html was initially added on branch autoptr.
                   6322: 
                   6323:        * tests/040.html 1.1:
                   6324:                file 040.html was initially added on branch autoptr.
                   6325: 
                   6326:        * tests/results/036.processed 1.1:
                   6327:                file 036.processed was initially added on branch autoptr.
                   6328: 
                   6329:        * tests/042.html 1.1:
                   6330:                file 042.html was initially added on branch autoptr.
                   6331: 
                   6332:        * tests/044.html 1.1:
                   6333:                file 044.html was initially added on branch autoptr.
                   6334: 
                   6335:        * src/main/pa_request.C [autoptr] 1.245.2.29:
                   6336:        * src/types/pa_vmath.C [autoptr] 1.1.2.9:
                   6337:        * tests/033.html [autoptr] 1.1.2.1:
                   6338:        * tests/034.html [autoptr] 1.1.2.1:
                   6339:        * tests/035.html [autoptr] 1.1.2.1:
                   6340:        * tests/036.html [autoptr] 1.1.2.1:
                   6341:        * tests/037.html [autoptr] 1.1.2.1:
                   6342:        * tests/038.html [autoptr] 1.1.2.1:
                   6343:        * tests/results/033.processed [autoptr] 1.1.2.1:
                   6344:        * tests/results/034.processed [autoptr] 1.1.2.1:
                   6345:        * tests/results/035.processed [autoptr] 1.1.2.1:
                   6346:        * tests/results/036.processed [autoptr] 1.1.2.1:
                   6347:        * tests/results/037.processed [autoptr] 1.1.2.1:
                   6348:        * tests/results/038.processed [autoptr] 1.1.2.1:
                   6349:                tests:
                   6350:                33 string.replace
                   6351:                34 string.upper
                   6352:                35 table created
                   6353:                36 local/global vars with juntions
                   6354:                37 table clone
                   6355:                38 math PI & number formatting
                   6356:                
                   6357:                math class registring typo fixed
                   6358: 
                   6359:        * tests/046.html 1.1:
                   6360:                file 046.html was initially added on branch autoptr.
                   6361: 
                   6362:        * tests/040.html [autoptr] 1.1.2.1:
                   6363:        * tests/results/040.processed [autoptr] 1.1.2.1:
                   6364:                test:
                   6365:                39 method result of type table
                   6366:                40 method param junction auto evaluate
                   6367: 
                   6368:        * tests/051b.p 1.1:
                   6369:                file 051b.p was initially added on branch autoptr.
                   6370: 
                   6371:        * tests/results/045.processed 1.1:
                   6372:                file 045.processed was initially added on branch autoptr.
                   6373: 
                   6374:        * tests/048.html 1.1:
                   6375:                file 048.html was initially added on branch autoptr.
                   6376: 
                   6377:        * tests/results/037.processed 1.1:
                   6378:                file 037.processed was initially added on branch autoptr.
                   6379: 
                   6380:        * tests/051.html 1.1:
                   6381:                file 051.html was initially added on branch autoptr.
                   6382: 
                   6383:        * tests/results/046.processed 1.1:
                   6384:                file 046.processed was initially added on branch autoptr.
                   6385: 
                   6386:        * tests/results/038.processed 1.1:
                   6387:                file 038.processed was initially added on branch autoptr.
                   6388: 
                   6389:        * tests/041.html [autoptr] 1.1.2.1:
                   6390:        * tests/results/041.processed [autoptr] 1.1.2.1:
                   6391:                test:
                   6392:                41 table.locate by expression
                   6393: 
                   6394:        * tests/032.html 1.1:
                   6395:                file 032.html was initially added on branch autoptr.
                   6396: 
                   6397:        * tests/results/047.processed 1.1:
                   6398:                file 047.processed was initially added on branch autoptr.
                   6399: 
                   6400:        * tests/034.html 1.1:
                   6401:                file 034.html was initially added on branch autoptr.
                   6402: 
                   6403:        * tests/results/040.processed 1.1:
                   6404:                file 040.processed was initially added on branch autoptr.
                   6405: 
                   6406:        * tests/results/039.processed 1.1:
                   6407:                file 039.processed was initially added on branch autoptr.
                   6408: 
                   6409:        * tests/results/032.processed 1.1:
                   6410:                file 032.processed was initially added on branch autoptr.
                   6411: 
                   6412:        * tests/036.html 1.1:
                   6413:                file 036.html was initially added on branch autoptr.
                   6414: 
                   6415:        * tests/038.html 1.1:
                   6416:                file 038.html was initially added on branch autoptr.
                   6417: 
                   6418:        * tests/parser-unix.sh 1.1:
                   6419:                file parser-unix.sh was initially added on branch autoptr.
                   6420: 
                   6421:        * tests/043.html [autoptr] 1.1.2.1:
                   6422:        * tests/044.html [autoptr] 1.1.2.1:
                   6423:        * tests/045.html [autoptr] 1.1.2.1:
                   6424:        * tests/046.html [autoptr] 1.1.2.1:
                   6425:        * tests/047.html [autoptr] 1.1.2.1:
                   6426:        * tests/048.html [autoptr] 1.1.2.1:
                   6427:        * tests/049.html [autoptr] 1.1.2.1:
                   6428:        * tests/050.html [autoptr] 1.1.2.1:
                   6429:        * tests/051.html [autoptr] 1.1.2.1:
                   6430:        * tests/051b.p [autoptr] 1.1.2.1:
                   6431:        * tests/051t.p [autoptr] 1.1.2.1:
                   6432:        * tests/Makefile [autoptr] 1.1.2.3:
                   6433:        * tests/outputs/049.processed [autoptr] 1.1.2.1:
                   6434:        * tests/outputs/050.processed [autoptr] 1.1.2.1:
                   6435:        * tests/outputs/051.processed [autoptr] 1.1.2.1:
                   6436:        * tests/parser-cygwin.sh [autoptr] 1.1.2.2:
                   6437:        * tests/parser-unix.sh [autoptr] 1.1.2.2:
                   6438:        * tests/results/001.processed [autoptr] 1.1.2.2:
                   6439:        * tests/results/002.processed [autoptr] 1.1.2.2:
                   6440:        * tests/results/003.processed [autoptr] 1.1.2.2:
                   6441:        * tests/results/005.processed [autoptr] 1.1.2.2:
                   6442:        * tests/results/006.processed [autoptr] 1.1.2.2:
                   6443:        * tests/results/008.processed [autoptr] 1.1.2.2:
                   6444:        * tests/results/009.processed [autoptr] 1.1.2.2:
                   6445:        * tests/results/011.processed [autoptr] 1.1.2.2:
                   6446:        * tests/results/012.processed [autoptr] 1.1.2.2:
                   6447:        * tests/results/013.processed [autoptr] 1.1.2.2:
                   6448:        * tests/results/014.processed [autoptr] 1.1.2.2:
                   6449:        * tests/results/015.processed [autoptr] 1.1.2.2:
                   6450:        * tests/results/016.processed [autoptr] 1.1.2.2:
                   6451:        * tests/results/017.processed [autoptr] 1.1.2.2:
                   6452:        * tests/results/020.processed [autoptr] 1.1.2.2:
                   6453:        * tests/results/021.processed [autoptr] 1.1.2.2:
                   6454:        * tests/results/022.processed [autoptr] 1.1.2.2:
                   6455:        * tests/results/024.processed [autoptr] 1.1.2.2:
                   6456:        * tests/results/025.processed [autoptr] 1.1.2.2:
                   6457:        * tests/results/026.processed [autoptr] 1.1.2.2:
                   6458:        * tests/results/027.processed [autoptr] 1.1.2.2:
                   6459:        * tests/results/028.processed [autoptr] 1.1.2.2:
                   6460:        * tests/results/029.processed [autoptr] 1.1.2.2:
                   6461:        * tests/results/030.processed [autoptr] 1.1.2.2:
                   6462:        * tests/results/031.processed [autoptr] 1.1.2.2:
                   6463:        * tests/results/043.processed [autoptr] 1.1.2.1:
                   6464:        * tests/results/044.processed [autoptr] 1.1.2.1:
                   6465:        * tests/results/045.processed [autoptr] 1.1.2.1:
                   6466:        * tests/results/046.processed [autoptr] 1.1.2.1:
                   6467:        * tests/results/047.processed [autoptr] 1.1.2.1:
                   6468:        * tests/results/048.processed [autoptr] 1.1.2.1:
                   6469:        * tests/results/049.processed [autoptr] 1.1.2.1:
                   6470:        * tests/results/050.processed [autoptr] 1.1.2.1:
                   6471:        * tests/results/051.processed [autoptr] 1.1.2.1:
                   6472:        * tests/run_parser.sh [autoptr] 1.1.2.1:
                   6473:                tests:
                   6474:                43,44,45 date rolls
                   6475:                46 autoevaluating junction
                   6476:                47 table.select
                   6477:                48 name with subvar
                   6478:                49 hash-creating switch
                   6479:                50 process
                   6480:                51 started parent/child, works as it were but it were NOT GOOD, created separate task  to fix that
                   6481: 
                   6482:        * tests/041.html 1.1:
                   6483:                file 041.html was initially added on branch autoptr.
                   6484: 
                   6485:        * src/classes/op.C [autoptr] 1.127.2.18:
                   6486:        * src/include/pa_request.h [autoptr] 1.160.2.28:
                   6487:        * src/include/pa_string.h [autoptr] 1.144.2.25:
                   6488:        * src/main/execute.C [autoptr] 1.295.2.21:
                   6489:        * src/main/pa_request.C [autoptr] 1.245.2.28:
                   6490:        * src/main/pa_string.C [autoptr] 1.172.2.18:
                   6491:        * src/main/untaint.C [autoptr] 1.115.2.11:
                   6492:        * src/types/pa_vcode_frame.h [autoptr] 1.24.2.3:
                   6493:        * src/types/pa_wcontext.h [autoptr] 1.42.2.9:
                   6494:        * tests/032.html [autoptr] 1.1.2.1:
                   6495:        * tests/results/032.processed [autoptr] 1.1.2.1:
                   6496:                uchar changed to String_UL in all places [was not everywhere]
                   6497:                untaint test: 032
                   6498: 
                   6499:        * tests/results/048.processed 1.1:
                   6500:                file 048.processed was initially added on branch autoptr.
                   6501: 
                   6502:        * tests/043.html 1.1:
                   6503:                file 043.html was initially added on branch autoptr.
                   6504: 
                   6505:        * tests/results/041.processed 1.1:
                   6506:                file 041.processed was initially added on branch autoptr.
                   6507: 
                   6508:        * tests/results/033.processed 1.1:
                   6509:                file 033.processed was initially added on branch autoptr.
                   6510: 
                   6511:        * tests/045.html 1.1:
                   6512:                file 045.html was initially added on branch autoptr.
                   6513: 
                   6514:        * tests/047.html 1.1:
                   6515:                file 047.html was initially added on branch autoptr.
                   6516: 
                   6517:        * tests/051t.p 1.1:
                   6518:                file 051t.p was initially added on branch autoptr.
                   6519: 
                   6520:        * tests/050.html 1.1:
                   6521:                file 050.html was initially added on branch autoptr.
                   6522: 
                   6523:        * tests/049.html 1.1:
                   6524:                file 049.html was initially added on branch autoptr.
                   6525: 
                   6526:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.19:
                   6527:        * tests/004.html [autoptr] 1.1.2.2:
                   6528:        * tests/Makefile [autoptr] 1.1.2.2:
                   6529:        * tests/parser-cygwin.sh [autoptr] 1.1.2.1:
                   6530:        * tests/parser-unix.sh [autoptr] 1.1.2.1:
                   6531:        * tests/results/004.processed [autoptr] 1.1.2.2:
                   6532:        * www/htdocs/.htaccess [autoptr] 1.12.6.2:
                   6533:                removed -H command line key, now testing using .sh file with
                   6534:                SERVER_SOFTWARE=xxx
                   6535: 
1.24      paf      6536:        * tests/042.html [autoptr] 1.1.2.1:
                   6537:        * tests/results/042.processed [autoptr] 1.1.2.1:
                   6538:                test:
                   6539:                42 exception.handled
                   6540: 
1.23      paf      6541:        * tests/outputs/049.processed 1.1:
                   6542:        * tests/results/049.processed 1.1:
                   6543:                file 049.processed was initially added on branch autoptr.
                   6544: 
                   6545:        * tests/outputs/050.processed 1.1:
                   6546:        * tests/results/050.processed 1.1:
                   6547:                file 050.processed was initially added on branch autoptr.
                   6548: 
                   6549:        * tests/results/042.processed 1.1:
                   6550:                file 042.processed was initially added on branch autoptr.
                   6551: 
                   6552:        * tests/results/034.processed 1.1:
                   6553:                file 034.processed was initially added on branch autoptr.
                   6554: 
                   6555:        * tests/039.html [autoptr] 1.1.2.1:
                   6556:        * tests/results/039.processed [autoptr] 1.1.2.1:
                   6557:                test:
                   6558:                37 method result of type table
                   6559: 
                   6560:        * tests/outputs/051.processed 1.1:
                   6561:        * tests/results/051.processed 1.1:
                   6562:                file 051.processed was initially added on branch autoptr.
                   6563: 
                   6564:        * tests/parser-cygwin.sh 1.1:
                   6565:                file parser-cygwin.sh was initially added on branch autoptr.
                   6566: 
                   6567:        * tests/results/043.processed 1.1:
                   6568:                file 043.processed was initially added on branch autoptr.
                   6569: 
                   6570:        * tests/results/035.processed 1.1:
                   6571:                file 035.processed was initially added on branch autoptr.
                   6572: 
                   6573:        * tests/033.html 1.1:
                   6574:                file 033.html was initially added on branch autoptr.
                   6575: 
                   6576:        * tests/run_parser.sh 1.1:
                   6577:                file run_parser.sh was initially added on branch autoptr.
                   6578: 
                   6579:        * tests/035.html 1.1:
                   6580:                file 035.html was initially added on branch autoptr.
                   6581: 
                   6582: 2003-02-27  paf
                   6583:        * www/htdocs/maximized.htm [autoptr] 1.1.2.1:
                   6584:                *** empty log message ***
                   6585: 
                   6586:        * www/htdocs/maximized.htm 1.1:
                   6587:                file maximized.htm was initially added on branch autoptr.
                   6588: 
                   6589: 2003-02-26  paf
                   6590:        * tests/001.html 1.1:
                   6591:                file 001.html was initially added on branch autoptr.
                   6592: 
                   6593:        * tests/003.html 1.1:
                   6594:                file 003.html was initially added on branch autoptr.
                   6595: 
                   6596:        * tests/results/028.processed 1.1:
                   6597:                file 028.processed was initially added on branch autoptr.
                   6598: 
                   6599:        * tests/005.html 1.1:
                   6600:                file 005.html was initially added on branch autoptr.
                   6601: 
                   6602:        * tests/results/021.processed 1.1:
                   6603:                file 021.processed was initially added on branch autoptr.
                   6604: 
                   6605:        * tests/results/013.processed 1.1:
                   6606:                file 013.processed was initially added on branch autoptr.
                   6607: 
                   6608:        * src/include/pa_array.h [autoptr] 1.57.2.26:
                   6609:        * src/include/pa_hash.h [autoptr] 1.58.2.17:
                   6610:        * src/include/pa_memory.h [autoptr] 1.1.2.3:
                   6611:        * src/main/pa_charset.C [autoptr] 1.33.2.12:
                   6612:        * tests/001.html [autoptr] 1.1.2.1:
                   6613:        * tests/002.html [autoptr] 1.1.2.1:
                   6614:        * tests/003.html [autoptr] 1.1.2.1:
                   6615:        * tests/004.html [autoptr] 1.1.2.1:
                   6616:        * tests/005.html [autoptr] 1.1.2.1:
                   6617:        * tests/006.html [autoptr] 1.1.2.1:
                   6618:        * tests/007.html [autoptr] 1.1.2.1:
                   6619:        * tests/008.html [autoptr] 1.1.2.1:
                   6620:        * tests/009.html [autoptr] 1.1.2.1:
                   6621:        * tests/010.html [autoptr] 1.1.2.1:
                   6622:        * tests/011.html [autoptr] 1.1.2.1:
                   6623:        * tests/012.html [autoptr] 1.1.2.1:
                   6624:        * tests/013.html [autoptr] 1.1.2.1:
                   6625:        * tests/014.html [autoptr] 1.1.2.1:
                   6626:        * tests/Makefile [autoptr] 1.1.2.1:
                   6627:        * tests/outputs/create-dir [autoptr] 1.1.2.1:
                   6628:        * tests/results/001.processed [autoptr] 1.1.2.1:
                   6629:        * tests/results/002.processed [autoptr] 1.1.2.1:
                   6630:        * tests/results/003.processed [autoptr] 1.1.2.1:
                   6631:        * tests/results/004.processed [autoptr] 1.1.2.1:
                   6632:        * tests/results/005.processed [autoptr] 1.1.2.1:
                   6633:        * tests/results/006.processed [autoptr] 1.1.2.1:
                   6634:        * tests/results/007.processed [autoptr] 1.1.2.1:
                   6635:        * tests/results/008.processed [autoptr] 1.1.2.1:
                   6636:        * tests/results/009.processed [autoptr] 1.1.2.1:
                   6637:        * tests/results/010.processed [autoptr] 1.1.2.1:
                   6638:        * tests/results/011.processed [autoptr] 1.1.2.1:
                   6639:        * tests/results/012.processed [autoptr] 1.1.2.1:
                   6640:        * tests/results/013.processed [autoptr] 1.1.2.1:
                   6641:        * tests/results/014.processed [autoptr] 1.1.2.1:
                   6642:                hash cloning fixed
                   6643: 
                   6644:        * tests/007.html 1.1:
                   6645:                file 007.html was initially added on branch autoptr.
                   6646: 
                   6647:        * tests/results/005.processed 1.1:
                   6648:                file 005.processed was initially added on branch autoptr.
                   6649: 
                   6650:        * tests/010.html 1.1:
                   6651:                file 010.html was initially added on branch autoptr.
                   6652: 
                   6653:        * tests/009.html 1.1:
                   6654:                file 009.html was initially added on branch autoptr.
                   6655: 
                   6656:        * tests/012.html 1.1:
                   6657:                file 012.html was initially added on branch autoptr.
                   6658: 
                   6659:        * tests/014.html 1.1:
                   6660:                file 014.html was initially added on branch autoptr.
                   6661: 
                   6662:        * src/main/execute.C [autoptr] 1.295.2.20:
                   6663:        * src/types/pa_vstateless_class.h [autoptr] 1.42.2.14:
                   6664:        * tests/024.html [autoptr] 1.1.2.1:
                   6665:        * tests/025.html [autoptr] 1.1.2.1:
                   6666:        * tests/026.html [autoptr] 1.1.2.1:
                   6667:        * tests/027.html [autoptr] 1.1.2.1:
                   6668:        * tests/028.html [autoptr] 1.1.2.1:
                   6669:        * tests/029.html [autoptr] 1.1.2.1:
                   6670:        * tests/030.html [autoptr] 1.1.2.1:
                   6671:        * tests/031.html [autoptr] 1.1.2.1:
                   6672:        * tests/results/024.processed [autoptr] 1.1.2.1:
                   6673:        * tests/results/025.processed [autoptr] 1.1.2.1:
                   6674:        * tests/results/026.processed [autoptr] 1.1.2.1:
                   6675:        * tests/results/027.processed [autoptr] 1.1.2.1:
                   6676:        * tests/results/028.processed [autoptr] 1.1.2.1:
                   6677:        * tests/results/029.processed [autoptr] 1.1.2.1:
                   6678:        * tests/results/030.processed [autoptr] 1.1.2.1:
                   6679:        * tests/results/031.processed [autoptr] 1.1.2.1:
                   6680:                fixed bug with name_cstr mutable CharPtr
                   6681:                more tests
                   6682: 
                   6683:        * tests/results/029.processed 1.1:
                   6684:                file 029.processed was initially added on branch autoptr.
                   6685: 
                   6686:        * tests/results/030.processed 1.1:
                   6687:                file 030.processed was initially added on branch autoptr.
                   6688: 
                   6689:        * tests/016.html 1.1:
                   6690:                file 016.html was initially added on branch autoptr.
                   6691: 
                   6692:        * tests/results/022.processed 1.1:
                   6693:                file 022.processed was initially added on branch autoptr.
                   6694: 
                   6695:        * tests/results/014.processed 1.1:
                   6696:                file 014.processed was initially added on branch autoptr.
                   6697: 
                   6698:        * tests/018.html 1.1:
                   6699:                file 018.html was initially added on branch autoptr.
                   6700: 
                   6701:        * tests/results/006.processed 1.1:
                   6702:                file 006.processed was initially added on branch autoptr.
                   6703: 
                   6704:        * tests/022_dir/a.html 1.1:
                   6705:                file a.html was initially added on branch autoptr.
                   6706: 
                   6707:        * tests/021.html 1.1:
                   6708:                file 021.html was initially added on branch autoptr.
                   6709: 
                   6710:        * tests/023.html 1.1:
                   6711:                file 023.html was initially added on branch autoptr.
                   6712: 
                   6713:        * tests/results/031.processed 1.1:
                   6714:                file 031.processed was initially added on branch autoptr.
                   6715: 
                   6716:        * tests/025.html 1.1:
                   6717:                file 025.html was initially added on branch autoptr.
                   6718: 
                   6719:        * tests/results/023.processed 1.1:
                   6720:                file 023.processed was initially added on branch autoptr.
                   6721: 
                   6722:        * src/include/pa_sapi.h [autoptr] 1.22.2.8:
                   6723:        * src/main/pa_globals.C [autoptr] 1.152.2.16:
                   6724:        * src/main/pa_memory.C [autoptr] 1.1.2.3:
                   6725:        * src/targets/apache13/mod_parser3.C [autoptr] 1.28.2.6:
                   6726:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.18:
                   6727:        * src/targets/isapi/parser3isapi.C [autoptr] 1.82.2.6:
                   6728:                SAPI::abort << abort.  die now just exits
                   6729: 
                   6730:        * tests/results/015.processed 1.1:
                   6731:                file 015.processed was initially added on branch autoptr.
                   6732: 
                   6733:        * tests/027.html 1.1:
                   6734:                file 027.html was initially added on branch autoptr.
                   6735: 
                   6736:        * tests/results/007.processed 1.1:
                   6737:                file 007.processed was initially added on branch autoptr.
                   6738: 
                   6739:        * tests/030.html 1.1:
                   6740:                file 030.html was initially added on branch autoptr.
                   6741: 
                   6742:        * tests/029.html 1.1:
                   6743:                file 029.html was initially added on branch autoptr.
                   6744: 
                   6745:        * tests/outputs/create-dir 1.1:
                   6746:                file create-dir was initially added on branch autoptr.
                   6747: 
                   6748:        * tests/022_dir/b.txt 1.1:
                   6749:                file b.txt was initially added on branch autoptr.
                   6750: 
                   6751:        * tests/results/024.processed 1.1:
                   6752:                file 024.processed was initially added on branch autoptr.
                   6753: 
                   6754:        * tests/002.html 1.1:
                   6755:                file 002.html was initially added on branch autoptr.
                   6756: 
                   6757:        * tests/results/016.processed 1.1:
                   6758:                file 016.processed was initially added on branch autoptr.
                   6759: 
                   6760:        * tests/results/008.processed 1.1:
                   6761:                file 008.processed was initially added on branch autoptr.
                   6762: 
                   6763:        * tests/004.html 1.1:
                   6764:                file 004.html was initially added on branch autoptr.
                   6765: 
                   6766:        * tests/results/001.processed 1.1:
                   6767:                file 001.processed was initially added on branch autoptr.
                   6768: 
                   6769:        * tests/006.html 1.1:
                   6770:                file 006.html was initially added on branch autoptr.
                   6771: 
                   6772:        * tests/008.html 1.1:
                   6773:                file 008.html was initially added on branch autoptr.
                   6774: 
                   6775:        * tests/011.html 1.1:
                   6776:                file 011.html was initially added on branch autoptr.
                   6777: 
                   6778:        * tests/results/025.processed 1.1:
                   6779:                file 025.processed was initially added on branch autoptr.
                   6780: 
                   6781:        * tests/results/017.processed 1.1:
                   6782:                file 017.processed was initially added on branch autoptr.
                   6783: 
                   6784:        * tests/Makefile 1.1:
                   6785:                file Makefile was initially added on branch autoptr.
                   6786: 
                   6787:        * tests/results/009.processed 1.1:
                   6788:                file 009.processed was initially added on branch autoptr.
                   6789: 
                   6790:        * tests/results/010.processed 1.1:
                   6791:                file 010.processed was initially added on branch autoptr.
                   6792: 
                   6793:        * tests/013.html 1.1:
                   6794:                file 013.html was initially added on branch autoptr.
                   6795: 
                   6796:        * tests/results/002.processed 1.1:
                   6797:                file 002.processed was initially added on branch autoptr.
                   6798: 
                   6799:        * tests/019paf2001.gif 1.1:
                   6800:                file 019paf2001.gif was initially added on branch autoptr.
                   6801: 
                   6802:        * tests/015.html 1.1:
                   6803:                file 015.html was initially added on branch autoptr.
                   6804: 
                   6805:        * tests/017.html 1.1:
                   6806:                file 017.html was initially added on branch autoptr.
                   6807: 
                   6808:        * tests/020.html 1.1:
                   6809:                file 020.html was initially added on branch autoptr.
                   6810: 
                   6811:        * tests/019.html 1.1:
                   6812:                file 019.html was initially added on branch autoptr.
                   6813: 
                   6814:        * tests/results/026.processed 1.1:
                   6815:                file 026.processed was initially added on branch autoptr.
                   6816: 
                   6817:        * tests/results/018.processed 1.1:
                   6818:                file 018.processed was initially added on branch autoptr.
                   6819: 
                   6820:        * tests/022.html 1.1:
                   6821:                file 022.html was initially added on branch autoptr.
                   6822: 
                   6823:        * tests/results/011.processed 1.1:
                   6824:                file 011.processed was initially added on branch autoptr.
                   6825: 
                   6826:        * tests/024.html 1.1:
                   6827:                file 024.html was initially added on branch autoptr.
                   6828: 
                   6829:        * tests/results/003.processed 1.1:
                   6830:                file 003.processed was initially added on branch autoptr.
                   6831: 
                   6832:        * tests/022_dir/c.htm 1.1:
                   6833:                file c.htm was initially added on branch autoptr.
                   6834: 
                   6835:        * tests/026.html 1.1:
                   6836:                file 026.html was initially added on branch autoptr.
                   6837: 
                   6838:        * tests/028.html 1.1:
                   6839:                file 028.html was initially added on branch autoptr.
                   6840: 
                   6841:        * tests/031.html 1.1:
                   6842:                file 031.html was initially added on branch autoptr.
                   6843: 
                   6844:        * tests/results/027.processed 1.1:
                   6845:                file 027.processed was initially added on branch autoptr.
                   6846: 
                   6847:        * tests/results/019.processed 1.1:
                   6848:                file 019.processed was initially added on branch autoptr.
                   6849: 
                   6850:        * tests/results/020.processed 1.1:
                   6851:                file 020.processed was initially added on branch autoptr.
                   6852: 
                   6853:        * src/classes/classes.awk [autoptr] 1.6.6.3:
                   6854:        * src/classes/classes.h [autoptr] 1.23.2.9:
                   6855:        * src/classes/date.C [autoptr] 1.42.2.11:
                   6856:        * src/classes/double.C [autoptr] 1.53.2.8:
                   6857:        * src/classes/file.C [autoptr] 1.107.2.15:
                   6858:        * src/classes/form.C [autoptr] 1.34.2.7:
                   6859:        * src/classes/hash.C [autoptr] 1.54.2.11:
                   6860:        * src/classes/image.C [autoptr] 1.90.2.12:
                   6861:        * src/classes/int.C [autoptr] 1.49.2.7:
                   6862:        * src/classes/mail.C [autoptr] 1.88.2.12:
                   6863:        * src/classes/math.C [autoptr] 1.24.2.10:
                   6864:        * src/classes/op.C [autoptr] 1.127.2.17:
                   6865:        * src/classes/response.C [autoptr] 1.23.2.7:
                   6866:        * src/classes/string.C [autoptr] 1.125.2.12:
                   6867:        * src/classes/table.C [autoptr] 1.172.2.11:
                   6868:        * src/classes/void.C [autoptr] 1.28.2.5:
                   6869:        * src/classes/xdoc.C [autoptr] 1.108.2.12:
                   6870:        * src/classes/xnode.C [autoptr] 1.54.2.8:
                   6871:        * src/include/pa_memory.h [autoptr] 1.1.2.4:
                   6872:        * src/include/pa_sapi.h [autoptr] 1.22.2.7:
                   6873:        * src/targets/apache13/mod_parser3.C [autoptr] 1.28.2.5:
                   6874:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.17:
                   6875:        * src/targets/isapi/parser3isapi.C [autoptr] 1.82.2.5:
                   6876:        * src/types/pa_venv.h [autoptr] 1.28.2.5:
                   6877:        * src/types/pa_vform.C [autoptr] 1.74.2.11:
                   6878:        * tests/015.html [autoptr] 1.1.2.1:
                   6879:        * tests/016.html [autoptr] 1.1.2.1:
                   6880:        * tests/017.html [autoptr] 1.1.2.1:
                   6881:        * tests/018.html [autoptr] 1.1.2.1:
                   6882:        * tests/019.html [autoptr] 1.1.2.1:
                   6883:        * tests/019paf2001.gif [autoptr] 1.1.2.1:
                   6884:        * tests/020.html [autoptr] 1.1.2.1:
                   6885:        * tests/021.html [autoptr] 1.1.2.1:
                   6886:        * tests/022.html [autoptr] 1.1.2.1:
                   6887:        * tests/022_dir/a.html [autoptr] 1.1.2.1:
                   6888:        * tests/022_dir/b.txt [autoptr] 1.1.2.1:
                   6889:        * tests/022_dir/c.htm [autoptr] 1.1.2.1:
                   6890:        * tests/023.html [autoptr] 1.1.2.1:
                   6891:        * tests/results/015.processed [autoptr] 1.1.2.1:
                   6892:        * tests/results/016.processed [autoptr] 1.1.2.1:
                   6893:        * tests/results/017.processed [autoptr] 1.1.2.1:
                   6894:        * tests/results/018.processed [autoptr] 1.1.2.1:
                   6895:        * tests/results/019.processed [autoptr] 1.1.2.1:
                   6896:        * tests/results/020.processed [autoptr] 1.1.2.1:
                   6897:        * tests/results/021.processed [autoptr] 1.1.2.1:
                   6898:        * tests/results/022.processed [autoptr] 1.1.2.1:
                   6899:        * tests/results/023.processed [autoptr] 1.1.2.1:
                   6900:                methoded_array now contains all Mxxx classes
                   6901:                SAPI::get_env now returns info on pool
                   6902:                more tests
                   6903: 
                   6904:        * tests/results/012.processed 1.1:
                   6905:                file 012.processed was initially added on branch autoptr.
                   6906: 
                   6907:        * tests/results/004.processed 1.1:
                   6908:                file 004.processed was initially added on branch autoptr.
                   6909: 
                   6910: 2003-02-25  paf
                   6911:        * src/main/pa_common.C [release_3_0_0007] 1.140.2.2:
                   6912:                typo fixed
                   6913: 
                   6914: 2003-02-24  paf
                   6915:        * src/types/pa_vcookie.C [autoptr] 1.55.2.9:
                   6916:                fixed all places with bad get_string(0)
                   6917:                [one remained]
                   6918: 
                   6919:        * src/include/pa_request.h [autoptr] 1.160.2.27:
                   6920:        * src/main/execute.C [autoptr] 1.295.2.19:
                   6921:                few bad get_string(0) [should have been get_string(&pool)]
                   6922:                todo: check other such calls
                   6923: 
                   6924:        * src/types/pa_vmail.C 1.41:
                   6925:                body [text/html] transcoded to
                   6926:                $.charset[specified]
                   6927:                now
                   6928: 
                   6929:        * src/main/compile.tab.C [autoptr] 1.81.2.9:
                   6930:        * src/main/execute.C [autoptr] 1.295.2.18:
                   6931:        * src/types/pa_vfile.h [autoptr] 1.52.2.16:
                   6932:                test10, bad lookups
                   6933:                
                   6934:                xxx* xxx=smartptr.get(); << is bad style, after ";" original object got destructed, and xxx points to sky
                   6935: 
                   6936:        * src/main/pa_common.C 1.145:
                   6937:        * src/main/pa_common.C [release_3_0_0007] 1.140.2.1:
                   6938:                stupid gcc [2.95.4] generated bad code
                   6939:                which failed to handle sigsetjmp+throw: crashed inside of pre-throw code.
                   6940:                rewritten simplier [though duplicating closesocket code]
                   6941: 
                   6942:        * src/classes/string.C [autoptr] 1.125.2.11:
                   6943:                match bug fixed
                   6944: 
1.22      paf      6945: 2003-02-21  paf
                   6946:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.15:
                   6947:                MAKE_TEST must be used inside of 'make tests' only
                   6948:                [it's not forcing CGI mode now]
                   6949:                now use -H to output CGI header when parser used in command line [useful for tests also]
                   6950: 
                   6951:        * src/classes/file.C [autoptr] 1.107.2.14:
                   6952:        * src/classes/image.C [autoptr] 1.90.2.11:
                   6953:        * src/classes/mail.C [autoptr] 1.88.2.11:
                   6954:        * src/classes/op.C [autoptr] 1.127.2.16:
                   6955:        * src/classes/xdoc.C [autoptr] 1.108.2.11:
                   6956:        * src/main/pa_charset.C [autoptr] 1.33.2.11:
                   6957:        * src/main/pa_exec.C [autoptr] 1.48.2.14:
                   6958:        * src/main/pa_sql_driver_manager.C [autoptr] 1.69.2.14:
                   6959:        * src/main/pa_stylesheet_manager.C [autoptr] 1.16.2.4:
                   6960:        * src/types/pa_vimage.C [autoptr] 1.22.2.7:
                   6961:        * src/types/pa_vxdoc.h [autoptr] 1.31.2.4:
                   6962:                fixed all cstr's that must use pool [as the one in ^process]
                   6963: 
                   6964:        * src/include/pa_array.h [autoptr] 1.57.2.25:
                   6965:        * src/include/pa_exception.h [autoptr] 1.38.2.15:
                   6966:        * src/include/pa_memory.h [autoptr] 1.1.2.1:
                   6967:        * src/include/pa_pool.h [autoptr] 1.86.2.31:
                   6968:        * src/main/Makefile.am [autoptr] 1.35.6.3:
                   6969:        * src/main/main.dsp [autoptr] 1.161.6.12:
                   6970:        * src/main/pa_array.C [autoptr] 1.54.2.5:
                   6971:        * src/main/pa_memory.C [autoptr] 1.1.2.1:
                   6972:        * src/main/pa_pool.C [autoptr] 1.59.2.5:
                   6973:                reorganized memory handling files
                   6974: 
                   6975:        * src/include/pa_memory.h [autoptr] 1.1.2.2:
                   6976:        * src/main/pa_memory.C [autoptr] 1.1.2.2:
                   6977:                inlined memory handling pa_*
                   6978: 
                   6979:        * src/main/execute.C [autoptr] 1.295.2.17:
                   6980:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.11:
                   6981:        * www/htdocs/autoptr.html [autoptr] 1.1.2.3:
                   6982:                release mode now compiles OK
                   6983:                test to show benefits of free
                   6984: 
                   6985:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.14:
                   6986:                MAKE_TEST environment variable switches on CGI mode, and is
                   6987:                used in regression tests
                   6988: 
                   6989:        * operators.txt [autoptr] 1.109.2.1:
                   6990:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.16:
                   6991:        * src/types/pa_vcookie.C [autoptr] 1.55.2.8:
                   6992:                $cookie:name[$.expires[date << can be now]]
                   6993:                
                   6994:                written makefile with regression tests [raw]
                   6995: 
                   6996:        * src/include/pa_request.h [autoptr] 1.160.2.26:
                   6997:        * src/main/pa_request.C [autoptr] 1.245.2.27:
                   6998:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.13:
                   6999:        * src/types/pa_vcookie.h [autoptr] 1.23.2.6:
                   7000:        * src/types/pa_venv.h [autoptr] 1.28.2.4:
                   7001:                env fixed
                   7002: 
                   7003:        * src/main/pa_array.C [autoptr] 1.54.2.4:
                   7004:                pool::format_integer terminator fixed
                   7005: 
                   7006:        * src/include/pa_memory.h 1.1:
                   7007:                file pa_memory.h was initially added on branch autoptr.
                   7008: 
                   7009:        * src/main/pa_memory.C 1.1:
                   7010:                file pa_memory.C was initially added on branch autoptr.
                   7011: 
                   7012:        * src/classes/op.C [autoptr] 1.127.2.15:
                   7013:                fixed process.
                   7014:                sould now check for all cstr's -- some must use pool [as the one in ^process]
                   7015: 
                   7016: 2003-02-20  paf
                   7017:        * www/htdocs/autoptr.html 1.1:
                   7018:                file autoptr.html was initially added on branch autoptr.
                   7019: 
                   7020:        * src/include/pa_config_fixed.h [autoptr] 1.54.2.2:
                   7021:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.10:
                   7022:                form values passed OK now
                   7023: 
                   7024:        * src/classes/date.C [autoptr] 1.42.2.10:
                   7025:        * src/classes/double.C [autoptr] 1.53.2.7:
                   7026:        * src/classes/file.C [autoptr] 1.107.2.13:
                   7027:        * src/classes/hash.C [autoptr] 1.54.2.10:
                   7028:        * src/classes/image.C [autoptr] 1.90.2.10:
                   7029:        * src/classes/int.C [autoptr] 1.49.2.6:
                   7030:        * src/classes/mail.C [autoptr] 1.88.2.10:
                   7031:        * src/classes/math.C [autoptr] 1.24.2.9:
                   7032:        * src/classes/op.C [autoptr] 1.127.2.13:
                   7033:        * src/classes/response.C [autoptr] 1.23.2.6:
                   7034:        * src/classes/string.C [autoptr] 1.125.2.10:
                   7035:        * src/classes/table.C [autoptr] 1.172.2.10:
                   7036:        * src/classes/void.C [autoptr] 1.28.2.4:
                   7037:        * src/classes/xdoc.C [autoptr] 1.108.2.10:
                   7038:        * src/classes/xnode.C [autoptr] 1.54.2.7:
                   7039:        * src/main/pa_string.C [autoptr] 1.172.2.17:
                   7040:        * src/types/pa_method.h [autoptr] 1.1.2.4:
                   7041:        * src/types/pa_value.C [autoptr] 1.9.2.14:
                   7042:        * src/types/pa_vmethod_frame.h [autoptr] 1.45.2.8:
                   7043:        * www/htdocs/autoptr.html [autoptr] 1.1.2.1:
                   7044:                string cmp fixed
                   7045: 
                   7046: 2003-02-19  paf
                   7047:        * src/classes/form.C [autoptr] 1.34.2.6:
                   7048:        * src/include/pa_charset.h [autoptr] 1.20.2.12:
                   7049:        * src/include/pa_pool.h [autoptr] 1.86.2.30:
                   7050:        * src/main/pa_charset.C [autoptr] 1.33.2.10:
                   7051:        * src/main/pa_exception.C [autoptr] 1.43.2.13:
                   7052:        * src/main/pa_request.C [autoptr] 1.245.2.25:
                   7053:        * src/main/pa_stylesheet_manager.C [autoptr] 1.16.2.3:
                   7054:        * src/targets/apache13/ApacheModuleParser3.dsp [autoptr] 1.16.12.1:
                   7055:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.8:
                   7056:        * src/targets/isapi/parser3isapi.dsp [autoptr] 1.41.12.1:
                   7057:        * src/types/pa_vcookie.C [autoptr] 1.55.2.7:
                   7058:        * src/types/pa_vform.C [autoptr] 1.74.2.9:
                   7059:        * src/types/pa_vmail.C [autoptr] 1.40.2.9:
                   7060:        * src/types/pa_vxnode.C [autoptr] 1.30.2.2:
                   7061:                found&kill all remaning leaks resulted from pooled::malloc calls
                   7062:                [excluding in gd -- planning complete rewrite extremely ugly code]
                   7063: 
                   7064:        * src/targets/apache13/pa_pool.C [autoptr] 1.8.2.2:
                   7065:        * src/targets/isapi/pa_pool.C [autoptr] 1.16.2.2:
                   7066:        * src/targets/isapi/pool_storage.h [autoptr] 1.19.2.2:
                   7067:                removed unneeded files
                   7068: 
                   7069: 2003-02-17  paf
                   7070:        * src/classes/classes.C [autoptr] 1.18.2.4:
                   7071:        * src/include/pa_array.h [autoptr] 1.57.2.22:
                   7072:        * src/include/pa_hash.h [autoptr] 1.58.2.16:
                   7073:        * src/include/pa_pool.h [autoptr] 1.86.2.29:
                   7074:        * src/include/pa_request.h [autoptr] 1.160.2.23:
                   7075:        * src/main/pa_request.C [autoptr] 1.245.2.20:
                   7076:        * src/main/pa_string.C [autoptr] 1.172.2.16:
                   7077:        * src/main/untaint.C [autoptr] 1.115.2.10:
                   7078:        * src/types/pa_value.h [autoptr] 1.109.2.23:
                   7079:        * src/types/pa_vint.h [autoptr] 1.38.2.10:
                   7080:        * src/types/pa_vstateless_class.h [autoptr] 1.42.2.12:
                   7081:        * src/types/pa_vstring.h [autoptr] 1.54.2.10:
                   7082:        * src/types/pa_vvoid.h [autoptr] 1.17.2.7:
                   7083:        * src/types/pa_wcontext.h [autoptr] 1.42.2.7:
                   7084:                class fields of simple type not initialized with zeros :(
                   7085:                while class fields of class types initialized with default constructors.
                   7086:                learn C++
                   7087: 
                   7088:        * src/main/execute.C [autoptr] 1.295.2.11:
                   7089:        * src/main/pa_request.C [autoptr] 1.245.2.21:
                   7090:        * src/types/pa_vmethod_frame.C [autoptr] 1.1.2.5:
                   7091:                first letters out OK
                   7092: 
                   7093:        * src/classes/classes.awk [autoptr] 1.6.6.2:
                   7094:        * src/classes/double.C [autoptr] 1.53.2.5:
                   7095:        * src/classes/file.C [autoptr] 1.107.2.11:
                   7096:        * src/classes/form.C [autoptr] 1.34.2.5:
                   7097:        * src/classes/image.C [autoptr] 1.90.2.8:
                   7098:        * src/classes/int.C [autoptr] 1.49.2.4:
                   7099:        * src/classes/mail.C [autoptr] 1.88.2.8:
                   7100:        * src/classes/math.C [autoptr] 1.24.2.7:
                   7101:        * src/classes/xdoc.C [autoptr] 1.108.2.7:
                   7102:        * src/classes/xnode.C [autoptr] 1.54.2.5:
                   7103:        * src/include/pa_array.h [autoptr] 1.57.2.21:
                   7104:        * src/include/pa_string.h [autoptr] 1.144.2.24:
                   7105:        * src/main/pa_exec.C [autoptr] 1.48.2.13:
                   7106:        * src/types/pa_vmail.C [autoptr] 1.40.2.7:
                   7107:                parser3.exe - 0 error(s), 0 warning(s)
                   7108: 
                   7109:        * src/classes/date.C [autoptr] 1.42.2.8:
                   7110:        * src/classes/op.C [autoptr] 1.127.2.12:
                   7111:        * src/classes/table.C [autoptr] 1.172.2.8:
                   7112:        * src/classes/xdoc.C [autoptr] 1.108.2.8:
                   7113:        * src/classes/xnode.C [autoptr] 1.54.2.6:
                   7114:        * src/include/pa_array.h [autoptr] 1.57.2.24:
                   7115:        * src/include/pa_charset.h [autoptr] 1.20.2.11:
                   7116:        * src/main/Makefile.am [autoptr] 1.35.6.2:
                   7117:        * src/main/main.dsp [autoptr] 1.161.6.11:
                   7118:        * src/main/pa_charset.C [autoptr] 1.33.2.8:
                   7119:        * src/main/pa_common.C [autoptr] 1.143.2.20:
                   7120:        * src/main/pa_sql_driver_manager.C [autoptr] 1.69.2.13:
                   7121:        * src/main/pa_stylesheet_manager.C [autoptr] 1.16.2.2:
                   7122:        * src/targets/apache13/mod_parser3.C [autoptr] 1.28.2.4:
                   7123:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.6:
                   7124:        * src/targets/isapi/parser3isapi.C [autoptr] 1.82.2.4:
                   7125:        * src/types/pa_vmail.C [autoptr] 1.40.2.8:
                   7126:                fixed more leaks resulted from pooled::malloc calls
                   7127: 
                   7128:        * src/include/pa_stack.h [autoptr] 1.17.2.4:
                   7129:        * src/main/compile.C [autoptr] 1.69.2.6:
                   7130:        * src/main/execute.C [autoptr] 1.295.2.13:
                   7131:        * src/main/pa_request.C [autoptr] 1.245.2.23:
                   7132:                stack-stored items need extra .ref to prevent object_ptr from
                   7133:                delete[them]
                   7134: 
                   7135:        * src/main/pa_request.C [autoptr] 1.245.2.22:
                   7136:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.5:
                   7137:        * src/types/pa_vfile.C [autoptr] 1.36.2.10:
                   7138:                couple mem leaks rusulted from old pooled::malloc usage.
                   7139:                todo:find more like those
                   7140: 
                   7141:        * src/main/execute.C [autoptr] 1.295.2.14:
                   7142:        * src/targets/cgi/pa_pool.C [autoptr] 1.41.2.2:
                   7143:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.7:
                   7144:        * src/targets/cgi/pool_storage.h [autoptr] 1.13.2.2:
                   7145:                few bugs in debug output fixed
                   7146: 
                   7147:        * src/include/pa_array.h [autoptr] 1.57.2.23:
                   7148:        * src/include/pa_request.h [autoptr] 1.160.2.24:
                   7149:        * src/main/execute.C [autoptr] 1.295.2.12:
                   7150:                stackItem fixed [there were no string on stack before]
                   7151: 
                   7152:        * src/classes/date.C [autoptr] 1.42.2.9:
                   7153:        * src/classes/double.C [autoptr] 1.53.2.6:
                   7154:        * src/classes/file.C [autoptr] 1.107.2.12:
                   7155:        * src/classes/image.C [autoptr] 1.90.2.9:
                   7156:        * src/classes/int.C [autoptr] 1.49.2.5:
                   7157:        * src/classes/mail.C [autoptr] 1.88.2.9:
                   7158:        * src/classes/math.C [autoptr] 1.24.2.8:
                   7159:        * src/classes/response.C [autoptr] 1.23.2.5:
                   7160:        * src/classes/string.C [autoptr] 1.125.2.9:
                   7161:        * src/classes/table.C [autoptr] 1.172.2.9:
                   7162:        * src/classes/xdoc.C [autoptr] 1.108.2.9:
                   7163:        * src/classes/xnode.h [autoptr] 1.18.2.4:
                   7164:        * src/include/pa_stack.h [autoptr] 1.17.2.5:
                   7165:        * src/include/pa_stylesheet_connection.h [autoptr] 1.32.2.2:
                   7166:        * src/include/pa_stylesheet_manager.h [autoptr] 1.15.2.2:
                   7167:        * src/sql/pa_sql_driver.h [autoptr] 1.34.2.3:
                   7168:        * src/types/pa_vdate.h [autoptr] 1.24.2.5:
                   7169:        * src/types/pa_vdouble.h [autoptr] 1.42.2.9:
                   7170:        * src/types/pa_vfile.h [autoptr] 1.52.2.15:
                   7171:        * src/types/pa_vform.C [autoptr] 1.74.2.8:
                   7172:        * src/types/pa_vform.h [autoptr] 1.45.2.8:
                   7173:        * src/types/pa_vimage.h [autoptr] 1.34.2.7:
                   7174:        * src/types/pa_vstatus.h [autoptr] 1.15.2.7:
                   7175:        * src/types/pa_vstring.h [autoptr] 1.54.2.11:
                   7176:        * src/types/pa_vtable.h [autoptr] 1.48.2.8:
                   7177:        * src/types/pa_vvoid.h [autoptr] 1.17.2.8:
                   7178:        * src/types/pa_vxdoc.h [autoptr] 1.31.2.3:
                   7179:        * src/types/pa_vxnode.h [autoptr] 1.22.2.3:
                   7180:        * src/types/pa_wcontext.h [autoptr] 1.42.2.8:
                   7181:        * src/types/pa_wwrapper.h [autoptr] 1.28.2.3:
                   7182:                fixed all remained bugs of unitialized simple-typed field
                   7183: 
                   7184:        * src/classes/classes.C [autoptr] 1.18.2.5:
                   7185:        * src/classes/classes.h [autoptr] 1.23.2.8:
                   7186:        * src/main/execute.C [autoptr] 1.295.2.15:
                   7187:        * src/main/pa_charset.C [autoptr] 1.33.2.9:
                   7188:        * src/main/pa_request.C [autoptr] 1.245.2.24:
                   7189:                another bug of unitialized simple-typed field fixed.
                   7190:                todo: find&kill all like that one
                   7191: 
                   7192:        * src/main/compile.C [autoptr] 1.69.2.5:
                   7193:        * src/main/compile_tools.C [autoptr] 1.54.2.5:
                   7194:                2*2!
                   7195: 
                   7196: 2003-02-14  paf
                   7197:        * src/classes/classes.dsp [autoptr] 1.25.10.4:
                   7198:        * src/classes/op.C [autoptr] 1.127.2.10:
                   7199:        * src/classes/string.C [autoptr] 1.125.2.8:
                   7200:        * src/classes/table.C [autoptr] 1.172.2.7:
                   7201:        * src/include/pa_common.h [autoptr] 1.89.2.11:
                   7202:        * src/include/pa_globals.h [autoptr] 1.101.2.14:
                   7203:        * src/include/pa_pool.h [autoptr] 1.86.2.28:
                   7204:        * src/include/pa_request.h [autoptr] 1.160.2.20:
                   7205:        * src/main/pa_globals.C [autoptr] 1.152.2.15:
                   7206:        * src/main/pa_request.C [autoptr] 1.245.2.16:
                   7207:        * src/types/pa_value.h [autoptr] 1.109.2.22:
                   7208:        * src/types/pa_vhash.h [autoptr] 1.43.2.12:
                   7209:        * src/types/pa_vint.h [autoptr] 1.38.2.9:
                   7210:        * src/types/types.dsp [autoptr] 1.35.10.7:
                   7211:                op compiled
                   7212: 
                   7213:        * src/classes/classes.C [autoptr] 1.18.2.3:
                   7214:        * src/classes/classes.awk [autoptr] 1.6.6.1:
                   7215:        * src/classes/file.C [autoptr] 1.107.2.9:
                   7216:        * src/classes/hash.C [autoptr] 1.54.2.9:
                   7217:        * src/classes/mail.C [autoptr] 1.88.2.7:
                   7218:        * src/classes/op.C [autoptr] 1.127.2.11:
                   7219:        * src/include/pa_common.h [autoptr] 1.89.2.12:
                   7220:        * src/include/pa_request.h [autoptr] 1.160.2.21:
                   7221:        * src/include/pa_sapi.h [autoptr] 1.22.2.6:
                   7222:        * src/main/pa_common.C [autoptr] 1.143.2.18:
                   7223:        * src/main/pa_request.C [autoptr] 1.245.2.17:
                   7224:        * src/targets/apache13/mod_parser3.C [autoptr] 1.28.2.3:
                   7225:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.3:
                   7226:        * src/targets/cgi/parser3.dsp [autoptr] 1.60.10.1:
                   7227:        * src/targets/isapi/parser3isapi.C [autoptr] 1.82.2.3:
                   7228:                classes.lib - 0 error(s), 0 warning(s)
                   7229:                parser.C compiled
                   7230: 
                   7231:        * src/classes/classes.dsp [autoptr] 1.25.10.3:
                   7232:        * src/classes/response.C [autoptr] 1.23.2.4:
                   7233:        * src/classes/string.C [autoptr] 1.125.2.7:
                   7234:        * src/include/pa_dictionary.h [autoptr] 1.13.2.7:
                   7235:        * src/include/pa_string.h [autoptr] 1.144.2.23:
                   7236:        * src/main/pa_string.C [autoptr] 1.172.2.15:
                   7237:        * src/main/untaint.C [autoptr] 1.115.2.9:
                   7238:        * src/types/pa_vtable.h [autoptr] 1.48.2.7:
                   7239:                string, response compiled
                   7240: 
                   7241:        * src/classes/file.C [autoptr] 1.107.2.10:
                   7242:        * src/include/pa_request.h [autoptr] 1.160.2.22:
                   7243:        * src/main/pa_request.C [autoptr] 1.245.2.18:
                   7244:        * src/main/pa_sql_driver_manager.C [autoptr] 1.69.2.12:
                   7245:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.4:
                   7246:        * src/types/pa_vfile.C [autoptr] 1.36.2.9:
                   7247:        * src/types/pa_vfile.h [autoptr] 1.52.2.14:
                   7248:        * src/types/pa_vform.C [autoptr] 1.74.2.7:
                   7249:        * src/types/pa_vimage.C [autoptr] 1.22.2.6:
                   7250:        * src/types/pa_vtable.C [autoptr] 1.21.2.5:
                   7251:                all compiled, only 14 link errors :)
                   7252: 
                   7253:        * src/types/pa_vhash.C 1.1:
                   7254:                file pa_vhash.C was initially added on branch autoptr.
                   7255: 
                   7256:        * src/include/pa_common.h [autoptr] 1.89.2.13:
                   7257:        * src/main/pa_common.C [autoptr] 1.143.2.19:
                   7258:        * src/main/pa_request.C [autoptr] 1.245.2.19:
                   7259:                13 link errors
                   7260: 
                   7261: 2003-02-07  paf
                   7262:        * src/classes/table.C [autoptr] 1.172.2.6:
                   7263:        * src/types/pa_vtable.h [autoptr] 1.48.2.6:
                   7264:                table compiled
                   7265: 
                   7266: 2003-02-06  paf
                   7267:        * src/classes/image.C [autoptr] 1.90.2.7:
                   7268:        * src/classes/string.C [autoptr] 1.125.2.6:
                   7269:        * src/classes/xdoc.C [autoptr] 1.108.2.6:
                   7270:        * src/include/pa_common.h [autoptr] 1.89.2.10:
                   7271:        * src/include/pa_hash.h [autoptr] 1.58.2.15:
                   7272:        * src/main/pa_common.C [autoptr] 1.143.2.17:
                   7273:        * src/types/pa_vfile.h [autoptr] 1.52.2.13:
                   7274:        * src/types/pa_vimage.h [autoptr] 1.34.2.6:
                   7275:                image compiled
                   7276: 
                   7277:        * src/classes/mail.C [autoptr] 1.88.2.6:
                   7278:        * src/include/pa_request.h [autoptr] 1.160.2.19:
                   7279:        * src/main/pa_request.C [autoptr] 1.245.2.15:
                   7280:                mail compiled
                   7281: 
                   7282:        * src/classes/hash.C [autoptr] 1.54.2.7:
                   7283:        * src/include/pa_hash.h [autoptr] 1.58.2.14:
                   7284:        * src/include/pa_table.h [autoptr] 1.48.2.11:
                   7285:        * src/types/pa_vstring.h [autoptr] 1.54.2.9:
                   7286:                hash compiled
                   7287: 
                   7288:        * src/classes/classes.dsp [autoptr] 1.25.10.2:
                   7289:        * src/classes/file.C [autoptr] 1.107.2.7:
                   7290:        * src/include/pa_common.h [autoptr] 1.89.2.9:
                   7291:        * src/include/pa_exec.h [autoptr] 1.11.2.5:
                   7292:        * src/main/pa_common.C [autoptr] 1.143.2.16:
                   7293:        * src/main/pa_exec.C [autoptr] 1.48.2.12:
                   7294:        * src/types/pa_vfile.C [autoptr] 1.36.2.8:
                   7295:        * src/types/pa_vfile.h [autoptr] 1.52.2.12:
                   7296:                file compiled
                   7297: 
                   7298:        * src/classes/file.C [autoptr] 1.107.2.8:
                   7299:        * src/classes/form.C [autoptr] 1.34.2.4:
                   7300:                form compiled
                   7301: 
                   7302:        * src/classes/hash.C [autoptr] 1.54.2.8:
                   7303:        * src/classes/math.C [autoptr] 1.24.2.6:
                   7304:        * src/types/pa_vmath.C [autoptr] 1.1.2.8:
                   7305:        * src/types/pa_vmath.h [autoptr] 1.14.2.4:
                   7306:                math compiled [win32]
                   7307: 
                   7308: 2003-02-04  paf
                   7309:        * src/classes/date.C [autoptr] 1.42.2.5:
                   7310:        * src/classes/double.C [autoptr] 1.53.2.3:
                   7311:        * src/classes/file.C [autoptr] 1.107.2.5:
                   7312:        * src/classes/form.C [autoptr] 1.34.2.3:
                   7313:        * src/classes/hash.C [autoptr] 1.54.2.4:
                   7314:        * src/classes/image.C [autoptr] 1.90.2.5:
                   7315:        * src/classes/int.C [autoptr] 1.49.2.3:
                   7316:        * src/classes/mail.C [autoptr] 1.88.2.4:
                   7317:        * src/classes/math.C [autoptr] 1.24.2.4:
                   7318:        * src/classes/op.C [autoptr] 1.127.2.8:
                   7319:        * src/classes/response.C [autoptr] 1.23.2.3:
                   7320:        * src/classes/string.C [autoptr] 1.125.2.4:
                   7321:        * src/classes/table.C [autoptr] 1.172.2.4:
                   7322:        * src/classes/void.C [autoptr] 1.28.2.3:
                   7323:        * src/classes/xdoc.C [autoptr] 1.108.2.4:
                   7324:        * src/classes/xnode.C [autoptr] 1.54.2.3:
                   7325:        * src/types/pa_vdouble.h [autoptr] 1.42.2.8:
                   7326:        * src/types/pa_vhash.h [autoptr] 1.43.2.10:
                   7327:        * src/types/pa_vint.h [autoptr] 1.38.2.8:
                   7328:        * src/types/pa_vstring.h [autoptr] 1.54.2.8:
                   7329:        * src/types/pa_vtable.h [autoptr] 1.48.2.5:
                   7330:        * src/types/pa_vxdoc.h [autoptr] 1.31.2.2:
                   7331:        * src/types/pa_vxnode.h [autoptr] 1.22.2.2:
                   7332:                int compiled
                   7333: 
                   7334:        * src/types/pa_value.C [autoptr] 1.9.2.12:
                   7335:        * src/types/pa_value_includes.h [autoptr] 1.1.2.4:
                   7336:        * src/types/pa_vrequest.C [autoptr] 1.27.2.8:
                   7337:                trying to remove stupid value_includes.h
                   7338: 
                   7339:        * src/classes/date.C [autoptr] 1.42.2.4:
                   7340:        * src/classes/double.C [autoptr] 1.53.2.2:
                   7341:        * src/classes/file.C [autoptr] 1.107.2.4:
                   7342:        * src/classes/hash.C [autoptr] 1.54.2.3:
                   7343:        * src/classes/image.C [autoptr] 1.90.2.4:
                   7344:        * src/classes/int.C [autoptr] 1.49.2.2:
                   7345:        * src/classes/mail.C [autoptr] 1.88.2.3:
                   7346:        * src/classes/math.C [autoptr] 1.24.2.3:
                   7347:        * src/classes/op.C [autoptr] 1.127.2.7:
                   7348:        * src/classes/response.C [autoptr] 1.23.2.2:
                   7349:        * src/classes/string.C [autoptr] 1.125.2.3:
                   7350:        * src/classes/table.C [autoptr] 1.172.2.3:
                   7351:        * src/classes/void.C [autoptr] 1.28.2.2:
                   7352:        * src/classes/xdoc.C [autoptr] 1.108.2.3:
                   7353:        * src/classes/xnode.C [autoptr] 1.54.2.2:
                   7354:        * src/classes/xnode.h [autoptr] 1.18.2.3:
                   7355:        * src/types/pa_vvoid.h [autoptr] 1.17.2.6:
                   7356:                void  compiled :)
                   7357: 
                   7358:        * src/classes/date.C [autoptr] 1.42.2.7:
                   7359:        * src/classes/hash.C [autoptr] 1.54.2.6:
                   7360:        * src/include/pa_exec.h [autoptr] 1.11.2.4:
                   7361:        * src/include/pa_hash.h [autoptr] 1.58.2.13:
                   7362:        * src/include/pa_request.h [autoptr] 1.160.2.18:
                   7363:        * src/include/pa_string.h [autoptr] 1.144.2.22:
                   7364:        * src/include/pa_table.h [autoptr] 1.48.2.10:
                   7365:        * src/main/pa_common.C [autoptr] 1.143.2.15:
                   7366:        * src/main/pa_exec.C [autoptr] 1.48.2.11:
                   7367:        * src/main/pa_string.C [autoptr] 1.172.2.14:
                   7368:        * src/types/pa_method.h [autoptr] 1.1.2.3:
                   7369:        * src/types/pa_vform.C [autoptr] 1.74.2.6:
                   7370:        * src/types/pa_vhash.h [autoptr] 1.43.2.11:
                   7371:                hash 50% compiled
                   7372: 
                   7373:        * src/types/pa_method.h 1.1:
                   7374:                file pa_method.h was initially added on branch autoptr.
                   7375: 
                   7376:        * src/include/pa_globals.h [autoptr] 1.101.2.13:
                   7377:        * src/main/pa_cache_managers.C [autoptr] 1.7.2.5:
                   7378:        * src/main/pa_charset.C [autoptr] 1.33.2.7:
                   7379:        * src/main/pa_charsets.C [autoptr] 1.11.2.9:
                   7380:        * src/main/pa_common.C [autoptr] 1.143.2.14:
                   7381:        * src/main/pa_dir.C [autoptr] 1.14.2.3:
                   7382:        * src/main/pa_exception.C [autoptr] 1.43.2.12:
                   7383:        * src/main/pa_exec.C [autoptr] 1.48.2.10:
                   7384:        * src/main/pa_globals.C [autoptr] 1.152.2.13:
                   7385:        * src/main/pa_pool.C [autoptr] 1.59.2.4:
                   7386:        * src/main/pa_sql_driver_manager.C [autoptr] 1.69.2.11:
                   7387:        * src/main/pa_string.C [autoptr] 1.172.2.12:
                   7388:        * src/main/pa_uue.C [autoptr] 1.4.2.5:
                   7389:        * src/main/untaint.C [autoptr] 1.115.2.8:
                   7390:        * src/types/pa_value.C [autoptr] 1.9.2.13:
                   7391:        * src/types/pa_vcookie.C [autoptr] 1.55.2.6:
                   7392:        * src/types/pa_vfile.C [autoptr] 1.36.2.7:
                   7393:        * src/types/pa_vimage.C [autoptr] 1.22.2.5:
                   7394:        * src/types/pa_vmath.C [autoptr] 1.1.2.7:
                   7395:        * src/types/pa_vrequest.C [autoptr] 1.27.2.9:
                   7396:        * src/types/pa_vresponse.C [autoptr] 1.17.2.6:
                   7397:        * src/types/pa_vstateless_class.C [autoptr] 1.19.2.6:
                   7398:        * src/types/pa_vstatus.C [autoptr] 1.15.2.5:
                   7399:        * src/types/pa_vstring.C [autoptr] 1.22.2.3:
                   7400:        * src/types/pa_vtable.C [autoptr] 1.21.2.4:
                   7401:        * src/types/pa_wcontext.C [autoptr] 1.24.2.5:
                   7402:        * src/types/types.dsp [autoptr] 1.35.10.6:
                   7403:                removed stupid value_includes.h
                   7404: 
                   7405:        * src/main/pa_exec.C [autoptr] 1.48.2.8:
                   7406:                libmain.a compiled on six [unix]
                   7407: 
                   7408:        * src/include/pa_config_includes.h [autoptr] 1.23.2.5:
                   7409:        * src/include/pa_dictionary.h [autoptr] 1.13.2.6:
                   7410:        * src/main/pa_common.C [autoptr] 1.143.2.13:
                   7411:        * src/main/pa_dictionary.C [autoptr] 1.17.2.6:
                   7412:        * src/main/pa_exec.C [autoptr] 1.48.2.7:
                   7413:        * src/main/pa_socks.C [autoptr] 1.18.2.5:
                   7414:                libmain.a gcc
                   7415:                and
                   7416:                mail.lib msvc++
                   7417:                compiled
                   7418: 
                   7419:        * src/include/pa_globals.h [autoptr] 1.101.2.12:
                   7420:        * src/include/pa_request.h [autoptr] 1.160.2.16:
                   7421:        * src/types/pa_value.C [autoptr] 1.9.2.11:
                   7422:        * src/types/pa_value.h [autoptr] 1.109.2.21:
                   7423:        * src/types/pa_vclass.C [autoptr] 1.16.2.5:
                   7424:        * src/types/pa_vcookie.C [autoptr] 1.55.2.5:
                   7425:        * src/types/pa_vdate.h [autoptr] 1.24.2.4:
                   7426:        * src/types/pa_vfile.C [autoptr] 1.36.2.6:
                   7427:        * src/types/pa_vfile.h [autoptr] 1.52.2.11:
                   7428:        * src/types/pa_vmail.C [autoptr] 1.40.2.6:
                   7429:        * src/types/pa_vobject.C [autoptr] 1.12.2.6:
                   7430:        * src/types/pa_vrequest.C [autoptr] 1.27.2.7:
                   7431:        * src/types/pa_vstateless_class.C [autoptr] 1.19.2.5:
                   7432:        * src/types/pa_vstatus.C [autoptr] 1.15.2.4:
                   7433:        * src/types/pa_vtable.C [autoptr] 1.21.2.3:
                   7434:                libtypes.a compiled gcc
                   7435: 
1.24      paf      7436:        * src/include/pa_array.h [autoptr] 1.57.2.20:
                   7437:        * src/include/pa_config_includes.h [autoptr] 1.23.2.4:
                   7438:        * src/include/pa_dictionary.h [autoptr] 1.13.2.5:
                   7439:        * src/main/pa_dictionary.C [autoptr] 1.17.2.5:
                   7440:        * src/main/pa_exec.C [autoptr] 1.48.2.6:
                   7441:        * src/main/pa_socks.C [autoptr] 1.18.2.4:
                   7442:        * src/main/pa_sql_driver_manager.C [autoptr] 1.69.2.10:
                   7443:                gcc libmain.a compiled
                   7444: 
1.22      paf      7445:        * src/classes/classes.dsp [autoptr] 1.25.10.1:
                   7446:        * src/classes/double.C [autoptr] 1.53.2.4:
                   7447:                double compiled
                   7448: 
                   7449:        * src/main/pa_globals.C [release_3_0_0007] 1.148.2.1:
                   7450:                merged changes from 1.149-1.150 (stupid name conflicts)
                   7451: 
                   7452:        * src/include/pa_array.h [autoptr] 1.57.2.19:
                   7453:        * src/include/pa_pool.h [autoptr] 1.86.2.27:
                   7454:        * src/main/Makefile.am [autoptr] 1.35.6.1:
                   7455:        * src/main/Makefile.in [autoptr] 1.50.2.2:
                   7456:        * src/main/compile.tab.C [autoptr] 1.81.2.7:
                   7457:        * src/main/compile.y [autoptr] 1.204.2.6:
                   7458:        * src/main/execute.C [autoptr] 1.295.2.10:
                   7459:        * src/main/pa_request.C [autoptr] 1.245.2.14:
                   7460:        * src/main/untaint.C [autoptr] 1.115.2.7:
                   7461:        * src/types/pa_junction.h [autoptr] 1.1.2.2:
                   7462:        * src/types/pa_method.h [autoptr] 1.1.2.2:
                   7463:        * src/types/pa_value.h [autoptr] 1.109.2.20:
                   7464:        * src/types/pa_value_includes.h [autoptr] 1.1.2.3:
                   7465:        * src/types/pa_vimage.h [autoptr] 1.34.2.5:
                   7466:                *** empty log message ***
                   7467: 
                   7468:        * src/main/pa_exec.C [autoptr] 1.48.2.9:
                   7469:                pa_exec compiled on win32
                   7470: 
                   7471:        * src/classes/date.C [autoptr] 1.42.2.6:
                   7472:        * src/classes/file.C [autoptr] 1.107.2.6:
                   7473:        * src/classes/hash.C [autoptr] 1.54.2.5:
                   7474:        * src/classes/image.C [autoptr] 1.90.2.6:
                   7475:        * src/classes/mail.C [autoptr] 1.88.2.5:
                   7476:        * src/classes/math.C [autoptr] 1.24.2.5:
                   7477:        * src/classes/op.C [autoptr] 1.127.2.9:
                   7478:        * src/classes/string.C [autoptr] 1.125.2.5:
                   7479:        * src/classes/table.C [autoptr] 1.172.2.5:
                   7480:        * src/classes/xdoc.C [autoptr] 1.108.2.5:
                   7481:        * src/classes/xnode.C [autoptr] 1.54.2.4:
                   7482:        * src/include/pa_request.h [autoptr] 1.160.2.17:
                   7483:        * src/main/pa_globals.C [autoptr] 1.152.2.14:
                   7484:        * src/main/pa_string.C [autoptr] 1.172.2.13:
                   7485:                date compiled
                   7486: 
                   7487:        * src/types/pa_junction.h 1.1:
                   7488:                file pa_junction.h was initially added on branch autoptr.
                   7489: 
                   7490:        * src/main/compile_tools.h [autoptr] 1.67.2.8:
                   7491:        * src/main/execute.C [autoptr] 1.295.2.9:
                   7492:        * src/main/pa_table.C [autoptr] 1.53.2.9:
                   7493:        * src/types/pa_vmethod_frame.h [autoptr] 1.45.2.7:
                   7494:        * src/types/pa_vvoid.h [autoptr] 1.17.2.5:
                   7495:                yuk: gcc on cygwin yelds "virtual memory exhausted" while
                   7496:                trying to compile execute.C [eating up to 127MB]
                   7497: 
                   7498: 2003-02-03  paf
                   7499:        * src/types/pa_vstateless_class.C [autoptr] 1.19.2.4:
                   7500:                vstateless_class compiled
                   7501: 
                   7502:        * src/include/pa_request.h [autoptr] 1.160.2.13:
                   7503:        * src/main/execute.C [autoptr] 1.295.2.7:
                   7504:        * src/main/pa_request.C [autoptr] 1.245.2.8:
                   7505:        * src/types/pa_value.h [autoptr] 1.109.2.16:
                   7506:        * src/types/pa_vmethod_frame.h [autoptr] 1.45.2.6:
                   7507:                execute compiled
                   7508: 
                   7509:        * src/types/pa_vresponse.C [autoptr] 1.17.2.5:
                   7510:        * src/types/pa_vresponse.h [autoptr] 1.32.2.6:
                   7511:                vresponse compiled
                   7512: 
                   7513:        * src/types/pa_value.C [autoptr] 1.9.2.9:
                   7514:        * src/types/pa_value.h [autoptr] 1.109.2.18:
                   7515:        * src/types/pa_vclass.C [autoptr] 1.16.2.4:
                   7516:        * src/types/pa_vclass.h [autoptr] 1.39.2.5:
                   7517:        * src/types/pa_vobject.C [autoptr] 1.12.2.5:
                   7518:        * src/types/pa_vobject.h [autoptr] 1.38.2.8:
                   7519:                vobject compiled
                   7520: 
                   7521:        * src/types/pa_vtable.C [autoptr] 1.21.2.2:
                   7522:                vtable compiled
                   7523: 
                   7524:        * src/types/pa_vmath.C [autoptr] 1.1.2.6:
                   7525:        * src/types/pa_vmethod_frame.C [autoptr] 1.1.2.4:
                   7526:                vmath compiled
                   7527: 
                   7528:        * src/include/pa_config_includes.h [autoptr] 1.23.2.2:
                   7529:        * src/include/pa_hash.h [autoptr] 1.58.2.12:
                   7530:        * src/include/pa_operation.h [autoptr] 1.1.2.6:
                   7531:        * src/include/pa_pool.h [autoptr] 1.86.2.26:
                   7532:        * src/include/pa_string.h [autoptr] 1.144.2.21:
                   7533:        * src/main/pa_common.C [autoptr] 1.143.2.12:
                   7534:        * src/types/pa_value.C [autoptr] 1.9.2.10:
                   7535:        * src/types/pa_value.h [autoptr] 1.109.2.19:
                   7536:        * src/types/pa_vdouble.h [autoptr] 1.42.2.7:
                   7537:        * src/types/pa_vfile.h [autoptr] 1.52.2.10:
                   7538:        * src/types/pa_vhash.h [autoptr] 1.43.2.9:
                   7539:        * src/types/pa_vint.h [autoptr] 1.38.2.7:
                   7540:        * src/types/pa_vjunction.h [autoptr] 1.19.2.5:
                   7541:        * src/types/pa_vstateless_class.h [autoptr] 1.42.2.11:
                   7542:        * src/types/pa_vstring.h [autoptr] 1.54.2.7:
                   7543:        * src/types/types.dsp [autoptr] 1.35.10.5:
                   7544:                started gcc compiling
                   7545:                pa_common compiled
                   7546: 
                   7547:        * src/include/pa_pool.h [autoptr] 1.86.2.23:
                   7548:        * src/main/pa_request.C [autoptr] 1.245.2.10:
                   7549:        * src/types/pa_value.C [autoptr] 1.9.2.8:
                   7550:        * src/types/pa_vclass.C [autoptr] 1.16.2.3:
                   7551:        * src/types/pa_vcookie.C [autoptr] 1.55.2.4:
                   7552:        * src/types/pa_vcookie.h [autoptr] 1.23.2.5:
                   7553:        * src/types/pa_vform.C [autoptr] 1.74.2.4:
                   7554:        * src/types/pa_vform.h [autoptr] 1.45.2.7:
                   7555:        * src/types/pa_vobject.h [autoptr] 1.38.2.7:
                   7556:                vform compiled
                   7557: 
                   7558:        * src/include/Makefile.am [autoptr] 1.3.14.1:
                   7559:        * src/include/Makefile.in [autoptr] 1.11.2.1:
                   7560:        * src/include/pa_hash.h [autoptr] 1.58.2.11:
                   7561:        * src/include/pa_pool.h [autoptr] 1.86.2.24:
                   7562:                gcc refused to compile _P identifier. it replaced it to some
                   7563:                strange 0x0000040
                   7564: 
                   7565:        * configure [autoptr] 1.66.2.2:
                   7566:        * configure.in [autoptr] 1.62.2.2:
                   7567:        * src/Makefile.in [autoptr] 1.55.2.1:
                   7568:        * src/include/Makefile.in [autoptr] 1.11.2.2:
                   7569:        * src/include/pa_config_auto.h.in [autoptr] 1.37.2.1:
                   7570:        * src/include/pa_config_auto.h.in [autoptr] 1.37.2.2:
                   7571:        * src/include/pa_string.h [autoptr] 1.144.2.20:
                   7572:        * src/main/Makefile.in [autoptr] 1.50.2.1:
                   7573:                *** empty log message ***
                   7574: 
                   7575:        * src/types/pa_vstring.C [autoptr] 1.22.2.2:
                   7576:        * src/types/pa_vstring.h [autoptr] 1.54.2.6:
                   7577:                vstring compiled
                   7578: 
                   7579:        * src/include/pa_request.h [autoptr] 1.160.2.14:
                   7580:        * src/main/execute.C [autoptr] 1.295.2.8:
                   7581:        * src/main/pa_request.C [autoptr] 1.245.2.9:
                   7582:                main.lib - 0 error(s), 0 warning(s)
                   7583: 
                   7584:        * src/types/pa_vrequest.C [autoptr] 1.27.2.6:
                   7585:                vrequest compiled
                   7586: 
                   7587:        * src/classes/form.C [autoptr] 1.34.2.2:
                   7588:        * src/classes/mail.C [autoptr] 1.88.2.2:
                   7589:        * src/include/pa_request.h [autoptr] 1.160.2.15:
                   7590:        * src/main/pa_globals.C [autoptr] 1.152.2.12:
                   7591:        * src/main/pa_request.C [autoptr] 1.245.2.11:
                   7592:        * src/types/pa_value.h [autoptr] 1.109.2.17:
                   7593:        * src/types/pa_vform.C [autoptr] 1.74.2.5:
                   7594:        * src/types/pa_vmail.C [autoptr] 1.40.2.5:
                   7595:        * src/types/pa_vmail.h [autoptr] 1.9.2.4:
                   7596:                vmail compiled
                   7597: 
                   7598:        * src/types/pa_vimage.C [autoptr] 1.22.2.4:
                   7599:        * src/types/pa_vimage.h [autoptr] 1.34.2.4:
                   7600:                vimage compiled
                   7601: 
                   7602:        * src/include/pa_exception.h [autoptr] 1.38.2.14:
                   7603:        * src/include/pa_pool.h [autoptr] 1.86.2.25:
                   7604:        * src/main/pa_exception.C [autoptr] 1.43.2.11:
                   7605:                exception gcc change #1
                   7606: 
                   7607:        * src/include/pa_cache_managers.h [autoptr] 1.9.2.6:
                   7608:        * src/main/pa_request.C [autoptr] 1.245.2.12:
                   7609:        * src/types/pa_vstatus.C [autoptr] 1.15.2.2:
                   7610:        * src/types/pa_vstatus.h [autoptr] 1.15.2.6:
                   7611:                vstatus compiled
                   7612: 
                   7613: 2003-01-31  paf
                   7614:        * src/classes/classes.C [autoptr] 1.18.2.2:
                   7615:        * src/classes/classes.h [autoptr] 1.23.2.7:
                   7616:        * src/classes/date.C [autoptr] 1.42.2.3:
                   7617:        * src/classes/double.C [autoptr] 1.53.2.1:
                   7618:        * src/classes/file.C [autoptr] 1.107.2.3:
                   7619:        * src/classes/form.C [autoptr] 1.34.2.1:
                   7620:        * src/classes/hash.C [autoptr] 1.54.2.2:
                   7621:        * src/classes/image.C [autoptr] 1.90.2.3:
                   7622:        * src/classes/int.C [autoptr] 1.49.2.1:
                   7623:        * src/classes/mail.C [autoptr] 1.88.2.1:
                   7624:        * src/classes/math.C [autoptr] 1.24.2.2:
                   7625:        * src/classes/op.C [autoptr] 1.127.2.5:
                   7626:        * src/classes/response.C [autoptr] 1.23.2.1:
                   7627:        * src/classes/string.C [autoptr] 1.125.2.1:
                   7628:        * src/classes/table.C [autoptr] 1.172.2.2:
                   7629:        * src/classes/void.C [autoptr] 1.28.2.1:
                   7630:        * src/classes/xdoc.C [autoptr] 1.108.2.2:
                   7631:        * src/classes/xnode.C [autoptr] 1.54.2.1:
                   7632:        * src/classes/xnode.h [autoptr] 1.18.2.2:
                   7633:        * src/include/pa_array.h [autoptr] 1.57.2.16:
                   7634:        * src/include/pa_cache_managers.h [autoptr] 1.9.2.5:
                   7635:        * src/include/pa_charset.h [autoptr] 1.20.2.10:
                   7636:        * src/include/pa_charsets.h [autoptr] 1.8.2.7:
                   7637:        * src/include/pa_common.h [autoptr] 1.89.2.7:
                   7638:        * src/include/pa_config_fixed.h [autoptr] 1.54.2.1:
                   7639:        * src/include/pa_config_includes.h [autoptr] 1.23.2.1:
                   7640:        * src/include/pa_dictionary.h [autoptr] 1.13.2.4:
                   7641:        * src/include/pa_dir.h [autoptr] 1.13.2.1:
                   7642:        * src/include/pa_exception.h [autoptr] 1.38.2.13:
                   7643:        * src/include/pa_exec.h [autoptr] 1.11.2.3:
                   7644:        * src/include/pa_globals.h [autoptr] 1.101.2.10:
                   7645:        * src/include/pa_hash.h [autoptr] 1.58.2.10:
                   7646:        * src/include/pa_opcode.h [autoptr] 1.24.2.2:
                   7647:        * src/include/pa_operation.h [autoptr] 1.1.2.4:
                   7648:        * src/include/pa_pool.h [autoptr] 1.86.2.22:
                   7649:        * src/include/pa_request.h [autoptr] 1.160.2.9:
                   7650:        * src/include/pa_request_charsets.h [autoptr] 1.1.2.3:
                   7651:        * src/include/pa_request_info.h [autoptr] 1.1.2.4:
                   7652:        * src/include/pa_sapi.h [autoptr] 1.22.2.4:
                   7653:        * src/include/pa_socks.h [autoptr] 1.11.2.2:
                   7654:        * src/include/pa_sql_connection.h [autoptr] 1.30.2.6:
                   7655:        * src/include/pa_sql_driver_manager.h [autoptr] 1.26.2.7:
                   7656:        * src/include/pa_stack.h [autoptr] 1.17.2.3:
                   7657:        * src/include/pa_string.h [autoptr] 1.144.2.18:
                   7658:        * src/include/pa_stylesheet_connection.h [autoptr] 1.32.2.1:
                   7659:        * src/include/pa_stylesheet_manager.h [autoptr] 1.15.2.1:
                   7660:        * src/include/pa_table.h [autoptr] 1.48.2.9:
                   7661:        * src/include/pa_threads.h [autoptr] 1.26.2.1:
                   7662:        * src/include/pa_types.h [autoptr] 1.44.2.2:
                   7663:        * src/include/pa_uue.h [autoptr] 1.4.2.3:
                   7664:        * src/lib/ltdl/config_fixed.h [autoptr] 1.2.2.2:
                   7665:        * src/lib/ltdl/ltdl.c [autoptr] 1.3.2.1:
                   7666:        * src/lib/ltdl/ltdl.h [autoptr] 1.2.2.1:
                   7667:        * src/lib/md5/pa_md5.h [autoptr] 1.5.2.1:
                   7668:        * src/lib/md5/pa_md5c.c [autoptr] 1.6.2.1:
                   7669:        * src/lib/pcre/dftables.c [autoptr] 1.1.14.1:
                   7670:        * src/lib/pcre/get.c [autoptr] 1.1.14.1:
                   7671:        * src/lib/pcre/maketables.c [autoptr] 1.1.14.1:
                   7672:        * src/lib/pcre/pcre.c [autoptr] 1.1.14.1:
                   7673:        * src/lib/pcre/pcre.h [autoptr] 1.1.14.1:
                   7674:        * src/lib/pcre/pcre_parser_ctype.c [autoptr] 1.3.2.1:
                   7675:        * src/lib/pcre/study.c [autoptr] 1.1.14.1:
                   7676:        * src/main/compile.C [autoptr] 1.69.2.4:
                   7677:        * src/main/compile.tab.C [autoptr] 1.81.2.4:
                   7678:        * src/main/compile.y [autoptr] 1.204.2.3:
                   7679:        * src/main/compile_tools.C [autoptr] 1.54.2.4:
                   7680:        * src/main/compile_tools.h [autoptr] 1.67.2.6:
                   7681:        * src/main/execute.C [autoptr] 1.295.2.4:
                   7682:        * src/main/main.dsp [autoptr] 1.161.6.8:
                   7683:        * src/main/pa_cache_managers.C [autoptr] 1.7.2.4:
                   7684:        * src/main/pa_charset.C [autoptr] 1.33.2.6:
                   7685:        * src/main/pa_charsets.C [autoptr] 1.11.2.8:
                   7686:        * src/main/pa_common.C [autoptr] 1.143.2.10:
                   7687:        * src/main/pa_dictionary.C [autoptr] 1.17.2.4:
                   7688:        * src/main/pa_dir.C [autoptr] 1.14.2.2:
                   7689:        * src/main/pa_exception.C [autoptr] 1.43.2.10:
                   7690:        * src/main/pa_exec.C [autoptr] 1.48.2.5:
                   7691:        * src/main/pa_globals.C [autoptr] 1.152.2.10:
                   7692:        * src/main/pa_pool.C [autoptr] 1.59.2.3:
                   7693:        * src/main/pa_request.C [autoptr] 1.245.2.5:
                   7694:        * src/main/pa_socks.C [autoptr] 1.18.2.3:
                   7695:        * src/main/pa_sql_driver_manager.C [autoptr] 1.69.2.9:
                   7696:        * src/main/pa_string.C [autoptr] 1.172.2.11:
                   7697:        * src/main/pa_stylesheet_manager.C [autoptr] 1.16.2.1:
                   7698:        * src/main/pa_table.C [autoptr] 1.53.2.8:
                   7699:        * src/main/pa_uue.C [autoptr] 1.4.2.4:
                   7700:        * src/main/untaint.C [autoptr] 1.115.2.6:
                   7701:        * src/sql/pa_sql_driver.h [autoptr] 1.34.2.2:
                   7702:        * src/targets/apache13/mod_parser3.C [autoptr] 1.28.2.1:
                   7703:        * src/targets/apache13/pa_md5c.c [autoptr] 1.5.2.1:
                   7704:        * src/targets/apache13/pa_pool.C [autoptr] 1.8.2.1:
                   7705:        * src/targets/apache13/pa_threads.C [autoptr] 1.11.2.1:
                   7706:        * src/targets/cgi/getopt.c [autoptr] 1.2.6.1:
                   7707:        * src/targets/cgi/getopt.h [autoptr] 1.2.10.1:
                   7708:        * src/targets/cgi/pa_pool.C [autoptr] 1.41.2.1:
                   7709:        * src/targets/cgi/pa_threads.C [autoptr] 1.12.2.1:
                   7710:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.1:
                   7711:        * src/targets/cgi/pool_storage.h [autoptr] 1.13.2.1:
                   7712:        * src/targets/isapi/pa_pool.C [autoptr] 1.16.2.1:
                   7713:        * src/targets/isapi/pa_threads.C [autoptr] 1.13.2.1:
                   7714:        * src/targets/isapi/parser3isapi.C [autoptr] 1.82.2.1:
                   7715:        * src/targets/isapi/pool_storage.h [autoptr] 1.19.2.1:
                   7716:        * src/types/pa_value.C [autoptr] 1.9.2.7:
                   7717:        * src/types/pa_value.h [autoptr] 1.109.2.14:
                   7718:        * src/types/pa_value_includes.h [autoptr] 1.1.2.2:
                   7719:        * src/types/pa_vbool.h [autoptr] 1.21.2.3:
                   7720:        * src/types/pa_vclass.C [autoptr] 1.16.2.2:
                   7721:        * src/types/pa_vclass.h [autoptr] 1.39.2.4:
                   7722:        * src/types/pa_vcode_frame.h [autoptr] 1.24.2.1:
                   7723:        * src/types/pa_vcookie.C [autoptr] 1.55.2.3:
                   7724:        * src/types/pa_vcookie.h [autoptr] 1.23.2.3:
                   7725:        * src/types/pa_vdate.h [autoptr] 1.24.2.3:
                   7726:        * src/types/pa_vdouble.h [autoptr] 1.42.2.6:
                   7727:        * src/types/pa_venv.h [autoptr] 1.28.2.3:
                   7728:        * src/types/pa_vfile.C [autoptr] 1.36.2.4:
                   7729:        * src/types/pa_vfile.h [autoptr] 1.52.2.8:
                   7730:        * src/types/pa_vform.C [autoptr] 1.74.2.3:
                   7731:        * src/types/pa_vform.h [autoptr] 1.45.2.5:
                   7732:        * src/types/pa_vhash.h [autoptr] 1.43.2.7:
                   7733:        * src/types/pa_vimage.C [autoptr] 1.22.2.3:
                   7734:        * src/types/pa_vimage.h [autoptr] 1.34.2.3:
                   7735:        * src/types/pa_vint.h [autoptr] 1.38.2.6:
                   7736:        * src/types/pa_vjunction.h [autoptr] 1.19.2.3:
                   7737:        * src/types/pa_vmail.C [autoptr] 1.40.2.3:
                   7738:        * src/types/pa_vmail.h [autoptr] 1.9.2.2:
                   7739:        * src/types/pa_vmath.C [autoptr] 1.1.2.5:
                   7740:        * src/types/pa_vmath.h [autoptr] 1.14.2.3:
                   7741:        * src/types/pa_vmethod_frame.C [autoptr] 1.1.2.3:
                   7742:        * src/types/pa_vmethod_frame.h [autoptr] 1.45.2.5:
                   7743:        * src/types/pa_vobject.C [autoptr] 1.12.2.4:
                   7744:        * src/types/pa_vobject.h [autoptr] 1.38.2.6:
                   7745:        * src/types/pa_vrequest.C [autoptr] 1.27.2.5:
                   7746:        * src/types/pa_vrequest.h [autoptr] 1.25.2.3:
                   7747:        * src/types/pa_vresponse.C [autoptr] 1.17.2.4:
                   7748:        * src/types/pa_vresponse.h [autoptr] 1.32.2.4:
                   7749:        * src/types/pa_vstateless_class.C [autoptr] 1.19.2.3:
                   7750:        * src/types/pa_vstateless_class.h [autoptr] 1.42.2.10:
                   7751:        * src/types/pa_vstateless_object.h [autoptr] 1.28.2.4:
                   7752:        * src/types/pa_vstatus.C [autoptr] 1.15.2.1:
                   7753:        * src/types/pa_vstatus.h [autoptr] 1.15.2.5:
                   7754:        * src/types/pa_vstring.C [autoptr] 1.22.2.1:
                   7755:        * src/types/pa_vstring.h [autoptr] 1.54.2.5:
                   7756:        * src/types/pa_vtable.C [autoptr] 1.21.2.1:
                   7757:        * src/types/pa_vtable.h [autoptr] 1.48.2.3:
                   7758:        * src/types/pa_vvoid.h [autoptr] 1.17.2.4:
                   7759:        * src/types/pa_vxdoc.C [autoptr] 1.23.2.1:
                   7760:        * src/types/pa_vxdoc.h [autoptr] 1.31.2.1:
                   7761:        * src/types/pa_vxnode.C [autoptr] 1.30.2.1:
                   7762:        * src/types/pa_vxnode.h [autoptr] 1.22.2.1:
                   7763:        * src/types/pa_wcontext.C [autoptr] 1.24.2.3:
                   7764:        * src/types/pa_wcontext.h [autoptr] 1.42.2.5:
                   7765:        * src/types/pa_wwrapper.h [autoptr] 1.28.2.2:
                   7766:                grammar compiled
                   7767: 
                   7768:        * src/classes/op.C [autoptr] 1.127.2.6:
                   7769:        * src/classes/string.C [autoptr] 1.125.2.2:
                   7770:        * src/include/pa_common.h [autoptr] 1.89.2.8:
                   7771:        * src/include/pa_globals.h [autoptr] 1.101.2.11:
                   7772:        * src/include/pa_request.h [autoptr] 1.160.2.10:
                   7773:        * src/include/pa_sql_connection.h [autoptr] 1.30.2.7:
                   7774:        * src/main/compile.tab.C [autoptr] 1.81.2.5:
                   7775:        * src/main/compile.y [autoptr] 1.204.2.4:
                   7776:        * src/main/execute.C [autoptr] 1.295.2.5:
                   7777:        * src/main/main.dsp [autoptr] 1.161.6.9:
                   7778:        * src/main/pa_common.C [autoptr] 1.143.2.11:
                   7779:        * src/main/pa_globals.C [autoptr] 1.152.2.11:
                   7780:        * src/main/pa_request.C [autoptr] 1.245.2.6:
                   7781:        * src/types/pa_value.h [autoptr] 1.109.2.15:
                   7782:        * src/types/pa_vcode_frame.h [autoptr] 1.24.2.2:
                   7783:        * src/types/pa_vcookie.h [autoptr] 1.23.2.4:
                   7784:        * src/types/pa_vform.h [autoptr] 1.45.2.6:
                   7785:        * src/types/pa_vmail.C [autoptr] 1.40.2.4:
                   7786:        * src/types/pa_vmail.h [autoptr] 1.9.2.3:
                   7787:        * src/types/pa_vresponse.h [autoptr] 1.32.2.5:
                   7788:        * src/types/pa_vtable.h [autoptr] 1.48.2.4:
                   7789:        * src/types/pa_wcontext.C [autoptr] 1.24.2.4:
                   7790:        * src/types/pa_wcontext.h [autoptr] 1.42.2.6:
                   7791:        * src/types/types.dsp [autoptr] 1.35.10.4:
                   7792:                most pa_request compiled
                   7793: 
                   7794:        * src/include/pa_array.h [autoptr] 1.57.2.17:
                   7795:        * src/include/pa_operation.h [autoptr] 1.1.2.5:
                   7796:        * src/include/pa_request.h [autoptr] 1.160.2.12:
                   7797:        * src/main/execute.C [autoptr] 1.295.2.6:
                   7798:        * src/main/main.dsp [autoptr] 1.161.6.10:
                   7799:        * src/types/pa_vjunction.h [autoptr] 1.19.2.4:
                   7800:                started last file from main library: execute
                   7801: 
                   7802:        * src/include/pa_request.h [autoptr] 1.160.2.11:
                   7803:        * src/include/pa_sapi.h [autoptr] 1.22.2.5:
                   7804:        * src/main/compile.tab.C [autoptr] 1.81.2.6:
                   7805:        * src/main/compile.y [autoptr] 1.204.2.5:
                   7806:        * src/main/compile_tools.h [autoptr] 1.67.2.7:
                   7807:        * src/main/pa_request.C [autoptr] 1.245.2.7:
                   7808:        * src/targets/apache13/mod_parser3.C [autoptr] 1.28.2.2:
                   7809:        * src/targets/cgi/parser3.C [autoptr] 1.216.2.2:
                   7810:        * src/targets/isapi/parser3isapi.C [autoptr] 1.82.2.2:
                   7811:        * src/types/pa_vfile.C [autoptr] 1.36.2.5:
                   7812:        * src/types/pa_vfile.h [autoptr] 1.52.2.9:
                   7813:        * src/types/pa_vhash.h [autoptr] 1.43.2.8:
                   7814:                pa_request compiled
                   7815: 
                   7816:        * src/classes/classes.h [autoptr] 1.23.2.6:
                   7817:        * src/classes/op.C [autoptr] 1.127.2.4:
                   7818:        * src/include/pa_cache_managers.h [autoptr] 1.9.2.4:
                   7819:        * src/include/pa_charset.h [autoptr] 1.20.2.9:
                   7820:        * src/include/pa_charsets.h [autoptr] 1.8.2.6:
                   7821:        * src/include/pa_common.h [autoptr] 1.89.2.6:
                   7822:        * src/include/pa_dictionary.h [autoptr] 1.13.2.3:
                   7823:        * src/include/pa_exception.h [autoptr] 1.38.2.12:
                   7824:        * src/include/pa_exec.h [autoptr] 1.11.2.2:
                   7825:        * src/include/pa_pool.h [autoptr] 1.86.2.21:
                   7826:        * src/include/pa_request.h [autoptr] 1.160.2.8:
                   7827:        * src/include/pa_sapi.h [autoptr] 1.22.2.3:
                   7828:        * src/include/pa_sql_connection.h [autoptr] 1.30.2.5:
                   7829:        * src/include/pa_sql_driver_manager.h [autoptr] 1.26.2.6:
                   7830:        * src/include/pa_string.h [autoptr] 1.144.2.17:
                   7831:        * src/include/pa_table.h [autoptr] 1.48.2.8:
                   7832:        * src/include/pa_uue.h [autoptr] 1.4.2.2:
                   7833:        * src/main/compile.C [autoptr] 1.69.2.3:
                   7834:        * src/main/compile.tab.C [autoptr] 1.81.2.3:
                   7835:        * src/main/compile_tools.C [autoptr] 1.54.2.3:
                   7836:        * src/main/compile_tools.h [autoptr] 1.67.2.5:
                   7837:        * src/main/main.dsp [autoptr] 1.161.6.7:
                   7838:        * src/main/pa_charset.C [autoptr] 1.33.2.5:
                   7839:        * src/main/pa_charsets.C [autoptr] 1.11.2.7:
                   7840:        * src/main/pa_common.C [autoptr] 1.143.2.9:
                   7841:        * src/main/pa_dictionary.C [autoptr] 1.17.2.3:
                   7842:        * src/main/pa_exception.C [autoptr] 1.43.2.9:
                   7843:        * src/main/pa_exec.C [autoptr] 1.48.2.4:
                   7844:        * src/main/pa_request.C [autoptr] 1.245.2.4:
                   7845:        * src/main/pa_sql_driver_manager.C [autoptr] 1.69.2.8:
                   7846:        * src/main/pa_string.C [autoptr] 1.172.2.10:
                   7847:        * src/main/pa_table.C [autoptr] 1.53.2.7:
                   7848:        * src/main/pa_uue.C [autoptr] 1.4.2.3:
                   7849:        * src/main/untaint.C [autoptr] 1.115.2.5:
                   7850:        * src/types/pa_value.C [autoptr] 1.9.2.6:
                   7851:        * src/types/pa_value.h [autoptr] 1.109.2.13:
                   7852:        * src/types/pa_vclass.h [autoptr] 1.39.2.3:
                   7853:        * src/types/pa_vcookie.C [autoptr] 1.55.2.2:
                   7854:        * src/types/pa_vcookie.h [autoptr] 1.23.2.2:
                   7855:        * src/types/pa_vdate.h [autoptr] 1.24.2.2:
                   7856:        * src/types/pa_vdouble.h [autoptr] 1.42.2.5:
                   7857:        * src/types/pa_venv.h [autoptr] 1.28.2.2:
                   7858:        * src/types/pa_vfile.C [autoptr] 1.36.2.3:
                   7859:        * src/types/pa_vfile.h [autoptr] 1.52.2.7:
                   7860:        * src/types/pa_vform.h [autoptr] 1.45.2.4:
                   7861:        * src/types/pa_vhash.h [autoptr] 1.43.2.6:
                   7862:        * src/types/pa_vimage.C [autoptr] 1.22.2.2:
                   7863:        * src/types/pa_vimage.h [autoptr] 1.34.2.2:
                   7864:        * src/types/pa_vint.h [autoptr] 1.38.2.5:
                   7865:        * src/types/pa_vmail.C [autoptr] 1.40.2.2:
                   7866:        * src/types/pa_vmail.h [autoptr] 1.9.2.1:
                   7867:        * src/types/pa_vmath.C [autoptr] 1.1.2.4:
                   7868:        * src/types/pa_vmath.h [autoptr] 1.14.2.2:
                   7869:        * src/types/pa_vmethod_frame.C [autoptr] 1.1.2.2:
                   7870:        * src/types/pa_vmethod_frame.h [autoptr] 1.45.2.4:
                   7871:        * src/types/pa_vobject.C [autoptr] 1.12.2.3:
                   7872:        * src/types/pa_vobject.h [autoptr] 1.38.2.5:
                   7873:        * src/types/pa_vrequest.C [autoptr] 1.27.2.4:
                   7874:        * src/types/pa_vrequest.h [autoptr] 1.25.2.2:
                   7875:        * src/types/pa_vresponse.C [autoptr] 1.17.2.3:
                   7876:        * src/types/pa_vresponse.h [autoptr] 1.32.2.3:
                   7877:        * src/types/pa_vstateless_class.C [autoptr] 1.19.2.2:
                   7878:        * src/types/pa_vstateless_class.h [autoptr] 1.42.2.9:
                   7879:        * src/types/pa_vstateless_object.h [autoptr] 1.28.2.3:
                   7880:        * src/types/pa_vstatus.h [autoptr] 1.15.2.4:
                   7881:        * src/types/pa_vstring.h [autoptr] 1.54.2.4:
                   7882:        * src/types/pa_vtable.h [autoptr] 1.48.2.2:
                   7883:        * src/types/pa_vvoid.h [autoptr] 1.17.2.3:
                   7884:        * src/types/pa_wcontext.C [autoptr] 1.24.2.2:
                   7885:        * src/types/pa_wcontext.h [autoptr] 1.42.2.4:
                   7886:        * src/types/pa_wwrapper.h [autoptr] 1.28.2.1:
                   7887:        * www/htdocs/.htaccess [autoptr] 1.12.6.1:
                   7888:                ConstStringPtr died, long live StringPtr
                   7889: 
                   7890: 2003-01-30  paf
                   7891:        * src/classes/classes.h [autoptr] 1.23.2.5:
                   7892:        * src/include/pa_pool.h [autoptr] 1.86.2.20:
                   7893:        * src/main/compile.C [autoptr] 1.69.2.2:
                   7894:        * src/main/compile.tab.C [autoptr] 1.81.2.1:
                   7895:        * src/types/pa_value.h [autoptr] 1.109.2.12:
                   7896:        * src/types/pa_vfile.h [autoptr] 1.52.2.6:
                   7897:        * src/types/pa_vhash.h [autoptr] 1.43.2.5:
                   7898:        * src/types/pa_vmethod_frame.h [autoptr] 1.45.2.3:
                   7899:        * src/types/pa_vstateless_class.C [autoptr] 1.19.2.1:
                   7900:        * src/types/pa_vstateless_class.h [autoptr] 1.42.2.8:
                   7901:        * src/types/types.dsp [autoptr] 1.35.10.3:
                   7902:                vstateless_class compiled
                   7903: 
                   7904:        * src/include/pa_charset.h [autoptr] 1.20.2.8:
                   7905:        * src/include/pa_request.h [autoptr] 1.160.2.7:
                   7906:        * src/include/pa_sql_driver_manager.h [autoptr] 1.26.2.5:
                   7907:        * src/main/compile.tab.C [autoptr] 1.81.2.2:
                   7908:        * src/main/compile.y [autoptr] 1.204.2.2:
                   7909:        * src/main/compile_tools.h [autoptr] 1.67.2.4:
                   7910:        * src/main/pa_request.C [autoptr] 1.245.2.3:
                   7911:        * src/types/pa_vobject.h [autoptr] 1.38.2.4:
                   7912:        * src/types/pa_vstatus.h [autoptr] 1.15.2.3:
                   7913:                grammar compiled
                   7914: 
                   7915:        * src/include/pa_opcode.h [autoptr] 1.24.2.1:
                   7916:        * src/main/compile_tools.h [autoptr] 1.67.2.1:
                   7917:        * src/main/execute.C [autoptr] 1.295.2.3:
                   7918:        * src/main/main.dsp [autoptr] 1.161.6.6:
                   7919:        * src/types/pa_value.C [autoptr] 1.9.2.5:
                   7920:        * src/types/pa_value.h [autoptr] 1.109.2.11:
                   7921:        * src/types/pa_vmethod_frame.h [autoptr] 1.45.2.2:
                   7922:        * src/types/pa_vstateless_class.h [autoptr] 1.42.2.7:
                   7923:                value compiled
                   7924: 
                   7925:        * src/types/pa_vmethod_frame.C 1.1:
                   7926:                file pa_vmethod_frame.C was initially added on branch autoptr.
                   7927: 
                   7928:        * src/include/pa_array.h [autoptr] 1.57.2.15:
                   7929:        * src/include/pa_operation.h [autoptr] 1.1.2.3:
                   7930:        * src/include/pa_table.h [autoptr] 1.48.2.7:
                   7931:        * src/main/compile_tools.C [autoptr] 1.54.2.2:
                   7932:        * src/main/compile_tools.h [autoptr] 1.67.2.3:
                   7933:        * src/main/pa_table.C [autoptr] 1.53.2.6:
                   7934:                compile_tools compiled
                   7935: 
                   7936:        * src/main/compile.C [autoptr] 1.69.2.1:
                   7937:                compile compiled
                   7938: 
                   7939:        * ltmain.sh 1.5:
                   7940:                *** empty log message ***
                   7941: 
                   7942:        * src/include/pa_operation.h [autoptr] 1.1.2.2:
                   7943:        * src/main/compile.y [autoptr] 1.204.2.1:
                   7944:        * src/main/compile_tools.C [autoptr] 1.54.2.1:
                   7945:        * src/main/compile_tools.h [autoptr] 1.67.2.2:
                   7946:                started compile_tools. vagues ideas of how to free compiled code
                   7947: 
                   7948:        * src/include/pa_operation.h 1.1:
                   7949:                file pa_operation.h was initially added on branch autoptr.
                   7950: 
                   7951: 2003-01-29  paf
                   7952:        * src/include/pa_request_charsets.h [autoptr] 1.1.2.2:
                   7953:        * src/include/pa_request_info.h [autoptr] 1.1.2.3:
                   7954:        * src/main/main.dsp [autoptr] 1.161.6.5:
                   7955:        * src/main/untaint.C [autoptr] 1.115.2.4:
                   7956:                more compiled
                   7957: 
                   7958:        * src/include/pa_globals.h [autoptr] 1.101.2.9:
                   7959:        * src/include/pa_request.h [autoptr] 1.160.2.6:
                   7960:        * src/main/pa_globals.C [autoptr] 1.152.2.9:
                   7961:        * src/main/pa_request.C [autoptr] 1.245.2.2:
                   7962:        * src/types/pa_value.h [autoptr] 1.109.2.10:
                   7963:        * src/types/pa_vmethod_frame.h [autoptr] 1.45.2.1:
                   7964:        * src/types/pa_vstateless_class.h [autoptr] 1.42.2.6:
                   7965:        * src/types/pa_wcontext.h [autoptr] 1.42.2.3:
                   7966:        * src/types/types.dsp [autoptr] 1.35.10.2:
                   7967:                vmethodframe, pa_request.h compiled
                   7968: 
                   7969:        * src/classes/file.C [autoptr] 1.107.2.2:
                   7970:        * src/include/pa_globals.h [autoptr] 1.101.2.8:
                   7971:        * src/main/pa_globals.C [autoptr] 1.152.2.8:
                   7972:        * src/types/pa_value.C [autoptr] 1.9.2.4:
                   7973:        * src/types/pa_value.h [autoptr] 1.109.2.9:
                   7974:        * src/types/pa_vfile.C [autoptr] 1.36.2.1:
                   7975:        * src/types/pa_vfile.h [autoptr] 1.52.2.4:
                   7976:                vfile compiled
                   7977: 
                   7978:        * src/classes/classes.h [autoptr] 1.23.2.3:
                   7979:        * src/classes/math.C [autoptr] 1.24.2.1:
                   7980:        * src/include/pa_pool.h [autoptr] 1.86.2.17:
                   7981:        * src/include/pa_request.h [autoptr] 1.160.2.3:
                   7982:        * src/include/pa_sapi.h [autoptr] 1.22.2.2:
                   7983:        * src/include/pa_string.h [autoptr] 1.144.2.13:
                   7984:        * src/main/main.dsp [autoptr] 1.161.6.3:
                   7985:        * src/types/pa_value.h [autoptr] 1.109.2.5:
                   7986:        * src/types/pa_vbool.h [autoptr] 1.21.2.2:
                   7987:        * src/types/pa_vclass.h [autoptr] 1.39.2.2:
                   7988:        * src/types/pa_vdouble.h [autoptr] 1.42.2.3:
                   7989:        * src/types/pa_venv.h [autoptr] 1.28.2.1:
                   7990:        * src/types/pa_vfile.h [autoptr] 1.52.2.2:
                   7991:        * src/types/pa_vform.C [autoptr] 1.74.2.1:
                   7992:        * src/types/pa_vform.h [autoptr] 1.45.2.1:
                   7993:        * src/types/pa_vjunction.h [autoptr] 1.19.2.2:
                   7994:        * src/types/pa_vmath.C [autoptr] 1.1.2.2:
                   7995:        * src/types/pa_vmath.h [autoptr] 1.14.2.1:
                   7996:        * src/types/pa_vobject.h [autoptr] 1.38.2.2:
                   7997:        * src/types/pa_vstateless_class.h [autoptr] 1.42.2.4:
                   7998:        * src/types/pa_vstateless_object.h [autoptr] 1.28.2.2:
                   7999:        * src/types/pa_vstatus.h [autoptr] 1.15.2.2:
                   8000:        * src/types/pa_vstring.h [autoptr] 1.54.2.2:
                   8001:        * src/types/types.dsp [autoptr] 1.35.10.1:
                   8002:                vmath compiled
                   8003: 
                   8004:        * src/types/pa_vmath.C 1.1:
                   8005:                file pa_vmath.C was initially added on branch autoptr.
                   8006: 
                   8007:        * src/include/pa_common.h [autoptr] 1.89.2.5:
                   8008:        * src/include/pa_globals.h [autoptr] 1.101.2.7:
                   8009:        * src/include/pa_string.h [autoptr] 1.144.2.16:
                   8010:        * src/main/pa_globals.C [autoptr] 1.152.2.7:
                   8011:        * src/types/pa_value.C [autoptr] 1.9.2.3:
                   8012:        * src/types/pa_value.h [autoptr] 1.109.2.8:
                   8013:        * src/types/pa_vcookie.C [autoptr] 1.55.2.1:
                   8014:        * src/types/pa_vcookie.h [autoptr] 1.23.2.1:
                   8015:        * src/types/pa_vform.C [autoptr] 1.74.2.2:
                   8016:        * src/types/pa_vform.h [autoptr] 1.45.2.3:
                   8017:                vcookie compiled
                   8018: 
1.24      paf      8019:        * src/lib/ltdl/config_fixed.h [autoptr] 1.2.2.1:
                   8020:                libltdl compiled without warnings now
                   8021: 
1.22      paf      8022:        * src/include/pa_request_info.h 1.1:
                   8023:                file pa_request_info.h was initially added on branch autoptr.
                   8024: 
                   8025:        * src/include/pa_array.h [autoptr] 1.57.2.14:
                   8026:        * src/include/pa_exception.h [autoptr] 1.38.2.11:
                   8027:        * src/include/pa_pool.h [autoptr] 1.86.2.19:
                   8028:        * src/main/pa_exception.C [autoptr] 1.43.2.8:
                   8029:        * src/types/pa_vfile.C [autoptr] 1.36.2.2:
                   8030:        * src/types/pa_vfile.h [autoptr] 1.52.2.5:
                   8031:        * src/types/pa_vimage.C [autoptr] 1.22.2.1:
                   8032:        * src/types/pa_vimage.h [autoptr] 1.34.2.1:
                   8033:                gd compiled
                   8034: 
                   8035:        * src/include/pa_exception.h [autoptr] 1.38.2.10:
                   8036:        * src/main/pa_cache_managers.C [autoptr] 1.7.2.3:
                   8037:        * src/main/pa_charsets.C [autoptr] 1.11.2.6:
                   8038:        * src/main/pa_common.C [autoptr] 1.143.2.8:
                   8039:        * src/main/pa_dir.C [autoptr] 1.14.2.1:
                   8040:        * src/main/pa_exception.C [autoptr] 1.43.2.7:
                   8041:        * src/main/pa_exec.C [autoptr] 1.48.2.3:
                   8042:        * src/main/pa_pool.C [autoptr] 1.59.2.2:
                   8043:        * src/main/pa_socks.C [autoptr] 1.18.2.2:
                   8044:        * src/main/pa_sql_driver_manager.C [autoptr] 1.69.2.7:
                   8045:        * src/main/pa_string.C [autoptr] 1.172.2.9:
                   8046:        * src/main/pa_uue.C [autoptr] 1.4.2.2:
                   8047:                #include "pa_value_includes.h"
                   8048:                everywhere in main
                   8049: 
                   8050:        * src/include/pa_charsets.h [autoptr] 1.8.2.5:
                   8051:        * src/include/pa_request.h [autoptr] 1.160.2.5:
                   8052:        * src/include/pa_request_info.h [autoptr] 1.1.2.2:
                   8053:        * src/include/pa_string.h [autoptr] 1.144.2.15:
                   8054:        * src/main/pa_charsets.C [autoptr] 1.11.2.5:
                   8055:        * src/types/pa_value.h [autoptr] 1.109.2.7:
                   8056:        * src/types/pa_vdate.h [autoptr] 1.24.2.1:
                   8057:        * src/types/pa_vform.h [autoptr] 1.45.2.2:
                   8058:        * src/types/pa_vhash.h [autoptr] 1.43.2.4:
                   8059:        * src/types/pa_vobject.C [autoptr] 1.12.2.2:
                   8060:        * src/types/pa_vobject.h [autoptr] 1.38.2.3:
                   8061:        * src/types/pa_vrequest.C [autoptr] 1.27.2.2:
                   8062:        * src/types/pa_vrequest.C [autoptr] 1.27.2.3:
                   8063:        * src/types/pa_vresponse.C [autoptr] 1.17.2.1:
                   8064:        * src/types/pa_vresponse.C [autoptr] 1.17.2.2:
                   8065:        * src/types/pa_vresponse.h [autoptr] 1.32.2.1:
                   8066:        * src/types/pa_vresponse.h [autoptr] 1.32.2.2:
                   8067:        * src/types/pa_wcontext.h [autoptr] 1.42.2.2:
                   8068:                vrequest compiled
                   8069: 
                   8070:        * src/types/pa_value_includes.h 1.1:
                   8071:                file pa_value_includes.h was initially added on branch autoptr.
                   8072: 
                   8073:        * src/classes/classes.h [autoptr] 1.23.2.4:
                   8074:        * src/include/pa_charset.h [autoptr] 1.20.2.7:
                   8075:        * src/include/pa_charsets.h [autoptr] 1.8.2.4:
                   8076:        * src/include/pa_globals.h [autoptr] 1.101.2.6:
                   8077:        * src/include/pa_pool.h [autoptr] 1.86.2.18:
                   8078:        * src/include/pa_request.h [autoptr] 1.160.2.4:
                   8079:        * src/include/pa_string.h [autoptr] 1.144.2.14:
                   8080:        * src/main/main.dsp [autoptr] 1.161.6.4:
                   8081:        * src/main/pa_charset.C [autoptr] 1.33.2.4:
                   8082:        * src/main/pa_charsets.C [autoptr] 1.11.2.4:
                   8083:        * src/main/pa_globals.C [autoptr] 1.152.2.6:
                   8084:        * src/main/untaint.C [autoptr] 1.115.2.3:
                   8085:        * src/types/pa_value.h [autoptr] 1.109.2.6:
                   8086:        * src/types/pa_vdouble.h [autoptr] 1.42.2.4:
                   8087:        * src/types/pa_vfile.h [autoptr] 1.52.2.3:
                   8088:        * src/types/pa_vint.h [autoptr] 1.38.2.4:
                   8089:        * src/types/pa_vmath.C [autoptr] 1.1.2.3:
                   8090:        * src/types/pa_vrequest.C [autoptr] 1.27.2.1:
                   8091:        * src/types/pa_vrequest.h [autoptr] 1.25.2.1:
                   8092:        * src/types/pa_vstateless_class.h [autoptr] 1.42.2.5:
                   8093:        * src/types/pa_vstring.h [autoptr] 1.54.2.3:
                   8094:        * src/types/pa_vvoid.h [autoptr] 1.17.2.2:
                   8095:                vrequest,vdouble,vint compiled
                   8096: 
                   8097:        * src/include/pa_request_charsets.h 1.1:
                   8098:                file pa_request_charsets.h was initially added on branch
                   8099:                autoptr.
                   8100: 
                   8101: 2003-01-28  paf
                   8102:        * src/include/pa_charset.h [autoptr] 1.20.2.6:
                   8103:        * src/include/pa_exception.h [autoptr] 1.38.2.9:
                   8104:        * src/include/pa_request.h [autoptr] 1.160.2.2:
                   8105:        * src/include/pa_string.h [autoptr] 1.144.2.12:
                   8106:        * src/main/untaint.C [autoptr] 1.115.2.2:
                   8107:                untaint compiled
                   8108: 
                   8109:        * src/include/pa_charset.h [autoptr] 1.20.2.5:
                   8110:        * src/main/pa_charset.C [autoptr] 1.33.2.3:
                   8111:        * src/main/pa_charsets.C [autoptr] 1.11.2.3:
                   8112:                charset/s simplified [charset::pool_for_load introduced]
                   8113: 
                   8114:        * src/include/pa_cache_managers.h [autoptr] 1.9.2.3:
                   8115:        * src/main/pa_cache_managers.C [autoptr] 1.7.2.2:
                   8116:        * src/main/pa_globals.C [autoptr] 1.152.2.5:
                   8117:        * src/main/pa_sql_driver_manager.C [autoptr] 1.69.2.6:
                   8118:                globals compiled
                   8119: 
                   8120:        * src/include/pa_array.h [autoptr] 1.57.2.11:
                   8121:        * src/include/pa_charset.h [autoptr] 1.20.2.3:
                   8122:        * src/include/pa_charsets.h [autoptr] 1.8.2.1:
                   8123:        * src/include/pa_pool.h [autoptr] 1.86.2.13:
                   8124:        * src/include/pa_sql_connection.h [autoptr] 1.30.2.4:
                   8125:        * src/include/pa_sql_driver_manager.h [autoptr] 1.26.2.4:
                   8126:        * src/include/pa_stack.h [autoptr] 1.17.2.2:
                   8127:        * src/include/pa_string.h [autoptr] 1.144.2.9:
                   8128:        * src/main/pa_sql_driver_manager.C [autoptr] 1.69.2.4:
                   8129:        * src/types/pa_vhash.h [autoptr] 1.43.2.3:
                   8130:        * src/types/pa_vint.h [autoptr] 1.38.2.3:
                   8131:                sql_driver_manager compiled
                   8132: 
                   8133:        * src/classes/date.C [autoptr] 1.42.2.1:
                   8134:        * src/include/pa_charset.h [autoptr] 1.20.2.4:
                   8135:        * src/include/pa_charsets.h [autoptr] 1.8.2.2:
                   8136:        * src/include/pa_charsets.h [autoptr] 1.8.2.3:
                   8137:        * src/include/pa_globals.h [autoptr] 1.101.2.5:
                   8138:        * src/main/pa_charset.C [autoptr] 1.33.2.2:
                   8139:        * src/main/pa_charsets.C [autoptr] 1.11.2.1:
                   8140:        * src/main/pa_charsets.C [autoptr] 1.11.2.2:
                   8141:        * src/main/pa_globals.C [autoptr] 1.152.2.4:
                   8142:        * src/main/pa_request.C [autoptr] 1.245.2.1:
                   8143:        * src/main/pa_sql_driver_manager.C [autoptr] 1.69.2.5:
                   8144:                pa_charsets compiled
                   8145: 
1.24      paf      8146:        * src/include/pa_pool.h [autoptr] 1.86.2.14:
                   8147:        * src/main/pa_common.C [autoptr] 1.143.2.7:
                   8148:        * src/types/pa_vdouble.h [autoptr] 1.42.2.2:
                   8149:                common compiled
                   8150: 
1.22      paf      8151:        * etc/parser3.charsets/koi8-r.cfg 1.3:
                   8152:        * etc/parser3.charsets/windows-1251.cfg 1.7:
                   8153:                ukranian letter i with two dots added to koi,
                   8154:                all ukranian letters added to win1251.
                   8155:                
                   8156:                typographic simbol 0xb9 deleted from win1251 [strange one & were abscent from koi]
                   8157: 
                   8158:        * src/classes/classes.h [autoptr] 1.23.2.2:
                   8159:        * src/classes/date.C [autoptr] 1.42.2.2:
                   8160:        * src/classes/file.C [autoptr] 1.107.2.1:
                   8161:        * src/classes/hash.C [autoptr] 1.54.2.1:
                   8162:        * src/classes/image.C [autoptr] 1.90.2.2:
                   8163:        * src/classes/table.C [autoptr] 1.172.2.1:
                   8164:        * src/classes/xdoc.C [autoptr] 1.108.2.1:
                   8165:        * src/classes/xnode.h [autoptr] 1.18.2.1:
                   8166:        * src/main/execute.C [autoptr] 1.295.2.2:
                   8167:        * src/main/main.dsp [autoptr] 1.161.6.2:
                   8168:        * src/types/pa_value.h [autoptr] 1.109.2.4:
                   8169:        * src/types/pa_vclass.C [autoptr] 1.16.2.1:
                   8170:        * src/types/pa_vclass.h [autoptr] 1.39.2.1:
                   8171:        * src/types/pa_vobject.C [autoptr] 1.12.2.1:
                   8172:        * src/types/pa_vobject.h [autoptr] 1.38.2.1:
                   8173:        * src/types/pa_vstateless_class.h [autoptr] 1.42.2.3:
                   8174:                started main: compile_tools
                   8175: 
                   8176:        * src/include/pa_array.h [autoptr] 1.57.2.13:
                   8177:        * src/include/pa_string.h [autoptr] 1.144.2.11:
                   8178:        * src/main/execute.C [autoptr] 1.295.2.1:
                   8179:        * src/main/untaint.C [autoptr] 1.115.2.1:
                   8180:        * src/types/pa_vmail.C [autoptr] 1.40.2.1:
                   8181:                more compiled.
                   8182:                struck with string::store_to needing to know source/client charsets
                   8183: 
                   8184:        * src/include/pa_exception.h [autoptr] 1.38.2.8:
                   8185:        * src/include/pa_uue.h [autoptr] 1.4.2.1:
                   8186:        * src/main/pa_uue.C [autoptr] 1.4.2.1:
                   8187:        * src/types/pa_vfile.h [autoptr] 1.52.2.1:
                   8188:                uue compiled
                   8189: 
                   8190:        * src/include/pa_table.h [autoptr] 1.48.2.6:
                   8191:        * src/main/pa_string.C [autoptr] 1.172.2.8:
                   8192:        * src/main/pa_table.C [autoptr] 1.53.2.5:
                   8193:                table compiled
                   8194: 
                   8195:        * src/include/pa_array.h [autoptr] 1.57.2.12:
                   8196:        * src/include/pa_exec.h [autoptr] 1.11.2.1:
                   8197:        * src/include/pa_hash.h [autoptr] 1.58.2.9:
                   8198:        * src/include/pa_pool.h [autoptr] 1.86.2.15:
                   8199:        * src/main/pa_exec.C [autoptr] 1.48.2.2:
                   8200:                pa_exec win32 compiled
                   8201: 
                   8202: 2003-01-27  paf
                   8203:        * src/include/pa_array.h [autoptr] 1.57.2.9:
                   8204:        * src/include/pa_common.h [autoptr] 1.89.2.4:
                   8205:        * src/include/pa_hash.h [autoptr] 1.58.2.7:
                   8206:        * src/include/pa_pool.h [autoptr] 1.86.2.9:
                   8207:        * src/include/pa_string.h [autoptr] 1.144.2.7:
                   8208:        * src/main/pa_common.C [autoptr] 1.143.2.4:
                   8209:        * src/main/pa_string.C [autoptr] 1.172.2.6:
                   8210:        * src/types/pa_value.C [autoptr] 1.9.2.2:
                   8211:        * src/types/pa_value.h [autoptr] 1.109.2.3:
                   8212:        * src/types/pa_vhash.h [autoptr] 1.43.2.2:
                   8213:        * src/types/pa_vint.h [autoptr] 1.38.2.2:
                   8214:        * src/types/pa_vstateless_class.h [autoptr] 1.42.2.2:
                   8215:        * src/types/pa_wcontext.C [autoptr] 1.24.2.1:
                   8216:        * src/types/pa_wcontext.h [autoptr] 1.42.2.1:
                   8217:                wcontext compiled
                   8218: 
                   8219:        * src/include/pa_exception.h [autoptr] 1.38.2.6:
                   8220:        * src/include/pa_sql_connection.h [autoptr] 1.30.2.3:
                   8221:        * src/include/pa_sql_driver_manager.h [autoptr] 1.26.2.3:
                   8222:        * src/include/pa_string.h [autoptr] 1.144.2.8:
                   8223:        * src/main/pa_common.C [autoptr] 1.143.2.6:
                   8224:        * src/main/pa_exec.C [autoptr] 1.48.2.1:
                   8225:        * src/main/pa_sql_driver_manager.C [autoptr] 1.69.2.3:
                   8226:        * src/sql/pa_sql_driver.h [autoptr] 1.34.2.1:
                   8227:                paused on sql_manager
                   8228: 
                   8229:        * src/classes/op.C [autoptr] 1.127.2.3:
                   8230:        * src/include/pa_globals.h [autoptr] 1.101.2.4:
                   8231:        * src/include/pa_hash.h [autoptr] 1.58.2.8:
                   8232:        * src/include/pa_sql_connection.h [autoptr] 1.30.2.1:
                   8233:        * src/include/pa_sql_driver_manager.h [autoptr] 1.26.2.1:
                   8234:        * src/include/pa_table.h [autoptr] 1.48.2.5:
                   8235:        * src/main/pa_sql_driver_manager.C [autoptr] 1.69.2.1:
                   8236:        * src/main/pa_table.C [autoptr] 1.53.2.4:
                   8237:                table compiled
                   8238: 
                   8239:        * src/include/pa_pool.h [autoptr] 1.86.2.10:
                   8240:        * src/main/pa_common.C [autoptr] 1.143.2.5:
                   8241:                common compiled
                   8242: 
                   8243:        * src/include/pa_cache_managers.h [autoptr] 1.9.2.1:
                   8244:        * src/main/pa_cache_managers.C [autoptr] 1.7.2.1:
                   8245:                cache_managers compiled
                   8246: 
                   8247:        * src/include/pa_cache_managers.h [autoptr] 1.9.2.2:
                   8248:        * src/include/pa_pool.h [autoptr] 1.86.2.12:
                   8249:        * src/include/pa_sql_connection.h [autoptr] 1.30.2.2:
                   8250:        * src/include/pa_sql_driver_manager.h [autoptr] 1.26.2.2:
                   8251:        * src/include/pa_stack.h [autoptr] 1.17.2.1:
                   8252:        * src/main/pa_sql_driver_manager.C [autoptr] 1.69.2.2:
                   8253:        * src/types/pa_vtable.h [autoptr] 1.48.2.1:
                   8254:        * src/types/pa_vvoid.h [autoptr] 1.17.2.1:
                   8255:                vtable compiled
                   8256: 
                   8257:        * src/include/pa_array.h [autoptr] 1.57.2.10:
                   8258:        * src/include/pa_charset.h [autoptr] 1.20.2.2:
                   8259:        * src/include/pa_pool.h [autoptr] 1.86.2.11:
                   8260:        * src/main/pa_charset.C [autoptr] 1.33.2.1:
                   8261:                charset compiled
                   8262: 
                   8263: 2003-01-24  paf
                   8264:        * src/classes/classes.C [autoptr] 1.18.2.1:
                   8265:        * src/classes/classes.h [autoptr] 1.23.2.1:
                   8266:        * src/include/pa_array.h [autoptr] 1.57.2.8:
                   8267:        * src/include/pa_common.h [autoptr] 1.89.2.3:
                   8268:        * src/include/pa_globals.h [autoptr] 1.101.2.3:
                   8269:        * src/include/pa_hash.h [autoptr] 1.58.2.6:
                   8270:        * src/include/pa_pool.h [autoptr] 1.86.2.8:
                   8271:        * src/include/pa_string.h [autoptr] 1.144.2.6:
                   8272:        * src/main/pa_common.C [autoptr] 1.143.2.3:
                   8273:        * src/main/pa_globals.C [autoptr] 1.152.2.3:
                   8274:        * src/main/pa_string.C [autoptr] 1.172.2.5:
                   8275:        * src/types/pa_value.h [autoptr] 1.109.2.2:
                   8276:        * src/types/pa_vbool.h [autoptr] 1.21.2.1:
                   8277:        * src/types/pa_vdouble.h [autoptr] 1.42.2.1:
                   8278:        * src/types/pa_vhash.h [autoptr] 1.43.2.1:
                   8279:        * src/types/pa_vint.h [autoptr] 1.38.2.1:
                   8280:        * src/types/pa_vjunction.h [autoptr] 1.19.2.1:
                   8281:        * src/types/pa_vstateless_class.h [autoptr] 1.42.2.1:
                   8282:        * src/types/pa_vstateless_object.h [autoptr] 1.28.2.1:
                   8283:        * src/types/pa_vstatus.h [autoptr] 1.15.2.1:
                   8284:        * src/types/pa_vstring.h [autoptr] 1.54.2.1:
                   8285:                more patched
                   8286: 
                   8287:        * src/classes/op.C [autoptr] 1.127.2.2:
                   8288:        * src/include/pa_array.h [autoptr] 1.57.2.7:
                   8289:        * src/include/pa_exception.h [autoptr] 1.38.2.5:
                   8290:        * src/include/pa_hash.h [autoptr] 1.58.2.5:
                   8291:        * src/include/pa_pool.h [autoptr] 1.86.2.7:
                   8292:        * src/include/pa_string.h [autoptr] 1.144.2.5:
                   8293:        * src/include/pa_table.h [autoptr] 1.48.2.4:
                   8294:        * src/main/pa_dictionary.C [autoptr] 1.17.2.2:
                   8295:        * src/main/pa_exception.C [autoptr] 1.43.2.5:
                   8296:        * src/main/pa_string.C [autoptr] 1.172.2.4:
                   8297:        * src/main/pa_table.C [autoptr] 1.53.2.3:
                   8298:                string compiled
                   8299: 
                   8300:        * src/include/pa_array.h [autoptr] 1.57.2.6:
                   8301:        * src/include/pa_common.h [autoptr] 1.89.2.2:
                   8302:        * src/include/pa_dictionary.h [autoptr] 1.13.2.2:
                   8303:        * src/include/pa_exception.h [autoptr] 1.38.2.4:
                   8304:        * src/include/pa_pool.h [autoptr] 1.86.2.6:
                   8305:        * src/include/pa_string.h [autoptr] 1.144.2.4:
                   8306:        * src/include/pa_table.h [autoptr] 1.48.2.3:
                   8307:        * src/main/pa_common.C [autoptr] 1.143.2.2:
                   8308:        * src/main/pa_dictionary.C [autoptr] 1.17.2.1:
                   8309:        * src/main/pa_exception.C [autoptr] 1.43.2.4:
                   8310:        * src/main/pa_string.C [autoptr] 1.172.2.3:
                   8311:                dictionary compiled
                   8312: 
                   8313: 2003-01-23  paf
                   8314:        * src/include/pa_array.h [autoptr] 1.57.2.4:
                   8315:        * src/include/pa_exception.h [autoptr] 1.38.2.2:
                   8316:        * src/include/pa_hash.h [autoptr] 1.58.2.4:
                   8317:        * src/include/pa_pool.h [autoptr] 1.86.2.4:
                   8318:        * src/include/pa_table.h [autoptr] 1.48.2.2:
                   8319:        * src/main/pa_exception.C [autoptr] 1.43.2.2:
                   8320:        * src/main/pa_table.C [autoptr] 1.53.2.2:
                   8321:                table compiled
                   8322: 
                   8323:        * src/include/pa_array.h [autoptr] 1.57.2.2:
                   8324:        * src/include/pa_hash.h [autoptr] 1.58.2.2:
                   8325:        * src/include/pa_pool.h [autoptr] 1.86.2.2:
                   8326:        * src/main/main.dsp [autoptr] 1.161.6.1:
                   8327:                continued with Hash
                   8328: 
                   8329:        * src/include/pa_array.h [autoptr] 1.57.2.5:
                   8330:        * src/include/pa_common.h [autoptr] 1.89.2.1:
                   8331:        * src/include/pa_exception.h [autoptr] 1.38.2.3:
                   8332:        * src/include/pa_globals.h [autoptr] 1.101.2.2:
                   8333:        * src/include/pa_pool.h [autoptr] 1.86.2.5:
                   8334:        * src/include/pa_request.h [autoptr] 1.160.2.1:
                   8335:        * src/include/pa_string.h [autoptr] 1.144.2.3:
                   8336:        * src/main/pa_common.C [autoptr] 1.143.2.1:
                   8337:        * src/main/pa_exception.C [autoptr] 1.43.2.3:
                   8338:        * src/main/pa_globals.C [autoptr] 1.152.2.2:
                   8339:        * src/types/pa_value.C [autoptr] 1.9.2.1:
                   8340:        * src/types/pa_value.h [autoptr] 1.109.2.1:
                   8341:                resurrected pool in new sense: now it's factory, producing
                   8342:                accounting memory chunks for read[autofree] buffers
                   8343: 
                   8344:        * src/classes/image.C [autoptr] 1.90.2.1:
                   8345:        * src/classes/op.C [autoptr] 1.127.2.1:
                   8346:        * src/include/pa_array.h [autoptr] 1.57.2.3:
                   8347:        * src/include/pa_exception.h [autoptr] 1.38.2.1:
                   8348:        * src/include/pa_globals.h [autoptr] 1.101.2.1:
                   8349:        * src/include/pa_hash.h [autoptr] 1.58.2.3:
                   8350:        * src/include/pa_pool.h [autoptr] 1.86.2.3:
                   8351:        * src/include/pa_pragma_pack_begin.h [autoptr] 1.6.2.1:
                   8352:        * src/include/pa_pragma_pack_end.h [autoptr] 1.6.2.1:
                   8353:        * src/include/pa_sapi.h [autoptr] 1.22.2.1:
                   8354:        * src/include/pa_string.h [autoptr] 1.144.2.2:
                   8355:        * src/include/pa_table.h [autoptr] 1.48.2.1:
                   8356:        * src/include/pa_types.h [autoptr] 1.44.2.1:
                   8357:        * src/main/pa_exception.C [autoptr] 1.43.2.1:
                   8358:        * src/main/pa_globals.C [autoptr] 1.152.2.1:
                   8359:        * src/main/pa_string.C [autoptr] 1.172.2.2:
                   8360:        * src/main/pa_table.C [autoptr] 1.53.2.1:
                   8361:                aint that easy
                   8362: 
                   8363:        * src/main/pa_common.C 1.144:
                   8364:                connect_string allocated on heap[wes on stack] now. and exception can be reported OK now [can be reported outside of pro
                   8365:                c with that stack]
                   8366: 
                   8367:        * src/lib/pcre/8859-1.ucm 1.1:
                   8368:                file 8859-1.ucm was initially added on branch autoptr.
                   8369: 
                   8370: 2003-01-22  paf
                   8371:        * src/include/pa_array.h [autoptr] 1.57.2.1:
                   8372:        * src/include/pa_charset.h [autoptr] 1.20.2.1:
                   8373:        * src/include/pa_dictionary.h [autoptr] 1.13.2.1:
                   8374:        * src/include/pa_hash.h [autoptr] 1.58.2.1:
                   8375:        * src/include/pa_pool.h [autoptr] 1.86.2.1:
                   8376:        * src/include/pa_string.h [autoptr] 1.144.2.1:
                   8377:        * src/main/pa_array.C [autoptr] 1.54.2.1:
                   8378:        * src/main/pa_hash.C [autoptr] 1.53.2.1:
                   8379:        * src/main/pa_pool.C [autoptr] 1.59.2.1:
                   8380:        * src/main/pa_string.C [autoptr] 1.172.2.1:
                   8381:                started auto_ptr.
                   8382:                PA_Object is base: contains references_count.
                   8383:                auto_ptr template calls add_ref/release
                   8384: 
                   8385: 2003-01-21  paf
                   8386:        * src/classes/classes.C 1.18:
                   8387:        * src/classes/classes.h 1.23:
                   8388:        * src/classes/date.C 1.42:
                   8389:        * src/classes/double.C 1.53:
                   8390:        * src/classes/file.C 1.107:
                   8391:        * src/classes/form.C 1.34:
                   8392:        * src/classes/hash.C 1.54:
                   8393:        * src/classes/image.C 1.90:
                   8394:        * src/classes/int.C 1.49:
                   8395:        * src/classes/mail.C 1.88:
                   8396:        * src/classes/math.C 1.24:
                   8397:        * src/classes/op.C 1.127:
                   8398:        * src/classes/response.C 1.23:
                   8399:        * src/classes/string.C 1.125:
                   8400:        * src/classes/table.C 1.172:
                   8401:        * src/classes/void.C 1.28:
                   8402:        * src/classes/xdoc.C 1.108:
                   8403:        * src/classes/xnode.C 1.54:
                   8404:        * src/classes/xnode.h 1.18:
                   8405:        * src/include/pa_array.h 1.57:
                   8406:        * src/include/pa_cache_managers.h 1.9:
                   8407:        * src/include/pa_charset.h 1.20:
                   8408:        * src/include/pa_charsets.h 1.8:
                   8409:        * src/include/pa_common.h 1.89:
                   8410:        * src/include/pa_config_fixed.h 1.54:
                   8411:        * src/include/pa_config_includes.h 1.23:
                   8412:        * src/include/pa_dictionary.h 1.13:
                   8413:        * src/include/pa_dir.h 1.13:
                   8414:        * src/include/pa_exception.h 1.38:
                   8415:        * src/include/pa_exec.h 1.11:
                   8416:        * src/include/pa_globals.h 1.101:
                   8417:        * src/include/pa_hash.h 1.58:
                   8418:        * src/include/pa_opcode.h 1.24:
                   8419:        * src/include/pa_pool.h 1.86:
                   8420:        * src/include/pa_pragma_pack_begin.h 1.6:
                   8421:        * src/include/pa_pragma_pack_end.h 1.6:
                   8422:        * src/include/pa_request.h 1.160:
                   8423:        * src/include/pa_sapi.h 1.22:
                   8424:        * src/include/pa_socks.h 1.11:
                   8425:        * src/include/pa_sql_connection.h 1.30:
                   8426:        * src/include/pa_sql_driver_manager.h 1.26:
                   8427:        * src/include/pa_stack.h 1.17:
                   8428:        * src/include/pa_string.h 1.144:
                   8429:        * src/include/pa_stylesheet_connection.h 1.32:
                   8430:        * src/include/pa_stylesheet_manager.h 1.15:
                   8431:        * src/include/pa_table.h 1.48:
                   8432:        * src/include/pa_threads.h 1.26:
                   8433:        * src/include/pa_types.h 1.44:
                   8434:        * src/include/pa_uue.h 1.4:
                   8435:        * src/lib/md5/pa_md5.h 1.5:
                   8436:        * src/lib/md5/pa_md5c.c 1.6:
                   8437:        * src/lib/pcre/pcre_parser_ctype.c 1.3:
                   8438:        * src/main/compile.C 1.69:
                   8439:        * src/main/compile.tab.C 1.80:
                   8440:        * src/main/compile.y 1.204:
                   8441:        * src/main/compile_tools.C 1.54:
                   8442:        * src/main/compile_tools.h 1.67:
                   8443:        * src/main/execute.C 1.295:
                   8444:        * src/main/pa_array.C 1.54:
                   8445:        * src/main/pa_cache_managers.C 1.7:
                   8446:        * src/main/pa_charset.C 1.33:
                   8447:        * src/main/pa_charsets.C 1.11:
                   8448:        * src/main/pa_common.C 1.143:
                   8449:        * src/main/pa_dictionary.C 1.17:
                   8450:        * src/main/pa_dir.C 1.14:
                   8451:        * src/main/pa_exception.C 1.43:
                   8452:        * src/main/pa_exec.C 1.48:
                   8453:        * src/main/pa_globals.C 1.152:
                   8454:        * src/main/pa_hash.C 1.53:
                   8455:        * src/main/pa_pool.C 1.59:
                   8456:        * src/main/pa_request.C 1.245:
                   8457:        * src/main/pa_socks.C 1.18:
                   8458:        * src/main/pa_sql_driver_manager.C 1.69:
                   8459:        * src/main/pa_string.C 1.172:
                   8460:        * src/main/pa_stylesheet_manager.C 1.16:
                   8461:        * src/main/pa_table.C 1.53:
                   8462:        * src/main/pa_uue.C 1.4:
                   8463:        * src/main/untaint.C 1.115:
                   8464:        * src/sql/pa_sql_driver.h 1.34:
                   8465:        * src/targets/apache13/mod_parser3.C 1.28:
                   8466:        * src/targets/apache13/pa_md5c.c 1.5:
                   8467:        * src/targets/apache13/pa_pool.C 1.8:
                   8468:        * src/targets/apache13/pa_threads.C 1.11:
                   8469:        * src/targets/cgi/pa_pool.C 1.41:
                   8470:        * src/targets/cgi/pa_threads.C 1.12:
                   8471:        * src/targets/cgi/parser3.C 1.216:
                   8472:        * src/targets/cgi/pool_storage.h 1.13:
                   8473:        * src/targets/isapi/pa_pool.C 1.16:
                   8474:        * src/targets/isapi/pa_threads.C 1.13:
                   8475:        * src/targets/isapi/parser3isapi.C 1.82:
                   8476:        * src/targets/isapi/pool_storage.h 1.19:
                   8477:        * src/types/pa_value.C 1.9:
                   8478:        * src/types/pa_value.h 1.109:
                   8479:        * src/types/pa_vbool.h 1.21:
                   8480:        * src/types/pa_vclass.C 1.16:
                   8481:        * src/types/pa_vclass.h 1.39:
                   8482:        * src/types/pa_vcode_frame.h 1.24:
                   8483:        * src/types/pa_vcookie.C 1.55:
                   8484:        * src/types/pa_vcookie.h 1.23:
                   8485:        * src/types/pa_vdate.h 1.24:
                   8486:        * src/types/pa_vdouble.h 1.42:
                   8487:        * src/types/pa_venv.h 1.28:
                   8488:        * src/types/pa_vfile.C 1.36:
                   8489:        * src/types/pa_vfile.h 1.52:
                   8490:        * src/types/pa_vform.C 1.74:
                   8491:        * src/types/pa_vform.h 1.45:
                   8492:        * src/types/pa_vhash.h 1.43:
                   8493:        * src/types/pa_vimage.C 1.22:
                   8494:        * src/types/pa_vimage.h 1.34:
                   8495:        * src/types/pa_vint.h 1.38:
                   8496:        * src/types/pa_vjunction.h 1.19:
                   8497:        * src/types/pa_vmail.C 1.40:
                   8498:        * src/types/pa_vmail.h 1.9:
                   8499:        * src/types/pa_vmath.h 1.14:
                   8500:        * src/types/pa_vmethod_frame.h 1.45:
                   8501:        * src/types/pa_vobject.C 1.12:
                   8502:        * src/types/pa_vobject.h 1.38:
                   8503:        * src/types/pa_vrequest.C 1.27:
                   8504:        * src/types/pa_vrequest.h 1.25:
                   8505:        * src/types/pa_vresponse.C 1.17:
                   8506:        * src/types/pa_vresponse.h 1.32:
                   8507:        * src/types/pa_vstateless_class.C 1.19:
                   8508:        * src/types/pa_vstateless_class.h 1.42:
                   8509:        * src/types/pa_vstateless_object.h 1.28:
                   8510:        * src/types/pa_vstatus.C 1.15:
                   8511:        * src/types/pa_vstatus.h 1.15:
                   8512:        * src/types/pa_vstring.C 1.22:
                   8513:        * src/types/pa_vstring.h 1.54:
                   8514:        * src/types/pa_vtable.C 1.21:
                   8515:        * src/types/pa_vtable.h 1.48:
                   8516:        * src/types/pa_vvoid.h 1.17:
                   8517:        * src/types/pa_vxdoc.C 1.23:
                   8518:        * src/types/pa_vxdoc.h 1.31:
                   8519:        * src/types/pa_vxnode.C 1.30:
                   8520:        * src/types/pa_vxnode.h 1.22:
                   8521:        * src/types/pa_wcontext.C 1.24:
                   8522:        * src/types/pa_wcontext.h 1.42:
                   8523:        * src/types/pa_wwrapper.h 1.28:
                   8524:                2002->2003
                   8525: 
                   8526: 2003-01-16  paf
                   8527:        * operators.txt 1.108:
                   8528:        * src/include/pa_config_fixed.h 1.53:
                   8529:        * src/main/pa_common.C 1.141:
                   8530:        * www/htdocs/index.html 1.208:
                   8531:                http request now return status. and not fail on status!=200
                   8532: 
                   8533:        * operators.txt 1.109:
                   8534:        * src/include/pa_globals.h 1.100:
                   8535:        * src/main/pa_common.C 1.142:
                   8536:        * src/main/pa_globals.C 1.151:
                   8537:        * www/htdocs/index.html 1.209:
                   8538:                http://
                   8539:                introducing
                   8540:                        $.any-status(1)
                   8541: 
                   8542:        * www/htdocs/index.html 1.210:
                   8543:                image.copy fixed transparent resampling
                   8544: 
                   8545:        * bin/Makefile.in 1.9:
                   8546:        * etc/Makefile.in 1.14:
                   8547:        * etc/parser3.charsets/Makefile.in 1.17:
                   8548:        * src/Makefile.in 1.55:
                   8549:        * src/classes/Makefile.in 1.53:
                   8550:        * src/include/Makefile.in 1.11:
                   8551:        * src/lib/Makefile.in 1.8:
                   8552:        * src/lib/md5/Makefile.in 1.6:
                   8553:        * src/lib/patches/Makefile.in 1.10:
                   8554:        * src/lib/pcre/Makefile.in 1.8:
                   8555:        * src/main/Makefile.in 1.50:
                   8556:        * src/sql/Makefile.in 1.11:
                   8557:        * src/targets/Makefile.in 1.42:
                   8558:        * src/targets/cgi/Makefile.in 1.62:
                   8559:        * src/targets/isapi/Makefile.in 1.11:
                   8560:        * src/types/Makefile.in 1.50:
                   8561:                proper AC_LANG_ switching to fix qsort detection bug
                   8562: 
                   8563: 2003-01-15  paf
                   8564:        * src/main/pa_globals.C 1.150:
                   8565:                localized pa_xmlFileRead/Close
                   8566: 
                   8567: 2003-01-14  paf
                   8568:        * src/lib/ltdl/config.guess 1.2:
                   8569:        * src/lib/ltdl/config.sub 1.2:
                   8570:        * src/lib/ltdl/install-sh 1.2:
                   8571:        * src/lib/ltdl/missing 1.2:
                   8572:        * src/lib/ltdl/mkinstalldirs 1.2:
                   8573:                removed some ancient files [they in / really]
                   8574: 
                   8575:        * src/lib/ltdl/config_fixed.h 1.2:
                   8576:        * src/lib/ltdl/libltdl.dsp 1.3:
                   8577:        * src/lib/ltdl/ltdl.c 1.3:
                   8578:                ltdl.c regretfully needed patch in two places.
                   8579:                in config_fixed.h made stubs for lib to compile in MSVC
                   8580: 
                   8581:        * src/lib/ltdl/aclocal.m4 1.1:
                   8582:                *** empty log message ***
                   8583: 
                   8584: 2003-01-13  paf
                   8585:        * config.guess 1.3:
                   8586:        * config.sub 1.4:
                   8587:        * ltmain.sh 1.4:
                   8588:        * src/targets/apache13/Makefile.in 1.44:
                   8589:                removed last piece of configure.in(libtool) hacks
                   8590: 
                   8591:        * src/lib/ltdl/COPYING.LIB 1.1:
                   8592:        * src/lib/ltdl/Makefile.in 1.4:
                   8593:        * src/lib/ltdl/acinclude.m4 1.2:
                   8594:        * src/lib/ltdl/config.h 1.2:
                   8595:        * src/lib/ltdl/config_auto.h.in 1.3:
                   8596:        * src/lib/ltdl/configure 1.4:
                   8597:        * src/lib/ltdl/configure.in 1.4:
                   8598:        * src/lib/ltdl/libltdl.dsp 1.2:
                   8599:        * src/lib/ltdl/ltdl.c 1.2:
                   8600:        * src/lib/ltdl/ltdl.h 1.2:
                   8601:                moved to latest libtool (1.4.3)
                   8602: 
                   8603: 2003-01-10  paf
                   8604:        * src/lib/patches/Makefile.am 1.3:
                   8605:        * src/lib/patches/Makefile.in 1.9:
                   8606:        * src/lib/patches/libgdome_cpp_syntax1.patch 1.2:
                   8607:        * src/lib/patches/libgdome_cpp_syntax2.patch 1.2:
                   8608:        * src/lib/patches/libgdome_morestatic.patch 1.2:
                   8609:        * src/lib/patches/libxml_error_column_tab.patch 1.2:
                   8610:        * src/lib/patches/libxml_htmloutput_of_xslemptyattr_emptyquotes.patch 1.2:
                   8611:        * src/lib/patches/libxml_transcoder_context1.patch 1.2:
                   8612:        * src/lib/patches/libxml_transcoder_context2.patch 1.2:
                   8613:        * src/lib/patches/libxml_transcoder_context3.patch 1.2:
                   8614:        * src/lib/patches/libxml_transcoder_context4.patch 1.2:
                   8615:        * src/lib/patches/libxslt_html_output_no_charset_meta.patch 1.2:
                   8616:        * src/main/pa_globals.C 1.149:
                   8617:                moved to latest xml lib versions, changed patches.
                   8618:                      libxml2 >= 2.5.1 [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz]
                   8619:                      libxslt >= 1.0.23 [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz]
                   8620:                      gdome2 >= 0.7.2 [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
                   8621: 
                   8622:        * INSTALL 1.31:
                   8623:                moved to latest versions of xml libs
                   8624:                      libxml2 >= 2.5.1 [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz]
                   8625:                      libxslt >= 1.0.23 [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz]
                   8626:                      gdome2 >= 0.7.2 [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
                   8627: 
                   8628:        * src/lib/patches/libxml2.patch 1.1:
                   8629:                moved to libxml2 2.5.1, only these patches left:
                   8630:                * fixing \t chars to spaces in error position reporting
                   8631:                * adding context to conversion functions
                   8632: 
                   8633:        * src/lib/patches/gdome2.patch 1.1:
                   8634:                moved to gdome 0.7.2, one extern const patch left; making some strings more static  still needed.
                   8635:                Paolo said that he would incorporate this patch in upcoming version of gdome.
                   8636: 
                   8637:        * src/lib/ltdl/configure 1.3:
                   8638:        * src/lib/ltdl/configure.in 1.3:
                   8639:                PROG_NM
                   8640: 
                   8641:        * src/lib/patches/libxslt.patch 1.1:
                   8642:                moved to libxslt 1.0.23. still need a patch which suppresses
                   8643:                htmlSetMetaEncoding calls
                   8644: 
                   8645: 2003-01-09  paf
                   8646:        * bin/Makefile.in 1.8:
                   8647:        * config.guess 1.2:
                   8648:        * config.sub 1.3:
                   8649:        * etc/Makefile.in 1.13:
                   8650:        * etc/parser3.charsets/Makefile.in 1.16:
                   8651:        * missing 1.2:
                   8652:        * mkinstalldirs 1.2:
                   8653:        * src/Makefile.in 1.54:
                   8654:        * src/classes/Makefile.in 1.52:
                   8655:        * src/include/Makefile.in 1.10:
                   8656:        * src/include/pa_config_auto.h.in 1.37:
                   8657:        * src/lib/Makefile.in 1.7:
                   8658:        * src/lib/ltdl/Makefile.in 1.3:
                   8659:        * src/lib/ltdl/config_auto.h.in 1.2:
                   8660:        * src/lib/ltdl/configure 1.2:
                   8661:        * src/lib/ltdl/configure.in 1.2:
                   8662:        * src/lib/md5/Makefile.in 1.5:
                   8663:        * src/lib/patches/Makefile.in 1.8:
                   8664:        * src/lib/pcre/Makefile.in 1.7:
                   8665:        * src/main/Makefile.in 1.49:
                   8666:        * src/sql/Makefile.in 1.10:
                   8667:        * src/targets/Makefile.in 1.41:
                   8668:        * src/targets/apache13/Makefile.in 1.43:
                   8669:        * src/targets/cgi/Makefile.am 1.46:
                   8670:        * src/targets/cgi/Makefile.in 1.61:
                   8671:        * src/targets/isapi/Makefile.in 1.10:
                   8672:        * src/types/Makefile.in 1.49:
                   8673:                moved to autoconf 2.57 & automake 1.7.2
                   8674: 
                   8675:        * depcomp 1.1:
                   8676:                moving to automake 1.7.2
                   8677: 
                   8678:        * INSTALL 1.30:
                   8679:                xml,xslt,gdome lib urls updated
                   8680: 
                   8681:        * Makefile.am 1.30:
                   8682:        * Makefile.in 1.44:
                   8683:        * src/lib/ltdl/missing 1.1:
                   8684:        * src/lib/ltdl/mkinstalldirs 1.1:
                   8685:                *** empty log message ***
                   8686: 
1.21      paf      8687: 2002-12-27  paf
                   8688:        * src/doc/aliased.dox 1.5:
                   8689:        * src/doc/index.dox 1.4:
                   8690:        * src/doc/module.dox 1.4:
                   8691:        * src/doc/pooled.dox 1.4:
                   8692:        * www/htdocs/index.html 1.207:
                   8693:                removed outdated parts, made links to language docs
                   8694: 
                   8695:        * src/include/pa_version.h [release_3_0_0007] 1.7.10.1:
                   8696:                0007
                   8697: 
                   8698:        * src/include/pa_config_auto.h.in 1.36:
                   8699:                comment
                   8700: 
                   8701: 2002-12-26  paf
                   8702:        * INSTALL 1.29:
                   8703:        * src/include/pa_config_auto.h.in 1.35:
                   8704:        * src/main/pa_common.C 1.140:
                   8705:        * src/main/pa_exec.C 1.47:
                   8706:                changing SAFE_MODE politics
                   8707: 
                   8708:        * src/classes/file.C 1.106:
                   8709:                file:fullpath[a.gif] when document root did not contain
                   8710:                trailing / fixed.
                   8711: 
                   8712: 2002-12-25  paf
                   8713:        * src/main/pa_globals.C 1.147:
                   8714:                optimized-as-is
                   8715: 
                   8716:        * src/main/pa_globals.C 1.148:
                   8717:                optimized-xml
                   8718: 
                   8719: 2002-12-24  paf
                   8720:        * src/main/pa_common.C 1.139:
                   8721:        * src/main/pa_pool.C 1.58:
                   8722:                pool::copy on zero size|ptr fixed [were really called with zero
                   8723:                size when .html?a=&b=]
                   8724: 
                   8725:        * src/main/pa_exec.C 1.46:
                   8726:        * www/htdocs/index.html 1.206:
                   8727:                fork/pipe error now [old always-pipe-error fixed]
                   8728: 
                   8729:        * src/classes/mail.C 1.86:
                   8730:                $MAIL in @conf now invalid when configured with --with-sendmail
                   8731: 
                   8732: 2002-12-23  paf
                   8733:        * src/types/pa_vcookie.C 1.54:
                   8734:                cookie:field[put value] fixed [were ignoring parameters & were
                   8735:                storing only string with default expires
                   8736: 
                   8737:        * src/main/pa_charset.C 1.32:
                   8738:                From: "Victor Fedoseev" <vvf_ru@mail.ru>
                   8739:                To: "Alexandr Petrosian (PAF)" <PAF@design.ru>
                   8740:                Sent: Monday, December 23, 2002 4:22 AM
                   8741:                Subject: bug â Charset::transcode_buf2xchar
                   8742: 
                   8743: 2002-12-20  paf
                   8744:        * src/targets/cgi/parser3.C 1.215:
                   8745:                removed last \n appending in non-win32 non-cgi [script] runs
                   8746: 
                   8747: 2002-12-19  paf
                   8748:        * operators.txt 1.107:
                   8749:        * src/include/pa_globals.h 1.99:
                   8750:        * src/include/pa_request.h 1.159:
                   8751:        * src/main/pa_globals.C 1.146:
                   8752:        * src/main/pa_request.C 1.244:
                   8753:        * www/htdocs/index.html 1.205:
                   8754:                $response:download
                   8755: 
                   8756:        * src/classes/mail.C 1.85:
                   8757:                'to' check bugfix [now checked only on ms compiler [win32]].
                   8758: 
                   8759:        * INSTALL 1.28:
                   8760:                --without-iconv recommended [it crashes on some systems [tested on elik]]
                   8761:                moreover, it's not needed there [parser registers charsets itself]
                   8762: 
                   8763:        * INSTALL 1.27:
                   8764:                -without-iconv recommended [it crashes on some systems [tested
                   8765:                on elik]]
                   8766: 
                   8767: 2002-12-18  paf
                   8768:        * src/classes/xdoc.C 1.107:
                   8769:                doc->URL on xdoc.load set correctly now
                   8770: 
                   8771: 2002-12-17  paf
                   8772:        * src/targets/cgi/parser3.C [release_3_0_0006] 1.213.2.1:
                   8773:                1. on win32 in die: abort() reverted to exit(1)
                   8774:                2. more flexible iilegal call check
                   8775: 
                   8776:        * src/targets/cgi/parser3.C 1.214:
                   8777:                merged die&iis changes
                   8778: 
                   8779: 2002-12-16  paf
                   8780:        * src/main/untaint.C 1.114:
                   8781:                filespec russian small 'r' changed to latin 'p' bug fix
                   8782: 
                   8783:        * Makefile.in 1.38:
                   8784:                ltmain.sh silly required for stupid automake added
                   8785: 
                   8786:        * ltmain.sh 1.3:
                   8787:                *** empty log message ***
                   8788: 
                   8789:        * ltmain.sh [release_3_0_0006] 1.2.2.1:
                   8790:                some automakes silly insist on having this handy
                   8791: 
1.20      paf      8792: 2002-12-15  paf
1.21      paf      8793:        * src/main/untaint.C 1.113:
                   8794:                filespec russian small 'r' changed to latin 'p'
                   8795: 
                   8796:        * src/main/pa_common.C [release_3_0_0006] 1.137.2.1:
                   8797:                ftruncate having checked
                   8798: 
                   8799:        * src/main/compile.C [release_3_0_0006] 1.67.6.1:
                   8800:                removed warning
                   8801: 
1.20      paf      8802:        * configure.in [release_3_0_0006] 1.52.2.1:
                   8803:        * src/include/pa_version.h [release_3_0_0006] 1.7.8.1:
                   8804:                new version
                   8805: 
1.21      paf      8806:        * configure.in [release_3_0_0006] 1.52.2.2:
                   8807:        * src/include/pa_config_auto.h.in [release_3_0_0006] 1.33.2.1:
                   8808:                *** empty log message ***
                   8809: 
                   8810:        * configure.in 1.53:
                   8811:        * src/include/pa_config_auto.h.in 1.34:
                   8812:        * src/main/compile.C 1.68:
                   8813:        * src/main/pa_common.C 1.138:
                   8814:                merged small changes from branch 6 to HEAD
                   8815: 
1.20      paf      8816: 2002-12-14  paf
                   8817:        * src/sql/pa_sql_driver.h 1.33:
                   8818:        * www/htdocs/index.html 1.204:
                   8819:                exception type fixed
                   8820: 
                   8821:        * src/classes/table.C 1.171:
                   8822:                removed unnecessary code
                   8823: 
                   8824: 2002-12-09  paf
                   8825:        * src/classes/hash.C 1.53:
                   8826:        * src/classes/string.C 1.124:
                   8827:        * src/classes/table.C 1.170:
                   8828:        * src/classes/void.C 1.27:
                   8829:        * src/main/pa_sql_driver_manager.C 1.68:
                   8830:        * src/sql/pa_sql_driver.h 1.32:
                   8831:                changed exception handling mech in sql handlers #2
                   8832: 
                   8833:        * bin/Makefile.in 1.7:
                   8834:        * configure.in 1.52:
                   8835:        * etc/Makefile.in 1.12:
                   8836:        * etc/parser3.charsets/Makefile.in 1.15:
                   8837:        * src/Makefile.in 1.53:
                   8838:        * src/classes/Makefile.in 1.51:
                   8839:        * src/include/Makefile.in 1.9:
                   8840:        * src/lib/Makefile.in 1.6:
                   8841:        * src/lib/ltdl/Makefile.in 1.2:
                   8842:        * src/lib/md5/Makefile.in 1.4:
                   8843:        * src/lib/patches/Makefile.in 1.7:
                   8844:        * src/lib/pcre/Makefile.in 1.6:
                   8845:        * src/main/Makefile.in 1.48:
                   8846:        * src/sql/Makefile.in 1.9:
                   8847:        * src/targets/Makefile.in 1.40:
                   8848:        * src/targets/apache13/Makefile.in 1.42:
                   8849:        * src/targets/cgi/Makefile.in 1.60:
                   8850:        * src/targets/isapi/Makefile.in 1.9:
                   8851:        * src/types/Makefile.in 1.48:
                   8852:                removed configure.in:AC_LIBTOOL, it caused automake to write
                   8853:                makefile which used libtool to install things, which is not needed
                   8854: 
                   8855:        * src/targets/apache13/mod_parser3.C 1.27:
                   8856:        * src/targets/cgi/parser3.C 1.211:
                   8857:        * src/targets/cgi/parser3.C 1.212:
                   8858:        * src/targets/cgi/parser3.C 1.213:
                   8859:        * src/targets/isapi/parser3isapi.C 1.81:
                   8860:                ::die now tries to write core dump
                   8861: 
                   8862:        * src/types/pa_vvoid.h 1.16:
                   8863:        * www/htdocs/index.html 1.203:
                   8864:                $void.store[now] error
                   8865: 
                   8866:        * src/classes/hash.C 1.52:
                   8867:        * src/classes/string.C 1.123:
                   8868:        * src/classes/table.C 1.169:
                   8869:        * src/classes/void.C 1.26:
                   8870:        * src/main/pa_sql_driver_manager.C 1.66:
                   8871:        * src/main/pa_sql_driver_manager.C 1.67:
                   8872:        * src/sql/pa_sql_driver.h 1.29:
                   8873:        * src/sql/pa_sql_driver.h 1.30:
                   8874:        * src/sql/pa_sql_driver.h 1.31:
                   8875:                changed exception handling mech in sql handlers
                   8876: 
                   8877: 2002-12-06  paf
                   8878:        * operators.txt 1.106:
                   8879:        * src/main/compile.tab.C 1.78:
                   8880:        * src/types/pa_vhash.h 1.42:
                   8881:                $hash.fields -- pseudo field to make 'hash' more like 'table'
                   8882: 
                   8883: 2002-12-05  paf
                   8884:        * src/main/pa_array.C 1.53:
                   8885:        * src/main/pa_table.C 1.51:
                   8886:        * www/htdocs/index.html 1.199:
                   8887:                wow! found/fixed bug in lowlevel proc
                   8888: 
                   8889:        * src/main/pa_common.C 1.137:
                   8890:        * src/main/untaint.C 1.111:
                   8891:        * src/types/pa_vmail.C 1.38:
                   8892:        * www/htdocs/index.html 1.200:
                   8893:                mail header ',' allowed.
                   8894:                still bugs in smtp [only one receiptient works, cc, bcc ignored now, and MAILED ;)]
                   8895:                
                   8896:                [strncpy killed, memnchr used]
                   8897: 
                   8898:        * src/main/pa_table.C 1.52:
                   8899:                table-copy now current=0
                   8900: 
                   8901:        * src/targets/cgi/parser3.C 1.209:
                   8902:        * src/targets/cgi/parser3.C 1.210:
                   8903:                more checks on http://domain/parser.cgi start [maybe some
                   8904:                getenv returns "", checked that now
                   8905: 
                   8906:        * src/targets/cgi/parser3.C 1.208:
                   8907:        * www/htdocs/index.html 1.198:
                   8908:                error logging made unbuffered [so that out-of-mem errors
                   8909:                reached log]
                   8910: 
                   8911:        * src/main/main.dsp 1.161:
                   8912:                pa_version included into main.dsp
                   8913: 
                   8914:        * www/htdocs/index.html 1.196:
                   8915:                smtp line ends fixed. now \r\n [not \r]. some smtp servers [
                   8916:                win32] leave \n intact, and some clients [bat] fail to show
                   8917:                letter correctly
                   8918: 
                   8919:        * src/classes/mail.C 1.83:
                   8920:        * src/targets/cgi/parser3.C 1.207:
                   8921:        * src/types/pa_vmail.C 1.37:
                   8922:        * www/htdocs/index.html 1.197:
                   8923:                mail:send MIME-Version default
                   8924: 
                   8925:        * src/main/untaint.C 1.112:
                   8926:        * www/htdocs/index.html 1.201:
                   8927:                mail header closed properly
                   8928: 
                   8929:        * src/classes/mail.C 1.84:
                   8930:        * src/types/pa_vmail.C 1.39:
                   8931:        * src/types/pa_vmail.h 1.8:
                   8932:        * www/htdocs/index.html 1.202:
                   8933:                smtp cc/bcc OK now
                   8934: 
                   8935: 2002-12-04  paf
                   8936:        * gnu.dsp 1.3:
                   8937:                restored
                   8938: 
                   8939:        * src/types/pa_vform.C 1.73:
                   8940:                $form:field string value cut by premature 0
                   8941: 
                   8942:        * parser3.dsw 1.6:
                   8943:        * src/main/compile.tab.C 1.77:
                   8944:        * src/main/main.dsp 1.160:
                   8945:        * www/htdocs/.htaccess 1.12:
                   8946:        * www/htdocs/index.html 1.195:
                   8947:                lib/libltdl -> lib/ltdl Win32 changes. s
                   8948: 
                   8949:        * bin/Makefile.in 1.6:
                   8950:        * configure.in 1.51:
                   8951:        * etc/Makefile.in 1.11:
                   8952:        * etc/parser3.charsets/Makefile.in 1.14:
                   8953:        * gnu.dsp 1.2:
                   8954:        * src/Makefile.in 1.52:
                   8955:        * src/classes/Makefile.in 1.50:
                   8956:        * src/include/Makefile.in 1.8:
                   8957:        * src/lib/Makefile.am 1.3:
                   8958:        * src/lib/Makefile.in 1.5:
                   8959:        * src/lib/ltdl/Makefile.am 1.1:
                   8960:        * src/lib/ltdl/Makefile.in 1.1:
                   8961:        * src/lib/ltdl/README 1.1:
                   8962:        * src/lib/ltdl/acinclude.m4 1.1:
                   8963:        * src/lib/ltdl/config.guess 1.1:
                   8964:        * src/lib/ltdl/config.h 1.1:
                   8965:        * src/lib/ltdl/config.sub 1.1:
                   8966:        * src/lib/ltdl/config_auto.h.in 1.1:
                   8967:        * src/lib/ltdl/config_fixed.h 1.1:
                   8968:        * src/lib/ltdl/configure 1.1:
                   8969:        * src/lib/ltdl/configure.in 1.1:
                   8970:        * src/lib/ltdl/install-sh 1.1:
                   8971:        * src/lib/ltdl/libltdl.dsp 1.1:
                   8972:        * src/lib/ltdl/ltdl.c 1.1:
                   8973:        * src/lib/ltdl/ltdl.h 1.1:
                   8974:        * src/lib/md5/Makefile.in 1.3:
                   8975:        * src/lib/patches/Makefile.in 1.6:
                   8976:        * src/lib/pcre/Makefile.in 1.5:
                   8977:        * src/main/Makefile.in 1.47:
                   8978:        * src/sql/Makefile.in 1.8:
                   8979:        * src/targets/Makefile.in 1.39:
                   8980:        * src/targets/apache13/Makefile.in 1.41:
                   8981:        * src/targets/cgi/Makefile.in 1.59:
                   8982:        * src/targets/isapi/Makefile.in 1.8:
                   8983:        * src/types/Makefile.in 1.47:
                   8984:                src/lib/ltdl/Makefile now created with /configure, not ltdl/configure,
                   8985:                so it does have no problems with automake.
                   8986:                ltdl/configure AC_OUTPUT(Makefile<<removed)
                   8987: 
                   8988:        * src/classes/classes.awk 1.6:
                   8989:                more strict *.C$
                   8990: 
                   8991: 2002-12-02  paf
                   8992:        * operators.txt 1.105:
                   8993:                removed outdated status:db
                   8994: 
                   8995:        * src/classes/mail.C 1.82:
                   8996:        * src/include/pa_common.h 1.88:
                   8997:        * src/main/pa_common.C 1.136:
                   8998:        * src/main/pa_request.C 1.243:
                   8999:        * src/types/pa_vcookie.C 1.53:
                   9000:        * src/types/pa_vmail.C 1.36:
                   9001:        * www/htdocs/index.html 1.194:
                   9002:                http header lang of tainted parts becomes http-header
                   9003: 
1.19      paf      9004: 2002-11-29  paf
                   9005:        * src/include/pa_common.h 1.87:
                   9006:        * src/main/pa_common.C 1.135:
                   9007:        * src/types/pa_vresponse.C 1.16:
                   9008:        * src/types/pa_vresponse.h 1.31:
                   9009:        * www/htdocs/index.html 1.192:
                   9010:                http:// param values now handled exactly like $response:header values.
                   9011:                e.g. can be hash [can have subattributes] & contain date values.
                   9012: 
                   9013:        * operators.txt 1.104:
                   9014:        * src/classes/date.C 1.41:
                   9015:        * src/classes/image.C 1.89:
                   9016:        * www/htdocs/index.html 1.193:
                   9017:                exif dates now objects of type date
                   9018: 
                   9019:        * src/main/pa_common.C 1.133:
                   9020:        * www/htdocs/index.html 1.190:
                   9021:                http:// tainted partes now %xx
                   9022: 
                   9023:        * src/main/pa_common.C 1.134:
                   9024:        * www/htdocs/index.html 1.191:
                   9025:                http:// param values lang forced URI
                   9026: 
                   9027:        * src/classes/image.C 1.88:
                   9028:                file.seek removed [it were used in image.C only, and for parser user this  means that jpeg image has bad size in fragment's header]
                   9029:                now used image.format
                   9030: 
                   9031: 2002-11-28  paf
                   9032:        * src/classes/op.C 1.126:
                   9033:        * www/htdocs/index.html 1.185:
                   9034:                ^cache bug fixed.
                   9035:                stupid compiler allowed 'false' to go into (Hash *) parameter
                   9036: 
                   9037:        * src/classes/image.C 1.85:
                   9038:        * www/htdocs/index.html 1.186:
                   9039:                image.text now outputs one pixel HIGHER chars [one top
                   9040:                horizontal line of 1pixel height were missing]
                   9041: 
                   9042:        * www/htdocs/index.html 1.187:
                   9043:                regexp syntax xxx$ speed-up  experiments
                   9044: 
                   9045:        * operators.txt 1.102:
                   9046:                http.timeout
                   9047: 
                   9048:        * www/htdocs/font.gif 1.1:
                   9049:                *** empty log message ***
                   9050: 
                   9051:        * configure.in 1.50:
                   9052:                stopped double libltdl/Makefile generation
                   9053: 
                   9054:        * src/classes/image.C 1.87:
                   9055:        * www/htdocs/index.html 1.188:
                   9056:                image.length now counts interchar space. plus space after last char
                   9057: 
                   9058:        * www/htdocs/index.html 1.189:
                   9059:                doc samples
                   9060: 
                   9061:        * src/main/pa_string.C 1.171:
                   9062:                PCRE_DOLLAR_ENDONLY
                   9063: 
                   9064:        * src/classes/image.C 1.86:
                   9065:                ^image.font width measurer now scans full height [were -1]
                   9066: 
                   9067: 2002-11-27  paf
                   9068:        * src/classes/image.C 1.84:
                   9069:        * www/htdocs/index.html 1.183:
                   9070:                ^image.font << bad font file-size now properly reported
                   9071: 
                   9072:        * src/include/pa_globals.h 1.98:
                   9073:        * src/main/pa_globals.C 1.145:
                   9074:        * src/main/pa_request.C 1.242:
                   9075:        * src/types/pa_vmail.C 1.35:
                   9076:        * www/htdocs/index.html 1.184:
                   9077:                response:body[file]  if file nows it's name
                   9078:                now returns content-disposition: >>attachment<<
                   9079: 
1.18      paf      9080: 2002-11-26  paf
                   9081:        * operators.txt 1.101:
                   9082:        * src/main/pa_common.C 1.130:
                   9083:        * www/htdocs/index.html 1.182:
                   9084:                http:// response status!=200 made exception: http.status with
                   9085:                source=bad status#
                   9086: 
                   9087:        * src/main/pa_common.C 1.131:
                   9088:        * www/htdocs/.htaccess 1.11:
                   9089:                utf8 prefix ignored @read text
                   9090: 
                   9091:        * src/main/pa_request.C 1.241:
                   9092:                fixed lang in reponse header
                   9093: 
                   9094: 2002-11-25  paf
                   9095:        * operators.txt 1.99:
                   9096:        * src/main/pa_common.C 1.128:
                   9097:        * www/htdocs/index.html 1.181:
                   9098:                http fields now UPPERCASE
                   9099:                
                   9100:                $file[^file::load[http://there]]
                   9101:                $file.SERVER
                   9102: 
                   9103:        * configure.in 1.49:
                   9104:        * src/classes/image.C 1.83:
                   9105:        * src/include/pa_config_auto.h.in 1.33:
                   9106:        * src/include/pa_config_includes.h 1.22:
                   9107:        * src/main/Makefile.am 1.35:
                   9108:        * src/main/Makefile.in 1.46:
                   9109:        * src/main/pa_common.C 1.129:
                   9110:        * src/main/pa_globals.C 1.142:
                   9111:                http://
                   9112:                and image const void related probs fixed
                   9113: 
                   9114:        * operators.txt 1.98:
                   9115:        * src/classes/file.C 1.104:
                   9116:        * src/classes/table.C 1.168:
                   9117:        * src/classes/xdoc.C 1.105:
                   9118:        * src/include/pa_common.h 1.85:
                   9119:        * src/include/pa_globals.h 1.97:
                   9120:        * src/main/pa_common.C 1.126:
                   9121:        * src/main/pa_globals.C 1.141:
                   9122:        * src/main/pa_request.C 1.239:
                   9123:        * src/types/pa_vfile.C 1.35:
                   9124:        * src/types/pa_vfile.h 1.51:
                   9125:        * www/htdocs/index.html 1.179:
                   9126:                table/xdoc/file::load now understand http:// prefix and additional params, sample:
                   9127:                $rates[^xdoc::load[http://www.cbr.ru/scripts/XML_daily.asp?date_req=02/03/2002;
                   9128:                   $.USER-AGENT[parser3]
                   9129:                ]]
                   9130: 
                   9131:        * src/classes/file.C 1.105:
                   9132:        * src/classes/image.C 1.82:
                   9133:        * src/classes/xdoc.C 1.106:
                   9134:        * src/include/pa_common.h 1.86:
                   9135:        * src/main/pa_common.C 1.127:
                   9136:        * src/main/pa_request.C 1.240:
                   9137:        * www/htdocs/index.html 1.180:
                   9138:                checked http options [invalid onces now reported]
                   9139:                made default
                   9140:                user-agent: paf
                   9141: 
                   9142: 2002-11-22  paf
                   9143:        * operators.txt 1.97:
                   9144:        * src/classes/image.C 1.80:
                   9145:        * src/include/pa_globals.h 1.96:
                   9146:        * src/main/execute.C 1.294:
                   9147:        * src/main/pa_globals.C 1.140:
                   9148:        * src/types/pa_vimage.C 1.21:
                   9149:        * src/types/pa_vimage.h 1.33:
                   9150:        * www/htdocs/.htaccess 1.10:
                   9151:        * www/htdocs/index.html 1.178:
                   9152:                $image.exif support
                   9153:                $image.exif.DateTime & co
                   9154: 
                   9155: 2002-11-21  paf
                   9156:        * src/classes/image.C 1.78:
                   9157:                jpeg size measure fixed: were badly skipping EXIF information [
                   9158:                were big block and it's size were considered negative :(]
                   9159: 
                   9160:        * operators.txt 1.96:
                   9161:        * src/classes/image.C 1.77:
                   9162:        * src/include/pa_common.h 1.83:
                   9163:        * src/main/pa_common.C 1.123:
                   9164:        * src/types/pa_vmail.C 1.34:
                   9165:        * www/htdocs/index.html 1.177:
                   9166:                image.measure internals rewritten. no there's reader.seek, and all's ready for EXIF extraction
                   9167:                [now we fail to measure files with EXIF info]
                   9168: 
                   9169:        * src/main/pa_common.C 1.122:
                   9170:                O_TRUNCATE killed, ftruncate  used instead:
                   9171:                O_TRUNC truncates even exclusevely write-locked file [thanks to Igor Milyakov <virtan@rotabanner.com> for discovering]
                   9172: 
                   9173:        * src/main/pa_exec.C 1.44:
                   9174:        * src/main/untaint.C 1.110:
                   9175:                cstr(UL_UNSPECIFIED) [not _PASS_APPENDED)
                   9176: 
                   9177: 2002-11-20  paf
                   9178:        * src/main/pa_exec.C 1.41:
                   9179:                pa_exec: data written only if size>0
                   9180: 
                   9181:        * src/targets/cgi/parser3.C 1.205:
                   9182:                logging @signal += query_string
                   9183: 
                   9184:        * src/include/pa_config_fixed.h 1.52:
                   9185:        * src/main/pa_common.C 1.121:
                   9186:        * src/main/pa_exec.C 1.40:
                   9187:        * src/targets/cgi/parser3.C 1.200:
                   9188:                ^file:exec/cgi [pa_exec] pipe read errors now checked
                   9189: 
                   9190:        * src/main/pa_exec.C 1.43:
                   9191:                *** empty log message ***
                   9192: 
                   9193:        * operators.txt 1.95:
                   9194:        * src/classes/file.C 1.103:
                   9195:                ^file::exec/cgi[file;$.stdin[] << disable HTTP-POST repassing
                   9196: 
                   9197:        * src/include/pa_request.h 1.158:
                   9198:        * src/main/execute.C 1.293:
                   9199:        * src/main/pa_request.C 1.238:
                   9200:        * src/targets/cgi/parser3.C 1.201:
                   9201:                SIGUSR1 >> writes to error_log uri of currently processed document
                   9202:                SIGPIPE >> interrupts request processing [exception = DB rollback]
                   9203: 
                   9204:        * src/targets/cgi/parser3.C 1.203:
                   9205:                SIGNALS overriden @ main top
                   9206: 
                   9207:        * configure.in 1.48:
                   9208:        * src/include/pa_config_auto.h.in 1.32:
                   9209:        * src/include/pa_config_includes.h 1.21:
                   9210:        * src/main/pa_exec.C 1.42:
                   9211:        * src/targets/cgi/parser3.C 1.204:
                   9212:                comment
                   9213: 
                   9214: 2002-11-19  paf
                   9215:        * src/targets/cgi/parser3.C 1.199:
                   9216:                removed #ifdef WIN32 around check of CGI: Illegal call
                   9217: 
                   9218: 2002-11-01  paf
                   9219:        * src/main/execute.C 1.292:
                   9220:                comment
                   9221: 
                   9222: 2002-10-31  paf
                   9223:        * src/types/pa_vobject.C 1.11:
                   9224:        * src/types/pa_vstateless_object.h 1.27:
                   9225:                object put replaces static parent if any
                   9226: 
                   9227:        * src/main/execute.C 1.291:
                   9228:                found out why, checked that for now.
                   9229:                todo: find out a way for that user could do that
                   9230: 
                   9231:        * src/types/pa_vobject.C [global_static_self_fix] 1.9.4.2:
                   9232:        * src/types/pa_vstateless_class.C [global_static_self_fix] 1.17.4.2:
                   9233:                realized that one can't remember derivates in base class: there's so many of them.
                   9234:                also there can be no virtual method calls in static classes
                   9235: 
                   9236:        * src/classes/op.C 1.124:
                   9237:        * src/types/pa_value.h 1.107:
                   9238:        * src/types/pa_vobject.h 1.36:
                   9239:        * www/htdocs/base.p 1.4:
                   9240:        * www/htdocs/derived.p 1.22:
                   9241:        * www/htdocs/index.html 1.174:
                   9242:        * www/htdocs/operators.p 1.11:
                   9243:        * www/htdocs/some.p 1.2:
                   9244:                ^process[$caller.self]{...}
                   9245:                now compiles to last derived object part of that 'self'
                   9246: 
                   9247:        * src/classes/form.C [global_static_self_fix] 1.32.4.1:
                   9248:        * src/classes/mail.C [global_static_self_fix] 1.80.4.1:
                   9249:        * src/classes/op.C [global_static_self_fix] 1.124.2.1:
                   9250:        * src/classes/xnode.h [global_static_self_fix] 1.16.4.1:
                   9251:        * src/main/execute.C [global_static_self_fix] 1.289.2.1:
                   9252:        * src/main/pa_request.C [global_static_self_fix] 1.236.4.1:
                   9253:        * src/types/pa_value.h [global_static_self_fix] 1.107.2.1:
                   9254:        * src/types/pa_vclass.C [global_static_self_fix] 1.14.4.1:
                   9255:        * src/types/pa_vclass.h [global_static_self_fix] 1.37.4.1:
                   9256:        * src/types/pa_vcode_frame.h [global_static_self_fix] 1.22.4.1:
                   9257:        * src/types/pa_vcookie.C [global_static_self_fix] 1.51.4.1:
                   9258:        * src/types/pa_vcookie.h [global_static_self_fix] 1.21.4.1:
                   9259:        * src/types/pa_vdate.h [global_static_self_fix] 1.22.4.1:
                   9260:        * src/types/pa_venv.h [global_static_self_fix] 1.26.4.1:
                   9261:        * src/types/pa_vfile.h [global_static_self_fix] 1.49.4.1:
                   9262:        * src/types/pa_vform.C [global_static_self_fix] 1.70.4.1:
                   9263:        * src/types/pa_vform.h [global_static_self_fix] 1.43.4.1:
                   9264:        * src/types/pa_vhash.h [global_static_self_fix] 1.40.4.1:
                   9265:        * src/types/pa_vimage.h [global_static_self_fix] 1.31.4.1:
                   9266:        * src/types/pa_vmail.C [global_static_self_fix] 1.32.4.1:
                   9267:        * src/types/pa_vmail.h [global_static_self_fix] 1.6.4.1:
                   9268:        * src/types/pa_vmath.h [global_static_self_fix] 1.12.4.1:
                   9269:        * src/types/pa_vmethod_frame.h [global_static_self_fix] 1.43.4.1:
                   9270:        * src/types/pa_vobject.C [global_static_self_fix] 1.9.4.1:
                   9271:        * src/types/pa_vobject.h [global_static_self_fix] 1.36.2.1:
                   9272:        * src/types/pa_vrequest.C [global_static_self_fix] 1.25.4.1:
                   9273:        * src/types/pa_vrequest.h [global_static_self_fix] 1.23.4.1:
                   9274:        * src/types/pa_vresponse.C [global_static_self_fix] 1.14.2.1:
                   9275:        * src/types/pa_vresponse.h [global_static_self_fix] 1.29.4.1:
                   9276:        * src/types/pa_vstateless_class.C [global_static_self_fix] 1.17.4.1:
                   9277:        * src/types/pa_vstateless_class.h [global_static_self_fix] 1.40.4.1:
                   9278:        * src/types/pa_vstateless_object.h [global_static_self_fix] 1.25.4.1:
                   9279:        * src/types/pa_vstatus.C [global_static_self_fix] 1.13.4.1:
                   9280:        * src/types/pa_vstatus.h [global_static_self_fix] 1.13.4.1:
                   9281:        * src/types/pa_vstring.h [global_static_self_fix] 1.52.4.1:
                   9282:        * src/types/pa_vtable.C [global_static_self_fix] 1.19.4.1:
                   9283:        * src/types/pa_vtable.h [global_static_self_fix] 1.46.4.1:
                   9284:        * src/types/pa_vvoid.h [global_static_self_fix] 1.14.4.1:
                   9285:        * src/types/pa_vxdoc.C [global_static_self_fix] 1.21.4.1:
                   9286:        * src/types/pa_vxdoc.h [global_static_self_fix] 1.29.4.1:
                   9287:        * src/types/pa_vxnode.C [global_static_self_fix] 1.28.4.1:
                   9288:        * src/types/pa_vxnode.h [global_static_self_fix] 1.20.4.1:
                   9289:        * src/types/pa_wwrapper.h [global_static_self_fix] 1.26.4.1:
                   9290:        * www/htdocs/base.p [global_static_self_fix] 1.4.2.1:
                   9291:        * www/htdocs/derived.p [global_static_self_fix] 1.22.2.1:
                   9292:        * www/htdocs/index.html [global_static_self_fix] 1.174.2.1:
                   9293:                static call $self fixed
                   9294: 
                   9295:        * www/htdocs/base.p 1.6:
                   9296:        * www/htdocs/derived.p 1.24:
                   9297:        * www/htdocs/index.html 1.176:
                   9298:                this example creates base object, which is wrong, todo: find
                   9299:                out why
                   9300: 
                   9301:        * src/main/compile.tab.C [global_static_self_fix] 1.75.4.1:
                   9302:        * src/types/pa_vobject.C [global_static_self_fix] 1.9.4.4:
                   9303:                killed $virtual_fields in dynamic, but one can reach derived  
                   9304:                static[class] variable from base
                   9305: 
                   9306:        * src/classes/form.C 1.33:
                   9307:        * src/classes/mail.C 1.81:
                   9308:        * src/classes/op.C 1.125:
                   9309:        * src/classes/xnode.h 1.17:
                   9310:        * src/main/compile.tab.C 1.76:
                   9311:        * src/main/execute.C 1.290:
                   9312:        * src/main/pa_request.C 1.237:
                   9313:        * src/types/pa_value.h 1.108:
                   9314:        * src/types/pa_vclass.C 1.15:
                   9315:        * src/types/pa_vclass.h 1.38:
                   9316:        * src/types/pa_vcode_frame.h 1.23:
                   9317:        * src/types/pa_vcookie.C 1.52:
                   9318:        * src/types/pa_vcookie.h 1.22:
                   9319:        * src/types/pa_vdate.h 1.23:
                   9320:        * src/types/pa_venv.h 1.27:
                   9321:        * src/types/pa_vfile.h 1.50:
                   9322:        * src/types/pa_vform.C 1.71:
                   9323:        * src/types/pa_vform.h 1.44:
                   9324:        * src/types/pa_vhash.h 1.41:
                   9325:        * src/types/pa_vimage.h 1.32:
                   9326:        * src/types/pa_vmail.C 1.33:
                   9327:        * src/types/pa_vmail.h 1.7:
                   9328:        * src/types/pa_vmath.h 1.13:
                   9329:        * src/types/pa_vmethod_frame.h 1.44:
                   9330:        * src/types/pa_vobject.C 1.10:
                   9331:        * src/types/pa_vobject.h 1.37:
                   9332:        * src/types/pa_vrequest.C 1.26:
                   9333:        * src/types/pa_vrequest.h 1.24:
                   9334:        * src/types/pa_vresponse.C 1.15:
                   9335:        * src/types/pa_vresponse.h 1.30:
                   9336:        * src/types/pa_vstateless_class.C 1.18:
                   9337:        * src/types/pa_vstateless_class.h 1.41:
                   9338:        * src/types/pa_vstateless_object.h 1.26:
                   9339:        * src/types/pa_vstatus.C 1.14:
                   9340:        * src/types/pa_vstatus.h 1.14:
                   9341:        * src/types/pa_vstring.h 1.53:
                   9342:        * src/types/pa_vtable.C 1.20:
                   9343:        * src/types/pa_vtable.h 1.47:
                   9344:        * src/types/pa_vvoid.h 1.15:
                   9345:        * src/types/pa_vxdoc.C 1.22:
                   9346:        * src/types/pa_vxdoc.h 1.30:
                   9347:        * src/types/pa_vxnode.C 1.29:
                   9348:        * src/types/pa_vxnode.h 1.21:
                   9349:        * src/types/pa_wwrapper.h 1.27:
                   9350:        * www/htdocs/base.p 1.5:
                   9351:        * www/htdocs/derived.p 1.23:
                   9352:        * www/htdocs/index.html 1.175:
                   9353:                static fix merged
                   9354: 
                   9355:        * src/classes/op.C [global_static_self_fix] 1.124.2.2:
                   9356:        * src/types/pa_value.h [global_static_self_fix] 1.107.2.2:
                   9357:        * src/types/pa_vmethod_frame.h [global_static_self_fix] 1.43.4.2:
                   9358:        * src/types/pa_vobject.C [global_static_self_fix] 1.9.4.3:
                   9359:        * src/types/pa_vobject.h [global_static_self_fix] 1.36.2.2:
                   9360:        * src/types/pa_vstateless_class.C [global_static_self_fix] 1.17.4.3:
                   9361:        * src/types/pa_vstateless_class.h [global_static_self_fix] 1.40.4.2:
                   9362:                fixed statics, left $virtual_fields in dynamic
                   9363: 
                   9364:        * src/main/execute.C 1.288:
                   9365:                comment
                   9366: 
                   9367: 2002-10-30  paf
                   9368:        * www/htdocs/derived.p 1.21:
                   9369:        * www/htdocs/some.p 1.1:
                   9370:                include method overriding tested OK
                   9371: 
                   9372: 2002-10-29  paf
                   9373:        * src/targets/isapi/parser3isapi.C 1.80:
                   9374:                comment on 404 bad status re-passing [iis to blame]
                   9375: 
                   9376:        * src/classes/string.C 1.122:
                   9377:                changed string.save to pass current sql connection to cstr
                   9378:                thus one can
                   9379:                ^connect[some server]{
                   9380:                     $s[insert into table x (x) values (^taint[sql]{value})]
                   9381:                     ^s.save[some.sql]
                   9382:                }
                   9383:                and he'd get in some.sql file code with properly escaped.
                   9384:                [tried in mssql->mysql export->import of binary data]
                   9385: 
                   9386: 2002-10-28  paf
                   9387:        * www/htdocs/index.html 1.172:
                   9388:        * www/htdocs/index.html 1.173:
                   9389:                bad email handling test
                   9390: 
                   9391: 2002-10-25  paf
                   9392:        * src/include/pa_hash.h [hash_insensitive_garbage] 1.57.4.1:
                   9393:        * src/main/pa_hash.C [hash_insensitive_garbage] 1.52.4.1:
                   9394:        * src/main/pa_request.C [hash_insensitive_garbage] 1.236.2.1:
                   9395:        * src/types/pa_vresponse.C [hash_insensitive_garbage] 1.13.2.1:
                   9396:                saving for maybe-future
                   9397: 
                   9398:        * src/types/pa_vresponse.C 1.14:
                   9399:                case insensitive response user fields get/put
                   9400: 
                   9401: 2002-10-23  paf
                   9402:        * src/types/pa_vmail.C 1.32:
                   9403:        * www/htdocs/index.html 1.171:
                   9404:                email whitespace trimBoth-ed
                   9405: 
                   9406:        * operators.txt 1.94:
                   9407:        * src/classes/table.C 1.166:
                   9408:                ^table.hash{code}...
                   9409:                ^table.hash(expr)...
                   9410: 
                   9411: 2002-10-22  paf
                   9412:        * src/types/pa_vform.C 1.70:
                   9413:        * src/types/pa_vform.h 1.43:
                   9414:                removed needless VForm::Append...(...Value)
                   9415: 
                   9416:        * src/main/execute.C 1.287:
                   9417:                $.name outside of $name[...]
                   9418:                checked
                   9419: 
                   9420:        * src/main/compile.tab.C 1.75:
                   9421:        * src/main/compile.y 1.203:
                   9422:                lexer changed to fix ^call[]^#HH bug [that situation yelded no
                   9423:                EON, which whas wrong]
                   9424: 
                   9425: 2002-10-21  paf
                   9426:        * operators.txt 1.91:
                   9427:        * src/types/pa_vform.C 1.67:
                   9428:                $form:image-map
                   9429: 
                   9430:        * operators.txt 1.92:
                   9431:        * src/types/pa_vform.C 1.68:
                   9432:                $form:nameless = "?value&...", "...&value&...", "...&value"
                   9433: 
                   9434:        * operators.txt 1.93:
                   9435:        * src/types/pa_vform.C 1.69:
                   9436:        * src/types/pa_vform.h 1.42:
                   9437:                $form:qtail
                   9438:                $form:imap.x/y
                   9439: 
                   9440:        * operators.txt 1.90:
                   9441:        * src/classes/file.C 1.102:
                   9442:        * www/htdocs/index.html 1.170:
                   9443:                /some/page.html: ^file:fullpath[a.gif] => /some/a.gif
                   9444: 
                   9445: 2002-10-17  paf
                   9446:        * src/classes/op.C 1.123:
                   9447:                exception handling fixed [were bad with contexts]
                   9448: 
                   9449:        * src/main/compile.tab.C 1.74:
                   9450:        * src/main/compile.y 1.202:
                   9451:                operators precedence changed a little:
                   9452:                logical not and bitwise negation precedence made highest,
                   9453:                << and >> bitshits precedence made equal [were << higher than >>]
                   9454: 
1.17      paf      9455: 2002-10-16  paf
                   9456:        * src/classes/op.C 1.122:
                   9457:        * src/include/pa_request.h 1.157:
                   9458:        * src/main/execute.C 1.285:
                   9459:        * src/main/execute.C 1.286:
                   9460:        * src/main/pa_request.C 1.236:
                   9461:        * www/htdocs/derived.p 1.20:
                   9462:        * www/htdocs/index.html 1.167:
                   9463:        * www/htdocs/index.html 1.168:
                   9464:                Request::self considered equal to VMethodFrame::self, and removed,
                   9465:                Request::get_self() mapped to VMethodFrame.self()
1.18      paf      9466: 
                   9467:        * www/htdocs/index.html 1.169:
                   9468:                bad compile to system class test
1.17      paf      9469: 
                   9470:        * src/classes/op.C 1.121:
                   9471:        * src/main/pa_request.C 1.235:
                   9472:                VMainClass now has name = $hash in open field now gives old
                   9473:                good error meesage
                   9474: 
1.15      paf      9475: 2002-10-15  paf
1.17      paf      9476:        * www/htdocs/derived.p 1.17:
                   9477:        * www/htdocs/index.html 1.162:
                   9478:                test of ^process from operator called from user class
                   9479: 
                   9480:        * src/types/pa_vjunction.h 1.18:
                   9481:        * www/htdocs/index.html 1.166:
                   9482:                ^if(def $junction){was true}{now false}
                   9483:                use
                   9484:                ^if($junction is junction){was and now true}
                   9485: 
                   9486:        * src/types/pa_vjunction.C 1.2:
                   9487:                ident
                   9488: 
                   9489:        * src/classes/op.C 1.119:
                   9490:        * src/main/compile.tab.C 1.72:
                   9491:        * src/main/compile.y 1.200:
                   9492:        * src/types/pa_vmethod_frame.h 1.42:
                   9493:                process[self] objects also considered [were only classes]
                   9494: 
1.15      paf      9495:        * src/main/execute.C 1.283:
                   9496:        * src/targets/cgi/parser3.C 1.198:
                   9497:        * src/types/pa_vstateless_class.C 1.17:
                   9498:        * src/types/pa_vstateless_class.h 1.40:
                   9499:        * www/htdocs/operators.p 1.9:
                   9500:                compiling to system classes disabled
                   9501: 
1.17      paf      9502:        * operators.txt 1.88:
                   9503:        * src/classes/op.C 1.116:
                   9504:        * www/htdocs/operators.p 1.8:
                   9505:                ^process[$caller.CLASS]{code-string} added
                   9506: 
                   9507:        * src/types/Makefile.in 1.46:
                   9508:                *** empty log message ***
1.15      paf      9509: 
1.17      paf      9510:        * src/classes/op.C 1.120:
                   9511:        * src/include/pa_opcode.h 1.23:
                   9512:        * src/include/pa_request.h 1.156:
                   9513:        * src/main/compile.tab.C 1.73:
                   9514:        * src/main/compile.y 1.201:
                   9515:        * src/main/execute.C 1.284:
                   9516:        * src/types/pa_vmethod_frame.h 1.43:
                   9517:        * www/htdocs/derived.p 1.19:
                   9518:                removed last pieces of old code allowing $junction.xxx at
                   9519:                compile time
1.15      paf      9520: 
                   9521:        * operators.txt 1.87:
                   9522:        * src/classes/op.C 1.115:
                   9523:        * src/main/compile.tab.C 1.71:
                   9524:        * src/main/compile.y 1.199:
                   9525:        * src/main/execute.C 1.282:
                   9526:        * src/main/pa_request.C 1.234:
                   9527:        * src/types/Makefile.am 1.28:
                   9528:        * src/types/pa_vjunction.C 1.3:
                   9529:        * src/types/pa_vjunction.h 1.17:
                   9530:        * src/types/pa_vmethod_frame.h 1.40:
                   9531:        * src/types/types.dsp 1.35:
                   9532:        * www/htdocs/operators.p 1.7:
                   9533:                removed $junction.get $junction.set[]
                   9534:                introducing $caller
                   9535: 
                   9536:        * src/classes/op.C 1.118:
                   9537:        * src/include/pa_request.h 1.155:
                   9538:        * src/types/pa_vmethod_frame.h 1.41:
                   9539:        * www/htdocs/derived.p 1.18:
                   9540:        * www/htdocs/index.html 1.164:
                   9541:                ^process[CLASS]{body} now executed with CLASS self.
                   9542:                [   (request&method_frame).self temporarily changed   ]
                   9543: 
1.17      paf      9544:        * src/classes/xdoc.C 1.104:
                   9545:        * src/classes/xnode.C 1.53:
                   9546:        * src/include/pa_charset.h 1.19:
                   9547:        * src/include/pa_pool.h 1.85:
                   9548:        * src/main/pa_charset.C 1.31:
                   9549:        * src/main/pa_pool.C 1.57:
                   9550:        * src/types/pa_vxnode.C 1.28:
                   9551:        * www/htdocs/index.html 1.165:
                   9552:                xml->parser strings now have origin, which points to place
                   9553:                where value left xml library and came to parser: place of dom
                   9554:                field extraction/call
1.16      paf      9555: 
1.24      paf      9556:        * src/types/pa_value.h 1.106:
                   9557:                removed outdated comments. doxygen would find them lower by
                   9558:                inheritance tree
                   9559: 
1.15      paf      9560:        * src/classes/hash.C 1.51:
                   9561:        * src/classes/op.C 1.117:
                   9562:        * www/htdocs/index.html 1.163:
                   9563:        * www/htdocs/operators.p 1.10:
                   9564:                method_frame now always changed, with no exception to native calls.
                   9565:                for&foreach changed to use method_frame.caller for their var's name context
                   9566: 
                   9567: 2002-10-14  paf
                   9568:        * src/classes/form.C 1.32:
                   9569:        * src/classes/mail.C 1.80:
                   9570:        * src/classes/op.C 1.113:
                   9571:        * src/include/pa_request.h 1.154:
                   9572:        * src/main/compile.C 1.67:
                   9573:        * src/main/compile.tab.C 1.70:
                   9574:        * src/main/compile.y 1.198:
                   9575:        * src/main/execute.C 1.281:
                   9576:        * src/main/pa_request.C 1.233:
                   9577:        * src/types/pa_vstateless_class.h 1.39:
                   9578:        * www/htdocs/index.html 1.161:
                   9579:                operators now main-class-methods
                   9580: 
                   9581:        * src/include/pa_request.h 1.152:
                   9582:        * src/main/execute.C 1.280:
                   9583:        * src/main/pa_request.C 1.232:
                   9584:                operators @auto now executed in MAIN context
                   9585: 
                   9586:        * src/types/pa_vclass.C 1.14:
                   9587:        * src/types/pa_vobject.h 1.35:
                   9588:        * src/types/pa_vstateless_class.C 1.16:
                   9589:        * src/types/pa_vstateless_class.h 1.38:
                   9590:        * www/htdocs/index.html 1.158:
                   9591:        * www/htdocs/operators.p 1.5:
                   9592:                $form:CLASS resurrected [wes killed in action]
                   9593: 
                   9594:        * configure 1.49:
                   9595:        * configure.in 1.47:
                   9596:        * operators.txt 1.86:
                   9597:        * src/include/pa_config_auto.h.in 1.31:
                   9598:        * src/types/pa_vstatus.C 1.13:
                   9599:        * www/htdocs/index.html 1.157:
                   9600:                $status:rusage.tv_secs/usecs introduced
                   9601: 
                   9602:        * src/types/pa_vxnode.C 1.27:
                   9603:                misreplace fixed
                   9604: 
                   9605:        * src/classes/op.C 1.112:
                   9606:        * src/include/pa_request.h 1.153:
                   9607:        * www/htdocs/index.html 1.160:
                   9608:        * www/htdocs/operators.p 1.6:
                   9609:                ^try{^call{}} now has better stack trace [has "call" & co there]
                   9610: 
                   9611:        * src/main/execute.C 1.279:
                   9612:                operator execution context now = MAIN, not closest stack frame
                   9613:                
                   9614:                @touchit[]
                   9615:                $i[after]
                   9616:                
                   9617:                ----t.html
                   9618:                $i[before] << local
                   9619:                ^touchit[]
                   9620:                $i << now 'before', were 'after'
                   9621:                
                   9622:                ---t.html
                   9623:                $i[before] << notlocal [main]
                   9624:                ^touchit[]
                   9625:                $i << now 'after'
                   9626: 
                   9627:        * src/main/execute.C 1.278:
                   9628:                comment
                   9629: 
                   9630:        * src/classes/op.C 1.114:
                   9631:                process compiles to code's class class
                   9632: 
                   9633: 2002-10-09  paf
                   9634:        * src/classes/double.C 1.52:
                   9635:        * src/classes/int.C 1.48:
                   9636:        * src/classes/string.C 1.121:
                   9637:        * www/htdocs/derived.p 1.16:
                   9638:        * www/htdocs/index.html 1.156:
                   9639:                ^string.int[] now failes on empty string [or uses (default)]
                   9640: 
                   9641: 2002-10-08  paf
                   9642:        * src/lib/patches/Makefile.am 1.2:
                   9643:        * src/lib/patches/Makefile.in 1.5:
                   9644:                forgot libgdome_morestatic.patch
                   9645: 
                   9646:        * src/types/pa_vxnode.C 1.26:
                   9647:                misreplace
                   9648: 
                   9649:        * src/main/untaint.C 1.109:
                   9650:                mail header quoted printable changed after RFC reread
                   9651: 
                   9652:        * operators.txt 1.85:
                   9653:                plan on ^if(method
                   9654: 
                   9655: 2002-09-24  paf
                   9656:        * src/targets/cgi/Makefile.am 1.45:
                   9657:        * src/targets/cgi/Makefile.in 1.58:
                   9658:                LIBS were bad name in .am
                   9659: 
                   9660:        * acconfig.h 1.5:
                   9661:        * configure 1.47:
                   9662:        * configure.in 1.46:
                   9663:        * src/include/pa_config_auto.h.in 1.30:
                   9664:        * src/include/pa_config_fixed.h 1.51:
                   9665:        * src/targets/cgi/Makefile.am 1.44:
                   9666:        * src/targets/cgi/Makefile.in 1.57:
                   9667:        * src/types/pa_vmail.C 1.30:
                   9668:        * src/types/pa_vmail.C 1.31:
                   9669:                HAVE_TIMEZONE & co now checked and mailreceive would compile on
                   9670:                freebsd now
                   9671: 
                   9672:        * src/classes/file.C 1.101:
                   9673:        * src/main/untaint.C 1.108:
                   9674:        * www/htdocs/index.html 1.155:
                   9675:                1.
                   9676:                file spec language changed:
                   9677:                now there are only few chars are untainted:
                   9678:                * ? ' " < > |
                   9679:                and, on unix, : \ ~
                   9680:                [russian letters and SPACES now enabled, one should use ^untaint[uri]{...} now]
                   9681:                
                   9682:                2.
                   9683:                $list[^file:list[dir]] now returns simply tainted names in $list.name, not tainted as filespec
                   9684:                
                   9685:                @russianindex[]
                   9686:                #dir with files with russian-lang names
                   9687:                $where[dir]
                   9688:                
                   9689:                $dir[^file:list[$where;\.txt^$]]
                   9690:                ^dir.menu{
                   9691:                        <a href=$where/^untaint[uri]{$dir.name}>$dir.name</a><br>
                   9692:                }
                   9693: 
                   9694: 2002-09-23  paf
                   9695:        * src/classes/date.C 1.38:
                   9696:        * src/classes/date.C 1.39:
                   9697:                date bug fix, now round(floatDays*secondsPerDay)
                   9698: 
                   9699:        * src/targets/cgi/Makefile.in 1.56:
                   9700:                *** empty log message ***
                   9701: 
                   9702:        * src/types/pa_vdouble.h 1.41:
                   9703:                double->int round added
                   9704: 
                   9705: 2002-09-20  paf
                   9706:        * src/types/pa_vhash.h 1.40:
                   9707:        * www/htdocs/operators.p 1.4:
                   9708:                hash.foreach modification of existing keys allowed
                   9709: 
                   9710:        * src/main/compile.tab.C 1.69:
                   9711:        * src/main/compile.y 1.197:
                   9712:        * www/htdocs/index.html 1.153:
                   9713:                changed grammer on junction expanding to include ^junction.method
                   9714: 
                   9715:        * src/classes/xdoc.C 1.102:
                   9716:                empty transform result, being taken as file now returns empty
                   9717:                file, not raises stupid error about "stat-ed file"
                   9718: 
                   9719:        * src/main/execute.C 1.276:
                   9720:        * www/htdocs/index.html 1.154:
                   9721:                code junction calls disabled [before: code was compiled in such a way, that there were no code-junctions in OP_CALL]
                   9722:                
                   9723:                this now error:
                   9724:                @badjunctioncall[]
                   9725:                ^badjunctioncallinside{code}
                   9726:                
                   9727:                @badjunctioncallinside[code]
                   9728:                ^code[]
                   9729: 
                   9730:        * src/targets/apache13/Makefile.am 1.15:
                   9731:        * src/targets/apache13/Makefile.in 1.40:
                   9732:        * src/targets/cgi/Makefile.am 1.43:
                   9733:        * src/targets/cgi/Makefile.in 1.55:
                   9734:                binaries now depend on makefiles, thus taking linking options
                   9735:                configure changes into account [were: ignoring]
                   9736: 
                   9737:        * src/classes/xdoc.C 1.103:
                   9738:        * www/htdocs/index.html 1.152:
                   9739:                xdoc::create[name] now sets $request:charset as internal xdoc
                   9740:                encoding, and after decoding attributes set by dom functions
                   9741:                now encoded OK, not as digital entities
                   9742: 
                   9743:        * src/types/Makefile.in 1.45:
                   9744:                *** empty log message ***
                   9745: 
                   9746:        * src/include/pa_opcode.h 1.22:
                   9747:        * src/include/pa_request.h 1.150:
                   9748:        * src/main/compile.tab.C 1.68:
                   9749:        * src/main/compile.y 1.196:
                   9750:        * src/main/execute.C 1.275:
                   9751:        * src/main/main.dsp 1.159:
                   9752:        * src/targets/cgi/parser3.dsp 1.60:
                   9753:        * src/types/Makefile.am 1.27:
                   9754:        * src/types/pa_vjunction.C 1.1:
                   9755:        * src/types/pa_vjunction.h 1.16:
                   9756:        * src/types/types.dsp 1.34:
                   9757:        * www/htdocs/.htaccess 1.8:
                   9758:        * www/htdocs/index.html 1.151:
                   9759:                introducing $junction.get/put(1)
                   9760:                one can write iterators now:
                   9761:                
                   9762:                ^user-foreach[key;value]{$key=$value<br>}
                   9763:                
                   9764:                @user-foreach[key;value;code]
                   9765:                ^for[i](1;10){
                   9766:                        $code.key($i)
                   9767:                        $code.value($i*2)
                   9768:                        $code
                   9769:                }
                   9770: 
                   9771:        * src/main/pa_common.C 1.120:
                   9772:                -d "DIR/" now true
                   9773: 
                   9774:        * src/main/compile_tools.h 1.66:
                   9775:                mistype
                   9776: 
                   9777: 2002-09-19  paf
                   9778:        * Makefile.am 1.8:
                   9779:        * Makefile.in 1.21:
                   9780:        * aclocal.m4 1.5:
                   9781:                *** empty log message ***
                   9782: 
                   9783:        * aclocal.m4 1.3:
                   9784:                forced to be older
                   9785: 
                   9786:        * Makefile.am 1.12:
                   9787:        * Makefile.in 1.25:
                   9788:                new: make commit
                   9789: 
                   9790: 2002-09-18  paf
                   9791:        * parser3.dsw 1.4:
                   9792:        * src/include/pa_opcode.h 1.21:
                   9793:        * src/main/compile.tab.C 1.67:
                   9794:        * src/main/compile.y 1.195:
                   9795:        * src/main/execute.C 1.274:
                   9796:        * www/htdocs/index.html 1.150:
                   9797:                << >> int shifts
                   9798: 
                   9799:        * src/classes/file.C 1.100:
                   9800:        * www/htdocs/index.html 1.149:
                   9801:        * www/htdocs/mailreceive.eml 1.3:
                   9802:                ^file::exec/cgi $.stdin[can be file now]
                   9803:                so that one can pass binary data there
                   9804: 
                   9805:        * src/include/pa_common.h 1.82:
                   9806:        * src/include/pa_request.h 1.149:
                   9807:        * src/main/pa_common.C 1.119:
                   9808:        * src/main/pa_request.C 1.230:
                   9809:                auto.p exists but unreadable - now this - fatal error
                   9810: 
                   9811:        * src/classes/date.C 1.37:
                   9812:        * src/classes/double.C 1.51:
                   9813:        * src/classes/file.C 1.99:
                   9814:        * src/classes/hash.C 1.50:
                   9815:        * src/classes/image.C 1.76:
                   9816:        * src/classes/int.C 1.47:
                   9817:        * src/classes/mail.C 1.79:
                   9818:        * src/classes/op.C 1.111:
                   9819:        * src/classes/response.C 1.22:
                   9820:        * src/classes/string.C 1.120:
                   9821:        * src/classes/table.C 1.165:
                   9822:        * src/classes/void.C 1.25:
                   9823:        * src/classes/xdoc.C 1.101:
                   9824:        * src/classes/xnode.C 1.52:
                   9825:        * src/include/pa_request.h 1.148:
                   9826:        * www/htdocs/index.html 1.148:
                   9827:                pa_request contexts made privated, plus get_{self/method_frame} to read.
                   9828:                Request_context_saver used in ^try to save flang too.
                   9829:                [were not saved]
                   9830: 
                   9831:        * src/types/pa_vresponse.C 1.13:
                   9832:                header value chains joined before output, this should help
                   9833:                $.subject[$var $var]
                   9834:                from being converted to
                   9835:                subject: ?koi8-r?Q?...?= ?koi8-r?Q?...?=
                   9836: 
                   9837: 2002-09-17  paf
                   9838:        * src/classes/op.C 1.109:
                   9839:        * www/htdocs/index.html 1.147:
                   9840:        * www/htdocs/operators.p 1.2:
                   9841:                made place for ^process to compile it's code to in case of no self
                   9842: 
                   9843:        * src/classes/op.C 1.110:
                   9844:        * src/main/execute.C 1.272:
                   9845:        * src/main/pa_request.C 1.229:
                   9846:        * src/types/pa_value.C 1.8:
                   9847:        * src/types/pa_value.h 1.104:
                   9848:        * src/types/pa_vmethod_frame.h 1.38:
                   9849:        * src/types/pa_vstateless_class.h 1.37:
                   9850:        * www/htdocs/operators.p 1.3:
                   9851:                operators now executed with MAIN self.
                   9852:                it's for ^include sake, too strong a change
                   9853: 
                   9854:        * src/classes/hash.C 1.47:
                   9855:                foreach delims bug fixed [were ,2,3]
                   9856: 
                   9857:        * src/classes/hash.C 1.48:
                   9858:        * src/classes/table.C 1.162:
                   9859:        * src/include/pa_sql_connection.h 1.29:
                   9860:        * www/htdocs/index.html 1.141:
                   9861:                table.sql hash::sql duplicate keys now errors
                   9862: 
                   9863:        * src/main/execute.C 1.273:
                   9864:        * src/types/pa_value.h 1.105:
                   9865:        * src/types/pa_vmethod_frame.h 1.39:
                   9866:                removed changes, operators executed with calling self.
                   9867:                lots of code with ^include code relies on defined/defining self variables
                   9868:                
                   9869:                $a[1]
                   9870:                ^include[print_a.p]
                   9871:                print_a.p: $a
                   9872:                
                   9873:                ^include[set_a.p]
                   9874:                a=$a
                   9875:                set_a.p:
                   9876:                $a[1]
                   9877: 
                   9878:        * operators.txt 1.83:
                   9879:        * operators.txt 1.84:
                   9880:        * src/classes/hash.C 1.49:
                   9881:        * src/classes/table.C 1.163:
                   9882:        * src/include/pa_globals.h 1.95:
                   9883:        * src/main/pa_globals.C 1.139:
                   9884:        * www/htdocs/index.html 1.142:
                   9885:                table.sql hash::sql flag to allow duplicate keys [$.distinct(1/0)]
                   9886:                first record taken [were last]
                   9887: 
                   9888:        * src/main/execute.C 1.270:
                   9889:        * src/main/execute.C 1.271:
                   9890:        * src/types/pa_value.C 1.7:
                   9891:        * src/types/pa_value.h 1.103:
                   9892:        * src/types/pa_vstateless_class.h 1.36:
                   9893:        * www/htdocs/index.html 1.146:
                   9894:                found ancient param to Junction, removed.
                   9895:                allowed passing self to native_code_operators [for ^process to work, she needs self]
                   9896: 
                   9897:        * Makefile.in 1.20:
                   9898:        * bin/Makefile.in 1.5:
                   9899:        * bin/auto.p.dist.in 1.8:
                   9900:        * configure 1.40:
                   9901:        * configure 1.41:
                   9902:        * configure.in 1.40:
                   9903:        * configure.in 1.41:
                   9904:        * etc/Makefile.in 1.10:
                   9905:        * etc/parser3.charsets/Makefile.in 1.13:
                   9906:        * src/Makefile.in 1.51:
                   9907:        * src/classes/Makefile.in 1.49:
                   9908:        * src/include/Makefile.in 1.7:
                   9909:        * src/lib/Makefile.in 1.4:
                   9910:        * src/lib/md5/Makefile.in 1.2:
                   9911:        * src/lib/patches/Makefile.in 1.4:
                   9912:        * src/lib/pcre/Makefile.in 1.4:
                   9913:        * src/main/Makefile.in 1.45:
                   9914:        * src/sql/Makefile.in 1.7:
                   9915:        * src/targets/Makefile.in 1.38:
                   9916:        * src/targets/apache13/Makefile.in 1.39:
                   9917:        * src/targets/cgi/Makefile.in 1.54:
                   9918:        * src/targets/isapi/Makefile.in 1.7:
                   9919:        * src/types/Makefile.in 1.44:
                   9920:                so now detected [can be .sl on hpux, .dll on cygwin, .so in
                   9921:                other cases)
                   9922: 
                   9923:        * bin/auto.p.dist.in 1.9:
                   9924:                strange \n
                   9925: 
                   9926:        * src/classes/table.C 1.164:
                   9927:        * src/classes/xdoc.C 1.100:
                   9928:        * www/htdocs/index.html 1.144:
                   9929:                table::sql  options
                   9930:                table::create  copy options
                   9931:                options checked, wrong option now fatal error
                   9932: 
                   9933:        * src/main/pa_string.C 1.170:
                   9934:        * www/htdocs/index.html 1.143:
                   9935:                string.replace fixed [were missing words on pieces boundaries]
                   9936: 
                   9937:        * src/main/execute.C 1.269:
                   9938:        * src/main/pa_request.C 1.228:
                   9939:        * src/types/pa_value.C 1.6:
                   9940:        * src/types/pa_value.h 1.102:
                   9941:        * src/types/pa_vmethod_frame.h 1.37:
                   9942:        * src/types/pa_vstateless_class.h 1.35:
                   9943:        * www/htdocs/index.html 1.145:
                   9944:        * www/htdocs/operators.p 1.1:
                   9945:                allowed Request.self to be 0, checked that in VMethodFrame get
                   9946:                put and $self.
                   9947: 
                   9948:        * src/classes/op.C 1.108:
                   9949:        * src/classes/table.C 1.161:
                   9950:        * www/htdocs/index.html 1.140:
                   9951:                menu/for delims bug fixed [were ,2,3]
                   9952: 
                   9953: 2002-09-16  paf
                   9954:        * src/classes/file.C 1.98:
                   9955:        * www/htdocs/index.html 1.139:
                   9956:                file::cgi line ends can be both unix & dos. and they can be unix [\n\n] on win when 'use CGI' used, it causes stdout to be binary.
                   9957:                now detected closest header break.
                   9958: 
                   9959:        * src/main/untaint.C 1.107:
                   9960:        * src/types/pa_vmail.C 1.29:
                   9961:                mail:send closing ?=  now closed right
                   9962: 
                   9963: 2002-09-13  paf
                   9964:        * operators.txt 1.81:
                   9965:        * src/main/compile.tab.C 1.65:
                   9966:        * src/main/compile.y 1.193:
                   9967:        * www/htdocs/index.html 1.137:
                   9968:                !| bitwise
                   9969:                !|| numerical
                   9970:                xor now
                   9971:                [preparing for expression #comments]
                   9972: 
                   9973:        * src/main/compile.tab.C 1.63:
                   9974:        * src/main/compile.y 1.191:
                   9975:        * src/types/pa_vresponse.C 1.12:
                   9976:        * www/htdocs/index.html 1.135:
                   9977:                cookie date now clean [were mistakenly tainted & that worked
                   9978:                bad with opera -- 'happily' that worked OK with msie]
                   9979: 
                   9980:        * src/main/compile.tab.C 1.64:
                   9981:        * src/main/compile.y 1.192:
                   9982:        * www/htdocs/index.html 1.136:
                   9983:                @method[$name]
                   9984:                now parse error
                   9985: 
                   9986:        * operators.txt 1.82:
                   9987:        * src/main/compile.tab.C 1.66:
                   9988:        * src/main/compile.y 1.194:
                   9989:        * src/main/compile_tools.h 1.65:
                   9990:        * www/htdocs/index.html 1.138:
                   9991:                (expression #comment)
                   9992:                
                   9993:                (multiline expression #comment
                   9994:                 line2  #comment
                   9995:                )
                   9996:                
                   9997:                (expression #comment with (brackets) comment) << OK
                   9998: 
                   9999:        * Makefile.in 1.19:
                   10000:        * configure 1.39:
                   10001:        * configure.in 1.39:
                   10002:        * src/include/pa_config_auto.h.in 1.29:
                   10003:                HAVE_WINSOCK_H created in configure.in
                   10004: 
                   10005:        * src/include/pa_config_fixed.h 1.50:
                   10006:        * src/main/pa_socks.C 1.17:
                   10007:                HAVE_WINSOCK_H cheched in pa_socks.C
                   10008: 
                   10009: 2002-09-12  paf
                   10010:        * src/main/untaint.C 1.105:
                   10011:        * www/htdocs/index.html 1.134:
                   10012:                quoted printable ' ' now =20
                   10013:                and encoding stops before <...>$
                   10014: 
                   10015:        * src/types/pa_vclass.C 1.13:
                   10016:        * src/types/pa_vmail.C 1.28:
                   10017:        * src/types/pa_vobject.C 1.8:
                   10018:                VObject & VClass
                   10019:                get_element
                   10020:                now first looks to fields, next to methods & co
                   10021:                todo: the rest
                   10022:                reason: more speed
                   10023: 
                   10024:        * src/main/untaint.C 1.106:
                   10025:                quoted printable encoding stops before \s*<...>$
                   10026: 
                   10027: 2002-09-11  paf
                   10028:        * src/main/pa_charset.C 1.30:
                   10029:        * src/targets/cgi/parser3.dsp 1.59:
                   10030:        * www/htdocs/index.html 1.133:
                   10031:                while fixing ( xmlCharEncodingInput/OutputFunc callbacks returned bad value )
                   10032:                forgot to check users of those funcs. not all were using that return value convention
                   10033: 
                   10034:        * etc/parser3.charsets/windows-1254.cfg 1.1:
                   10035:        * src/lib/pcre/ibm-1254.ucm 1.1:
                   10036:                windows-1254 added
                   10037: 
                   10038: 2002-09-10  paf
                   10039:        * src/classes/op.C 1.106:
                   10040:        * src/main/execute.C 1.265:
                   10041:        * src/types/pa_value.C 1.5:
                   10042:        * src/types/pa_value.h 1.100:
                   10043:        * src/types/pa_vcode_frame.h 1.22:
                   10044:        * src/types/pa_vmethod_frame.h 1.36:
                   10045:        * src/types/pa_wcontext.C 1.23:
                   10046:        * src/types/pa_wcontext.h 1.39:
                   10047:        * src/types/pa_wwrapper.h 1.25:
                   10048:                moved junction kill responsibility to wcontext
                   10049: 
                   10050:        * src/main/execute.C 1.267:
                   10051:        * src/types/pa_value.h 1.101:
                   10052:        * src/types/pa_wwrapper.h 1.26:
                   10053:                WWrapper which used in constructing objects(second param to sql method) ^...sql{}[$.default{code}]
                   10054:                now has parent, wich helps code in hash to survivi
                   10055: 
                   10056:        * src/include/pa_request.h 1.147:
                   10057:        * src/main/execute.C 1.266:
                   10058:                removed redundant param to execute [stack said 'thanks']
                   10059: 
                   10060:        * src/classes/file.C 1.97:
                   10061:                decided not to log exec's with stderr, that could be warnings, 
                   10062:                and it's up to scritper to log/show them
                   10063: 
                   10064:        * src/main/pa_charset.C 1.29:
                   10065:        * src/types/pa_vmail.C 1.27:
                   10066:        * www/htdocs/index.html 1.131:
                   10067:                xmlCharEncodingInput/OutputFunc callbacks returned bad value in case of unfinished in buffer processing, causing accidental transcode stop [in case that source enc != utf-8 & there is incomplete utf-8 sequence at the end of 16000block iside of libxml lib]
                   10068:                tfm readed & code updated
                   10069: 
                   10070:        * src/classes/op.C 1.107:
                   10071:        * src/main/execute.C 1.268:
                   10072:        * src/types/pa_wcontext.h 1.40:
                   10073:        * src/types/pa_wcontext.h 1.41:
                   10074:                VCodeFrame parent param were specified badly
                   10075: 
                   10076:        * src/classes/double.C 1.50:
                   10077:        * src/main/execute.C 1.264:
                   10078:        * www/htdocs/index.html 1.132:
                   10079:                double:sql badly called write_assign_lang, not write_no_lang,
                   10080:                thus doing unnecessary double/string converstion, which were loosing time&precesion
                   10081: 
                   10082: 2002-09-04  paf
                   10083:        * src/types/pa_vxnode.C 1.25:
                   10084:        * www/htdocs/index.html 1.129:
                   10085:                removed too strong checks of xnode.elements.
                   10086:                now, for instance, if element does not have any attributes, $xnode.attributes is void, not error
                   10087: 
                   10088:        * configure 1.37:
                   10089:        * configure.in 1.38:
                   10090:                introducing --with-sjlj-exceptions
                   10091:                [hpux can not work with longjump/throw pair, and one must switch that on there.
                   10092:                todo: detect that automatically]
                   10093: 
                   10094:        * configure 1.38:
                   10095:                makes with sjlj
                   10096: 
                   10097:        * src/include/pa_config_auto.h.in 1.28:
                   10098:                sjlj define
                   10099: 
                   10100:        * INSTALL 1.26:
                   10101:        * src/include/pa_config_fixed.h 1.49:
                   10102:        * src/include/pa_sql_connection.h 1.28:
                   10103:        * src/main/pa_sql_driver_manager.C 1.65:
                   10104:        * www/htdocs/index.html 1.130:
                   10105:                -with-sjlj-exceptions define checked.
                   10106:                on win32 it made default
                   10107: 
                   10108: 2002-09-02  paf
                   10109:        * Makefile.am 1.7:
                   10110:        * Makefile.in 1.18:
                   10111:        * src/types/pa_vdate.h 1.20:
                   10112:                happy now only install-exec
                   10113: 
                   10114:        * src/types/pa_vdate.h 1.21:
                   10115:                removed debug
                   10116: 
                   10117:        * operators.txt 1.80:
                   10118:        * src/main/execute.C 1.263:
                   10119:        * src/targets/cgi/parser3.dsp 1.58:
                   10120:        * www/htdocs/index.html 1.128:
                   10121:                removed double_result, didn't help
                   10122: 
                   10123:        * src/types/pa_vdate.h 1.22:
                   10124:                *** empty log message ***
                   10125: 
                   10126:        * src/main/execute.C 1.258:
                   10127:                fixed numeric < & co so that thay now use c=a-b, c OPERATOR 0.
                   10128:                this works fine on solaris/intel for still unknown reason.
                   10129: 
                   10130:        * src/main/execute.C 1.261:
                   10131:                double_result made to move that var away from hungry g++ optimizer (-O2),
                   10132:                before: it were optimized and comparison operators worked badly
                   10133: 
                   10134: 2002-08-29  paf
                   10135:        * parser3.dsw 1.3:
                   10136:        * src/classes/classes.dsp 1.25:
                   10137:        * src/classes/hash.C 1.46:
                   10138:        * src/classes/op.C 1.105:
                   10139:        * src/classes/string.C 1.119:
                   10140:        * src/include/pa_request.h 1.146:
                   10141:        * src/lib/md5/md5.dsp 1.2:
                   10142:        * src/main/execute.C 1.257:
                   10143:        * src/main/main.dsp 1.158:
                   10144:        * src/main/pa_request.C 1.227:
                   10145:        * src/targets/cgi/parser3.dsp 1.57:
                   10146:        * src/types/pa_value.C 1.4:
                   10147:        * src/types/pa_value.h 1.99:
                   10148:        * src/types/pa_vmail.C 1.26:
                   10149:        * src/types/pa_vmethod_frame.h 1.35:
                   10150:        * src/types/pa_wcontext.h 1.38:
                   10151:        * src/types/types.dsp 1.33:
                   10152:        * www/htdocs/index.html 1.127:
                   10153:                junction_cleaner moved to auto VMethodFrame [called less frequent, allowed to remove ugly Junction.change_context-s from many places, switch, mail:send..html{}, ..]
                   10154:                request.root renamed to method_frame [more easyreading]
                   10155:                ancient {...PUSH/POPs...} changed to stack vars [speed up]
                   10156: 
                   10157: 2002-08-28  paf
                   10158:        * operators.txt 1.79:
                   10159:        * src/classes/string.C 1.118:
                   10160:        * www/htdocs/derived.p 1.15:
                   10161:        * www/htdocs/index.html 1.124:
                   10162:                ^string.split[delim[;options]]
                   10163: 
                   10164:        * src/types/pa_vcookie.C 1.50:
                   10165:        * www/htdocs/index.html 1.125:
                   10166:                fixed cookie delete when
                   10167:                $cookie:name[$.value[]]
                   10168: 
                   10169:        * src/types/pa_vcookie.C 1.51:
                   10170:        * www/htdocs/index.html 1.126:
                   10171:                $cookie:name[&]
                   10172:                $cookie:name << now tainted
                   10173: 
                   10174: 2002-08-27  paf
                   10175:        * etc/parser3.charsets/Makefile.am 1.4:
                   10176:        * etc/parser3.charsets/Makefile.in 1.12:
                   10177:                merged from 3.0.0005
                   10178: 
                   10179:        * INSTALL 1.25:
                   10180:                recommended latest gmime 1.0.5
                   10181: 
                   10182:        * operators.txt 1.78:
                   10183:        * src/main/compile.tab.C 1.62:
                   10184:        * src/main/compile.y 1.190:
                   10185:        * www/htdocs/index.html 1.123:
                   10186:        * www/htdocs/mailreceive.eml 1.2:
                   10187:                # now delimiter
                   10188: 
                   10189: 2002-08-26  paf
                   10190:        * configure 1.36:
                   10191:        * configure.in 1.37:
                   10192:        * src/targets/apache13/Makefile.am 1.14:
                   10193:        * src/targets/apache13/Makefile.in 1.38:
                   10194:                apache13/hook added to make dist.
                   10195: 
                   10196: 2002-08-23  paf
                   10197:        * src/include/pa_common.h 1.81:
                   10198:        * src/main/pa_common.C 1.118:
                   10199:        * src/targets/cgi/parser3.C 1.197:
                   10200:        * src/targets/isapi/parser3isapi.C 1.79:
                   10201:        * www/htdocs/index.html 1.122:
                   10202:                when auto.p beside binary [cgi, isapi] not accessible [due to
                   10203:                bad rights or whatever] it's error now
                   10204: 
                   10205: 2002-08-21  paf
                   10206:        * src/main/pa_string.C 1.169:
                   10207:        * www/htdocs/index.html 1.121:
                   10208:                fixed bad language bug, [were wrong string cloning constructor]
                   10209: 
                   10210:        * src/main/compile.tab.C 1.61:
                   10211:        * src/main/compile.y 1.189:
                   10212:        * src/main/compile_tools.C 1.53:
                   10213:        * src/main/compile_tools.h 1.64:
                   10214:        * www/htdocs/derived.p 1.13:
                   10215:        * www/htdocs/derived.p 1.14:
                   10216:                "BASE:"
                   10217:                "BASE::"
                   10218:                syntax allowed, means "base class".
                   10219:                compiled as if here they named base class
                   10220: 
                   10221:        * bin/auto.p.dist.in 1.7:
                   10222:        * src/targets/cgi/parser3.C 1.196:
                   10223:        * src/types/pa_vfile.C 1.34:
                   10224:        * src/types/pa_vmail.C 1.23:
                   10225:        * www/htdocs/mailreceive.eml 1.1:
                   10226:        * www/htdocs/mailreceive.html 1.1:
                   10227:                $mail.received.file.value.content-type fixed
                   10228: 
                   10229:        * Makefile.am 1.6:
                   10230:        * Makefile.in 1.17:
                   10231:                can use:
                   10232:                make happy
                   10233:                equals to
                   10234:                make update install
                   10235: 
                   10236:        * src/main/execute.C 1.256:
                   10237:        * src/types/pa_vobject.h 1.34:
                   10238:        * www/htdocs/base.p 1.3:
                   10239:        * www/htdocs/derived.p 1.12:
                   10240:        * www/htdocs/index.html 1.120:
                   10241:                fixed virtual calls
                   10242: 
                   10243: 2002-08-20  paf
                   10244:        * operators.txt 1.76:
                   10245:        * src/classes/void.C 1.23:
                   10246:        * www/htdocs/index.html 1.117:
                   10247:                ^void.length[] = 0 merged from 3.0.0005
                   10248: 
                   10249:        * operators.txt 1.77:
                   10250:        * src/classes/void.C 1.24:
                   10251:        * www/htdocs/index.html 1.118:
                   10252:                ^void.pos[...] = -1 merged from 3.0.0005
                   10253: 
                   10254:        * operators.txt [release_3_0_0005] 1.59.2.3:
                   10255:        * src/classes/void.C [release_3_0_0005] 1.21.2.1:
                   10256:                ^void.length[] = 0
                   10257: 
                   10258:        * operators.txt [release_3_0_0005] 1.59.2.4:
                   10259:        * src/classes/void.C [release_3_0_0005] 1.21.2.2:
                   10260:                ^void.pos[...] = -1
                   10261: 
                   10262:        * src/classes/file.C 1.96:
                   10263:        * www/htdocs/index.html 1.119:
                   10264:                fixed language of file:file result
                   10265: 
                   10266: 2002-08-19  paf
                   10267:        * src/classes/xnode.C 1.49:
                   10268:        * src/classes/xnode.C 1.50:
                   10269:        * src/classes/xnode.C 1.51:
                   10270:        * src/types/pa_vxdoc.C 1.21:
                   10271:                xdoc.fields fixed [were error in xnode, which were not catched
                   10272:                in xdoc]
                   10273: 
                   10274:        * src/classes/xdoc.C 1.99:
                   10275:                xdoc getElementsByTagName, ...NS
                   10276:                overriden, work now
                   10277: 
                   10278:        * src/include/pa_stylesheet_connection.h 1.31:
                   10279:        * src/main/pa_globals.C 1.138:
                   10280:                prepared:
                   10281:                        // validate each document after load/create (?)
                   10282:                        //xmlDoValidityCheckingDefaultValue = 1;
                   10283: 
                   10284: 2002-08-15  paf
                   10285:        * src/types/pa_vrequest.C 1.25:
                   10286:        * www/htdocs/index.html 1.113:
                   10287:                $request:body unprecessed POST request
                   10288: 
                   10289:        * operators.txt 1.71:
                   10290:        * src/classes/form.C 1.31:
                   10291:        * src/include/pa_pool.h 1.84:
                   10292:        * src/include/pa_request.h 1.145:
                   10293:        * src/main/pa_pool.C 1.56:
                   10294:        * src/types/pa_vform.C 1.66:
                   10295:        * src/types/pa_vform.h 1.41:
                   10296:        * www/htdocs/.htaccess 1.7:
                   10297:                planning/preparing_to $request:body
                   10298:                r.post_data now const
                   10299: 
                   10300:        * src/classes/image.C 1.75:
                   10301:        * src/classes/op.C 1.104:
                   10302:        * src/classes/xdoc.C 1.98:
                   10303:        * src/classes/xnode.C 1.48:
                   10304:        * src/main/execute.C 1.255:
                   10305:        * src/types/pa_value.h 1.97:
                   10306:        * src/types/pa_vhash.h 1.39:
                   10307:        * src/types/pa_vobject.C 1.7:
                   10308:        * src/types/pa_vobject.h 1.33:
                   10309:        * src/types/pa_vtable.h 1.46:
                   10310:        * www/htdocs/index.html 1.111:
                   10311:                instead of type() checking everywhere used Value.as
                   10312:                now user descendants can be used in params.
                   10313:                
                   10314:                VObject::as_*, is_defined now taken from bases.
                   10315:                xtable(table)
                   10316:                ^if($xtable) now OK
                   10317: 
                   10318:        * operators.txt 1.73:
                   10319:        * src/include/pa_common.h 1.80:
                   10320:        * src/main/pa_common.C 1.117:
                   10321:        * src/types/pa_vcookie.C 1.49:
                   10322:        * src/types/pa_vdate.h 1.19:
                   10323:        * src/types/pa_vresponse.C 1.11:
                   10324:        * src/types/pa_vresponse.h 1.29:
                   10325:        * www/htdocs/index.html 1.115:
                   10326:                $response:field[date]
                   10327:                $response:field[$.xxx[date]]
                   10328: 
                   10329:        * src/types/pa_value.h 1.98:
                   10330:        * src/types/pa_vdate.h 1.18:
                   10331:        * src/types/pa_vrequest.C 1.24:
                   10332:        * src/types/pa_vxdoc.C 1.20:
                   10333:        * src/types/pa_vxnode.C 1.24:
                   10334:        * www/htdocs/index.html 1.112:
                   10335:                few barks:
                   10336:                bark("%s field not found", 0, &aname)
                   10337: 
                   10338:        * src/classes/hash.C 1.45:
                   10339:        * src/classes/string.C 1.117:
                   10340:        * src/classes/table.C 1.160:
                   10341:        * src/classes/void.C 1.22:
                   10342:        * src/include/pa_sql_connection.h 1.27:
                   10343:        * www/htdocs/index.html 1.114:
                   10344:                fixed source of ^hash::sql{bad}
                   10345: 
                   10346:        * src/classes/classes.h 1.22:
                   10347:        * www/htdocs/index.html 1.116:
                   10348:                write to static var caused useless Exception, introduced
                   10349:                Methoded::put_element wich consumes those
                   10350: 
                   10351:        * src/main/execute.C 1.254:
                   10352:        * src/types/pa_value.h 1.96:
                   10353:        * src/types/pa_vclass.C 1.12:
                   10354:        * src/types/pa_vclass.h 1.37:
                   10355:        * src/types/pa_vobject.C 1.6:
                   10356:        * src/types/pa_vobject.h 1.32:
                   10357:        * src/types/pa_vxdoc.C 1.19:
                   10358:        * src/types/pa_vxdoc.h 1.29:
                   10359:                is->as
                   10360: 
                   10361:        * operators.txt 1.72:
                   10362:                $request:body unprecessed POST request body
                   10363: 
                   10364: 2002-08-14  paf
                   10365:        * src/targets/cgi/Makefile.am 1.41:
                   10366:        * src/targets/cgi/fixopt.C 1.1:
                   10367:        * src/targets/cgi/fixopt.C 1.2:
                   10368:        * src/targets/cgi/fixopt.h 1.1:
                   10369:        * src/targets/cgi/parser3.C 1.194:
                   10370:        * src/targets/cgi/parser3.dsp 1.55:
                   10371:                fixopt now preprocesses command line params, splitting them by
                   10372:                space, excluding argv[0], argv[argc-1]
                   10373: 
                   10374:        * src/classes/xnode.h 1.16:
                   10375:        * src/main/execute.C 1.253:
                   10376:        * src/targets/cgi/parser3.dsp 1.56:
                   10377:        * src/types/pa_value.h 1.95:
                   10378:        * src/types/pa_vclass.C 1.11:
                   10379:        * src/types/pa_vclass.h 1.36:
                   10380:        * src/types/pa_vcode_frame.h 1.21:
                   10381:        * src/types/pa_vcookie.C 1.48:
                   10382:        * src/types/pa_vcookie.h 1.21:
                   10383:        * src/types/pa_vdate.h 1.17:
                   10384:        * src/types/pa_venv.h 1.26:
                   10385:        * src/types/pa_vfile.h 1.49:
                   10386:        * src/types/pa_vform.C 1.65:
                   10387:        * src/types/pa_vform.h 1.40:
                   10388:        * src/types/pa_vhash.h 1.38:
                   10389:        * src/types/pa_vimage.h 1.31:
                   10390:        * src/types/pa_vmail.C 1.22:
                   10391:        * src/types/pa_vmail.h 1.6:
                   10392:        * src/types/pa_vmath.h 1.12:
                   10393:        * src/types/pa_vmethod_frame.h 1.34:
                   10394:        * src/types/pa_vobject.C 1.5:
                   10395:        * src/types/pa_vobject.h 1.31:
                   10396:        * src/types/pa_vrequest.C 1.23:
                   10397:        * src/types/pa_vrequest.h 1.23:
                   10398:        * src/types/pa_vresponse.C 1.10:
                   10399:        * src/types/pa_vresponse.h 1.28:
                   10400:        * src/types/pa_vstateless_class.h 1.34:
                   10401:        * src/types/pa_vstateless_object.h 1.25:
                   10402:        * src/types/pa_vstatus.C 1.12:
                   10403:        * src/types/pa_vstatus.h 1.13:
                   10404:        * src/types/pa_vstring.h 1.52:
                   10405:        * src/types/pa_vtable.C 1.19:
                   10406:        * src/types/pa_vtable.h 1.45:
                   10407:        * src/types/pa_vvoid.h 1.14:
                   10408:        * src/types/pa_vxdoc.C 1.18:
                   10409:        * src/types/pa_vxdoc.h 1.28:
                   10410:        * src/types/pa_vxnode.C 1.23:
                   10411:        * src/types/pa_vxnode.h 1.20:
                   10412:        * src/types/pa_wwrapper.h 1.24:
                   10413:        * www/htdocs/index.html 1.110:
                   10414:                is now works with VObject & VClass
                   10415: 
                   10416:        * src/types/pa_vmail.C 1.21:
                   10417:                mail: turned off utf8 to source transcoding
                   10418: 
                   10419:        * src/targets/cgi/parser3.C 1.193:
                   10420:                -f config file
                   10421: 
                   10422:        * src/targets/cgi/Makefile.am 1.42:
                   10423:        * src/targets/cgi/fixopt.C 1.3:
                   10424:        * src/targets/cgi/fixopt.h 1.2:
                   10425:        * src/targets/cgi/parser3.C 1.195:
                   10426:                removed fixopt stupidity. on stupid linux use
                   10427:                cd /document/root
                   10428:                ../cgi/parser3 script
                   10429: 
                   10430:        * src/targets/cgi/Makefile.in 1.52:
                   10431:        * src/targets/cgi/Makefile.in 1.53:
                   10432:                *** empty log message ***
                   10433: 
                   10434:        * src/targets/cgi/parser3.C 1.192:
                   10435:        * www/htdocs/auto.p 1.17:
                   10436:        * www/htdocs/derived.p 1.11:
                   10437:        * www/htdocs/index.html 1.109:
                   10438:                fixed .log file dir
                   10439: 
                   10440: 2002-08-13  paf
                   10441:        * www/htdocs/derived.p 1.7:
                   10442:                sample: dont convinient that table fields can be overridden
                   10443: 
                   10444:        * src/types/Makefile.in 1.43:
                   10445:                added vobject.c & vclass
                   10446: 
                   10447:        * src/types/Makefile.in 1.42:
                   10448:                VAliased removed
                   10449: 
                   10450:        * src/types/pa_vclass.C 1.9:
                   10451:        * www/htdocs/derived.p 1.9:
                   10452:                checked: form[vclass]fields can be overwritten in derived(table)
                   10453: 
                   10454:        * src/types/Makefile.am 1.26:
                   10455:        * src/types/pa_vclass.C 1.7:
                   10456:        * src/types/pa_vclass.h 1.34:
                   10457:        * src/types/pa_vobject.C 1.1:
                   10458:        * src/types/pa_vobject.h 1.29:
                   10459:        * src/types/types.dsp 1.32:
                   10460:                reorganized modules
                   10461:                todo: fix bug with put endless recoursion
                   10462:                todo: check 'as'
                   10463: 
                   10464:        * src/types/pa_vclass.C 1.10:
                   10465:        * www/htdocs/index.html 1.107:
                   10466:                allow override parent variables, useful for form descendants
                   10467: 
                   10468:        * src/types/pa_vobject.C 1.4:
                   10469:        * www/htdocs/derived.p 1.10:
                   10470:        * www/htdocs/index.html 1.108:
                   10471:                allow override parent variables, useful for form descendants [
                   10472:                in vobject too, were in vclass]
                   10473: 
                   10474:        * src/classes/form.C 1.30:
                   10475:        * src/classes/mail.C 1.78:
                   10476:        * src/classes/op.C 1.103:
                   10477:        * src/classes/xnode.h 1.15:
                   10478:        * src/include/pa_request.h 1.144:
                   10479:        * src/main/execute.C 1.252:
                   10480:        * src/main/pa_request.C 1.226:
                   10481:        * src/types/pa_value.h 1.94:
                   10482:        * src/types/pa_vclass.C 1.8:
                   10483:        * src/types/pa_vclass.h 1.35:
                   10484:        * src/types/pa_vcode_frame.h 1.20:
                   10485:        * src/types/pa_vcookie.C 1.47:
                   10486:        * src/types/pa_vcookie.h 1.20:
                   10487:        * src/types/pa_vdate.h 1.16:
                   10488:        * src/types/pa_venv.h 1.25:
                   10489:        * src/types/pa_vfile.h 1.48:
                   10490:        * src/types/pa_vform.C 1.64:
                   10491:        * src/types/pa_vform.h 1.39:
                   10492:        * src/types/pa_vhash.h 1.37:
                   10493:        * src/types/pa_vimage.h 1.30:
                   10494:        * src/types/pa_vmail.C 1.20:
                   10495:        * src/types/pa_vmail.h 1.5:
                   10496:        * src/types/pa_vmath.h 1.11:
                   10497:        * src/types/pa_vmethod_frame.h 1.33:
                   10498:        * src/types/pa_vobject.C 1.3:
                   10499:        * src/types/pa_vobject.h 1.30:
                   10500:        * src/types/pa_vrequest.C 1.22:
                   10501:        * src/types/pa_vrequest.h 1.22:
                   10502:        * src/types/pa_vresponse.C 1.9:
                   10503:        * src/types/pa_vresponse.h 1.27:
                   10504:        * src/types/pa_vstateless_class.h 1.33:
                   10505:        * src/types/pa_vstateless_object.h 1.24:
                   10506:        * src/types/pa_vstatus.C 1.11:
                   10507:        * src/types/pa_vstatus.h 1.12:
                   10508:        * src/types/pa_vstring.h 1.51:
                   10509:        * src/types/pa_vtable.C 1.18:
                   10510:        * src/types/pa_vtable.h 1.44:
                   10511:        * src/types/pa_vvoid.h 1.13:
                   10512:        * src/types/pa_vxdoc.C 1.17:
                   10513:        * src/types/pa_vxdoc.h 1.27:
                   10514:        * src/types/pa_vxnode.C 1.22:
                   10515:        * src/types/pa_vxnode.h 1.19:
                   10516:        * src/types/pa_wwrapper.h 1.23:
                   10517:                introduced Value::get_element(..., bool looking_down) [needed
                   10518:                to exclude endless recoursion]
                   10519: 
                   10520:        * src/classes/table.C 1.159:
                   10521:        * src/types/pa_vtable.C 1.17:
                   10522:        * src/types/pa_vtable.h 1.43:
                   10523:        * www/htdocs/derived.p 1.5:
                   10524:                fixed error message on using non-created table
                   10525: 
                   10526:        * src/classes/form.C 1.29:
                   10527:        * src/classes/hash.C 1.44:
                   10528:        * src/classes/mail.C 1.77:
                   10529:        * src/classes/op.C 1.102:
                   10530:        * src/classes/xnode.h 1.14:
                   10531:        * src/include/pa_request.h 1.143:
                   10532:        * src/main/compile.C 1.66:
                   10533:        * src/main/compile.tab.C 1.60:
                   10534:        * src/main/execute.C 1.251:
                   10535:        * src/main/pa_request.C 1.225:
                   10536:        * src/types/pa_value.h 1.93:
                   10537:        * src/types/pa_vclass.h 1.33:
                   10538:        * src/types/pa_vcode_frame.h 1.19:
                   10539:        * src/types/pa_vcookie.C 1.46:
                   10540:        * src/types/pa_vcookie.h 1.19:
                   10541:        * src/types/pa_vdate.h 1.15:
                   10542:        * src/types/pa_venv.h 1.24:
                   10543:        * src/types/pa_vfile.h 1.47:
                   10544:        * src/types/pa_vform.C 1.63:
                   10545:        * src/types/pa_vform.h 1.38:
                   10546:        * src/types/pa_vhash.h 1.36:
                   10547:        * src/types/pa_vimage.C 1.20:
                   10548:        * src/types/pa_vimage.h 1.29:
                   10549:        * src/types/pa_vmail.C 1.19:
                   10550:        * src/types/pa_vmail.h 1.4:
                   10551:        * src/types/pa_vmath.h 1.10:
                   10552:        * src/types/pa_vmethod_frame.h 1.32:
                   10553:        * src/types/pa_vobject.h 1.26:
                   10554:        * src/types/pa_vrequest.C 1.20:
                   10555:        * src/types/pa_vrequest.h 1.20:
                   10556:        * src/types/pa_vresponse.C 1.8:
                   10557:        * src/types/pa_vresponse.h 1.26:
                   10558:        * src/types/pa_vstateless_class.h 1.32:
                   10559:        * src/types/pa_vstateless_object.h 1.23:
                   10560:        * src/types/pa_vstatus.C 1.10:
                   10561:        * src/types/pa_vstatus.h 1.11:
                   10562:        * src/types/pa_vstring.h 1.50:
                   10563:        * src/types/pa_vtable.C 1.16:
                   10564:        * src/types/pa_vtable.h 1.42:
                   10565:        * src/types/pa_vvoid.h 1.12:
                   10566:        * src/types/pa_vxdoc.C 1.16:
                   10567:        * src/types/pa_vxdoc.h 1.26:
                   10568:        * src/types/pa_vxnode.C 1.21:
                   10569:        * src/types/pa_vxnode.h 1.18:
                   10570:        * src/types/pa_wwrapper.h 1.22:
                   10571:        * www/htdocs/derived.p 1.4:
                   10572:                VObject.get/out now looking down/up tree
                   10573:                todo: fix error message on non-constructed parents
                   10574: 
                   10575:        * src/types/pa_vobject.h 1.28:
                   10576:        * www/htdocs/derived.p 1.8:
                   10577:                checked: table fields can be overwritten in derived(table)
                   10578: 
                   10579:        * src/types/pa_vobject.h 1.27:
                   10580:        * www/htdocs/derived.p 1.6:
                   10581:        * www/htdocs/index.html 1.106:
                   10582:                derived classes can have fields of their own now
                   10583: 
                   10584: 2002-08-12  paf
                   10585:        * src/main/compile.tab.C 1.59:
                   10586:        * src/main/compile.y 1.188:
                   10587:        * src/main/execute.C 1.249:
                   10588:        * src/main/execute.C 1.250:
                   10589:        * src/main/pa_request.C 1.224:
                   10590:        * src/types/Makefile.am 1.25:
                   10591:        * src/types/pa_valiased.C 1.17:
                   10592:        * src/types/pa_valiased.h 1.23:
                   10593:        * src/types/pa_value.h 1.92:
                   10594:        * src/types/pa_vclass.h 1.32:
                   10595:        * src/types/pa_vobject.h 1.25:
                   10596:        * src/types/pa_vstateless_class.h 1.30:
                   10597:        * src/types/pa_vstateless_object.h 1.21:
                   10598:        * src/types/pa_wcontext.h 1.37:
                   10599:                ^base:create[] dynamic call rewritten
                   10600:                todo: thorough testing
                   10601: 
                   10602:        * src/types/pa_value.h 1.91:
                   10603:        * src/types/pa_vclass.h 1.31:
                   10604:        * src/types/pa_vobject.h 1.24:
                   10605:        * www/htdocs/base.p 1.1:
                   10606:        * www/htdocs/derived.p 1.1:
                   10607:                VObject ctor now instantates base class, remembers it and saves child in parent
                   10608:                VObject.get_class now returns last child = downward virtual calls OK
                   10609: 
                   10610:        * src/types/pa_vstateless_class.h 1.31:
                   10611:        * src/types/pa_vstateless_object.h 1.22:
                   10612:        * www/htdocs/derived.p 1.3:
                   10613:                table derived OK
                   10614: 
                   10615:        * src/main/pa_request.C 1.223:
                   10616:                response:body[file] content-type check fixed [were bad when
                   10617:                content-type is hash]
                   10618: 
                   10619:        * bin/auto.p.dist.in 1.5:
                   10620:                fixed sendmail default comment
                   10621: 
                   10622:        * src/main/execute.C 1.248:
                   10623:        * src/types/pa_value.h 1.90:
                   10624:        * src/types/pa_vclass.h 1.30:
                   10625:        * src/types/pa_vdate.h 1.14:
                   10626:        * src/types/pa_vdouble.h 1.40:
                   10627:        * src/types/pa_vfile.h 1.46:
                   10628:        * src/types/pa_vimage.h 1.28:
                   10629:        * src/types/pa_vint.h 1.37:
                   10630:        * src/types/pa_vmethod_frame.h 1.31:
                   10631:        * src/types/pa_vobject.h 1.23:
                   10632:        * src/types/pa_vresponse.h 1.25:
                   10633:        * src/types/pa_vstateless_class.h 1.29:
                   10634:        * src/types/pa_vstateless_object.h 1.20:
                   10635:        * src/types/pa_vstring.h 1.49:
                   10636:        * src/types/pa_vtable.h 1.41:
                   10637:        * src/types/pa_vxdoc.h 1.25:
                   10638:        * src/types/pa_vxnode.h 1.17:
                   10639:        * src/types/pa_wcontext.h 1.36:
                   10640:        * src/types/types.dsp 1.31:
                   10641:        * www/htdocs/index.html 1.105:
                   10642:                killed VAliased [redundant], moved $CLASS to VObject only [
                   10643:                parser class instance]
                   10644: 
                   10645:        * bin/auto.p.dist.in 1.6:
                   10646:                more like in dist on parser.ru
                   10647: 
                   10648:        * www/htdocs/base.p 1.2:
                   10649:        * www/htdocs/derived.p 1.2:
                   10650:                not good - along upward-virtual call self eq child
                   10651: 
                   10652: 2002-08-09  paf
                   10653:        * src/main/execute.C 1.247:
                   10654:        * src/types/pa_value.h 1.89:
                   10655:        * src/types/pa_vclass.h 1.29:
                   10656:        * src/types/pa_vobject.h 1.22:
                   10657:        * src/types/pa_vxdoc.h 1.24:
                   10658:        * www/htdocs/index.html 1.104:
                   10659:                started as()
                   10660: 
                   10661: 2002-08-08  paf
                   10662:        * src/classes/mail.C 1.76:
                   10663:        * src/types/pa_vmail.C 1.18:
                   10664:        * www/htdocs/auto.p 1.16:
                   10665:        * www/htdocs/index.html 1.98:
                   10666:                in letter texts one can use tainted data now. only she must specify the language.
                   10667:                
                   10668:                ^mail:send[
                   10669:                        $.from[paf@mail.design.ru]
                   10670:                        $.to[paf@mail.design.ru]
                   10671:                        $.subject[^taint[uri][ìîñêâà]=2]
                   10672:                        $.text[^taint[uri][ìîñêâà]=]
                   10673:                ]
                   10674: 
                   10675:        * operators.txt 1.67:
                   10676:        * src/include/pa_string.h 1.142:
                   10677:        * src/include/pa_string.h 1.143:
                   10678:        * src/main/pa_string.C 1.168:
                   10679:        * www/htdocs/index.html 1.95:
                   10680:                String::first_char now not fails on empty strings
                   10681:                ^if(-f '') now ok and in 3 other places.
                   10682: 
                   10683:        * src/classes/file.C 1.95:
                   10684:        * src/classes/op.C 1.101:
                   10685:        * src/types/pa_vfile.C 1.33:
                   10686:        * www/htdocs/index.html 1.96:
                   10687:        * www/htdocs/index.html 1.97:
                   10688:                ^process now prints more precise origin
                   10689: 
                   10690:        * operators.txt 1.68:
                   10691:        * src/types/pa_vdate.h 1.13:
                   10692:        * www/htdocs/index.html 1.99:
                   10693:                $date.yearday
                   10694:                $date.daylightsaving
                   10695: 
                   10696:        * src/main/execute.C 1.246:
                   10697:        * www/htdocs/index.html 1.100:
                   10698:                error reporting on object writes to MAIN improved [were ruind
                   10699:                with fixing $obj[^if(1){$obj}] ]
                   10700: 
                   10701:        * operators.txt 1.69:
                   10702:        * operators.txt 1.70:
                   10703:        * src/classes/date.C 1.36:
                   10704:        * src/include/pa_globals.h 1.94:
                   10705:        * src/main/pa_globals.C 1.137:
                   10706:        * www/htdocs/index.html 1.101:
                   10707:        * www/htdocs/index.html 1.102:
                   10708:                year column in month calendar [week year]
                   10709: 
                   10710: 2002-08-07  paf
                   10711:        * src/classes/classes.dsp 1.24:
                   10712:        * src/classes/table.C 1.158:
                   10713:        * src/lib/pcre/pcre_parser_ctype.dsp 1.2:
                   10714:        * src/main/pa_array.C 1.52:
                   10715:        * src/types/types.dsp 1.30:
                   10716:        * www/htdocs/index.html 1.91:
                   10717:                all Debug dirs in .dsp now named 'Debug'
                   10718: 
                   10719:        * src/classes/string.C 1.116:
                   10720:        * src/main/pa_string.C 1.166:
                   10721:        * src/main/pa_string.C 1.167:
                   10722:        * www/htdocs/index.html 1.93:
                   10723:        * www/htdocs/index.html 1.94:
                   10724:                ^string.mid(0;bad) fixed
                   10725: 
                   10726:        * operators.txt 1.66:
                   10727:        * src/classes/op.C 1.100:
                   10728:                cache...{...^cache<<to past...} now erasing cache file [there
                   10729:                were bad check on that]
                   10730: 
                   10731:        * operators.txt 1.65:
                   10732:        * src/classes/mail.C 1.75:
                   10733:                exception_type  email.send
                   10734: 
                   10735:        * src/types/pa_vmail.C 1.16:
                   10736:        * www/htdocs/global.xsl 1.8:
                   10737:        * www/htdocs/index.html 1.89:
                   10738:                mail:send empty  email checked
                   10739: 
                   10740:        * src/main/execute.C 1.245:
                   10741:        * src/types/pa_vcode_frame.h 1.17:
                   10742:        * src/types/pa_vcode_frame.h 1.18:
                   10743:        * src/types/pa_vmethod_frame.h 1.30:
                   10744:        * src/types/pa_wcontext.C 1.22:
                   10745:        * src/types/pa_wcontext.h 1.35:
                   10746:        * src/types/pa_wwrapper.h 1.21:
                   10747:        * www/htdocs/index.html 1.92:
                   10748:                vcodeframe were mistakenly not completely transparent to object writes.
                   10749:                $hash[^if(1){$hash}] now works
                   10750: 
                   10751:        * operators.txt 1.64:
                   10752:        * src/types/pa_vmail.C 1.17:
                   10753:        * www/htdocs/index.html 1.90:
                   10754:                exception_type  email.format
                   10755: 
                   10756:        * etc/parser3.charsets/Makefile.am [release_3_0_0005] 1.3.6.1:
                   10757:        * etc/parser3.charsets/Makefile.in [release_3_0_0005] 1.11.4.1:
                   10758:                all included into dist
                   10759: 
                   10760: 2002-08-06  paf
                   10761:        * src/classes/file.C 1.93:
                   10762:        * src/include/pa_globals.h 1.93:
                   10763:        * src/main/pa_globals.C 1.136:
                   10764:        * src/main/pa_request.C 1.222:
                   10765:        * src/types/pa_vfile.C 1.32:
                   10766:        * src/types/pa_vfile.h 1.45:
                   10767:        * www/htdocs/index.html 1.85:
                   10768:                $file.content-type [instead of .mime-type]
                   10769:                now works for file::stat also
                   10770: 
                   10771:        * src/main/pa_request.C 1.221:
                   10772:        * www/htdocs/index.html 1.84:
                   10773:                case insensitive mime_type_of
                   10774: 
                   10775:        * src/classes/file.C 1.94:
                   10776:        * www/htdocs/index.html 1.86:
                   10777:                $f[file::cgi]
                   10778:                $f.UPPER case fields
                   10779: 
                   10780:        * operators.txt 1.62:
                   10781:        * operators.txt 1.63:
                   10782:        * src/classes/table.C 1.157:
                   10783:        * src/include/pa_array.h 1.56:
                   10784:        * src/include/pa_table.h 1.47:
                   10785:        * src/main/pa_array.C 1.51:
                   10786:        * src/main/pa_table.C 1.50:
                   10787:        * www/htdocs/index.html 1.88:
                   10788:                ^table::create[$source;$.options]
                   10789:                ^table::join[$source;$.options]
                   10790: 
                   10791:        * bin/auto.p.dist.in 1.4:
                   10792:                jpeg
                   10793: 
                   10794:        * operators.txt 1.61:
                   10795:        * src/classes/hash.C 1.43:
                   10796:        * src/classes/string.C 1.115:
                   10797:        * src/classes/table.C 1.156:
                   10798:        * www/htdocs/index.html 1.87:
                   10799:                sql options can be string now
                   10800:                ^xxx:sql{...}[
                   10801:                #  $.default()
                   10802:                }
                   10803: 
                   10804: 2002-08-05  paf
                   10805:        * src/classes/date.C 1.34:
                   10806:        * src/include/pa_globals.h 1.92:
                   10807:        * src/main/pa_globals.C 1.135:
                   10808:                month calendar week column [ISO 8601 Week Numbers]
                   10809: 
                   10810:        * operators.txt 1.60:
                   10811:                comment on date:calendar week column
                   10812: 
                   10813:        * src/types/pa_vxnode.C 1.20:
                   10814:                xnode.childNodes  now 0... [were 1...]
                   10815: 
                   10816:        * src/main/pa_common.C 1.113:
                   10817:        * src/main/pa_common.C 1.114:
                   10818:        * src/main/pa_common.C 1.115:
                   10819:        * src/main/pa_common.C 1.116:
                   10820:                write checked
                   10821: 
                   10822:        * src/types/pa_vmail.C 1.15:
                   10823:                file buffer relocated to parser heap
                   10824: 
                   10825:        * src/classes/date.C 1.35:
                   10826:                +1 buf size for stupid snprintfs
                   10827: 
                   10828: 2002-08-02  paf
                   10829:        * operators.txt 1.59:
                   10830:        * src/main/pa_request.C 1.220:
                   10831:        * src/types/pa_vform.C 1.61:
                   10832:        * www/htdocs/index.html 1.83:
                   10833:                response transcoded source->client only when text/* or simple
                   10834:                onoverridden $response:body
                   10835: 
                   10836:        * src/include/pa_config_fixed.h [release_3_0_0005] 1.48.2.1:
                   10837:        * src/main/pa_string.C [release_3_0_0005] 1.165.2.1:
                   10838:        * src/targets/cgi/getopt.c [release_3_0_0005] 1.1.4.1:
                   10839:        * src/targets/cgi/parser3.C [release_3_0_0005] 1.190.2.1:
                   10840:                removed #define DEBUG*
                   10841: 
                   10842:        * src/Makefile.in 1.50:
                   10843:        * src/classes/Makefile.in 1.48:
                   10844:        * src/main/Makefile.in 1.44:
                   10845:        * src/targets/apache13/Makefile.in 1.37:
                   10846:        * src/targets/cgi/Makefile.in 1.51:
                   10847:        * src/types/Makefile.in 1.41:
                   10848:                *** empty log message ***
                   10849: 
                   10850:        * src/types/pa_vclass.h 1.28:
                   10851:        * src/types/pa_vform.C 1.62:
                   10852:        * src/types/pa_vobject.h 1.21:
                   10853:                opera multipart post fixed
                   10854: 
                   10855:        * configure [release_3_0_0005] 1.35.2.1:
                   10856:        * configure.in [release_3_0_0005] 1.36.2.1:
                   10857:        * src/include/pa_version.h [release_3_0_0005] 1.7.2.1:
                   10858:                release 3_0_0005
                   10859: 
                   10860:        * bin/auto.p.dist.in [release_3_0_0005] 1.3.4.1:
                   10861:                unhandled_exception comments
                   10862: 
                   10863: 2002-08-01  paf
                   10864:        * src/classes/classes.C 1.17:
                   10865:        * src/classes/classes.h 1.21:
                   10866:        * src/classes/date.C 1.33:
                   10867:        * src/classes/double.C 1.49:
                   10868:        * src/classes/file.C 1.92:
                   10869:        * src/classes/form.C 1.28:
                   10870:        * src/classes/hash.C 1.42:
                   10871:        * src/classes/image.C 1.74:
                   10872:        * src/classes/int.C 1.46:
                   10873:        * src/classes/mail.C 1.74:
                   10874:        * src/classes/math.C 1.23:
                   10875:        * src/classes/op.C 1.99:
                   10876:        * src/classes/response.C 1.21:
                   10877:        * src/classes/string.C 1.114:
                   10878:        * src/classes/table.C 1.155:
                   10879:        * src/classes/void.C 1.21:
                   10880:        * src/classes/xdoc.C 1.97:
                   10881:        * src/classes/xnode.C 1.47:
                   10882:        * src/classes/xnode.h 1.13:
                   10883:        * src/include/pa_array.h 1.55:
                   10884:        * src/include/pa_cache_managers.h 1.8:
                   10885:        * src/include/pa_charset.h 1.18:
                   10886:        * src/include/pa_charsets.h 1.7:
                   10887:        * src/include/pa_common.h 1.79:
                   10888:        * src/include/pa_config_fixed.h 1.48:
                   10889:        * src/include/pa_dictionary.h 1.12:
                   10890:        * src/include/pa_dir.h 1.12:
                   10891:        * src/include/pa_exception.h 1.37:
                   10892:        * src/include/pa_exec.h 1.10:
                   10893:        * src/include/pa_globals.h 1.91:
                   10894:        * src/include/pa_hash.h 1.57:
                   10895:        * src/include/pa_opcode.h 1.20:
                   10896:        * src/include/pa_pool.h 1.83:
                   10897:        * src/include/pa_request.h 1.142:
                   10898:        * src/include/pa_sapi.h 1.21:
                   10899:        * src/include/pa_socks.h 1.10:
                   10900:        * src/include/pa_sql_connection.h 1.26:
                   10901:        * src/include/pa_sql_driver_manager.h 1.25:
                   10902:        * src/include/pa_stack.h 1.16:
                   10903:        * src/include/pa_string.h 1.141:
                   10904:        * src/include/pa_stylesheet_connection.h 1.30:
                   10905:        * src/include/pa_stylesheet_manager.h 1.14:
                   10906:        * src/include/pa_table.h 1.46:
                   10907:        * src/include/pa_threads.h 1.25:
                   10908:        * src/include/pa_types.h 1.43:
                   10909:        * src/include/pa_uue.h 1.3:
                   10910:        * src/lib/md5/pa_md5.h 1.4:
                   10911:        * src/lib/md5/pa_md5c.c 1.5:
                   10912:        * src/lib/pcre/pcre_parser_ctype.c 1.2:
                   10913:        * src/main/compile.C 1.65:
                   10914:        * src/main/compile.tab.C 1.58:
                   10915:        * src/main/compile_tools.C 1.52:
                   10916:        * src/main/compile_tools.h 1.63:
                   10917:        * src/main/execute.C 1.244:
                   10918:        * src/main/pa_array.C 1.50:
                   10919:        * src/main/pa_cache_managers.C 1.6:
                   10920:        * src/main/pa_charset.C 1.28:
                   10921:        * src/main/pa_charsets.C 1.10:
                   10922:        * src/main/pa_common.C 1.112:
                   10923:        * src/main/pa_dictionary.C 1.16:
                   10924:        * src/main/pa_dir.C 1.13:
                   10925:        * src/main/pa_exception.C 1.42:
                   10926:        * src/main/pa_exec.C 1.39:
                   10927:        * src/main/pa_globals.C 1.134:
                   10928:        * src/main/pa_hash.C 1.52:
                   10929:        * src/main/pa_pool.C 1.55:
                   10930:        * src/main/pa_request.C 1.219:
                   10931:        * src/main/pa_socks.C 1.16:
                   10932:        * src/main/pa_sql_driver_manager.C 1.64:
                   10933:        * src/main/pa_string.C 1.165:
                   10934:        * src/main/pa_stylesheet_manager.C 1.15:
                   10935:        * src/main/pa_table.C 1.49:
                   10936:        * src/main/pa_uue.C 1.3:
                   10937:        * src/main/untaint.C 1.104:
                   10938:        * src/sql/pa_sql_driver.h 1.28:
                   10939:        * src/targets/apache13/mod_parser3.C 1.26:
                   10940:        * src/targets/apache13/pa_md5c.c 1.4:
                   10941:        * src/targets/apache13/pa_pool.C 1.7:
                   10942:        * src/targets/apache13/pa_threads.C 1.10:
                   10943:        * src/targets/cgi/pa_pool.C 1.40:
                   10944:        * src/targets/cgi/pa_threads.C 1.11:
                   10945:        * src/targets/cgi/parser3.C 1.190:
                   10946:        * src/targets/cgi/pool_storage.h 1.12:
                   10947:        * src/targets/isapi/pa_pool.C 1.15:
                   10948:        * src/targets/isapi/pa_threads.C 1.12:
                   10949:        * src/targets/isapi/parser3isapi.C 1.78:
                   10950:        * src/targets/isapi/pool_storage.h 1.18:
                   10951:        * src/types/pa_valiased.C 1.16:
                   10952:        * src/types/pa_valiased.h 1.22:
                   10953:        * src/types/pa_value.C 1.3:
                   10954:        * src/types/pa_value.h 1.88:
                   10955:        * src/types/pa_vbool.h 1.20:
                   10956:        * src/types/pa_vclass.h 1.27:
                   10957:        * src/types/pa_vcode_frame.h 1.16:
                   10958:        * src/types/pa_vcookie.C 1.45:
                   10959:        * src/types/pa_vcookie.h 1.18:
                   10960:        * src/types/pa_vdate.h 1.12:
                   10961:        * src/types/pa_vdouble.h 1.39:
                   10962:        * src/types/pa_venv.h 1.23:
                   10963:        * src/types/pa_vfile.C 1.31:
                   10964:        * src/types/pa_vfile.h 1.44:
                   10965:        * src/types/pa_vform.C 1.60:
                   10966:        * src/types/pa_vform.h 1.37:
                   10967:        * src/types/pa_vhash.h 1.35:
                   10968:        * src/types/pa_vimage.C 1.19:
                   10969:        * src/types/pa_vimage.h 1.27:
                   10970:        * src/types/pa_vint.h 1.36:
                   10971:        * src/types/pa_vjunction.h 1.15:
                   10972:        * src/types/pa_vmail.C 1.14:
                   10973:        * src/types/pa_vmail.h 1.3:
                   10974:        * src/types/pa_vmath.h 1.9:
                   10975:        * src/types/pa_vmethod_frame.h 1.29:
                   10976:        * src/types/pa_vobject.h 1.20:
                   10977:        * src/types/pa_vrequest.C 1.19:
                   10978:        * src/types/pa_vrequest.h 1.19:
                   10979:        * src/types/pa_vresponse.C 1.7:
                   10980:        * src/types/pa_vresponse.h 1.24:
                   10981:        * src/types/pa_vstateless_class.C 1.15:
                   10982:        * src/types/pa_vstateless_class.h 1.28:
                   10983:        * src/types/pa_vstateless_object.h 1.19:
                   10984:        * src/types/pa_vstatus.C 1.9:
                   10985:        * src/types/pa_vstatus.h 1.10:
                   10986:        * src/types/pa_vstring.C 1.21:
                   10987:        * src/types/pa_vstring.h 1.48:
                   10988:        * src/types/pa_vtable.C 1.15:
                   10989:        * src/types/pa_vtable.h 1.40:
                   10990:        * src/types/pa_vvoid.h 1.11:
                   10991:        * src/types/pa_vxdoc.C 1.15:
                   10992:        * src/types/pa_vxdoc.h 1.23:
                   10993:        * src/types/pa_vxnode.C 1.19:
                   10994:        * src/types/pa_vxnode.h 1.16:
                   10995:        * src/types/pa_wcontext.C 1.21:
                   10996:        * src/types/pa_wcontext.h 1.34:
                   10997:        * src/types/pa_wwrapper.h 1.20:
1.26      paf      10998:                $Date: now$
1.15      paf      10999: 
                   11000:        * src/Makefile.am 1.17:
                   11001:        * src/classes/Makefile.am 1.40:
                   11002:        * src/classes/classes.C 1.16:
                   11003:        * src/classes/classes.dsp 1.23:
                   11004:        * src/classes/classes.h 1.20:
                   11005:        * src/classes/date.C 1.32:
                   11006:        * src/classes/double.C 1.48:
                   11007:        * src/classes/file.C 1.91:
                   11008:        * src/classes/form.C 1.27:
                   11009:        * src/classes/hash.C 1.41:
                   11010:        * src/classes/image.C 1.73:
                   11011:        * src/classes/int.C 1.45:
                   11012:        * src/classes/mail.C 1.73:
                   11013:        * src/classes/math.C 1.22:
                   11014:        * src/classes/op.C 1.98:
                   11015:        * src/classes/response.C 1.20:
                   11016:        * src/classes/string.C 1.113:
                   11017:        * src/classes/table.C 1.154:
                   11018:        * src/classes/void.C 1.20:
                   11019:        * src/classes/xdoc.C 1.96:
                   11020:        * src/classes/xnode.C 1.46:
                   11021:        * src/classes/xnode.h 1.12:
                   11022:        * src/include/pa_array.h 1.54:
                   11023:        * src/include/pa_cache_managers.h 1.7:
                   11024:        * src/include/pa_charset.h 1.17:
                   11025:        * src/include/pa_charsets.h 1.6:
                   11026:        * src/include/pa_common.h 1.78:
                   11027:        * src/include/pa_config_fixed.h 1.47:
                   11028:        * src/include/pa_config_includes.h 1.20:
                   11029:        * src/include/pa_dictionary.h 1.11:
                   11030:        * src/include/pa_dir.h 1.11:
                   11031:        * src/include/pa_exception.h 1.36:
                   11032:        * src/include/pa_exec.h 1.9:
                   11033:        * src/include/pa_globals.h 1.90:
                   11034:        * src/include/pa_hash.h 1.56:
                   11035:        * src/include/pa_opcode.h 1.19:
                   11036:        * src/include/pa_pool.h 1.82:
                   11037:        * src/include/pa_pragma_pack_begin.h 1.5:
                   11038:        * src/include/pa_pragma_pack_end.h 1.5:
                   11039:        * src/include/pa_request.h 1.141:
                   11040:        * src/include/pa_sapi.h 1.20:
                   11041:        * src/include/pa_socks.h 1.9:
                   11042:        * src/include/pa_sql_connection.h 1.25:
                   11043:        * src/include/pa_sql_driver_manager.h 1.24:
                   11044:        * src/include/pa_stack.h 1.15:
                   11045:        * src/include/pa_string.h 1.140:
                   11046:        * src/include/pa_stylesheet_connection.h 1.29:
                   11047:        * src/include/pa_stylesheet_manager.h 1.13:
                   11048:        * src/include/pa_table.h 1.45:
                   11049:        * src/include/pa_threads.h 1.24:
                   11050:        * src/include/pa_types.h 1.42:
                   11051:        * src/include/pa_uue.h 1.2:
                   11052:        * src/lib/md5/pa_md5.h 1.3:
                   11053:        * src/lib/md5/pa_md5c.c 1.4:
                   11054:        * src/main/Makefile.am 1.34:
                   11055:        * src/main/compile.C 1.64:
                   11056:        * src/main/compile_tools.C 1.51:
                   11057:        * src/main/compile_tools.h 1.62:
                   11058:        * src/main/execute.C 1.243:
                   11059:        * src/main/main.dsp 1.157:
                   11060:        * src/main/pa_array.C 1.49:
                   11061:        * src/main/pa_cache_managers.C 1.5:
                   11062:        * src/main/pa_charset.C 1.27:
                   11063:        * src/main/pa_charsets.C 1.9:
                   11064:        * src/main/pa_common.C 1.111:
                   11065:        * src/main/pa_dictionary.C 1.15:
                   11066:        * src/main/pa_dir.C 1.12:
                   11067:        * src/main/pa_exception.C 1.41:
                   11068:        * src/main/pa_exec.C 1.38:
                   11069:        * src/main/pa_globals.C 1.133:
                   11070:        * src/main/pa_hash.C 1.51:
                   11071:        * src/main/pa_pool.C 1.54:
                   11072:        * src/main/pa_request.C 1.218:
                   11073:        * src/main/pa_socks.C 1.15:
                   11074:        * src/main/pa_sql_driver_manager.C 1.63:
                   11075:        * src/main/pa_string.C 1.164:
                   11076:        * src/main/pa_stylesheet_manager.C 1.14:
                   11077:        * src/main/pa_table.C 1.48:
                   11078:        * src/main/pa_uue.C 1.2:
                   11079:        * src/main/untaint.C 1.103:
                   11080:        * src/sql/pa_sql_driver.h 1.27:
                   11081:        * src/targets/apache13/ApacheModuleParser3.dsp 1.16:
                   11082:        * src/targets/apache13/Makefile.am 1.13:
                   11083:        * src/targets/apache13/mod_parser3.C 1.25:
                   11084:        * src/targets/apache13/pa_md5c.c 1.3:
                   11085:        * src/targets/apache13/pa_pool.C 1.6:
                   11086:        * src/targets/apache13/pa_threads.C 1.9:
                   11087:        * src/targets/cgi/Makefile.am 1.40:
                   11088:        * src/targets/cgi/pa_pool.C 1.39:
                   11089:        * src/targets/cgi/pa_threads.C 1.10:
                   11090:        * src/targets/cgi/parser3.C 1.189:
                   11091:        * src/targets/cgi/parser3.dsp 1.54:
                   11092:        * src/targets/cgi/pool_storage.h 1.11:
                   11093:        * src/targets/isapi/pa_pool.C 1.14:
                   11094:        * src/targets/isapi/pa_threads.C 1.11:
                   11095:        * src/targets/isapi/parser3isapi.C 1.77:
                   11096:        * src/targets/isapi/parser3isapi.dsp 1.41:
                   11097:        * src/targets/isapi/pool_storage.h 1.17:
                   11098:        * src/types/Makefile.am 1.24:
                   11099:        * src/types/pa_valiased.C 1.15:
                   11100:        * src/types/pa_valiased.h 1.21:
                   11101:        * src/types/pa_value.C 1.2:
                   11102:        * src/types/pa_value.h 1.87:
                   11103:        * src/types/pa_vbool.h 1.19:
                   11104:        * src/types/pa_vclass.h 1.26:
                   11105:        * src/types/pa_vcode_frame.h 1.15:
                   11106:        * src/types/pa_vcookie.C 1.44:
                   11107:        * src/types/pa_vcookie.h 1.17:
                   11108:        * src/types/pa_vdate.h 1.11:
                   11109:        * src/types/pa_vdouble.h 1.38:
                   11110:        * src/types/pa_venv.h 1.22:
                   11111:        * src/types/pa_vfile.C 1.30:
                   11112:        * src/types/pa_vfile.h 1.43:
                   11113:        * src/types/pa_vform.C 1.59:
                   11114:        * src/types/pa_vform.h 1.36:
                   11115:        * src/types/pa_vhash.h 1.34:
                   11116:        * src/types/pa_vimage.C 1.18:
                   11117:        * src/types/pa_vimage.h 1.26:
                   11118:        * src/types/pa_vint.h 1.35:
                   11119:        * src/types/pa_vjunction.h 1.14:
                   11120:        * src/types/pa_vmail.C 1.13:
                   11121:        * src/types/pa_vmail.h 1.2:
                   11122:        * src/types/pa_vmath.h 1.8:
                   11123:        * src/types/pa_vmethod_frame.h 1.28:
                   11124:        * src/types/pa_vobject.h 1.19:
                   11125:        * src/types/pa_vrequest.C 1.18:
                   11126:        * src/types/pa_vrequest.h 1.18:
                   11127:        * src/types/pa_vresponse.C 1.6:
                   11128:        * src/types/pa_vresponse.h 1.23:
                   11129:        * src/types/pa_vstateless_class.C 1.14:
                   11130:        * src/types/pa_vstateless_class.h 1.27:
                   11131:        * src/types/pa_vstateless_object.h 1.18:
                   11132:        * src/types/pa_vstatus.C 1.8:
                   11133:        * src/types/pa_vstatus.h 1.9:
                   11134:        * src/types/pa_vstring.C 1.20:
                   11135:        * src/types/pa_vstring.h 1.47:
                   11136:        * src/types/pa_vtable.C 1.14:
                   11137:        * src/types/pa_vtable.h 1.39:
                   11138:        * src/types/pa_vvoid.h 1.10:
                   11139:        * src/types/pa_vxdoc.C 1.14:
                   11140:        * src/types/pa_vxdoc.h 1.22:
                   11141:        * src/types/pa_vxnode.C 1.18:
                   11142:        * src/types/pa_vxnode.h 1.15:
                   11143:        * src/types/pa_wcontext.C 1.20:
                   11144:        * src/types/pa_wcontext.h 1.33:
                   11145:        * src/types/pa_wwrapper.h 1.19:
                   11146:        * src/types/types.dsp 1.29:
                   11147:                ident.C* removed
                   11148: 
                   11149:        * operators.txt 1.58:
                   11150:        * src/classes/file.C 1.90:
                   11151:        * src/main/pa_request.C 1.217:
1.24      paf      11152:        * www/cgi-bin/parser3.log 1.78:
1.15      paf      11153:                file:find[/can/do/this/now.txt]
                   11154: 
                   11155:        * src/targets/cgi/parser3.C 1.188:
                   11156:                usage to stdout now
                   11157: 
                   11158: 2002-07-31  paf
                   11159:        * src/classes/mail.C 1.72:
                   11160:        * src/types/pa_vmail.C 1.10:
                   11161:        * src/types/pa_vmail.C 1.11:
                   11162:        * src/types/pa_vmail.C 1.12:
                   11163:                mail:
                   11164:                errors-to: now default "postmaster"
                   11165: 
                   11166:        * src/classes/mail.C 1.70:
                   11167:        * src/types/pa_vmail.C 1.9:
1.24      paf      11168:        * www/cgi-bin/parser3.log 1.77:
1.15      paf      11169:                mail from/to now must be.
                   11170:                -f postmaster now default sendmail key
                   11171:                word "postmaster" replaced to $.from
                   11172: 
                   11173:        * src/classes/mail.C 1.71:
                   11174:                *** empty log message ***
                   11175: 
                   11176: 2002-07-30  paf
                   11177:        * src/main/pa_charset.C 1.25:
1.24      paf      11178:        * www/cgi-bin/parser3.log 1.76:
1.15      paf      11179:        * www/htdocs/auto.p 1.15:
                   11180:                UTF-8 to 1byte charset convert, no char in table, &#decimal;
                   11181: 
                   11182:        * Makefile.in 1.16:
                   11183:        * configure 1.35:
                   11184:        * configure.in 1.36:
                   11185:        * src/targets/cgi/Makefile.in 1.50:
                   11186:        * src/targets/cgi/pa_config_paths.h.in 1.2:
                   11187:        * src/targets/cgi/parser3.C 1.187:
                   11188:                removed pa_config_paths.h
                   11189: 
                   11190:        * src/main/pa_charset.C 1.26:
                   11191:        * src/main/pa_request.C 1.216:
                   11192:                comment
                   11193: 
                   11194:        * etc/parser3.charsets/windows-1251.cfg 1.6:
                   11195:                section sign [russian paragraf]
                   11196: 
                   11197: 2002-07-11  paf
                   11198:        * src/classes/mail.C 1.69:
                   11199:                $MAIL[
                   11200:                # xxx
                   11201:                ]
                   11202:                
                   11203:                now ok
                   11204: 
                   11205:        * operators.txt 1.57:
                   11206:                plan: sql detailed exception
                   11207: 
                   11208:        * src/main/pa_exec.C 1.36:
                   11209:                invalid .exe caused error message with params wich parser did not provide = reported badly.
                   11210:                fixed that.
                   11211: 
                   11212:        * src/main/pa_exec.C 1.37:
                   11213:                build command line badly added params twice [and first time
                   11214:                without ' ']. double wrong. fixed.
                   11215: 
                   11216: 2002-07-01  paf
                   11217:        * src/classes/form.C 1.26:
                   11218:        * src/main/pa_request.C 1.215:
                   11219:                conf bug fixed [MForm.configure_admin were called when request
                   11220:                main_class ==0
                   11221: 
                   11222:        * src/classes/form.C 1.24:
                   11223:                content_length type fix
                   11224: 
                   11225:        * src/classes/form.C 1.25:
                   11226:                10*0x400*400 bug fix [4M not 10M]
                   11227: 
                   11228: 2002-06-30  paf
                   11229:        * src/classes/mail.C 1.68:
                   11230:                merged from 4
                   11231: 
                   11232:        * src/classes/mail.C [release_3_0_0004] 1.67.2.1:
                   11233:                restored $MAIL
                   11234: 
                   11235: 2002-06-28  paf
                   11236:        * configure 1.32:
                   11237:        * operators.txt 1.56:
                   11238:        * src/classes/xdoc.C 1.95:
                   11239:        * src/include/pa_charset.h 1.16:
                   11240:        * src/include/pa_config_fixed.h 1.46:
                   11241:        * src/include/pa_pool.h 1.81:
                   11242:        * src/include/pa_version.h 1.6:
                   11243:        * src/main/pa_charset.C 1.24:
                   11244:        * src/main/pa_pool.C 1.53:
                   11245:        * src/targets/apache13/ApacheModuleParser3.dsp 1.15:
                   11246:        * src/targets/cgi/parser3.dsp 1.53:
                   11247:        * src/targets/isapi/parser3isapi.dsp 1.40:
                   11248:        * src/types/pa_vmail.C 1.8:
1.24      paf      11249:        * www/cgi-bin/parser3.log 1.75:
1.15      paf      11250:        * www/htdocs/index.html 1.82:
                   11251:                merged latest updates to head
                   11252: 
                   11253:        * configure 1.34:
                   11254:        * configure.in [release_3_0_0004] 1.35.2.2:
                   11255:                removed paths.h
                   11256: 
                   11257:        * Makefile.in 1.15:
                   11258:        * configure 1.33:
                   11259:        * src/include/pa_version.h 1.7:
                   11260:        * src/targets/cgi/pa_config_paths.h.in [release_3_0_0004] 1.1.8.1:
                   11261:                lates changes from 4 build merged, makes updated
                   11262: 
                   11263: 2002-06-27  paf
                   11264:        * src/classes/xdoc.C 1.94:
                   11265:        * www/htdocs/index.html 1.81:
                   11266:                xsltParseStylesheetDoc bug workaround
                   11267: 
                   11268:        * operators.txt [release_3_0_0004] 1.55.2.1:
                   11269:        * src/classes/xdoc.C [release_3_0_0004] 1.93.2.1:
                   11270:        * src/include/pa_charset.h [release_3_0_0004] 1.15.2.1:
                   11271:        * src/include/pa_config_fixed.h [release_3_0_0004] 1.45.2.2:
                   11272:        * src/include/pa_pool.h [release_3_0_0004] 1.80.4.1:
                   11273:        * src/main/pa_charset.C [release_3_0_0004] 1.23.8.1:
                   11274:        * src/main/pa_pool.C [release_3_0_0004] 1.52.8.1:
1.24      paf      11275:        * www/cgi-bin/parser3.log [release_3_0_0004] 1.74.2.1:
1.15      paf      11276:        * www/htdocs/index.html [release_3_0_0004] 1.80.2.1:
                   11277:                ^xdoc::create[[uri]]... base uri for document being created, imports and other relative file names would be relative to this uri
                   11278:                default uri=path_translated
                   11279: 
                   11280:        * src/targets/apache13/ApacheModuleParser3.dsp [release_3_0_0004] 1.14.2.1:
                   11281:        * src/targets/cgi/parser3.dsp [release_3_0_0004] 1.52.2.1:
                   11282:        * src/targets/isapi/parser3isapi.dsp [release_3_0_0004] 1.39.2.1:
                   11283:                post-build not error now
                   11284: 
                   11285: 2002-06-26  paf
                   11286:        * configure [release_3_0_0004] 1.31.2.1:
                   11287:        * configure.in [release_3_0_0004] 1.35.2.1:
                   11288:        * src/include/pa_version.h [release_3_0_0004] 1.5.4.1:
                   11289:                 release_3_0_0004
                   11290: 
                   11291:        * src/main/pa_string.C 1.162:
                   11292:                blank string '', ' <whitespace>' considered 0 now
                   11293: 
                   11294:        * src/lib/md5/Makefile.in 1.1:
                   11295:                *** empty log message ***
                   11296: 
                   11297:        * src/targets/cgi/parser3.C 1.186:
1.24      paf      11298:        * www/cgi-bin/parser3.log 1.74:
1.15      paf      11299:                /cgi-bin/parser empty filename checked
                   11300: 
                   11301: 2002-06-25  paf
                   11302:        * operators.txt 1.55:
                   11303:        * src/classes/xdoc.C 1.93:
1.24      paf      11304:        * www/cgi-bin/parser3.log 1.71:
                   11305:        * www/cgi-bin/parser3.log 1.72:
1.15      paf      11306:        * www/htdocs/index.html 1.78:
                   11307:        * www/htdocs/index.html 1.79:
                   11308:                ^xdoc.transform[xdoc <<can be now
                   11309: 
                   11310:        * bin/auto.p.dist.in 1.3:
                   11311:        * operators.txt 1.53:
                   11312:        * src/classes/math.C 1.20:
                   11313:        * src/types/pa_vmail.C 1.6:
1.24      paf      11314:        * www/cgi-bin/parser3.log 1.70:
1.15      paf      11315:        * www/htdocs/index.html 1.76:
                   11316:                math:crypt updated to generate random salt when needed and to
                   11317:                call system crypt() if not $apr1$ prefix
                   11318: 
                   11319:        * configure 1.31:
                   11320:        * configure.in 1.35:
                   11321:        * src/include/pa_config_auto.h.in 1.27:
                   11322:                crypt library configured
                   11323: 
                   11324:        * operators.txt 1.54:
                   11325:        * src/classes/string.C 1.112:
                   11326:        * www/htdocs/index.html 1.77:
                   11327:                ^string.normalize  [old name: optimize
                   11328: 
                   11329:        * src/main/pa_string.C 1.161:
1.24      paf      11330:        * www/cgi-bin/parser3.log 1.73:
1.15      paf      11331:        * www/htdocs/index.html 1.80:
                   11332:                emtpy string, or string of whitespaces considered bad number now
                   11333: 
                   11334:        * src/main/pa_request.C 1.214:
                   11335:                configure_admin forced if no @conf
                   11336: 
                   11337: 2002-06-24  paf
                   11338:        * Makefile.in 1.14:
                   11339:        * bin/Makefile.in 1.4:
                   11340:        * configure 1.29:
                   11341:        * configure.in 1.33:
                   11342:        * etc/Makefile.in 1.9:
                   11343:        * etc/parser3.charsets/Makefile.in 1.11:
                   11344:        * src/Makefile.in 1.49:
                   11345:        * src/classes/Makefile.in 1.47:
                   11346:        * src/include/Makefile.in 1.6:
                   11347:        * src/include/pa_config_auto.h.in 1.25:
                   11348:        * src/lib/Makefile.in 1.3:
                   11349:        * src/lib/patches/Makefile.in 1.3:
                   11350:        * src/lib/pcre/Makefile.in 1.3:
                   11351:        * src/main/Makefile.in 1.43:
                   11352:        * src/sql/Makefile.in 1.6:
                   11353:        * src/targets/Makefile.in 1.37:
                   11354:        * src/targets/apache13/Makefile.in 1.36:
                   11355:        * src/targets/apache13/p3runConfigure.in 1.11:
                   11356:        * src/targets/cgi/Makefile.am 1.39:
                   11357:        * src/targets/cgi/Makefile.in 1.49:
                   11358:        * src/targets/isapi/Makefile.in 1.6:
                   11359:        * src/types/Makefile.am 1.23:
                   11360:        * src/types/Makefile.in 1.40:
                   11361:        * src/types/pa_vmail.C 1.4:
                   11362:                $mail:received makes update
                   11363: 
                   11364:        * src/targets/cgi/getopt.c 1.1:
                   11365:        * src/targets/cgi/getopt.h 1.1:
                   11366:                introducing parser -m option, for $mail:receive
                   11367: 
                   11368:        * src/include/pa_config_fixed.h 1.45:
                   11369:                ssize_t fixed
                   11370: 
                   11371:        * INSTALL 1.24:
                   11372:                --with-static/shared-mailreceive described
                   11373: 
                   11374:        * operators.txt 1.51:
                   11375:        * src/classes/mail.C 1.67:
                   11376:        * src/include/Makefile.am 1.3:
                   11377:        * src/include/pa_charset.h 1.15:
                   11378:        * src/include/pa_config_fixed.h 1.43:
                   11379:        * src/include/pa_request.h 1.140:
                   11380:        * src/include/pa_string.h 1.139:
                   11381:        * src/include/pa_uue.h 1.1:
                   11382:        * src/main/Makefile.am 1.33:
                   11383:        * src/main/main.dsp 1.155:
                   11384:        * src/main/pa_globals.C 1.131:
                   11385:        * src/main/pa_request.C 1.213:
                   11386:        * src/main/pa_string.C 1.160:
                   11387:        * src/main/pa_uue.C 1.1:
                   11388:        * src/targets/apache13/mod_parser3.C 1.24:
                   11389:        * src/targets/cgi/Makefile.am 1.38:
                   11390:        * src/targets/cgi/parser3.C 1.184:
                   11391:        * src/targets/cgi/parser3.dsp 1.51:
                   11392:        * src/targets/isapi/parser3isapi.C 1.76:
                   11393:        * src/types/pa_vform.C 1.57:
                   11394:        * src/types/pa_vform.h 1.35:
                   11395:        * src/types/pa_vmail.C 1.1:
                   11396:        * src/types/pa_vmail.h 1.1:
                   11397:        * src/types/types.dsp 1.27:
1.24      paf      11398:        * www/cgi-bin/parser3.log 1.68:
1.15      paf      11399:        * www/htdocs/index.html 1.74:
                   11400:                uue to separate file
                   11401:                introducting $message:received
                   11402:                ^mail:send rewritten with backward comp
                   11403: 
                   11404:        * src/classes/classes.dsp 1.22:
                   11405:        * src/main/main.dsp 1.156:
                   11406:        * src/main/pa_globals.C 1.132:
                   11407:        * src/targets/apache13/ApacheModuleParser3.dsp 1.14:
                   11408:        * src/targets/cgi/parser3.dsp 1.52:
                   11409:        * src/targets/isapi/parser3isapi.dsp 1.39:
                   11410:        * src/types/types.dsp 1.28:
                   11411:                win32xml win32mailreceive pseudomodules paths now
                   11412: 
                   11413:        * src/include/pa_config_fixed.h 1.44:
                   11414:        * src/targets/cgi/parser3.C 1.185:
                   11415:        * src/types/pa_vmail.C 1.3:
                   11416:                #ifdef WITH_MAILRECEIVE
                   11417: 
                   11418:        * acconfig.h 1.2:
                   11419:        * configure 1.30:
                   11420:        * configure.in 1.34:
                   11421:        * src/include/pa_config_auto.h.in 1.26:
                   11422:                *** empty log message ***
                   11423: 
                   11424: 2002-06-21  paf
                   11425:        * Makefile.in 1.13:
                   11426:        * configure 1.28:
                   11427:        * configure.in 1.32:
                   11428:        * src/Makefile.in 1.48:
                   11429:        * src/classes/Makefile.in 1.46:
                   11430:        * src/lib/Makefile.in 1.1:
                   11431:        * src/lib/md5/Makefile.am 1.2:
                   11432:        * src/lib/md5/pa_md5c.c 1.2:
                   11433:        * src/lib/patches/Makefile.in 1.2:
                   11434:        * src/lib/pcre/Makefile.in 1.2:
                   11435:        * src/main/Makefile.in 1.42:
                   11436:        * src/targets/apache13/Makefile.in 1.35:
                   11437:        * src/targets/cgi/Makefile.am 1.37:
                   11438:        * src/targets/cgi/Makefile.in 1.48:
                   11439:        * src/types/Makefile.in 1.39:
                   11440:                lib restructure .in and .am files appropriate changes
                   11441: 
                   11442:        * src/lib/Makefile.am 1.2:
                   11443:        * src/lib/Makefile.in 1.2:
                   11444:        * src/lib/md5/pa_md5.h 1.2:
                   11445:        * src/targets/apache13/p3runConfigure.in 1.10:
                   11446:        * src/targets/apache13/pa_md5c.c 1.2:
                   11447:                lib restructure apache .am & co changes
                   11448: 
                   11449:        * INSTALL 1.23:
                   11450:        * configure.in 1.31:
                   11451:        * operators.txt 1.50:
                   11452:        * parser3.dsw 1.2:
                   11453:        * src/Makefile.am 1.16:
                   11454:        * src/classes/Makefile.am 1.39:
                   11455:        * src/classes/classes.dsp 1.21:
                   11456:        * src/classes/math.C 1.19:
                   11457:        * src/lib/Makefile.am 1.1:
                   11458:        * src/lib/md5/Makefile.am 1.1:
                   11459:        * src/lib/md5/md5.dsp 1.1:
                   11460:        * src/lib/md5/pa_md5.h 1.1:
                   11461:        * src/lib/md5/pa_md5c.c 1.1:
                   11462:        * src/lib/patches/Makefile.am 1.1:
                   11463:        * src/lib/patches/Makefile.in 1.1:
                   11464:        * src/lib/patches/libgdome_cpp_syntax1.patch 1.1:
                   11465:        * src/lib/patches/libgdome_cpp_syntax2.patch 1.1:
                   11466:        * src/lib/patches/libgdome_morestatic.patch 1.1:
                   11467:        * src/lib/patches/libxml_error_column_tab.patch 1.1:
                   11468:        * src/lib/patches/libxml_htmloutput_of_xslemptyattr_emptyquotes.patch 1.1:
                   11469:        * src/lib/patches/libxml_transcoder_context1.patch 1.1:
                   11470:        * src/lib/patches/libxml_transcoder_context2.patch 1.1:
                   11471:        * src/lib/patches/libxml_transcoder_context3.patch 1.1:
                   11472:        * src/lib/patches/libxml_transcoder_context4.patch 1.1:
                   11473:        * src/lib/patches/libxslt_html_output_no_charset_meta.patch 1.1:
                   11474:        * src/lib/pcre/LICENCE 1.1:
                   11475:        * src/lib/pcre/Makefile.am 1.1:
                   11476:        * src/lib/pcre/Makefile.in 1.1:
                   11477:        * src/lib/pcre/README 1.1:
                   11478:        * src/lib/pcre/Tech.Notes 1.1:
                   11479:        * src/lib/pcre/dftables.c 1.1:
                   11480:        * src/lib/pcre/get.c 1.1:
                   11481:        * src/lib/pcre/ibm-1250.ucm 1.1:
                   11482:        * src/lib/pcre/ibm-1251.ucm 1.1:
                   11483:        * src/lib/pcre/ibm-1257.ucm 1.1:
                   11484:        * src/lib/pcre/internal.h 1.1:
                   11485:        * src/lib/pcre/maketables.c 1.1:
                   11486:        * src/lib/pcre/pcre-2_08.tar.gz 1.1:
                   11487:        * src/lib/pcre/pcre.3 1.1:
                   11488:        * src/lib/pcre/pcre.3.html 1.1:
                   11489:        * src/lib/pcre/pcre.3.txt 1.1:
                   11490:        * src/lib/pcre/pcre.c 1.1:
                   11491:        * src/lib/pcre/pcre.dsp 1.1:
                   11492:        * src/lib/pcre/pcre.h 1.1:
                   11493:        * src/lib/pcre/pcre_dftables.dsp 1.1:
                   11494:        * src/lib/pcre/pcre_parser_ctype.c 1.1:
                   11495:        * src/lib/pcre/pcre_parser_ctype.dsp 1.1:
                   11496:        * src/lib/pcre/ruspart_win2koi.pl 1.1:
                   11497:        * src/lib/pcre/study.c 1.1:
                   11498:        * src/lib/pcre/win-koi.tab 1.1:
                   11499:        * src/main/Makefile.am 1.32:
                   11500:        * src/main/compile.tab.C 1.57:
                   11501:        * src/main/main.dsp 1.154:
                   11502:        * src/targets/apache13/ApacheModuleParser3.dsp 1.13:
                   11503:        * src/targets/apache13/Makefile.am 1.12:
                   11504:        * src/targets/apache13/pa_md5c.c 1.1:
                   11505:        * src/targets/cgi/Makefile.am 1.36:
                   11506:        * src/targets/cgi/parser3.dsp 1.50:
                   11507:        * src/targets/isapi/parser3isapi.dsp 1.38:
                   11508:        * src/types/Makefile.am 1.22:
                   11509:        * src/types/types.dsp 1.26:
1.24      paf      11510:        * www/cgi-bin/parser3.log 1.67:
1.15      paf      11511:        * www/htdocs/.htaccess 1.5:
                   11512:        * www/htdocs/index.html 1.73:
                   11513:                moved libltdl and pcre to libs/
                   11514:                added libs/md5 which is linked to non-apache targets
                   11515:                ^math:crypt[password;$apr1$salt]
                   11516: 
                   11517: 2002-06-20  paf
                   11518:        * INSTALL [release_3_0_0003] 1.21.2.1:
                   11519:        * bin/Makefile.am [release_3_0_0003] 1.2.2.1:
                   11520:        * bin/Makefile.in [release_3_0_0003] 1.2.2.1:
                   11521:        * bin/auto.p.dist.in [release_3_0_0003] 1.2.2.1:
                   11522:        * configure [release_3_0_0003] 1.26.2.2:
                   11523:        * configure.in [release_3_0_0003] 1.29.2.2:
                   11524:        * operators.txt [release_3_0_0003] 1.47.2.1:
                   11525:        * src/classes/file.C [release_3_0_0003] 1.88.2.1:
                   11526:        * src/classes/op.C [release_3_0_0003] 1.96.2.1:
                   11527:        * src/doc/doxygen.cfg [release_3_0_0003] 1.22.4.1:
                   11528:        * src/include/pa_globals.h [release_3_0_0003] 1.88.2.1:
                   11529:        * src/include/pa_request.h [release_3_0_0003] 1.138.2.1:
                   11530:        * src/main/execute.C [release_3_0_0003] 1.241.2.1:
                   11531:        * src/main/pa_request.C [release_3_0_0003] 1.211.2.1:
                   11532:        * src/targets/apache13/mod_parser3.C [release_3_0_0003] 1.22.2.1:
                   11533:        * src/targets/cgi/parser3.C [release_3_0_0003] 1.182.2.1:
                   11534:        * src/targets/isapi/parser3isapi.C [release_3_0_0003] 1.74.2.1:
                   11535:        * src/types/pa_vmethod_frame.h [release_3_0_0003] 1.26.6.1:
                   11536:        * www/htdocs/auto.p [release_3_0_0003] 1.11.2.1:
                   11537:        * www/htdocs/index.html [release_3_0_0003] 1.69.2.1:
                   11538:                marged latest HEAD updates, mainly file:justname&co & @auto
                   11539:                conf[filespec
                   11540: 
                   11541:        * INSTALL 1.22:
                   11542:        * bin/Makefile.am 1.3:
                   11543:        * bin/auto.p.dist.in 1.1:
                   11544:        * configure.in 1.30:
                   11545:        * operators.txt 1.48:
                   11546:        * src/doc/doxygen.cfg 1.23:
                   11547:        * src/include/pa_globals.h 1.89:
                   11548:        * src/targets/apache13/mod_parser3.C 1.23:
                   11549:        * src/targets/cgi/parser3.C 1.183:
                   11550:        * src/targets/isapi/parser3isapi.C 1.75:
                   11551:        * www/htdocs/auto.p 1.12:
                   11552:        * www/htdocs/index.html 1.70:
                   11553:                parser3.conf renamed to auto.p
                   11554: 
                   11555:        * operators.txt 1.49:
                   11556:        * src/classes/file.C 1.89:
1.24      paf      11557:        * www/cgi-bin/parser3.log 1.66:
1.15      paf      11558:        * www/htdocs/auto.p 1.14:
                   11559:        * www/htdocs/index.html 1.72:
                   11560:                    !^file:dirname[/a/some.tar.gz]=/a
                   11561:                    !^file:dirname[/a/b/]=/a
                   11562:                    !^file:basename[/a/some.tar.gz]=some.tar.gz
                   11563:                    !^file:justname[/a/some.tar.gz]=some.tar
                   11564:                    !^file:justext[/a/some.tar.gz]=gz
                   11565: 
                   11566:        * bin/Makefile.in 1.3:
                   11567:        * configure 1.27:
                   11568:                parser3.conf renamed to auto.p autoconf changes
                   11569: 
                   11570:        * src/classes/op.C 1.97:
                   11571:        * src/include/pa_request.h 1.139:
                   11572:        * src/main/execute.C 1.242:
                   11573:        * src/main/pa_request.C 1.212:
                   11574:        * src/types/pa_vmethod_frame.h 1.27:
1.24      paf      11575:        * www/cgi-bin/parser3.log 1.65:
1.15      paf      11576:        * www/htdocs/auto.p 1.13:
                   11577:        * www/htdocs/index.html 1.71:
                   11578:                introducing @conf/auto[filespec]
                   11579: 
                   11580:        * bin/auto.p.dist.in 1.2:
                   11581:                <noindex>
                   11582: 
                   11583: 2002-06-18  paf
                   11584:        * bin/Makefile.am 1.1:
                   11585:        * bin/Makefile.in 1.1:
                   11586:        * etc/Makefile.am 1.4:
                   11587:        * www/htdocs/index.html 1.69:
                   11588:                bin/parser3.conf.dist [moved from etc
                   11589: 
1.24      paf      11590:        * src/classes/file.C 1.86:
                   11591:        * www/cgi-bin/parser3.log 1.64:
                   11592:                ^file::exec[script;$.bad error case insensitive check now
                   11593: 
1.15      paf      11594:        * configure [release_3_0_0003] 1.26.2.1:
                   11595:        * configure.in [release_3_0_0003] 1.29.2.1:
                   11596:        * src/include/pa_version.h [release_3_0_0003] 1.5.2.1:
                   11597:                version to configure.in
                   11598: 
                   11599:        * src/classes/file.C 1.85:
1.24      paf      11600:        * www/cgi-bin/parser3.log 1.63:
1.15      paf      11601:        * www/htdocs/index.html 1.68:
                   11602:                ^file::exec[script;$.bad now error, not skip
                   11603: 
                   11604:        * Makefile.am 1.5:
                   11605:        * Makefile.in 1.12:
                   11606:        * bin/Makefile.am 1.2:
                   11607:        * bin/Makefile.in 1.2:
                   11608:        * configure 1.26:
                   11609:        * configure.in 1.29:
                   11610:        * etc/Makefile.in 1.8:
                   11611:        * etc/parser3.charsets/Makefile.am 1.3:
                   11612:        * etc/parser3.charsets/Makefile.in 1.10:
                   11613:        * src/targets/apache13/Makefile.in 1.34:
                   11614:                parser3.conf.dist moved to bin, .in & *.am updated
                   11615: 
                   11616:        * src/classes/file.C 1.87:
                   11617:                strcasecmp
                   11618: 
                   11619:        * INSTALL 1.21:
                   11620:                reflected .conf.dist dir change
                   11621: 
                   11622:        * configure 1.25:
                   11623:        * configure.in 1.28:
                   11624:        * src/include/pa_pool.h 1.80:
                   11625:        * src/include/pa_types.h 1.41:
                   11626:                pack configure.in detection simplified.
                   11627:                figured out that gcc on sparc not that stupid as thought previously:
                   11628:                on sparc: when it sees packed class it modifies it's field-access-code to byte operations [stb, ldub] instead of 4byte operations [st, lduh]
                   11629:                so packed must be all parts of packed class, i.e. it's parents&fields(classes).
                   11630:                for now it's only String that packed and what was wrong is that it's parent - Pooled, were not packed. fixed that.
                   11631: 
                   11632:        * src/classes/file.C 1.88:
                   11633:                strncasecmp
                   11634: 
                   11635: 2002-06-14  paf
                   11636:        * operators.txt 1.47:
                   11637:                more precise xml-to-text options
                   11638: 
                   11639:        * operators.txt 1.46:
                   11640:        * src/types/pa_vxnode.C 1.17:
                   11641:                xnode attribute_node.name/value
                   11642:                xnode pi.node.data
                   11643: 
                   11644: 2002-06-12  paf
                   11645:        * Makefile.in 1.11:
                   11646:        * configure 1.24:
                   11647:        * configure.in 1.27:
                   11648:        * etc/Makefile.in 1.7:
                   11649:        * etc/parser3.charsets/Makefile.in 1.9:
                   11650:        * src/Makefile.in 1.47:
                   11651:        * src/classes/Makefile.in 1.45:
                   11652:        * src/include/Makefile.in 1.5:
                   11653:        * src/main/Makefile.in 1.41:
                   11654:        * src/sql/Makefile.in 1.5:
                   11655:        * src/targets/Makefile.in 1.36:
                   11656:        * src/targets/cgi/Makefile.am 1.35:
                   11657:        * src/targets/cgi/Makefile.in 1.47:
                   11658:        * src/targets/cgi/parser3.C 1.182:
                   11659:        * src/targets/isapi/Makefile.in 1.5:
                   11660:        * src/types/Makefile.in 1.38:
                   11661:                removed root conf define creation
                   11662: 
                   11663:        * src/classes/mail.C 1.66:
                   11664:                sendmail -ti [default now]
                   11665: 
                   11666:        * src/include/pa_globals.h 1.86:
                   11667:        * src/include/pa_request.h 1.136:
                   11668:        * src/main/main.dsp 1.153:
                   11669:        * src/main/pa_globals.C 1.128:
                   11670:        * src/main/pa_request.C 1.208:
1.24      paf      11671:        * www/cgi-bin/parser3.log 1.60:
1.15      paf      11672:                @conf
                   11673: 
1.24      paf      11674:        * src/include/pa_globals.h 1.87:
                   11675:        * src/include/pa_request.h 1.137:
                   11676:        * src/main/execute.C 1.241:
                   11677:        * src/main/pa_globals.C 1.129:
                   11678:        * src/main/pa_request.C 1.209:
                   11679:        * www/cgi-bin/parser3.log 1.61:
                   11680:                @rootconf [were @conf]
                   11681: 
1.15      paf      11682:        * INSTALL 1.20:
                   11683:        * configure.in 1.26:
                   11684:        * etc/Makefile.am 1.3:
                   11685:        * operators.txt 1.43:
                   11686:        * src/include/pa_globals.h 1.88:
                   11687:        * src/include/pa_request.h 1.138:
                   11688:        * src/main/compile.tab.C 1.56:
                   11689:        * src/main/pa_globals.C 1.130:
                   11690:        * src/main/pa_request.C 1.211:
                   11691:        * src/targets/apache13/mod_parser3.C 1.22:
                   11692:        * src/targets/cgi/parser3.C 1.181:
                   11693:        * src/targets/isapi/parser3isapi.C 1.74:
1.24      paf      11694:        * www/cgi-bin/parser3.log 1.62:
1.15      paf      11695:                parser3.conf now one and only
                   11696: 
                   11697:        * src/classes/mail.C 1.65:
                   11698:        * src/main/pa_request.C 1.210:
                   11699:                $MAIL $CHARSETS allowed to be strings. for convinient #ing
                   11700: 
                   11701: 2002-06-11  paf
                   11702:        * src/classes/file.C 1.83:
                   11703:        * src/targets/cgi/parser3.dsp 1.49:
                   11704:        * src/targets/isapi/parser3isapi.C 1.73:
1.24      paf      11705:        * www/cgi-bin/parser3.log 1.59:
1.15      paf      11706:        * www/htdocs/.htaccess 1.4:
                   11707:        * www/htdocs/index.html 1.66:
                   11708:                suexec env keys filter plus CGI_ as valid prefix
                   11709: 
                   11710:        * src/classes/file.C 1.84:
                   11711:                check simplified
                   11712: 
                   11713:        * src/classes/file.C 1.82:
                   11714:        * src/include/pa_request.h 1.135:
                   11715:        * src/include/pa_sapi.h 1.19:
                   11716:        * src/targets/apache13/mod_parser3.C 1.21:
                   11717:        * src/targets/cgi/parser3.C 1.180:
                   11718:        * src/targets/isapi/parser3isapi.C 1.72:
1.24      paf      11719:        * www/cgi-bin/parser3.log 1.58:
1.15      paf      11720:        * www/htdocs/index.html 1.65:
                   11721:                file::exec/cgi to pass HTTP_ vars
                   11722:                introducing SAPI::environment
                   11723: 
                   11724: 2002-06-10  paf
                   11725:        * src/main/pa_common.C [release_1_0_0001] 1.108.2.1:
                   11726:                fixed -d (bug)
                   11727: 
                   11728:        * configure 1.20:
                   11729:        * configure [release_3_0_0002] 1.19.2.1:
                   11730:        * configure.in [release_3_0_0002] 1.21.2.1:
                   11731:        * src/include/pa_version.h 1.5:
                   11732:        * src/include/pa_version.h [release_3_0_0002] 1.4.2.1:
                   11733:                makes
                   11734: 
                   11735:        * operators.txt 1.41:
                   11736:                old merge conflict removed
                   11737: 
                   11738:        * src/types/pa_vform.C 1.56:
                   11739:        * src/types/pa_vform.h 1.34:
                   11740:        * www/htdocs/index.html 1.62:
                   11741:                $form: not determined yet check
                   11742: 
                   11743:        * src/main/pa_common.C 1.109:
                   11744:                merged fixed -d (bug)
                   11745: 
                   11746:        * src/main/compile.tab.C 1.55:
                   11747:        * src/main/pa_string.C 1.159:
1.24      paf      11748:        * www/cgi-bin/parser3.log 1.56:
1.15      paf      11749:        * www/htdocs/index.html 1.63:
                   11750:                whitespace after number in autoconvert now ignored
                   11751: 
                   11752:        * operators.txt 1.42:
                   11753:        * src/classes/op.C 1.96:
                   11754:        * src/include/pa_common.h 1.77:
                   11755:        * src/main/pa_common.C 1.110:
                   11756:                lock failures reported now
                   11757: 
                   11758:        * configure 1.21:
                   11759:        * configure.in 1.23:
                   11760:                pack even address access on sparc&co arch checked in configure
                   11761: 
                   11762:        * configure 1.23:
                   11763:        * configure.in 1.25:
                   11764:                *** empty log message ***
                   11765: 
                   11766:        * src/main/compile_tools.C 1.50:
1.24      paf      11767:        * www/cgi-bin/parser3.log 1.57:
1.15      paf      11768:        * www/htdocs/index.html 1.64:
                   11769:                ^if(" 1 "){y} bug fixed
                   11770:                optimization string->double @ compile time were not-enough-checking...
                   11771: 
                   11772:        * configure 1.22:
                   11773:        * configure.in 1.24:
                   11774:                hpux check, nsl link, no socket
                   11775: 
                   11776:        * src/classes/mail.C 1.64:
                   11777:                mail netscape attachment name fixed. todo: $response:body
                   11778:                content-type:name
                   11779: 
                   11780:        * src/main/untaint.C 1.102:
                   11781:                bug#2) mail subject got always prepended with charset even when
                   11782:                all letters were 7bit one
                   11783: 
                   11784: 2002-06-04  paf
                   11785:        * src/targets/apache13/mod_parser3.C 1.20:
                   11786:        * src/targets/apache13/mod_parser3.C [release_1_0_0001] 1.19.2.1:
                   11787:                fixed .dsp-s along with reorganized cvs modules dirs structure
                   11788: 
                   11789: 2002-06-03  paf
                   11790:        * etc/parser3.charsets/windows-1251.cfg 1.5:
                   11791:        * operators.txt 1.40:
                   11792:        * src/classes/classes.dsp 1.20:
                   11793:        * src/main/compile.tab.C 1.54:
                   11794:        * src/main/main.dsp 1.152:
                   11795:        * src/main/pa_globals.C 1.127:
                   11796:        * src/targets/apache13/ApacheModuleParser3.dsp 1.12:
                   11797:        * src/targets/cgi/parser3.C 1.179:
                   11798:        * src/targets/cgi/parser3.dsp 1.48:
                   11799:        * src/targets/isapi/parser3isapi.dsp 1.37:
                   11800:        * src/types/types.dsp 1.25:
                   11801:        * www/htdocs/index.html 1.60:
                   11802:                fixed .dsp-s along with reorganized cvs modules dirs structure
                   11803: 
                   11804:        * src/classes/classes.dsp [release_1_0_0001] 1.18.2.2:
                   11805:        * src/main/compile.tab.C [release_1_0_0001] 1.52.2.2:
                   11806:        * src/main/main.dsp [release_1_0_0001] 1.150.2.2:
                   11807:        * src/main/pa_globals.C [release_1_0_0001] 1.124.2.3:
                   11808:        * src/targets/apache13/ApacheModuleParser3.dsp [release_1_0_0001] 1.11.2.1:
                   11809:        * src/targets/cgi/parser3.dsp [release_1_0_0001] 1.46.2.1:
                   11810:        * src/targets/isapi/parser3isapi.dsp [release_1_0_0001] 1.35.2.2:
                   11811:        * src/types/types.dsp [release_1_0_0001] 1.23.2.2:
                   11812:                reorganized cvs modules
                   11813: 
                   11814: 2002-05-28  paf
                   11815:        * src/targets/cgi/parser3.C [release_1_0_0001] 1.174.2.3:
                   11816:                info.uri now ""
                   11817: 
                   11818: 2002-05-17  paf
                   11819:        * src/classes/table.C 1.153:
                   11820:        * src/classes/table.C [release_1_0_0001] 1.151.2.1:
                   11821:                ^table.save << checked empty pre/match/post columns
                   11822: 
                   11823: 2002-05-16  paf
                   11824:        * src/classes/image.C 1.72:
1.24      paf      11825:        * www/cgi-bin/parser3.log 1.55:
1.15      paf      11826:        * www/htdocs/index.html 1.59:
                   11827:                image::measure can png now
                   11828: 
                   11829: 2002-05-15  paf
                   11830:        * operators.txt 1.38:
                   11831:        * src/classes/date.C 1.31:
1.24      paf      11832:        * www/cgi-bin/parser3.log 1.54:
1.15      paf      11833:        * www/htdocs/index.html 1.58:
                   11834:                ^date::create[%H:%M[:%S]] added
                   11835: 
                   11836:        * etc/parser3.charsets/windows-1251.cfg 1.4:
                   11837:                0x forgot, fixed
                   11838: 
                   11839:        * operators.txt 1.37:
                   11840:        * src/classes/date.C 1.30:
1.24      paf      11841:        * www/cgi-bin/parser3.log 1.53:
1.15      paf      11842:        * www/htdocs/.htaccess 1.3:
                   11843:        * www/htdocs/auto.p 1.10:
                   11844:        * www/htdocs/index.html 1.57:
                   11845:                ^date::create[%Y[-%m[-%d[ %H[:%M[:%S]]]]]]
                   11846:                [-%m now
                   11847: 
                   11848: 2002-05-14  paf
                   11849:        * etc/parser3.charsets/windows-1251.cfg 1.3:
                   11850:        * etc/parser3.charsets/windows-1251.cfg [release_1_0_0001] 1.2.2.1:
                   11851:                added 3 quotes
                   11852: 
                   11853: 2002-05-07  paf
                   11854:        * src/classes/classes.dsp 1.19:
                   11855:        * src/classes/classes.dsp [release_1_0_0001] 1.18.2.1:
                   11856:        * src/classes/op.C 1.95:
                   11857:        * src/classes/op.C [release_1_0_0001] 1.93.2.1:
                   11858:        * src/include/pa_globals.h 1.85:
                   11859:        * src/include/pa_globals.h [release_1_0_0001] 1.84.2.1:
                   11860:        * src/include/pa_request.h 1.134:
                   11861:        * src/include/pa_request.h [release_1_0_0001] 1.133.2.1:
                   11862:        * src/include/pa_table.h 1.44:
                   11863:        * src/include/pa_table.h [release_1_0_0001] 1.43.2.1:
                   11864:        * src/main/compile.tab.C 1.53:
                   11865:        * src/main/compile.tab.C [release_1_0_0001] 1.52.2.1:
                   11866:        * src/main/compile.y 1.187:
                   11867:        * src/main/compile.y [release_1_0_0001] 1.186.2.1:
                   11868:        * src/main/main.dsp 1.151:
                   11869:        * src/main/main.dsp [release_1_0_0001] 1.150.2.1:
                   11870:        * src/main/pa_globals.C 1.126:
                   11871:        * src/main/pa_globals.C [release_1_0_0001] 1.124.2.2:
                   11872:        * src/main/pa_request.C 1.207:
                   11873:        * src/main/pa_request.C [release_1_0_0001] 1.204.2.1:
                   11874:        * src/main/pa_table.C 1.47:
                   11875:        * src/main/pa_table.C [release_1_0_0001] 1.46.2.1:
                   11876:        * src/targets/isapi/pa_pool.C 1.13:
                   11877:        * src/targets/isapi/pa_pool.C [release_1_0_0001] 1.12.2.1:
                   11878:        * src/targets/isapi/parser3isapi.C 1.71:
                   11879:        * src/targets/isapi/parser3isapi.C [release_1_0_0001] 1.69.2.2:
                   11880:        * src/targets/isapi/parser3isapi.dsp 1.36:
                   11881:        * src/targets/isapi/parser3isapi.dsp [release_1_0_0001] 1.35.2.1:
                   11882:        * src/targets/isapi/pool_storage.h 1.16:
                   11883:        * src/targets/isapi/pool_storage.h [release_1_0_0001] 1.15.2.1:
                   11884:        * src/types/types.dsp 1.24:
                   11885:        * src/types/types.dsp [release_1_0_0001] 1.23.2.1:
                   11886:        * www/htdocs/parser-status.html 1.2:
                   11887:        * www/htdocs/parser-status.html [release_1_0_0001] 1.1.2.1:
                   11888:                Table name2number field now &.
                   11889:                main_method_name now on Request pool rather on global_pool [Junction+VJunction created on same pool as name = were created on global pool, causing mem leaks]
                   11890: 
                   11891: 2002-05-06  paf
                   11892:        * src/main/pa_globals.C 1.125:
                   11893:        * src/main/pa_globals.C [release_1_0_0001] 1.124.2.1:
                   11894:        * src/targets/cgi/parser3.C 1.178:
                   11895:        * src/targets/cgi/parser3.C [release_1_0_0001] 1.174.2.2:
                   11896:        * src/targets/cgi/pool_storage.h 1.10:
                   11897:        * src/targets/cgi/pool_storage.h [release_1_0_0001] 1.9.2.1:
                   11898:        * src/targets/isapi/parser3isapi.C 1.70:
                   11899:        * src/targets/isapi/parser3isapi.C [release_1_0_0001] 1.69.2.1:
                   11900:                removed 100*40 bytes per request memory leak [nonpool malloc in
                   11901:                globals]
                   11902: 
                   11903: 2002-04-30  paf
                   11904:        * configure 1.19:
                   11905:        * src/include/pa_version.h 1.4:
                   11906:                version now not b
                   11907: 
                   11908:        * src/targets/cgi/parser3.C 1.177:
1.24      paf      11909:        * www/cgi-bin/parser3.log 1.52:
1.15      paf      11910:        * www/htdocs/global.xsl 1.7:
                   11911:        * www/htdocs/index.html 1.56:
                   11912:                request.uri now never 0
                   11913: 
                   11914: 2002-04-29  paf
                   11915:        * configure.in 1.21:
                   11916:                removed b
                   11917: 
                   11918:        * src/doc/ClassExample1.dox 1.4:
                   11919:        * src/doc/ClassExample3.dox 1.4:
                   11920:        * src/doc/aliased.dox 1.4:
                   11921:        * src/doc/methoded.dox 1.3:
                   11922:        * src/doc/string.dox 1.4:
                   11923:        * src/doc/value.dox 1.3:
                   11924:        * src/include/pa_exception.h 1.34:
                   11925:        * src/main/pa_request.C 1.205:
                   11926:        * src/targets/cgi/parser3.C 1.176:
                   11927:                merged from 0001
                   11928: 
                   11929:        * src/classes/op.C 1.94:
                   11930:        * src/include/pa_exception.h 1.35:
                   11931:        * src/main/pa_request.C 1.206:
                   11932:                Exception::comment/type checked in (), no there's no empty type
                   11933:                comment by default
                   11934: 
                   11935: 2002-04-26  paf
                   11936:        * src/doc/doxygen.cfg 1.22:
                   11937:        * src/doc/doxygen.cfg [release_1_0_0001] 1.21.2.1:
                   11938:        * src/targets/cgi/parser3.dsp 1.47:
1.24      paf      11939:        * www/cgi-bin/parser3.log 1.51:
1.15      paf      11940:        * www/htdocs/index.html 1.55:
                   11941:                doxygen dot image size reduced
                   11942: 
                   11943: 2002-04-25  paf
                   11944:        * src/classes/table.C 1.152:
1.24      paf      11945:        * www/cgi-bin/parser3.log 1.47:
1.15      paf      11946:        * www/htdocs/.htaccess 1.1:
                   11947:        * www/htdocs/index.html 1.51:
                   11948:                removed restriction on column count to ^table.hash to work, now
                   11949:                must be >0 [were >1]
                   11950: 
                   11951:        * src/targets/cgi/parser3.C 1.175:
                   11952:        * src/targets/cgi/parser3.C [release_1_0_0001] 1.174.2.1:
                   11953:                setenv in .htaccess when cgi is not under that dir got
                   11954:                REDIRECT_ prefix before HTTP_PARSER_x_CONFIG, now that took
                   11955:                into account
                   11956: 
1.24      paf      11957:        * www/cgi-bin/parser3.log 1.48:
1.15      paf      11958:        * www/htdocs/index.html 1.52:
                   11959:                sample of 'using junction out of context'
                   11960: 
                   11961:        * operators.txt 1.35:
                   11962:        * operators.txt 1.36:
                   11963:        * src/classes/date.C 1.28:
                   11964:        * src/classes/date.C 1.29:
1.24      paf      11965:        * www/cgi-bin/parser3.log 1.49:
1.15      paf      11966:        * www/htdocs/index.html 1.53:
                   11967:                ^date::create[2002-12-33 01:03:04]
                   11968: 
                   11969: 2002-04-24  paf
                   11970:        * src/classes/classes.dsp 1.18:
                   11971:        * src/main/compile.tab.C 1.52:
                   11972:        * src/main/main.dsp 1.150:
                   11973:        * src/targets/apache13/ApacheModuleParser3.dsp 1.11:
                   11974:        * src/targets/cgi/parser3.C 1.174:
                   11975:        * src/targets/cgi/parser3.dsp 1.46:
                   11976:        * src/targets/isapi/parser3isapi.dsp 1.34:
                   11977:        * src/types/types.dsp 1.23:
                   11978:                MSVC profile targets
                   11979: 
                   11980: 2002-04-23  paf
                   11981:        * operators.txt 1.34:
                   11982:        * src/classes/string.C 1.110:
1.24      paf      11983:        * www/cgi-bin/parser3.log 1.46:
1.15      paf      11984:        * www/htdocs/index.html 1.50:
                   11985:                int/double/string:sql{}[$.default{code}]
                   11986:                fixed [were barking: "junction used outside of context"]
                   11987: 
                   11988: 2002-04-22  paf
                   11989:        * src/classes/string.C 1.109:
                   11990:        * src/include/pa_string.h 1.138:
                   11991:        * src/main/pa_string.C 1.158:
                   11992:        * src/types/pa_vstring.C 1.19:
                   11993:        * src/types/pa_vstring.h 1.46:
                   11994:        * types.txt 1.2:
                   11995:                ^string.optimize[]
                   11996: 
                   11997:        * src/main/execute.C 1.238:
1.24      paf      11998:        * www/cgi-bin/parser3.log 1.43:
1.15      paf      11999:        * www/htdocs/index.html 1.48:
                   12000:                junctions to local contexts got cleanized&checked later
                   12001: 
1.24      paf      12002:        * src/main/execute.C 1.240:
                   12003:        * www/cgi-bin/parser3.log 1.45:
                   12004:                rolled back to before_killing_userjunction_contexts
                   12005: 
1.15      paf      12006:        * src/include/pa_globals.h 1.84:
                   12007:        * src/include/pa_table.h 1.43:
                   12008:        * src/main/pa_globals.C 1.124:
                   12009:        * src/main/pa_string.C 1.157:
                   12010:        * src/main/pa_table.C 1.46:
                   12011:                fixed match table template
                   12012: 
                   12013:        * src/classes/string.C 1.107:
                   12014:        * src/classes/string.C 1.108:
                   12015:                optimize removed from string .left/right/pos
                   12016: 
                   12017:        * src/main/execute.C 1.239:
1.24      paf      12018:        * www/cgi-bin/parser3.log 1.44:
1.15      paf      12019:        * www/htdocs/index.html 1.49:
                   12020:                user junctions context killed
                   12021: 
                   12022: 2002-04-19  paf
                   12023:        * src/classes/string.C 1.106:
                   12024:        * src/include/pa_request.h 1.133:
                   12025:        * src/include/pa_string.h 1.137:
                   12026:        * src/main/pa_request.C 1.204:
                   12027:        * src/main/pa_string.C 1.156:
                   12028:        * src/types/pa_vstring.C 1.18:
                   12029:        * src/types/pa_vstring.h 1.45:
1.24      paf      12030:        * www/cgi-bin/parser3.log 1.42:
1.15      paf      12031:        * www/htdocs/index.html 1.47:
                   12032:                string now optimized prior to .left .right .mid .pos .match when that is profitable,
                   12033:                and always before .replace
                   12034:                when $ORIGINS(1) optimization disabled
                   12035:                economy from not wasting mem on lots of strings which occur by lots of String:mid calls to get parts of source string between found_occurances
                   12036: 
                   12037:        * src/classes/op.C 1.93:
                   12038:        * src/classes/string.C 1.105:
                   12039:        * src/types/pa_value.h 1.86:
                   12040:                VTable removed from each String::match replace iteration, and made stacked
                   12041:                sizeof(VTable)=12bytes economy on each replace code
                   12042: 
                   12043:        * src/include/pa_globals.h 1.83:
                   12044:        * src/include/pa_table.h 1.42:
                   12045:        * src/main/pa_globals.C 1.123:
                   12046:        * src/main/pa_string.C 1.155:
                   12047:                String::match table columns globalized, not created @ each ^match anymore
                   12048:                economy: sizeof(Array)+space on 3+x cells=24+ bytes per ^match
                   12049: 
                   12050:        * src/classes/file.C 1.81:
                   12051:                ovector now local
                   12052:                economy: 16 bytes per ^file:list
                   12053: 
                   12054:        * src/classes/string.C 1.104:
                   12055:        * src/include/pa_string.h 1.136:
                   12056:        * src/main/pa_string.C 1.154:
                   12057:        * www/htdocs/index.html 1.46:
                   12058:                string.match[]['] option enables generation of $match.prematch
                   12059:                .match .postmatch columns
                   12060: 
                   12061:        * src/main/pa_string.C 1.153:
                   12062:                String::match options analized without cstr-ing them now
                   12063: 
                   12064:        * src/doc/chmhelper.pl 1.1:
                   12065:        * src/doc/doxygen.cfg 1.21:
                   12066:        * src/doc/footer.htm 1.1:
                   12067:        * src/doc/html2chm.cmd 1.6:
                   12068:        * src/doc/postbuild.txt 1.3:
                   12069:        * src/doc/sources2html.cmd 1.5:
                   12070:        * src/doc/view_chm.cmd 1.2:
                   12071:        * src/doc/view_html.cmd 1.2:
                   12072:                config updated to doxygen 1.2.15,
                   12073:                created helper which fixes minor bugs in chm project files & htm tree.
                   12074:                changed extension to .htm
                   12075: 
                   12076:        * src/doc/footer.htm 1.2:
                   12077:                2001,
                   12078: 
                   12079: 2002-04-18  paf
                   12080:        * src/classes/classes.h 1.18:
                   12081:        * src/classes/hash.C 1.40:
                   12082:        * src/types/pa_value.h 1.85:
                   12083:        * src/types/pa_vbool.h 1.18:
                   12084:        * src/types/pa_vcookie.h 1.16:
                   12085:        * src/types/pa_vdate.h 1.10:
                   12086:        * src/types/pa_vdouble.h 1.37:
                   12087:        * src/types/pa_venv.h 1.21:
                   12088:        * src/types/pa_vfile.h 1.42:
                   12089:        * src/types/pa_vhash.h 1.33:
                   12090:        * src/types/pa_vimage.h 1.25:
                   12091:        * src/types/pa_vint.h 1.34:
                   12092:        * src/types/pa_vjunction.h 1.13:
                   12093:        * src/types/pa_vobject.h 1.18:
                   12094:        * src/types/pa_vrequest.h 1.17:
                   12095:        * src/types/pa_vresponse.h 1.22:
                   12096:        * src/types/pa_vstateless_class.h 1.26:
                   12097:        * src/types/pa_vstateless_object.h 1.17:
                   12098:        * src/types/pa_vstatus.h 1.8:
                   12099:        * src/types/pa_vstring.h 1.44:
                   12100:        * src/types/pa_vtable.h 1.38:
                   12101:        * src/types/pa_vvoid.h 1.9:
                   12102:        * src/types/pa_vxdoc.h 1.21:
                   12103:        * src/types/pa_vxnode.h 1.14:
                   12104:                fclass_real lowered from VStateless_class to VObject
                   12105: 
                   12106:        * src/types/pa_value.C 1.1:
                   12107:                forced to cut that from .h because of VStateless_class usage [
                   12108:                undefined in .h]
                   12109: 
                   12110:        * src/classes/classes.h 1.17:
                   12111:        * src/classes/date.C 1.27:
                   12112:        * src/classes/double.C 1.47:
                   12113:        * src/classes/file.C 1.80:
                   12114:        * src/classes/form.C 1.23:
                   12115:        * src/classes/hash.C 1.39:
                   12116:        * src/classes/image.C 1.71:
                   12117:        * src/classes/int.C 1.44:
                   12118:        * src/classes/mail.C 1.63:
                   12119:        * src/classes/math.C 1.18:
                   12120:        * src/classes/op.C 1.91:
                   12121:        * src/classes/response.C 1.19:
                   12122:        * src/classes/string.C 1.103:
                   12123:        * src/classes/table.C 1.151:
                   12124:        * src/classes/void.C 1.19:
                   12125:        * src/classes/xnode.C 1.44:
                   12126:        * src/include/pa_globals.h 1.82:
                   12127:        * src/include/pa_request.h 1.132:
                   12128:        * src/main/execute.C 1.236:
                   12129:        * src/main/pa_globals.C 1.122:
                   12130:        * src/main/pa_request.C 1.201:
                   12131:        * src/types/Makefile.am 1.21:
                   12132:        * src/types/pa_value.h 1.84:
                   12133:        * src/types/pa_vdouble.h 1.36:
                   12134:        * src/types/pa_vform.C 1.55:
                   12135:        * src/types/pa_vhash.h 1.32:
                   12136:        * src/types/pa_vint.h 1.33:
                   12137:        * src/types/pa_vmath.h 1.7:
                   12138:        * src/types/pa_vmethod_frame.h 1.25:
                   12139:        * src/types/pa_vstateless_class.h 1.24:
                   12140:        * src/types/pa_wcontext.C 1.18:
                   12141:        * src/types/pa_wcontext.h 1.32:
                   12142:        * src/types/pa_wwrapper.h 1.18:
                   12143:        * src/types/types.dsp 1.22:
1.24      paf      12144:        * www/cgi-bin/parser3.log 1.36:
1.15      paf      12145:        * www/htdocs/index.html 1.40:
                   12146:                removed Value::fname
                   12147: 
                   12148:        * src/include/pa_opcode.h 1.18:
                   12149:        * src/main/compile.tab.C 1.51:
                   12150:        * src/main/compile.y 1.186:
                   12151:        * src/main/compile_tools.C 1.49:
                   12152:        * src/main/compile_tools.h 1.61:
                   12153:        * src/main/execute.C 1.237:
                   12154:        * src/main/pa_request.C 1.202:
                   12155:        * src/types/pa_vmethod_frame.h 1.26:
1.24      paf      12156:        * www/cgi-bin/parser3.log 1.37:
1.15      paf      12157:        * www/htdocs/index.html 1.41:
                   12158:                OP_GET_METHOD_FRAME merged with OP_CALL, VCodeFrame move to
                   12159:                stack [no more heap waste on each CALL]
                   12160: 
                   12161:        * src/types/pa_valiased.C 1.14:
                   12162:        * src/types/pa_valiased.h 1.19:
                   12163:        * src/types/pa_vclass.h 1.25:
                   12164:        * src/types/pa_vobject.h 1.17:
                   12165:        * src/types/pa_wcontext.C 1.19:
1.24      paf      12166:        * www/cgi-bin/parser3.log 1.38:
1.15      paf      12167:        * www/htdocs/index.html 1.42:
                   12168:                VAliased get/set alias now virtual and implemented down in
                   12169:                VClass, fclass_alias removed,
                   12170: 
                   12171:        * src/main/pa_request.C 1.203:
                   12172:        * src/types/pa_valiased.h 1.20:
                   12173:        * src/types/pa_vstateless_class.h 1.25:
                   12174:        * src/types/pa_vstateless_object.h 1.16:
                   12175:        * src/types/pa_vstring.h 1.43:
1.24      paf      12176:        * www/cgi-bin/parser3.log 1.39:
1.15      paf      12177:        * www/htdocs/index.html 1.43:
                   12178:                VStateless_string_object speicalized light version of VStateless_object
                   12179: 
                   12180:        * src/types/Makefile.in 1.37:
                   12181:                *** empty log message ***
                   12182: 
                   12183:        * src/doc/doxygen.cfg 1.20:
                   12184:                .chi generation disabled
                   12185: 
                   12186:        * src/classes/classes.h 1.19:
                   12187:        * src/classes/xdoc.C 1.92:
                   12188:        * src/classes/xnode.C 1.45:
                   12189:        * src/classes/xnode.h 1.11:
                   12190:        * src/types/pa_vxdoc.C 1.13:
1.24      paf      12191:        * www/cgi-bin/parser3.log 1.40:
                   12192:        * www/cgi-bin/parser3.log 1.41:
1.15      paf      12193:        * www/htdocs/index.html 1.44:
                   12194:        * www/htdocs/index.html 1.45:
                   12195:                xdoc(xnode) now fully - fields&methods
                   12196: 
                   12197:        * src/classes/op.C 1.92:
                   12198:                ^throw comment param made optional
                   12199: 
                   12200: 2002-04-17  paf
                   12201:        * src/types/pa_vhash.h 1.31:
                   12202:                vstring wrong parent fixed
                   12203: 
                   12204:        * src/classes/op.C 1.90:
                   12205:                taint local result var bug fixed
                   12206: 
                   12207:        * src/doc/ClassExample1.dox 1.3:
                   12208:        * src/doc/ClassExample2.dox 1.4:
                   12209:        * src/doc/ClassExample3.dox 1.3:
                   12210:        * src/doc/compiler.dox 1.3:
                   12211:        * src/doc/module.dox 1.3:
                   12212:        * src/doc/pooled.dox 1.3:
                   12213:        * src/doc/string.dox 1.3:
                   12214:        * src/doc/targets.dox 1.3:
                   12215:        * src/include/pa_pool.h 1.79:
                   12216:        * src/include/pa_types.h 1.40:
                   12217:                dox updated to current state, PTHROW freshen to throw & co
                   12218: 
                   12219: 2002-04-16  paf
                   12220:        * src/classes/op.C 1.89:
                   12221:                exception2vhash file now tainted
                   12222: 
                   12223:        * src/include/pa_opcode.h 1.17:
                   12224:        * src/main/compile.tab.C 1.49:
                   12225:        * src/main/compile.y 1.185:
                   12226:        * src/main/execute.C 1.232:
                   12227:        * src/targets/cgi/parser3.C 1.172:
1.24      paf      12228:        * www/cgi-bin/parser3.log 1.30:
1.15      paf      12229:                OP_CALL -> OP_CALL__WRITE and used that for removing VString wrapper
                   12230: 
                   12231:        * src/doc/postbuild.txt 1.2:
                   12232:        * src/main/execute.C 1.234:
1.24      paf      12233:        * www/cgi-bin/parser3.log 1.34:
1.15      paf      12234:        * www/htdocs/index.html 1.37:
                   12235:                result in @postprocess & @unhandled_exception now taken into
                   12236:                account as in usual functions
                   12237: 
                   12238:        * src/doc/postbuild.txt 1.1:
                   12239:                instructions on post .html build
                   12240: 
                   12241:        * asm.txt 1.2:
                   12242:        * form.txt 1.2:
                   12243:        * lang.txt 1.2:
                   12244:        * sql.txt 1.2:
1.24      paf      12245:        * www/cgi-bin/parser3.log 1.35:
1.15      paf      12246:                removed outdated. see in Attic asm.txt as most interesting
                   12247: 
                   12248:        * src/classes/op.C 1.87:
1.24      paf      12249:        * www/cgi-bin/parser3.log 1.28:
1.15      paf      12250:        * www/htdocs/auto.p 1.8:
                   12251:                extra check on empty file in origin in _execute
                   12252: 
                   12253:        * src/classes/date.C 1.26:
                   12254:        * src/main/compile.tab.C 1.50:
                   12255:        * src/targets/cgi/parser3.C 1.173:
1.24      paf      12256:        * www/cgi-bin/parser3.log 1.31:
                   12257:        * www/cgi-bin/parser3.log 1.32:
1.15      paf      12258:                cheched date:create(days) param for validity [later were
                   12259:                assumed valid and crashed on invalid onces]
                   12260: 
                   12261:        * src/classes/file.C 1.79:
                   12262:        * src/main/pa_exec.C 1.35:
1.24      paf      12263:        * www/cgi-bin/parser3.log 1.33:
1.15      paf      12264:        * www/htdocs/index.html 1.36:
                   12265:                stderr of execs mark as tainted
                   12266: 
                   12267:        * src/main/execute.C 1.235:
                   12268:        * www/htdocs/index.html 1.38:
                   12269:                $result in @main now taken into account as in usual functions
                   12270: 
1.24      paf      12271:        * src/classes/op.C 1.88:
                   12272:        * www/cgi-bin/parser3.log 1.29:
                   12273:                _process pseudo origin copied from local var to heap
                   12274: 
1.23      paf      12275:        * src/main/pa_request.C 1.199:
                   12276:                uri in error log
                   12277: 
1.15      paf      12278:        * src/main/pa_request.C 1.200:
                   12279:        * src/targets/isapi/parser3isapi.C 1.69:
                   12280:        * www/htdocs/index.html 1.39:
                   12281:                removed check, preventing content-length: 0 from appearing
                   12282: 
                   12283:        * src/doc/doxygen.cfg 1.19:
                   12284:        * src/doc/html2chm.cmd 1.5:
                   12285:                .chm file only now, no .chi
                   12286: 
                   12287: 2002-04-15  paf
                   12288:        * src/classes/image.C 1.70:
                   12289:        * src/classes/op.C 1.83:
                   12290:        * src/classes/op.C 1.84:
                   12291:        * src/classes/string.C 1.101:
                   12292:        * src/classes/table.C 1.149:
                   12293:        * src/include/pa_request.h 1.129:
                   12294:        * src/main/execute.C 1.228:
                   12295:        * src/types/pa_value.h 1.81:
                   12296:        * src/types/pa_vmethod_frame.h 1.24:
                   12297:        * src/types/pa_wcontext.h 1.29:
1.24      paf      12298:        * www/cgi-bin/parser3.log 1.25:
1.15      paf      12299:                StringOrValue wcontext result, now ready for dual writes
                   12300: 
1.24      paf      12301:        * src/classes/file.C 1.78:
                   12302:        * src/classes/op.C 1.86:
                   12303:        * src/classes/table.C 1.150:
                   12304:        * www/cgi-bin/parser3.log 1.26:
                   12305:                finished dual write_xxx_lang functions
                   12306: 
1.15      paf      12307:        * src/main/execute.C 1.231:
                   12308:        * src/types/pa_value.h 1.83:
1.24      paf      12309:        * www/cgi-bin/parser3.log 1.27:
1.15      paf      12310:                fixed name update
                   12311: 
                   12312:        * src/main/execute.C 1.229:
                   12313:                CodeFrame soul fixed [mistakenly killed by prev changes]
                   12314: 
                   12315:        * src/classes/date.C 1.25:
                   12316:        * src/classes/file.C 1.76:
                   12317:        * src/classes/mail.C 1.62:
                   12318:        * src/classes/string.C 1.102:
                   12319:        * src/classes/xnode.C 1.43:
                   12320:        * src/include/pa_request.h 1.130:
                   12321:        * src/types/pa_value.h 1.82:
                   12322:        * src/types/pa_wcontext.h 1.30:
                   12323:                removed absolutely unnecessary VString shells
                   12324: 
                   12325:        * src/classes/op.C 1.82:
                   12326:        * src/include/pa_globals.h 1.81:
                   12327:        * src/include/pa_opcode.h 1.16:
                   12328:        * src/include/pa_request.h 1.128:
                   12329:        * src/main/compile.tab.C 1.47:
                   12330:        * src/main/compile.y 1.183:
                   12331:        * src/main/compile_tools.C 1.47:
                   12332:        * src/main/compile_tools.h 1.59:
                   12333:        * src/main/execute.C 1.226:
                   12334:        * src/main/pa_globals.C 1.121:
                   12335:        * src/main/pa_request.C 1.198:
                   12336:        * src/targets/cgi/parser3.C 1.170:
1.24      paf      12337:        * www/cgi-bin/parser3.log 1.24:
1.15      paf      12338:        * www/htdocs/index.html 1.35:
                   12339:                switch in hash constructor fixed [were problems with using of
                   12340:                stacked wwrapper after it's death]
                   12341: 
                   12342:        * src/classes/file.C 1.77:
                   12343:        * src/classes/hash.C 1.38:
                   12344:        * src/classes/op.C 1.85:
                   12345:        * src/include/pa_request.h 1.131:
                   12346:        * src/main/execute.C 1.230:
                   12347:        * src/types/pa_wcontext.h 1.31:
                   12348:                started dual write_xxx_lang functions, if checked & works
                   12349: 
                   12350:        * src/targets/cgi/parser3.C 1.171:
                   12351:                ctime sometimes can be just "", checked that
                   12352: 
                   12353:        * src/main/compile.tab.C 1.48:
                   12354:        * src/main/compile.y 1.184:
                   12355:        * src/main/compile_tools.C 1.48:
                   12356:        * src/main/compile_tools.h 1.60:
                   12357:        * src/main/execute.C 1.227:
                   12358:                OP_GET_ELEMENT+OP_GET_ELEMENT__WRITE
                   12359:                changed to OP_WRITE_VALUE
                   12360:                in var get cases
                   12361: 
                   12362: 2002-04-12  paf
                   12363:        * operators.txt 1.33:
                   12364:        * src/classes/table.C 1.148:
1.24      paf      12365:        * www/cgi-bin/parser3.log 1.23:
1.15      paf      12366:        * www/htdocs/index.html 1.34:
                   12367:                table.select(expression) 0
                   12368: 
                   12369: 2002-04-11  paf
                   12370:        * src/classes/string.C 1.100:
                   12371:        * src/include/pa_request.h 1.127:
                   12372:        * src/main/execute.C 1.225:
                   12373:                Request::process_internal codeFrame & wwrapper stacked [not
                   12374:                wasting  heap anymore]
                   12375: 
                   12376: 2002-04-10  paf
                   12377:        * src/include/pa_string.h 1.135:
                   12378:        * src/main/pa_string.C 1.151:
                   12379:        * src/main/untaint.C 1.101:
1.24      paf      12380:        * www/cgi-bin/parser3.log 1.22:
1.15      paf      12381:        * www/htdocs/index.html 1.33:
                   12382:                killed 8 bytes from String.head
                   12383: 
                   12384:        * src/classes/double.C 1.46:
                   12385:        * src/classes/file.C 1.75:
                   12386:        * src/classes/hash.C 1.37:
                   12387:        * src/classes/image.C 1.69:
                   12388:        * src/classes/int.C 1.43:
                   12389:        * src/classes/math.C 1.17:
                   12390:        * src/classes/op.C 1.81:
                   12391:        * src/classes/string.C 1.99:
                   12392:        * src/classes/table.C 1.147:
                   12393:        * src/classes/void.C 1.18:
                   12394:        * src/classes/xdoc.C 1.91:
                   12395:        * src/include/pa_request.h 1.126:
                   12396:        * src/main/execute.C 1.224:
                   12397:        * src/main/pa_string.C 1.152:
                   12398:                killed Request::process() wrapping VString(String) in case we
                   12399:                need only String
                   12400: 
                   12401: 2002-04-09  paf
                   12402:        * src/main/pa_common.C 1.108:
                   12403:        * src/targets/cgi/parser3.C 1.168:
                   12404:        * src/types/pa_vdouble.h 1.35:
                   12405:        * src/types/pa_vint.h 1.32:
                   12406:                int/double get_string now not pool.malloc(MAX_NUMBER) but
                   12407:                really neaded
                   12408: 
                   12409:        * etc/Makefile.in 1.6:
                   12410:        * etc/parser3.charsets/Makefile.in 1.8:
                   12411:        * src/classes/Makefile.in 1.44:
                   12412:        * src/sql/Makefile.in 1.4:
                   12413:        * src/targets/Makefile.in 1.35:
                   12414:        * src/targets/apache13/Makefile.in 1.33:
                   12415:        * src/targets/cgi/Makefile.in 1.46:
                   12416:        * src/targets/isapi/Makefile.in 1.4:
                   12417:        * src/types/Makefile.in 1.36:
                   12418:                makse
                   12419: 
                   12420:        * operators.txt 1.31:
                   12421:        * src/classes/double.C 1.45:
                   12422:        * src/classes/int.C 1.42:
                   12423:        * www/htdocs/global.xsl 1.5:
                   12424:                int/double.int/double(default)
                   12425: 
                   12426:        * src/main/compile.tab.C 1.46:
                   12427:        * src/targets/cgi/parser3.C 1.169:
                   12428:        * src/targets/isapi/parser3isapi.C 1.68:
1.24      paf      12429:        * www/cgi-bin/parser3.log 1.21:
1.15      paf      12430:                removed
                   12431:                {
                   12432:                  char *a;
                   12433:                  {
                   12434:                     /*sub local*/char b[...];
                   12435:                     a=b;
                   12436:                situations
                   12437: 
                   12438:        * src/classes/xdoc.C 1.89:
1.24      paf      12439:        * www/cgi-bin/parser3.log 1.19:
1.15      paf      12440:        * www/htdocs/global.xsl 1.6:
                   12441:        * www/htdocs/index.html 1.32:
                   12442:                xslt params fixed
                   12443: 
                   12444:        * operators.txt 1.32:
                   12445:        * src/classes/xdoc.C 1.90:
1.24      paf      12446:        * www/cgi-bin/parser3.log 1.20:
1.15      paf      12447:                xslt params made literal
                   12448: 
                   12449: 2002-04-04  paf
                   12450:        * src/include/pa_string.h 1.134:
                   12451:        * src/main/pa_string.C 1.150:
1.24      paf      12452:        * www/cgi-bin/parser3.log 1.18:
1.15      paf      12453:        * www/htdocs/index.html 1.31:
                   12454:                fixed string.replace [when reconstructing pieces were split by
                   12455:                max_integral(piece.size), thus some strings to replace happen
                   12456:                to be split into two = not replaced)
                   12457: 
                   12458:        * src/targets/cgi/parser3.C 1.166:
                   12459:        * src/targets/cgi/parser3.C 1.167:
                   12460:        * src/targets/cgi/parser3.dsp 1.44:
                   12461:        * src/targets/cgi/parser3.dsp 1.45:
                   12462:                document root in standalone version = current dir
                   12463: 
                   12464: 2002-04-03  paf
                   12465:        * INSTALL 1.18:
                   12466:        * Makefile.in 1.10:
                   12467:        * configure 1.17:
                   12468:        * configure.in 1.19:
                   12469:        * etc/Makefile.in 1.5:
                   12470:        * etc/parser3.charsets/Makefile.in 1.7:
                   12471:        * src/Makefile.in 1.46:
                   12472:        * src/include/Makefile.in 1.4:
                   12473:        * src/main/Makefile.in 1.40:
                   12474:                root config configure options
                   12475: 
                   12476:        * configure 1.18:
                   12477:        * configure.in 1.20:
                   12478:                more checks on nonexistent charset
                   12479: 
                   12480: 2002-04-02  paf
                   12481:        * src/main/compile.C 1.63:
                   12482:                parser.compile [exception name more like in doc]
                   12483: 
                   12484: 2002-04-01  paf
                   12485:        * src/classes/mail.C 1.61:
                   12486:        * src/include/pa_string.h 1.133:
                   12487:        * src/main/untaint.C 1.100:
                   12488:        * src/targets/isapi/parser3isapi.dsp 1.33:
1.24      paf      12489:        * www/cgi-bin/parser3.log 1.17:
1.15      paf      12490:                mail subject encoding taken from .content-type.charset, not .charset
                   12491: 
                   12492: 2002-03-29  paf
                   12493:        * operators.txt 1.30:
                   12494:        * src/classes/date.C 1.24:
1.24      paf      12495:        * www/cgi-bin/parser3.log 1.16:
1.15      paf      12496:        * www/htdocs/index.html 1.30:
                   12497:                ^date::create now may not supply day, default 1.
                   12498:                checked 29.03 -> 29.02 roll on non 366 days' year.  | 31.05->31.04   roll
                   12499: 
                   12500:        * etc/parser3.charsets/koi8-r.cfg 1.2:
                   12501:                koi8-r += ukranian letters
                   12502: 
                   12503: 2002-03-28  paf
                   12504:        * operators.txt 1.29:
                   12505:        * src/classes/date.C 1.23:
                   12506:        * src/classes/op.C 1.79:
                   12507:        * src/include/pa_globals.h 1.80:
                   12508:        * src/include/pa_hash.h 1.55:
                   12509:        * src/main/pa_globals.C 1.120:
                   12510:        * src/types/pa_vdate.h 1.9:
                   12511:        * www/htdocs/index.html 1.29:
                   12512:                ^cache[file][date]{
                   12513:                   ^cache(seconds)
                   12514:                   ^cache[date]
                   12515:                }
                   12516: 
                   12517:        * src/classes/xdoc.C 1.88:
                   12518:        * src/classes/xnode.C 1.42:
                   12519:        * src/classes/xnode.h 1.10:
                   12520:                removed redundant pool param
                   12521: 
                   12522: 2002-03-27  paf
                   12523:        * operators.txt 1.27:
                   12524:        * src/classes/op.C 1.77:
                   12525:        * src/include/pa_config_fixed.h 1.42:
                   12526:        * src/include/pa_request.h 1.124:
                   12527:        * src/main/execute.C 1.222:
                   12528:        * src/main/pa_request.C 1.196:
1.24      paf      12529:        * www/cgi-bin/parser3.log 1.14:
1.15      paf      12530:                decided agains resetting exception_trace, just changed name
                   12531: 
                   12532:        * operators.txt 1.28:
                   12533:        * src/classes/date.C 1.22:
                   12534:        * src/classes/double.C 1.44:
                   12535:        * src/classes/file.C 1.74:
                   12536:        * src/classes/form.C 1.22:
                   12537:        * src/classes/hash.C 1.36:
                   12538:        * src/classes/image.C 1.68:
                   12539:        * src/classes/int.C 1.41:
                   12540:        * src/classes/mail.C 1.60:
                   12541:        * src/classes/math.C 1.16:
                   12542:        * src/classes/op.C 1.78:
                   12543:        * src/classes/string.C 1.98:
                   12544:        * src/classes/table.C 1.146:
                   12545:        * src/classes/void.C 1.17:
                   12546:        * src/classes/xdoc.C 1.87:
                   12547:        * src/classes/xnode.C 1.41:
                   12548:        * src/include/pa_exception.h 1.33:
                   12549:        * src/include/pa_request.h 1.125:
                   12550:        * src/include/pa_stylesheet_connection.h 1.28:
                   12551:        * src/main/compile.C 1.62:
                   12552:        * src/main/compile_tools.C 1.46:
                   12553:        * src/main/execute.C 1.223:
                   12554:        * src/main/pa_array.C 1.48:
                   12555:        * src/main/pa_charset.C 1.23:
                   12556:        * src/main/pa_charsets.C 1.8:
                   12557:        * src/main/pa_common.C 1.106:
                   12558:        * src/main/pa_dictionary.C 1.14:
                   12559:        * src/main/pa_exception.C 1.40:
                   12560:        * src/main/pa_exec.C 1.34:
                   12561:        * src/main/pa_pool.C 1.52:
                   12562:        * src/main/pa_request.C 1.197:
                   12563:        * src/main/pa_socks.C 1.14:
                   12564:        * src/main/pa_sql_driver_manager.C 1.62:
                   12565:        * src/main/pa_string.C 1.149:
                   12566:        * src/main/pa_table.C 1.45:
                   12567:        * src/main/untaint.C 1.99:
                   12568:        * src/targets/apache13/mod_parser3.C 1.19:
                   12569:        * src/targets/cgi/parser3.C 1.165:
                   12570:        * src/targets/isapi/parser3isapi.C 1.67:
                   12571:        * src/types/pa_value.h 1.80:
                   12572:        * src/types/pa_vcookie.C 1.43:
                   12573:        * src/types/pa_vfile.h 1.41:
                   12574:        * src/types/pa_vform.C 1.54:
                   12575:        * src/types/pa_vhash.h 1.30:
                   12576:        * src/types/pa_vmethod_frame.h 1.23:
                   12577:        * src/types/pa_vstatus.C 1.7:
                   12578:        * src/types/pa_vtable.C 1.13:
                   12579:        * src/types/pa_vxdoc.h 1.20:
                   12580:        * src/types/pa_vxnode.h 1.13:
                   12581:        * src/types/pa_wcontext.C 1.17:
                   12582:        * src/types/pa_wwrapper.h 1.17:
1.24      paf      12583:        * www/cgi-bin/parser3.log 1.15:
1.15      paf      12584:        * www/htdocs/index.html 1.28:
                   12585:                assigned exception types
                   12586: 
                   12587: 2002-03-26  paf
                   12588:        * operators.txt 1.24:
                   12589:        * src/classes/date.C 1.20:
                   12590:        * www/htdocs/index.html 1.25:
                   12591:                fixed date roll on daylightsaving days
                   12592:                mktime took into account tm_isdst flag, which remained from BEFORE roll, but should have been reset
                   12593: 
                   12594:        * src/classes/op.C 1.76:
                   12595:        * www/htdocs/index.html 1.27:
                   12596:                forced language of $source field of exception to 'tainted',
                   12597:                so that sql-langed-frags could be outputed outside of connect
                   12598: 
                   12599:        * src/include/pa_common.h 1.76:
                   12600:        * src/main/pa_exec.C 1.33:
                   12601:                windows exec chdir fixed
                   12602: 
                   12603:        * operators.txt 1.25:
                   12604:        * src/classes/date.C 1.21:
                   12605:        * www/htdocs/index.html 1.26:
                   12606:                removed date.roll limit of +-1 offset
                   12607: 
                   12608: 2002-03-25  paf
                   12609:        * INSTALL 1.13:
                   12610:                comment on --disable-link-stdcpp
                   12611: 
                   12612:        * INSTALL 1.12:
                   12613:        * configure 1.15:
                   12614:        * configure.in 1.17:
                   12615:        * src/targets/cgi/Makefile.am 1.33:
                   12616:        * src/targets/cgi/Makefile.in 1.44:
                   12617:                libstdc++ link skipping configure option
                   12618: 
                   12619:        * src/classes/file.C 1.73:
                   12620:        * src/classes/mail.C 1.56:
                   12621:        * src/include/pa_exec.h 1.8:
                   12622:        * src/main/pa_exec.C 1.32:
                   12623:                f(!forced_allow)
                   12624:                to allow
                   12625:                --with-sendmail to work with any/both
                   12626:                --disable-foreign-group-files --disable-execs
                   12627: 
                   12628:        * src/classes/op.C 1.75:
                   12629:        * src/include/pa_sql_connection.h 1.24:
                   12630:                sql connection with error were put to cache with '
                   12631:                marked_to_rollback' flag, all consequent even OK requests
                   12632:                rolled back
                   12633: 
                   12634:        * INSTALL 1.16:
                   12635:                "--with=sendmail=COMMAND"
                   12636:                comment
                   12637: 
                   12638:        * INSTALL 1.15:
                   12639:        * configure 1.16:
                   12640:        * configure.in 1.18:
                   12641:        * src/classes/mail.C 1.55:
                   12642:        * src/include/pa_config_auto.h.in 1.24:
                   12643:        * src/main/pa_exec.C 1.31:
                   12644:        * src/targets/cgi/Makefile.am 1.34:
                   12645:        * src/targets/cgi/Makefile.in 1.45:
                   12646:                --disable-foreign-group-files now disables execs also.
                   12647:                introducing --sendmail
                   12648: 
                   12649:        * INSTALL 1.14:
                   12650:        * INSTALL 1.17:
                   12651:        * src/classes/mail.C 1.57:
                   12652:        * src/classes/mail.C 1.58:
                   12653:                *** empty log message ***
                   12654: 
                   12655:        * operators.txt 1.22:
                   12656:                pgsql options comment
                   12657: 
                   12658:        * operators.txt 1.23:
                   12659:        * src/targets/cgi/parser3.C 1.164:
                   12660:                http_site_config_filespec
                   12661: 
                   12662: 2002-03-22  paf
                   12663:        * operators.txt 1.21:
                   12664:                few comments on sets
                   12665: 
                   12666:        * src/main/pa_exec.C 1.30:
                   12667:                createprocess nowindow flag
                   12668:                check on readfile false return
                   12669: 
                   12670: 2002-03-18  paf
                   12671:        * src/main/pa_charset.C 1.22:
                   12672:        * src/targets/isapi/pa_threads.C 1.10:
                   12673:        * src/types/pa_vdouble.h 1.34:
                   12674:                removed some tested @tests
                   12675: 
                   12676:        * operators.txt 1.20:
                   12677:        * src/classes/op.C 1.74:
                   12678:        * src/include/pa_exception.h 1.32:
                   12679:        * src/include/pa_globals.h 1.79:
                   12680:        * src/include/pa_request.h 1.123:
                   12681:        * src/include/pa_stack.h 1.14:
                   12682:        * src/main/pa_globals.C 1.119:
                   12683:        * src/main/pa_request.C 1.195:
1.24      paf      12684:        * www/cgi-bin/parser3.log 1.12:
                   12685:        * www/cgi-bin/parser3.log 1.13:
1.15      paf      12686:        * www/htdocs/index.html 1.22:
                   12687:        * www/htdocs/index.html 1.23:
                   12688:                introducing ^try
                   12689: 
                   12690: 2002-03-15  paf
                   12691:        * operators.txt 1.19:
                   12692:        * src/classes/table.C 1.145:
                   12693:        * www/htdocs/index.html 1.21:
                   12694:                ^table.locate(logical expr)
                   12695: 
                   12696: 2002-03-13  paf
                   12697:        * src/main/pa_exception.C 1.39:
                   12698:                checked not-pooled malloc
                   12699: 
                   12700: 2002-03-11  paf
                   12701:        * src/types/pa_vfile.C 1.29:
                   12702:                $file.text now 0A linebreaks,
                   12703:                file::exec/cgi linebreaks "0D0A" changed to 0A onces
                   12704: 
                   12705:        * INSTALL 1.10:
                   12706:        * configure 1.13:
                   12707:        * configure.in 1.15:
                   12708:        * src/include/pa_config_auto.h.in 1.22:
                   12709:        * src/include/pa_config_fixed.h 1.40:
                   12710:        * src/main/pa_exec.C 1.28:
                   12711:        * src/main/pa_exec.C 1.29:
                   12712:        * www/htdocs/index.html 1.18:
                   12713:        * www/htdocs/index.html 1.19:
                   12714:        * www/htdocs/index.html 1.20:
                   12715:                --disable-execs
                   12716: 
                   12717:        * INSTALL 1.11:
                   12718:        * configure 1.14:
                   12719:        * configure.in 1.16:
                   12720:        * src/include/pa_config_auto.h.in 1.23:
                   12721:        * src/main/pa_common.C 1.105:
                   12722:                --disable-foreign-group-files
                   12723: 
                   12724: 2002-03-05  paf
                   12725:        * src/targets/isapi/parser3isapi.C 1.66:
                   12726:        * src/targets/isapi/parser3isapi.dsp 1.32:
                   12727:                iis5 now requires headers to be terminated with \r\n manually [
                   12728:                refuses to separate header/body itself]
                   12729: 
                   12730:        * operators.txt 1.17:
                   12731:        * operators.txt 1.18:
                   12732:        * src/classes/date.C 1.18:
                   12733:        * src/classes/date.C 1.19:
                   12734:                date week calendar columns named
                   12735: 
                   12736:        * src/main/pa_globals.C 1.118:
                   12737:        * src/targets/cgi/parser3.C 1.163:
                   12738:        * src/targets/isapi/parser3isapi.C 1.65:
                   12739:        * www/htdocs/index.html 1.17:
                   12740:                isapi site config beside .dll
                   12741: 
                   12742: 2002-03-04  paf
                   12743:        * src/targets/isapi/pa_threads.C 1.9:
                   12744:        * src/targets/isapi/parser3isapi.C 1.64:
                   12745:        * src/targets/isapi/parser3isapi.dsp 1.31:
                   12746:                isapi updated
                   12747: 
                   12748:        * src/classes/op.C 1.73:
                   12749:        * src/types/pa_vfile.C 1.28:
1.24      paf      12750:        * www/cgi-bin/parser3.log 1.11:
1.15      paf      12751:        * www/htdocs/index.html 1.16:
                   12752:                process body now evaluated in PASS language
                   12753: 
                   12754:        * src/classes/op.C 1.72:
                   12755:        * src/include/pa_string.h 1.132:
                   12756:        * src/main/pa_string.C 1.148:
                   12757:                string deserialize checks on broken file
                   12758: 
                   12759: 2002-03-01  paf
                   12760:        * src/main/pa_exec.C 1.27:
                   12761:                execle -> execve, now argc OK
                   12762: 
                   12763: 2002-02-28  paf
                   12764:        * src/main/pa_string.C 1.147:
                   12765:                origin by first piece preferred before last piece
                   12766: 
                   12767:        * src/main/pa_charsets.C 1.7:
                   12768:                when placing charset to cache using global name now [were
                   12769:                request]
                   12770: 
                   12771:        * configure 1.12:
                   12772:        * configure.in 1.14:
                   12773:        * src/targets/apache13/ApacheModuleParser3.dsp 1.10:
                   12774:        * src/targets/apache13/mod_parser3.C 1.18:
                   12775:        * src/targets/apache13/p3runConfigure.in 1.9:
                   12776:        * src/targets/apache13/pa_threads.C 1.8:
1.24      paf      12777:        * www/cgi-bin/parser3.log 1.10:
1.15      paf      12778:        * www/htdocs/auto.p 1.7:
                   12779:                apache module updated
                   12780: 
                   12781:        * src/main/untaint.C 1.98:
                   12782:                removed some debug comments
                   12783: 
                   12784: 2002-02-27  paf
                   12785:        * src/main/pa_charset.C 1.21:
                   12786:                size_t
                   12787: 
                   12788:        * INSTALL 1.9:
                   12789:                shared/static-xml
                   12790:                with-pathlink
                   12791: 
                   12792:        * operators.txt 1.15:
                   12793:        * operators.txt 1.16:
                   12794:                SMTP comment
                   12795: 
                   12796: 2002-02-26  paf
                   12797:        * src/classes/xnode.C 1.40:
1.24      paf      12798:        * www/cgi-bin/parser3.log 1.9:
1.15      paf      12799:        * www/htdocs/auto.p 1.6:
                   12800:        * www/htdocs/global.xsl 1.4:
                   12801:        * www/htdocs/index.html 1.15:
                   12802:                in some situation, xpath query returned result with type NODESET, but empty nodeset member field,
                   12803:                checked that
                   12804: 
                   12805:        * src/main/pa_exec.C 1.26:
                   12806:                more precise names for vars, cosmetic
                   12807: 
                   12808: 2002-02-22  paf
                   12809:        * operators.txt 1.14:
                   12810:        * src/types/pa_vcookie.C 1.41:
                   12811:        * src/types/pa_vcookie.C 1.42:
1.24      paf      12812:        * www/cgi-bin/parser3.log 1.5:
1.15      paf      12813:                cookie "expires=0" =  "session"
                   12814: 
                   12815:        * src/include/pa_string.h 1.131:
                   12816:        * src/main/pa_string.C 1.144:
                   12817:        * src/main/pa_string.C 1.145:
                   12818:        * src/main/pa_string.C 1.146:
1.24      paf      12819:        * www/cgi-bin/parser3.log 1.6:
                   12820:        * www/cgi-bin/parser3.log 1.7:
                   12821:        * www/cgi-bin/parser3.log 1.8:
1.15      paf      12822:        * www/htdocs/auto.p 1.5:
                   12823:        * www/htdocs/index.html 1.14:
                   12824:                string iterators fixed again, so were String::join_chain
                   12825: 
                   12826:        * configure 1.11:
                   12827:        * configure.in 1.13:
                   12828:                glib###.a detection fixed
                   12829: 
                   12830:        * Makefile.in 1.7:
                   12831:        * configure 1.9:
                   12832:        * configure.in 1.11:
                   12833:        * etc/Makefile.in 1.4:
                   12834:        * etc/parser3.charsets/Makefile.in 1.6:
                   12835:        * src/Makefile.in 1.45:
                   12836:        * src/classes/Makefile.am 1.38:
                   12837:        * src/classes/Makefile.in 1.43:
                   12838:        * src/classes/hashfile.C 1.23:
                   12839:        * src/include/Makefile.am 1.2:
                   12840:        * src/include/Makefile.in 1.3:
                   12841:        * src/include/pa_config_auto.h.in 1.20:
                   12842:        * src/include/pa_db_connection.h 1.22:
                   12843:        * src/include/pa_db_manager.h 1.15:
                   12844:        * src/include/pa_db_table.h 1.16:
                   12845:        * src/main/Makefile.am 1.31:
                   12846:        * src/main/Makefile.in 1.39:
                   12847:        * src/main/pa_db_connection.C 1.38:
                   12848:        * src/main/pa_db_manager.C 1.23:
                   12849:        * src/main/pa_db_table.C 1.21:
                   12850:        * src/main/pa_globals.C 1.117:
                   12851:        * src/sql/Makefile.in 1.3:
                   12852:        * src/targets/Makefile.in 1.34:
                   12853:        * src/targets/apache13/Makefile.in 1.32:
                   12854:        * src/targets/apache13/p3runConfigure.in 1.8:
                   12855:        * src/targets/cgi/Makefile.am 1.32:
                   12856:        * src/targets/cgi/Makefile.in 1.43:
                   12857:        * src/targets/isapi/Makefile.in 1.3:
                   12858:        * src/types/Makefile.am 1.20:
                   12859:        * src/types/Makefile.in 1.35:
                   12860:        * src/types/pa_vhashfile.C 1.21:
                   12861:        * src/types/pa_vhashfile.h 1.16:
                   12862:                removed hashfile support for now
                   12863: 
                   12864:        * acconfig.h 1.1:
                   12865:                acconfig move in cvs[from src/libltdl to /]
                   12866: 
                   12867:        * etc/parser3.charsets/windows-1251.cfg 1.2:
                   12868:                &deg;
                   12869: 
                   12870:        * Makefile.am 1.4:
                   12871:        * Makefile.in 1.9:
                   12872:                make update
                   12873: 
                   12874:        * INSTALL 1.7:
                   12875:                hashfile removed from INSTALL
                   12876: 
                   12877:        * Makefile.in 1.8:
                   12878:        * configure 1.10:
                   12879:        * configure.in 1.12:
                   12880:        * src/include/pa_config_auto.h.in 1.21:
                   12881:                --with-shared-xml
                   12882:                --with-static-xml
                   12883: 
                   12884:        * INSTALL 1.8:
                   12885:                without-zlib comment
                   12886: 
                   12887:        * operators.txt 1.13:
                   12888:        * src/classes/classes.dsp 1.16:
                   12889:        * src/main/main.dsp 1.148:
                   12890:        * src/types/types.dsp 1.20:
                   12891:                removed hashfile support from sources for now
                   12892: 
                   12893:        * src/classes/classes.dsp 1.17:
                   12894:        * src/main/compile.tab.C 1.45:
                   12895:        * src/main/main.dsp 1.149:
                   12896:        * src/targets/apache13/ApacheModuleParser3.dsp 1.9:
                   12897:        * src/targets/cgi/parser3.dsp 1.43:
                   12898:        * src/targets/isapi/parser3isapi.dsp 1.30:
                   12899:        * src/types/types.dsp 1.21:
                   12900:                *.dsp: removed refereces to win32db & ancient xalan&xml
                   12901: 
                   12902: 2002-02-21  paf
                   12903:        * Makefile.am 1.3:
                   12904:        * Makefile.in 1.6:
                   12905:                make cvsupdate
                   12906: 
                   12907:        * src/main/untaint.C 1.97:
1.24      paf      12908:        * www/cgi-bin/parser3.log 1.4:
1.15      paf      12909:                removed debug code, activated commented-for debug parts
                   12910: 
                   12911:        * src/include/pa_string.h 1.130:
                   12912:        * src/include/pa_types.h 1.39:
                   12913:        * src/main/pa_string.C 1.143:
                   12914:        * src/main/untaint.C 1.96:
1.24      paf      12915:        * www/cgi-bin/parser3.log 1.3:
1.15      paf      12916:                STRING_*FOREACH_ROW
                   12917:                changed to stop at append_row, not at link zero
                   12918:                now string to string appending works
                   12919: 
                   12920: 2002-02-20  paf
                   12921:        * src/include/pa_string.h 1.129:
                   12922:        * src/main/execute.C 1.221:
                   12923:        * src/main/untaint.C 1.95:
                   12924:        * src/targets/cgi/pa_pool.C 1.38:
                   12925:        * src/targets/cgi/parser3.C 1.162:
                   12926:        * www/htdocs/index.html 1.13:
                   12927:                //#define DEBUG_STRING_APPENDS_VS_EXPANDS
                   12928: 
                   12929:        * src/include/pa_string.h 1.128:
                   12930:        * src/main/pa_string.C 1.142:
                   12931:        * src/main/untaint.C 1.94:
1.24      paf      12932:        * www/cgi-bin/parser3.log 1.2:
1.15      paf      12933:                economy: 22%
                   12934: 
                   12935:        * operators.txt 1.12:
                   12936:        * src/include/pa_common.h 1.75:
                   12937:        * src/include/pa_config_fixed.h 1.39:
                   12938:        * src/include/pa_string.h 1.125:
                   12939:        * src/include/pa_types.h 1.38:
                   12940:        * src/main/compile.tab.C 1.44:
                   12941:        * src/main/execute.C 1.220:
                   12942:        * src/main/pa_string.C 1.139:
                   12943:        * src/main/untaint.C 1.91:
                   12944:        * src/targets/cgi/pa_pool.C 1.37:
                   12945:        * src/targets/cgi/parser3.C 1.160:
                   12946:        * www/htdocs/auto.p 1.4:
                   12947:        * www/htdocs/global.xsl 1.3:
                   12948:        * www/htdocs/index.html 1.11:
                   12949:                strign to string append optimiziation idea and estimates
                   12950: 
                   12951:        * src/include/pa_string.h 1.126:
                   12952:        * src/include/pa_stylesheet_connection.h 1.27:
                   12953:        * src/main/pa_db_manager.C 1.22:
                   12954:        * src/main/pa_dictionary.C 1.13:
                   12955:        * src/main/pa_string.C 1.140:
                   12956:        * src/main/untaint.C 1.92:
                   12957:        * src/targets/cgi/parser3.C 1.161:
                   12958:        * src/types/pa_vcookie.C 1.40:
                   12959:        * src/types/pa_vstring.h 1.42:
                   12960:        * www/htdocs/index.html 1.12:
                   12961:                speed uptimized: string::is_empty
                   12962: 
                   12963:        * src/include/pa_string.h 1.127:
                   12964:        * src/main/pa_string.C 1.141:
                   12965:        * src/main/untaint.C 1.93:
1.24      paf      12966:        * www/cgi-bin/parser3.log 1.1:
1.15      paf      12967:                space uptimized: string::link_row removed
                   12968: 
                   12969: 2002-02-19  paf
                   12970:        * src/classes/xdoc.C 1.86:
                   12971:        * src/classes/xnode.C 1.39:
                   12972:                getElementsByTagName and *NS moved to node [element]
                   12973: 
                   12974:        * src/classes/math.C 1.15:
                   12975:                not used directly [but erroreously reported that 'is', thus
                   12976:                registering twice&other probs]
                   12977: 
                   12978:        * src/main/compile.C 1.59:
                   12979:        * src/main/compile.C 1.60:
                   12980:                without string_origins not worked
                   12981: 
                   12982:        * src/main/compile.C 1.61:
                   12983:                without string_origins parse error file+line+col possible
                   12984: 
                   12985: 2002-02-18  paf
                   12986:        * src/types/pa_vdouble.h 1.33:
                   12987:                since we have in_expression
                   12988:                removed that trick i've installed into double::as_string
                   12989: 
                   12990:        * INSTALL 1.6:
                   12991:                local install comment
                   12992: 
                   12993:        * src/main/compile.tab.C 1.41:
                   12994:        * src/main/compile.y 1.181:
                   12995:        * www/htdocs/global.xsl 1.2:
                   12996:        * www/htdocs/index.html 1.7:
                   12997:                integer  division stops name
                   12998: 
                   12999:        * Makefile.in 1.4:
                   13000:        * acinclude.m4 1.2:
                   13001:        * aclocal.m4 1.2:
                   13002:        * configure 1.8:
                   13003:        * configure.in 1.10:
                   13004:        * etc/Makefile.in 1.3:
                   13005:        * etc/parser3.charsets/Makefile.in 1.5:
                   13006:        * src/Makefile.in 1.44:
                   13007:        * src/classes/Makefile.in 1.42:
                   13008:        * src/include/Makefile.in 1.2:
                   13009:        * src/include/pa_config_auto.h.in 1.19:
                   13010:        * src/include/pa_config_includes.h 1.19:
                   13011:        * src/main/Makefile.in 1.38:
                   13012:        * src/sql/Makefile.in 1.2:
                   13013:        * src/targets/Makefile.in 1.33:
                   13014:        * src/targets/apache13/Makefile.in 1.31:
                   13015:        * src/targets/apache13/p3runConfigure.in 1.7:
                   13016:        * src/targets/cgi/Makefile.am 1.30:
                   13017:        * src/targets/cgi/Makefile.in 1.41:
                   13018:        * src/targets/cgi/parser3.C 1.157:
                   13019:        * src/targets/isapi/Makefile.in 1.2:
                   13020:        * src/types/Makefile.in 1.34:
                   13021:                removed libtool usage from build mech
                   13022: 
1.24      paf      13023:        * src/classes/math.C 1.14:
                   13024:        * www/htdocs/index.html 1.8:
                   13025:                math:random range check fixed
                   13026: 
1.15      paf      13027:        * operators.txt 1.10:
                   13028:        * src/classes/date.C 1.17:
                   13029:                date::create [were date::set, with backward comp
                   13030: 
                   13031:        * src/main/compile.tab.C 1.42:
                   13032:                bison env set so one could compile without cygwin installed
                   13033: 
                   13034:        * src/targets/cgi/Makefile.am 1.31:
                   13035:        * src/targets/cgi/Makefile.in 1.42:
                   13036:        * src/targets/cgi/parser3.C 1.158:
                   13037:                *** empty log message ***
                   13038: 
                   13039:        * src/main/pa_globals.C 1.116:
                   13040:                extern "C" was removed too fast
                   13041: 
                   13042:        * Makefile.in 1.5:
                   13043:        * ltconfig 1.2:
                   13044:        * ltmain.sh 1.2:
                   13045:                removed libtool subpart files
                   13046: 
                   13047:        * src/main/main.dsp 1.147:
                   13048:        * src/main/pa_globals.C 1.115:
                   13049:                removed unneded
                   13050:                #ifdef __cplusplus
                   13051:                }
                   13052:                #endif
                   13053: 
                   13054:        * src/include/pa_opcode.h 1.15:
                   13055:        * src/include/pa_request.h 1.122:
                   13056:        * src/main/compile.tab.C 1.43:
                   13057:        * src/main/compile.y 1.182:
                   13058:        * src/main/execute.C 1.219:
                   13059:        * src/types/pa_wcontext.h 1.28:
                   13060:        * www/htdocs/index.html 1.10:
                   13061:        * www/htdocs/index.html 1.9:
                   13062:                in_expression
                   13063:                aimed to solve old problem with string/nonstring values,
                   13064:                now in expressions double/int values are passed as-is, without stupid tostring/fromstring conversions
                   13065: 
                   13066:        * operators.txt 1.11:
                   13067:        * src/targets/cgi/parser3.C 1.159:
                   13068:                PARSER_ROOT_CONFIG
                   13069: 
                   13070:        * src/classes/classes.dsp 1.15:
                   13071:        * src/main/main.dsp 1.146:
                   13072:        * src/main/pa_globals.C 1.114:
                   13073:        * src/targets/cgi/parser3.dsp 1.42:
                   13074:        * src/types/types.dsp 1.19:
                   13075:                win32xml now contains gnome xml libs
                   13076:                parser .dsp-s changed accordingly
                   13077: 
                   13078:        * operators.txt 1.9:
                   13079:                \ comment
                   13080: 
                   13081: 2002-02-13  paf
                   13082:        * INSTALL 1.5:
                   13083:        * configure 1.7:
                   13084:        * configure.in 1.9:
                   13085:        * src/targets/cgi/Makefile.am 1.29:
                   13086:        * src/targets/cgi/Makefile.in 1.40:
                   13087:                --with-glib-config
                   13088:                CXXLINK=$(CC) for targets/cgi/parser3
                   13089: 
                   13090:        * src/include/pa_config_includes.h 1.18:
                   13091:                sys/time time both included now.
                   13092:                vaguely remember confilicts on this on some system [not on six|ablv]
                   13093:                so when would see them again would think up proper check
                   13094: 
                   13095:        * etc/parser3.charsets/windows-1257.cfg 1.1:
                   13096:        * src/targets/cgi/parser3.C 1.156:
                   13097:                baltic charset file generated, in generation script ispunct
                   13098:                check added
                   13099: 
                   13100:        * src/main/pa_common.C 1.103:
                   13101:                strnchr: sanity check added
                   13102: 
                   13103:        * src/main/pa_common.C 1.104:
                   13104:                truncation never occured when writing files on unix [since i've changed cache mech]
                   13105:                fix
                   13106: 
                   13107:        * etc/parser3.charsets/windows-1257.cfg 1.2:
                   13108:                id added
                   13109: 
                   13110: 2002-02-08  paf
                   13111:        * src/classes/classes.C 1.14:
                   13112:        * src/classes/classes.h 1.15:
                   13113:        * src/classes/date.C 1.15:
                   13114:        * src/classes/double.C 1.42:
                   13115:        * src/classes/file.C 1.71:
                   13116:        * src/classes/form.C 1.20:
                   13117:        * src/classes/hash.C 1.34:
                   13118:        * src/classes/hashfile.C 1.21:
                   13119:        * src/classes/image.C 1.65:
                   13120:        * src/classes/int.C 1.39:
                   13121:        * src/classes/mail.C 1.53:
                   13122:        * src/classes/math.C 1.12:
                   13123:        * src/classes/op.C 1.70:
                   13124:        * src/classes/response.C 1.17:
                   13125:        * src/classes/string.C 1.96:
                   13126:        * src/classes/table.C 1.143:
                   13127:        * src/classes/void.C 1.15:
                   13128:        * src/classes/xdoc.C 1.84:
                   13129:        * src/classes/xnode.C 1.37:
                   13130:        * src/classes/xnode.h 1.8:
                   13131:        * src/include/pa_array.h 1.52:
                   13132:        * src/include/pa_cache_managers.h 1.5:
                   13133:        * src/include/pa_charset.h 1.13:
                   13134:        * src/include/pa_charsets.h 1.4:
                   13135:        * src/include/pa_common.h 1.73:
                   13136:        * src/include/pa_config_fixed.h 1.37:
                   13137:        * src/include/pa_config_includes.h 1.16:
                   13138:        * src/include/pa_db_connection.h 1.20:
                   13139:        * src/include/pa_db_manager.h 1.13:
                   13140:        * src/include/pa_db_table.h 1.14:
                   13141:        * src/include/pa_dictionary.h 1.9:
                   13142:        * src/include/pa_dir.h 1.9:
                   13143:        * src/include/pa_exception.h 1.30:
                   13144:        * src/include/pa_exec.h 1.6:
                   13145:        * src/include/pa_globals.h 1.77:
                   13146:        * src/include/pa_hash.h 1.53:
                   13147:        * src/include/pa_opcode.h 1.13:
                   13148:        * src/include/pa_pool.h 1.77:
                   13149:        * src/include/pa_pragma_pack_begin.h 1.3:
                   13150:        * src/include/pa_pragma_pack_end.h 1.3:
                   13151:        * src/include/pa_request.h 1.120:
                   13152:        * src/include/pa_sapi.h 1.17:
                   13153:        * src/include/pa_socks.h 1.7:
                   13154:        * src/include/pa_sql_connection.h 1.22:
                   13155:        * src/include/pa_sql_driver_manager.h 1.22:
                   13156:        * src/include/pa_stack.h 1.12:
                   13157:        * src/include/pa_string.h 1.123:
                   13158:        * src/include/pa_stylesheet_connection.h 1.25:
                   13159:        * src/include/pa_stylesheet_manager.h 1.11:
                   13160:        * src/include/pa_table.h 1.40:
                   13161:        * src/include/pa_threads.h 1.22:
                   13162:        * src/include/pa_types.h 1.36:
                   13163:        * src/main/compile.C 1.57:
                   13164:        * src/main/compile.tab.C 1.40:
                   13165:        * src/main/compile_tools.C 1.44:
                   13166:        * src/main/compile_tools.h 1.57:
                   13167:        * src/main/execute.C 1.217:
                   13168:        * src/main/pa_array.C 1.46:
                   13169:        * src/main/pa_cache_managers.C 1.3:
                   13170:        * src/main/pa_charset.C 1.19:
                   13171:        * src/main/pa_charsets.C 1.5:
                   13172:        * src/main/pa_common.C 1.100:
                   13173:        * src/main/pa_db_connection.C 1.36:
                   13174:        * src/main/pa_db_manager.C 1.20:
                   13175:        * src/main/pa_db_table.C 1.19:
                   13176:        * src/main/pa_dictionary.C 1.11:
                   13177:        * src/main/pa_dir.C 1.10:
                   13178:        * src/main/pa_exception.C 1.37:
                   13179:        * src/main/pa_exec.C 1.24:
                   13180:        * src/main/pa_globals.C 1.112:
                   13181:        * src/main/pa_hash.C 1.49:
                   13182:        * src/main/pa_pool.C 1.50:
                   13183:        * src/main/pa_request.C 1.193:
                   13184:        * src/main/pa_socks.C 1.12:
                   13185:        * src/main/pa_sql_driver_manager.C 1.60:
                   13186:        * src/main/pa_status_provider.C 1.3:
                   13187:        * src/main/pa_string.C 1.137:
                   13188:        * src/main/pa_stylesheet_manager.C 1.12:
                   13189:        * src/main/pa_table.C 1.43:
                   13190:        * src/main/untaint.C 1.88:
                   13191:        * src/sql/pa_sql_driver.h 1.25:
                   13192:        * src/targets/apache13/mod_parser3.C 1.16:
                   13193:        * src/targets/apache13/pa_pool.C 1.4:
                   13194:        * src/targets/apache13/pa_threads.C 1.6:
                   13195:        * src/targets/cgi/pa_pool.C 1.35:
                   13196:        * src/targets/cgi/pa_threads.C 1.8:
                   13197:        * src/targets/cgi/parser3.C 1.153:
                   13198:        * src/targets/cgi/pool_storage.h 1.8:
                   13199:        * src/targets/isapi/pa_pool.C 1.11:
                   13200:        * src/targets/isapi/pa_threads.C 1.7:
                   13201:        * src/targets/isapi/parser3isapi.C 1.62:
                   13202:        * src/targets/isapi/pool_storage.h 1.14:
                   13203:        * src/types/pa_valiased.C 1.12:
                   13204:        * src/types/pa_valiased.h 1.17:
                   13205:        * src/types/pa_value.h 1.78:
                   13206:        * src/types/pa_vbool.h 1.16:
                   13207:        * src/types/pa_vclass.h 1.23:
                   13208:        * src/types/pa_vcode_frame.h 1.13:
                   13209:        * src/types/pa_vcookie.C 1.33:
                   13210:        * src/types/pa_vcookie.h 1.14:
                   13211:        * src/types/pa_vdate.h 1.7:
                   13212:        * src/types/pa_vdouble.h 1.31:
                   13213:        * src/types/pa_venv.h 1.19:
                   13214:        * src/types/pa_vfile.C 1.25:
                   13215:        * src/types/pa_vfile.h 1.39:
                   13216:        * src/types/pa_vform.C 1.51:
                   13217:        * src/types/pa_vform.h 1.32:
                   13218:        * src/types/pa_vhash.h 1.28:
                   13219:        * src/types/pa_vhashfile.C 1.18:
                   13220:        * src/types/pa_vhashfile.h 1.14:
                   13221:        * src/types/pa_vimage.C 1.15:
                   13222:        * src/types/pa_vimage.h 1.23:
                   13223:        * src/types/pa_vint.h 1.30:
                   13224:        * src/types/pa_vjunction.h 1.11:
                   13225:        * src/types/pa_vmath.h 1.5:
                   13226:        * src/types/pa_vmethod_frame.h 1.21:
                   13227:        * src/types/pa_vobject.h 1.15:
                   13228:        * src/types/pa_vrequest.C 1.15:
                   13229:        * src/types/pa_vrequest.h 1.15:
                   13230:        * src/types/pa_vresponse.C 1.3:
                   13231:        * src/types/pa_vresponse.h 1.20:
                   13232:        * src/types/pa_vstateless_class.C 1.12:
                   13233:        * src/types/pa_vstateless_class.h 1.22:
                   13234:        * src/types/pa_vstateless_object.h 1.14:
                   13235:        * src/types/pa_vstatus.C 1.5:
                   13236:        * src/types/pa_vstatus.h 1.6:
                   13237:        * src/types/pa_vstring.C 1.15:
                   13238:        * src/types/pa_vstring.h 1.40:
                   13239:        * src/types/pa_vtable.C 1.10:
                   13240:        * src/types/pa_vtable.h 1.36:
                   13241:        * src/types/pa_vvoid.h 1.7:
                   13242:        * src/types/pa_vxdoc.C 1.10:
                   13243:        * src/types/pa_vxdoc.h 1.18:
                   13244:        * src/types/pa_vxnode.C 1.14:
                   13245:        * src/types/pa_vxnode.h 1.11:
                   13246:        * src/types/pa_wcontext.C 1.14:
                   13247:        * src/types/pa_wcontext.h 1.26:
                   13248:        * src/types/pa_wwrapper.h 1.15:
                   13249:                2002
                   13250: 
                   13251:        * src/types/pa_vcookie.C 1.36:
                   13252:        * src/types/pa_vcookie.C 1.37:
                   13253:        * src/types/pa_vcookie.C 1.38:
                   13254:        * src/types/pa_vcookie.C 1.39:
                   13255:                VCookie::fill_fields one check forgotten
                   13256: 
                   13257:        * src/include/Makefile.am 1.1:
                   13258:        * src/include/Makefile.in 1.1:
                   13259:        * src/sql/Makefile.am 1.3:
                   13260:        * src/sql/Makefile.in 1.1:
                   13261:        * src/targets/isapi/Makefile.am 1.1:
                   13262:        * src/targets/isapi/Makefile.in 1.1:
                   13263:                forgotten makes
                   13264: 
                   13265:        * AUTHORS 1.2:
                   13266:        * COPYING 1.2:
                   13267:        * INSTALL 1.3:
                   13268:        * INSTALL 1.4:
                   13269:        * README 1.2:
                   13270:                install&others updated
                   13271: 
                   13272:        * Makefile.am 1.2:
                   13273:        * Makefile.in 1.3:
                   13274:        * configure 1.6:
                   13275:        * configure.in 1.8:
                   13276:        * etc/parser3.charsets/Makefile.am 1.2:
                   13277:        * etc/parser3.charsets/Makefile.in 1.4:
                   13278:        * src/Makefile.am 1.15:
                   13279:        * src/Makefile.in 1.43:
                   13280:        * src/classes/Makefile.am 1.37:
                   13281:        * src/classes/Makefile.in 1.41:
                   13282:        * src/main/Makefile.am 1.30:
                   13283:        * src/main/Makefile.in 1.37:
                   13284:        * src/main/pa_status_provider.C 1.5:
                   13285:        * src/targets/Makefile.am 1.9:
                   13286:        * src/targets/Makefile.in 1.32:
                   13287:        * src/targets/apache13/Makefile.am 1.11:
                   13288:        * src/targets/apache13/Makefile.in 1.30:
                   13289:        * src/targets/cgi/Makefile.am 1.28:
                   13290:        * src/targets/cgi/Makefile.in 1.39:
                   13291:        * src/types/Makefile.am 1.19:
                   13292:        * src/types/Makefile.in 1.33:
                   13293:                'make dist' works
                   13294: 
                   13295:        * src/classes/classes.C 1.15:
                   13296:        * src/classes/classes.h 1.16:
                   13297:        * src/classes/date.C 1.16:
                   13298:        * src/classes/double.C 1.43:
                   13299:        * src/classes/file.C 1.72:
                   13300:        * src/classes/form.C 1.21:
                   13301:        * src/classes/hash.C 1.35:
                   13302:        * src/classes/hashfile.C 1.22:
                   13303:        * src/classes/image.C 1.66:
                   13304:        * src/classes/image.C 1.67:
                   13305:        * src/classes/int.C 1.40:
                   13306:        * src/classes/mail.C 1.54:
                   13307:        * src/classes/math.C 1.13:
                   13308:        * src/classes/op.C 1.71:
                   13309:        * src/classes/response.C 1.18:
                   13310:        * src/classes/string.C 1.97:
                   13311:        * src/classes/table.C 1.144:
                   13312:        * src/classes/void.C 1.16:
                   13313:        * src/classes/xdoc.C 1.85:
                   13314:        * src/classes/xnode.C 1.38:
                   13315:        * src/classes/xnode.h 1.9:
                   13316:        * src/include/pa_array.h 1.53:
                   13317:        * src/include/pa_cache_managers.h 1.6:
                   13318:        * src/include/pa_charset.h 1.14:
                   13319:        * src/include/pa_charsets.h 1.5:
                   13320:        * src/include/pa_common.h 1.74:
                   13321:        * src/include/pa_config_fixed.h 1.38:
                   13322:        * src/include/pa_config_includes.h 1.17:
                   13323:        * src/include/pa_db_connection.h 1.21:
                   13324:        * src/include/pa_db_manager.h 1.14:
                   13325:        * src/include/pa_db_table.h 1.15:
                   13326:        * src/include/pa_dictionary.h 1.10:
                   13327:        * src/include/pa_dir.h 1.10:
                   13328:        * src/include/pa_exception.h 1.31:
                   13329:        * src/include/pa_exec.h 1.7:
                   13330:        * src/include/pa_globals.h 1.78:
                   13331:        * src/include/pa_hash.h 1.54:
                   13332:        * src/include/pa_opcode.h 1.14:
                   13333:        * src/include/pa_pool.h 1.78:
                   13334:        * src/include/pa_pragma_pack_begin.h 1.4:
                   13335:        * src/include/pa_pragma_pack_end.h 1.4:
                   13336:        * src/include/pa_request.h 1.121:
                   13337:        * src/include/pa_sapi.h 1.18:
                   13338:        * src/include/pa_socks.h 1.8:
                   13339:        * src/include/pa_sql_connection.h 1.23:
                   13340:        * src/include/pa_sql_driver_manager.h 1.23:
                   13341:        * src/include/pa_stack.h 1.13:
                   13342:        * src/include/pa_string.h 1.124:
                   13343:        * src/include/pa_stylesheet_connection.h 1.26:
                   13344:        * src/include/pa_stylesheet_manager.h 1.12:
                   13345:        * src/include/pa_table.h 1.41:
                   13346:        * src/include/pa_threads.h 1.23:
                   13347:        * src/include/pa_types.h 1.37:
                   13348:        * src/main/compile.C 1.58:
                   13349:        * src/main/compile_tools.C 1.45:
                   13350:        * src/main/compile_tools.h 1.58:
                   13351:        * src/main/execute.C 1.218:
                   13352:        * src/main/pa_array.C 1.47:
                   13353:        * src/main/pa_cache_managers.C 1.4:
                   13354:        * src/main/pa_charset.C 1.20:
                   13355:        * src/main/pa_charsets.C 1.6:
                   13356:        * src/main/pa_common.C 1.101:
                   13357:        * src/main/pa_common.C 1.102:
                   13358:        * src/main/pa_db_connection.C 1.37:
                   13359:        * src/main/pa_db_manager.C 1.21:
                   13360:        * src/main/pa_db_table.C 1.20:
                   13361:        * src/main/pa_dictionary.C 1.12:
                   13362:        * src/main/pa_dir.C 1.11:
                   13363:        * src/main/pa_exception.C 1.38:
                   13364:        * src/main/pa_exec.C 1.25:
                   13365:        * src/main/pa_globals.C 1.113:
                   13366:        * src/main/pa_hash.C 1.50:
                   13367:        * src/main/pa_pool.C 1.51:
                   13368:        * src/main/pa_request.C 1.194:
                   13369:        * src/main/pa_socks.C 1.13:
                   13370:        * src/main/pa_sql_driver_manager.C 1.61:
                   13371:        * src/main/pa_status_provider.C 1.4:
                   13372:        * src/main/pa_string.C 1.138:
                   13373:        * src/main/pa_stylesheet_manager.C 1.13:
                   13374:        * src/main/pa_table.C 1.44:
                   13375:        * src/main/untaint.C 1.89:
                   13376:        * src/main/untaint.C 1.90:
                   13377:        * src/sql/pa_sql_driver.h 1.26:
                   13378:        * src/targets/apache13/mod_parser3.C 1.17:
                   13379:        * src/targets/apache13/pa_pool.C 1.5:
                   13380:        * src/targets/apache13/pa_threads.C 1.7:
                   13381:        * src/targets/cgi/pa_pool.C 1.36:
                   13382:        * src/targets/cgi/pa_threads.C 1.9:
                   13383:        * src/targets/cgi/parser3.C 1.154:
                   13384:        * src/targets/cgi/parser3.C 1.155:
                   13385:        * src/targets/cgi/pool_storage.h 1.9:
                   13386:        * src/targets/isapi/pa_pool.C 1.12:
                   13387:        * src/targets/isapi/pa_threads.C 1.8:
                   13388:        * src/targets/isapi/parser3isapi.C 1.63:
                   13389:        * src/targets/isapi/pool_storage.h 1.15:
                   13390:        * src/types/pa_valiased.C 1.13:
                   13391:        * src/types/pa_valiased.h 1.18:
                   13392:        * src/types/pa_value.h 1.79:
                   13393:        * src/types/pa_vbool.h 1.17:
                   13394:        * src/types/pa_vclass.h 1.24:
                   13395:        * src/types/pa_vcode_frame.h 1.14:
                   13396:        * src/types/pa_vcookie.C 1.34:
                   13397:        * src/types/pa_vcookie.C 1.35:
                   13398:        * src/types/pa_vcookie.h 1.15:
                   13399:        * src/types/pa_vdate.h 1.8:
                   13400:        * src/types/pa_vdouble.h 1.32:
                   13401:        * src/types/pa_venv.h 1.20:
                   13402:        * src/types/pa_vfile.C 1.26:
                   13403:        * src/types/pa_vfile.C 1.27:
                   13404:        * src/types/pa_vfile.h 1.40:
                   13405:        * src/types/pa_vform.C 1.52:
                   13406:        * src/types/pa_vform.C 1.53:
                   13407:        * src/types/pa_vform.h 1.33:
                   13408:        * src/types/pa_vhash.h 1.29:
                   13409:        * src/types/pa_vhashfile.C 1.19:
                   13410:        * src/types/pa_vhashfile.C 1.20:
                   13411:        * src/types/pa_vhashfile.h 1.15:
                   13412:        * src/types/pa_vimage.C 1.16:
                   13413:        * src/types/pa_vimage.C 1.17:
                   13414:        * src/types/pa_vimage.h 1.24:
                   13415:        * src/types/pa_vint.h 1.31:
                   13416:        * src/types/pa_vjunction.h 1.12:
                   13417:        * src/types/pa_vmath.h 1.6:
                   13418:        * src/types/pa_vmethod_frame.h 1.22:
                   13419:        * src/types/pa_vobject.h 1.16:
                   13420:        * src/types/pa_vrequest.C 1.16:
                   13421:        * src/types/pa_vrequest.C 1.17:
                   13422:        * src/types/pa_vrequest.h 1.16:
                   13423:        * src/types/pa_vresponse.C 1.4:
                   13424:        * src/types/pa_vresponse.C 1.5:
                   13425:        * src/types/pa_vresponse.h 1.21:
                   13426:        * src/types/pa_vstateless_class.C 1.13:
                   13427:        * src/types/pa_vstateless_class.h 1.23:
                   13428:        * src/types/pa_vstateless_object.h 1.15:
                   13429:        * src/types/pa_vstatus.C 1.6:
                   13430:        * src/types/pa_vstatus.h 1.7:
                   13431:        * src/types/pa_vstring.C 1.16:
                   13432:        * src/types/pa_vstring.C 1.17:
                   13433:        * src/types/pa_vstring.h 1.41:
                   13434:        * src/types/pa_vtable.C 1.11:
                   13435:        * src/types/pa_vtable.C 1.12:
                   13436:        * src/types/pa_vtable.h 1.37:
                   13437:        * src/types/pa_vvoid.h 1.8:
                   13438:        * src/types/pa_vxdoc.C 1.11:
                   13439:        * src/types/pa_vxdoc.C 1.12:
                   13440:        * src/types/pa_vxdoc.h 1.19:
                   13441:        * src/types/pa_vxnode.C 1.15:
                   13442:        * src/types/pa_vxnode.C 1.16:
                   13443:        * src/types/pa_vxnode.h 1.12:
                   13444:        * src/types/pa_wcontext.C 1.15:
                   13445:        * src/types/pa_wcontext.h 1.27:
                   13446:        * src/types/pa_wwrapper.h 1.16:
                   13447:                name spelling
                   13448: 
                   13449: 2002-02-07  paf
                   13450:        * src/main/compile.C 1.56:
                   13451:        * src/main/compile.tab.C 1.39:
                   13452:        * src/main/compile.y 1.180:
                   13453:        * src/main/compile_tools.h 1.56:
                   13454:                disabled $if reference due to conflicts with local variables
                   13455: 
                   13456:        * configure 1.5:
                   13457:        * configure.in 1.7:
                   13458:        * src/classes/Makefile.in 1.39:
                   13459:        * src/include/pa_config_auto.h.in 1.18:
                   13460:        * src/main/Makefile.in 1.35:
                   13461:        * src/main/pa_common.C 1.99:
                   13462:        * src/main/pa_socks.C 1.10:
                   13463:        * src/targets/Makefile.in 1.30:
                   13464:        * src/targets/cgi/Makefile.in 1.37:
                   13465:        * src/types/Makefile.in 1.31:
                   13466:                compiled under cygwin
                   13467:                added yet another locking function: fcntl
                   13468: 
                   13469:        * src/classes/Makefile.in 1.40:
                   13470:        * src/main/Makefile.in 1.36:
                   13471:        * src/targets/Makefile.in 1.31:
                   13472:        * src/targets/apache13/Makefile.in 1.29:
                   13473:        * src/targets/cgi/Makefile.in 1.38:
                   13474:        * src/types/Makefile.in 1.32:
                   13475:                makes
                   13476: 
                   13477:        * src/include/pa_array.h 1.50:
                   13478:        * src/main/compile.C 1.55:
                   13479:        * src/main/compile.tab.C 1.37:
                   13480:        * src/main/compile.y 1.179:
                   13481:        * src/main/compile_tools.C 1.43:
                   13482:        * src/main/compile_tools.h 1.55:
                   13483:                operators now detected by check at name_without_curly_rdive_read rule whether diving code constists only of
                   13484:                OP_VALUE+string+OP_GET_ELEMENT.
                   13485:                and last op code substituted with OP_GET_ELEMENT_OR_OPERATOR
                   13486:                to form
                   13487:                OP_VALUE+string+OP_GET_ELEMENT_OR_OPERATOR.
                   13488:                code
                   13489: 
                   13490:        * operators.txt 1.6:
                   13491:        * src/classes/string.C 1.95:
                   13492:        * src/include/pa_config_fixed.h 1.35:
                   13493:        * src/main/compile.tab.C 1.38:
                   13494:                ^int/double/string.format
                   13495:                now can be called with normal [] brackets, not stupid {} as it were implemented for some strange reason.
                   13496:                retaining backward compatibility due to some already-implemented servers
                   13497: 
                   13498:        * config.sub 1.2:
                   13499:                on cygwin configure passes it with strange i1586 const, hacked
                   13500:                it to mean i586
                   13501: 
                   13502:        * src/main/pa_socks.C 1.11:
                   13503:                swapped headers to avoid compiler warnings
                   13504: 
                   13505:        * operators.txt 1.7:
                   13506:        * src/classes/table.C 1.142:
                   13507:        * src/include/pa_array.h 1.51:
                   13508:        * src/include/pa_table.h 1.39:
                   13509:        * src/main/pa_array.C 1.45:
                   13510:        * src/main/pa_table.C 1.42:
                   13511:        * www/htdocs/auto.p 1.3:
                   13512:        * www/htdocs/index.html 1.6:
                   13513:                table::create now // 'set' name obsolete now
                   13514:                table clone.
                   13515: 
                   13516:        * operators.txt 1.8:
                   13517:        * src/classes/xdoc.C 1.83:
                   13518:        * src/include/pa_config_fixed.h 1.36:
                   13519:                xdoc::set obsolete now, now xdoc::create, with both sences
                   13520: 
                   13521: 2002-02-06  paf
                   13522:        * src/classes/mail.C 1.52:
                   13523:                *** empty log message ***
                   13524: 
                   13525:        * configure 1.4:
                   13526:        * configure.in 1.6:
                   13527:                prefix expanded, grr
                   13528: 
                   13529:        * operators.txt 1.5:
                   13530:        * src/classes/mail.C 1.51:
                   13531:                mail:send config changed
                   13532: 
                   13533: 2002-02-05  paf
                   13534:        * configure.in 1.3:
                   13535:        * operators.txt 1.2:
                   13536:        * src/classes/file.C 1.70:
                   13537:        * src/classes/op.C 1.69:
                   13538:        * src/include/pa_common.h 1.72:
                   13539:        * src/include/pa_config_includes.h 1.15:
                   13540:        * src/main/compile.tab.C 1.36:
                   13541:        * src/main/pa_common.C 1.98:
                   13542:        * www/htdocs/index.html 1.5:
                   13543:                rewritten ^cache to use non-blocking-exclusive-caches
                   13544: 
                   13545:        * src/types/pa_vstatus.C 1.4:
                   13546:                status:rusage 3
                   13547: 
                   13548:        * src/main/pa_common.C 1.97:
                   13549:                text file read mode on win32 adjusted [speed impact. was off
                   13550:                for debugging purpose, but forgotten afterwards]
                   13551: 
                   13552:        * operators.txt 1.3:
                   13553:                status:rusage described int operators
                   13554: 
                   13555:        * configure.in 1.4:
                   13556:        * src/types/Makefile.am 1.18:
                   13557:        * src/types/pa_vstatus.h 1.5:
                   13558:        * src/types/types.dsp 1.18:
                   13559:                status:rusage
                   13560: 
                   13561:        * src/types/pa_vstatus.C 1.1:
                   13562:                status:rusage 1
                   13563: 
                   13564:        * configure 1.3:
                   13565:        * configure.in 1.5:
                   13566:        * src/include/pa_config_auto.h.in 1.17:
                   13567:        * src/types/Makefile.in 1.30:
                   13568:        * src/types/pa_vstatus.C 1.2:
                   13569:                *** empty log message ***
                   13570: 
                   13571:        * src/main/pa_exec.C 1.22.14.1:
                   13572:        * src/main/pa_exec.C 1.23:
                   13573:                argv0 now correct
                   13574: 
                   13575:        * src/types/pa_vstatus.C 1.3:
                   13576:                status:rusage 2
                   13577: 
                   13578:        * operators.txt 1.4:
                   13579:                regex options commented
                   13580: 
                   13581: 2002-02-01  paf
                   13582:        * src/classes/op.C 1.62.2.1.2.3:
                   13583:                file_write does EX lock after create,
                   13584:                while file_read does SH after open,
                   13585:                so there's a moment after create but before EX lock when read can sneak into, and read just-created-for-writing-and-not-yet-locked file,
                   13586:                added a check for that in ^cache...read
                   13587: 
                   13588: 2002-01-31  paf
                   13589:        * src/main/execute.C 1.210:
                   13590:        * www/htdocs/index.html 1.3:
                   13591:                operators check, thay mistakenly seen in
                   13592:                  $class:operator
                   13593:                  $object.operators
                   13594:                contexts
                   13595: 
                   13596:        * INSTALL 1.2:
                   13597:        * Makefile.in 1.2:
                   13598:        * configure 1.2:
                   13599:        * configure.in 1.2:
                   13600:        * etc/Makefile.am 1.2:
                   13601:        * etc/Makefile.in 1.2:
                   13602:        * etc/parser3.charsets/Makefile.in 1.3:
                   13603:        * ident.awk 1.2:
                   13604:        * src/Makefile.in 1.42:
                   13605:        * src/classes/Makefile.am 1.36:
                   13606:        * src/classes/Makefile.in 1.38:
                   13607:        * src/main/Makefile.am 1.29:
                   13608:        * src/main/Makefile.in 1.34:
                   13609:        * src/targets/Makefile.in 1.29:
                   13610:        * src/targets/apache13/Makefile.am 1.10:
                   13611:        * src/targets/cgi/Makefile.am 1.27:
                   13612:        * src/targets/cgi/Makefile.in 1.36:
                   13613:        * src/targets/cgi/pa_config_paths.h.in 1.1:
                   13614:        * src/targets/cgi/parser3.C 1.152:
                   13615:        * src/types/Makefile.am 1.17:
                   13616:        * src/types/Makefile.in 1.29:
                   13617:                lowered indent.awk back to src/
                   13618: 
                   13619:        * src/classes/xdoc.C 1.82:
                   13620:        * src/targets/cgi/parser3.dsp 1.41:
                   13621:        * www/htdocs/index.html 1.2:
                   13622:                now compiles under win32
                   13623: 
                   13624:        * src/main/compile.tab.C 1.35:
                   13625:        * src/main/compile.y 1.178:
                   13626:                disabled operator call after ^xxx:
                   13627: 
                   13628:        * AUTHORS 1.1:
                   13629:        * COPYING 1.1:
                   13630:        * INSTALL 1.1:
                   13631:        * Makefile.am 1.1:
                   13632:        * Makefile.in 1.1:
                   13633:        * NEWS 1.1:
                   13634:        * README 1.1:
                   13635:        * acinclude.m4 1.1:
                   13636:        * aclocal.m4 1.1:
                   13637:        * asm.txt 1.1:
                   13638:        * config.guess 1.1:
                   13639:        * config.sub 1.1:
                   13640:        * configure 1.1:
                   13641:        * configure.in 1.1:
                   13642:        * etc/Makefile.am 1.1:
                   13643:        * etc/Makefile.in 1.1:
                   13644:        * etc/parser3.charsets/Makefile.am 1.1:
                   13645:        * etc/parser3.charsets/Makefile.in 1.1:
                   13646:        * etc/parser3.charsets/koi8-r.cfg 1.1:
                   13647:        * etc/parser3.charsets/windows-1250.cfg 1.1:
                   13648:        * etc/parser3.charsets/windows-1251.cfg 1.1:
                   13649:        * form.txt 1.1:
                   13650:        * ident.awk 1.1:
                   13651:        * install-sh 1.1:
                   13652:        * lang.txt 1.1:
                   13653:        * ltconfig 1.1:
                   13654:        * ltmain.sh 1.1:
                   13655:        * missing 1.1:
                   13656:        * mkinstalldirs 1.1:
                   13657:        * operators.txt 1.1:
                   13658:        * parser3.dsw 1.1:
                   13659:        * sql.txt 1.1:
                   13660:        * src/Makefile.am 1.14:
                   13661:        * src/Makefile.in 1.41:
                   13662:        * src/classes/Makefile.am 1.35:
                   13663:        * src/classes/Makefile.in 1.37:
                   13664:        * src/include/pa_config_auto.h.in 1.16:
                   13665:        * src/main/Makefile.am 1.28:
                   13666:        * src/main/Makefile.in 1.33:
                   13667:        * src/targets/Makefile.in 1.28:
                   13668:        * src/targets/apache13/Makefile.am 1.9:
                   13669:        * src/targets/apache13/Makefile.in 1.28:
                   13670:        * src/targets/cgi/Makefile.am 1.26:
                   13671:        * src/targets/cgi/Makefile.in 1.35:
                   13672:        * src/targets/cgi/parser3.C 1.151:
                   13673:        * src/types/Makefile.am 1.16:
                   13674:        * src/types/Makefile.in 1.28:
                   13675:        * types.txt 1.1:
                   13676:        * www/Makefile.am 1.1:
                   13677:        * www/Makefile.in 1.1:
                   13678:        * www/htdocs/auto.p 1.1:
                   13679:        * www/htdocs/global.xsl 1.1:
                   13680:        * www/htdocs/index.html 1.1:
                   13681:        * www/htdocs/parser-status.html 1.1:
                   13682:        * www/htdocs/people.dtd 1.1:
                   13683:                moved etc&www out of src, moved configure&co out of src
                   13684:                added windows-1250.cfg
                   13685:                straightened installation scripts procedure
                   13686:                made targets/cgi/parser3.C be dependant on ./configure --sysconfdir change
                   13687: 
                   13688:        * src/include/pa_opcode.h 1.12:
                   13689:        * src/include/pa_request.h 1.119:
                   13690:        * src/main/compile.C 1.54:
                   13691:        * src/main/compile.tab.C 1.33:
                   13692:        * src/main/compile.y 1.177:
                   13693:        * src/main/compile_tools.C 1.42:
                   13694:        * src/main/compile_tools.h 1.54:
                   13695:        * src/main/execute.C 1.215:
                   13696:        * src/types/pa_wcontext.h 1.25:
                   13697:                operators check 6.1
                   13698:                rewritten. now check is done at compile time
                   13699: 
                   13700:        * src/main/execute.C 1.214:
                   13701:                operators check 5
                   13702:                floated up old error of staying in 'entered class/object' state after $a($a..)
                   13703:                it prevented operators from being called thereafter
                   13704: 
                   13705:        * src/main/compile.tab.C 1.34:
                   13706:        * src/main/execute.C 1.216:
                   13707:                made operators lookup first in ^xxx situation.
                   13708:                so that one could not do
                   13709:                $if[1]
                   13710:                ^if[xxx]
                   13711: 
1.24      paf      13712:        * etc/parser3.charsets/Makefile.in 1.2:
                   13713:                *** empty log message ***
                   13714: 
1.15      paf      13715:        * src/main/execute.C 1.211:
                   13716:        * src/types/pa_wcontext.h 1.24:
                   13717:        * www/htdocs/auto.p 1.2:
                   13718:        * www/htdocs/index.html 1.4:
                   13719:                operators check 2
                   13720:                floated up old error of staying in 'entered class' state after $a:a[a]
                   13721:                it prevented operators from being called thereafter
                   13722: 
                   13723:        * src/main/execute.C 1.212:
                   13724:                operators check 3
                   13725:                floated up old error of staying in 'entered class' state after $a:a(a)
                   13726:                it prevented operators from being called thereafter
                   13727: 
                   13728:        * src/include/pa_opcode.h 1.11:
                   13729:        * src/main/compile.tab.C 1.32:
                   13730:        * src/main/compile.y 1.176:
                   13731:        * src/main/execute.C 1.213:
                   13732:                operators check 4
                   13733:                floated up old error of staying in 'entered object' state after ^a.a(a)
                   13734:                it prevented operators from being called thereafter
                   13735: 
                   13736: 2002-01-30  paf
                   13737:        * src/classes/xdoc.C 1.81:
                   13738:                acconfig.h changed [comments before #undefs removed]
                   13739:                those comments were a mistake, and prevented libltdl from function properly
                   13740: 
                   13741: 2002-01-29  paf
                   13742:        * src/Makefile.am 1.13:
                   13743:        * src/Makefile.in 1.40:
                   13744:        * src/classes/Makefile.am 1.34:
                   13745:        * src/classes/Makefile.in 1.36:
                   13746:        * src/main/Makefile.in 1.32:
                   13747:        * src/targets/Makefile.in 1.27:
                   13748:        * src/targets/apache13/Makefile.in 1.27:
                   13749:        * src/targets/cgi/Makefile.in 1.34:
                   13750:        * src/types/Makefile.in 1.27:
                   13751:                removed libltdl/libtool creation [modified acinclude.m4 which were creating int into just assignment LIBTOOL=../libtool]
                   13752:                added default system config&charsetts
                   13753:                prepared 'make install', now it installs
                   13754:                targets/cgi/parser3 into bin directory
                   13755:                etc/parser3.conf & etc/parser3.charsets/* into $sysconfdir and $sysconfdir/parser3.charsets respectively
                   13756: 
                   13757:        * src/classes/xdoc.C 1.80:
                   13758:        * src/include/pa_charset.h 1.12:
                   13759:        * src/include/pa_globals.h 1.76:
                   13760:        * src/main/pa_globals.C 1.111:
                   13761:                few forgotten ifdef XML added
                   13762: 
                   13763: 2002-01-28  paf
                   13764:        * src/classes/xdoc.C 1.79:
                   13765:        * src/classes/xnode.h 1.7:
                   13766:        * src/main/pa_exception.C 1.35:
                   13767:                xdoc.importNode 0
                   13768: 
                   13769:        * src/classes/xdoc.C 1.78:
                   13770:                xdoc::set now untaints OK
                   13771: 
                   13772:        * src/Makefile.in 1.39:
                   13773:                stupid make runs automake on ths
                   13774: 
                   13775:        * src/classes/xnode.C 1.34:
                   13776:        * src/types/pa_vxdoc.h 1.17:
                   13777:                xdoc.importNode 1  [fixed as_node helper func to accept docs]
                   13778: 
                   13779:        * src/classes/Makefile.am 1.33:
                   13780:        * src/classes/Makefile.in 1.35:
                   13781:        * src/targets/cgi/Makefile.am 1.25:
                   13782:        * src/targets/cgi/Makefile.in 1.33:
                   13783:                xalan-patch removed
                   13784: 
                   13785:        * src/main/pa_exception.C 1.36:
                   13786:                dom|generic error output fix
                   13787: 
                   13788:        * src/classes/xnode.C 1.35:
                   13789:                xdoc.importNode 2 [mistype err]
                   13790: 
                   13791:        * src/classes/xnode.C 1.36:
                   13792:                xdoc.importNode 3 [check err]
                   13793: 
                   13794: 2002-01-25  paf
                   13795:        * src/include/pa_charset.h 1.11:
                   13796:        * src/main/pa_globals.C 1.110:
                   13797:                http://localhost/abc -> $ENV{DOCUMENT_ROOT}/abc | ./abc
                   13798: 
                   13799:        * src/classes/hash.C 1.33:
                   13800:                unified  hash::sql, now
                   13801:                ^hash::sql{query}[[$.limit(2) $.offset(4)]]
                   13802: 
                   13803:        * src/classes/file.C 1.68:
                   13804:        * src/classes/op.C 1.68:
                   13805:        * src/classes/string.C 1.94:
                   13806:        * src/classes/table.C 1.141:
                   13807:        * src/classes/xdoc.C 1.77:
                   13808:        * src/include/pa_common.h 1.70:
                   13809:        * src/main/pa_common.C 1.95:
                   13810:        * src/types/pa_vfile.h 1.38:
                   13811:                removed redundant pool param to some pa_common funcs
                   13812: 
                   13813:        * src/classes/file.C 1.69:
                   13814:        * src/include/pa_common.h 1.71:
                   13815:        * src/main/pa_common.C 1.96:
                   13816:                ^file:lock[filename]{code}
                   13817: 
                   13818:        * src/include/pa_charset.h 1.10:
                   13819:        * src/include/pa_charset.h 1.2.2.1:
                   13820:        * src/include/pa_config_fixed.h 1.34.6.1:
                   13821:        * src/main/compile.tab.C 1.27.6.3:
                   13822:        * src/main/pa_charset.C 1.18:
                   13823:                typedef XMLCh... not stupid illegal define
                   13824: 
                   13825:        * src/main/compile.tab.C 1.31:
                   13826:        * src/main/compile.y 1.175:
                   13827:                #comment  before @ after @SPECIAL
                   13828:                now works OK
                   13829: 
                   13830:        * src/main/pa_exec.C 1.20:
                   13831:                max arg count now 10, and proper message on violation that added
                   13832: 
                   13833:        * src/main/pa_exec.C 1.21:
                   13834:        * src/main/pa_exec.C 1.22:
                   13835:                unix: exec now does chdir to script dir
                   13836: 
                   13837: 2002-01-24  paf
                   13838:        * src/classes/hashfile.C 1.20:
                   13839:        * src/include/pa_db_table.h 1.13:
                   13840:        * src/include/pa_opcode.h 1.10:
                   13841:        * src/main/compile.tab.C 1.30:
                   13842:        * src/main/compile.y 1.174:
                   13843:        * src/main/compile_tools.C 1.41:
                   13844:        * src/main/compile_tools.h 1.53:
                   13845:        * src/main/execute.C 1.209:
                   13846:        * src/main/pa_db_connection.C 1.35:
                   13847:        * src/main/pa_db_table.C 1.18:
                   13848:        * src/types/pa_vhashfile.C 1.17:
                   13849:        * src/types/pa_vhashfile.h 1.13:
                   13850:                merged from r17 - hashfile without logfiles
                   13851: 
                   13852:        * src/classes/xnode.C 1.31:
                   13853:                xnode.select returns array always now, in case 'nothing found' 
                   13854:                returns empty array
                   13855: 
                   13856:        * src/include/pa_version.h 1.3:
                   13857:                changed version number
                   13858: 
                   13859:        * src/classes/xdoc.C 1.74:
                   13860:                checked empty response
                   13861: 
                   13862:        * src/classes/hashfile.C 1.19.2.1:
                   13863:        * src/include/pa_db_table.h 1.12.6.1:
                   13864:        * src/main/compile.tab.C 1.27.6.2:
                   13865:        * src/main/pa_db_connection.C 1.34.6.1:
                   13866:        * src/main/pa_db_table.C 1.17.2.1:
                   13867:        * src/types/pa_vhashfile.C 1.16.6.1:
                   13868:        * src/types/pa_vhashfile.h 1.12.14.1:
                   13869:                hashfile:
                   13870:                removed use of transactions
                   13871:                [libdb removed DB_INIT_LOCK, DB_INIT_LOG, DB_INIT_TXN init bits,
                   13872:                thus got rid of huge log files, which cluttered disk without huge need]
                   13873: 
                   13874:        * src/classes/xdoc.C 1.76:
                   13875:        * src/classes/xnode.C 1.33:
                   13876:        * src/classes/xnode.h 1.6:
                   13877:                gdome_xml_doc_get_xmlDoc handy macro, which is strangly abscent
                   13878:                in dome lib
                   13879: 
                   13880:        * src/classes/xnode.C 1.30:
                   13881:                xpath nodes select bug [0] instead of [i], be more tender with
                   13882:                ctrl/c/v
                   13883: 
                   13884:        * src/classes/xdoc.C 1.75:
                   13885:                xsltSaveResultTo checked <0 response
                   13886: 
                   13887:        * src/classes/xnode.C 1.32:
                   13888:                xdoc.select fixed context node [were always /, not self node]
                   13889: 
                   13890: 2002-01-23  paf
                   13891:        * src/classes/xdoc.C 1.72:
                   13892:        * src/main/pa_globals.C 1.108:
                   13893:        * src/types/pa_vdouble.h 1.29:
                   13894:                %.20E now default float format
                   13895:                this is for regretful twice-converting here:
                   13896:                $a(double value) when they write double falue  they convert it to string first,
                   13897:                thus %g were losing precesion.
                   13898:                
                   13899:                todo: think up some way to remove double->string string->double twice-converting
                   13900: 
                   13901:        * src/main/pa_globals.C 1.105:
                   13902:                removed debug xslt messages
                   13903: 
                   13904:        * src/main/pa_globals.C 1.106:
                   13905:                xslt linked dynamically. [mistekenly were statically linked]
                   13906: 
                   13907:        * src/include/pa_exception.h 1.29:
                   13908:        * src/main/compile.tab.C 1.29:
                   13909:        * src/main/pa_exception.C 1.34:
                   13910:                removed exception va_list constructor.
                   13911:                1. not needed anymore
                   13912:                2. there were a conflict[causing errors] between
                   13913:                ctor(, va_list)
                   13914:                ctor(, ...)
                   13915:                compiler[both msvc and gcc] never detected an ambiguilty here, compiling
                   13916:                ctor(, "hello") into ctor(, va_list) which, of course, caused gpf
                   13917: 
                   13918:        * src/types/pa_vdouble.h 1.30:
                   13919:                %.20E now float format when %g produced 'e' in output
                   13920:                this is for regretful twice-converting here:
                   13921:                $a(double value) when they write double falue  they convert it to string first,
                   13922:                thus %g were losing precesion.
                   13923:                
                   13924:                todo: think up some way to remove double->string string->double twice-converting
                   13925: 
                   13926:        * src/types/pa_vdouble.h 1.28.14.1:
                   13927:                double prec. todo: get rid of twice-converting
                   13928: 
                   13929:        * src/classes/xdoc.C 1.71:
                   13930:        * src/include/pa_stylesheet_connection.h 1.24:
                   13931:        * src/main/pa_globals.C 1.107:
                   13932:                xmlSubstituteEntitiesDefault(1) now global, reasons in comment inside
                   13933: 
                   13934:        * src/classes/xdoc.C 1.73:
                   13935:        * src/main/pa_globals.C 1.109:
                   13936:                xdoc::load/set entities substituted.
                   13937:                        // 2. when dom tree with entites goes under transform text nodes
                   13938:                        // got [erroreosly] cut on first entity occurance
                   13939: 
                   13940: 2002-01-22  paf
                   13941:        * src/classes/table.C 1.140:
                   13942:                join behaived badly in case named tables structure mismatched: 0 strings sneaked into dest failing afterwards.
                   13943:                replaced them with empty strings
                   13944: 
                   13945:        * src/classes/xdoc.C 1.70:
                   13946:        * src/include/pa_stylesheet_connection.h 1.23:
                   13947:        * src/main/pa_globals.C 1.104:
                   13948:                xsl stylesheet load: parsed entities, this helps compiling stylesheet properly.
                   13949:                example:
                   13950:                this refused to work,
                   13951:                            <b>&laquo;<xsl:value-of select="@title" />&raquo;</b>
                   13952:                stranly worked only this way:
                   13953:                            <b>&#171;<xsl:value-of select="@title" />&raquo;</b>
                   13954:                
                   13955:                docs says "set it to 1", never going into details, so I decided to try NOT to do that
                   13956: 
                   13957: 2002-01-21  paf
                   13958:        * src/include/pa_stylesheet_connection.h 1.20:
                   13959:        * src/main/pa_exception.C 1.32:
                   13960:                xml generic message 1
                   13961: 
                   13962:        * src/main/pa_charset.C 1.17:
                   13963:                checked empty transcoders in transcode_cstr|buf
                   13964: 
                   13965:        * src/classes/Makefile.in 1.34:
                   13966:        * src/classes/xdoc.C 1.67:
                   13967:        * src/classes/xnode.C 1.29:
                   13968:        * src/include/pa_stylesheet_connection.h 1.22:
                   13969:        * src/main/pa_charset.C 1.16:
                   13970:        * src/main/pa_globals.C 1.103:
                   13971:        * src/main/pa_sql_driver_manager.C 1.59:
                   13972:        * src/main/pa_stylesheet_manager.C 1.11:
                   13973:        * src/targets/cgi/Makefile.am 1.24:
                   13974:        * src/targets/cgi/Makefile.in 1.32:
                   13975:                autoconf gnome
                   13976: 
                   13977:        * src/classes/xdoc.C 1.69:
                   13978:                xdoc::load error source = filespec
                   13979: 
                   13980:        * src/classes/table.C 1.139:
                   13981:                ^table::load
                   13982:                empty lines or #comments before headline
                   13983: 
                   13984:        * src/include/pa_array.h 1.49:
                   13985:        * src/include/pa_globals.h 1.74:
                   13986:        * src/include/pa_request.h 1.118:
                   13987:        * src/include/pa_threads.h 1.21:
                   13988:        * src/main/pa_array.C 1.44:
                   13989:        * src/main/pa_exception.C 1.31:
                   13990:        * src/main/pa_globals.C 1.101:
                   13991:        * src/main/pa_request.C 1.192:
                   13992:        * src/targets/apache13/pa_threads.C 1.4:
                   13993:        * src/targets/cgi/pa_threads.C 1.6:
                   13994:        * src/targets/isapi/pa_threads.C 1.6:
                   13995:                xml generic errors 0
                   13996: 
                   13997:        * src/classes/xdoc.C 1.66:
                   13998:        * src/classes/xnode.C 1.28:
                   13999:        * src/include/pa_exception.h 1.28:
                   14000:        * src/include/pa_globals.h 1.75:
                   14001:        * src/include/pa_stylesheet_connection.h 1.21:
                   14002:        * src/main/pa_exception.C 1.33:
                   14003:        * src/main/pa_globals.C 1.102:
                   14004:        * src/targets/apache13/pa_threads.C 1.5:
                   14005:        * src/targets/cgi/pa_threads.C 1.7:
                   14006:                xslt generic error 1
                   14007: 
                   14008:        * src/classes/xdoc.C 1.68:
                   14009:                transform error source now stylesheet_filespec
                   14010: 
                   14011: 2002-01-16  paf
                   14012:        * src/classes/xdoc.C 1.64:
                   14013:                few comments
                   14014: 
                   14015:        * src/classes/hash.C 1.32:
                   14016:        * src/classes/op.C 1.67:
                   14017:        * src/classes/string.C 1.93:
                   14018:        * src/classes/table.C 1.138:
                   14019:        * src/classes/void.C 1.14:
                   14020:        * src/classes/xdoc.C 1.65:
                   14021:        * src/include/pa_db_connection.h 1.19:
                   14022:        * src/include/pa_request.h 1.117:
                   14023:        * src/include/pa_sql_connection.h 1.21:
                   14024:        * src/include/pa_sql_driver_manager.h 1.21:
                   14025:        * src/include/pa_stylesheet_connection.h 1.19:
                   14026:        * src/include/pa_stylesheet_manager.h 1.10:
                   14027:        * src/main/pa_request.C 1.191:
                   14028:        * src/main/pa_sql_driver_manager.C 1.58:
                   14029:        * src/main/pa_stylesheet_manager.C 1.10:
                   14030:        * src/targets/cgi/pool_storage.h 1.7:
                   14031:                auto closers to sql_connection, stylesheet_connection
                   14032:                auto destroyers to remaining gnome objects
                   14033: 
                   14034: 2002-01-15  paf
                   14035:        * src/classes/xdoc.C 1.61:
                   14036:        * src/include/pa_charset.h 1.9:
                   14037:        * src/main/pa_charset.C 1.15:
                   14038:                started output options parsing
                   14039: 
                   14040:        * src/classes/xdoc.C 1.63:
                   14041:                xdoc
                   14042:                  file
                   14043:                  save
                   14044:                  string
                   14045:                
                   14046:                ready.
                   14047:                todo: error handling
                   14048: 
                   14049:        * src/classes/xdoc.C 1.62:
                   14050:                xdoc save rewritten using xmlAllocOutputBuffer
                   14051:                less mallocs, more reallocs. less fragmented result
                   14052: 
                   14053: 2002-01-14  paf
                   14054:        * src/classes/xdoc.C 1.60:
                   14055:                method
                   14056: 
                   14057:        * src/classes/xdoc.C 1.59:
                   14058:        * src/classes/xnode.C 1.27:
                   14059:        * src/include/pa_charset.h 1.8:
                   14060:        * src/include/pa_pool.h 1.76:
                   14061:        * src/include/pa_stylesheet_connection.h 1.18:
                   14062:        * src/main/main.dsp 1.145:
                   14063:        * src/main/pa_charset.C 1.14:
                   14064:        * src/main/pa_globals.C 1.100:
                   14065:        * src/main/pa_pool.C 1.49:
                   14066:        * src/main/pa_stylesheet_manager.C 1.9:
                   14067:        * src/types/pa_vxdoc.h 1.16:
                   14068:                xslt transform0.
                   14069:                TODO:
                   14070:                  use output options
                   14071:                  handle errors
                   14072: 
                   14073:        * src/classes/xdoc.C 1.58:
                   14074:        * src/classes/xnode.C 1.26:
                   14075:                ^xdoc.file
                   14076: 
                   14077: 2002-01-11  paf
                   14078:        * src/classes/xnode.C 1.22:
                   14079:        * src/include/pa_charset.h 1.6:
                   14080:        * src/main/pa_charset.C 1.13:
                   14081:                xpath selectNode 1
                   14082: 
                   14083:        * src/include/pa_opcode.h 1.9.6.1:
                   14084:        * src/main/compile.tab.C 1.27.6.1:
                   14085:        * src/main/compile.y 1.173.14.1:
                   14086:        * src/main/compile_tools.C 1.40.14.1:
                   14087:        * src/main/compile_tools.h 1.52.6.1:
                   14088:        * src/main/execute.C 1.208.2.1:
                   14089:                partial logical && || evaluation
                   14090: 
                   14091:        * src/classes/xnode.C 1.23:
                   14092:                xpath selectNode 2
                   14093: 
                   14094:        * src/classes/xnode.C 1.24:
                   14095:        * src/include/pa_charset.h 1.7:
                   14096:                xpath selectNode 3: string/number/bool
                   14097: 
                   14098:        * src/classes/xnode.C 1.25:
                   14099:                xpath selectNodes
                   14100: 
                   14101: 2002-01-10  paf
                   14102:        * src/classes/xnode.C 1.21:
                   14103:                xpath selectNode -100 [just written]
                   14104: 
                   14105:        * src/classes/xdoc.C 1.57:
                   14106:        * src/classes/xnode.C 1.20:
                   14107:        * src/include/pa_charset.h 1.5:
                   14108:        * src/include/pa_exception.h 1.27:
                   14109:        * src/include/pa_pool.h 1.75:
                   14110:        * src/main/pa_charset.C 1.12:
                   14111:        * src/main/pa_pool.C 1.48:
                   14112:                GdomeDOMString_auto_ptr  c++ wrapper [calls refcounter]
                   14113: 
                   14114: 2001-12-29  paf
                   14115:        * src/classes/xdoc.C 1.56:
                   14116:        * src/include/pa_exception.h 1.26:
                   14117:        * src/main/pa_charset.C 1.11:
                   14118:        * src/main/pa_exception.C 1.30:
                   14119:        * src/main/pa_globals.C 1.99:
                   14120:                xdoc
                   14121:                ^set
                   14122:                ^string with glib works 0
                   14123: 
                   14124: 2001-12-28  paf
                   14125:        * src/main/pa_globals.C 1.98:
                   14126:                renamed gdome to libgdome.dll
                   14127: 
                   14128:        * src/classes/classes.dsp 1.14:
                   14129:        * src/classes/mail.C 1.50:
                   14130:        * src/classes/xdoc.C 1.54:
                   14131:        * src/classes/xnode.C 1.19:
                   14132:        * src/classes/xnode.h 1.5:
                   14133:        * src/include/pa_exception.h 1.25:
                   14134:        * src/include/pa_globals.h 1.73:
                   14135:        * src/main/compile.tab.C 1.28:
                   14136:        * src/main/main.dsp 1.144:
                   14137:        * src/main/pa_charset.C 1.9:
                   14138:        * src/main/pa_dir.C 1.9:
                   14139:        * src/main/pa_exception.C 1.28:
                   14140:        * src/main/pa_exec.C 1.19:
                   14141:        * src/main/pa_globals.C 1.97:
                   14142:        * src/main/pa_socks.C 1.9:
                   14143:        * src/targets/cgi/parser3.C 1.150:
                   14144:        * src/targets/cgi/parser3.dsp 1.40:
                   14145:        * src/types/pa_vxdoc.C 1.9:
                   14146:        * src/types/pa_vxdoc.h 1.15:
                   14147:        * src/types/pa_vxnode.C 1.13:
                   14148:        * src/types/pa_vxnode.h 1.10:
                   14149:                gnome libs just compiled in.
                   14150:                no refcounting
                   14151:                no xpath
                   14152:                no xslt
                   14153:                  yet
                   14154: 
                   14155:        * src/classes/xdoc.C 1.55:
                   14156:        * src/include/pa_charset.h 1.4:
                   14157:        * src/main/pa_charset.C 1.10:
                   14158:        * src/main/pa_exception.C 1.29:
                   14159:                started glib transcoders
                   14160: 
                   14161: 2001-12-27  paf
                   14162:        * src/include/pa_charset.h 1.3:
                   14163:        * src/include/pa_common.h 1.69:
                   14164:        * src/include/pa_exception.h 1.24:
                   14165:        * src/include/pa_globals.h 1.72:
                   14166:        * src/include/pa_pool.h 1.74:
                   14167:        * src/main/main.dsp 1.143:
                   14168:        * src/main/pa_charset.C 1.8:
                   14169:        * src/main/pa_charsets.C 1.4:
                   14170:        * src/main/pa_globals.C 1.96:
                   14171:        * src/main/pa_pool.C 1.47:
                   14172:        * src/targets/cgi/parser3.C 1.149:
                   14173:        * src/targets/cgi/parser3.dsp 1.39:
                   14174:        * src/types/pa_vxdoc.C 1.8:
                   14175:        * src/types/pa_vxdoc.h 1.14:
                   14176:        * src/types/pa_vxnode.C 1.12:
                   14177:        * src/types/pa_vxnode.h 1.9:
                   14178:        * src/types/types.dsp 1.17:
                   14179:                going away from xalan&xerces, started the process.
                   14180:                globals [initialization
                   14181:                pool [charset update
                   14182:                charset [transcodings
                   14183:                vxnode vxdoc [DOM calls
                   14184: 
                   14185:        * src/classes/Makefile.am 1.32:
                   14186:                going away from xalan&xerces, not needed anymore
                   14187: 
                   14188: 2001-12-26  paf
                   14189:        * src/include/pa_charset.h 1.2:
                   14190:        * src/include/pa_charsets.h 1.3:
                   14191:        * src/main/pa_charset.C 1.7:
                   14192:        * src/main/pa_charsets.C 1.3:
                   14193:        * src/main/pa_request.C 1.190:
                   14194:                charset key globalized [bug]
                   14195: 
                   14196: 2001-12-25  paf
                   14197:        * src/classes/mail.C 1.49:
                   14198:        * src/classes/table.C 1.137:
                   14199:        * src/include/pa_string.h 1.122:
                   14200:        * src/main/pa_string.C 1.136:
                   14201:                table set & append changed splitting languages, separators now can be clean AND as-is
                   14202:                same to mail command line $MAIN:MAIL.progX arguments
                   14203: 
                   14204: 2001-12-24  paf
                   14205:        * src/classes/hashfile.C 1.19:
                   14206:        * src/classes/op.C 1.66:
                   14207:        * src/main/pa_db_table.C 1.17:
                   14208:        * src/main/pa_string.C 1.135:
                   14209:                read from cache size check updated
                   14210: 
                   14211:        * src/main/pa_string.C 1.133:
                   14212:        * src/main/pa_string.C 1.134:
                   14213:                String::join_chain another ugly bug :(
                   14214: 
                   14215:        * src/classes/mail.C 1.48:
                   14216:                one parted text messages - no multipart mime-type anymore.
                   14217:                for convinient if $.attach-ments
                   14218: 
                   14219: 2001-12-21  paf
                   14220:        * src/main/pa_request.C 1.189:
                   14221:                $result in @main actually not working, to hell with it for now
                   14222: 
                   14223:        * src/main/execute.C 1.207:
                   14224:                junction evaluation canceled - endless recursion detected
                   14225: 
                   14226:        * src/classes/date.C 1.14:
                   14227:                date:sql-string now returns localtime
                   14228: 
                   14229:        * src/include/pa_request.h 1.116:
                   14230:        * src/main/execute.C 1.208:
                   14231:        * src/main/pa_request.C 1.188:
                   14232:        * src/types/pa_vmethod_frame.h 1.20:
                   14233:        * src/types/pa_wcontext.h 1.23:
                   14234:                $result in @main @postprocess @exception
                   14235: 
                   14236: 2001-12-19  paf
                   14237:        * src/main/pa_request.C 1.187:
                   14238:                CLASS_PATH now / = DOCUMENT_ROOT
                   14239: 
                   14240:        * src/classes/op.C 1.65:
                   14241:                ^cache keypath now relative
                   14242: 
                   14243:        * src/classes/hashfile.C 1.18:
                   14244:                ^hashfile.open DB_HOME now relative
                   14245: 
                   14246:        * src/main/pa_charset.C 1.6:
                   14247:                charset->charset transcoding via unicode intermediate
                   14248: 
                   14249:        * src/classes/mail.C 1.46:
                   14250:        * src/include/pa_config_fixed.h 1.34:
                   14251:                to/from 0 check were missing
                   14252: 
                   14253:        * src/classes/mail.C 1.47:
                   14254:                changed weighting prior to sort
                   14255: 
                   14256: 2001-12-17  paf
                   14257:        * src/classes/mail.C 1.45:
                   14258:        * src/include/pa_charsets.h 1.2:
                   14259:        * src/include/pa_string.h 1.121:
                   14260:        * src/main/pa_charsets.C 1.2:
                   14261:        * src/main/untaint.C 1.87:
                   14262:        * src/types/pa_vrequest.C 1.14:
                   14263:        * src/types/pa_vresponse.C 1.2:
                   14264:                ^mail:send[
                   14265:                   $.charset[zzz]
                   14266:                addded
                   14267: 
                   14268:        * src/include/pa_db_table.h 1.12:
                   14269:        * src/main/pa_db_table.C 1.16:
                   14270:                db_table used outdated unset services_pool
                   14271: 
                   14272:        * src/main/pa_charset.C 1.5:
                   14273:                ifndef XML were bad type
                   14274: 
                   14275:        * src/classes/image.C 1.63:
                   14276:                govno
                   14277: 
                   14278:        * src/main/untaint.C 1.86:
                   14279:                allowed space in filespec
                   14280: 
                   14281:        * src/classes/image.C 1.64:
                   14282:                no govno
                   14283: 
                   14284:        * src/targets/apache13/mod_parser3.C 1.15:
                   14285:                test r->finfo.st_mode check seems to work only on win32
                   14286: 
                   14287:        * src/main/pa_charset.C 1.4:
                   14288:                empty bufs transcode [forgot check :(]
                   14289: 
                   14290: 2001-12-15  paf
                   14291:        * src/classes/file.C 1.67:
                   14292:        * src/classes/math.C 1.11:
                   14293:        * src/classes/op.C 1.64:
                   14294:        * src/classes/string.C 1.92:
                   14295:        * src/classes/table.C 1.136:
                   14296:        * src/classes/xdoc.C 1.53:
                   14297:        * src/include/pa_array.h 1.48:
                   14298:        * src/include/pa_cache_managers.h 1.4:
                   14299:        * src/include/pa_charset_connection.h 1.6:
                   14300:        * src/include/pa_charset_manager.h 1.8:
                   14301:        * src/include/pa_common.h 1.68:
                   14302:        * src/include/pa_db_connection.h 1.18:
                   14303:        * src/include/pa_db_manager.h 1.12:
                   14304:        * src/include/pa_db_table.h 1.11:
                   14305:        * src/include/pa_dictionary.h 1.8:
                   14306:        * src/include/pa_exception.h 1.23:
                   14307:        * src/include/pa_exec.h 1.5:
                   14308:        * src/include/pa_globals.h 1.71:
                   14309:        * src/include/pa_hash.h 1.52:
                   14310:        * src/include/pa_opcode.h 1.9:
                   14311:        * src/include/pa_pool.h 1.73:
                   14312:        * src/include/pa_request.h 1.115:
                   14313:        * src/include/pa_sapi.h 1.16:
                   14314:        * src/include/pa_socks.h 1.6:
                   14315:        * src/include/pa_sql_connection.h 1.20:
                   14316:        * src/include/pa_sql_driver_manager.h 1.20:
                   14317:        * src/include/pa_string.h 1.120:
                   14318:        * src/include/pa_stylesheet_connection.h 1.17:
                   14319:        * src/include/pa_stylesheet_manager.h 1.9:
                   14320:        * src/include/pa_table.h 1.38:
                   14321:        * src/include/pa_transcoder.h 1.3:
                   14322:        * src/main/compile_tools.h 1.52:
                   14323:        * src/main/main.dsp 1.142:
                   14324:        * src/main/pa_charset.C 1.1:
                   14325:        * src/main/pa_charset_connection.C 1.13:
                   14326:        * src/main/pa_charset_manager.C 1.10:
                   14327:        * src/main/pa_charsets.C 1.1:
                   14328:        * src/main/pa_globals.C 1.95:
                   14329:        * src/main/pa_pool.C 1.46:
                   14330:        * src/main/pa_request.C 1.186:
                   14331:        * src/main/pa_string.C 1.132:
                   14332:        * src/main/pa_transcoder.C 1.4:
                   14333:        * src/main/untaint.C 1.84:
                   14334:        * src/types/pa_vfile.C 1.24:
                   14335:        * src/types/pa_vform.C 1.50:
                   14336:        * src/types/pa_vform.h 1.31:
                   14337:        * src/types/pa_vrequest.C 1.13:
                   14338:        * src/types/pa_vrequest.h 1.14:
                   14339:        * src/types/pa_vresponse.C 1.1:
                   14340:        * src/types/pa_vresponse.h 1.19:
                   14341:        * src/types/types.dsp 1.16:
                   14342:                introducing Charset
                   14343: 
                   14344:        * src/main/pa_charset.C 1.2:
                   14345:                name_cstr 0
                   14346: 
                   14347:        * src/main/Makefile.in 1.31:
                   14348:        * src/targets/apache13/Makefile.in 1.26:
                   14349:        * src/targets/cgi/Makefile.in 1.31:
                   14350:        * src/types/Makefile.in 1.26:
                   14351:                makes
                   14352: 
                   14353:        * src/include/pa_charset.h 1.1:
                   14354:        * src/include/pa_charsets.h 1.1:
                   14355:                forgot to add
                   14356: 
                   14357:        * src/main/Makefile.am 1.27:
                   14358:        * src/main/pa_charset.C 1.3:
                   14359:        * src/types/Makefile.am 1.15:
                   14360:                charset_connection&manager replaced by charset&charsets
                   14361: 
                   14362:        * src/main/untaint.C 1.85:
                   14363:                uri lang now knows about client/source charsets
                   14364: 
                   14365: 2001-12-14  paf
                   14366:        * src/include/pa_request.h 1.114:
                   14367:        * src/include/pa_transcoder.h 1.2:
                   14368:        * src/main/pa_request.C 1.185:
                   14369:        * src/main/pa_transcoder.C 1.3:
                   14370:        * src/types/pa_vform.C 1.49:
                   14371:        * src/types/pa_vform.h 1.30:
                   14372:                transcodeToUTF8[were FromUTF8] for forms
                   14373:                todo: uri lang
                   14374: 
                   14375:        * src/targets/apache13/Makefile.am 1.8:
                   14376:        * src/targets/cgi/Makefile.am 1.23:
                   14377:                -I../../pcre  to .am
                   14378: 
                   14379:        * src/include/pa_charset_connection.h 1.5:
                   14380:        * src/include/pa_pool.h 1.72:
                   14381:        * src/include/pa_request.h 1.113:
                   14382:        * src/include/pa_transcoder.h 1.1:
                   14383:        * src/main/Makefile.am 1.26:
                   14384:        * src/main/main.dsp 1.141:
                   14385:        * src/main/pa_charset_connection.C 1.12:
                   14386:        * src/main/pa_charset_manager.C 1.9:
                   14387:        * src/main/pa_request.C 1.184:
                   14388:        * src/main/pa_transcoder.C 1.1:
                   14389:        * src/types/Makefile.am 1.14:
                   14390:        * src/types/pa_vrequest.C 1.12:
                   14391:        * src/types/pa_vrequest.h 1.13:
                   14392:        * src/types/pa_vresponse.h 1.18:
                   14393:        * src/types/types.dsp 1.15:
                   14394:                changed charset model.
                   14395:                now important:
                   14396:                $request:charset
                   14397:                $response:charset
                   14398:                while
                   14399:                $response:content-type.charset
                   14400:                become unimportant [informational]
                   14401: 
                   14402:        * src/include/pa_globals.h 1.70:
                   14403:        * src/main/pa_globals.C 1.94:
                   14404:                removed unused defalts_name global
                   14405: 
                   14406:        * src/main/pa_transcoder.C 1.2:
                   14407:                transcodeToUTF8,
                   14408:                now form&uri lang
                   14409: 
                   14410: 2001-12-13  paf
                   14411:        * src/include/pa_types.h 1.35:
                   14412:                msvc head debugging flag
                   14413: 
                   14414:        * src/classes/xdoc.C 1.49:
                   14415:                freed up listener
                   14416: 
                   14417:        * src/classes/xdoc.C 1.51:
                   14418:        * src/main/pa_sql_driver_manager.C 1.57:
                   14419:                rewritten auto_ptr part other way, because of stupid gcc 2.96
                   14420:                /usr/include/g++-3/memory:40: candidates are: auto_ptr<_Tp>
                   14421:                &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with _Tp =
                   14422:                FormatterListener]
                   14423:                /usr/include/g++-3/memory:48:                 auto_ptr<_Tp>
                   14424:                &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &) [with _Tp1 =
                   14425:                FormatterListener, _Tp = FormatterListener]
                   14426: 
                   14427:        * src/include/pa_config_fixed.h 1.32:
                   14428:        * src/main/pa_common.C 1.94:
                   14429:        * src/main/pa_string.C 1.131:
                   14430:                removed signed mismatch warnings
                   14431: 
                   14432:        * src/classes/xdoc.C 1.52:
                   14433:                rewritten auto_ptr part other way2, because of stupid gcc 2.96
                   14434:                /usr/include/g++-3/memory:40: candidates are: auto_ptr<_Tp>
                   14435:                &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with _Tp =
                   14436:                FormatterListener]
                   14437:                /usr/include/g++-3/memory:48:                 auto_ptr<_Tp>
                   14438:                &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &) [with _Tp1 =
                   14439:                FormatterListener, _Tp = FormatterListener]
                   14440: 
                   14441:        * src/main/pa_string.C 1.130:
                   14442:                string::recustruct erroreusly used outdated row ptr
                   14443: 
                   14444:        * src/include/pa_cache_managers.h 1.3:
                   14445:        * src/include/pa_charset_manager.h 1.7:
                   14446:        * src/include/pa_config_fixed.h 1.33:
                   14447:        * src/include/pa_db_manager.h 1.11:
                   14448:        * src/include/pa_sql_driver_manager.h 1.19:
                   14449:        * src/include/pa_stylesheet_manager.h 1.8:
                   14450:        * src/main/pa_cache_managers.C 1.2:
                   14451:        * src/main/pa_globals.C 1.93:
                   14452:                ~Cache_managers
                   14453: 
                   14454:        * src/classes/string.C 1.91:
                   14455:                change msg '... code is not code'
                   14456: 
                   14457:        * src/classes/xdoc.C 1.50:
                   14458:                removed extra inc
                   14459: 
                   14460:        * src/targets/apache13/mod_parser3.C 1.14:
                   14461:        * src/targets/cgi/parser3.C 1.147:
                   14462:        * src/targets/isapi/parser3isapi.C 1.61:
                   14463:                removed 'expires' from header outputs
                   14464: 
                   14465:        * src/targets/cgi/pa_pool.C 1.34:
                   14466:        * src/targets/isapi/pa_pool.C 1.10:
                   14467:                EOL@EOF
                   14468: 
                   14469:        * src/main/pa_db_connection.C 1.34:
                   14470:        * src/main/pa_db_manager.C 1.19:
                   14471:        * src/main/pa_sql_driver_manager.C 1.56:
                   14472:        * src/main/pa_stylesheet_manager.C 1.8:
                   14473:        * src/targets/cgi/pool_storage.h 1.6:
                   14474:                couple cache expiratiors were wrong [past/future prob]
                   14475: 
                   14476:        * src/classes/xdoc.C 1.48:
                   14477:                lang list updated
                   14478: 
                   14479:        * src/targets/cgi/pa_pool.C 1.33:
                   14480:        * src/targets/cgi/parser3.C 1.148:
                   14481:                msvc heap debugging flag
                   14482: 
                   14483:        * src/classes/file.C 1.66:
                   14484:                file::cgi bug, request_method were passed to SERVER_PROTOCOL
                   14485:                but SERVER_PROTOCOL were forgotten
                   14486: 
                   14487: 2001-12-10  paf
                   14488:        * src/main/untaint.C 1.83:
                   14489:                FILE_SPEC untainting changed so that one can erase files like that, knowing their full name
                   14490:                introducing
                   14491:                        // theoretical problem with, for instance, "_2B" and "." fragments,
                   14492:                        // they would yield the same
                   14493:                        // because need_file_encode('_')=false
                   14494:                        // but we need to delete such files somehow, getting names from ^index
                   14495: 
                   14496:        * src/main/pa_string.C 1.129:
                   14497:                ^string.replace bug fixed [bad string::join_chank break]
                   14498: 
                   14499:        * src/classes/math.C 1.10:
                   14500:                ^math:random(n) now yields[0;n) not [0;n]
                   14501: 
                   14502: 2001-12-07  paf
                   14503:        * src/main/pa_string.C 1.125.2.1.2.2:
                   14504:                stupid sparc architecture failed to access short at odd address
                   14505:                0x311f0 <deserialize__6StringUiPvUiPCc+16>:     lduh  [ %i2 + 1 ], %l0
                   14506:                
                   14507:                bus error,
                   14508:                fixed that
                   14509: 
                   14510:        * src/include/pa_config_auto.h.in 1.14.6.1:
                   14511:                makes
                   14512: 
                   14513:        * src/main/pa_string.C 1.125.2.1.2.1:
                   14514:                strange string deserialize bug on client[pmts], a bit shortened,
                   14515: 
                   14516:        * src/include/pa_common.h 1.66.6.2:
                   14517:        * src/include/pa_config_fixed.h 1.30.8.2:
                   14518:        * src/include/pa_config_includes.h 1.13.6.1:
                   14519:        * src/main/pa_common.C 1.91.4.1.2.2:
                   14520:                exclusive lock file write
                   14521:                shared lock file read
                   14522: 
                   14523:        * src/classes/hashfile.C 1.17:
                   14524:        * src/classes/op.C 1.63:
                   14525:        * src/classes/table.C 1.135:
                   14526:        * src/include/pa_common.h 1.67:
                   14527:        * src/include/pa_config_auto.h.in 1.15:
                   14528:        * src/include/pa_config_fixed.h 1.31:
                   14529:        * src/include/pa_config_includes.h 1.14:
                   14530:        * src/include/pa_db_table.h 1.10:
                   14531:        * src/include/pa_request.h 1.112:
                   14532:        * src/main/pa_common.C 1.93:
                   14533:        * src/main/pa_db_table.C 1.15:
                   14534:        * src/main/pa_request.C 1.183:
                   14535:        * src/main/pa_string.C 1.128:
                   14536:        * src/types/pa_vhashfile.C 1.16:
                   14537:                merged from r14_simple_cache
                   14538: 
                   14539: 2001-12-06  paf
                   14540:        * src/main/compile.tab.C 1.27:
                   14541:        * src/targets/cgi/parser3.C 1.146:
                   14542:                removed debug info
                   14543: 
                   14544:        * src/classes/op.C 1.62.2.1.2.1:
                   14545:        * src/classes/table.C 1.133.2.2.2.1:
                   14546:        * src/include/pa_request.h 1.111.2.1.2.1:
                   14547:        * src/main/pa_request.C 1.182.2.1.2.1:
                   14548:                #ifdef RESOURCES_DEBUG
                   14549: 
                   14550:        * src/classes/op.C 1.62.2.1.2.2:
                   14551:        * src/include/pa_common.h 1.66.6.1:
                   14552:        * src/include/pa_config_fixed.h 1.30.8.1:
                   14553:        * src/main/pa_common.C 1.91.4.1.2.1:
                   14554:                ^cache operator
                   14555: 
                   14556:        * src/classes/hashfile.C 1.15.6.2:
                   14557:                removed transaction from ^cache
                   14558: 
                   14559: 2001-12-05  paf
                   14560:        * src/targets/cgi/parser3.C 1.144:
                   14561:        * src/targets/cgi/parser3.C 1.145:
                   14562:                fatal error reporting fixed.
                   14563:                in IIS5 there were a prob with illegal call check
                   14564: 
                   14565: 2001-12-04  paf
                   14566:        * src/classes/op.C 1.62.2.1:
                   14567:        * src/classes/table.C 1.133.2.2:
                   14568:        * src/include/pa_request.h 1.111.2.1:
                   14569:        * src/main/pa_request.C 1.182.2.1:
                   14570:                measures to log
                   14571: 
                   14572: 2001-11-26  paf
                   14573:        * src/targets/apache13/mod_parser3.C 1.13:
                   14574:                merge dir config now works OK with parser_root_config_filespec
                   14575:                
                   14576:                20011126 paf: noticed, that this is called even on virtual root merge with something "parent", while thought that that is part of merge_server...
                   14577: 
                   14578: 2001-11-23  paf
                   14579:        * src/classes/hashfile.C 1.16:
                   14580:        * src/classes/table.C 1.134:
                   14581:        * src/include/pa_db_table.h 1.9:
                   14582:        * src/main/pa_common.C 1.92:
                   14583:        * src/main/pa_db_table.C 1.14:
                   14584:        * src/main/pa_string.C 1.127:
                   14585:        * src/types/pa_vhashfile.C 1.15:
                   14586:                merged from _0014, 1
                   14587: 
                   14588:        * src/classes/hashfile.C 1.15.6.1:
                   14589:        * src/classes/table.C 1.133.2.1:
                   14590:        * src/include/pa_db_table.h 1.8.6.1:
                   14591:        * src/main/pa_common.C 1.91.4.1:
                   14592:        * src/main/pa_db_table.C 1.12.6.2:
                   14593:        * src/types/pa_vhashfile.C 1.14.6.1:
                   14594:                hashfile bugfix2 more wrong sizes.
                   14595:                ^cache behaviour changed: if ^cache(33) would change
                   14596:                
                   14597:                0660 bits in file_write & hashfile create
                   14598: 
                   14599:        * src/main/pa_db_table.C 1.12.6.1:
                   14600:        * src/main/pa_db_table.C 1.13:
                   14601:        * src/main/pa_string.C 1.125.2.1:
                   14602:        * src/main/pa_string.C 1.126:
                   14603:                cache bugfix [wrong types after pa_string optimization]
                   14604: 
                   14605: 2001-11-22  paf
                   14606:        * src/main/untaint.C 1.82:
                   14607:                ORIGINS mode removed UHTML
                   14608: 
                   14609:        * src/classes/op.C 1.62:
                   14610:                process cstr(,connection)
                   14611: 
                   14612:        * src/Makefile.in 1.38:
                   14613:        * src/classes/xdoc.C 1.47:
                   14614:        * src/targets/Makefile.in 1.26:
                   14615:        * src/targets/apache13/Makefile.in 1.25:
                   14616:        * src/targets/cgi/Makefile.in 1.30:
                   14617:                cached xslt [removed nocache forcing]
                   14618: 
                   14619:        * src/classes/op.C 1.61:
                   14620:                process now gets its body on current language, not as-is
                   14621: 
                   14622:        * src/main/untaint.C 1.81:
                   14623:                ORIGINS mode was bad - forgot about optimize bit
                   14624: 
                   14625:        * src/classes/table.C 1.133:
                   14626:        * src/include/pa_table.h 1.37:
                   14627:        * src/main/pa_table.C 1.41:
                   14628:                table.offset[whence]
                   14629: 
                   14630: 2001-11-21  paf
                   14631:        * src/classes/table.C 1.132:
                   14632:        * src/main/pa_string.C 1.124:
                   14633:        * src/main/untaint.C 1.78:
                   14634:        * src/targets/cgi/parser3.C 1.141:
                   14635:                table.append bug fixed: forgot to switch default language for {
                   14636:                code}, it happen to change it's language from CLEAN, so later
                   14637:                refused to split by CLEAN \t
                   14638: 
                   14639:        * src/classes/xdoc.C 1.46:
                   14640:        * src/types/pa_vxdoc.C 1.7:
                   14641:        * src/types/pa_vxdoc.h 1.13:
                   14642:                <xsl:output
                   14643:                output options made identical to xsl:output attributes
                   14644:                exclusion:
                   14645:                   cdata-section-elements
                   14646:                what xalan can do but that not used now:
                   14647:                   it can escape and remove CDATA sections
                   14648: 
                   14649:        * src/targets/cgi/parser3.C 1.142:
                   14650:                removed debug cgi||1
                   14651: 
                   14652:        * src/main/untaint.C 1.80:
                   14653:        * src/targets/cgi/parser3.C 1.143:
                   14654:                optimized \r produced by xslt
                   14655: 
                   14656:        * src/main/pa_string.C 1.125:
                   14657:        * src/main/untaint.C 1.79:
                   14658:                cached some string::size() es
                   14659: 
                   14660: 2001-11-20  paf
                   14661:        * src/classes/Makefile.am 1.31:
                   14662:        * src/classes/Makefile.in 1.33:
                   14663:        * src/classes/table.C 1.131:
                   14664:        * src/main/Makefile.am 1.25:
                   14665:        * src/main/Makefile.in 1.30:
                   14666:        * src/main/pa_exception.C 1.27:
                   14667:        * src/types/Makefile.am 1.13:
                   14668:        * src/types/Makefile.in 1.25:
                   14669:                moved ident.C & co to bottom of dependeces, so that errors
                   14670:                would popup quicklier, fixed line numbering in table::sql
                   14671: 
                   14672: 2001-11-19  paf
                   14673:        * src/classes/op.C 1.60:
                   14674:        * src/include/pa_request.h 1.111:
                   14675:        * src/include/pa_string.h 1.119:
                   14676:        * src/include/pa_types.h 1.34:
                   14677:        * src/main/pa_globals.C 1.92:
                   14678:        * src/main/pa_request.C 1.182:
                   14679:        * src/main/pa_string.C 1.123:
                   14680:        * src/main/untaint.C 1.77:
                   14681:        * src/targets/apache13/mod_parser3.C 1.12:
                   14682:        * src/targets/cgi/parser3.C 1.140:
                   14683:        * src/targets/isapi/parser3isapi.C 1.60:
                   14684:        * src/types/pa_wcontext.C 1.13:
                   14685:        * src/types/pa_wcontext.h 1.22:
                   14686:                UL_CLEAN pieces now inherit UL_OPTIMIZED_BIT at wcontext.write
                   14687: 
                   14688:        * src/classes/Makefile.in 1.32:
                   14689:        * src/main/Makefile.in 1.29:
                   14690:        * src/targets/Makefile.am 1.8:
                   14691:        * src/targets/Makefile.in 1.25:
                   14692:        * src/targets/apache13/Makefile.in 1.24:
                   14693:        * src/targets/apache13/mod_parser3.C 1.11:
                   14694:        * src/targets/cgi/Makefile.in 1.29:
                   14695:        * src/targets/cgi/parser3.C 1.139:
                   14696:        * src/types/Makefile.in 1.24:
                   14697:                #if _MSC_VER _set_new_handler
                   14698: 
                   14699:        * src/Makefile.in 1.37:
                   14700:        * src/targets/apache13/mod_parser3.C 1.10:
                   14701:        * src/targets/cgi/parser3.C 1.138:
                   14702:        * src/targets/isapi/parser3isapi.C 1.59:
                   14703:                set_new_handler in apache&isapi
                   14704: 
                   14705: 2001-11-16  paf
                   14706:        * src/include/pa_string.h 1.117:
                   14707:        * src/main/pa_string.C 1.120:
                   14708:        * src/main/pa_string.C 1.121:
                   14709:        * src/main/untaint.C 1.76:
                   14710:        * src/types/pa_vstring.C 1.14:
                   14711:                removed 1+4 bytes from String
                   14712: 
                   14713:        * src/include/pa_string.h 1.118:
                   14714:        * src/include/pa_types.h 1.33:
                   14715:        * src/main/pa_string.C 1.122:
                   14716:                removed 8 bytes from String, 2 bytes from string::chunk::row::item
                   14717: 
                   14718:        * src/include/pa_globals.h 1.69:
                   14719:        * src/include/pa_string.h 1.116:
                   14720:        * src/include/pa_types.h 1.32:
                   14721:        * src/main/pa_globals.C 1.91:
                   14722:        * src/main/pa_pool.C 1.44:
                   14723:        * src/main/pa_pool.C 1.45:
                   14724:        * src/main/pa_request.C 1.181:
                   14725:        * src/main/untaint.C 1.75:
                   14726:        * src/sql/pa_sql_driver.h 1.24:
                   14727:        * src/targets/cgi/parser3.C 1.136:
                   14728:                introducing estimating String::cstr_bufsize, 0
                   14729: 
                   14730:        * src/include/pa_pool.h 1.70:
                   14731:        * src/include/pa_pool.h 1.71:
                   14732:        * src/main/execute.C 1.206:
                   14733:        * src/main/pa_pool.C 1.41:
                   14734:        * src/main/pa_pool.C 1.42:
                   14735:        * src/main/pa_pool.C 1.43:
                   14736:        * src/targets/cgi/parser3.C 1.134:
                   14737:        * src/targets/cgi/parser3.C 1.135:
                   14738:                die in pool::fail
                   14739: 
                   14740:        * src/targets/cgi/parser3.C 1.137:
                   14741:                pool debug @ die
                   14742: 
                   14743: 2001-11-15  paf
                   14744:        * src/Makefile.in 1.36:
                   14745:                configure set_new_handler check added
                   14746: 
                   14747:        * src/targets/cgi/parser3.C 1.131:
                   14748:                set_new_handler started
                   14749: 
                   14750:        * src/include/pa_exception.h 1.22:
                   14751:        * src/main/execute.C 1.205:
                   14752:        * src/main/main.dsp 1.140:
                   14753:        * src/main/pa_exception.C 1.26:
                   14754:        * src/targets/cgi/parser3.C 1.133:
                   14755:                exception with dynamic buffer re-back
                   14756:                now with counter
                   14757: 
                   14758:        * src/include/pa_config_auto.h.in 1.13:
                   14759:        * src/main/Makefile.in 1.28:
                   14760:                makes
                   14761: 
                   14762:        * src/include/pa_exception.h 1.21:
                   14763:        * src/main/pa_exception.C 1.25:
                   14764:                exception with static buffer back
                   14765: 
                   14766:        * src/classes/classes.awk 1.5:
                   14767:        * src/include/pa_config_auto.h.in 1.14:
                   14768:        * src/include/pa_config_includes.h 1.13:
                   14769:                setnewhandler check
                   14770: 
                   14771:        * src/targets/cgi/parser3.C 1.132:
                   14772:                std::
                   14773: 
                   14774: 2001-11-14  paf
                   14775:        * src/main/execute.C [no_bad_constructors_try] 1.203.2.1:
                   14776:        * src/types/pa_vclass.h [no_bad_constructors_try] 1.21.2.1:
                   14777:        * src/types/pa_vobject.h [no_bad_constructors_try] 1.13.2.1:
                   14778:        * src/types/pa_vstateless_class.h [no_bad_constructors_try] 1.20.2.1:
                   14779:        * src/types/pa_vstateless_object.h [no_bad_constructors_try] 1.12.2.1:
                   14780:                fixed this:
                   14781:                $bred[^string::length[]]
                   14782:                $bred[^response::clear[]]
                   14783:                $bred[^int::int[]]
                   14784:                
                   14785:                now VObject creation moved into overriden VClass::create_new_value, thus 0 from create_new_value means that class has no ctors
                   14786: 
                   14787:        * src/include/pa_common.h 1.64:
                   14788:        * src/include/pa_common.h 1.65:
                   14789:        * src/include/pa_common.h 1.66:
                   14790:        * src/main/pa_common.C 1.90:
                   14791:        * src/main/pa_common.C 1.91:
                   14792:                snprintf replacement was wrong
                   14793: 
                   14794:        * src/main/execute.C 1.204:
                   14795:        * src/types/pa_vclass.h 1.22:
                   14796:        * src/types/pa_vobject.h 1.14:
                   14797:        * src/types/pa_vstateless_class.h 1.21:
                   14798:        * src/types/pa_vstateless_object.h 1.13:
                   14799:                merged with no_bad_constructors_try
                   14800: 
                   14801:        * src/classes/op.C 1.59:
                   14802:                ^untaint{body} as-is default now
                   14803: 
                   14804:        * src/main/pa_request.C 1.180:
                   14805:                z
                   14806: 
                   14807:        * src/include/pa_common.h 1.63:
                   14808:        * src/main/pa_common.C 1.88:
                   14809:        * src/main/pa_common.C 1.89:
                   14810:                snprintf on buffer full returns
                   14811:                win32 -1
                   14812:                solaris >buffer_size
                   14813:                
                   14814:                checked all that
                   14815: 
                   14816: 2001-11-13  paf
                   14817:        * src/classes/classes.C 1.13:
                   14818:                returned accedently removed if in foreach callbacks [when hash
                   14819:                no-0-restructure]
                   14820: 
                   14821: 2001-11-12  paf
                   14822:        * src/classes/classes.C 1.12:
                   14823:        * src/classes/hash.C 1.31:
                   14824:        * src/classes/xdoc.C 1.45:
                   14825:        * src/include/pa_hash.h 1.51:
                   14826:        * src/main/pa_db_connection.C 1.33:
                   14827:        * src/main/pa_db_manager.C 1.18:
                   14828:        * src/main/pa_dictionary.C 1.10:
                   14829:        * src/main/pa_hash.C 1.48:
                   14830:        * src/main/pa_sql_driver_manager.C 1.55:
                   14831:        * src/main/pa_stylesheet_manager.C 1.7:
                   14832:                hash now does not containt 0 values. put 0 actullay removes.
                   14833:                no check on 0 value in foreach now required
                   14834: 
                   14835:        * src/classes/date.C 1.13:
                   14836:                date.roll parser2 alg used
                   14837: 
                   14838:        * src/main/pa_pool.C 1.40:
                   14839:                changed xdoc createXXX politics, now string passed as-is to
                   14840:                method, xalan makes & into &amp; itself
                   14841: 
                   14842: 2001-11-11  paf
                   14843:        * src/main/pa_sql_driver_manager.C 1.53:
                   14844:        * src/sql/pa_sql_driver.h 1.21:
                   14845:                sql driver initialize not const
                   14846: 
                   14847:        * src/sql/pa_sql_driver.h 1.23:
                   14848:                removed extra constructor, doc
                   14849: 
                   14850:        * src/main/pa_sql_driver_manager.C 1.54:
                   14851:        * src/sql/pa_sql_driver.h 1.22:
                   14852:                CRLF
                   14853: 
                   14854: 2001-11-10  paf
                   14855:        * src/main/pa_exec.C 1.18:
                   14856:                doc
                   14857: 
                   14858: 2001-11-09  paf
                   14859:        * src/main/pa_common.C 1.87:
                   14860:                line endings fixing fixed last piece[was still cstr oriented]
                   14861: 
                   14862:        * src/include/pa_common.h 1.62:
                   14863:        * src/main/pa_common.C 1.86:
                   14864:        * src/types/pa_vform.C 1.48:
                   14865:                line endings fixing got rid of cstr, now must work ok with post multipart
                   14866: 
                   14867:        * src/classes/string.C 1.90:
                   14868:        * src/classes/xdoc.C 1.44:
                   14869:                xdoc::set{code} now untaints param properly
                   14870: 
                   14871:        * src/types/pa_vform.C 1.47:
                   14872:                line endings fixed at post / multipart / not file  also now
                   14873: 
                   14874:        * src/classes/string.C 1.89:
                   14875:                string.save now does untainting before saving
                   14876: 
                   14877: 2001-11-08  paf
                   14878:        * src/include/pa_request.h 1.110:
                   14879:        * src/main/pa_request.C 1.179:
                   14880:        * src/targets/apache13/mod_parser3.C 1.9:
                   14881:        * src/targets/cgi/parser3.C 1.130:
                   14882:        * src/targets/isapi/parser3isapi.C 1.58:
                   14883:                apache 'status' class enabler
                   14884:                
                   14885:                <Location /parser-status.html>
                   14886:                ParserStatusAllowed
                   14887:                </Location>
                   14888: 
                   14889:        * src/Makefile.in 1.35:
                   14890:        * src/include/pa_common.h 1.61:
                   14891:        * src/main/Makefile.am 1.24:
                   14892:        * src/main/Makefile.in 1.27:
                   14893:        * src/targets/cgi/pa_pool.C 1.32:
                   14894:                makes
                   14895: 
                   14896:        * src/include/pa_cache_managers.h 1.2:
                   14897:        * src/include/pa_charset_manager.h 1.6:
                   14898:        * src/include/pa_db_manager.h 1.10:
                   14899:        * src/include/pa_sql_driver_manager.h 1.18:
                   14900:        * src/include/pa_stylesheet_manager.h 1.7:
                   14901:        * src/main/pa_charset_manager.C 1.8:
                   14902:        * src/main/pa_db_manager.C 1.17:
                   14903:        * src/main/pa_sql_driver_manager.C 1.52:
                   14904:        * src/main/pa_stylesheet_manager.C 1.6:
                   14905:                restructured Cache manager to be simple parent, not second
                   14906:                parent [gcc 2.96 strangly refused to call virtual from second
                   14907:                parent]
                   14908: 
                   14909:        * src/include/pa_cache_managers.h 1.1:
                   14910:        * src/include/pa_charset_manager.h 1.5:
                   14911:        * src/include/pa_db_manager.h 1.9:
                   14912:        * src/include/pa_sql_driver_manager.h 1.17:
                   14913:        * src/include/pa_stylesheet_manager.h 1.6:
                   14914:        * src/main/main.dsp 1.139:
                   14915:        * src/main/pa_cache_managers.C 1.1:
                   14916:        * src/main/pa_charset_manager.C 1.7:
                   14917:        * src/main/pa_db_manager.C 1.16:
                   14918:        * src/main/pa_globals.C 1.90:
                   14919:        * src/main/pa_request.C 1.178:
                   14920:        * src/main/pa_sql_driver_manager.C 1.51:
                   14921:        * src/main/pa_stylesheet_manager.C 1.5:
                   14922:        * src/types/pa_vstatus.h 1.4:
                   14923:                cache_managers, maybe-expiring every request
                   14924:                todo: apache 'status' class enabler
                   14925: 
                   14926: 2001-11-05  paf
                   14927:        * src/classes/xdoc.C 1.42:
                   14928:        * src/include/pa_db_connection.h 1.16:
                   14929:        * src/include/pa_stylesheet_connection.h 1.15:
                   14930:        * src/include/pa_stylesheet_manager.h 1.4:
                   14931:        * src/main/pa_stylesheet_manager.C 1.3:
                   14932:        * src/types/pa_vstatus.h 1.2:
                   14933:                $status:stylesheet
                   14934: 
                   14935:        * src/targets/cgi/parser3.C 1.129:
                   14936:                read can return 0, that means sort of sig_pipe on freebsd [moko's experiments].
                   14937:                 checked that in cgi, on apache already done :)
                   14938: 
                   14939:        * src/main/pa_db_connection.C 1.31:
                   14940:        * src/main/pa_db_manager.C 1.14:
                   14941:        * src/main/pa_request.C 1.177:
                   14942:                hence i removed skipping 0 values in hash::for_each-es we need to check cleaned cache items manually. few more checks.
                   14943:                
                   14944:                expiring to 0 time was wrong, changed to 'now' time
                   14945: 
                   14946:        * src/main/pa_db_connection.C 1.30:
                   14947:        * src/main/pa_db_manager.C 1.13:
                   14948:                hence i removed skipping 0 values in hash::for_each-es we need
                   14949:                to check cleaned cache items manually
                   14950: 
                   14951:        * src/include/pa_charset_connection.h 1.3:
                   14952:        * src/main/pa_charset_manager.C 1.5:
                   14953:                $status:charset
                   14954: 
                   14955:        * src/classes/classes.C 1.11:
                   14956:        * src/classes/classes.h 1.14:
                   14957:        * src/classes/date.C 1.12:
                   14958:        * src/classes/double.C 1.41:
                   14959:        * src/classes/file.C 1.65:
                   14960:        * src/classes/form.C 1.19:
                   14961:        * src/classes/hash.C 1.30:
                   14962:        * src/classes/hashfile.C 1.15:
                   14963:        * src/classes/image.C 1.62:
                   14964:        * src/classes/int.C 1.38:
                   14965:        * src/classes/mail.C 1.44:
                   14966:        * src/classes/math.C 1.9:
                   14967:        * src/classes/op.C 1.58:
                   14968:        * src/classes/response.C 1.16:
                   14969:        * src/classes/string.C 1.88:
                   14970:        * src/classes/table.C 1.130:
                   14971:        * src/classes/void.C 1.13:
                   14972:        * src/classes/xdoc.C 1.43:
                   14973:        * src/classes/xnode.C 1.18:
                   14974:        * src/classes/xnode.h 1.4:
                   14975:        * src/include/pa_array.h 1.47:
                   14976:        * src/include/pa_charset_connection.h 1.4:
                   14977:        * src/include/pa_charset_manager.h 1.4:
                   14978:        * src/include/pa_common.h 1.60:
                   14979:        * src/include/pa_config_fixed.h 1.30:
                   14980:        * src/include/pa_config_includes.h 1.12:
                   14981:        * src/include/pa_db_connection.h 1.17:
                   14982:        * src/include/pa_db_manager.h 1.8:
                   14983:        * src/include/pa_db_table.h 1.8:
                   14984:        * src/include/pa_dictionary.h 1.7:
                   14985:        * src/include/pa_dir.h 1.8:
                   14986:        * src/include/pa_exception.h 1.20:
                   14987:        * src/include/pa_exec.h 1.4:
                   14988:        * src/include/pa_globals.h 1.68:
                   14989:        * src/include/pa_hash.h 1.50:
                   14990:        * src/include/pa_opcode.h 1.8:
                   14991:        * src/include/pa_pool.h 1.69:
                   14992:        * src/include/pa_pragma_pack_begin.h 1.2:
                   14993:        * src/include/pa_pragma_pack_end.h 1.2:
                   14994:        * src/include/pa_request.h 1.109:
                   14995:        * src/include/pa_sapi.h 1.15:
                   14996:        * src/include/pa_socks.h 1.5:
                   14997:        * src/include/pa_sql_connection.h 1.19:
                   14998:        * src/include/pa_sql_driver_manager.h 1.16:
                   14999:        * src/include/pa_stack.h 1.11:
                   15000:        * src/include/pa_string.h 1.115:
                   15001:        * src/include/pa_stylesheet_connection.h 1.16:
                   15002:        * src/include/pa_stylesheet_manager.h 1.5:
                   15003:        * src/include/pa_table.h 1.36:
                   15004:        * src/include/pa_threads.h 1.20:
                   15005:        * src/include/pa_types.h 1.31:
                   15006:        * src/main/compile.C 1.53:
                   15007:        * src/main/compile.tab.C 1.26:
                   15008:        * src/main/compile_tools.C 1.40:
                   15009:        * src/main/compile_tools.h 1.51:
                   15010:        * src/main/execute.C 1.203:
                   15011:        * src/main/pa_array.C 1.43:
                   15012:        * src/main/pa_charset_connection.C 1.11:
                   15013:        * src/main/pa_charset_manager.C 1.6:
                   15014:        * src/main/pa_common.C 1.85:
                   15015:        * src/main/pa_db_connection.C 1.28:
                   15016:        * src/main/pa_db_manager.C 1.12:
                   15017:        * src/main/pa_db_table.C 1.11:
                   15018:        * src/main/pa_dictionary.C 1.9:
                   15019:        * src/main/pa_dir.C 1.8:
                   15020:        * src/main/pa_exception.C 1.24:
                   15021:        * src/main/pa_exec.C 1.17:
                   15022:        * src/main/pa_globals.C 1.89:
                   15023:        * src/main/pa_hash.C 1.47:
                   15024:        * src/main/pa_pool.C 1.39:
                   15025:        * src/main/pa_request.C 1.176:
                   15026:        * src/main/pa_socks.C 1.8:
                   15027:        * src/main/pa_sql_driver_manager.C 1.50:
                   15028:        * src/main/pa_status_provider.C 1.2:
                   15029:        * src/main/pa_string.C 1.119:
                   15030:        * src/main/pa_stylesheet_manager.C 1.4:
                   15031:        * src/main/pa_table.C 1.40:
                   15032:        * src/main/untaint.C 1.74:
                   15033:        * src/sql/pa_sql_driver.h 1.20:
                   15034:        * src/targets/apache13/mod_parser3.C 1.8:
                   15035:        * src/targets/apache13/pa_pool.C 1.3:
                   15036:        * src/targets/apache13/pa_threads.C 1.3:
                   15037:        * src/targets/cgi/pa_pool.C 1.31:
                   15038:        * src/targets/cgi/pa_threads.C 1.5:
                   15039:        * src/targets/cgi/parser3.C 1.128:
                   15040:        * src/targets/cgi/pool_storage.h 1.5:
                   15041:        * src/targets/isapi/pa_pool.C 1.9:
                   15042:        * src/targets/isapi/pa_threads.C 1.5:
                   15043:        * src/targets/isapi/parser3isapi.C 1.57:
                   15044:        * src/targets/isapi/pool_storage.h 1.13:
                   15045:        * src/types/pa_valiased.C 1.11:
                   15046:        * src/types/pa_valiased.h 1.16:
                   15047:        * src/types/pa_value.h 1.77:
                   15048:        * src/types/pa_vbool.h 1.15:
                   15049:        * src/types/pa_vclass.h 1.21:
                   15050:        * src/types/pa_vcode_frame.h 1.12:
                   15051:        * src/types/pa_vcookie.C 1.32:
                   15052:        * src/types/pa_vcookie.h 1.13:
                   15053:        * src/types/pa_vdate.h 1.6:
                   15054:        * src/types/pa_vdouble.h 1.28:
                   15055:        * src/types/pa_venv.h 1.18:
                   15056:        * src/types/pa_vfile.C 1.23:
                   15057:        * src/types/pa_vfile.h 1.37:
                   15058:        * src/types/pa_vform.C 1.46:
                   15059:        * src/types/pa_vform.h 1.29:
                   15060:        * src/types/pa_vhash.h 1.27:
                   15061:        * src/types/pa_vhashfile.C 1.14:
                   15062:        * src/types/pa_vhashfile.h 1.12:
                   15063:        * src/types/pa_vimage.C 1.14:
                   15064:        * src/types/pa_vimage.h 1.22:
                   15065:        * src/types/pa_vint.h 1.29:
                   15066:        * src/types/pa_vjunction.h 1.10:
                   15067:        * src/types/pa_vmath.h 1.4:
                   15068:        * src/types/pa_vmethod_frame.h 1.19:
                   15069:        * src/types/pa_vobject.h 1.13:
                   15070:        * src/types/pa_vrequest.C 1.11:
                   15071:        * src/types/pa_vrequest.h 1.12:
                   15072:        * src/types/pa_vresponse.h 1.17:
                   15073:        * src/types/pa_vstateless_class.C 1.11:
                   15074:        * src/types/pa_vstateless_class.h 1.20:
                   15075:        * src/types/pa_vstateless_object.h 1.12:
                   15076:        * src/types/pa_vstatus.h 1.3:
                   15077:        * src/types/pa_vstring.C 1.13:
                   15078:        * src/types/pa_vstring.h 1.39:
                   15079:        * src/types/pa_vtable.C 1.9:
                   15080:        * src/types/pa_vtable.h 1.35:
                   15081:        * src/types/pa_vvoid.h 1.6:
                   15082:        * src/types/pa_vxdoc.C 1.6:
                   15083:        * src/types/pa_vxdoc.h 1.12:
                   15084:        * src/types/pa_vxnode.C 1.11:
                   15085:        * src/types/pa_vxnode.h 1.8:
                   15086:        * src/types/pa_wcontext.C 1.12:
                   15087:        * src/types/pa_wcontext.h 1.21:
                   15088:        * src/types/pa_wwrapper.h 1.14:
                   15089:                $status:db
                   15090:                fixed used not initialized in db_connection & db_table
                   15091: 
                   15092:        * src/include/pa_charset_manager.h 1.3:
                   15093:        * src/include/pa_db_manager.h 1.7:
                   15094:        * src/include/pa_request.h 1.108:
                   15095:        * src/include/pa_sql_connection.h 1.18:
                   15096:        * src/include/pa_sql_driver_manager.h 1.15:
                   15097:        * src/include/pa_stylesheet_manager.h 1.3:
                   15098:        * src/main/main.dsp 1.138:
                   15099:        * src/main/pa_charset_manager.C 1.4:
                   15100:        * src/main/pa_common.C 1.84:
                   15101:        * src/main/pa_db_manager.C 1.11:
                   15102:        * src/main/pa_globals.C 1.88:
                   15103:        * src/main/pa_request.C 1.175:
                   15104:        * src/main/pa_sql_driver_manager.C 1.49:
                   15105:        * src/main/pa_status_provider.C 1.1:
                   15106:        * src/main/pa_stylesheet_manager.C 1.2:
                   15107:        * src/types/pa_vstatus.h 1.1:
                   15108:        * src/types/pa_vxnode.C 1.10:
                   15109:        * src/types/types.dsp 1.14:
                   15110:                started status parser class
                   15111: 
                   15112:        * src/main/pa_db_connection.C 1.29:
                   15113:        * src/main/pa_db_table.C 1.12:
                   15114:                parser_multithreaded check was wrong
                   15115: 
                   15116:        * src/main/pa_db_connection.C 1.32:
                   15117:        * src/main/pa_db_manager.C 1.15:
                   15118:                expiration from debug to normal
                   15119: 
                   15120: 2001-11-01  paf
                   15121:        * src/classes/hash.C 1.26:
                   15122:        * src/classes/op.C 1.54:
                   15123:        * src/types/pa_vmethod_frame.h 1.18:
                   15124:        * src/types/pa_vstring.C 1.12:
                   15125:        * src/types/pa_vstring.h 1.38:
                   15126:                ^foreach[key|value]{body}[[separator]|{separator}]
                   15127: 
                   15128:        * src/classes/hash.C 1.25:
                   15129:        * src/include/pa_hash.h 1.48:
                   15130:        * src/main/pa_hash.C 1.44:
                   15131:        * src/types/pa_vcookie.C 1.31:
                   15132:                ^hash.delete[key]
                   15133: 
                   15134:        * src/classes/math.C 1.8:
                   15135:        * src/include/pa_common.h 1.59:
                   15136:                HAVE_TRUNC HAVE_ROUND checks [for hp, there are such in math.h]
                   15137: 
                   15138:        * src/classes/op.C 1.57:
                   15139:                ^for endless loop check strightened
                   15140: 
                   15141:        * src/Makefile.in 1.34:
                   15142:        * src/classes/Makefile.in 1.31:
                   15143:        * src/include/pa_config_auto.h.in 1.12:
                   15144:        * src/main/Makefile.in 1.26:
                   15145:        * src/targets/Makefile.in 1.24:
                   15146:        * src/targets/apache13/Makefile.in 1.23:
                   15147:        * src/targets/cgi/Makefile.in 1.28:
                   15148:        * src/types/Makefile.in 1.23:
                   15149:                makes
                   15150: 
                   15151:        * src/main/pa_hash.C 1.46:
                   15152:                removed old extra include
                   15153: 
                   15154:        * src/classes/hash.C 1.28:
                   15155:        * src/classes/xdoc.C 1.41:
                   15156:        * src/classes/xnode.C 1.17:
                   15157:        * src/include/pa_hash.h 1.49:
                   15158:        * src/main/pa_hash.C 1.45:
                   15159:        * src/main/pa_request.C 1.174:
                   15160:        * src/types/pa_vhash.h 1.26:
                   15161:        * src/types/pa_vxnode.C 1.9:
                   15162:                hash locking
                   15163:                disabled changing of hash inside of foreach
                   15164: 
                   15165:        * src/classes/hash.C 1.27:
                   15166:        * src/classes/hashfile.C 1.14:
                   15167:        * src/types/pa_vhashfile.C 1.13:
                   15168:                ^hashfile.foreach[key|value]{body}[[separator]|{separator}]
                   15169:                prev were hash.foreach
                   15170: 
                   15171:        * src/classes/hash.C 1.29:
                   15172:        * src/classes/op.C 1.56:
                   15173:        * src/main/execute.C 1.202:
                   15174:                changed root behavior in native calls.
                   15175:                it left unchanged, so ^for ^foreach & co can use r.root to write their i & key,value there
                   15176: 
                   15177:        * src/classes/op.C 1.55:
                   15178:                detected for var storage bug, fixed. todo:foreach
                   15179: 
                   15180: 2001-10-31  paf
                   15181:        * src/main/pa_sql_driver_manager.C 1.47:
                   15182:                hiding passwords and addresses from accidental show [imagine
                   15183:                user forgot @exception]
                   15184: 
                   15185:        * src/main/pa_db_connection.C 1.26:
                   15186:        * src/main/pa_sql_driver_manager.C 1.48:
                   15187:                        // lockdetector flags
                   15188:                        dbenv.lk_detect=DB_LOCK_RANDOM;
                   15189: 
                   15190:        * src/include/pa_opcode.h 1.7:
                   15191:        * src/main/compile.tab.C 1.25:
                   15192:        * src/main/compile.y 1.173:
                   15193:        * src/main/execute.C 1.201:
                   15194:                \ in expression: int divide 10/3=3
                   15195: 
                   15196:        * src/main/pa_common.C 1.81:
                   15197:                typing bug in common - bad ifdeff
                   15198: 
                   15199:        * src/types/pa_vhashfile.h 1.11:
                   15200:                hashfile  ^delete to do something only inside of ^cache
                   15201: 
                   15202:        * src/include/pa_threads.h 1.19:
                   15203:        * src/main/pa_db_connection.C 1.25:
                   15204:        * src/main/pa_db_table.C 1.10:
                   15205:        * src/targets/apache13/pa_threads.C 1.2:
                   15206:        * src/targets/cgi/pa_threads.C 1.4:
                   15207:        * src/targets/isapi/pa_threads.C 1.4:
                   15208:                libdb DB_THREAD flag only when really needed
                   15209: 
                   15210:        * src/main/pa_db_connection.C 1.27:
                   15211:                z
                   15212: 
                   15213:        * src/classes/file.C 1.64:
                   15214:        * src/classes/image.C 1.61:
                   15215:        * src/classes/mail.C 1.43:
                   15216:        * src/classes/string.C 1.87:
                   15217:        * src/classes/xnode.C 1.16:
                   15218:        * src/include/pa_common.h 1.58:
                   15219:        * src/main/pa_common.C 1.80:
                   15220:                ^string.save[[append;]path]
                   15221: 
                   15222:        * src/main/compile.C 1.52:
                   15223:        * src/main/pa_common.C 1.83:
                   15224:                completely empty file now considered "read", not ignored [not
                   15225:                perfect trick used]
                   15226: 
                   15227:        * src/classes/table.C 1.129:
                   15228:                ^table.save[[nameless|+append;]path]
                   15229: 
                   15230:        * src/main/pa_common.C 1.82:
                   15231:                simplier common ifdefs
                   15232: 
                   15233: 2001-10-30  paf
                   15234:        * src/include/pa_common.h 1.57:
                   15235:        * src/main/pa_common.C 1.79:
                   15236:        * src/types/pa_vform.C 1.45:
                   15237:                form post data line endings not reformatted now.
                   15238: 
                   15239:        * src/classes/xdoc.C 1.40:
                   15240:                rolled back {} in xdoc.createTextNode for now
                   15241: 
                   15242:        * src/classes/classes.dsp 1.13:
                   15243:        * src/main/main.dsp 1.137:
                   15244:        * src/targets/apache13/ApacheModuleParser3.dsp 1.8:
                   15245:        * src/targets/cgi/parser3.dsp 1.38:
                   15246:        * src/targets/isapi/parser3isapi.dsp 1.29:
                   15247:        * src/types/types.dsp 1.13:
                   15248:                enabled debug incremental compile
                   15249: 
                   15250:        * src/main/pa_db_connection.C 1.24:
                   15251:        * src/main/pa_db_manager.C 1.10:
                   15252:        * src/main/pa_db_table.C 1.9:
                   15253:        * src/main/pa_exec.C 1.16:
                   15254:        * src/main/pa_request.C 1.173:
                   15255:        * src/main/pa_sql_driver_manager.C 1.46:
                   15256:        * src/main/pa_string.C 1.118:
                   15257:                cstr(asis) default param removed
                   15258: 
                   15259:        * src/types/pa_vform.C 1.44:
                   15260:        * src/types/pa_vform.h 1.28:
                   15261:                AppendFormEntry length param now required [had bug when file= 
                   15262:                has no value]
                   15263: 
                   15264:        * src/types/pa_vform.C 1.43:
                   15265:                VForm::AppendFormEntry {length convention was broken} fix_line_breaks
                   15266: 
                   15267:        * src/include/pa_dir.h 1.7:
                   15268:                LOAD_DIR fixed
                   15269: 
                   15270:        * src/include/pa_config_fixed.h 1.29:
                   15271:        * src/include/pa_pragma_pack_begin.h 1.1:
                   15272:        * src/include/pa_pragma_pack_end.h 1.1:
                   15273:        * src/include/pa_string.h 1.114:
                   15274:        * src/include/pa_types.h 1.30:
                   15275:                String & Origin packed with #pragma pack
                   15276: 
                   15277:        * src/Makefile.in 1.33:
                   15278:        * src/include/pa_config_auto.h.in 1.11:
                   15279:                pragma detection
                   15280: 
                   15281:        * src/classes/xdoc.C 1.39:
                   15282:                rolled back {} in xdoc.createElement for now
                   15283: 
                   15284: 2001-10-29  paf
                   15285:        * src/types/pa_wcontext.h 1.20:
                   15286:                bitfield syntax stricter
                   15287: 
                   15288:        * src/include/pa_string.h 1.111:
                   15289:        * src/main/pa_string.C 1.115:
                   15290:        * src/targets/cgi/pa_pool.C 1.27:
                   15291:                debugging memory
                   15292:                String::fused_rows func now
                   15293:                
                   15294:                [Mon Oct 29 17:55:45 2001] total 5917436/158731
                   15295:                [Mon Oct 29 18:11:53 2001] total 5796092/158731
                   15296: 
                   15297:        * src/classes/file.C 1.61:
                   15298:        * src/classes/image.C 1.60:
                   15299:        * src/classes/string.C 1.86:
                   15300:        * src/classes/xdoc.C 1.38:
                   15301:        * src/include/pa_pool.h 1.68:
                   15302:        * src/include/pa_string.h 1.109:
                   15303:        * src/main/execute.C 1.199:
                   15304:        * src/main/pa_array.C 1.41:
                   15305:        * src/main/pa_common.C 1.78:
                   15306:        * src/main/pa_hash.C 1.43:
                   15307:        * src/main/pa_sql_driver_manager.C 1.45:
                   15308:        * src/main/pa_string.C 1.114:
                   15309:        * src/main/untaint.C 1.70:
                   15310:        * src/targets/cgi/pa_pool.C 1.25:
                   15311:        * src/targets/cgi/parser3.C 1.126:
                   15312:        * src/types/pa_vcookie.C 1.30:
                   15313:        * src/types/pa_vstring.h 1.37:
                   15314:                debuggging memory.
                   15315:                string::as_int/double now usually uses stack, not heap [200K out of 17M :)]
                   15316:                VString(String&) not copies reference [29M -> 17M]
                   15317: 
                   15318:        * src/include/pa_sql_connection.h 1.17:
                   15319:                SQL_CONNECTION_FUNC_GUARDED name
                   15320: 
                   15321:        * src/targets/isapi/pa_pool.C 1.8:
                   15322:                added isapi&apache real_malloc debug param.someday either ifdef
                   15323:                or remove it
                   15324: 
                   15325:        * src/targets/apache13/pa_pool.C 1.2:
                   15326:        * src/targets/cgi/pa_pool.C 1.30:
                   15327:        * src/targets/cgi/parser3.C 1.127:
                   15328:                removed debug defines
                   15329: 
                   15330:        * src/Makefile.am 1.12:
                   15331:                .am order
                   15332: 
                   15333:        * src/main/pa_sql_driver_manager.C 1.44:
                   15334:                ping to have services [old hiding bug]
                   15335: 
                   15336:        * src/main/untaint.C 1.73:
                   15337:                optimizing returned after debugging
                   15338: 
                   15339:        * src/include/pa_array.h 1.45:
                   15340:        * src/include/pa_charset_manager.h 1.2:
                   15341:        * src/include/pa_db_connection.h 1.15:
                   15342:        * src/include/pa_db_manager.h 1.6:
                   15343:        * src/include/pa_db_table.h 1.7:
                   15344:        * src/include/pa_hash.h 1.46:
                   15345:        * src/include/pa_request.h 1.107:
                   15346:        * src/include/pa_sql_driver_manager.h 1.14:
                   15347:        * src/include/pa_stylesheet_manager.h 1.2:
                   15348:        * src/include/pa_threads.h 1.18:
                   15349:        * src/types/pa_valiased.h 1.15:
                   15350:        * src/types/pa_vhashfile.h 1.10:
                   15351:        * src/types/pa_vstateless_class.h 1.19:
                   15352:        * src/types/pa_wcontext.h 1.18:
                   15353:                gcc 3.0.1 required "friend class"
                   15354:                
                   15355:                ../include/pa_request.h:51: friend declaration requires class-key, i.e. `friend
                   15356:                   class Temp_lang'
                   15357: 
                   15358:        * src/include/pa_string.h 1.112:
                   15359:        * src/main/pa_string.C 1.116:
                   15360:        * src/main/untaint.C 1.71:
                   15361:        * src/targets/cgi/pa_pool.C 1.29:
                   15362:                String size_t replace to uint in proper places [todo:Array]
                   15363: 
                   15364:        * src/classes/file.C 1.62:
                   15365:        * src/include/pa_hash.h 1.47:
                   15366:        * src/include/pa_string.h 1.110:
                   15367:        * src/main/pa_globals.C 1.87:
                   15368:        * src/targets/cgi/pa_pool.C 1.26:
                   15369:                debugging memory
                   15370:                hash key ref now
                   15371:                
                   15372:                [Mon Oct 29 16:01:17 2001] total 17050496/202647
                   15373:                [Mon Oct 29 17:11:17 2001] total 16867948/202658
                   15374: 
                   15375:        * src/classes/file.C 1.63:
                   15376:        * src/types/pa_vimage.C 1.13:
                   15377:                image&file couple stack string hash.puts
                   15378: 
                   15379:        * src/main/execute.C 1.200:
                   15380:        * src/targets/cgi/pa_pool.C 1.28:
                   15381:        * src/targets/cgi/parser3.dsp 1.37:
                   15382:        * src/types/pa_wcontext.h 1.19:
                   15383:        * src/types/pa_wwrapper.h 1.13:
                   15384:                debugging memory
                   15385:                WContext
                   15386:                flags to bits
                   15387:                
                   15388:                total 5 652 652/158731
                   15389:                total 5 469 332/158731
                   15390: 
                   15391:        * src/include/pa_sql_connection.h 1.16:
                   15392:                there were one wrong SQL_CONNECTION_FUNC_GUARDED [failed]
                   15393: 
                   15394:        * src/include/pa_exception.h 1.19:
                   15395:        * src/include/pa_sql_connection.h 1.15:
                   15396:        * src/main/pa_exception.C 1.23:
                   15397:        * src/main/pa_sql_driver_manager.C 1.43:
                   15398:        * src/sql/pa_sql_driver.h 1.19:
                   15399:                sql driver impl changed in _throw part.
                   15400:                
                   15401:                the idea is to #1 jump to C++ some function to main body, where
                   15402:                every function stack frame has exception unwind information
                   15403:                and from there... #2 propagate_exception()
                   15404: 
                   15405:        * src/include/pa_array.h 1.46:
                   15406:        * src/main/pa_array.C 1.42:
                   15407:                debugging memory
                   15408:                Array:: without cache in get/put now
                   15409:                
                   15410:                [Mon Oct 29 18:23:02 2001] total 5 796 092/158731
                   15411:                [Mon Oct 29 18:25:27 2001] total 5 652 652/158731
                   15412: 
                   15413:        * src/include/pa_string.h 1.113:
                   15414:        * src/include/pa_types.h 1.29:
                   15415:        * src/main/pa_string.C 1.117:
                   15416:        * src/main/untaint.C 1.72:
                   15417:                memory hunging
                   15418:                #pragma pack(1)
                   15419:                
                   15420:                16 419 844
                   15421:                13 169 394
                   15422: 
                   15423: 2001-10-28  paf
                   15424:        * src/include/pa_config_auto.h.in 1.10:
                   15425:        * src/include/pa_config_fixed.h 1.28:
                   15426:        * src/include/pa_db_connection.h 1.14:
                   15427:        * src/include/pa_db_manager.h 1.5:
                   15428:        * src/include/pa_db_table.h 1.6:
                   15429:        * src/main/pa_db_connection.C 1.20:
                   15430:        * src/main/pa_db_table.C 1.6:
                   15431:                db2 on linux with DB 2.4.14: (6/2/98)
                   15432: 
                   15433:        * src/main/pa_db_connection.C 1.21:
                   15434:        * src/main/pa_db_table.C 1.8:
                   15435:                exception translation
                   15436: 
                   15437:        * src/main/pa_db_connection.C 1.22:
                   15438:                expire table [was accidently pasted with wrong type/cast]
                   15439: 
                   15440:        * src/classes/Makefile.am 1.30:
                   15441:        * src/classes/Makefile.in 1.30:
                   15442:        * src/targets/apache13/p3runConfigure.in 1.6:
                   15443:        * src/targets/cgi/Makefile.am 1.22:
                   15444:        * src/targets/cgi/Makefile.in 1.27:
                   15445:                db makes. remember to build DB2 with -fexceptions!!!
                   15446: 
                   15447:        * src/main/pa_db_table.C 1.7:
                   15448:                DB_RMW defed
                   15449: 
                   15450:        * src/main/pa_db_connection.C 1.23:
                   15451:                removed old consts
                   15452: 
                   15453: 2001-10-27  paf
                   15454:        * src/classes/hashfile.C 1.13:
                   15455:        * src/include/pa_db_connection.h 1.13:
                   15456:        * src/include/pa_db_table.h 1.5:
                   15457:        * src/main/pa_db_connection.C 1.19:
                   15458:        * src/main/pa_db_manager.C 1.9:
                   15459:        * src/main/pa_db_table.C 1.5:
                   15460:        * src/main/pa_globals.C 1.86:
                   15461:        * src/types/pa_vhashfile.C 1.12:
                   15462:                DB2 ifdefs
                   15463: 
                   15464:        * src/Makefile.in 1.32:
                   15465:        * src/classes/Makefile.am 1.29:
                   15466:        * src/classes/Makefile.in 1.29:
                   15467:        * src/include/pa_config_fixed.h 1.27:
                   15468:        * src/main/Makefile.am 1.23:
                   15469:        * src/main/Makefile.in 1.25:
                   15470:        * src/targets/Makefile.in 1.23:
                   15471:        * src/targets/apache13/Makefile.in 1.22:
                   15472:        * src/targets/apache13/p3runConfigure.in 1.5:
                   15473:        * src/targets/cgi/Makefile.am 1.21:
                   15474:        * src/targets/cgi/Makefile.in 1.26:
                   15475:        * src/types/Makefile.am 1.12:
                   15476:        * src/types/Makefile.in 1.22:
                   15477:                makes with DB2
                   15478: 
                   15479:        * src/classes/classes.awk 1.4:
                   15480:                no $ in var names
                   15481: 
                   15482:        * src/main/pa_globals.C 1.85:
                   15483:        * src/targets/apache13/ApacheModuleParser3.dsp 1.7:
                   15484:        * src/targets/cgi/parser3.dsp 1.36:
                   15485:        * src/targets/isapi/parser3isapi.dsp 1.28:
                   15486:                vc projects libdb ifdefed into globals.C
                   15487: 
                   15488:        * src/main/pa_db_connection.C 1.17:
                   15489:        * src/main/pa_db_manager.C 1.8:
                   15490:                db expiration connection&table [forgotten calls]
                   15491: 
                   15492:        * src/Makefile.in 1.31:
                   15493:        * src/classes/Makefile.in 1.28:
                   15494:        * src/include/pa_config_auto.h.in 1.9:
                   15495:        * src/main/Makefile.am 1.22:
                   15496:        * src/main/Makefile.in 1.24:
                   15497:        * src/targets/Makefile.in 1.22:
                   15498:        * src/targets/apache13/p3runConfigure.in 1.4:
                   15499:        * src/targets/cgi/Makefile.in 1.25:
                   15500:        * src/types/Makefile.am 1.11:
                   15501:        * src/types/Makefile.in 1.21:
                   15502:                makes db
                   15503: 
                   15504:        * src/classes/hashfile.C 1.12:
                   15505:        * src/include/pa_db_connection.h 1.12:
                   15506:        * src/include/pa_db_table.h 1.4:
                   15507:        * src/main/pa_db_connection.C 1.18:
                   15508:        * src/main/pa_db_table.C 1.4:
                   15509:                ^hashfile.clear[]
                   15510: 
                   15511: 2001-10-26  paf
                   15512:        * src/classes/xdoc.C 1.35:
                   15513:        * src/classes/xdoc.C 1.36:
                   15514:        * src/types/pa_vxdoc.h 1.11:
                   15515:                transform2 for parsed_source
                   15516: 
                   15517:        * src/classes/hashfile.C 1.11:
                   15518:        * src/include/pa_db_connection.h 1.10:
                   15519:        * src/include/pa_db_manager.h 1.4:
                   15520:        * src/include/pa_db_table.h 1.3:
                   15521:        * src/include/pa_hash.h 1.45:
                   15522:        * src/main/pa_db_connection.C 1.13:
                   15523:        * src/main/pa_db_manager.C 1.7:
                   15524:        * src/main/pa_db_table.C 1.3:
                   15525:        * src/main/pa_hash.C 1.42:
                   15526:        * src/types/pa_vhashfile.C 1.11:
                   15527:        * src/types/pa_vhashfile.h 1.9:
                   15528:                db connections & tables now cached at create time & multithreaded
                   15529: 
                   15530:        * src/classes/xdoc.C 1.37:
                   15531:                xdoc createTextNode createElement UL_XML default. but entities
                   15532:                still reparsed. todo: tothink
                   15533: 
                   15534:        * src/classes/hashfile.C 1.10:
                   15535:        * src/include/pa_db_table.h 1.2:
                   15536:        * src/main/pa_db_table.C 1.2:
                   15537:                db: child transaction commit/rollback responsibility left to
                   15538:                parent [as it sould - else there were a bug with double free]
                   15539: 
                   15540:        * src/include/pa_db_connection.h 1.11:
                   15541:        * src/main/pa_db_connection.C 1.15:
                   15542:        * src/main/pa_db_connection.C 1.16:
                   15543:                db checkpoints
                   15544: 
                   15545:        * src/main/pa_db_connection.C 1.12:
                   15546:                about to remove connection from vhashfile
                   15547: 
                   15548:        * src/main/pa_db_connection.C 1.14:
                   15549:                db recover mech 2
                   15550: 
                   15551: 2001-10-25  paf
                   15552:        * src/classes/hashfile.C 1.9:
                   15553:        * src/include/pa_common.h 1.56:
                   15554:        * src/include/pa_db_connection.h 1.9:
                   15555:        * src/include/pa_db_manager.h 1.3:
                   15556:        * src/include/pa_db_table.h 1.1:
                   15557:        * src/main/main.dsp 1.136:
                   15558:        * src/main/pa_db_connection.C 1.11:
                   15559:        * src/main/pa_db_manager.C 1.6:
                   15560:        * src/main/pa_db_table.C 1.1:
                   15561:        * src/types/pa_vhashfile.C 1.10:
                   15562:        * src/types/pa_vhashfile.h 1.8:
                   15563:                started db_home [multiple, cached]
                   15564:                todo: autorecover [tried, but not succeded, yet]
                   15565: 
                   15566:        * src/include/pa_db_connection.h 1.8:
                   15567:        * src/main/pa_db_manager.C 1.5:
                   15568:                transaction parent passed
                   15569: 
                   15570:        * src/include/pa_dir.h 1.6:
                   15571:                ancient gpf on dir not found fixed
                   15572: 
                   15573: 2001-10-24  parser
                   15574:        * src/classes/Makefile.am 1.26:
                   15575:        * src/classes/Makefile.am 1.27:
                   15576:        * src/classes/Makefile.am 1.28:
                   15577:        * src/classes/Makefile.in 1.26:
                   15578:        * src/classes/Makefile.in 1.27:
                   15579:        * src/main/Makefile.in 1.23:
                   15580:        * src/targets/cgi/Makefile.am 1.20:
                   15581:        * src/targets/cgi/Makefile.in 1.24:
                   15582:        * src/targets/cgi/pool_storage.h 1.2:
                   15583:        * src/targets/cgi/pool_storage.h 1.3:
                   15584:                makes
                   15585: 
                   15586:        * src/include/pa_db_connection.h 1.6:
                   15587:        * src/main/pa_db_connection.C 1.6:
                   15588:        * src/types/pa_vhashfile.C 1.6:
                   15589:                db_cursor constructor public now
                   15590: 
                   15591:        * src/include/pa_common.h 1.54:
                   15592:        * src/main/Makefile.am 1.21:
                   15593:        * src/main/pa_common.C 1.76:
                   15594:        * src/types/pa_vform.C 1.41:
                   15595:        * src/types/pa_vform.h 1.26:
                   15596:                .am
                   15597: 
                   15598:        * src/classes/hashfile.C 1.7:
                   15599:        * src/include/pa_request.h 1.106:
                   15600:                hashfile.cache 0
                   15601: 
                   15602:        * src/main/pa_db_connection.C 1.7:
                   15603:        * src/types/pa_vhashfile.C 1.7:
                   15604:                db_connection not bothers with key when not returning expired data
                   15605: 
                   15606:        * src/targets/cgi/pool_storage.h 1.4:
                   15607:        * src/targets/isapi/parser3isapi.C 1.56:
                   15608:        * src/targets/isapi/pool_storage.h 1.12:
                   15609:                pool_storage fixed
                   15610: 
                   15611:        * src/include/pa_common.h 1.55:
                   15612:        * src/main/pa_common.C 1.77:
                   15613:        * src/types/pa_vform.C 1.42:
                   15614:        * src/types/pa_vform.h 1.27:
                   15615:                form fix_line_breaks
                   15616: 
                   15617:        * src/types/pa_vhashfile.C 1.8:
                   15618:        * src/types/pa_vhashfile.h 1.6:
                   15619:                hashfile expiring 0
                   15620: 
                   15621:        * src/main/pa_db_connection.C 1.8:
                   15622:        * src/types/pa_vhashfile.C 1.9:
                   15623:                hashfile expiring 1
                   15624: 
                   15625:        * src/classes/hashfile.C 1.6:
                   15626:        * src/include/pa_db_connection.h 1.7:
                   15627:        * src/main/pa_db_connection.C 1.9:
                   15628:                hashfile expired deleted from db when get & iterate
                   15629: 
                   15630:        * src/classes/hashfile.C 1.8:
                   15631:        * src/types/pa_vhashfile.h 1.7:
                   15632:                hashfile 1
                   15633: 
1.24      paf      15634:        * src/sql/pa_sql_driver.h 1.18:
                   15635:                version
                   15636: 
1.15      paf      15637:        * src/targets/apache13/ApacheModuleParser3.dsp 1.6:
                   15638:        * src/targets/isapi/parser3isapi.dsp 1.27:
                   15639:                doc
                   15640: 
                   15641:        * src/include/pa_db_connection.h 1.5:
                   15642:        * src/main/pa_db_connection.C 1.5:
                   15643:        * src/types/pa_vhashfile.C 1.5:
                   15644:        * src/types/pa_vhashfile.h 1.5:
                   15645:                hashfile data stamped, todo: put_element analize
                   15646: 
                   15647:        * src/include/pa_db_connection.h 1.4:
                   15648:        * src/include/pa_string.h 1.108:
                   15649:        * src/main/pa_db_connection.C 1.4:
                   15650:        * src/main/pa_string.C 1.113:
                   15651:                hashfile pieced serialize. todo stamp
                   15652: 
                   15653:        * src/main/pa_db_connection.C 1.10:
                   15654:        * src/main/pa_db_manager.C 1.4:
                   15655:                hashfile setted this:
                   15656:                DB_RMW
                   15657:                Acquire write locks instead of read locks when doing the retrieval. Setting this flag may decrease the likelihood of deadlock during a read-modify-write cycle by immediately acquiring the write lock during the read part of the cycle so that another thread of control acquiring a read lock for the same item, in its own read-modify-write cycle, will not result in deadlock
                   15658: 
                   15659: 2001-10-23  parser
                   15660:        * src/classes/file.C 1.60:
                   15661:        * src/classes/hash.C 1.24:
                   15662:        * src/classes/hashfile.C 1.5:
                   15663:        * src/classes/image.C 1.59:
                   15664:        * src/classes/mail.C 1.42:
                   15665:        * src/classes/response.C 1.15:
                   15666:        * src/classes/string.C 1.85:
                   15667:        * src/classes/table.C 1.128:
                   15668:        * src/classes/xdoc.C 1.34:
                   15669:        * src/include/pa_config_fixed.h 1.26:
                   15670:        * src/include/pa_db_connection.h 1.3:
                   15671:        * src/main/pa_common.C 1.75:
                   15672:        * src/main/pa_db_connection.C 1.3:
                   15673:        * src/main/pa_request.C 1.172:
                   15674:        * src/types/pa_value.h 1.76:
                   15675:        * src/types/pa_vcookie.C 1.29:
                   15676:        * src/types/pa_vhash.h 1.25:
                   15677:        * src/types/pa_vhashfile.C 1.4:
                   15678:        * src/types/pa_vhashfile.h 1.4:
                   15679:        * src/types/pa_vresponse.h 1.16:
                   15680:        * src/types/pa_vtable.C 1.8:
                   15681:                ^hashfile.hash[]
                   15682: 
                   15683:        * src/classes/hashfile.C 1.3:
                   15684:        * src/include/pa_db_connection.h 1.2:
                   15685:        * src/include/pa_db_manager.h 1.2:
                   15686:        * src/main/pa_db_connection.C 1.2:
                   15687:        * src/main/pa_db_manager.C 1.2:
                   15688:        * src/types/pa_vhashfile.h 1.3:
                   15689:                ^hashfile.transaction{code}
                   15690:                ^hashfile:clear[filename]
                   15691:                ^hashfile.delete[key]
                   15692: 
                   15693:        * src/classes/hashfile.C 1.4:
                   15694:        * src/classes/xdoc.C 1.33:
                   15695:        * src/include/pa_config_fixed.h 1.25:
                   15696:        * src/main/pa_db_manager.C 1.3:
                   15697:        * src/main/pa_globals.C 1.84:
                   15698:                ifdefs so it compiled without db
                   15699: 
                   15700: 2001-10-22  parser
                   15701:        * src/classes/classes.dsp 1.12:
                   15702:        * src/classes/hashfile.C 1.2:
                   15703:        * src/classes/xdoc.C 1.32:
                   15704:        * src/classes/xnode.C 1.15:
                   15705:        * src/include/pa_charset_connection.h 1.2:
                   15706:        * src/include/pa_db_connection.h 1.1:
                   15707:        * src/include/pa_db_manager.h 1.1:
                   15708:        * src/include/pa_exception.h 1.18:
                   15709:        * src/include/pa_sapi.h 1.14:
                   15710:        * src/include/pa_sql_connection.h 1.14:
                   15711:        * src/include/pa_sql_driver_manager.h 1.13:
                   15712:        * src/include/pa_stylesheet_connection.h 1.14:
                   15713:        * src/include/pa_stylesheet_manager.h 1.1:
                   15714:        * src/include/pa_xslt_stylesheet_manager.h 1.5:
                   15715:        * src/main/main.dsp 1.135:
                   15716:        * src/main/pa_db_connection.C 1.1:
                   15717:        * src/main/pa_db_manager.C 1.1:
                   15718:        * src/main/pa_exception.C 1.22:
                   15719:        * src/main/pa_globals.C 1.83:
                   15720:        * src/main/pa_pool.C 1.38:
                   15721:        * src/main/pa_sql_driver_manager.C 1.42:
                   15722:        * src/main/pa_stylesheet_manager.C 1.1:
                   15723:        * src/main/pa_xslt_stylesheet_manager.C 1.5:
                   15724:        * src/targets/apache13/mod_parser3.C 1.7:
                   15725:        * src/targets/cgi/parser3.C 1.124:
                   15726:        * src/targets/isapi/parser3isapi.C 1.55:
                   15727:        * src/types/pa_vhashfile.C 1.3:
                   15728:        * src/types/pa_vhashfile.h 1.2:
                   15729:        * src/types/pa_vxdoc.C 1.5:
                   15730:        * src/types/pa_vxnode.C 1.8:
                   15731:        * src/types/types.dsp 1.12:
                   15732:                hashfile 0
                   15733: 
                   15734:        * src/targets/cgi/pa_pool.C 1.24:
                   15735:        * src/targets/cgi/parser3.C 1.125:
                   15736:        * src/targets/cgi/parser3.dsp 1.35:
                   15737:        * src/targets/cgi/pool_storage.h 1.1:
                   15738:        * src/targets/isapi/pool_storage.h 1.11:
                   15739:                cgi += pool cleanups
                   15740: 
                   15741:        * src/targets/apache13/mod_parser3.C 1.5:
                   15742:        * src/targets/isapi/parser3isapi.C 1.54:
                   15743:                SEH minor ifdef changes
                   15744: 
                   15745:        * src/targets/apache13/mod_parser3.C 1.6:
                   15746:                html
                   15747: 
                   15748:        * src/classes/classes.dsp 1.11:
                   15749:        * src/classes/hashfile.C 1.1:
                   15750:        * src/include/pa_config_fixed.h 1.24:
                   15751:        * src/main/execute.C 1.198:
                   15752:        * src/targets/cgi/parser3.dsp 1.34:
                   15753:        * src/types/pa_vhashfile.C 1.1:
                   15754:        * src/types/pa_vhashfile.h 1.1:
                   15755:        * src/types/types.dsp 1.11:
                   15756:                hashfile -100
                   15757: 
                   15758:        * src/include/pa_exception.h 1.17:
                   15759:        * src/include/pa_request.h 1.105:
                   15760:        * src/main/execute.C 1.197:
                   15761:        * src/main/pa_exception.C 1.21:
                   15762:        * src/main/pa_request.C 1.171:
                   15763:        * src/targets/cgi/parser3.C 1.123:
                   15764:        * src/targets/cgi/parser3.dsp 1.33:
                   15765:        * src/types/pa_vclass.h 1.20:
                   15766:        * src/types/pa_vobject.h 1.12:
                   15767:                stack backtrace
                   15768: 
                   15769:        * src/types/pa_vhashfile.C 1.2:
                   15770:                z
                   15771: 
                   15772: 2001-10-19  parser
                   15773:        * src/main/pa_request.C 1.170:
                   15774:        * src/targets/apache13/mod_parser3.C 1.4:
                   15775:                pool:: context - get_context
                   15776: 
                   15777:        * src/main/pa_pool.C 1.37:
                   15778:                auto compiled on gcc
                   15779: 
                   15780:        * src/classes/classes.h 1.13:
                   15781:        * src/classes/date.C 1.11:
                   15782:        * src/classes/double.C 1.40:
                   15783:        * src/classes/file.C 1.59:
                   15784:        * src/classes/form.C 1.18:
                   15785:        * src/classes/hash.C 1.23:
                   15786:        * src/classes/image.C 1.57:
                   15787:        * src/classes/int.C 1.37:
                   15788:        * src/classes/mail.C 1.41:
                   15789:        * src/classes/math.C 1.7:
                   15790:        * src/classes/op.C 1.53:
                   15791:        * src/classes/string.C 1.84:
                   15792:        * src/classes/table.C 1.127:
                   15793:        * src/classes/void.C 1.12:
                   15794:        * src/include/pa_config_fixed.h 1.22:
                   15795:        * src/include/pa_exception.h 1.15:
                   15796:        * src/include/pa_pool.h 1.64:
                   15797:        * src/include/pa_request.h 1.104:
                   15798:        * src/include/pa_types.h 1.27:
                   15799:        * src/main/compile.C 1.51:
                   15800:        * src/main/compile_tools.C 1.39:
                   15801:        * src/main/execute.C 1.196:
                   15802:        * src/main/pa_array.C 1.40:
                   15803:        * src/main/pa_common.C 1.73:
                   15804:        * src/main/pa_dictionary.C 1.8:
                   15805:        * src/main/pa_exception.C 1.19:
                   15806:        * src/main/pa_exec.C 1.15:
                   15807:        * src/main/pa_pool.C 1.34:
                   15808:        * src/main/pa_request.C 1.169:
                   15809:        * src/main/pa_socks.C 1.7:
                   15810:        * src/main/pa_sql_driver_manager.C 1.41:
                   15811:        * src/main/pa_string.C 1.112:
                   15812:        * src/main/pa_table.C 1.39:
                   15813:        * src/main/untaint.C 1.69:
                   15814:        * src/targets/apache13/ApacheModuleParser3.dsp 1.5:
                   15815:        * src/targets/apache13/mod_parser3.C 1.3:
                   15816:        * src/targets/cgi/parser3.C 1.122:
                   15817:        * src/targets/isapi/parser3isapi.C 1.53:
                   15818:        * src/types/pa_value.h 1.75:
                   15819:        * src/types/pa_vbool.h 1.14:
                   15820:        * src/types/pa_vdouble.h 1.27:
                   15821:        * src/types/pa_vfile.h 1.36:
                   15822:        * src/types/pa_vform.C 1.40:
                   15823:        * src/types/pa_vhash.h 1.24:
                   15824:        * src/types/pa_vint.h 1.28:
                   15825:        * src/types/pa_vjunction.h 1.9:
                   15826:        * src/types/pa_vmethod_frame.h 1.17:
                   15827:        * src/types/pa_vstateless_class.h 1.18:
                   15828:        * src/types/pa_vtable.C 1.7:
                   15829:        * src/types/pa_wcontext.C 1.11:
                   15830:        * src/types/pa_wwrapper.h 1.12:
                   15831:                switched to c++ exceptions 0
                   15832: 
                   15833:        * src/Makefile.in 1.30:
                   15834:        * src/classes/Makefile.in 1.25:
                   15835:        * src/include/pa_pool.h 1.66:
                   15836:        * src/main/Makefile.in 1.22:
                   15837:        * src/main/pa_common.C 1.74:
                   15838:        * src/targets/Makefile.in 1.21:
                   15839:        * src/targets/apache13/Makefile.in 1.21:
                   15840:        * src/targets/cgi/Makefile.in 1.23:
                   15841:        * src/types/Makefile.in 1.20:
                   15842:                makes
                   15843: 
                   15844:        * src/include/pa_pool.h 1.67:
                   15845:                header
                   15846: 
                   15847:        * src/classes/xdoc.C 1.30:
                   15848:        * src/classes/xnode.C 1.13:
                   15849:        * src/include/pa_pool.h 1.65:
                   15850:        * src/include/pa_types.h 1.28:
                   15851:        * src/main/pa_pool.C 1.36:
                   15852:                first c++ exceptions result: can free up xalandomstring
                   15853:                resulting from pool::transcode
                   15854: 
                   15855:        * src/classes/classes.awk 1.3.6.1:
                   15856:                $ removed
                   15857: 
                   15858:        * src/classes/Makefile.am 1.25:
                   15859:        * src/classes/xdoc.C 1.29:
                   15860:        * src/classes/xnode.C 1.12:
                   15861:        * src/include/pa_config_fixed.h 1.23:
                   15862:        * src/include/pa_exception.h 1.16:
                   15863:        * src/include/pa_stylesheet_connection.h 1.13:
                   15864:        * src/main/pa_charset_connection.C 1.10:
                   15865:        * src/main/pa_exception.C 1.20:
                   15866:        * src/main/pa_pool.C 1.35:
                   15867:        * src/types/pa_vxdoc.C 1.3:
                   15868:        * src/types/pa_vxdoc.h 1.9:
                   15869:        * src/types/pa_vxnode.C 1.6:
                   15870:        * src/types/pa_vxnode.h 1.6:
                   15871:                switched to c++ exceptions 1xml
                   15872:                configure fixed to exclude xalan-patch from non-xml compile
                   15873: 
                   15874:        * src/classes/xdoc.C 1.31:
                   15875:        * src/classes/xnode.C 1.14:
                   15876:        * src/classes/xnode.h 1.3:
                   15877:        * src/types/pa_vxdoc.C 1.4:
                   15878:        * src/types/pa_vxdoc.h 1.10:
                   15879:        * src/types/pa_vxnode.C 1.7:
                   15880:        * src/types/pa_vxnode.h 1.7:
                   15881:                xnode clone got freed
                   15882: 
                   15883:        * src/classes/image.C 1.58:
                   15884:                comment
                   15885: 
                   15886: 2001-10-18  parser
                   15887:        * src/classes/xdoc.C 1.28:
                   15888:        * src/types/pa_vxdoc.h 1.8:
                   15889:        * src/types/pa_vxnode.C 1.5:
                   15890:                vxdoc set_document & ctor question "who owns document" solved
                   15891: 
                   15892:        * src/classes/xdoc.C 1.26:
                   15893:        * src/classes/xnode.C 1.11:
                   15894:        * src/include/pa_pool.h 1.63:
                   15895:        * src/main/pa_pool.C 1.32:
                   15896:                encoding in dom creating funcs
                   15897: 
                   15898:        * src/include/pa_stylesheet_connection.h 1.12:
                   15899:                prev stylesheet destroyed @ recompile
                   15900: 
                   15901:        * src/classes/xdoc.C 1.22:
                   15902:                comment
                   15903: 
                   15904:        * src/classes/xdoc.C 1.21:
                   15905:        * src/classes/xnode.C 1.10:
                   15906:        * src/main/compile.tab.C 1.24:
                   15907:                xdoc create now uses XercesDocumentBridge, appendChild&co now works
                   15908: 
                   15909:        * src/classes/xdoc.C 1.27:
                   15910:        * src/main/pa_pool.C 1.33:
                   15911:                extra free removed
                   15912: 
                   15913:        * src/classes/xdoc.C 1.24:
                   15914:        * src/classes/xdoc.C 1.25:
                   15915:        * src/types/pa_vxdoc.h 1.7:
                   15916:                dom created by create can be transformed now
                   15917: 
                   15918:        * src/classes/xdoc.C 1.23:
                   15919:                z
                   15920: 
                   15921:        * src/types/pa_vcookie.C 1.28:
                   15922:                cookie:CLASS
                   15923: 
                   15924:        * src/classes/classes.dsp 1.10:
                   15925:        * src/classes/xdoc.C 1.19:
                   15926:        * src/types/types.dsp 1.10:
                   15927:                fiew leechy-found bugs in code&doc fixed
                   15928: 
                   15929:        * src/classes/xdoc.C 1.20:
                   15930:        * src/classes/xnode.C 1.9:
                   15931:                xdoc::create[] now. and all dom tag names forced to XML lang
                   15932: 
                   15933:        * src/main/main.dsp 1.134:
                   15934:                project
                   15935: 
                   15936:        * src/main/compile.tab.C 1.23:
                   15937:        * src/main/compile.y 1.172:
                   15938:        * src/main/pa_request.C 1.168:
                   15939:                ^:
                   15940:                no colon in $origin @exception[
                   15941: 
                   15942: 2001-10-17  parser
                   15943:        * src/types/pa_vimage.h 1.21:
                   15944:                removed unused vimage::save
                   15945: 
                   15946:        * src/classes/classes.dsp 1.9:
                   15947:        * src/classes/string.C 1.83:
                   15948:        * src/main/pa_string.C 1.111:
                   15949:        * src/types/pa_vxnode.h 1.5:
                   15950:        * src/types/types.dsp 1.9:
                   15951:                string::mid fixed, string.mid n functionality preserved
                   15952: 
                   15953: 2001-10-16  parser
                   15954:        * src/classes/classes.dsp 1.8:
                   15955:        * src/main/main.dsp 1.133:
                   15956:        * src/targets/apache13/ApacheModuleParser3.dsp 1.4:
                   15957:        * src/targets/cgi/parser3.dsp 1.32:
                   15958:        * src/targets/isapi/parser3isapi.dsp 1.26:
                   15959:        * src/types/types.dsp 1.8:
                   15960:                ident >nul 2>&1
                   15961: 
1.28      paf      15962:        * src/classes/xnode.C 1.7:
                   15963:        * src/classes/xnode.C 1.8:
                   15964:                removed few dom returns & changed op.txt
                   15965: 
                   15966:        * src/classes/image.C 1.54:
                   15967:                gd size/resize bugfix
1.15      paf      15968: 
1.28      paf      15969:        * src/classes/image.C 1.55:
                   15970:                :CopyResampled made gd2beta+my hands, very ineffective, but
                   15971:                works for small paleted image
1.15      paf      15972: 
                   15973:        * src/classes/string.C 1.82:
                   15974:        * src/main/pa_string.C 1.110:
                   15975:                $string.mid(p[;n])
                   15976: 
1.28      paf      15977:        * src/classes/image.C 1.56:
                   15978:                image.copy tolerance
                   15979: 
                   15980:        * src/types/pa_vhash.h 1.23:
                   15981:        * src/types/pa_vtable.h 1.34:
                   15982:                hash can be used as boolean
                   15983: 
1.15      paf      15984:        * src/main/pa_common.C 1.72:
                   15985:                \r\n -> \n   DOS
                   15986:                \r -> \n Macintosh
                   15987:                on all systems
                   15988: 
                   15989:        * src/classes/image.C 1.53:
                   15990:        * src/types/pa_vimage.h 1.20:
                   15991:                image.copy[source](src x;src y;src w;src h;dst x;dst y[;dest w
                   15992:                ;dest h]])
                   15993: 
1.28      paf      15994:        * src/types/pa_vimage.C 1.12:
                   15995:                comment
                   15996: 
1.15      paf      15997: 2001-10-15  parser
                   15998:        * src/Makefile.in 1.29:
                   15999:        * src/types/pa_vcode_frame.h 1.11:
                   16000:        * src/types/pa_wcontext.C 1.10:
                   16001:                code_frame fixed - ::write badly passed string too
                   16002:                transparently [failed to intercept it]
                   16003: 
                   16004:        * src/types/pa_vxnode.C 1.4:
                   16005:                    document_type_node.
                   16006:                        !readonly attribute DOMString name
                   16007:                    !notation_node.
                   16008:                        !readonly attribute DOMString publicId
                   16009:                        !readonly attribute DOMString systemId
                   16010: 
                   16011:        * src/classes/xdoc.C 1.16:
                   16012:        * src/classes/xnode.C 1.6:
                   16013:        * src/include/pa_config_fixed.h 1.21:
                   16014:        * src/include/pa_request.h 1.103:
                   16015:        * src/main/pa_sql_driver_manager.C 1.40:
                   16016:        * src/types/pa_vxdoc.C 1.2:
                   16017:        * src/types/pa_vxdoc.h 1.6:
                   16018:        * src/types/pa_vxnode.C 1.3:
                   16019:        * src/types/pa_vxnode.h 1.4:
                   16020:                DOM1 major addtion, only few attributes/methods left
                   16021: 
                   16022:        * src/main/execute.C 1.195:
                   16023:                z
                   16024: 
                   16025:        * src/classes/xdoc.C 1.17:
                   16026:        * src/classes/xdoc.C 1.18:
                   16027:                    !::create{qualifiedName}
                   16028: 
                   16029: 2001-10-13  parser
                   16030:        * src/main/execute.C 1.194:
                   16031:        * src/types/pa_vcode_frame.h 1.9:
                   16032:                vcodeframe made transparent enough to handle hash if creation&passing
                   16033: 
                   16034:        * src/include/pa_config_fixed.h 1.20:
                   16035:        * src/main/execute.C 1.193:
                   16036:        * src/main/pa_exception.C 1.18:
                   16037:                noticed that vcodeframe not transparent enough, would change now
                   16038: 
                   16039:        * src/types/pa_vcode_frame.h 1.10:
                   16040:                couple comments
                   16041: 
                   16042:        * src/targets/isapi/pool_storage.h 1.10:
                   16043:                isapi pool storage reverse cleanups & frees order
                   16044: 
                   16045:        * src/main/pa_sql_driver_manager.C 1.39:
                   16046:        * src/targets/cgi/parser3.C 1.121:
                   16047:        * src/targets/isapi/parser3isapi.C 1.52:
                   16048:                isapi&cgi couple non-pooled mallocs in main handler
                   16049: 
                   16050: 2001-10-12  parser
                   16051:        * src/classes/double.C 1.39:
                   16052:        * src/classes/int.C 1.36:
                   16053:        * src/classes/string.C 1.81:
                   16054:                sql{}[$.default[({})]] handling changed:
                   16055:                now type of default param analized always, not only at problem time,
                   16056:                thus helping early problem spotting
                   16057: 
                   16058:        * src/classes/classes.dsp 1.7:
                   16059:        * src/classes/xdoc.C 1.15:
                   16060:        * src/main/compile.tab.C 1.22:
                   16061:        * src/main/main.dsp 1.132:
                   16062:        * src/main/pa_globals.C 1.82:
                   16063:        * src/targets/apache13/ApacheModuleParser3.dsp 1.3:
                   16064:        * src/targets/apache13/mod_parser3.C 1.2:
                   16065:        * src/targets/cgi/parser3.C 1.120:
                   16066:        * src/targets/cgi/parser3.dsp 1.31:
                   16067:        * src/targets/isapi/parser3isapi.C 1.50:
                   16068:        * src/targets/isapi/parser3isapi.C 1.51:
                   16069:        * src/targets/isapi/parser3isapi.dsp 1.25:
                   16070:        * src/types/types.dsp 1.7:
                   16071:                xalan&xerces multithread bug fixed. initialization&free on each
                   16072:                thread!
                   16073: 
                   16074: 2001-10-11  parser
                   16075:        * src/targets/apache13/Makefile.am 1.6:
                   16076:                started restructuring
                   16077: 
                   16078:        * src/Makefile.in 1.25:
                   16079:        * src/Makefile.in 1.26:
                   16080:        * src/Makefile.in 1.28:
                   16081:        * src/classes/Makefile.in 1.22:
                   16082:        * src/classes/Makefile.in 1.23:
                   16083:        * src/include/pa_config_auto.h.in 1.8:
                   16084:        * src/main/Makefile.in 1.20:
                   16085:        * src/main/Makefile.in 1.21:
                   16086:        * src/targets/Makefile.in 1.19:
                   16087:        * src/targets/Makefile.in 1.20:
                   16088:        * src/targets/apache13/Makefile.in 1.19:
                   16089:        * src/targets/apache13/Makefile.in 1.20:
                   16090:        * src/targets/apache13/p3runConfigure.in 1.3:
                   16091:        * src/targets/cgi/Makefile.in 1.21:
                   16092:        * src/targets/cgi/Makefile.in 1.22:
                   16093:        * src/types/Makefile.in 1.18:
                   16094:        * src/types/Makefile.in 1.19:
                   16095:                makes
                   16096: 
                   16097:        * src/classes/xnode.C 1.5:
                   16098:                xnode.selectSingle now
                   16099: 
                   16100:        * src/targets/apache13/ApacheModuleParser3.dsp 1.2:
                   16101:                .dsp fixed due to relocate
                   16102: 
                   16103:        * src/classes/xdoc.C 1.14:
                   16104:        * src/classes/xnode.C 1.4:
                   16105:        * src/include/pa_exception.h 1.14:
                   16106:        * src/include/pa_pool.h 1.62:
                   16107:        * src/include/pa_stylesheet_connection.h 1.11:
                   16108:        * src/main/pa_exception.C 1.17:
                   16109:        * src/main/pa_pool.C 1.31:
                   16110:                moved xslt exceptions convertors out of Pool into Exception
                   16111: 
                   16112:        * src/Makefile.in 1.27:
                   16113:        * src/classes/Makefile.in 1.24:
                   16114:                makes. stdc++ lib added to apache libraries
                   16115: 
                   16116:        * src/classes/hash.C 1.22:
                   16117:                    !^hash.add[addme]
                   16118:                    !^hash.sub[subme]
                   16119:                    !^a.union[b] = new
                   16120:                    !^a.intersection[b] = new
                   16121:                    !^a.intersects[b] = bool
                   16122: 
                   16123:        * src/main/pa_string.C 1.109:
                   16124:                const
                   16125: 
                   16126:        * src/classes/hash.C 1.20:
                   16127:        * src/types/pa_vhash.h 1.22:
                   16128:                    !^hash::create[[copy_from]]
                   16129: 
                   16130:        * src/targets/apache13/Makefile.am 1.7:
                   16131:        * src/targets/apache13/p3runConfigure.in 1.2:
                   16132:                added
                   16133: 
1.28      paf      16134:        * src/classes/hash.C 1.21:
                   16135:                    !^hash::append[append_from]
                   16136: 
1.15      paf      16137:        * src/include/pa_string.h 1.107:
                   16138:        * src/main/pa_string.C 1.108:
                   16139:                restructured string: linked pieces of same language together
                   16140:                prior to String::replace
                   16141: 
                   16142:        * src/targets/apache13/ApacheModuleParser3.dsp 1.1:
                   16143:        * src/targets/apache13/mod_parser3.C 1.1:
                   16144:        * src/targets/apache13/p3runConfigure.in 1.1:
                   16145:        * src/targets/apache13/pa_pool.C 1.1:
                   16146:        * src/targets/apache13/pa_threads.C 1.1:
                   16147:                restructured
                   16148: 
                   16149:        * src/classes/string.C 1.80:
                   16150:        * src/classes/table.C 1.126:
                   16151:        * src/include/pa_globals.h 1.67:
                   16152:        * src/include/pa_string.h 1.106:
                   16153:        * src/main/pa_globals.C 1.81:
                   16154:        * src/main/pa_string.C 1.107:
                   16155:        * src/main/untaint.C 1.68:
                   16156:        * src/types/pa_vvoid.h 1.5:
                   16157:                untaint lang origins table fixed.
                   16158:                got rid of empty_string, which caused errors - it hasnt exception but somebody[value.bark] tried to throw it on it's pool
                   16159: 
                   16160: 2001-10-10  parser
                   16161:        * src/main/compile.tab.C 1.19:
                   16162:        * src/main/compile.y 1.170:
                   16163:                ^a[^b] more informative compile error
                   16164: 
                   16165:        * src/main/compile.tab.C 1.20:
                   16166:        * src/main/compile.y 1.171:
                   16167:                ^a[
                   16168:                
                   16169:                @next_method  << now unclosed ] would be reported here
                   16170: 
                   16171:        * src/classes/op.C 1.52:
                   16172:        * src/main/compile.tab.C 1.21:
                   16173:                ^error[msg]
                   16174: 
                   16175: 2001-10-09  parser
                   16176:        * src/classes/classes.dsp 1.6:
                   16177:        * src/classes/xdoc.C 1.13:
                   16178:        * src/include/pa_stylesheet_connection.h 1.10:
                   16179:        * src/main/main.dsp 1.131:
                   16180:        * src/targets/cgi/parser3.C 1.118:
                   16181:        * src/targets/isapi/parser3isapi.C 1.48:
                   16182:        * src/types/pa_vxdoc.h 1.5:
                   16183:        * src/types/pa_vxnode.h 1.3:
                   16184:        * src/types/types.dsp 1.6:
                   16185:                xalan patches starting
                   16186: 
                   16187:        * src/classes/op.C 1.49:
                   16188:        * src/classes/table.C 1.121:
                   16189:        * src/types/pa_vfile.h 1.35:
                   16190:        * src/types/pa_vimage.h 1.19:
                   16191:        * src/types/pa_vjunction.h 1.8:
                   16192:        * src/types/pa_vxdoc.h 1.4:
                   16193:        * src/types/pa_vxnode.h 1.2:
                   16194:                table:menu & op for delims made allowed not to be code [be
                   16195:                string..]
                   16196: 
                   16197:        * src/Makefile.in 1.23:
                   16198:        * src/Makefile.in 1.24:
                   16199:        * src/classes/Makefile.am 1.23:
                   16200:        * src/classes/Makefile.am 1.24:
                   16201:        * src/classes/Makefile.in 1.20:
                   16202:        * src/classes/Makefile.in 1.21:
                   16203:        * src/main/Makefile.am 1.20:
                   16204:        * src/main/Makefile.in 1.18:
                   16205:        * src/main/Makefile.in 1.19:
                   16206:        * src/targets/Makefile.in 1.17:
                   16207:        * src/targets/Makefile.in 1.18:
                   16208:        * src/targets/apache13/Makefile.in 1.17:
                   16209:        * src/targets/apache13/Makefile.in 1.18:
                   16210:        * src/targets/cgi/Makefile.am 1.19:
                   16211:        * src/targets/cgi/Makefile.in 1.19:
                   16212:        * src/targets/cgi/Makefile.in 1.20:
                   16213:        * src/types/Makefile.am 1.10:
                   16214:        * src/types/Makefile.in 1.16:
                   16215:        * src/types/Makefile.in 1.17:
                   16216:                makes
                   16217: 
                   16218:        * src/targets/cgi/parser3.C 1.119:
                   16219:        * src/targets/isapi/parser3isapi.C 1.49:
                   16220:                xml transform win32 errors intercepted [xalan transformer
                   16221:                patched and incorporated]
                   16222: 
                   16223:        * src/classes/double.C 1.38:
                   16224:        * src/classes/file.C 1.58:
                   16225:        * src/classes/image.C 1.52:
                   16226:        * src/classes/int.C 1.35:
                   16227:        * src/classes/op.C 1.48:
                   16228:        * src/classes/string.C 1.78:
                   16229:        * src/classes/table.C 1.120:
                   16230:                lots of params->as_int/double/as_string/as_junction
                   16231:                as_no_junction messages added
                   16232: 
                   16233:        * src/classes/op.C 1.51:
                   16234:        * src/classes/table.C 1.123:
                   16235:                table.hash[key field;value field(s) string/table]  now
                   16236: 
                   16237:        * src/classes/op.C 1.50:
                   16238:        * src/classes/table.C 1.122:
                   16239:                z
                   16240: 
                   16241:        * src/classes/date.C 1.10:
                   16242:        * src/classes/table.C 1.124:
                   16243:                calendar moved to date
                   16244: 
                   16245:        * src/classes/string.C 1.79:
                   16246:        * src/classes/table.C 1.125:
                   16247:                ^string.save[file]
                   16248: 
                   16249: 2001-10-08  parser
                   16250:        * src/classes/image.C 1.49:
                   16251:        * src/types/pa_vcookie.C 1.27:
                   16252:        * src/types/pa_vimage.C 1.11:
                   16253:                image:sector
                   16254:                removed image:html internal "line-*" attribs
                   16255: 
1.28      paf      16256:        * src/types/pa_vcookie.C 1.25:
                   16257:                removing cookie made more netscape-like way
                   16258: 
1.15      paf      16259:        * src/classes/file.C 1.57:
                   16260:        * src/classes/form.C 1.17:
                   16261:        * src/main/pa_common.C 1.70:
                   16262:        * src/main/untaint.C 1.67:
                   16263:                header untainting to UL_HTTP_HEADER, UL_MAIL_HEADER made
                   16264:                nonforced [only tainted pieces]
                   16265: 
1.28      paf      16266:        * src/classes/xdoc.C 1.12:
                   16267:                xdoc:load exceptions intercepted [like in set]
                   16268: 
1.15      paf      16269:        * src/classes/image.C 1.50:
                   16270:                image:circle [and round arc] uses Bresenham
                   16271: 
                   16272:        * src/main/untaint.C 1.65:
                   16273:                \r to ' ' in origins mode
                   16274: 
                   16275:        * src/classes/date.C 1.9:
                   16276:        * src/classes/image.C 1.51:
                   16277:        * src/classes/string.C 1.77:
                   16278:        * src/classes/table.C 1.119:
                   16279:        * src/classes/void.C 1.11:
                   16280:        * src/include/pa_request.h 1.102:
                   16281:                params->as_int/double message added
                   16282: 
                   16283:        * src/classes/xdoc.C 1.11:
                   16284:        * src/include/pa_config_fixed.h 1.19:
                   16285:        * src/main/compile.tab.C 1.18:
                   16286:        * src/types/pa_vxdoc.h 1.3:
                   16287:                parsedSource produced by nonstandard liaison freed up
                   16288: 
1.28      paf      16289:        * src/classes/image.C 1.48:
                   16290:        * src/include/pa_common.h 1.53:
                   16291:        * src/main/pa_common.C 1.71:
                   16292:        * src/types/pa_vcookie.C 1.26:
                   16293:                cookie urlencoded [netscape doc reread]
                   16294: 
1.15      paf      16295:        * src/include/pa_common.h 1.52:
                   16296:        * src/main/pa_common.C 1.69:
                   16297:        * src/main/untaint.C 1.66:
                   16298:        * src/targets/cgi/parser3.C 1.117:
                   16299:        * src/targets/isapi/parser3isapi.C 1.47:
                   16300:                remove_crlf @ SAPI::log
                   16301: 
                   16302: 2001-10-07  parser
                   16303:        * src/include/pa_config_fixed.h 1.18:
                   16304:        * src/main/compile.tab.C 1.17:
                   16305:                restored project
                   16306: 
                   16307: 2001-10-05  parser
                   16308:        * src/classes/xdoc.C 1.9:
                   16309:        * src/include/pa_dictionary.h 1.6:
                   16310:        * src/main/main.dsp 1.129:
                   16311:        * src/main/pa_dictionary.C 1.7:
                   16312:        * src/main/pa_string.C 1.106:
                   16313:        * src/types/pa_vxdoc.h 1.2:
                   16314:                started xml errorhandler.
                   16315:                fixed string.replace a little, read @test
                   16316: 
                   16317:        * src/main/pa_charset_connection.C 1.7:
                   16318:                unicode zero pair at the beging of totable appered to be vital
                   16319: 
                   16320:        * src/classes/xdoc.C 1.8:
                   16321:        * src/main/compile.tab.C 1.16:
                   16322:                xdoc.transform now
                   16323: 
                   16324:        * src/doc/doxygen.cfg 1.18:
                   16325:        * src/doc/html2chm.cmd 1.4:
                   16326:        * src/doc/sources2html.cmd 1.4:
                   16327:                paths
                   16328: 
                   16329:        * src/classes/xdoc.C 1.10:
                   16330:        * src/include/pa_pool.h 1.61:
                   16331:        * src/main/main.dsp 1.130:
                   16332:        * src/main/pa_pool.C 1.30:
                   16333:                changed xdoc:set to prevent SAXParseException from outputing to cerr.
                   16334:                lots of "todos"
                   16335: 
                   16336:        * src/main/pa_charset_connection.C 1.8:
                   16337:        * src/main/pa_charset_connection.C 1.9:
                   16338:                ctype another mem clear bugfix
                   16339: 
                   16340:        * src/main/untaint.C 1.64:
                   16341:                http_header tainting more gentle with enquoting now
                   16342: 
                   16343:        * src/main/pa_string.C 1.105:
                   16344:                found replace bug - first_that_starts(char *) does not have
                   16345:                limit, and looks further eos, fixing....
                   16346: 
                   16347:        * src/include/pa_hash.h 1.44:
                   16348:        * src/main/pa_hash.C 1.41:
                   16349:                Hash::size() calculated wrong. fixed it
                   16350: 
                   16351:        * src/Makefile.in 1.22:
                   16352:        * src/main/compile.tab.C 1.15:
                   16353:        * src/main/compile.y 1.169:
                   16354:                disabled ^literals in names
                   16355:                $result[^[$p^]z]
                   16356:                now works fine
                   16357: 
                   16358: 2001-10-04  parser
                   16359:        * src/classes/image.C 1.47:
                   16360:                ^image.length[text]
                   16361: 
                   16362: 2001-10-03  parser
                   16363:        * src/main/pa_request.C 1.166:
                   16364:                restored pcre defaulting in request [mindlessly "optimized" yesterday]
                   16365:                comment left
                   16366: 
                   16367:        * src/main/pa_request.C 1.167:
                   16368:                DEFAULT...charset was ignored when !XML
                   16369: 
                   16370: 2001-10-02  parser
                   16371:        * src/include/pa_request.h 1.101:
                   16372:        * src/main/pa_charset_connection.C 1.4:
                   16373:        * src/main/pa_charset_connection.C 1.5:
                   16374:        * src/main/pa_request.C 1.165:
                   16375:        * src/types/pa_vstring.h 1.36:
                   16376:                pcre tables now const inside
                   16377:                removed default - pcre handles that internally
                   16378:                fixed bug on not-cleaning tables [previously was calloced, now member]
                   16379: 
                   16380:        * src/Makefile.in 1.21:
                   16381:        * src/classes/Makefile.in 1.19:
                   16382:        * src/main/Makefile.in 1.17:
                   16383:        * src/targets/Makefile.in 1.16:
                   16384:        * src/targets/apache13/Makefile.in 1.16:
                   16385:        * src/targets/cgi/Makefile.in 1.18:
                   16386:        * src/types/Makefile.in 1.15:
                   16387:                makes
                   16388: 
                   16389:        * src/include/pa_config_fixed.h 1.17:
                   16390:        * src/main/pa_charset_connection.C 1.3:
                   16391:                tested charset reload on file change @ apache version = OK
                   16392:                tested freeing up prev encoding on adding new = OK
                   16393: 
                   16394:        * src/classes/table.C 1.117:
                   16395:        * src/main/pa_charset_connection.C 1.6:
                   16396:                table:load & charset_connection
                   16397:                #comment now
                   16398: 
                   16399:        * src/classes/classes.dsp 1.5:
                   16400:        * src/types/types.dsp 1.5:
                   16401:                release projects options fixed to use release msvcrt lib
                   16402: 
                   16403:        * src/include/pa_pool.h 1.60:
                   16404:        * src/include/pa_stylesheet_connection.h 1.8:
                   16405:        * src/include/pa_stylesheet_connection.h 1.9:
                   16406:        * src/main/pa_charset_manager.C 1.2:
                   16407:        * src/main/pa_charset_manager.C 1.3:
                   16408:        * src/main/pa_pool.C 1.29:
                   16409:        * src/types/pa_vresponse.h 1.15:
                   16410:                forgot non-xml pool.*charset needed
                   16411: 
                   16412:        * src/classes/table.C 1.118:
                   16413:                # config comments fixed
                   16414: 
                   16415: 2001-10-01  parser
                   16416:        * src/include/pa_charset_connection.h 1.1:
                   16417:        * src/include/pa_charset_manager.h 1.1:
                   16418:        * src/include/pa_xslt_stylesheet_manager.h 1.4:
                   16419:        * src/main/main.dsp 1.128:
                   16420:        * src/main/pa_charset_connection.C 1.1:
                   16421:        * src/main/pa_charset_manager.C 1.1:
                   16422:        * src/main/pa_request.C 1.164:
                   16423:                charset loading & caching mech 0
                   16424: 
                   16425:        * src/include/pa_stylesheet_connection.h 1.7:
                   16426:        * src/include/pa_xslt_stylesheet_manager.h 1.3:
                   16427:        * src/main/main.dsp 1.127:
                   16428:        * src/main/pa_globals.C 1.80:
                   16429:        * src/main/pa_request.C 1.163:
                   16430:                would make charset loading & caching mech now
                   16431: 
                   16432:        * src/main/pa_charset_connection.C 1.2:
                   16433:                removed entitify external hack [internal installed]
                   16434: 
                   16435:        * src/main/Makefile.am 1.19:
                   16436:        * src/main/Makefile.in 1.16:
                   16437:                makes+removed dtd
                   16438: 
                   16439: 2001-09-30  parser
                   16440:        * src/classes/xdoc.C 1.7:
                   16441:        * src/include/pa_request.h 1.100:
                   16442:        * src/main/pa_request.C 1.159:
                   16443:                ctype with unicode 1. todo: no &#1055; entities on output somehow
                   16444: 
                   16445:        * src/include/pa_globals.h 1.66:
                   16446:        * src/main/pa_globals.C 1.79:
                   16447:        * src/main/pa_request.C 1.160:
                   16448:                now charsets table configuration variable is: CHARSETS
                   16449: 
                   16450:        * src/main/pa_request.C 1.162:
                   16451:                forgot to fill toTable
                   16452: 
                   16453:        * src/classes/file.C 1.56:
                   16454:        * src/classes/op.C 1.47:
                   16455:        * src/classes/string.C 1.76:
                   16456:        * src/include/pa_request.h 1.99:
                   16457:        * src/main/pa_request.C 1.158:
                   16458:                started ctype with unicode values
                   16459: 
                   16460:        * src/include/pa_config_fixed.h 1.16:
                   16461:        * src/main/pa_request.C 1.161:
                   16462:                started hack_s_maximumCharacterValues to
                   16463:                XALAN_HACK_DIGITAL_ENTITIES but failed on win32 for now..
                   16464: 
                   16465: 2001-09-28  parser
                   16466:        * src/classes/xdoc.C 1.5:
                   16467:        * src/classes/xnode.C 1.3:
                   16468:                xdoc addencoding works! invented a way of user-configuring... 
                   16469:                todo: implement
                   16470: 
                   16471:        * src/classes/mail.C 1.40:
                   16472:        * src/classes/op.C 1.46:
                   16473:        * src/classes/xdoc.C 1.6:
                   16474:        * src/include/pa_stylesheet_connection.h 1.6:
                   16475:        * src/main/pa_request.C 1.157:
                   16476:                letter body string passed AS-IS now
                   16477: 
                   16478: 2001-09-27  parser
                   16479:        * src/classes/classes.dsp 1.4:
                   16480:        * src/classes/xdoc.C 1.3:
                   16481:        * src/main/main.dsp 1.126:
                   16482:        * src/targets/cgi/parser3.dsp 1.30:
                   16483:        * src/targets/isapi/parser3isapi.dsp 1.23:
                   16484:        * src/types/types.dsp 1.4:
                   16485:                win32 ident make system so not to rebuild library [ident.C.new]
                   16486: 
                   16487:        * src/classes/table.C 1.116:
                   16488:                table.sort changed to sort table itself
                   16489: 
                   16490:        * src/classes/xdoc.C 1.4:
                   16491:        * src/targets/isapi/parser3isapi.dsp 1.24:
                   16492:                X^.getElementsByTagName[tagname] = array of xnode
                   16493:                X^.getElementsByTagNameNS[namespaceURI;localName] = array of nodes
                   16494:                removed - regretfully not supported @ xalan. maybe someday would reimplement, if needed.
                   16495:                
                   16496:                win32build system: solved long waiting anti-non-started-apache problem
                   16497: 
                   16498: 2001-09-26  parser
                   16499:        * src/Makefile.am 1.11:
                   16500:        * src/classes/Makefile.am 1.22:
                   16501:        * src/classes/Makefile.in 1.18:
                   16502:        * src/main/Makefile.am 1.18:
                   16503:        * src/main/Makefile.in 1.15:
                   16504:        * src/targets/Makefile.in 1.15:
                   16505:        * src/targets/apache13/Makefile.in 1.15:
                   16506:        * src/targets/cgi/Makefile.am 1.18:
                   16507:        * src/targets/cgi/Makefile.in 1.17:
                   16508:        * src/types/Makefile.am 1.9:
                   16509:        * src/types/Makefile.in 1.14:
                   16510:                makes with clases.awk
                   16511: 
                   16512:        * src/include/pa_config_fixed.h 1.14:
                   16513:        * src/targets/cgi/parser3.C 1.114:
                   16514:        * src/targets/isapi/parser3isapi.C 1.45:
                   16515:                #ifdef SMTP
                   16516: 
                   16517:        * src/classes/classes.C 1.9:
                   16518:        * src/classes/classes.awk 1.3:
                   16519:        * src/classes/classes.dsp 1.1:
                   16520:        * src/classes/classes.h 1.12:
                   16521:        * src/classes/date.C 1.8:
                   16522:        * src/classes/dnode.C 1.6:
                   16523:        * src/classes/dnode.h 1.2:
                   16524:        * src/classes/dom.C 1.35:
                   16525:        * src/classes/double.C 1.37:
                   16526:        * src/classes/file.C 1.55:
                   16527:        * src/classes/form.C 1.16:
                   16528:        * src/classes/hash.C 1.19:
                   16529:        * src/classes/image.C 1.46:
                   16530:        * src/classes/int.C 1.34:
                   16531:        * src/classes/mail.C 1.39:
                   16532:        * src/classes/math.C 1.6:
                   16533:        * src/classes/op.C 1.45:
                   16534:        * src/classes/response.C 1.14:
                   16535:        * src/classes/string.C 1.75:
                   16536:        * src/classes/table.C 1.115:
                   16537:        * src/classes/void.C 1.10:
                   16538:        * src/include/pa_array.h 1.44:
                   16539:        * src/include/pa_common.h 1.51:
                   16540:        * src/include/pa_config_fixed.h 1.13:
                   16541:        * src/include/pa_config_includes.h 1.11:
                   16542:        * src/include/pa_dictionary.h 1.5:
                   16543:        * src/include/pa_dir.h 1.5:
                   16544:        * src/include/pa_exception.h 1.13:
                   16545:        * src/include/pa_exec.h 1.3:
                   16546:        * src/include/pa_globals.h 1.65:
                   16547:        * src/include/pa_request.h 1.98:
                   16548:        * src/include/pa_sapi.h 1.13:
                   16549:        * src/include/pa_socks.h 1.4:
                   16550:        * src/include/pa_sql_connection.h 1.13:
                   16551:        * src/include/pa_sql_driver_manager.h 1.12:
                   16552:        * src/include/pa_stack.h 1.10:
                   16553:        * src/include/pa_string.h 1.105:
                   16554:        * src/include/pa_stylesheet_connection.h 1.5:
                   16555:        * src/include/pa_table.h 1.35:
                   16556:        * src/include/pa_threads.h 1.17:
                   16557:        * src/include/pa_types.h 1.26:
                   16558:        * src/include/pa_xslt_stylesheet_manager.h 1.2:
                   16559:        * src/main/compile.C 1.50:
                   16560:        * src/main/compile.y 1.168:
                   16561:        * src/main/compile_tools.C 1.38:
                   16562:        * src/main/compile_tools.h 1.50:
                   16563:        * src/main/execute.C 1.192:
                   16564:        * src/main/main.dsp 1.124:
                   16565:        * src/main/pa_array.C 1.39:
                   16566:        * src/main/pa_common.C 1.68:
                   16567:        * src/main/pa_dictionary.C 1.6:
                   16568:        * src/main/pa_dir.C 1.7:
                   16569:        * src/main/pa_exception.C 1.16:
                   16570:        * src/main/pa_exec.C 1.14:
                   16571:        * src/main/pa_globals.C 1.78:
                   16572:        * src/main/pa_hash.C 1.40:
                   16573:        * src/main/pa_pool.C 1.28:
                   16574:        * src/main/pa_request.C 1.156:
                   16575:        * src/main/pa_socks.C 1.6:
                   16576:        * src/main/pa_sql_driver_manager.C 1.38:
                   16577:        * src/main/pa_string.C 1.104:
                   16578:        * src/main/pa_table.C 1.38:
                   16579:        * src/main/pa_xslt_stylesheet_manager.C 1.4:
                   16580:        * src/main/untaint.C 1.63:
                   16581:        * src/sql/pa_sql_driver.h 1.17:
                   16582:        * src/targets/cgi/pa_pool.C 1.23:
                   16583:        * src/targets/cgi/pa_threads.C 1.3:
                   16584:        * src/targets/cgi/parser3.C 1.113:
                   16585:        * src/targets/cgi/parser3.dsp 1.29:
                   16586:        * src/targets/isapi/pa_pool.C 1.7:
                   16587:        * src/targets/isapi/pa_threads.C 1.3:
                   16588:        * src/targets/isapi/parser3isapi.C 1.44:
                   16589:        * src/targets/isapi/parser3isapi.dsp 1.22:
                   16590:        * src/targets/isapi/pool_storage.h 1.9:
                   16591:        * src/types/pa_valiased.C 1.10:
                   16592:        * src/types/pa_valiased.h 1.14:
                   16593:        * src/types/pa_value.h 1.74:
                   16594:        * src/types/pa_vbool.h 1.13:
                   16595:        * src/types/pa_vclass.h 1.19:
                   16596:        * src/types/pa_vcode_frame.h 1.8:
                   16597:        * src/types/pa_vcookie.C 1.24:
                   16598:        * src/types/pa_vcookie.h 1.12:
                   16599:        * src/types/pa_vdate.h 1.5:
                   16600:        * src/types/pa_vdnode.C 1.8:
                   16601:        * src/types/pa_vdnode.h 1.3:
                   16602:        * src/types/pa_vdom.C 1.3:
                   16603:        * src/types/pa_vdom.h 1.14:
                   16604:        * src/types/pa_vdouble.h 1.26:
                   16605:        * src/types/pa_venv.h 1.17:
                   16606:        * src/types/pa_vfile.C 1.22:
                   16607:        * src/types/pa_vfile.h 1.34:
                   16608:        * src/types/pa_vform.C 1.39:
                   16609:        * src/types/pa_vform.h 1.25:
                   16610:        * src/types/pa_vimage.C 1.10:
                   16611:        * src/types/pa_vimage.h 1.18:
                   16612:        * src/types/pa_vint.h 1.27:
                   16613:        * src/types/pa_vjunction.h 1.7:
                   16614:        * src/types/pa_vmath.h 1.3:
                   16615:        * src/types/pa_vmethod_frame.h 1.16:
                   16616:        * src/types/pa_vobject.h 1.11:
                   16617:        * src/types/pa_vrequest.C 1.10:
                   16618:        * src/types/pa_vrequest.h 1.11:
                   16619:        * src/types/pa_vresponse.h 1.14:
                   16620:        * src/types/pa_vstateless_class.C 1.10:
                   16621:        * src/types/pa_vstateless_class.h 1.17:
                   16622:        * src/types/pa_vstateless_object.h 1.11:
                   16623:        * src/types/pa_vstring.C 1.11:
                   16624:        * src/types/pa_vstring.h 1.35:
                   16625:        * src/types/pa_vtable.C 1.6:
                   16626:        * src/types/pa_vtable.h 1.33:
                   16627:        * src/types/pa_vvoid.h 1.4:
                   16628:        * src/types/pa_wcontext.C 1.9:
                   16629:        * src/types/pa_wcontext.h 1.17:
                   16630:        * src/types/pa_wwrapper.h 1.11:
                   16631:        * src/types/types.dsp 1.1:
                   16632:                added ident.awk and main.dsp splitted to main+classes+types
                   16633:                along to .am
                   16634: 
                   16635:        * src/classes/classes.dsp 1.2:
                   16636:        * src/classes/dnode.C 1.7:
                   16637:        * src/classes/dnode.h 1.3:
                   16638:        * src/classes/dom.C 1.36:
                   16639:        * src/classes/xdoc.C 1.1:
                   16640:        * src/classes/xnode.C 1.1:
                   16641:        * src/classes/xnode.h 1.1:
                   16642:        * src/main/compile.tab.C 1.14:
                   16643:        * src/types/pa_vdnode.C 1.9:
                   16644:        * src/types/pa_vdnode.h 1.4:
                   16645:        * src/types/pa_vdom.C 1.4:
                   16646:        * src/types/pa_vdom.h 1.15:
                   16647:        * src/types/pa_vxdoc.C 1.1:
                   16648:        * src/types/pa_vxdoc.h 1.1:
                   16649:        * src/types/pa_vxnode.C 1.1:
                   16650:        * src/types/pa_vxnode.h 1.1:
                   16651:        * src/types/types.dsp 1.2:
                   16652:                xdoc&xnode now
                   16653: 
                   16654:        * src/classes/classes.dsp 1.3:
                   16655:        * src/classes/xdoc.C 1.2:
                   16656:        * src/classes/xnode.C 1.2:
                   16657:        * src/classes/xnode.h 1.2:
                   16658:        * src/include/pa_config_fixed.h 1.15:
                   16659:        * src/main/main.dsp 1.125:
                   16660:        * src/targets/cgi/parser3.C 1.115:
                   16661:        * src/targets/cgi/parser3.C 1.116:
                   16662:        * src/targets/isapi/parser3isapi.C 1.46:
                   16663:        * src/types/pa_vxnode.C 1.2:
                   16664:        * src/types/types.dsp 1.3:
                   16665:                z
                   16666: 
                   16667:        * src/classes/classes.cmd 1.4:
                   16668:        * src/main/main.dsp 1.123:
                   16669:        * src/targets/cgi/parser3.dsp 1.28:
                   16670:                moved classes.inc generation on win32 to main.dsp
                   16671: 
                   16672:        * src/classes/classes.C 1.10:
                   16673:                forgot one non-xml check
                   16674: 
                   16675:        * src/classes/Makefile.am 1.21:
                   16676:                removed useless var
                   16677: 
                   16678: 2001-09-25  parser
                   16679:        * src/Makefile.am 1.10:
                   16680:        * src/Makefile.in 1.20:
                   16681:        * src/classes/Makefile.am 1.20:
                   16682:        * src/classes/Makefile.in 1.17:
                   16683:        * src/classes/dom.C 1.34:
                   16684:        * src/include/pa_stylesheet_connection.h 1.4:
                   16685:        * src/main/Makefile.am 1.17:
                   16686:        * src/main/Makefile.in 1.14:
                   16687:        * src/main/pa_pool.C 1.27:
                   16688:        * src/targets/Makefile.in 1.14:
                   16689:        * src/targets/apache13/Makefile.in 1.14:
                   16690:        * src/targets/cgi/Makefile.am 1.17:
                   16691:        * src/targets/cgi/Makefile.in 1.16:
                   16692:        * src/types/Makefile.am 1.8:
                   16693:        * src/types/Makefile.in 1.13:
                   16694:        * src/types/pa_vdom.h 1.13:
                   16695:                xml configure makes
                   16696: 
                   16697:        * src/include/pa_config_auto.h.in 1.7:
                   16698:                xml on linux[elik] works! no 1251 though, todo ICU
                   16699: 
                   16700: 2001-09-24  parser
                   16701:        * src/types/pa_vfile.h 1.33:
                   16702:        * src/types/pa_vimage.h 1.17:
                   16703:        * src/types/pa_vstring.h 1.34:
                   16704:                fiew wrong resolved conflicts fixed [const]
                   16705: 
                   16706:        * src/Makefile.in 1.19:
                   16707:        * src/classes/Makefile.am 1.19:
                   16708:        * src/classes/Makefile.in 1.16:
                   16709:        * src/include/pa_config_auto.h.in 1.6:
                   16710:        * src/main/Makefile.in 1.13:
                   16711:        * src/targets/Makefile.in 1.13:
                   16712:        * src/targets/apache13/Makefile.in 1.13:
                   16713:        * src/types/Makefile.am 1.7:
                   16714:        * src/types/Makefile.in 1.12:
                   16715:                makes
                   16716: 
                   16717:        * src/targets/cgi/Makefile.am 1.16:
                   16718:        * src/targets/cgi/Makefile.in 1.15:
                   16719:                makefiles
                   16720: 
                   16721:        * src/types/pa_value.h 1.73:
                   16722:        * src/types/pa_vdnode.C 1.7:
                   16723:        * src/types/pa_vtable.C 1.5:
                   16724:        * src/types/pa_vvoid.h 1.3:
                   16725:                z
                   16726: 
                   16727:        * src/types/pa_vclass.h 1.18:
                   16728:        * src/types/pa_vhash.h 1.20:
                   16729:        * src/types/pa_vhash.h 1.21:
                   16730:        * src/types/pa_vtable.h 1.32:
                   16731:                fixed small bugs with usinge hash/table in expressions
                   16732: 
                   16733:        * src/classes/classes.cmd 1.3:
                   16734:        * src/classes/image.C 1.45:
                   16735:        * src/classes/op.C 1.44:
                   16736:        * src/classes/table.C 1.114:
                   16737:        * src/include/pa_request.h 1.97:
                   16738:        * src/include/pa_sapi.h 1.12:
                   16739:        * src/main/compile.C 1.49:
                   16740:        * src/main/compile.tab.C 1.13:
                   16741:        * src/main/compile.y 1.167:
                   16742:        * src/main/compile_tools.h 1.49:
                   16743:        * src/main/main.dsp 1.122:
                   16744:        * src/main/pa_common.C 1.67:
                   16745:        * src/main/pa_sql_driver_manager.C 1.37:
                   16746:        * src/targets/cgi/parser3.C 1.112:
                   16747:        * src/targets/cgi/parser3.dsp 1.27:
                   16748:        * src/types/pa_value.h 1.72:
                   16749:        * src/types/pa_vbool.h 1.12:
                   16750:        * src/types/pa_vdate.h 1.4:
                   16751:        * src/types/pa_vdouble.h 1.25:
                   16752:        * src/types/pa_vform.C 1.38:
                   16753:        * src/types/pa_vhash.h 1.19:
                   16754:        * src/types/pa_vimage.h 1.16:
                   16755:        * src/types/pa_vint.h 1.26:
                   16756:        * src/types/pa_vstring.h 1.33:
                   16757:        * src/types/pa_vtable.h 1.31:
                   16758:        * src/types/pa_vvoid.h 1.2:
                   16759:                merged3 with before_xml
                   16760:                [merge2 actually didn't happen - i've created tags on wrong branch. so this merge is in fact re-merge]
                   16761: 
                   16762:        * src/Makefile.am 1.7:
                   16763:        * src/Makefile.am 1.8:
                   16764:        * src/Makefile.am 1.9:
                   16765:        * src/main/Makefile.am 1.16:
                   16766:        * src/targets/Makefile.am 1.7:
                   16767:        * src/targets/apache13/Makefile.am 1.5:
                   16768:        * src/targets/cgi/Makefile.am 1.15:
                   16769:        * src/targets/cgi/pa_pool.C 1.22:
                   16770:                started unix makes update
                   16771: 
                   16772: 2001-09-21  parser
                   16773:        * src/main/main.dsp 1.121:
                   16774:        * src/targets/cgi/parser3.dsp 1.26:
                   16775:        * src/targets/isapi/parser3isapi.dsp 1.21:
                   16776:                updated project files [/ sadly produced "" in make file and
                   16777:                sadly wrong interpreted on load]
                   16778: 
                   16779:        * src/include/pa_pool.h 1.56:
                   16780:        * src/main/pa_pool.C 1.24:
                   16781:                checked whether transcoder were created right
                   16782:                "unsupported encoding" message.
                   16783:                not @ set time, but @ use time, so until xml output functions .string, .file, .save used - no encoding name check occur
                   16784:                
                   16785:                reduced transcode buffer size to 60
                   16786:                fixed pool cleanup - no registration needed, pools are officially destructured
                   16787: 
                   16788:        * src/classes/dom.C 1.29:
                   16789:        * src/classes/dom.C 1.30:
                   16790:        * src/classes/dom.C 1.31:
                   16791:        * src/classes/dom.C 1.32:
                   16792:        * src/include/pa_pool.h 1.57:
                   16793:        * src/include/pa_pool.h 1.58:
                   16794:        * src/main/pa_pool.C 1.25:
                   16795:        * src/types/pa_vdnode.C 1.5:
                   16796:        * src/types/pa_vresponse.h 1.12:
                   16797:                defaulted dom writing methods encoding to pool.get_charset
                   16798: 
                   16799:        * src/classes/classes.C 1.8:
                   16800:        * src/classes/date.C 1.7:
                   16801:        * src/classes/dnode.C 1.5:
                   16802:        * src/classes/dom.C 1.33:
                   16803:        * src/classes/file.C 1.54:
                   16804:        * src/classes/form.C 1.15:
                   16805:        * src/classes/int.C 1.33:
                   16806:        * src/classes/mail.C 1.38:
                   16807:        * src/doc/doxygen.cfg 1.16:
                   16808:        * src/include/pa_config_fixed.h 1.12:
                   16809:        * src/include/pa_pool.h 1.59:
                   16810:        * src/main/main.dsp 1.119:
                   16811:        * src/main/pa_globals.C 1.76:
                   16812:        * src/main/pa_pool.C 1.26:
                   16813:        * src/main/pa_request.C 1.155:
                   16814:        * src/main/pa_xslt_stylesheet_manager.C 1.3:
                   16815:        * src/targets/cgi/pa_pool.C 1.21:
                   16816:        * src/targets/cgi/pa_threads.C 1.2:
                   16817:        * src/targets/cgi/parser3.dsp 1.24:
                   16818:        * src/targets/isapi/pa_pool.C 1.6:
                   16819:        * src/targets/isapi/pa_threads.C 1.2:
                   16820:        * src/targets/isapi/parser3isapi.dsp 1.19:
                   16821:        * src/types/pa_valiased.C 1.9:
                   16822:        * src/types/pa_vcookie.C 1.23:
                   16823:        * src/types/pa_vdnode.C 1.6:
                   16824:        * src/types/pa_vdom.C 1.2:
                   16825:        * src/types/pa_vfile.C 1.21:
                   16826:        * src/types/pa_vform.C 1.37:
                   16827:        * src/types/pa_vimage.C 1.9:
                   16828:        * src/types/pa_vrequest.C 1.9:
                   16829:        * src/types/pa_vresponse.h 1.13:
                   16830:        * src/types/pa_vstateless_class.C 1.9:
                   16831:        * src/types/pa_vstring.C 1.10:
                   16832:        * src/types/pa_vtable.C 1.4:
                   16833:        * src/types/pa_wcontext.C 1.8:
                   16834:                zillions of #ifdef XML
                   16835:                created new projects for sql drivers [planning to remove sql drivers from main cvs project]
                   16836:                first, will join latest changes
                   16837: 
                   16838:        * src/Makefile.in 1.18:
                   16839:        * src/classes/classes.h 1.11:
                   16840:        * src/classes/hash.C 1.18:
                   16841:        * src/classes/op.C 1.43:
                   16842:        * src/classes/table.C 1.113:
                   16843:        * src/doc/doxygen.cfg 1.17:
                   16844:        * src/include/pa_common.h 1.50:
                   16845:        * src/include/pa_globals.h 1.64:
                   16846:        * src/include/pa_request.h 1.96:
                   16847:        * src/include/pa_sapi.h 1.11:
                   16848:        * src/include/pa_sql_driver_manager.h 1.11:
                   16849:        * src/include/pa_string.h 1.104:
                   16850:        * src/main/compile.tab.C 1.12:
                   16851:        * src/main/main.dsp 1.120:
                   16852:        * src/main/pa_common.C 1.66:
                   16853:        * src/main/pa_exec.C 1.13:
                   16854:        * src/main/pa_globals.C 1.77:
                   16855:        * src/targets/cgi/parser3.dsp 1.25:
                   16856:        * src/targets/isapi/parser3isapi.dsp 1.20:
                   16857:                merged with before_xml
                   16858: 
                   16859: 2001-09-20  parser
                   16860:        * src/classes/dnode.C 1.3:
                   16861:        * src/classes/dom.C 1.26:
                   16862:        * src/targets/cgi/parser3.dsp 1.22:
                   16863:        * src/types/pa_vstring.h 1.32:
                   16864:                dnode .file .string .save moved back to dom due to strange
                   16865:                xalan bug
                   16866: 
                   16867:        * src/main/pa_pool.C 1.23:
                   16868:        * src/main/pa_request.C 1.154:
                   16869:                Pool::transcode defaults from $MAIN:DEFAULTS.content-type[$
                   16870:                charset[here]]
                   16871: 
                   16872:        * src/classes/dom.C 1.27:
                   16873:                dom. string save file
                   16874:                moved output xml options to last param and made it optional
                   16875: 
                   16876:        * src/types/pa_vhash.h [before_xml] 1.16.4.2:
                   16877:        * src/types/pa_vhash.h [before_xml] 1.16.4.3:
                   16878:        * src/types/pa_vstring.h [before_xml] 1.31.4.1:
                   16879:        * src/types/pa_vtable.h [before_xml] 1.28.4.2:
                   16880:        * src/types/pa_vtable.h [before_xml] 1.28.4.3:
                   16881:                table/hash  can be used in expression context now, there value = size
                   16882:                and boolean value size!=0
                   16883: 
                   16884:        * src/classes/dnode.C 1.4:
                   16885:        * src/classes/dom.C 1.28:
                   16886:        * src/include/pa_config_includes.h 1.10:
                   16887:        * src/include/pa_globals.h 1.63:
                   16888:        * src/include/pa_pool.h 1.55:
                   16889:        * src/main/main.dsp 1.118:
                   16890:        * src/main/pa_globals.C 1.75:
                   16891:        * src/main/pa_pool.C 1.22:
                   16892:        * src/targets/cgi/parser3.dsp 1.23:
                   16893:        * src/targets/isapi/parser3isapi.C 1.43:
                   16894:        * src/targets/isapi/parser3isapi.dsp 1.18:
                   16895:        * src/types/pa_vdnode.C 1.4:
                   16896:        * src/types/pa_vdnode.h 1.2:
                   16897:        * src/types/pa_vresponse.h 1.11:
                   16898:                Pool::transcode 0
                   16899: 
                   16900:        * src/types/pa_vdnode.C 1.3:
                   16901:                    !$elementnode.attributes = hash of dnodes
                   16902:                    !$attributenode.specified = boolean
                   16903:                            true if the attribute received its value explicitly in the XML document,
                   16904:                            or if a value was assigned programatically with the setValue function.
                   16905:                        false if the attribute value came from the default value declared in the document's DTD.
                   16906:                    !$pinode.target = target of this processing instruction
                   16907:                        XML defines this as being the first token following the markup
                   16908:                        that begins the processing instruction.
                   16909:                        XPath:
                   16910:                    !^node.select[xpath/query/expression] = hash of 0->node0 1->node1
                   16911:                    !^node.select-single[xpath/query/expression] = first node if any
                   16912: 
                   16913:        * src/classes/image.C [before_xml] 1.40.4.4:
                   16914:                20K preload on jpg measure [image::measure]
                   16915: 
                   16916:        * src/types/pa_value.h [before_xml] 1.70.4.2:
                   16917:        * src/types/pa_vbool.h [before_xml] 1.11.4.1:
                   16918:        * src/types/pa_vdate.h [before_xml] 1.3.4.1:
                   16919:        * src/types/pa_vdouble.h [before_xml] 1.24.4.1:
                   16920:        * src/types/pa_vhash.h [before_xml] 1.16.4.4:
                   16921:        * src/types/pa_vint.h [before_xml] 1.25.4.1:
                   16922:        * src/types/pa_vstring.h [before_xml] 1.31.4.2:
                   16923:        * src/types/pa_vtable.h [before_xml] 1.28.4.4:
                   16924:        * src/types/pa_vvoid.h [before_xml] 1.1.4.1:
                   16925:                some 'const's added
                   16926: 
                   16927: 2001-09-18  parser
                   16928:        * src/classes/dnode.C 1.2:
                   16929:        * src/classes/dom.C 1.25:
                   16930:        * src/classes/hash.C 1.17:
                   16931:        * src/classes/image.C 1.44:
                   16932:        * src/classes/op.C 1.42:
                   16933:        * src/classes/table.C 1.112:
                   16934:        * src/include/pa_common.h 1.49:
                   16935:        * src/include/pa_globals.h 1.62:
                   16936:        * src/include/pa_request.h 1.95:
                   16937:        * src/include/pa_sql_driver_manager.h 1.10:
                   16938:        * src/main/compile.C 1.48:
                   16939:        * src/main/compile.tab.C 1.11:
                   16940:        * src/main/compile.y 1.166:
                   16941:        * src/main/compile_tools.h 1.48:
                   16942:        * src/main/execute.C 1.191:
                   16943:        * src/main/pa_common.C 1.65:
                   16944:        * src/main/pa_request.C 1.153:
                   16945:        * src/main/pa_sql_driver_manager.C 1.36:
                   16946:        * src/main/pa_string.C 1.103:
                   16947:        * src/main/pa_table.C 1.37:
                   16948:        * src/targets/cgi/parser3.C 1.111:
                   16949:        * src/targets/cgi/parser3.dsp 1.21:
                   16950:        * src/targets/isapi/parser3isapi.C 1.42:
                   16951:        * src/types/pa_value.h 1.71:
                   16952:        * src/types/pa_vform.C 1.36:
                   16953:        * src/types/pa_vform.h 1.24:
                   16954:        * src/types/pa_vhash.h 1.18:
                   16955:        * src/types/pa_vimage.C 1.8:
                   16956:        * src/types/pa_vimage.h 1.15:
                   16957:        * src/types/pa_vtable.h 1.30:
                   16958:                merged latest bugfixes from before_xml branch
                   16959:                ^if(def $hash) now true only when ^hash:_count[]!=0
                   16960:                moved
                   16961:                .string .save .file from dom to dnode
                   16962: 
                   16963:        * src/classes/dnode.C 1.1:
                   16964:        * src/classes/dnode.h 1.1:
                   16965:        * src/main/main.dsp 1.117:
                   16966:        * src/types/pa_vdnode.C 1.1:
                   16967:        * src/types/pa_vdnode.h 1.1:
                   16968:                dom, dnode 0
                   16969: 
                   16970:        * src/types/pa_vdnode.C 1.2:
                   16971:        * src/types/pa_vdom.h 1.12:
                   16972:        * src/types/pa_vhash.h 1.17:
                   16973:        * src/types/pa_vtable.h 1.29:
                   16974:                dom, dnode 1
                   16975: 
                   16976:        * src/classes/image.C [before_xml] 1.40.4.3:
                   16977:        * src/main/pa_string.C [before_xml] 1.102.2.2:
                   16978:        * src/main/pa_table.C [before_xml] 1.36.2.1:
                   16979:                image: poly* fixed
                   16980: 
                   16981:        * src/classes/op.C [before_xml] 1.41.4.2:
                   16982:        * src/main/execute.C [before_xml] 1.190.4.2:
                   16983:                operators self changed to root
                   16984:                ^for variable context changed to self
                   16985: 
                   16986: 2001-09-17  parser
                   16987:        * src/classes/classes.h 1.10:
                   16988:        * src/classes/dom.C 1.23:
                   16989:        * src/classes/hash.C 1.16:
                   16990:        * src/include/pa_stylesheet_connection.h 1.3:
                   16991:        * src/main/main.dsp 1.115:
                   16992:        * src/targets/cgi/pa_pool.C 1.20:
                   16993:        * src/types/pa_vdom.h 1.10:
                   16994:        * src/types/pa_vfile.h 1.32:
                   16995:        * src/types/pa_vimage.h 1.14:
                   16996:                started
                   16997:                dnode
                   16998:                    DOM:
                   16999:                    $node.name
                   17000:                    $node.value
                   17001:                    ...others...
                   17002:                    ^node.xpath[/rates/USD] = hash
                   17003:                dom(dnode)
                   17004: 
                   17005:        * src/classes/dom.C 1.24:
                   17006:        * src/main/main.dsp 1.116:
                   17007:        * src/main/pa_globals.C 1.74:
                   17008:        * src/types/pa_vdom.h 1.11:
                   17009:                started dnode+dom
                   17010:                
                   17011:                dnode
                   17012:                    DOM methods:
                   17013:                    $node.name
                   17014:                    $node.value
                   17015:                    ...others...
                   17016:                
                   17017:                    ^node.xpath[/rates/USD] = hash
                   17018:                        $hash[
                   17019:                                $.0[node0]
                   17020:                                $.1[node1]
                   17021:                        ]
                   17022: 
                   17023:        * src/classes/image.C [before_xml] 1.40.4.2:
                   17024:        * src/types/pa_vimage.C [before_xml] 1.7.8.2:
                   17025:                $image.line-style
                   17026:                now applies to all linear primitives
                   17027: 
                   17028:        * src/classes/hash.C [before_xml] 1.15.4.1:
                   17029:        * src/main/compile.C [before_xml] 1.47.4.1:
                   17030:        * src/main/compile.tab.C [before_xml] 1.10.4.2:
                   17031:        * src/main/compile.y [before_xml] 1.165.4.2:
                   17032:        * src/main/compile_tools.h [before_xml] 1.47.4.2:
                   17033:        * src/main/execute.C [before_xml] 1.190.4.1:
                   17034:        * src/targets/cgi/parser3.C [before_xml] 1.110.4.3:
                   17035:                expressions unary+
                   17036:                ^hash.count[]
                   17037:                bugfix: in expression compound($aa.zz.xx) names now can have minus '-' in name after '.'
                   17038: 
                   17039: 2001-09-15  parser
                   17040:        * src/classes/image.C [before_xml] 1.40.4.1:
                   17041:        * src/types/pa_vimage.C [before_xml] 1.7.8.1:
                   17042:        * src/types/pa_vimage.h [before_xml] 1.13.6.1:
                   17043:                image: $line-width ^line(...)[****   style]
                   17044: 
                   17045:        * src/classes/dom.C 1.21:
                   17046:        * src/classes/image.C 1.43:
                   17047:        * src/include/pa_pool.h 1.53:
                   17048:        * src/include/pa_stylesheet_connection.h 1.2:
                   17049:        * src/main/main.dsp 1.114:
                   17050:        * src/targets/cgi/pa_pool.C 1.18:
                   17051:        * src/targets/isapi/pa_pool.C 1.4:
                   17052:        * src/targets/isapi/pool_storage.h 1.5:
                   17053:        * src/types/pa_vdom.C 1.1:
                   17054:        * src/types/pa_vdom.h 1.8:
                   17055:                xalan objects freed up [introducing Pool::register_cleanup]
                   17056: 
                   17057:        * src/doc/doxygen.cfg 1.15:
                   17058:        * src/include/pa_sapi.h 1.10:
                   17059:        * src/types/pa_vdom.h 1.7:
                   17060:                comments
                   17061: 
                   17062:        * src/classes/dom.C 1.22:
                   17063:        * src/targets/isapi/parser3isapi.C 1.41:
                   17064:        * src/targets/isapi/pool_storage.h 1.8:
                   17065:        * src/types/pa_vdom.h 1.9:
                   17066:                fixed bug in isapi pool_storage -
                   17067:                cleanups first, allocations second.
                   17068:                apache wisely does just like that
                   17069: 
                   17070:        * src/targets/isapi/parser3isapi.C 1.40:
                   17071:        * src/targets/isapi/pool_storage.h 1.7:
                   17072:                pool_storage rewritten using template, no bugs now
                   17073: 
                   17074:        * src/include/pa_pool.h 1.54:
                   17075:        * src/main/pa_pool.C 1.21:
                   17076:        * src/targets/cgi/pa_pool.C 1.19:
                   17077:        * src/targets/isapi/pa_pool.C 1.5:
                   17078:        * src/targets/isapi/parser3isapi.C 1.39:
                   17079:        * src/targets/isapi/parser3isapi.dsp 1.17:
                   17080:        * src/targets/isapi/pool_storage.h 1.6:
                   17081:                poorly started isapi pool_storage, would rewrite using template now
                   17082: 
                   17083: 2001-09-14  parser
                   17084:        * src/classes/dom.C 1.20:
                   17085:        * src/classes/file.C 1.53:
                   17086:        * src/classes/image.C 1.42:
                   17087:        * src/classes/mail.C 1.37:
                   17088:        * src/include/pa_common.h 1.48:
                   17089:        * src/include/pa_sql_driver_manager.h 1.9:
                   17090:        * src/include/pa_string.h 1.103:
                   17091:        * src/include/pa_stylesheet_connection.h 1.1:
                   17092:        * src/include/pa_xslt_stylesheet_manager.h 1.1:
                   17093:        * src/main/main.dsp 1.113:
                   17094:        * src/main/pa_common.C 1.64:
                   17095:        * src/main/pa_exec.C 1.12:
                   17096:        * src/main/pa_globals.C 1.73:
                   17097:        * src/main/pa_sql_driver_manager.C 1.34:
                   17098:        * src/main/pa_xslt_stylesheet_manager.C 1.1:
                   17099:        * src/main/untaint.C 1.62:
                   17100:        * src/types/pa_vfile.C 1.20:
                   17101:                dom.xslt  stylesheet compiled&cached
                   17102: 
                   17103:        * src/main/pa_sql_driver_manager.C 1.35:
                   17104:        * src/main/pa_xslt_stylesheet_manager.C 1.2:
                   17105:                z
                   17106: 
                   17107: 2001-09-13  parser
                   17108:        * src/classes/dom.C 1.18:
                   17109:                dom:file content-type(.method)
                   17110: 
                   17111:        * src/classes/dom.C 1.19:
                   17112:        * src/classes/file.C 1.52:
                   17113:        * src/classes/image.C 1.41:
                   17114:        * src/types/pa_vfile.C 1.19:
                   17115:        * src/types/pa_vfile.h 1.31:
                   17116:                ^dom.file[] charset
                   17117: 
                   17118:        * src/include/pa_globals.h [before_xml] 1.61.4.1:
                   17119:        * src/include/pa_request.h [before_xml] 1.94.4.1:
                   17120:        * src/main/pa_request.C [before_xml] 1.152.4.2:
                   17121:        * src/targets/cgi/parser3.C [before_xml] 1.110.4.2:
                   17122:        * src/targets/isapi/parser3isapi.C [before_xml] 1.38.4.1:
                   17123:                ParserRootConfig .../parser3.conf
                   17124:                ParserSiteConfig .../parser3.conf
                   17125:                
                   17126:                cgi&isapi looks for {configure|c:\windows}/parser3.conf
                   17127: 
                   17128:        * src/include/pa_common.h [before_xml] 1.47.4.1:
                   17129:        * src/include/pa_globals.h [before_xml] 1.61.4.2:
                   17130:        * src/main/pa_common.C [before_xml] 1.63.4.1:
                   17131:        * src/main/pa_request.C [before_xml] 1.152.4.3:
                   17132:                $MAIN:CLASS_PATH now
                   17133:                can be string now
                   17134:                more informative error messages
                   17135: 
                   17136: 2001-09-12  parser
                   17137:        * src/main/compile.y [before_xml] 1.165.4.1:
                   17138:        * src/main/compile_tools.h [before_xml] 1.47.4.1:
                   17139:                name.[part].xxx syntax lexer on LS_USER level did [] matching without setting nestage,
                   17140:                introduced special LS_NAME_SQUARE_PART state
                   17141: 
                   17142:        * src/main/compile.tab.C [before_xml] 1.10.4.1:
                   17143:                fixed - subname code parts actually [] braced
                   17144: 
                   17145:        * src/classes/op.C [before_xml] 1.41.4.1:
                   17146:        * src/include/pa_sql_driver_manager.h [before_xml] 1.8.4.1:
                   17147:        * src/main/pa_sql_driver_manager.C [before_xml] 1.33.4.1:
                   17148:                ^connect[]
                   17149:                ^connect[aaa]
                   17150:                more precise error reporting:
                   17151:                "connection string must start with protocol://"
                   17152:                now
                   17153: 
                   17154: 2001-09-11  parser
                   17155:        * src/types/pa_vdom.h 1.5:
                   17156:                messages
                   17157: 
                   17158:        * src/classes/dom.C 1.16:
                   17159:        * src/types/pa_vdom.h 1.6:
                   17160:                ^dom:set[<some>xml</some>]
                   17161: 
                   17162:        * src/classes/dom.C 1.17:
                   17163:        * src/include/pa_string.h 1.102:
                   17164:        * src/main/pa_globals.C 1.72:
                   17165:        * src/main/untaint.C 1.61:
                   17166:                ^dom:set{<some>xml</some>} default language XML
                   17167:                languages+=xml
                   17168: 
                   17169:        * src/classes/dom.C 1.14:
                   17170:        * src/classes/dom.C 1.15:
                   17171:                ^dom:save/string/file[output options]
                   17172:                output options:
                   17173:                    $.method[xml|html|text] detection fixed
                   17174: 
                   17175: 2001-09-10  parser
                   17176:        * src/classes/dom.C 1.4:
                   17177:        * src/main/main.dsp 1.110:
                   17178:        * src/types/pa_vform.C 1.35:
                   17179:        * src/types/pa_vform.h 1.23:
                   17180:                ^dom.save[b.xml] 0
                   17181: 
                   17182:        * src/classes/dom.C 1.9:
                   17183:                ^dom.file[encoding] = file
                   17184: 
                   17185:        * src/classes/dom.C 1.12:
                   17186:                ^dom.xslt[stylesheet filename][params hash added]
                   17187: 
                   17188:        * src/classes/dom.C 1.10:
                   17189:        * src/main/main.dsp 1.111:
                   17190:        * src/types/pa_vdom.h 1.3:
                   17191:                ^dom.xslt[stylesheet filename] -1 doc is lying
                   17192: 
                   17193:        * src/classes/dom.C 1.11:
                   17194:        * src/main/main.dsp 1.112:
                   17195:        * src/types/pa_vdom.h 1.4:
                   17196:                ^dom.xslt[stylesheet filename] 0
                   17197: 
                   17198:        * src/classes/dom.C 1.5:
                   17199:                ^dom.save[b.xml] 1:error handling
                   17200: 
                   17201:        * src/classes/dom.C 1.13:
                   17202:                ^dom:save/string/file[output options]
                   17203:                output options:
                   17204:                    $.method[xml|html|text] $.encoding[windows-1251|...]
                   17205: 
                   17206:        * src/classes/dom.C 1.6:
                   17207:                ^dom.string[] 0
                   17208: 
                   17209:        * src/classes/dom.C 1.7:
                   17210:        * src/classes/dom.C 1.8:
                   17211:                ^dom.string[encoding] 1
                   17212:                ^dom.save[encoding;filename]
                   17213: 
                   17214: 2001-09-08  parser
                   17215:        * src/types/pa_vform.C [before_xml] 1.33.2.3:
                   17216:                $form:tables.name.field
                   17217: 
                   17218: 2001-09-07  parser
                   17219:        * src/classes/dom.C 1.3:
                   17220:        * src/types/pa_value.h [before_xml] 1.70.4.1:
                   17221:        * src/types/pa_vtable.h [before_xml] 1.28.4.1:
                   17222:                (def $table) is false when table is empty
                   17223: 
                   17224:        * src/main/pa_request.C [before_xml] 1.152.4.1:
                   17225:        * src/types/pa_vform.C [before_xml] 1.33.2.2:
                   17226:        * src/types/pa_vform.h [before_xml] 1.22.2.2:
                   17227:                !$form:tables
                   17228:                $atable[$form:tables.a]
                   17229:                ^atable.menu{a=$atable.element}[,]
                   17230: 
                   17231:        * src/classes/dom.C 1.1:
                   17232:                file dom.C was initially added on branch xalan1_2.
                   17233: 
                   17234:        * src/main/pa_exception.C 1.15:
                   17235:        * src/types/pa_vform.C 1.32:
                   17236:                getting FIRST form element [not last]
                   17237: 
                   17238:        * src/classes/table.C [before_xml] 1.110.4.1:
                   17239:                table:empty removed, superceded by ^if(def $table)...
                   17240: 
                   17241:        * src/targets/cgi/parser3.dsp [before_xml] 1.20.4.1:
                   17242:        * src/types/pa_vform.C [before_xml] 1.33.2.1:
                   17243:        * src/types/pa_vform.h [before_xml] 1.22.2.1:
                   17244:        * src/types/pa_vhash.h [before_xml] 1.16.4.1:
                   17245:                !$form:fields
                   17246: 
                   17247:        * src/include/pa_hash.h 1.43:
                   17248:        * src/main/pa_hash.C 1.39:
                   17249:        * src/targets/cgi/parser3.C [before_xml] 1.110.4.1:
                   17250:        * src/types/pa_vfile.h 1.30:
                   17251:        * src/types/pa_vform.C 1.33:
                   17252:        * src/types/pa_vform.C [xalan1_2] 1.29.4.1:
                   17253:        * src/types/pa_vform.h 1.22:
                   17254:                z
                   17255: 
                   17256:        * src/Makefile.in [xalan1_2] 1.16.2.1:
                   17257:        * src/classes/dom.C [xalan1_2] 1.1.2.1:
                   17258:        * src/classes/table.C [xalan1_2] 1.110.2.1:
                   17259:        * src/main/main.dsp [xalan1_2] 1.108.2.1:
                   17260:        * src/types/pa_vdom.h [xalan1_2] 1.1.2.1:
                   17261:                introducing dom. dom:load[a.xml]
                   17262: 
                   17263:        * src/main/pa_string.C [before_xml] 1.102.2.1:
                   17264:                a[] ^if($a){y;n} is 'n' now  [conversion from '' to int/double
                   17265:                is 0]
                   17266: 
                   17267:        * src/Makefile.in 1.17:
                   17268:        * src/classes/dom.C 1.2:
                   17269:        * src/classes/table.C 1.111:
                   17270:        * src/main/main.dsp 1.109:
                   17271:        * src/types/pa_vdom.h 1.2:
                   17272:        * src/types/pa_vform.C 1.34:
                   17273:                merged with successful start of dom
                   17274: 
                   17275:        * src/types/pa_vdom.h 1.1:
                   17276:                file pa_vdom.h was initially added on branch xalan1_2.
                   17277: 
                   17278: 2001-09-06  parser
                   17279:        * src/doc/doxygen.cfg 1.14:
                   17280:                merged new default options from 1.2.10 doxygen
                   17281: 
                   17282:        * src/classes/hash.C 1.15:
                   17283:        * src/include/pa_globals.h 1.61:
                   17284:        * src/main/pa_globals.C 1.71:
                   17285:        * src/types/pa_vhash.h 1.16:
                   17286:                now there's special hash key '_default' [instead of ^_default method]
                   17287:                $hash[
                   17288:                        $.a[1]
                   17289:                        $.b[2]
                   17290:                        $._default[xx]
                   17291:                ]
                   17292:                $hash.c
                   17293: 
                   17294:        * src/types/pa_vform.C 1.30:
                   17295:        * src/types/pa_vform.C 1.31:
                   17296:                a=1&a=2 would result in $form:a being a table with one column '
                   17297:                element' and two rows: 1 and 2
                   17298: 
                   17299:        * src/classes/image.C 1.40:
                   17300:        * src/classes/op.C 1.41:
                   17301:        * src/classes/string.C 1.74:
                   17302:        * src/classes/table.C 1.110:
                   17303:        * src/doc/doxygen.cfg 1.13:
                   17304:        * src/targets/isapi/parser3isapi.C 1.38:
                   17305:        * src/types/pa_vtable.C 1.3:
                   17306:                few #ifndef DOXYGEN
                   17307: 
                   17308:        * src/classes/void.C 1.9:
                   17309:        * src/main/pa_string.C 1.102:
                   17310:        * src/main/pa_table.C 1.36:
                   17311:                fixed up bad int/double conversions, and now $form:nonexistent
                   17312:                int(88) would return 88
                   17313: 
                   17314:        * src/main/compile.tab.C 1.10:
                   17315:        * src/main/compile.y 1.165:
                   17316:                ^if(0){}{ ^if(1){}^; }
                   17317:                bug fixed [thanks, fif], ^; were treated there non-literally
                   17318: 
                   17319: 2001-09-05  parser
                   17320:        * src/classes/string.C 1.73:
                   17321:        * src/classes/table.C 1.109:
                   17322:                sql options can be void [same as image:html the other day]
                   17323: 
                   17324:        * src/classes/mail.C 1.36:
                   17325:                MAIN:MAIL check fixed
                   17326: 
                   17327:        * src/Makefile.in 1.16:
                   17328:        * src/classes/Makefile.in 1.15:
                   17329:        * src/main/Makefile.in 1.12:
                   17330:        * src/targets/cgi/Makefile.in 1.14:
                   17331:        * src/types/Makefile.in 1.11:
                   17332:                makes
                   17333: 
                   17334:        * src/main/pa_sql_driver_manager.C 1.33:
                   17335:        * src/sql/pa_sql_driver.h 1.16:
                   17336:        * src/targets/cgi/parser3.C 1.110:
                   17337:                #define STRINGIZE(name) #name
                   17338:                does not macro expantion on param, simply qoutes whatever passed, undone
                   17339: 
                   17340:        * src/main/pa_sql_driver_manager.C 1.30:
                   17341:        * src/sql/pa_sql_driver.h 1.14:
                   17342:                SQL_DRIVER_CREATE_FUNC_NAME
                   17343: 
                   17344:        * src/main/pa_sql_driver_manager.C 1.32:
                   17345:        * src/sql/pa_sql_driver.h 1.15:
                   17346:        * src/targets/cgi/Makefile.am 1.13:
                   17347:        * src/targets/cgi/parser3.C 1.109:
                   17348:                #define STRINGIZE(name) #name
                   17349:                invented
                   17350: 
                   17351:        * src/targets/cgi/Makefile.am 1.14:
                   17352:                .am undo
                   17353: 
                   17354:        * src/classes/op.C 1.40:
                   17355:        * src/include/pa_sql_driver_manager.h 1.8:
                   17356:        * src/main/pa_sql_driver_manager.C 1.31:
                   17357:                #define MAIN_SQL_NAME "SQL"
                   17358:                #define MAIN_SQL_DRIVERS_NAME "drivers"
                   17359:                
                   17360:                moved to be availible to all users
                   17361: 
                   17362: 2001-09-04  parser
                   17363:        * src/targets/cgi/parser3.C 1.106:
                   17364:                zz
                   17365: 
                   17366:        * src/include/pa_config_auto.h.in 1.5:
                   17367:        * src/targets/Makefile.in 1.12:
                   17368:        * src/targets/apache13/Makefile.in 1.12:
                   17369:        * src/targets/cgi/Makefile.am 1.12:
                   17370:        * src/targets/cgi/Makefile.in 1.13:
                   17371:        * src/targets/cgi/parser3.C 1.102:
                   17372:                configure --sysconfdir=sysadmin-controlled auto.p location for
                   17373:                targets/cgi/parser3, default[/usr/local/etc]
                   17374: 
                   17375:        * src/Makefile.in 1.15:
                   17376:        * src/include/pa_config_auto.h.in 1.4:
                   17377:        * src/targets/apache13/Makefile.in 1.11:
                   17378:        * src/targets/cgi/Makefile.in 1.12:
                   17379:                makes
                   17380: 
                   17381:        * src/targets/isapi/parser3isapi.C 1.37:
                   17382:                z
                   17383: 
                   17384:        * src/targets/cgi/parser3.C 1.104:
                   17385:                zzz
                   17386: 
                   17387:        * src/targets/cgi/parser3.C 1.108:
                   17388:                full_file_spec bug
                   17389: 
                   17390:        * src/classes/image.C 1.39:
                   17391:                image.html now can accept void params
                   17392: 
                   17393:        * src/classes/date.C 1.5:
                   17394:                date:sql-string is now without ''
                   17395: 
                   17396:        * src/classes/date.C 1.6:
                   17397:                date
                   17398: 
                   17399:        * src/targets/cgi/parser3.C 1.107:
                   17400:                getenvcheck
                   17401: 
                   17402: 2001-09-03  parser
                   17403:        * src/targets/cgi/parser3.C 1.101:
                   17404:                /configure cgi SYSCONFDIR
                   17405: 
                   17406: 2001-09-01  parser
                   17407:        * src/classes/image.C 1.38:
                   17408:                letter_spacing
                   17409: 
                   17410:        * src/classes/image.C 1.36:
                   17411:                image: as_int as_string used
                   17412: 
                   17413:        * src/classes/image.C 1.37:
                   17414:                image: font params changed
                   17415: 
                   17416:        * src/types/pa_vmethod_frame.h 1.15:
                   17417:                $result[] now gets properly analized
                   17418: 
                   17419: 2001-08-31  parser
                   17420:        * src/Makefile.in 1.14:
                   17421:        * src/include/pa_dir.h 1.4:
                   17422:        * src/targets/Makefile.in 1.11:
                   17423:        * src/targets/cgi/parser3.C 1.99:
                   17424:                compiled under cygwin
                   17425: 
                   17426:        * src/targets/cgi/parser3.C 1.100:
                   17427:                z
                   17428: 
                   17429:        * src/classes/void.C 1.8:
                   17430:                void:int/double += (default)
                   17431: 
                   17432:        * src/classes/string.C 1.72:
                   17433:        * src/classes/table.C 1.108:
                   17434:                string:int/double (defaults)
                   17435: 
                   17436:        * src/classes/image.C 1.35:
                   17437:                image:font added space param
                   17438:                image:font changed charwidth alg, added kerning const[for now]
                   17439: 
                   17440: 2001-08-29  parser
                   17441:        * src/main/pa_exception.C 1.14:
                   17442:                exception redundant debug info
                   17443: 
                   17444: 2001-08-28  parser
                   17445:        * src/classes/table.C 1.107:
                   17446:                NO_STRING_ORIGIN check
                   17447: 
                   17448:        * src/classes/string.C 1.71:
                   17449:        * src/include/pa_dictionary.h 1.2:
                   17450:        * src/include/pa_string.h 1.101:
                   17451:        * src/main/pa_dictionary.C 1.4:
                   17452:        * src/main/pa_string.C 1.101:
                   17453:        * src/main/untaint.C 1.59:
                   17454:                pa_directory speeded up. moved zero 'from' check to directory constructor.
                   17455:                string:replace
                   17456: 
                   17457:        * src/Makefile.in 1.13:
                   17458:                makes
                   17459: 
                   17460:        * src/Makefile.in 1.12:
                   17461:        * src/classes/Makefile.in 1.13:
                   17462:        * src/main/Makefile.in 1.10:
                   17463:        * src/targets/Makefile.in 1.10:
                   17464:        * src/targets/apache13/Makefile.in 1.9:
                   17465:        * src/targets/cgi/Makefile.in 1.10:
                   17466:        * src/types/Makefile.in 1.9:
                   17467:                makefiles
                   17468: 
                   17469:        * src/classes/file.C 1.51:
                   17470:        * src/main/pa_common.C 1.63:
                   17471:                file:move autocreate/remove dest/src dir
                   17472: 
                   17473:        * src/main/compile.C 1.47:
                   17474:                NO_STRING_ORIGIN check2
                   17475: 
                   17476:        * src/classes/image.C 1.33:
                   17477:                image: gifsize little endian
                   17478: 
                   17479:        * src/targets/apache13/Makefile.am 1.4:
                   17480:                COMPILE_APACHE13_MODULE
                   17481: 
                   17482:        * src/include/pa_dictionary.h 1.4:
                   17483:        * src/main/pa_dictionary.C 1.5:
                   17484:        * src/main/pa_sql_driver_manager.C 1.29:
                   17485:                NO_STRING_ORIGIN check3
                   17486: 
                   17487:        * src/include/pa_dictionary.h 1.3:
                   17488:                gcc: ../include/pa_dictionary.h:19: storage class specifiers
                   17489:                invalid in friend function declarations
                   17490: 
                   17491:        * src/targets/apache13/Makefile.am 1.3:
                   17492:                configure to skip apache
                   17493: 
                   17494:        * src/classes/Makefile.in 1.14:
                   17495:        * src/main/Makefile.in 1.11:
                   17496:        * src/targets/apache13/Makefile.in 1.10:
                   17497:        * src/targets/cgi/Makefile.in 1.11:
                   17498:        * src/types/Makefile.in 1.10:
                   17499:                make.ins
                   17500: 
                   17501:        * src/classes/op.C 1.39:
                   17502:        * src/main/compile.tab.C 1.9:
                   17503:        * src/main/pa_dir.C 1.6:
                   17504:        * src/main/untaint.C 1.60:
                   17505:        * src/targets/cgi/parser3.C 1.98:
                   17506:        * src/targets/isapi/parser3isapi.C 1.36:
                   17507:                strncpy forced with zero ending in case of limit
                   17508: 
                   17509:        * src/classes/image.C 1.34:
                   17510:                image error msgs
                   17511: 
                   17512:        * src/classes/Makefile.am 1.18:
                   17513:        * src/main/Makefile.am 1.15:
                   17514:        * src/targets/cgi/Makefile.am 1.11:
                   17515:        * src/types/Makefile.am 1.6:
                   17516:                .am-s
                   17517: 
                   17518:        * src/doc/doxygen.cfg 1.12:
                   17519:                doxygen conf removed some garbage from under doxygeneration
                   17520: 
                   17521: 2001-08-27  parser
                   17522:        * src/Makefile.in 1.11:
                   17523:        * src/classes/Makefile.in 1.12:
                   17524:        * src/main/Makefile.in 1.9:
                   17525:        * src/main/pa_common.C 1.61:
                   17526:        * src/main/pa_exception.C 1.12:
                   17527:        * src/main/pa_sql_driver_manager.C 1.28:
                   17528:        * src/targets/Makefile.in 1.9:
                   17529:        * src/targets/apache13/Makefile.in 1.8:
                   17530:        * src/targets/cgi/Makefile.am 1.10:
                   17531:        * src/targets/cgi/Makefile.in 1.9:
                   17532:        * src/types/Makefile.in 1.8:
                   17533:                configure for solaris -lsocket
                   17534: 
                   17535:        * src/classes/image.C 1.31:
                   17536:        * src/classes/image.C 1.32:
                   17537:                fixed jpgsize alg
                   17538: 
                   17539:        * src/main/pa_request.C 1.152:
                   17540:        * src/targets/cgi/parser3.C 1.97:
                   17541:                parser3 test.html [auto.p from current dir loading]
                   17542: 
                   17543:        * src/main/pa_exception.C 1.13:
                   17544:                z
                   17545: 
                   17546:        * src/main/pa_common.C 1.62:
                   17547:                removed debug info from pa_common
                   17548: 
                   17549: 2001-08-24  parser
                   17550:        * src/targets/cgi/parser3.C 1.95:
                   17551:                not cgi extra \n 2
                   17552: 
                   17553:        * src/classes/file.C 1.50:
                   17554:        * src/classes/form.C 1.14:
                   17555:        * src/classes/mail.C 1.35:
                   17556:        * src/classes/table.C 1.106:
                   17557:                fiew non-pool mallocs fixed
                   17558: 
                   17559:        * src/targets/cgi/parser3.C 1.96:
                   17560:                not cgi extra \n 3
                   17561: 
                   17562:        * src/sql/pa_sql_driver.h 1.13:
                   17563:                sql* removed services from disconnect - cross-request ideological probs.
                   17564:                oracle - fixed bug: cs allocated on request.pool and got freed before disconnect
                   17565: 
                   17566:        * src/targets/cgi/parser3.C 1.94:
                   17567:                not cgi extra \n
                   17568: 
                   17569:        * src/main/pa_sql_driver_manager.C 1.27:
                   17570:                z
                   17571: 
                   17572:        * src/include/pa_sql_connection.h 1.12:
                   17573:        * src/main/pa_sql_driver_manager.C 1.26:
                   17574:                sql* removed services from disconnect - cross-request
                   17575:                ideological probs.
                   17576: 
                   17577: 2001-08-23  parser
                   17578:        * src/main/pa_sql_driver_manager.C 1.25:
                   17579:                oracle: dlink
                   17580: 
                   17581:        * src/classes/file.C 1.49:
                   17582:                minor bug in file:save fixed
                   17583: 
                   17584: 2001-08-22  parser
                   17585:        * src/classes/file.C 1.48:
                   17586:        * src/main/compile.tab.C 1.8:
                   17587:        * src/types/pa_vfile.C 1.18:
                   17588:        * src/types/pa_vfile.h 1.29:
                   17589:                file:load|save[text|binary;
                   17590: 
                   17591:        * src/main/compile.tab.C 1.7:
                   17592:        * src/main/compile.y 1.164:
                   17593:                ^method[]^[^] literals []
                   17594: 
                   17595: 2001-08-21  parser
                   17596:        * src/classes/file.C 1.47:
                   17597:        * src/classes/table.C 1.105:
                   17598:                ^file:list
                   17599: 
                   17600: 2001-08-20  parser
                   17601:        * src/main/compile.tab.C 1.6:
                   17602:        * src/main/compile.y 1.163:
                   17603:        * src/main/pa_sql_driver_manager.C 1.24:
                   17604:        * src/types/pa_value.h 1.70:
                   17605:        * src/types/pa_vbool.h 1.11:
                   17606:        * src/types/pa_vdouble.h 1.24:
                   17607:        * src/types/pa_vint.h 1.25:
                   17608:                var(123) ^var.inc[] recousively caused problems: inc incremeted
                   17609:                123 literal!! fixed
                   17610: 
                   17611: 2001-08-10  parser
                   17612:        * src/classes/table.C 1.101:
                   17613:        * src/include/pa_table.h 1.34:
                   17614:        * src/main/pa_table.C 1.35:
                   17615:                table.sort now creates new sorted table
                   17616: 
                   17617:        * src/main/compile.tab.C 1.3:
                   17618:        * src/main/compile.tab.C 1.4:
                   17619:        * src/main/compile.y 1.160:
                   17620:        * src/main/compile.y 1.161:
                   17621:                (codes) name part syntax added
                   17622: 
                   17623:        * src/main/compile.tab.C 1.5:
                   17624:        * src/main/compile.y 1.162:
                   17625:                [codes] name part syntax now
                   17626: 
                   17627:        * src/main/pa_string.C 1.100:
                   17628:                string.match hanged on. there were a hang check but it weren't wise enough
                   17629:                
                   17630:                @parse[dateString][tmp]
                   17631:                $tmp[^dateString.match[(\d\d\d\d-)?(\d\d-)?][g]]
                   17632:                $tmp.1 $tmp.2
                   17633:                #end
                   17634:                
                   17635:                @main[]
                   17636:                ^parse[2001-02-03]
                   17637: 
                   17638:        * src/classes/table.C 1.102:
                   17639:        * src/classes/table.C 1.103:
                   17640:                table:sort now default desc
                   17641: 
                   17642:        * src/types/pa_value.h 1.69:
                   17643:        * src/types/pa_vstring.h 1.30:
                   17644:        * src/types/pa_vstring.h 1.31:
                   17645:                string now def only when ne ''
                   17646: 
                   17647:        * src/main/pa_request.C 1.150:
                   17648:        * src/main/pa_request.C 1.151:
                   17649:                wanted to make
                   17650:                const int MAX_EXECUTE_SECONDS=1;
                   17651:                
                   17652:                but couldnt, set_callback_and_alarm appeared to be not exported :(
                   17653: 
                   17654:        * src/classes/table.C 1.104:
                   17655:                table:sort restored [it was bad test :(]
                   17656: 
                   17657: 2001-08-09  parser
                   17658:        * src/main/pa_string.C 1.99:
                   17659:                $a[010] now ^if($a==10){true}
                   17660:                were octal
                   17661: 
                   17662:        * src/main/Makefile.am 1.14:
                   17663:                .am
                   17664: 
                   17665:        * src/classes/void.C 1.6:
                   17666:        * src/classes/void.C 1.7:
                   17667:                void: int double  copy/paste from int: bug fixed
                   17668: 
                   17669:        * src/classes/hash.C 1.14:
                   17670:                hash:_default now [was hash:default]
                   17671: 
                   17672:        * src/types/pa_vcookie.C 1.22:
                   17673:                cookie name&value origins added, more precise $ORIGINS(1)
                   17674: 
                   17675:        * src/classes/op.C 1.38:
                   17676:                case without switch check added
                   17677: 
                   17678:        * src/main/Makefile.in 1.8:
                   17679:                make.in
                   17680: 
                   17681: 2001-08-07  parser
                   17682:        * src/classes/math.C 1.5:
                   17683:        * src/main/pa_request.C 1.149:
                   17684:                math:random fixed. win32 srand made working
                   17685: 
                   17686:        * src/classes/double.C 1.36:
                   17687:        * src/classes/int.C 1.32:
                   17688:        * src/classes/string.C 1.70:
                   17689:        * src/classes/table.C 1.100:
                   17690:        * src/include/pa_globals.h 1.60:
                   17691:        * src/main/pa_globals.C 1.70:
                   17692:                !^int/double:sql{query}[[$.limit(2) $.offset(4) $.default(0)]]
                   17693:                string, table
                   17694: 
                   17695: 2001-08-06  parser
                   17696:        * src/classes/hash.C 1.13:
                   17697:                hash:keys renamed to hash:_keys :(
                   17698: 
                   17699:        * src/main/pa_exec.C 1.10:
                   17700:                exec win32 real filename
                   17701: 
                   17702:        * src/classes/file.C 1.46:
                   17703:                exec stderr out
                   17704: 
                   17705:        * src/classes/mail.C 1.34:
                   17706:        * src/classes/op.C 1.37:
                   17707:        * src/include/pa_array.h 1.43:
                   17708:        * src/include/pa_globals.h 1.59:
                   17709:        * src/include/pa_hash.h 1.42:
                   17710:        * src/include/pa_request.h 1.94:
                   17711:        * src/main/compile.tab.C 1.2:
                   17712:        * src/main/compile.y 1.159:
                   17713:        * src/main/pa_array.C 1.38:
                   17714:        * src/main/pa_dictionary.C 1.3:
                   17715:        * src/main/pa_exec.C 1.11:
                   17716:        * src/main/pa_globals.C 1.69:
                   17717:        * src/main/pa_hash.C 1.38:
                   17718:        * src/main/pa_request.C 1.148:
                   17719:        * src/main/pa_string.C 1.98:
                   17720:                class_path
                   17721: 
                   17722: 2001-08-03  parser
                   17723:        * src/classes/table.C 1.99:
                   17724:        * src/types/pa_vtable.h 1.28:
                   17725:                vtable.locks killed
                   17726: 
                   17727: 2001-08-02  parser
                   17728:        * src/classes/classes.h 1.9:
                   17729:        * src/classes/op.C 1.36:
                   17730:        * src/include/pa_globals.h 1.58:
                   17731:        * src/main/execute.C 1.188:
                   17732:        * src/main/pa_globals.C 1.66:
                   17733:        * src/main/pa_globals.C 1.67:
                   17734:                found another multithread bug in op.C (last, last global var
                   17735:                killed) :)
                   17736: 
                   17737:        * src/main/pa_dictionary.C 1.2:
                   17738:        * src/main/pa_globals.C 1.68:
                   17739:                memset dictionary minor bug fixed
                   17740: 
                   17741:        * src/classes/string.C 1.69:
                   17742:        * src/classes/table.C 1.98:
                   17743:        * src/include/pa_array.h 1.42:
                   17744:        * src/main/execute.C 1.190:
                   17745:        * src/main/pa_exec.C 1.9:
                   17746:                introducing Array_iter
                   17747: 
                   17748:        * src/main/execute.C 1.189:
                   17749:                detected quick_get recursion bug. changed to get@execute, but
                   17750:                needs array iterator, separate from array to avoid it & use caching
                   17751: 
                   17752: 2001-08-01  parser
                   17753:        * src/include/pa_dictionary.h 1.1:
                   17754:        * src/include/pa_globals.h 1.57:
                   17755:        * src/include/pa_string.h 1.100:
                   17756:        * src/main/main.dsp 1.107:
                   17757:        * src/main/pa_dictionary.C 1.1:
                   17758:        * src/main/pa_globals.C 1.65:
                   17759:        * src/main/pa_request.C 1.147:
                   17760:        * src/main/pa_string.C 1.97:
                   17761:        * src/main/untaint.C 1.58:
                   17762:                speeded up typo-html replacements. introducing Dictionary with
                   17763:                first-char caching
                   17764: 
                   17765: 2001-07-31  parser
                   17766:        * src/types/Makefile.am 1.5:
                   17767:                pa_vtable.C added to .am
                   17768: 
                   17769:        * src/main/compile.tab.C 1.1:
                   17770:                added, so that could be compiled even on non-bison-enabled platforms
                   17771: 
                   17772: 2001-07-28  parser
                   17773:        * src/main/compile.y 1.158:
                   17774:        * src/main/untaint.C 1.57:
                   17775:                bug fix @ untaint when \r skipped \n
                   17776: 
                   17777:        * src/classes/table.C 1.97:
                   17778:                table:hash always produces hash, when can't - empty
                   17779: 
                   17780: 2001-07-27  parser
                   17781:        * src/classes/double.C 1.35:
                   17782:        * src/classes/int.C 1.31:
                   17783:        * src/classes/string.C 1.68:
                   17784:                provided meaningful msg on int/double/string :sql without
                   17785:                result and default
                   17786: 
                   17787: 2001-07-26  parser
                   17788:        * src/include/pa_opcode.h 1.6:
                   17789:        * src/main/compile.y 1.156:
                   17790:        * src/main/execute.C 1.187:
                   17791:                hash creation syntax problem persists. restored $: for a while.
                   17792:                thinking of $man[$.age[zzz]] syntax now
                   17793: 
                   17794:        * src/classes/op.C 1.35:
                   17795:                fixed bad multithread bug with strangly global OP
                   17796: 
                   17797:        * src/main/compile.y 1.157:
                   17798:                $man[$.age[zzz]]  0
                   17799: 
                   17800:        * src/include/pa_opcode.h 1.4:
                   17801:        * src/main/compile.C 1.45:
                   17802:        * src/main/compile.y 1.154:
                   17803:        * src/main/compile_tools.h 1.46:
                   17804:        * src/main/execute.C 1.185:
                   17805:        * src/main/pa_request.C 1.146:
                   17806:        * src/types/pa_vmethod_frame.h 1.13:
                   17807:                introducing ::
                   17808:                this is constructor call prefix.
                   17809:                ordinary : remains for static accesses
                   17810: 
                   17811:        * src/classes/double.C 1.34:
                   17812:        * src/classes/int.C 1.30:
                   17813:        * src/classes/string.C 1.67:
                   17814:        * src/include/pa_opcode.h 1.5:
                   17815:        * src/main/compile.C 1.46:
                   17816:        * src/main/compile.y 1.155:
                   17817:        * src/main/compile_tools.h 1.47:
                   17818:        * src/main/execute.C 1.186:
                   17819:        * src/types/pa_vcode_frame.h 1.7:
                   17820:        * src/types/pa_vmethod_frame.h 1.14:
                   17821:        * src/types/pa_wcontext.h 1.16:
                   17822:        * src/types/pa_wwrapper.h 1.10:
                   17823:                fixing :: realization #1
                   17824: 
                   17825: 2001-07-25  parser
                   17826:        * src/classes/table.C 1.95:
                   17827:        * src/main/main.dsp 1.106:
                   17828:        * src/types/pa_vtable.C 1.1:
                   17829:        * src/types/pa_vtable.h 1.27:
                   17830:                ^table.record[] now $table.fields
                   17831: 
                   17832:        * src/types/pa_vtable.C 1.2:
                   17833:                table: get_element order changeed. now:
                   17834:                1. fields
                   17835:                2. methods
                   17836:                3. columns
                   17837: 
                   17838:        * src/types/pa_vdouble.h 1.23:
                   17839:        * src/types/pa_vint.h 1.24:
                   17840:                odbc: no result queries; quote.
                   17841:                optimized double&int tostring-s
                   17842: 
                   17843:        * src/classes/string.C 1.66:
                   17844:        * src/include/pa_globals.h 1.56:
                   17845:        * src/main/execute.C 1.183:
                   17846:        * src/main/pa_globals.C 1.64:
                   17847:                match replace code context moved to implicit $match context
                   17848: 
                   17849:        * src/main/compile.C 1.44:
                   17850:        * src/main/compile.y 1.153:
                   17851:        * src/main/compile_tools.h 1.45:
                   17852:                allowed whitespace before first method decl
                   17853: 
                   17854:        * src/include/pa_opcode.h 1.3:
                   17855:        * src/main/compile.y 1.149:
                   17856:        * src/main/compile_tools.C 1.37:
                   17857:        * src/main/compile_tools.h 1.43:
                   17858:        * src/main/execute.C 1.182:
                   17859:                with killed, code storage introduced with former 'with' syntax
                   17860: 
                   17861:        * src/main/compile.y 1.150:
                   17862:        * src/main/compile.y 1.151:
                   17863:        * src/main/execute.C 1.184:
                   17864:                $var[] is now empty string, not void
                   17865: 
                   17866:        * src/main/compile.C 1.43:
                   17867:        * src/main/compile.y 1.152:
                   17868:        * src/main/compile_tools.h 1.44:
                   17869:                allowed empty lines before first method decl
                   17870: 
                   17871:        * src/classes/table.C 1.96:
                   17872:                allowed nontable result in table:sql, results in empty table
                   17873: 
                   17874: 2001-07-24  parser
                   17875:        * src/main/compile.C 1.42:
                   17876:        * src/main/execute.C 1.181:
                   17877:        * src/main/pa_string.C 1.96:
                   17878:        * src/types/pa_value.h 1.68:
                   17879:                first get_element, next get operator
                   17880: 
                   17881:        * src/classes/file.C 1.45:
                   17882:        * src/include/pa_common.h 1.47:
                   17883:        * src/main/pa_common.C 1.60:
                   17884:                file:move
                   17885: 
                   17886:        * src/main/compile.y 1.148:
                   17887:                removed @end handling
                   17888: 
                   17889:        * src/main/pa_common.C 1.59:
                   17890:                file_read close @ eof when imgsize bug fixed
                   17891: 
                   17892:        * src/main/compile.C 1.41:
                   17893:        * src/main/compile.y 1.147:
                   17894:                @end handling method2
                   17895: 
                   17896: 2001-07-23  parser
                   17897:        * src/main/pa_sql_driver_manager.C 1.23:
                   17898:        * src/sql/pa_sql_driver.h 1.12:
                   17899:                sql odbc driver
                   17900: 
                   17901:        * src/classes/hash.C 1.11:
                   17902:        * src/classes/hash.C 1.12:
                   17903:        * src/classes/string.C 1.65:
                   17904:        * src/classes/table.C 1.94:
                   17905:        * src/classes/void.C 1.5:
                   17906:        * src/include/pa_sql_connection.h 1.11:
                   17907:        * src/sql/pa_sql_driver.h 1.11:
                   17908:                changed sql driver query interface
                   17909: 
                   17910: 2001-07-20  parser
                   17911:        * src/types/pa_vrequest.C 1.8:
                   17912:                X!$browser:type
                   17913: 
                   17914:        * src/classes/file.C 1.44:
                   17915:        * src/classes/string.C 1.64:
                   17916:        * src/include/pa_string.h 1.99:
                   17917:        * src/main/execute.C 1.180:
                   17918:        * src/main/pa_string.C 1.95:
                   17919:        * src/types/pa_valiased.C 1.8:
                   17920:        * src/types/pa_valiased.h 1.13:
                   17921:        * src/types/pa_value.h 1.67:
                   17922:        * src/types/pa_vclass.h 1.17:
                   17923:        * src/types/pa_vcookie.h 1.11:
                   17924:        * src/types/pa_vdate.h 1.3:
                   17925:        * src/types/pa_vfile.h 1.28:
                   17926:        * src/types/pa_vform.h 1.21:
                   17927:        * src/types/pa_vhash.h 1.15:
                   17928:        * src/types/pa_vmath.h 1.2:
                   17929:        * src/types/pa_vobject.h 1.10:
                   17930:        * src/types/pa_vrequest.C 1.7:
                   17931:        * src/types/pa_vstateless_class.h 1.16:
                   17932:        * src/types/pa_vstateless_object.h 1.10:
                   17933:                only ^class:method dynamic calls allowed.
                   17934:                ^BASE.method call disabled.
                   17935:                BASE element globally removed
                   17936: 
                   17937: 2001-07-18  parser
                   17938:        * src/Makefile.am 1.6:
                   17939:        * src/Makefile.in 1.10:
                   17940:        * src/classes/Makefile.am 1.17:
                   17941:        * src/main/Makefile.am 1.13:
                   17942:        * src/targets/Makefile.am 1.6:
                   17943:        * src/targets/apache13/Makefile.am 1.2:
                   17944:        * src/targets/cgi/Makefile.am 1.9:
                   17945:        * src/types/Makefile.am 1.4:
                   17946:                removed $id from *.in *.am
                   17947: 
                   17948:        * src/classes/file.C 1.43:
                   17949:                file:exec/cgi msg
                   17950: 
                   17951:        * src/main/pa_request.C 1.145:
                   17952:        * src/main/untaint.C 1.56:
                   17953:                ORIGINS langs name abbrevations
                   17954: 
                   17955:        * src/classes/file.C 1.42:
                   17956:                $file:exit-code renamed to 'status'
                   17957: 
                   17958:        * src/classes/date.C 1.4:
                   17959:        * src/classes/mail.C 1.33:
                   17960:        * src/classes/math.C 1.4:
                   17961:        * src/classes/string.C 1.63:
                   17962:        * src/classes/table.C 1.93:
                   17963:        * src/include/pa_globals.h 1.55:
                   17964:        * src/include/pa_string.h 1.98:
                   17965:        * src/main/execute.C 1.179:
                   17966:        * src/main/pa_globals.C 1.63:
                   17967:        * src/main/pa_request.C 1.144:
                   17968:        * src/main/pa_string.C 1.94:
                   17969:        * src/main/untaint.C 1.55:
                   17970:        * src/types/pa_value.h 1.66:
                   17971:        * src/types/pa_vdouble.h 1.22:
                   17972:        * src/types/pa_vfile.h 1.27:
                   17973:        * src/types/pa_vint.h 1.23:
                   17974:        * src/types/pa_vstring.C 1.9:
                   17975:        * src/types/pa_vstring.h 1.29:
                   17976:                $ORIGINS(1) output tracing mode
                   17977: 
                   17978:        * src/classes/Makefile.in 1.11:
                   17979:        * src/main/Makefile.in 1.7:
                   17980:        * src/targets/Makefile.in 1.8:
                   17981:        * src/targets/apache13/Makefile.in 1.7:
                   17982:        * src/targets/cgi/Makefile.in 1.8:
                   17983:        * src/types/Makefile.in 1.7:
                   17984:                $id in .in's from .am's removed
                   17985: 
                   17986:        * src/classes/file.C 1.41:
                   17987:        * src/main/pa_exec.C 1.8:
                   17988:                file:exec
                   17989: 
                   17990: 2001-07-17  parser
                   17991:        * src/Makefile.in 1.9:
                   17992:        * src/classes/Makefile.in 1.10:
                   17993:                == wrong
                   17994: 
                   17995: 2001-07-13  parser
                   17996:        * src/main/execute.C 1.175:
                   17997:        * src/main/pa_request.C 1.142:
                   17998:                order of MAIN parents was wrong, fixed
                   17999: 
                   18000:        * src/classes/double.C 1.33:
                   18001:        * src/classes/int.C 1.29:
                   18002:        * src/classes/string.C 1.62:
                   18003:        * src/include/pa_request.h 1.92:
                   18004:        * src/include/pa_request.h 1.93:
                   18005:        * src/main/execute.C 1.176:
                   18006:        * src/main/execute.C 1.177:
                   18007:        * src/main/execute.C 1.178:
                   18008:        * src/main/pa_request.C 1.143:
                   18009:                auto.p[@auto], /news/auto.p[no @auto], so that initializing
                   18010:                second would not call first @auto
                   18011: 
                   18012: 2001-07-12  parser
                   18013:        * src/types/pa_value.h 1.65:
                   18014:                pa_value.putelement modification of system classes prevented
                   18015: 
                   18016: 2001-07-11  parser
                   18017:        * src/classes/string.C 1.61:
                   18018:        * src/doc/sources2html.cmd 1.3:
                   18019:                lr split now yelds table $piece
                   18020: 
                   18021:        * src/classes/file.C 1.40:
                   18022:        * src/include/pa_common.h 1.46:
                   18023:        * src/main/pa_common.C 1.58:
                   18024:        * src/types/pa_vstateless_class.h 1.15:
                   18025:                $file created by file:state += .atime .mtime .ctime
                   18026:                +found&fixed bug with exceptions on get_junction-created objects [they were on wrong pool]
                   18027: 
                   18028: 2001-07-09  parser
                   18029:        * src/main/untaint.C 1.54:
                   18030:                qp wrong name
                   18031: 
                   18032:        * src/classes/date.C 1.3:
                   18033:        * src/classes/string.C 1.60:
                   18034:        * src/classes/table.C 1.92:
                   18035:        * src/main/compile.y 1.146:
                   18036:                date format 0
                   18037: 
                   18038: 2001-07-07  parser
                   18039:        * src/classes/Makefile.am 1.16:
                   18040:        * src/classes/date.C 1.1:
                   18041:        * src/classes/file.C 1.39:
                   18042:        * src/classes/hash.C 1.10:
                   18043:        * src/classes/image.C 1.30:
                   18044:        * src/classes/mail.C 1.32:
                   18045:        * src/classes/math.C 1.3:
                   18046:        * src/classes/op.C 1.34:
                   18047:        * src/classes/string.C 1.59:
                   18048:        * src/classes/table.C 1.90:
                   18049:        * src/classes/void.C 1.4:
                   18050:        * src/include/pa_request.h 1.91:
                   18051:        * src/main/main.dsp 1.105:
                   18052:        * src/types/pa_value.h 1.64:
                   18053:        * src/types/pa_vdate.h 1.1:
                   18054:        * src/types/pa_wcontext.C 1.7:
                   18055:                date  now set $fields roll string.  todo: sql, calendar
                   18056: 
                   18057:        * src/classes/date.C 1.2:
                   18058:        * src/classes/table.C 1.91:
                   18059:        * src/include/pa_common.h 1.45:
                   18060:        * src/include/pa_string.h 1.97:
                   18061:        * src/main/pa_common.C 1.57:
                   18062:        * src/types/pa_vdate.h 1.2:
                   18063:                date roll
                   18064:                table calendar
                   18065: 
                   18066: 2001-07-06  parser
                   18067:        * src/classes/math.C 1.2:
                   18068:        * src/include/pa_request.h 1.90:
                   18069:        * src/main/execute.C 1.174:
                   18070:        * src/main/main.dsp 1.104:
                   18071:        * src/main/pa_request.C 1.141:
                   18072:        * src/types/pa_vmath.h 1.1:
                   18073:                math 0
                   18074: 
                   18075: 2001-07-03  parser
                   18076:        * src/classes/Makefile.am 1.15:
                   18077:        * src/classes/math.C 1.1:
                   18078:        * src/classes/op.C 1.33:
                   18079:        * src/classes/random.C 1.15:
                   18080:        * src/main/main.dsp 1.103:
                   18081:                class random renamed to math, operators became methods
                   18082: 
                   18083:        * src/classes/op.C 1.32:
                   18084:                 pow sqrt
                   18085: 
                   18086:        * src/classes/op.C 1.31:
                   18087:        * src/main/execute.C 1.173:
                   18088:                 sin asin cos acos tan atan
                   18089: 
                   18090: 2001-07-02  parser
                   18091:        * src/classes/hash.C 1.9:
                   18092:                ^hash.keys[]
                   18093: 
                   18094:        * src/classes/table.C 1.88:
                   18095:        * src/main/pa_table.C 1.34:
                   18096:                ^table:columns[]
                   18097: 
                   18098:        * src/classes/table.C 1.89:
                   18099:                ^table.columns column renamed from 'name' to 'column'
                   18100: 
                   18101:        * src/main/compile.y 1.145:
                   18102:        * src/main/compile_tools.h 1.42:
                   18103:                in expressions now allowed 'strings'
                   18104: 
                   18105: 2001-06-29  parser
                   18106:        * src/main/execute.C 1.171:
                   18107:        * src/main/execute.C 1.172:
                   18108:                /0  %0 checkes ver 2
                   18109: 
                   18110:        * src/classes/table.C 1.87:
                   18111:                empty strings @ sql
                   18112: 
                   18113:        * src/Makefile.in 1.8:
                   18114:        * src/classes/Makefile.in 1.9:
                   18115:                makes
                   18116: 
                   18117:        * src/classes/Makefile.am 1.14:
                   18118:                nothing - void
                   18119: 
                   18120:        * src/main/execute.C 1.170:
                   18121:                /0  %0 checke
                   18122: 
                   18123: 2001-06-28  parser
                   18124:        * src/classes/double.C 1.32:
                   18125:        * src/classes/file.C 1.38:
                   18126:        * src/classes/form.C 1.13:
                   18127:        * src/classes/hash.C 1.8:
                   18128:        * src/classes/image.C 1.29:
                   18129:        * src/classes/int.C 1.28:
                   18130:        * src/classes/mail.C 1.31:
                   18131:        * src/classes/op.C 1.30:
                   18132:        * src/classes/random.C 1.14:
                   18133:        * src/classes/response.C 1.13:
                   18134:        * src/classes/string.C 1.58:
                   18135:        * src/classes/table.C 1.86:
                   18136:        * src/classes/void.C 1.3:
                   18137:        * src/main/compile.C 1.40:
                   18138:        * src/main/compile.y 1.144:
                   18139:        * src/main/compile_tools.C 1.36:
                   18140:        * src/main/execute.C 1.169:
                   18141:        * src/main/pa_array.C 1.37:
                   18142:        * src/main/pa_common.C 1.56:
                   18143:        * src/main/pa_dir.C 1.5:
                   18144:        * src/main/pa_exception.C 1.11:
                   18145:        * src/main/pa_exec.C 1.7:
                   18146:        * src/main/pa_globals.C 1.62:
                   18147:        * src/main/pa_hash.C 1.37:
                   18148:        * src/main/pa_pool.C 1.20:
                   18149:        * src/main/pa_request.C 1.140:
                   18150:        * src/main/pa_socks.C 1.5:
                   18151:        * src/main/pa_sql_driver_manager.C 1.22:
                   18152:        * src/main/pa_string.C 1.93:
                   18153:        * src/main/pa_table.C 1.33:
                   18154:        * src/main/untaint.C 1.53:
                   18155:        * src/targets/cgi/parser3.C 1.93:
                   18156:        * src/targets/isapi/parser3isapi.C 1.35:
                   18157:                */
1.26      paf      18158:                static const char *RCSId="$Id: double.C,v 1.31 2001/06/28 07:41:59 parser Exp $";
1.15      paf      18159: 
                   18160:        * src/main/compile.y 1.142:
                   18161:        * src/main/compile_tools.h 1.41:
                   18162:                $:name: == ${name}:
                   18163:                $class:name: == ${class:name}:
                   18164: 
                   18165:        * src/classes/string.C 1.56:
                   18166:                exactly one
                   18167: 
                   18168:        * src/classes/double.C 1.31:
                   18169:        * src/classes/file.C 1.37:
                   18170:        * src/classes/form.C 1.12:
                   18171:        * src/classes/hash.C 1.7:
                   18172:        * src/classes/image.C 1.28:
                   18173:        * src/classes/int.C 1.27:
                   18174:        * src/classes/mail.C 1.30:
                   18175:        * src/classes/op.C 1.29:
                   18176:        * src/classes/random.C 1.13:
                   18177:        * src/classes/response.C 1.12:
                   18178:        * src/classes/string.C 1.57:
                   18179:        * src/classes/table.C 1.85:
                   18180:        * src/classes/void.C 1.2:
                   18181:        * src/main/compile.C 1.39:
                   18182:        * src/main/compile.y 1.143:
                   18183:        * src/main/compile_tools.C 1.35:
                   18184:        * src/main/execute.C 1.168:
                   18185:        * src/main/pa_array.C 1.36:
                   18186:        * src/main/pa_common.C 1.55:
                   18187:        * src/main/pa_dir.C 1.4:
                   18188:        * src/main/pa_exception.C 1.10:
                   18189:        * src/main/pa_exec.C 1.6:
                   18190:        * src/main/pa_globals.C 1.61:
                   18191:        * src/main/pa_hash.C 1.36:
                   18192:        * src/main/pa_pool.C 1.19:
                   18193:        * src/main/pa_request.C 1.139:
                   18194:        * src/main/pa_socks.C 1.4:
                   18195:        * src/main/pa_sql_driver_manager.C 1.21:
                   18196:        * src/main/pa_string.C 1.92:
                   18197:        * src/main/pa_table.C 1.32:
                   18198:        * src/main/untaint.C 1.52:
                   18199:        * src/targets/cgi/parser3.C 1.92:
                   18200:        * src/targets/isapi/parser3isapi.C 1.34:
1.26      paf      18201:                static char *RCSId="$Id$";
1.15      paf      18202: 
                   18203: 2001-06-27  parser
                   18204:        * src/classes/hash.C 1.6:
                   18205:        * src/classes/nothing.C 1.5:
                   18206:        * src/classes/table.C 1.84:
                   18207:        * src/classes/void.C 1.1:
                   18208:        * src/main/compile.y 1.140:
                   18209:        * src/main/compile.y 1.141:
                   18210:        * src/main/execute.C 1.167:
                   18211:        * src/main/main.dsp 1.102:
                   18212:        * src/main/pa_request.C 1.138:
                   18213:        * src/targets/cgi/pa_pool.C 1.17:
                   18214:        * src/types/pa_value.h 1.63:
                   18215:        * src/types/pa_vcode_frame.h 1.6:
                   18216:        * src/types/pa_vmethod_frame.h 1.12:
                   18217:        * src/types/pa_vnothing.h 1.2:
                   18218:        * src/types/pa_vtable.h 1.26:
                   18219:        * src/types/pa_vvoid.h 1.1:
                   18220:                nothing renamed to void
                   18221: 
                   18222:        * src/classes/op.C 1.28:
                   18223:                ^switch ^case
                   18224: 
                   18225:        * src/main/compile.y 1.139:
                   18226:                lexer: $zzzz^zzzz were name part
                   18227: 
                   18228: 2001-05-28  parser
                   18229:        * src/main/main.dsp 1.101:
                   18230:        * src/targets/isapi/parser3isapi.dsp 1.15:
                   18231:                release project options [some bugs]
                   18232: 
                   18233:        * src/classes/classes.C 1.7:
                   18234:        * src/main/compile.C 1.38:
                   18235:        * src/main/compile.y 1.138:
                   18236:        * src/main/execute.C 1.166:
                   18237:                operators are not in root class again
                   18238: 
                   18239:        * src/doc/html2chm.cmd 1.3:
                   18240:                removed >a
                   18241: 
                   18242:        * src/doc/sources2html.cmd 1.2:
                   18243:                z
                   18244: 
                   18245: 2001-05-24  parser
                   18246:        * src/Makefile.in 1.7:
                   18247:        * src/classes/Makefile.in 1.8:
                   18248:        * src/main/Makefile.in 1.6:
                   18249:        * src/targets/Makefile.in 1.7:
                   18250:        * src/targets/apache13/Makefile.in 1.6:
                   18251:        * src/targets/cgi/Makefile.in 1.7:
                   18252:        * src/types/Makefile.in 1.6:
                   18253:                makes
                   18254: 
                   18255:        * src/main/pa_request.C 1.135:
                   18256:        * src/main/pa_request.C 1.136:
                   18257:        * src/targets/cgi/parser3.C 1.90:
                   18258:                // no _ conversions in @exception[params]
                   18259: 
                   18260:        * src/targets/cgi/parser3.dsp 1.19:
                   18261:                project file
                   18262: 
                   18263:        * src/classes/op.C 1.27:
                   18264:        * src/main/pa_request.C 1.137:
                   18265:        * src/targets/cgi/parser3.C 1.91:
                   18266:                ^log ^exp
                   18267: 
                   18268: 2001-05-23  parser
                   18269:        * src/classes/op.C 1.25:
                   18270:        * src/main/compile.y 1.137:
                   18271:                allow one empty line before LS_DEF_NAME
                   18272: 
                   18273:        * src/main/pa_string.C 1.91:
                   18274:                string cmp bug
                   18275: 
                   18276:        * src/classes/mail.C 1.29:
                   18277:        * src/classes/op.C 1.26:
                   18278:                rem max 1000
                   18279: 
                   18280: 2001-05-22  parser
                   18281:        * src/classes/op.C 1.24:
                   18282:                if params code-required
                   18283: 
                   18284: 2001-05-21  parser
                   18285:        * src/classes/classes.C [operators_as_parent_class2] 1.5.2.1:
                   18286:        * src/main/compile.C [operators_as_parent_class2] 1.36.2.1:
                   18287:        * src/main/compile.y [operators_as_parent_class2] 1.134.2.1:
                   18288:        * src/main/execute.C [operators_as_parent_class2] 1.162.2.1:
                   18289:                0
                   18290: 
                   18291:        * src/classes/classes.C [operators_as_parent_class2] 1.5.2.2:
                   18292:        * src/main/compile.C [operators_as_parent_class2] 1.36.2.2:
                   18293:                1
                   18294: 
                   18295:        * src/Makefile.in 1.6:
                   18296:        * src/classes/Makefile.in 1.6:
                   18297:        * src/classes/Makefile.in 1.7:
                   18298:        * src/main/Makefile.in 1.5:
                   18299:        * src/targets/Makefile.in 1.6:
                   18300:        * src/targets/apache13/Makefile.in 1.5:
                   18301:        * src/targets/cgi/Makefile.in 1.6:
                   18302:        * src/types/Makefile.in 1.5:
                   18303:                makes
                   18304: 
                   18305:        * src/classes/double.C 1.30:
                   18306:        * src/classes/hash.C 1.4:
                   18307:        * src/classes/hash.C 1.5:
                   18308:        * src/classes/nothing.C 1.1:
                   18309:        * src/classes/nothing.C 1.2:
                   18310:        * src/classes/nothing.C 1.3:
                   18311:        * src/classes/op.C 1.23:
                   18312:        * src/classes/string.C 1.55:
                   18313:        * src/classes/table.C 1.83:
                   18314:        * src/classes/unknown.C 1.8:
                   18315:        * src/main/compile.y 1.136:
                   18316:        * src/main/execute.C 1.164:
                   18317:        * src/main/execute.C 1.165:
                   18318:        * src/main/main.dsp 1.100:
                   18319:        * src/main/pa_request.C 1.134:
                   18320:        * src/targets/cgi/pa_pool.C 1.15:
                   18321:        * src/targets/cgi/pa_pool.C 1.16:
                   18322:        * src/types/pa_value.h 1.62:
                   18323:        * src/types/pa_vcode_frame.h 1.5:
                   18324:        * src/types/pa_vmethod_frame.h 1.10:
                   18325:        * src/types/pa_vmethod_frame.h 1.11:
                   18326:        * src/types/pa_vnothing.h 1.1:
                   18327:        * src/types/pa_vtable.h 1.24:
                   18328:        * src/types/pa_vtable.h 1.25:
                   18329:        * src/types/pa_vunknown.h 1.14:
                   18330:                'unknown' renamed to 'nothing'
                   18331: 
                   18332:        * src/Makefile.in 1.5:
                   18333:        * src/classes/Makefile.in 1.5:
                   18334:        * src/main/Makefile.in 1.4:
                   18335:        * src/targets/Makefile.in 1.5:
                   18336:        * src/targets/apache13/Makefile.in 1.4:
                   18337:        * src/targets/cgi/Makefile.in 1.5:
                   18338:        * src/types/Makefile.in 1.4:
                   18339:                make system timestamps
                   18340: 
                   18341:        * src/classes/nothing.C 1.4:
                   18342:                resultless ^sql  moved to nothing:
                   18343: 
                   18344:        * src/classes/Makefile.am 1.13:
                   18345:                .AM
                   18346: 
                   18347:        * src/main/pa_request.C 1.133:
                   18348:                .am
                   18349: 
                   18350:        * src/Makefile.in 1.4:
                   18351:                file stamps to remove autoreconf
                   18352: 
                   18353:        * src/targets/cgi/parser3.C 1.88:
                   18354:                argv can be just "parser3". made site_auto_path "." in that case
                   18355: 
                   18356:        * src/types/pa_vstring.C 1.8:
                   18357:                eoleof
                   18358: 
                   18359:        * src/classes/op.C [operators_as_parent_class2] 1.21.2.1:
                   18360:        * src/main/execute.C 1.162:
                   18361:        * src/targets/cgi/Makefile.in 1.4:
                   18362:        * src/targets/cgi/parser3.C 1.86:
                   18363:        * src/targets/cgi/parser3.C 1.87:
                   18364:        * src/targets/cgi/parser3.C 1.89:
                   18365:                z
                   18366: 
                   18367:        * src/main/pa_request.C 1.132:
                   18368:        * src/targets/cgi/parser3.C 1.85:
                   18369:                pcre_tables=pcre_default_tables;
                   18370: 
                   18371:        * src/classes/hash.C 1.3:
                   18372:        * src/classes/int.C 1.25:
                   18373:        * src/classes/string.C 1.53:
                   18374:        * src/classes/table.C 1.82:
                   18375:        * src/include/pa_string.h 1.95:
                   18376:        * src/include/pa_string.h 1.96:
                   18377:        * src/main/pa_string.C 1.89:
                   18378:        * src/main/pa_string.C 1.90:
                   18379:        * src/types/pa_vstring.C 1.6:
                   18380:        * src/types/pa_vstring.h 1.27:
                   18381:                started int:sql
                   18382: 
                   18383:        * src/types/pa_vstring.C 1.7:
                   18384:        * src/types/pa_vstring.h 1.28:
                   18385:                removed unnecessary vstring::set_string
                   18386: 
                   18387:        * src/classes/double.C 1.29:
                   18388:        * src/classes/int.C 1.26:
                   18389:        * src/classes/string.C 1.54:
                   18390:                int,double;sql
                   18391: 
                   18392:        * src/classes/hash.C [operators_as_parent_class2] 1.1.2.1:
                   18393:        * src/classes/op.C [operators_as_parent_class2] 1.21.2.2:
                   18394:        * src/classes/table.C [operators_as_parent_class2] 1.80.2.1:
                   18395:                hash:sql
                   18396: 
                   18397:        * src/classes/classes.C 1.6:
                   18398:        * src/classes/hash.C 1.2:
                   18399:        * src/classes/op.C 1.22:
                   18400:        * src/classes/table.C 1.81:
                   18401:        * src/main/compile.C 1.37:
                   18402:        * src/main/compile.y 1.135:
                   18403:        * src/main/execute.C 1.163:
                   18404:                hash:sql moved to main trunc. operators.txt updated
                   18405: 
                   18406: 2001-05-19  parser
                   18407:        * src/types/pa_value.h 1.61:
                   18408:                parameter # 1 based
                   18409: 
                   18410:        * src/main/pa_common.C 1.54:
                   18411:                common:  actual filename '%s'
                   18412: 
                   18413:        * src/classes/string.C 1.52:
                   18414:                root context in match replace body now unchanged
                   18415: 
                   18416:        * src/classes/Makefile.am 1.10:
                   18417:        * src/classes/Makefile.am 1.11:
                   18418:        * src/classes/Makefile.am 1.12:
                   18419:        * src/classes/Makefile.am 1.9:
                   18420:        * src/main/pa_sql_driver_manager.C 1.20:
                   18421:        * src/targets/cgi/pa_pool.C 1.12:
                   18422:                classes/.am
                   18423: 
                   18424:        * src/main/untaint.C 1.50:
                   18425:        * src/targets/cgi/pa_pool.C 1.13:
                   18426:        * src/targets/cgi/parser3.C 1.84:
                   18427:                fixed bug in pre html untaint, wrong size used, 4* mem wasted
                   18428: 
                   18429:        * src/classes/string.C 1.51:
                   18430:        * src/main/pa_string.C 1.88:
                   18431:                z
                   18432: 
                   18433:        * src/include/pa_string.h 1.94:
                   18434:        * src/main/untaint.C 1.51:
                   18435:        * src/targets/cgi/pa_pool.C 1.14:
                   18436:                introducing String::cstr_bufsize, returns just size+1 for as_is
                   18437:                target.
                   18438: 
                   18439:        * src/classes/Makefile.in 1.4:
                   18440:                clean
                   18441: 
                   18442: 2001-05-18  parser
                   18443:        * src/Makefile.in 1.3:
                   18444:        * src/classes/Makefile.in 1.3:
                   18445:        * src/include/pa_config_auto.h.in 1.3:
                   18446:        * src/main/Makefile.in 1.3:
                   18447:        * src/targets/Makefile.in 1.4:
                   18448:        * src/targets/apache13/Makefile.in 1.3:
                   18449:        * src/targets/cgi/Makefile.in 1.3:
                   18450:        * src/targets/cgi/pa_pool.C 1.11:
                   18451:        * src/types/Makefile.in 1.3:
                   18452:                .am pa_threads.C ins
                   18453: 
                   18454:        * src/targets/cgi/Makefile.am 1.8:
                   18455:                .am pa_threads.C added
                   18456: 
                   18457: 2001-05-17  parser
                   18458:        * src/include/pa_hash.h 1.40:
                   18459:        * src/main/execute.C 1.158:
                   18460:                removed /*SYNCHRONIZED*/  from hash.h
                   18461: 
                   18462:        * src/include/pa_array.h 1.41:
                   18463:        * src/include/pa_common.h 1.44:
                   18464:        * src/include/pa_config_fixed.h 1.8:
                   18465:        * src/include/pa_config_includes.h 1.8:
                   18466:        * src/include/pa_exception.h 1.12:
                   18467:        * src/include/pa_exec.h 1.2:
                   18468:        * src/include/pa_globals.h 1.54:
                   18469:        * src/include/pa_hash.h 1.41:
                   18470:        * src/include/pa_opcode.h 1.2:
                   18471:        * src/include/pa_pool.h 1.52:
                   18472:        * src/include/pa_request.h 1.88:
                   18473:        * src/include/pa_sapi.h 1.9:
                   18474:        * src/include/pa_socks.h 1.3:
                   18475:        * src/include/pa_sql_connection.h 1.7:
                   18476:        * src/include/pa_stack.h 1.9:
                   18477:        * src/include/pa_string.h 1.93:
                   18478:        * src/include/pa_table.h 1.33:
                   18479:        * src/include/pa_threads.h 1.14:
                   18480:                #include "pa_config_includes.h"
                   18481:                in all headers
                   18482: 
                   18483:        * src/include/pa_request.h 1.89:
                   18484:        * src/main/execute.C 1.159:
                   18485:        * src/main/pa_request.C 1.131:
                   18486:                ANTI_ENDLESS_EXECUTE_RECOURSION
                   18487: 
                   18488:        * src/classes/op.C 1.20:
                   18489:        * src/include/pa_config_fixed.h 1.10:
                   18490:        * src/include/pa_sql_connection.h 1.8:
                   18491:        * src/include/pa_sql_driver_manager.h 1.5:
                   18492:        * src/main/pa_sql_driver_manager.C 1.15:
                   18493:                found problem at last: 2connections own 1driver and
                   18494:                set_services fight for driver::fservices. before fix
                   18495: 
                   18496:        * src/main/execute.C 1.160:
                   18497:        * src/types/pa_vmethod_frame.h 1.9:
                   18498:                endless recursion line no
                   18499: 
                   18500:        * src/classes/classes.h 1.8:
                   18501:        * src/include/pa_sql_connection.h 1.10:
                   18502:        * src/include/pa_sql_driver_manager.h 1.7:
                   18503:        * src/main/pa_sql_driver_manager.C 1.17:
                   18504:                cache expiration[use SQL_Driver::disconnect]
                   18505: 
                   18506:        * src/include/pa_config_fixed.h 1.9:
                   18507:        * src/include/pa_threads.h 1.16:
                   18508:        * src/targets/cgi/pa_threads.C 1.1:
                   18509:        * src/targets/cgi/parser3.dsp 1.18:
                   18510:        * src/targets/isapi/pa_threads.C 1.1:
                   18511:        * src/targets/isapi/parser3isapi.dsp 1.14:
                   18512:                added pa_threads.C
                   18513: 
                   18514:        * src/classes/image.C 1.27:
                   18515:        * src/include/pa_sql_driver_manager.h 1.4:
                   18516:        * src/main/pa_sql_driver_manager.C 1.14:
                   18517:        * src/main/pa_string.C 1.87:
                   18518:                wrong includes order prevented sqlmanager to see MULTYTHREAD define
                   18519: 
                   18520:        * src/main/pa_table.C 1.31:
                   18521:                table.locate current restored on "not found"
                   18522: 
                   18523:        * src/include/pa_threads.h 1.15:
                   18524:                removed targets/parser
                   18525: 
                   18526:        * src/classes/op.C 1.19:
                   18527:        * src/include/pa_sql_connection.h 1.6:
                   18528:        * src/main/pa_sql_driver_manager.C 1.12:
                   18529:        * src/sql/pa_sql_driver.h 1.9:
                   18530:                connection from cache ->set_services(&services);
                   18531: 
                   18532:        * src/include/pa_config_fixed.h 1.7:
                   18533:        * src/include/pa_threads.h 1.13:
                   18534:        * src/main/pa_sql_driver_manager.C 1.13:
                   18535:                SYNCHRONIZED moved closer to caches put/gets
                   18536: 
                   18537:        * src/classes/string.C 1.50:
                   18538:        * src/include/pa_config_fixed.h 1.11:
                   18539:        * src/include/pa_config_includes.h 1.9:
                   18540:        * src/main/compile.y 1.134:
                   18541:        * src/main/compile_tools.h 1.40:
                   18542:        * src/main/execute.C 1.161:
                   18543:        * src/main/pa_array.C 1.35:
                   18544:        * src/main/pa_common.C 1.53:
                   18545:        * src/main/pa_dir.C 1.3:
                   18546:        * src/main/pa_hash.C 1.35:
                   18547:        * src/main/pa_pool.C 1.18:
                   18548:        * src/main/untaint.C 1.49:
                   18549:        * src/types/pa_vcookie.C 1.21:
                   18550:        * src/types/pa_vfile.C 1.17:
                   18551:        * src/types/pa_vform.C 1.29:
                   18552:                #include "pa_config_includes.h"
                   18553:                removed from most .C
                   18554: 
                   18555:        * src/doc/html2chm.cmd 1.2:
                   18556:                z
                   18557: 
                   18558:        * src/doc/chm.cmd 1.7:
                   18559:        * src/doc/doxygen.cmd 1.7:
                   18560:        * src/doc/html2chm.cmd 1.1:
                   18561:        * src/doc/sources2html.cmd 1.1:
                   18562:        * src/doc/view.cmd 1.3:
                   18563:        * src/doc/view_chm.cmd 1.1:
                   18564:        * src/doc/view_html.cmd 1.1:
                   18565:                doc cmds
                   18566: 
                   18567:        * src/main/pa_sql_driver_manager.C 1.19:
                   18568:                moved expiration to get_connection_from_cache
                   18569: 
                   18570:        * src/main/pa_sql_driver_manager.C 1.18:
                   18571:                cache expiration bf
                   18572: 
                   18573:        * src/classes/op.C 1.21:
                   18574:        * src/include/pa_sql_connection.h 1.9:
                   18575:        * src/include/pa_sql_driver_manager.h 1.6:
                   18576:        * src/main/pa_sql_driver_manager.C 1.16:
                   18577:        * src/sql/pa_sql_driver.h 1.10:
                   18578:                fixed problem at last: 2connections own 1driver and
                   18579:                set_services fight for driver::fservices. before fix
                   18580: 
                   18581: 2001-05-16  parser
                   18582:        * src/include/pa_array.h 1.39:
                   18583:        * src/include/pa_string.h 1.92:
                   18584:        * src/main/execute.C 1.157:
                   18585:        * src/main/pa_array.C 1.33:
                   18586:        * src/targets/cgi/pa_pool.C 1.9:
                   18587:        * src/targets/cgi/parser3.C 1.81:
                   18588:                array debugged; adjusted
                   18589: 
                   18590:        * src/include/pa_array.h 1.40:
                   18591:        * src/main/pa_array.C 1.34:
                   18592:        * src/targets/cgi/parser3.C 1.82:
                   18593:                removed array debug. before vstring rebasing
                   18594: 
                   18595:        * src/main/pa_sql_driver_manager.C 1.11:
                   18596:        * src/main/pa_string.C 1.86:
                   18597:                SQL_Driver_manager line no for connect/charset errors
                   18598: 
                   18599:        * src/targets/cgi/parser3.C 1.83:
                   18600:                z
                   18601: 
                   18602:        * src/include/pa_pool.h 1.51:
                   18603:        * src/targets/cgi/pa_pool.C 1.10:
                   18604:                removed pool debug, #ifdefed some.
                   18605:                would debug later, on more precise sample than stupid:
                   18606:                @main[]
                   18607:                $name[$z[]]
                   18608:                ^for[i](0;10000-2){
                   18609:                $tail[9994]
                   18610:                $name.$tail[$tail!]
                   18611:                $name.$tail
                   18612:                }
                   18613:                ok3
                   18614: 
                   18615: 2001-05-15  parser
                   18616:        * src/targets/cgi/pa_pool.C 1.6:
                   18617:        * src/targets/cgi/parser3.C 1.78:
                   18618:                main loss here: 5673321/     70041=        81
                   18619: 
                   18620:        * src/include/pa_pool.h 1.50:
                   18621:        * src/include/pa_string.h 1.89:
                   18622:        * src/main/pa_string.C 1.83:
                   18623:        * src/targets/cgi/pa_pool.C 1.7:
                   18624:        * src/targets/cgi/parser3.C 1.79:
                   18625:                string fixed bug with fullchunk cmps
                   18626: 
                   18627:        * src/include/pa_string.h 1.90:
                   18628:        * src/main/pa_string.C 1.84:
                   18629:        * src/targets/cgi/pa_pool.C 1.8:
                   18630:        * src/targets/cgi/parser3.C 1.80:
                   18631:                think that all must grow lineary, not exponentialy
                   18632: 
                   18633:        * src/include/pa_array.h 1.38:
                   18634:        * src/include/pa_string.h 1.91:
                   18635:        * src/main/pa_array.C 1.32:
                   18636:        * src/main/pa_string.C 1.85:
                   18637:                string+array made linear grows
                   18638: 
                   18639:        * src/include/pa_string.h 1.88:
                   18640:        * src/targets/cgi/pa_pool.C 1.5:
                   18641:        * src/targets/cgi/parser3.C 1.77:
                   18642:                detected huge mem allocation: size/times malloc 27809390/368771
                   18643:                 calloc 3232/83. would test now
                   18644: 
                   18645:        * src/classes/random.C 1.12:
                   18646:        * src/main/compile.y 1.133:
                   18647:        * src/main/execute.C 1.156:
                   18648:        * src/main/pa_request.C 1.130:
                   18649:        * src/types/pa_value.h 1.60:
                   18650:        * src/types/pa_vmethod_frame.h 1.8:
                   18651:                numbered params had wrong name - for instance: bad error
                   18652:                message in ^for[] bad body type. fixed
                   18653: 
                   18654: 2001-05-14  parser
                   18655:        * src/classes/string.C 1.49:
                   18656:        * src/include/pa_string.h 1.87:
                   18657:        * src/main/pa_string.C 1.82:
                   18658:        * src/main/untaint.C 1.48:
                   18659:                ^string.upper|lower[]
                   18660: 
                   18661: 2001-05-11  paf
                   18662:        * src/classes/classes.cmd 1.2:
                   18663:        * src/classes/gawk.exe 1.2:
                   18664:        * src/classes/ls.exe 1.2:
                   18665:        * src/main/bison.exe 1.2:
                   18666:        * src/targets/isapi/KILL.EXE 1.2:
                   18667:        * src/targets/isapi/PSTAT.EXE 1.2:
                   18668:        * src/targets/isapi/istart.cmd 1.2:
                   18669:        * src/targets/isapi/istop.cmd 1.2:
                   18670:        * src/targets/isapi/kill.pl 1.2:
                   18671:                moved win32 helpers to /win32tools
                   18672: 
                   18673: 2001-05-11  parser
                   18674:        * src/main/main.dsp 1.99:
                   18675:        * src/targets/isapi/parser3isapi.dsp 1.13:
                   18676:                fixed some .dsp for win32tools
                   18677: 
                   18678:        * src/classes/double.C 1.28:
                   18679:        * src/classes/image.C 1.26:
                   18680:        * src/classes/op.C 1.18:
                   18681:        * src/classes/string.C 1.48:
                   18682:        * src/classes/table.C 1.80:
                   18683:        * src/classes/unknown.C 1.7:
                   18684:        * src/main/execute.C 1.155:
                   18685:        * src/types/pa_value.h 1.59:
                   18686:        * src/types/pa_vbool.h 1.10:
                   18687:        * src/types/pa_vdouble.h 1.21:
                   18688:        * src/types/pa_vint.h 1.22:
                   18689:        * src/types/pa_vstring.h 1.26:
                   18690:        * src/types/pa_vunknown.h 1.13:
                   18691:                op: MAX_LOOPS
                   18692:                as_int
                   18693: 
                   18694: 2001-05-10  paf
                   18695:        * src/doc/doxygen.cmd 1.5:
                   18696:        * src/main/compile.y 1.131:
                   18697:        * src/types/pa_vobject.h 1.9:
                   18698:                grammar: priorities changes [lowerd && prior]
                   18699:                vobject: now first fields, next methods
                   18700: 
                   18701:        * src/main/pa_request.C 1.129:
                   18702:        * src/types/pa_vrequest.C 1.6:
                   18703:                op configured
                   18704: 
                   18705:        * src/Makefile.in 1.2:
                   18706:        * src/classes/Makefile.in 1.2:
                   18707:        * src/include/pa_config_auto.h.in 1.2:
                   18708:        * src/include/pa_config_fixed.h 1.6:
                   18709:        * src/include/pa_config_includes.h 1.6:
                   18710:        * src/main/Makefile.in 1.2:
                   18711:        * src/targets/Makefile.in 1.3:
                   18712:        * src/targets/apache13/Makefile.in 1.2:
                   18713:        * src/targets/cgi/Makefile.in 1.2:
                   18714:        * src/types/Makefile.in 1.2:
                   18715:                inline wonders
                   18716: 
                   18717:        * src/main/compile.y 1.132:
                   18718:                @end grammar: allowed zero strings in control menthod
                   18719: 
                   18720:        * src/types/pa_value.h 1.58:
                   18721:        * src/types/pa_vclass.h 1.16:
                   18722:        * src/types/pa_vstateless_class.h 1.14:
                   18723:        * src/types/pa_vstateless_object.h 1.9:
                   18724:                changed priority: field before method  lookup in vclass & vobject
                   18725: 
                   18726:        * src/include/pa_common.h 1.43:
                   18727:        * src/include/pa_config_includes.h 1.7:
                   18728:                inline undefed for C++, that's all
                   18729: 
                   18730:        * src/classes/Makefile.am 1.8:
                   18731:        * src/classes/hash.C 1.1:
                   18732:        * src/doc/doxygen.cfg 1.11:
                   18733:        * src/doc/doxygen.cmd 1.6:
                   18734:                hash.C added
                   18735: 
                   18736: 2001-05-08  paf
                   18737:        * src/classes/table.C 1.76:
                   18738:                table:hash always hash of hash now
                   18739: 
                   18740:        * src/classes/op.C 1.15:
                   18741:        * src/classes/table.C 1.72:
                   18742:        * src/main/main.dsp 1.97:
                   18743:        * src/types/pa_vtable.h 1.21:
                   18744:                removed table:find. table:locate and op:eval now return bool
                   18745: 
                   18746:        * src/classes/table.C 1.75:
                   18747:                table:empty return bool now
                   18748: 
                   18749:        * src/classes/table.C 1.79:
                   18750:        * src/types/pa_value.h 1.57:
                   18751:        * src/types/pa_vhash.h 1.14:
                   18752:        * src/types/pa_vmethod_frame.h 1.7:
                   18753:                hash:default works at last!
                   18754: 
                   18755:        * src/main/pa_table.C 1.30:
                   18756:                table columnname2item on nameless ignored bark=false. fixed
                   18757: 
                   18758:        * src/classes/op.C 1.17:
                   18759:        * src/types/pa_vtable.h 1.22:
                   18760:                allowed $table.2342734 returns vunknown
                   18761: 
                   18762:        * src/classes/table.C 1.74:
                   18763:        * src/doc/chm.cmd 1.6:
                   18764:        * src/include/pa_array.h 1.37:
                   18765:        * src/include/pa_table.h 1.32:
                   18766:        * src/main/pa_table.C 1.29:
                   18767:        * src/types/pa_value.h 1.56:
                   18768:        * src/types/pa_vtable.h 1.23:
                   18769:                table:hash
                   18770: 
                   18771:        * src/doc/chm.cmd 1.5:
                   18772:        * src/main/execute.C 1.154:
                   18773:        * src/types/pa_value.h 1.55:
                   18774:                wrong pool in method checkparams again. fixed
                   18775: 
                   18776:        * src/classes/double.C 1.27:
                   18777:        * src/classes/int.C 1.24:
                   18778:        * src/classes/op.C 1.16:
                   18779:        * src/classes/string.C 1.47:
                   18780:                int,double,string:int[] double[] string:length[] results now
                   18781:                have hames
                   18782: 
                   18783:        * src/classes/table.C 1.77:
                   18784:                z
                   18785: 
                   18786:        * src/classes/mail.C 1.28:
                   18787:        * src/classes/table.C 1.78:
                   18788:        * src/doc/doxygen.cmd 1.4:
                   18789:        * src/main/main.dsp 1.98:
                   18790:        * src/types/pa_vhash.h 1.13:
                   18791:        * src/types/pa_vstateless_class.h 1.13:
                   18792:                hash:default
                   18793: 
                   18794:        * src/classes/table.C 1.73:
                   18795:                table:record have name
                   18796: 
                   18797: 2001-05-07  paf
                   18798:        * src/types/pa_value.h 1.51:
                   18799:        * src/types/pa_vtable.h 1.17:
                   18800:                table: fields, then methods.  so to enable 'dir' fields & co.
                   18801: 
                   18802:        * src/main/execute.C 1.153:
                   18803:                ^var[^class:var.method[]] is not constructor now
                   18804: 
                   18805:        * src/main/compile.y 1.130:
                   18806:                grammar: @end
                   18807: 
                   18808:        * src/doc/chm.cmd 1.4:
                   18809:                cmd
                   18810: 
                   18811:        * src/doc/ClassExample2.dox 1.3:
                   18812:        * src/doc/aliased.dox 1.3:
                   18813:        * src/doc/chm.cmd 1.2:
                   18814:        * src/include/code.h 1.29:
                   18815:        * src/include/pa_opcode.h 1.1:
                   18816:        * src/main/compile.C 1.36:
                   18817:        * src/main/compile_tools.h 1.39:
                   18818:        * src/main/execute.C 1.152:
                   18819:        * src/types/pa_value.h 1.53:
                   18820:        * src/types/pa_vbool.h 1.9:
                   18821:        * src/types/pa_vclass.h 1.15:
                   18822:        * src/types/pa_vcode_frame.h 1.4:
                   18823:        * src/types/pa_vcookie.h 1.10:
                   18824:        * src/types/pa_vdouble.h 1.20:
                   18825:        * src/types/pa_venv.h 1.16:
                   18826:        * src/types/pa_vfile.h 1.26:
                   18827:        * src/types/pa_vform.h 1.20:
                   18828:        * src/types/pa_vhash.h 1.12:
                   18829:        * src/types/pa_vimage.h 1.13:
                   18830:        * src/types/pa_vint.h 1.21:
                   18831:        * src/types/pa_vjunction.h 1.6:
                   18832:        * src/types/pa_vmethod_frame.h 1.6:
                   18833:        * src/types/pa_vobject.h 1.8:
                   18834:        * src/types/pa_vrequest.h 1.10:
                   18835:        * src/types/pa_vresponse.h 1.10:
                   18836:        * src/types/pa_vstateless_class.h 1.12:
                   18837:        * src/types/pa_vstring.h 1.25:
                   18838:        * src/types/pa_vtable.h 1.20:
                   18839:        * src/types/pa_vunknown.h 1.12:
                   18840:        * src/types/pa_wcontext.h 1.15:
                   18841:        * src/types/pa_wwrapper.h 1.9:
                   18842:                pa_code.h
                   18843: 
                   18844:        * src/include/pa_table.h 1.30:
                   18845:        * src/main/pa_table.C 1.27:
                   18846:        * src/types/pa_value.h 1.52:
                   18847:        * src/types/pa_vtable.h 1.18:
                   18848:                table: fields, then methods.  so to enable 'dir' fields & co. more
                   18849: 
                   18850:        * src/classes/string.C 1.45:
                   18851:        * src/classes/table.C 1.71:
                   18852:        * src/doc/ClassExample1.dox 1.2:
                   18853:        * src/doc/ClassExample2.dox 1.2:
                   18854:        * src/doc/ClassExample3.dox 1.2:
                   18855:        * src/doc/aliased.dox 1.2:
                   18856:        * src/doc/class.dox 1.2:
                   18857:        * src/doc/compiler.dox 1.2:
                   18858:        * src/doc/doxygen.cfg 1.10:
                   18859:        * src/doc/doxygen.cmd 1.2:
                   18860:        * src/doc/executor.dox 1.2:
                   18861:        * src/doc/index.dox 1.3:
                   18862:        * src/doc/methoded.dox 1.2:
                   18863:        * src/doc/module.dox 1.2:
                   18864:        * src/doc/object.dox 1.2:
                   18865:        * src/doc/pooled.dox 1.2:
                   18866:        * src/doc/string.dox 1.2:
                   18867:        * src/doc/targets.dox 1.2:
                   18868:        * src/doc/value.dox 1.2:
                   18869:        * src/include/code.h 1.28:
                   18870:        * src/include/pa_hash.h 1.39:
                   18871:        * src/include/pa_string.h 1.86:
                   18872:        * src/main/pa_request.C 1.128:
                   18873:        * src/main/pa_sql_driver_manager.C 1.10:
                   18874:        * src/types/pa_vjunction.h 1.5:
                   18875:        * src/types/pa_vtable.h 1.19:
                   18876:                dox, split by not clean parts also
                   18877: 
                   18878:        * src/classes/image.C 1.25:
                   18879:        * src/classes/mail.C 1.27:
                   18880:        * src/classes/string.C 1.46:
                   18881:        * src/doc/chm.cmd 1.3:
                   18882:        * src/include/pa_table.h 1.31:
                   18883:        * src/main/pa_table.C 1.28:
                   18884:        * src/types/pa_value.h 1.54:
                   18885:                method reported errors on wrong pool
                   18886: 
                   18887:        * src/doc/chm.cmd 1.1:
                   18888:        * src/doc/doxygen.cmd 1.3:
                   18889:        * src/doc/view.cmd 1.2:
                   18890:                dox cmd
                   18891: 
                   18892: 2001-05-04  paf
                   18893:        * src/classes/classes.h 1.7:
                   18894:        * src/classes/double.C 1.26:
                   18895:        * src/classes/file.C 1.36:
                   18896:        * src/classes/form.C 1.11:
                   18897:        * src/classes/image.C 1.24:
                   18898:        * src/classes/int.C 1.23:
                   18899:        * src/classes/mail.C 1.26:
                   18900:        * src/classes/op.C 1.14:
                   18901:        * src/classes/random.C 1.11:
                   18902:        * src/classes/response.C 1.11:
                   18903:        * src/classes/string.C 1.44:
                   18904:        * src/classes/table.C 1.70:
                   18905:        * src/classes/unknown.C 1.6:
                   18906:        * src/doc/doxygen.cfg 1.9:
                   18907:        * src/doc/index.dox 1.2:
                   18908:        * src/main/pa_string.C 1.81:
                   18909:                removed m- method dox
                   18910: 
                   18911:        * src/doc/ClassExample1.dox 1.1:
                   18912:        * src/doc/ClassExample2.dox 1.1:
                   18913:        * src/doc/ClassExample3.dox 1.1:
                   18914:        * src/main/execute.C 1.151:
                   18915:                dox: example1 updated
                   18916: 
                   18917: 2001-05-03  paf
                   18918:        * src/classes/classes.h 1.6:
                   18919:        * src/classes/double.C 1.25:
                   18920:        * src/doc/aliased.dox 1.1:
                   18921:        * src/doc/class.dox 1.1:
                   18922:        * src/doc/compiler.dox 1.1:
                   18923:        * src/doc/doxygen.cfg 1.8:
                   18924:        * src/doc/doxygen.txt 1.6:
                   18925:        * src/doc/executor.dox 1.1:
                   18926:        * src/doc/index.dox 1.1:
                   18927:        * src/doc/methoded.dox 1.1:
                   18928:        * src/doc/module.dox 1.1:
                   18929:        * src/doc/object.dox 1.1:
                   18930:        * src/doc/pooled.dox 1.1:
                   18931:        * src/doc/string.dox 1.1:
                   18932:        * src/doc/targets.dox 1.1:
                   18933:        * src/doc/value.dox 1.1:
                   18934:        * src/main/pa_request.C 1.127:
                   18935:                dox splitted .dox files and added some
                   18936: 
                   18937:        * src/classes/Makefile.am 1.7:
                   18938:        * src/doc/doxygen.txt 1.5:
                   18939:                classes/am
                   18940: 
                   18941: 2001-05-02  paf
                   18942:        * src/classes/image.C 1.23:
                   18943:        * src/classes/table.C 1.69:
                   18944:                table:dir result are not tainted by file_name  language now
                   18945: 
                   18946: 2001-04-28  paf
                   18947:        * src/classes/classes.inc 1.5:
                   18948:                removed classes.inc
                   18949: 
                   18950:        * src/classes/classes.C 1.3:
                   18951:        * src/classes/classes.h 1.3:
                   18952:        * src/classes/file.C 1.33:
                   18953:        * src/classes/form.C 1.5:
                   18954:        * src/classes/mail.C 1.24:
                   18955:        * src/include/pa_request.h 1.85:
                   18956:        * src/main/pa_request.C 1.124:
                   18957:                configure started
                   18958: 
                   18959:        * src/classes/file.C [reorganize_user_classes] 1.31.2.5:
                   18960:        * src/classes/table.C [reorganize_user_classes] 1.65.2.4:
                   18961:        * src/main/compile.y [reorganize_user_classes] 1.127.2.2:
                   18962:        * src/main/execute.C [reorganize_user_classes] 1.148.2.3:
                   18963:        * src/main/pa_request.C [reorganize_user_classes] 1.122.2.4:
                   18964:        * src/targets/cgi/parser3.C [reorganize_user_classes] 1.72.2.2:
                   18965:        * src/types/pa_vtable.h [reorganize_user_classes] 1.15.2.3:
                   18966:        * src/types/pa_wcontext.h [reorganize_user_classes] 1.12.2.1:
                   18967:                removed ^a.menu{$name} ability. now
                   18968:                $a{^menu{$name}}
                   18969:                or
                   18970:                ^a.menu{$a.name}
                   18971: 
                   18972:        * src/classes/_double.h 1.8:
                   18973:        * src/classes/_file.h 1.5:
                   18974:        * src/classes/_form.h 1.4:
                   18975:        * src/classes/_image.h 1.4:
                   18976:        * src/classes/_int.h 1.8:
                   18977:        * src/classes/_mail.h 1.4:
                   18978:        * src/classes/_op.h 1.6:
                   18979:        * src/classes/_random.h 1.4:
                   18980:        * src/classes/_response.h 1.5:
                   18981:        * src/classes/_string.h 1.10:
                   18982:        * src/classes/_table.h 1.7:
                   18983:        * src/classes/_unknown.h 1.3:
                   18984:        * src/classes/classes.C 1.2:
                   18985:        * src/classes/classes.h 1.2:
                   18986:        * src/classes/classes.inc 1.1:
                   18987:        * src/classes/double.C 1.22:
                   18988:        * src/classes/exec.C 1.4:
                   18989:        * src/classes/file.C 1.32:
                   18990:        * src/classes/form.C 1.4:
                   18991:        * src/classes/image.C 1.22:
                   18992:        * src/classes/int.C 1.20:
                   18993:        * src/classes/mail.C 1.23:
                   18994:        * src/classes/op.C 1.10:
                   18995:        * src/classes/random.C 1.10:
                   18996:        * src/classes/response.C 1.8:
                   18997:        * src/classes/string.C 1.41:
                   18998:        * src/classes/table.C 1.66:
                   18999:        * src/classes/unknown.C 1.3:
                   19000:        * src/include/pa_globals.h 1.51:
                   19001:        * src/include/pa_request.h 1.84:
                   19002:        * src/main/compile.y 1.129:
                   19003:        * src/main/execute.C 1.149:
                   19004:        * src/main/main.dsp 1.93:
                   19005:        * src/main/pa_globals.C 1.57:
                   19006:        * src/main/pa_request.C 1.123:
                   19007:        * src/targets/cgi/parser3.C 1.73:
                   19008:        * src/targets/isapi/parser3isapi.C 1.32:
                   19009:        * src/types/pa_value.h 1.50:
                   19010:        * src/types/pa_vcookie.h 1.9:
                   19011:        * src/types/pa_vdouble.h 1.17:
                   19012:        * src/types/pa_venv.h 1.15:
                   19013:        * src/types/pa_vfile.h 1.23:
                   19014:        * src/types/pa_vform.C 1.28:
                   19015:        * src/types/pa_vform.h 1.17:
                   19016:        * src/types/pa_vimage.h 1.10:
                   19017:        * src/types/pa_vint.h 1.18:
                   19018:        * src/types/pa_vrequest.h 1.9:
                   19019:        * src/types/pa_vresponse.h 1.9:
                   19020:        * src/types/pa_vstateless_class.h 1.11:
                   19021:        * src/types/pa_vstring.h 1.24:
                   19022:        * src/types/pa_vtable.h 1.16:
                   19023:        * src/types/pa_vunknown.h 1.11:
                   19024:        * src/types/pa_wcontext.h 1.13:
                   19025:                Methoded reorganized. todo: methoded-configure
                   19026: 
                   19027:        * src/classes/classes.inc 1.4:
                   19028:        * src/main/Makefile.am 1.12:
                   19029:                removed pa_methoded from .am
                   19030: 
                   19031:        * src/main/execute.C 1.150:
                   19032:        * src/types/pa_wcontext.h 1.14:
                   19033:                Methoded reorganized 2. todo: methoded-configure
                   19034: 
                   19035:        * src/classes/Makefile.am 1.4:
                   19036:        * src/classes/classes.awk 1.1:
                   19037:        * src/classes/classes.cmd 1.1:
                   19038:        * src/classes/classes.inc 1.2:
                   19039:        * src/classes/gawk.exe 1.1:
                   19040:        * src/classes/ls.exe 1.1:
                   19041:        * src/main/bison.exe 1.1:
                   19042:                classes.inc autogenerator
                   19043: 
                   19044:        * src/classes/form.C 1.6:
                   19045:        * src/include/pa_request.h 1.86:
                   19046:        * src/main/pa_request.C 1.125:
                   19047:                about to move configured data to special request hash
                   19048: 
                   19049:        * src/classes/form.C 1.7:
                   19050:        * src/classes/mail.C 1.25:
                   19051:        * src/classes/op.C 1.11:
                   19052:        * src/include/pa_globals.h 1.52:
                   19053:        * src/include/pa_request.h 1.87:
                   19054:        * src/main/pa_globals.C 1.58:
                   19055:        * src/main/pa_request.C 1.126:
                   19056:                moved some configured data to request::classes_conf
                   19057:                moved some string crations from globals to M...
                   19058: 
1.24      paf      19059:        * src/classes/Makefile.am 1.5:
                   19060:        * src/main/main.dsp 1.95:
                   19061:                classes/Makefile.am
                   19062: 
1.15      paf      19063:        * src/classes/classes.C 1.4:
                   19064:        * src/classes/classes.h 1.4:
                   19065:        * src/classes/double.C 1.23:
                   19066:        * src/classes/file.C 1.34:
                   19067:        * src/classes/form.C 1.9:
                   19068:        * src/classes/int.C 1.21:
                   19069:        * src/classes/op.C 1.12:
                   19070:        * src/classes/response.C 1.9:
                   19071:        * src/classes/string.C 1.42:
                   19072:        * src/classes/table.C 1.67:
                   19073:        * src/classes/unknown.C 1.4:
                   19074:        * src/include/pa_methoded.h 1.1:
                   19075:        * src/main/Makefile.am 1.11:
                   19076:        * src/main/main.dsp 1.94:
                   19077:        * src/main/pa_methoded.C 1.1:
                   19078:        * src/targets/cgi/parser3.C 1.75:
                   19079:        * src/types/pa_vdouble.h 1.18:
                   19080:        * src/types/pa_vfile.h 1.24:
                   19081:        * src/types/pa_vform.h 1.18:
                   19082:        * src/types/pa_vimage.h 1.11:
                   19083:        * src/types/pa_vint.h 1.19:
                   19084:                classes/classes renamet to include|main/pa_methoded
                   19085: 
                   19086:        * src/include/pa_string.h 1.85:
                   19087:        * src/main/pa_globals.C 1.60:
                   19088:        * src/main/untaint.C 1.47:
                   19089:        * src/targets/cgi/parser3.C 1.74:
                   19090:        * src/targets/isapi/parser3isapi.C 1.33:
                   19091:                z
                   19092: 
                   19093:        * src/classes/Makefile.am 1.6:
                   19094:        * src/classes/classes.C 1.5:
                   19095:        * src/classes/classes.h 1.5:
                   19096:        * src/classes/classes.inc 1.3:
                   19097:        * src/classes/double.C 1.24:
                   19098:        * src/classes/file.C 1.35:
                   19099:        * src/classes/form.C 1.10:
                   19100:        * src/classes/int.C 1.22:
                   19101:        * src/classes/op.C 1.13:
                   19102:        * src/classes/response.C 1.10:
                   19103:        * src/classes/string.C 1.43:
                   19104:        * src/classes/table.C 1.68:
                   19105:        * src/classes/unknown.C 1.5:
                   19106:        * src/include/pa_methoded.h 1.2:
                   19107:        * src/main/main.dsp 1.96:
                   19108:        * src/main/pa_methoded.C 1.2:
                   19109:        * src/targets/cgi/parser3.C 1.76:
                   19110:        * src/types/pa_vdouble.h 1.19:
                   19111:        * src/types/pa_vfile.h 1.25:
                   19112:        * src/types/pa_vform.h 1.19:
                   19113:        * src/types/pa_vimage.h 1.12:
                   19114:        * src/types/pa_vint.h 1.20:
                   19115:                renamed pa_methoded back to classes/classes.h
                   19116: 
                   19117:        * src/classes/_string.h [reorganize_user_classes] 1.9.2.1:
                   19118:        * src/classes/classes.C [reorganize_user_classes] 1.1.2.2:
                   19119:        * src/classes/classes.h [reorganize_user_classes] 1.1.2.2:
                   19120:        * src/classes/double.C [reorganize_user_classes] 1.21.4.2:
                   19121:        * src/classes/exec.C [reorganize_user_classes] 1.3.4.1:
                   19122:        * src/classes/file.C [reorganize_user_classes] 1.31.2.4:
                   19123:        * src/classes/form.C [reorganize_user_classes] 1.3.4.2:
                   19124:        * src/classes/image.C [reorganize_user_classes] 1.21.2.4:
                   19125:        * src/classes/int.C [reorganize_user_classes] 1.19.4.3:
                   19126:        * src/classes/mail.C [reorganize_user_classes] 1.22.2.3:
                   19127:        * src/classes/op.C [reorganize_user_classes] 1.9.2.3:
                   19128:        * src/classes/random.C [reorganize_user_classes] 1.9.2.3:
                   19129:        * src/classes/response.C [reorganize_user_classes] 1.7.4.3:
                   19130:        * src/classes/string.C [reorganize_user_classes] 1.40.2.3:
                   19131:        * src/classes/table.C [reorganize_user_classes] 1.65.2.3:
                   19132:        * src/classes/unknown.C [reorganize_user_classes] 1.2.4.2:
                   19133:        * src/include/pa_request.h [reorganize_user_classes] 1.83.2.1:
                   19134:        * src/main/compile.y [reorganize_user_classes] 1.127.2.1:
                   19135:        * src/main/execute.C [reorganize_user_classes] 1.148.2.2:
                   19136:        * src/main/pa_globals.C [reorganize_user_classes] 1.56.2.3:
                   19137:        * src/main/pa_request.C [reorganize_user_classes] 1.122.2.3:
                   19138:        * src/types/pa_value.h [reorganize_user_classes] 1.49.4.2:
                   19139:        * src/types/pa_vdouble.h [reorganize_user_classes] 1.16.2.2:
                   19140:        * src/types/pa_vfile.h [reorganize_user_classes] 1.22.2.2:
                   19141:        * src/types/pa_vform.C [reorganize_user_classes] 1.27.2.1:
                   19142:        * src/types/pa_vform.h [reorganize_user_classes] 1.16.2.2:
                   19143:        * src/types/pa_vimage.h [reorganize_user_classes] 1.9.2.2:
                   19144:        * src/types/pa_vint.h [reorganize_user_classes] 1.17.2.2:
                   19145:        * src/types/pa_vresponse.h [reorganize_user_classes] 1.8.4.2:
                   19146:        * src/types/pa_vstring.h [reorganize_user_classes] 1.23.2.2:
                   19147:        * src/types/pa_vtable.h [reorganize_user_classes] 1.15.2.2:
                   19148:        * src/types/pa_vunknown.h [reorganize_user_classes] 1.10.2.2:
                   19149:                beautifying just compiled. todo: debug, configure
                   19150: 
                   19151:        * src/classes/classes.awk 1.2:
                   19152:                skipped classes in .awk
                   19153: 
                   19154:        * src/classes/form.C 1.8:
                   19155:        * src/include/pa_globals.h 1.53:
                   19156:        * src/main/pa_globals.C 1.59:
                   19157:                moved some configured data to request::classes_conf
                   19158:                moved some string crations from globals to M...
                   19159:                [works]
                   19160: 
                   19161: 2001-04-27  paf
                   19162:        * src/main/compile.y 1.128:
                   19163:                serge@ found @CLASS bug. fixed
                   19164: 
                   19165:        * src/classes/_double.h [reorganize_user_classes] 1.7.2.1:
                   19166:        * src/classes/_form.h [reorganize_user_classes] 1.3.2.1:
                   19167:        * src/classes/_int.h [reorganize_user_classes] 1.7.2.1:
                   19168:        * src/classes/_response.h [reorganize_user_classes] 1.4.2.1:
                   19169:        * src/classes/_unknown.h [reorganize_user_classes] 1.2.2.1:
                   19170:        * src/classes/classes.C [reorganize_user_classes] 1.1.2.1:
                   19171:        * src/classes/classes.h [reorganize_user_classes] 1.1.2.1:
                   19172:        * src/classes/double.C [reorganize_user_classes] 1.21.4.1:
                   19173:        * src/classes/file.C [reorganize_user_classes] 1.31.2.2:
                   19174:        * src/classes/form.C [reorganize_user_classes] 1.3.4.1:
                   19175:        * src/classes/image.C [reorganize_user_classes] 1.21.2.2:
                   19176:        * src/classes/int.C [reorganize_user_classes] 1.19.4.2:
                   19177:        * src/classes/mail.C [reorganize_user_classes] 1.22.2.2:
                   19178:        * src/classes/op.C [reorganize_user_classes] 1.9.2.2:
                   19179:        * src/classes/random.C [reorganize_user_classes] 1.9.2.2:
                   19180:        * src/classes/response.C [reorganize_user_classes] 1.7.4.2:
                   19181:        * src/classes/string.C [reorganize_user_classes] 1.40.2.2:
                   19182:        * src/include/pa_globals.h [reorganize_user_classes] 1.50.2.2:
                   19183:        * src/main/main.dsp [reorganize_user_classes] 1.92.2.2:
                   19184:        * src/main/pa_globals.C [reorganize_user_classes] 1.56.2.2:
                   19185:        * src/types/pa_vdouble.h [reorganize_user_classes] 1.16.2.1:
                   19186:        * src/types/pa_vfile.h [reorganize_user_classes] 1.22.2.1:
                   19187:        * src/types/pa_vform.h [reorganize_user_classes] 1.16.2.1:
                   19188:        * src/types/pa_vimage.h [reorganize_user_classes] 1.9.2.1:
                   19189:        * src/types/pa_vint.h [reorganize_user_classes] 1.17.2.1:
                   19190:        * src/types/pa_vresponse.h [reorganize_user_classes] 1.8.4.1:
                   19191:        * src/types/pa_vstring.h [reorganize_user_classes] 1.23.2.1:
                   19192:        * src/types/pa_vtable.h [reorganize_user_classes] 1.15.2.1:
                   19193:        * src/types/pa_vunknown.h [reorganize_user_classes] 1.10.2.1:
                   19194:                beautifying -100
                   19195: 
                   19196:        * src/classes/classes.C 1.1:
                   19197:                file classes.C was initially added on branch
                   19198:                reorganize_user_classes.
                   19199: 
                   19200:        * src/classes/file.C [reorganize_user_classes] 1.31.2.3:
                   19201:        * src/classes/image.C [reorganize_user_classes] 1.21.2.3:
                   19202:        * src/classes/table.C [reorganize_user_classes] 1.65.2.2:
                   19203:        * src/main/execute.C [reorganize_user_classes] 1.148.2.1:
                   19204:        * src/main/pa_request.C [reorganize_user_classes] 1.122.2.2:
                   19205:        * src/types/pa_vstateless_class.h [reorganize_user_classes] 1.10.2.1:
                   19206:                beautifying -99
                   19207: 
                   19208:        * src/classes/_file.h [reorganize_user_classes] 1.4.2.1:
                   19209:        * src/classes/_image.h [reorganize_user_classes] 1.3.2.1:
                   19210:        * src/classes/_mail.h [reorganize_user_classes] 1.3.2.1:
                   19211:        * src/classes/_op.h [reorganize_user_classes] 1.5.2.1:
                   19212:        * src/classes/_random.h [reorganize_user_classes] 1.3.2.1:
                   19213:        * src/classes/_table.h [reorganize_user_classes] 1.6.2.1:
                   19214:        * src/classes/file.C [reorganize_user_classes] 1.31.2.1:
                   19215:        * src/classes/image.C [reorganize_user_classes] 1.21.2.1:
                   19216:        * src/classes/int.C [reorganize_user_classes] 1.19.4.1:
                   19217:        * src/classes/mail.C [reorganize_user_classes] 1.22.2.1:
                   19218:        * src/classes/op.C [reorganize_user_classes] 1.9.2.1:
                   19219:        * src/classes/random.C [reorganize_user_classes] 1.9.2.1:
                   19220:        * src/classes/response.C [reorganize_user_classes] 1.7.4.1:
                   19221:        * src/classes/string.C [reorganize_user_classes] 1.40.2.1:
                   19222:        * src/classes/table.C [reorganize_user_classes] 1.65.2.1:
                   19223:        * src/classes/unknown.C [reorganize_user_classes] 1.2.4.1:
                   19224:        * src/include/pa_globals.h [reorganize_user_classes] 1.50.2.1:
                   19225:        * src/main/main.dsp [reorganize_user_classes] 1.92.2.1:
                   19226:        * src/main/pa_globals.C [reorganize_user_classes] 1.56.2.1:
                   19227:        * src/main/pa_request.C [reorganize_user_classes] 1.122.2.1:
                   19228:        * src/targets/cgi/parser3.C [reorganize_user_classes] 1.72.2.1:
                   19229:        * src/types/pa_value.h [reorganize_user_classes] 1.49.4.1:
                   19230:        * src/types/pa_vcookie.h [reorganize_user_classes] 1.8.2.1:
                   19231:        * src/types/pa_venv.h [reorganize_user_classes] 1.14.2.1:
                   19232:        * src/types/pa_vrequest.h [reorganize_user_classes] 1.8.2.1:
                   19233:                started beautifying
                   19234: 
                   19235:        * src/classes/classes.h 1.1:
                   19236:                file classes.h was initially added on branch
                   19237:                reorganize_user_classes.
                   19238: 
                   19239: 2001-04-26  paf
                   19240:        * src/main/pa_request.C 1.121:
                   19241:        * src/main/pa_string.C 1.80:
                   19242:                z
                   19243: 
                   19244:        * src/classes/_exec.h 1.4:
                   19245:        * src/classes/_image.h 1.3:
                   19246:        * src/classes/image.C 1.21:
                   19247:        * src/classes/mail.C 1.22:
                   19248:        * src/classes/op.C 1.9:
                   19249:        * src/classes/random.C 1.9:
                   19250:        * src/classes/string.C 1.40:
                   19251:        * src/classes/table.C 1.65:
                   19252:        * src/doc/doxygen.cfg 1.5:
                   19253:        * src/doc/doxygen.cfg 1.6:
                   19254:        * src/doc/doxygen.cfg 1.7:
                   19255:        * src/doc/doxygen.txt 1.4:
                   19256:        * src/include/pa_array.h 1.36:
                   19257:        * src/include/pa_config_fixed.h 1.5:
                   19258:        * src/include/pa_config_includes.h 1.5:
                   19259:        * src/include/pa_dir.h 1.3:
                   19260:        * src/include/pa_socks.h 1.2:
                   19261:        * src/include/pa_string.h 1.84:
                   19262:        * src/main/compile_tools.h 1.38:
                   19263:        * src/main/pa_common.C 1.52:
                   19264:        * src/main/pa_request.C 1.122:
                   19265:        * src/main/pa_socks.C 1.3:
                   19266:        * src/sql/pa_sql_driver.h 1.8:
                   19267:        * src/targets/cgi/pa_pool.C 1.4:
                   19268:        * src/types/pa_vbool.h 1.7:
                   19269:        * src/types/pa_vbool.h 1.8:
                   19270:        * src/types/pa_vclass.h 1.13:
                   19271:        * src/types/pa_vclass.h 1.14:
                   19272:        * src/types/pa_vcode_frame.h 1.2:
                   19273:        * src/types/pa_vcode_frame.h 1.3:
                   19274:        * src/types/pa_vcookie.h 1.8:
                   19275:        * src/types/pa_vdouble.h 1.16:
                   19276:        * src/types/pa_venv.h 1.14:
                   19277:        * src/types/pa_vfile.h 1.22:
                   19278:        * src/types/pa_vform.C 1.27:
                   19279:        * src/types/pa_vform.h 1.16:
                   19280:        * src/types/pa_vhash.h 1.11:
                   19281:        * src/types/pa_vimage.C 1.7:
                   19282:        * src/types/pa_vimage.h 1.9:
                   19283:        * src/types/pa_vint.h 1.17:
                   19284:        * src/types/pa_vjunction.h 1.3:
                   19285:        * src/types/pa_vjunction.h 1.4:
                   19286:        * src/types/pa_vmethod_frame.h 1.4:
                   19287:        * src/types/pa_vmethod_frame.h 1.5:
                   19288:        * src/types/pa_vobject.h 1.6:
                   19289:        * src/types/pa_vobject.h 1.7:
                   19290:        * src/types/pa_vrequest.C 1.5:
                   19291:        * src/types/pa_vrequest.h 1.8:
                   19292:        * src/types/pa_vstateless_class.C 1.8:
                   19293:        * src/types/pa_vstateless_class.h 1.10:
                   19294:        * src/types/pa_vstateless_object.h 1.8:
                   19295:        * src/types/pa_vstring.C 1.5:
                   19296:        * src/types/pa_vstring.h 1.23:
                   19297:        * src/types/pa_vtable.h 1.15:
                   19298:        * src/types/pa_vunknown.h 1.10:
                   19299:        * src/types/pa_wcontext.C 1.6:
                   19300:        * src/types/pa_wcontext.h 1.12:
                   19301:        * src/types/pa_wwrapper.h 1.7:
                   19302:        * src/types/pa_wwrapper.h 1.8:
                   19303:                code documentation ++
                   19304: 
                   19305:        * src/include/pa_common.h 1.42:
                   19306:        * src/include/pa_types.h 1.25:
                   19307:        * src/main/pa_sql_driver_manager.C 1.9:
                   19308:                module [and, guess, isapi] connection caching fixed.
                   19309:                request-pooled-url were stored into global connectioncache
                   19310: 
                   19311: 2001-04-25  paf
                   19312:        * src/doc/doxygen.cfg 1.4:
                   19313:        * src/doc/doxygen.txt 1.3:
                   19314:        * src/targets/isapi/parser3isapi.C 1.31:
                   19315:                started doc / [doxygen.txt]
                   19316: 
                   19317:        * src/include/code.h 1.27:
                   19318:        * src/include/pa_common.h 1.41:
                   19319:        * src/main/compile.y 1.127:
                   19320:        * src/main/execute.C 1.148:
                   19321:        * src/main/pa_common.C 1.51:
                   19322:                -d
                   19323: 
                   19324:        * src/classes/file.C 1.31:
                   19325:        * src/main/pa_exec.C 1.5:
                   19326:        * src/targets/cgi/parser3.C 1.72:
                   19327:                illegal call check a bit improved, but still under iis no
                   19328:                mapping of dir with parser allowed!
                   19329: 
                   19330: 2001-04-24  paf
                   19331:        * src/targets/Makefile.in 1.2:
                   19332:        * src/targets/apache13/Makefile.in 1.1:
                   19333:                apache makefile.in s
                   19334: 
                   19335:        * src/targets/Makefile.am 1.5:
                   19336:        * src/targets/apache13/Makefile.am 1.1:
                   19337:                apache module lib .am
                   19338: 
                   19339:        * src/main/pa_exec.C 1.4:
                   19340:                windows32 buildCommand
                   19341: 
                   19342: 2001-04-23  paf
                   19343:        * src/classes/image.C 1.20:
                   19344:        * src/classes/mail.C 1.21:
                   19345:        * src/include/pa_globals.h 1.50:
                   19346:        * src/include/pa_string.h 1.83:
                   19347:        * src/main/pa_exec.C 1.3:
                   19348:        * src/main/pa_request.C 1.119:
                   19349:        * src/main/untaint.C 1.44:
                   19350:                untaint -       @test optimize whitespaces for all but 'html'
                   19351: 
                   19352:        * src/main/untaint.C 1.46:
                   19353:                untaint without charset
                   19354: 
                   19355:        * src/targets/cgi/parser3.C 1.68:
                   19356:                cgi /// @test disable /cgi-bin/parser3/auto.p
                   19357: 
                   19358:        * src/classes/random.C 1.8:
                   19359:        * src/targets/cgi/parser3.C 1.71:
                   19360:                redo failed
                   19361:                /// @test noticed series in isapi, check how initialize_random_class is called! [must be called only once]
                   19362: 
                   19363:        * src/main/untaint.C 1.45:
                   19364:                mail header only once to =?
                   19365: 
                   19366:        * src/classes/mail.C 1.20:
                   19367:        * src/include/pa_hash.h 1.38:
                   19368:        * src/include/pa_string.h 1.82:
                   19369:        * src/main/pa_common.C 1.49:
                   19370:        * src/main/pa_hash.C 1.34:
                   19371:        * src/main/pa_request.C 1.118:
                   19372:        * src/main/untaint.C 1.43:
                   19373:                untaint -       @test mail-header
                   19374: 
                   19375:        * src/include/pa_config_auto.h.in 1.1:
                   19376:                .h.in
                   19377: 
                   19378:        * src/targets/cgi/parser3.C 1.69:
                   19379:                cgi cmdline ver
                   19380: 
                   19381:        * src/main/pa_request.C 1.120:
                   19382:        * src/targets/cgi/parser3.C 1.70:
                   19383:                // @test with commandline start "parser3 a.html" so that ^load
                   19384:                a.cfg] worked! [now doesnt]
                   19385: 
                   19386:        * src/main/execute.C 1.147:
                   19387:                operators first!
                   19388:                so that ^table.menu{^rem{}} would not be 'unknown column'
                   19389: 
                   19390:        * src/include/pa_array.h 1.35:
                   19391:        * src/main/pa_array.C 1.31:
                   19392:        * src/types/pa_vfile.h 1.20:
                   19393:        * src/types/pa_vfile.h 1.21:
                   19394:                vfile fields return type
                   19395: 
                   19396:        * src/Makefile.in 1.1:
                   19397:        * src/classes/Makefile.in 1.1:
                   19398:        * src/main/Makefile.in 1.1:
                   19399:        * src/targets/cgi/Makefile.in 1.1:
                   19400:        * src/types/Makefile.in 1.1:
                   19401:                makefile ins
                   19402: 
                   19403:        * src/main/pa_string.C 1.78:
                   19404:                tested OK
                   19405:                /// @test really @b test: s x m [tested: i & g ]
                   19406: 
                   19407:        * src/targets/Makefile.in 1.1:
                   19408:                makefiles&co
                   19409: 
                   19410:        * src/classes/Makefile 1.2:
                   19411:        * src/main/Makefile 1.2:
                   19412:        * src/targets/cgi/Makefile 1.2:
                   19413:        * src/types/Makefile 1.2:
                   19414:                makefiles removed
                   19415: 
                   19416:        * src/classes/Makefile 1.1:
                   19417:        * src/main/Makefile 1.1:
                   19418:        * src/main/pa_string.C 1.79:
                   19419:        * src/targets/cgi/Makefile 1.1:
                   19420:        * src/types/Makefile 1.1:
                   19421:                configure.in + makefiles
                   19422: 
                   19423:        * src/classes/table.C 1.64:
                   19424:        * src/types/pa_vform.C 1.26:
                   19425:        * src/types/pa_vtable.h 1.14:
                   19426:                /// @test $a.menu{ $a[123] }
                   19427:                and $a.menu{^table:set[]...}
                   19428: 
                   19429:        * src/targets/cgi/Makefile.am 1.5:
                   19430:                liblink
                   19431: 
                   19432:        * src/targets/cgi/Makefile.am 1.6:
                   19433:        * src/targets/cgi/Makefile.am 1.7:
                   19434:                win32 conditional
                   19435: 
                   19436:        * src/include/pa_config_fixed.h 1.4:
                   19437:        * src/include/pa_config_includes.h 1.4:
                   19438:        * src/main/pa_common.C 1.50:
                   19439:                common: file_write /// @test mkdirs  file_delete rmdirs
                   19440: 
                   19441: 2001-04-20  paf
                   19442:        * src/main/untaint.C 1.41:
                   19443:        * src/targets/cgi/parser3.C 1.66:
                   19444:                fixed header "a/a"
                   19445: 
                   19446:        * src/main/untaint.C 1.42:
                   19447:                z
                   19448: 
                   19449:        * src/classes/string.C 1.39:
                   19450:        * src/classes/table.C 1.63:
                   19451:        * src/include/pa_globals.h 1.49:
                   19452:        * src/include/pa_request.h 1.83:
                   19453:        * src/include/pa_string.h 1.81:
                   19454:        * src/main/compile.y 1.126:
                   19455:        * src/main/pa_globals.C 1.56:
                   19456:        * src/main/pa_request.C 1.117:
                   19457:        * src/main/pa_string.C 1.77:
                   19458:        * src/targets/cgi/parser3.C 1.67:
                   19459:                $MAIN:LOCALE
                   19460: 
                   19461: 2001-04-19  paf
                   19462:        * src/main/compile_tools.h 1.37:
                   19463:                $a$b bugfix
                   19464: 
                   19465:        * src/classes/file.C 1.30:
                   19466:        * src/targets/cgi/parser3.C 1.65:
                   19467:                z
                   19468: 
                   19469:        * src/include/pa_common.h 1.39:
                   19470:        * src/main/pa_common.C 1.48:
                   19471:        * src/main/pa_request.C 1.116:
                   19472:        * src/main/untaint.C 1.40:
                   19473:        * src/targets/isapi/parser3isapi.C 1.30:
                   19474:        * src/types/pa_vcookie.C 1.19:
                   19475:                changed urlencode here and in untaint.C to HTTP standard's "
                   19476:                and \" mech
                   19477: 
                   19478:        * src/classes/file.C 1.29:
                   19479:        * src/include/pa_common.h 1.40:
                   19480:        * src/types/pa_vcookie.C 1.20:
                   19481:                done: header to $fields. waits for header '\' tricks
                   19482: 
                   19483:        * src/main/pa_request.C 1.115:
                   19484:        * src/targets/isapi/parser3isapi.C 1.29:
                   19485:                fixed http://alx/~paf/ doesnt load /auto.p
                   19486: 
                   19487: 2001-04-18  paf
                   19488:        * src/main/Makefile.am 1.10:
                   19489:        * src/main/main.dsp 1.92:
                   19490:        * src/targets/cgi/Makefile.am 1.4:
                   19491:                linux @alx
                   19492: 
                   19493:        * src/main/pa_request.C 1.114:
                   19494:                1
                   19495: 
                   19496: 2001-04-17  paf
                   19497:        * src/classes/file.C 1.28:
                   19498:        * src/classes/image.C 1.19:
                   19499:        * src/doc/doxygen.cfg 1.3:
                   19500:        * src/include/pa_sql_connection.h 1.5:
                   19501:        * src/main/pa_sql_driver_manager.C 1.8:
                   19502:        * src/sql/pa_sql_driver.h 1.7:
                   19503:                SQL_Driver_services renamed. doxygen statics enabled
                   19504: 
                   19505:        * src/Makefile.am 1.5:
                   19506:        * src/classes/Makefile.am 1.3:
                   19507:        * src/classes/_double.h 1.7:
                   19508:        * src/classes/_exec.h 1.3:
                   19509:        * src/classes/_file.h 1.4:
                   19510:        * src/classes/_form.h 1.3:
                   19511:        * src/classes/_image.h 1.2:
                   19512:        * src/classes/_int.h 1.7:
                   19513:        * src/classes/_mail.h 1.3:
                   19514:        * src/classes/_op.h 1.5:
                   19515:        * src/classes/_random.h 1.3:
                   19516:        * src/classes/_response.h 1.4:
                   19517:        * src/classes/_string.h 1.9:
                   19518:        * src/classes/_table.h 1.6:
                   19519:        * src/classes/_unknown.h 1.2:
                   19520:        * src/classes/file.C 1.27:
                   19521:        * src/classes/image.C 1.18:
                   19522:        * src/classes/mail.C 1.19:
                   19523:        * src/classes/op.C 1.8:
                   19524:        * src/classes/random.C 1.7:
                   19525:        * src/include/pa_config_fixed.h 1.3:
                   19526:        * src/include/pa_config_includes.h 1.3:
                   19527:        * src/include/pa_hash.h 1.37:
                   19528:        * src/include/pa_sql_driver_manager.h 1.3:
                   19529:        * src/include/pa_version.h 1.2:
                   19530:        * src/main/Makefile.am 1.9:
                   19531:        * src/main/compile.y 1.125:
                   19532:        * src/main/pa_common.C 1.47:
                   19533:        * src/main/pa_exec.C 1.2:
                   19534:        * src/main/pa_socks.C 1.2:
                   19535:        * src/main/pa_sql_driver_manager.C 1.7:
                   19536:        * src/sql/Makefile.am 1.2:
                   19537:        * src/sql/pa_sql_driver.h 1.6:
                   19538:        * src/targets/cgi/Makefile.am 1.3:
                   19539:        * src/targets/cgi/parser3.C 1.64:
                   19540:        * src/types/Makefile.am 1.3:
                   19541:        * src/types/pa_vcookie.C 1.18:
                   19542:        * src/types/pa_vform.C 1.25:
                   19543:        * src/types/pa_vimage.h 1.8:
                   19544:                exec @jav
                   19545: 
                   19546:        * src/include/pa_sql_driver_manager.h [gcc0415] 1.2.2.1:
                   19547:        * src/main/pa_sql_driver_manager.C [gcc0415] 1.6.2.1:
                   19548:        * src/sql/pa_sql_driver.h [gcc0415] 1.5.2.1:
                   19549:        * src/types/pa_vimage.h [gcc0415] 1.7.2.1:
                   19550:                sql driver interface now has initialize(client .so)
                   19551: 
                   19552: 2001-04-16  paf
                   19553:        * src/Makefile.am [gcc0415] 1.4.2.2:
                   19554:                compile2 cygwin
                   19555: 
                   19556:        * src/targets/cgi/Makefile.am [gcc0415] 1.2.2.2:
                   19557:                compile0 jav
                   19558: 
                   19559:        * src/Makefile.am [gcc0415] 1.4.2.1:
                   19560:        * src/classes/Makefile.am [gcc0415] 1.2.2.1:
                   19561:        * src/classes/_double.h [gcc0415] 1.6.2.1:
                   19562:        * src/classes/_exec.h [gcc0415] 1.2.2.1:
                   19563:        * src/classes/_file.h [gcc0415] 1.3.2.1:
                   19564:        * src/classes/_form.h [gcc0415] 1.2.2.1:
                   19565:        * src/classes/_image.h [gcc0415] 1.1.2.1:
                   19566:        * src/classes/_int.h [gcc0415] 1.6.2.1:
                   19567:        * src/classes/_mail.h [gcc0415] 1.2.2.1:
                   19568:        * src/classes/_op.h [gcc0415] 1.4.2.1:
                   19569:        * src/classes/_random.h [gcc0415] 1.2.2.1:
                   19570:        * src/classes/_response.h [gcc0415] 1.3.2.1:
                   19571:        * src/classes/_string.h [gcc0415] 1.8.2.1:
                   19572:        * src/classes/_table.h [gcc0415] 1.5.2.1:
                   19573:        * src/classes/_unknown.h [gcc0415] 1.1.2.1:
                   19574:        * src/classes/image.C [gcc0415] 1.17.2.1:
                   19575:        * src/classes/mail.C [gcc0415] 1.18.2.1:
                   19576:        * src/classes/op.C [gcc0415] 1.7.2.1:
                   19577:        * src/classes/random.C [gcc0415] 1.6.2.1:
                   19578:        * src/include/pa_config_fixed.h [gcc0415] 1.2.2.1:
                   19579:        * src/include/pa_config_includes.h [gcc0415] 1.2.2.1:
                   19580:        * src/include/pa_hash.h [gcc0415] 1.36.2.1:
                   19581:        * src/include/pa_version.h [gcc0415] 1.1.2.1:
                   19582:        * src/main/Makefile.am [gcc0415] 1.8.2.1:
                   19583:        * src/main/compile.y [gcc0415] 1.124.2.1:
                   19584:        * src/main/pa_common.C [gcc0415] 1.46.2.1:
                   19585:        * src/main/pa_exec.C [gcc0415] 1.1.2.1:
                   19586:        * src/sql/Makefile.am [gcc0415] 1.1.2.1:
                   19587:        * src/targets/cgi/Makefile.am [gcc0415] 1.2.2.1:
                   19588:        * src/targets/cgi/parser3.C [gcc0415] 1.63.2.1:
                   19589:        * src/types/Makefile.am [gcc0415] 1.2.2.1:
                   19590:        * src/types/pa_vcookie.C [gcc0415] 1.17.2.1:
                   19591:        * src/types/pa_vform.C [gcc0415] 1.24.2.1:
                   19592:                compile-1
                   19593: 
                   19594:        * src/include/pa_config_includes.h [gcc0415] 1.2.2.2:
                   19595:        * src/main/pa_exec.C [gcc0415] 1.1.2.2:
                   19596:        * src/main/pa_socks.C [gcc0415] 1.1.2.1:
                   19597:        * src/targets/cgi/Makefile.am [gcc0415] 1.2.2.3:
                   19598:                compile1 cygwin
                   19599: 
                   19600: 2001-04-15  paf
                   19601:        * src/classes/op.C 1.5:
                   19602:        * src/include/pa_request.h 1.82:
                   19603:        * src/types/pa_value.h 1.48:
                   19604:        * src/types/pa_vmethod_frame.h 1.3:
                   19605:                MethodParams in op.C
                   19606: 
                   19607:        * src/types/pa_value.h 1.49:
                   19608:                MethodParams !junction
                   19609: 
                   19610:        * src/classes/table.C 1.62:
                   19611:                table:empty +=process
                   19612: 
                   19613:        * src/classes/op.C 1.7:
                   19614:                z
                   19615: 
                   19616:        * src/classes/_string.h 1.8:
                   19617:        * src/classes/double.C 1.21:
                   19618:        * src/classes/file.C 1.26:
                   19619:        * src/classes/image.C 1.17:
                   19620:        * src/classes/int.C 1.19:
                   19621:        * src/classes/mail.C 1.18:
                   19622:        * src/classes/op.C 1.6:
                   19623:        * src/classes/random.C 1.6:
                   19624:        * src/classes/response.C 1.7:
                   19625:        * src/classes/string.C 1.38:
                   19626:        * src/classes/table.C 1.61:
                   19627:        * src/classes/unknown.C 1.2:
                   19628:        * src/main/pa_request.C 1.113:
                   19629:                MethodParams everywhere
                   19630: 
                   19631: 2001-04-12  paf
                   19632:        * src/classes/_unknown.h 1.1:
                   19633:        * src/classes/unknown.C 1.1:
                   19634:        * src/include/pa_globals.h 1.48:
                   19635:        * src/main/main.dsp 1.91:
                   19636:        * src/main/pa_globals.C 1.55:
                   19637:        * src/types/pa_vunknown.h 1.9:
                   19638:                ^unknown:int[]=0 double[]=0
                   19639: 
                   19640:        * src/classes/image.C 1.13:
                   19641:                image:line/fill/rectangle/bar/replace/polygon/polybar
                   19642: 
                   19643:        * src/classes/image.C 1.15:
                   19644:        * src/main/pa_hash.C 1.33:
                   19645:                hash bug fixed
                   19646: 
                   19647:        * src/classes/image.C 1.12:
                   19648:        * src/classes/op.C 1.4:
                   19649:        * src/main/execute.C 1.146:
                   19650:        * src/types/pa_value.h 1.47:
                   19651:        * src/types/pa_vmethod_frame.h 1.2:
                   19652:        * src/types/pa_wcontext.h 1.11:
                   19653:                for var now written not to r.wcontext, but to r.root
                   19654:                cleared "entered_object" state
                   19655: 
                   19656:        * src/classes/image.C 1.16:
                   19657:        * src/types/pa_vimage.h 1.7:
                   19658:                image:font :text
                   19659: 
                   19660:        * src/classes/image.C 1.14:
                   19661:                image:gif now does not have params
                   19662: 
                   19663: 2001-04-11  paf
                   19664:        * src/classes/mail.C 1.17:
                   19665:        * src/classes/op.C 1.3:
                   19666:        * src/targets/cgi/parser3.C 1.63:
                   19667:        * src/types/pa_value.h 1.46:
                   19668:        * src/types/pa_vfile.C 1.15:
                   19669:        * src/types/pa_vfile.h 1.19:
                   19670:        * src/types/pa_vform.C 1.24:
                   19671:        * src/types/pa_vstring.C 1.3:
                   19672:        * src/types/pa_vstring.h 1.22:
                   19673:                forced UL_FILE_NAME of posted file name
                   19674: 
                   19675:        * src/classes/image.C 1.7:
                   19676:        * src/main/execute.C 1.145:
                   19677:        * src/main/main.dsp 1.89:
                   19678:        * src/main/pa_request.C 1.112:
                   19679:        * src/types/pa_vcframe.h 1.4:
                   19680:        * src/types/pa_vcode_frame.h 1.1:
                   19681:        * src/types/pa_vimage.C 1.4:
                   19682:        * src/types/pa_vimage.h 1.4:
                   19683:        * src/types/pa_vmethod_frame.h 1.1:
                   19684:        * src/types/pa_vmframe.h 1.13:
                   19685:                libimaging dead end: pil parses header in .py
                   19686: 
                   19687:        * src/classes/image.C 1.8:
                   19688:        * src/types/pa_vimage.C 1.5:
                   19689:        * src/types/pa_vimage.h 1.5:
                   19690:                gd started porting to Pooled descendant
                   19691: 
                   19692:        * src/classes/image.C 1.5:
                   19693:        * src/main/pa_request.C 1.110:
                   19694:        * src/types/pa_vform.C 1.23:
                   19695:                fixed post [broke when moved post read to core]
                   19696: 
                   19697:        * src/main/main.dsp 1.87:
                   19698:                gd+smtp made separate libs
                   19699: 
                   19700:        * src/classes/image.C 1.9:
                   19701:        * src/types/pa_vimage.C 1.6:
                   19702:        * src/types/pa_vimage.h 1.6:
                   19703:                gd todo: gif without file
                   19704: 
                   19705:        * src/include/pa_globals.h 1.46:
                   19706:        * src/include/pa_string.h 1.80:
                   19707:        * src/main/pa_common.C 1.46:
                   19708:        * src/main/pa_request.C 1.111:
                   19709:        * src/main/untaint.C 1.39:
                   19710:        * src/types/pa_vfile.C 1.16:
                   19711:        * src/types/pa_vstring.C 1.4:
                   19712:                fixed vstring:as_vfile  length
                   19713: 
                   19714:        * src/classes/image.C 1.6:
                   19715:        * src/include/pa_globals.h 1.47:
                   19716:        * src/main/main.dsp 1.88:
                   19717:        * src/main/pa_globals.C 1.54:
                   19718:        * src/types/pa_vimage.C 1.3:
                   19719:        * src/types/pa_vimage.h 1.3:
                   19720:                gd dead end. switching to python imaging lib
                   19721: 
                   19722:        * src/classes/image.C 1.10:
                   19723:        * src/main/main.dsp 1.90:
                   19724:                gd with mem write + image just compiled
                   19725: 
                   19726:        * src/classes/image.C 1.11:
                   19727:                image:create image:load
                   19728: 
                   19729: 2001-04-10  paf
                   19730:        * src/classes/_double.h 1.6:
                   19731:        * src/classes/_file.h 1.3:
                   19732:        * src/classes/_form.h 1.2:
                   19733:        * src/classes/_int.h 1.6:
                   19734:        * src/classes/_mail.h 1.2:
                   19735:        * src/classes/_op.h 1.4:
                   19736:        * src/classes/_random.h 1.2:
                   19737:        * src/classes/_response.h 1.3:
                   19738:        * src/classes/_string.h 1.7:
                   19739:        * src/classes/_table.h 1.5:
                   19740:        * src/classes/file.C 1.25:
                   19741:        * src/classes/mail.C 1.16:
                   19742:        * src/include/pa_common.h 1.37:
                   19743:        * src/include/pa_globals.h 1.45:
                   19744:        * src/main/execute.C 1.144:
                   19745:        * src/main/main.dsp 1.86:
                   19746:        * src/main/pa_common.C 1.44:
                   19747:        * src/main/pa_globals.C 1.53:
                   19748:        * src/targets/isapi/parser3isapi.C 1.28:
                   19749:        * src/types/pa_value.h 1.45:
                   19750:        * src/types/pa_vfile.C 1.14:
                   19751:        * src/types/pa_vfile.h 1.18:
                   19752:        * src/types/pa_vhash.h 1.10:
                   19753:        * src/types/pa_vimage.h 1.1:
                   19754:        * src/types/pa_vresponse.h 1.8:
                   19755:        * src/types/pa_vstring.h 1.21:
                   19756:                image:measure -100 just compiled
                   19757: 
                   19758:        * src/classes/_image.h 1.1:
                   19759:        * src/classes/image.C 1.1:
                   19760:        * src/types/pa_vimage.C 1.1:
                   19761:                image forgotten!
                   19762: 
                   19763:        * src/classes/image.C 1.3:
                   19764:        * src/types/pa_vimage.C 1.2:
                   19765:                jpg measure bugs fixed
                   19766: 
                   19767:        * src/classes/image.C 1.4:
                   19768:                image:html done
                   19769: 
                   19770:        * src/classes/table.C 1.60:
                   19771:        * src/include/pa_common.h 1.38:
                   19772:        * src/main/pa_common.C 1.45:
                   19773:        * src/main/pa_request.C 1.109:
                   19774:        * src/main/pa_string.C 1.76:
                   19775:        * src/main/untaint.C 1.38:
                   19776:        * src/types/pa_vimage.h 1.2:
                   19777:                image:measure -90
                   19778: 
                   19779:        * src/classes/mail.C 1.11:
                   19780:        * src/main/pa_globals.C 1.52:
                   19781:                smtp some consts
                   19782: 
                   19783:        * src/classes/mail.C 1.12:
                   19784:                unix sendmail compiled. todo:testing
                   19785: 
                   19786:        * src/classes/mail.C 1.14:
                   19787:                sendmail unix skipping defaults
                   19788: 
                   19789:        * src/classes/image.C 1.2:
                   19790:                z
                   19791: 
                   19792:        * src/classes/mail.C 1.13:
                   19793:        * src/include/pa_common.h 1.36:
                   19794:        * src/main/pa_common.C 1.43:
                   19795:                sendmail unix added defaults
                   19796: 
                   19797:        * src/classes/mail.C 1.15:
                   19798:                minor bug with unclear from/to
                   19799: 
                   19800: 2001-04-09  paf
                   19801:        * src/classes/_exec.h 1.2:
                   19802:        * src/main/execute.C 1.142:
                   19803:        * src/main/pa_globals.C 1.50:
                   19804:        * src/main/pa_request.C 1.106:
                   19805:        * src/types/pa_vcookie.C 1.17:
                   19806:        * src/types/pa_vfile.C 1.12:
                   19807:                exec -2
                   19808: 
                   19809:        * src/classes/file.C 1.24:
                   19810:        * src/include/pa_exec.h 1.1:
                   19811:        * src/include/pa_sapi.h 1.8:
                   19812:        * src/main/main.dsp 1.85:
                   19813:        * src/main/pa_exec.C 1.1:
                   19814:        * src/targets/cgi/parser3.C 1.62:
                   19815:        * src/targets/cgi/parser3.dsp 1.17:
                   19816:        * src/targets/isapi/parser3isapi.C 1.27:
                   19817:        * src/targets/isapi/parser3isapi.dsp 1.12:
                   19818:                all targets exec
                   19819: 
                   19820:        * src/classes/exec.C 1.2:
                   19821:        * src/include/pa_common.h 1.35:
                   19822:        * src/main/pa_common.C 1.42:
                   19823:        * src/main/untaint.C 1.37:
                   19824:                exec3. decided exec:cgi to move to file:cgi
                   19825: 
                   19826:        * src/include/pa_sapi.h 1.7:
                   19827:        * src/include/pa_string.h 1.79:
                   19828:        * src/targets/cgi/parser3.C 1.61:
                   19829:        * src/targets/isapi/parser3isapi.C 1.26:
                   19830:        * src/targets/isapi/parser3isapi.dsp 1.11:
                   19831:                sapi exec dead end. badly parsed args in apache:util.script
                   19832: 
                   19833:        * src/classes/file.C 1.23:
                   19834:        * src/main/main.dsp 1.84:
                   19835:        * src/main/pa_request.C 1.108:
                   19836:        * src/targets/cgi/parser3.C 1.60:
                   19837:                exec win32 env
                   19838: 
                   19839:        * src/classes/exec.C 1.3:
                   19840:        * src/classes/file.C 1.21:
                   19841:        * src/include/pa_globals.h 1.44:
                   19842:        * src/main/execute.C 1.143:
                   19843:        * src/main/main.dsp 1.83:
                   19844:        * src/main/pa_globals.C 1.51:
                   19845:        * src/main/pa_request.C 1.107:
                   19846:        * src/types/pa_vfile.C 1.13:
                   19847:        * src/types/pa_vfile.h 1.17:
                   19848:        * src/types/pa_vform.C 1.22:
                   19849:        * src/types/pa_vstring.C 1.2:
                   19850:                exec4. todo env
                   19851: 
                   19852:        * src/classes/_exec.h 1.1:
                   19853:        * src/classes/exec.C 1.1:
                   19854:        * src/include/pa_common.h 1.34:
                   19855:        * src/include/pa_request.h 1.81:
                   19856:        * src/include/pa_sapi.h 1.6:
                   19857:        * src/include/pa_string.h 1.77:
                   19858:        * src/main/pa_common.C 1.41:
                   19859:        * src/main/pa_request.C 1.105:
                   19860:        * src/main/pa_string.C 1.75:
                   19861:        * src/targets/cgi/parser3.C 1.59:
                   19862:        * src/targets/cgi/parser3.dsp 1.16:
                   19863:        * src/targets/isapi/parser3isapi.C 1.25:
                   19864:        * src/types/pa_vform.C 1.21:
                   19865:        * src/types/pa_vform.h 1.15:
                   19866:                exec class just compiled. moved post read to request core
                   19867: 
                   19868:        * src/classes/file.C 1.22:
                   19869:        * src/include/pa_hash.h 1.36:
                   19870:        * src/main/pa_hash.C 1.32:
                   19871:                exec env 0
                   19872: 
                   19873:        * src/classes/_op.h 1.3:
                   19874:        * src/include/pa_dir.h 1.2:
                   19875:        * src/include/pa_globals.h 1.43:
                   19876:        * src/include/pa_sapi.h 1.5:
                   19877:        * src/main/main.dsp 1.82:
                   19878:        * src/main/pa_dir.C 1.2:
                   19879:        * src/main/pa_globals.C 1.49:
                   19880:        * src/targets/cgi/parser3.C 1.58:
                   19881:        * src/targets/cgi/parser3.dsp 1.15:
                   19882:                problems with ^exec:cgi post data. they are already read by vform
                   19883: 
                   19884:        * src/include/pa_string.h 1.78:
                   19885:                written but not tested exec with env for unix
                   19886: 
                   19887: 2001-04-08  paf
                   19888:        * src/classes/file.C 1.20:
                   19889:        * src/classes/mail.C 1.10:
                   19890:        * src/classes/string.C 1.37:
                   19891:        * src/include/pa_request.h 1.80:
                   19892:        * src/include/pa_string.h 1.76:
                   19893:        * src/main/pa_request.C 1.104:
                   19894:                uuencode. string<<
                   19895: 
                   19896: 2001-04-07  paf
                   19897:        * src/classes/_mail.h 1.1:
                   19898:        * src/classes/mail.C 1.1:
                   19899:        * src/include/pa_common.h 1.33:
                   19900:        * src/include/pa_globals.h 1.41:
                   19901:        * src/include/pa_string.h 1.74:
                   19902:        * src/main/main.dsp 1.79:
                   19903:        * src/main/pa_common.C 1.40:
                   19904:        * src/main/pa_globals.C 1.47:
                   19905:        * src/main/pa_request.C 1.101:
                   19906:        * src/main/untaint.C 1.36:
                   19907:        * src/types/pa_vcookie.C 1.16:
                   19908:                mail:send -10 just compiled
                   19909: 
                   19910:        * src/include/pa_socks.h 1.1:
                   19911:        * src/main/main.dsp 1.81:
                   19912:        * src/main/pa_socks.C 1.1:
                   19913:        * src/targets/cgi/parser3.C 1.57:
                   19914:        * src/targets/cgi/parser3.dsp 1.14:
                   19915:        * src/targets/isapi/parser3isapi.C 1.24:
                   19916:                mail:send 1
                   19917: 
                   19918:        * src/classes/mail.C 1.3:
                   19919:                +=
                   19920: 
                   19921:        * src/classes/mail.C 1.6:
                   19922:                ^attach dead end
                   19923: 
                   19924:        * src/classes/mail.C 1.2:
                   19925:        * src/include/pa_string.h 1.75:
                   19926:                mail:send -1 text prepared
                   19927: 
                   19928:        * src/classes/mail.C 1.7:
                   19929:                ^mail[$attach
                   19930: 
                   19931:        * src/classes/mail.C 1.5:
                   19932:        * src/classes/mail.C 1.8:
                   19933:        * src/classes/mail.C 1.9:
                   19934:        * src/main/pa_request.C 1.103:
                   19935:                z
                   19936: 
                   19937:        * src/classes/mail.C 1.4:
                   19938:        * src/include/pa_globals.h 1.42:
                   19939:        * src/include/pa_request.h 1.79:
                   19940:        * src/main/main.dsp 1.80:
                   19941:        * src/main/pa_globals.C 1.48:
                   19942:        * src/main/pa_request.C 1.102:
                   19943:                smtp just compiled
                   19944: 
                   19945: 2001-04-06  paf
                   19946:        * src/types/pa_valiased.C 1.7:
                   19947:                another root inherititance skipped
                   19948: 
                   19949:        * src/classes/random.C 1.5:
                   19950:        * src/classes/table.C 1.57:
                   19951:        * src/main/pa_globals.C 1.44:
                   19952:                @office
                   19953: 
                   19954:        * src/classes/table.C 1.58:
                   19955:        * src/include/pa_dir.h 1.1:
                   19956:        * src/main/execute.C 1.141:
                   19957:        * src/main/main.dsp 1.78:
                   19958:        * src/main/pa_dir.C 1.1:
                   19959:                table:dir 0 [without regexp]
                   19960: 
                   19961:        * src/main/compile.C 1.34:
                   19962:        * src/main/compile.y 1.124:
                   19963:        * src/main/execute.C 1.139:
                   19964:                operators are now not root methods of parent class. just 'ROOT
                   19965:                 class
                   19966: 
                   19967:        * src/classes/table.C 1.59:
                   19968:        * src/include/pa_globals.h 1.40:
                   19969:        * src/main/pa_globals.C 1.46:
                   19970:        * src/main/pa_string.C 1.74:
                   19971:                table:dir 1
                   19972: 
                   19973:        * src/classes/_op.h 1.2:
                   19974:        * src/classes/_root.h 1.5:
                   19975:        * src/classes/op.C 1.2:
                   19976:        * src/classes/root.C 1.62:
                   19977:        * src/include/pa_globals.h 1.39:
                   19978:        * src/include/pa_request.h 1.78:
                   19979:        * src/main/compile.C 1.35:
                   19980:        * src/main/execute.C 1.140:
                   19981:        * src/main/main.dsp 1.77:
                   19982:        * src/main/pa_globals.C 1.45:
                   19983:        * src/main/pa_request.C 1.100:
                   19984:                renamed 'root' to 'op'
                   19985: 
                   19986:        * src/classes/_op.h 1.1:
                   19987:        * src/classes/op.C 1.1:
                   19988:                renamed from 'root'
                   19989: 
                   19990: 2001-04-05  paf
                   19991:        * src/classes/root.C 1.59:
                   19992:        * src/include/pa_sql_connection.h 1.1:
                   19993:        * src/include/pa_sql_driver.h 1.5:
                   19994:        * src/main/main.dsp 1.76:
                   19995:        * src/main/pa_sql_driver_manager.C 1.3:
                   19996:        * src/sql/pa_sql_driver.h 1.1:
                   19997:                sql driver services for conv memory & error reporting
                   19998: 
                   19999:        * src/main/execute.C 1.138:
                   20000:        * src/main/pa_request.C 1.98:
                   20001:        * src/main/pa_string.C 1.73:
                   20002:        * src/types/pa_value.h 1.44:
                   20003:        * src/types/pa_vmframe.h 1.12:
                   20004:        * src/types/pa_wcontext.h 1.10:
                   20005:                constructor flag dropped at get_method_frame and remembered
                   20006:                into method_frame
                   20007: 
                   20008:        * src/include/pa_globals.h 1.38:
                   20009:        * src/main/pa_globals.C 1.43:
                   20010:        * src/main/pa_request.C 1.96:
                   20011:        * src/main/pa_string.C 1.72:
                   20012:        * src/targets/isapi/parser3isapi.dsp 1.10:
                   20013:                $LOCALE:ctype[Russian_Russia.1251]
                   20014: 
                   20015:        * src/main/pa_request.C 1.99:
                   20016:        * src/sql/pa_sql_driver.h 1.5:
                   20017:                mysql limit
                   20018: 
                   20019:        * src/classes/table.C 1.52:
                   20020:                select * from hren error contains statement
                   20021: 
                   20022:        * src/classes/random.C 1.4:
                   20023:        * src/classes/root.C 1.60:
                   20024:        * src/classes/table.C 1.54:
                   20025:        * src/include/pa_sql_connection.h 1.4:
                   20026:        * src/include/pa_string.h 1.71:
                   20027:        * src/main/execute.C 1.137:
                   20028:        * src/main/pa_sql_driver_manager.C 1.6:
                   20029:        * src/main/pa_string.C 1.70:
                   20030:        * src/main/untaint.C 1.34:
                   20031:        * src/sql/pa_sql_driver.h 1.4:
                   20032:        * src/types/pa_vmframe.h 1.11:
                   20033:        * src/types/pa_wcontext.C 1.5:
                   20034:        * src/types/pa_wcontext.h 1.9:
                   20035:                sql quote. string untaint UL_SQL
                   20036: 
                   20037:        * src/classes/table.C 1.51:
                   20038:        * src/include/pa_sql_connection.h 1.2:
                   20039:        * src/include/pa_types.h 1.24:
                   20040:        * src/main/pa_sql_driver_manager.C 1.4:
                   20041:        * src/main/untaint.C 1.33:
                   20042:        * src/sql/pa_sql_driver.h 1.2:
                   20043:        * src/targets/cgi/parser3.dsp 1.13:
                   20044:                mysql 0
                   20045: 
                   20046:        * src/classes/table.C 1.53:
                   20047:        * src/include/pa_sql_connection.h 1.3:
                   20048:        * src/main/pa_sql_driver_manager.C 1.5:
                   20049:        * src/sql/pa_sql_driver.h 1.3:
                   20050:                sql ping
                   20051: 
                   20052:        * src/classes/table.C 1.55:
                   20053:        * src/include/pa_string.h 1.72:
                   20054:        * src/main/pa_string.C 1.71:
                   20055:        * src/main/untaint.C 1.35:
                   20056:                z
                   20057: 
                   20058:        * src/classes/file.C 1.19:
                   20059:        * src/classes/root.C 1.61:
                   20060:        * src/classes/string.C 1.36:
                   20061:        * src/classes/table.C 1.56:
                   20062:        * src/main/pa_request.C 1.97:
                   20063:                junction to code&expression in errors
                   20064: 
                   20065:        * src/include/pa_config_fixed.h 1.2:
                   20066:        * src/include/pa_config_includes.h 1.2:
                   20067:        * src/include/pa_hash.h 1.35:
                   20068:        * src/include/pa_string.h 1.73:
                   20069:        * src/main/pa_hash.C 1.31:
                   20070:        * src/main/pa_table.C 1.26:
                   20071:                hash now not thread-safe.
                   20072: 
                   20073: 2001-04-04  paf
                   20074:        * src/include/pa_sql_driver.h 1.4:
                   20075:                mysql connect
                   20076: 
                   20077:        * src/classes/random.C 1.3:
                   20078:        * src/classes/root.C 1.56:
                   20079:        * src/classes/table.C 1.49:
                   20080:        * src/include/pa_globals.h 1.36:
                   20081:        * src/include/pa_pool.h 1.48:
                   20082:        * src/include/pa_request.h 1.76:
                   20083:        * src/main/pa_request.C 1.94:
                   20084:        * src/types/pa_vclass.h 1.12:
                   20085:                sql frame -10
                   20086: 
                   20087:        * src/Makefile.am 1.4:
                   20088:        * src/classes/root.C 1.57:
                   20089:        * src/classes/string.C 1.35:
                   20090:        * src/classes/table.C 1.50:
                   20091:        * src/include/pa_globals.h 1.37:
                   20092:        * src/include/pa_hash.h 1.34:
                   20093:        * src/include/pa_pool.h 1.49:
                   20094:        * src/include/pa_request.h 1.77:
                   20095:        * src/include/pa_sapi.h 1.4:
                   20096:        * src/include/pa_string.h 1.70:
                   20097:        * src/include/pa_table.h 1.29:
                   20098:        * src/main/main.dsp 1.74:
                   20099:        * src/main/pa_globals.C 1.42:
                   20100:        * src/main/pa_hash.C 1.30:
                   20101:        * src/main/pa_request.C 1.95:
                   20102:        * src/main/pa_string.C 1.69:
                   20103:        * src/main/pa_table.C 1.25:
                   20104:        * src/main/untaint.C 1.32:
                   20105:                connect&sql -1000 just compiled
                   20106: 
                   20107:        * src/sql/Makefile.am 1.1:
                   20108:                forgot to add mysql client
                   20109: 
                   20110:        * src/classes/root.C 1.58:
                   20111:        * src/include/pa_sql_driver.h 1.2:
                   20112:        * src/include/pa_sql_driver_manager.h 1.2:
                   20113:        * src/main/main.dsp 1.75:
                   20114:        * src/main/pa_sql_driver_manager.C 1.2:
                   20115:                more manager&connection&driver
                   20116: 
                   20117:        * src/include/pa_sql_driver.h 1.3:
                   20118:                mysql info
                   20119: 
                   20120:        * src/doc/doxygen.cfg 1.2:
                   20121:                z
                   20122: 
                   20123:        * src/include/pa_sql_driver.h 1.1:
                   20124:        * src/include/pa_sql_driver_manager.h 1.1:
                   20125:        * src/main/pa_sql_driver_manager.C 1.1:
                   20126:                connect&sql -1000 just compiled [forgot to add libltdl, added]
                   20127: 
                   20128: 2001-04-03  paf
                   20129:        * src/classes/file.C 1.18:
                   20130:        * src/classes/string.C 1.32:
                   20131:        * src/classes/table.C 1.48:
                   20132:        * src/include/pa_string.h 1.69:
                   20133:        * src/main/pa_common.C 1.39:
                   20134:        * src/main/pa_string.C 1.68:
                   20135:        * src/main/untaint.C 1.31:
                   20136:                string:match replace 2.  string.cstr(forced lang)
                   20137: 
                   20138:        * src/classes/string.C 1.30:
                   20139:                string:match replace 0
                   20140: 
                   20141:        * src/classes/string.C 1.34:
                   20142:        * src/types/pa_vform.C 1.19:
                   20143:                string:match replace assigned lang
                   20144: 
                   20145:        * src/classes/string.C 1.31:
                   20146:        * src/include/pa_string.h 1.68:
                   20147:        * src/main/pa_string.C 1.67:
                   20148:                string:match replace strange matches
                   20149: 
                   20150:        * src/classes/table.C 1.46:
                   20151:                table:append now uses string::split
                   20152: 
                   20153:        * src/include/pa_globals.h 1.33:
                   20154:        * src/include/pa_hash.h 1.33:
                   20155:        * src/main/pa_globals.C 1.39:
                   20156:        * src/main/pa_request.C 1.92:
                   20157:        * src/targets/cgi/parser3.C 1.55:
                   20158:        * src/targets/isapi/parser3isapi.C 1.22:
                   20159:        * src/types/pa_vfile.C 1.11:
                   20160:                content-disposition
                   20161: 
                   20162:        * src/classes/string.C 1.25:
                   20163:        * src/include/pa_globals.h 1.34:
                   20164:        * src/include/pa_string.h 1.64:
                   20165:        * src/main/main.dsp 1.73:
                   20166:        * src/main/pa_globals.C 1.40:
                   20167:        * src/main/pa_string.C 1.62:
                   20168:                string:match [search] -1 just compiled
                   20169: 
                   20170:        * src/classes/string.C 1.26:
                   20171:        * src/include/pa_globals.h 1.35:
                   20172:        * src/include/pa_string.h 1.65:
                   20173:        * src/include/pa_threads.h 1.12:
                   20174:        * src/main/pa_globals.C 1.41:
                   20175:        * src/main/pa_string.C 1.63:
                   20176:        * src/targets/isapi/parser3isapi.dsp 1.9:
                   20177:                string:match 0
                   20178: 
                   20179:        * src/main/pa_common.C 1.37:
                   20180:        * src/main/untaint.C 1.30:
                   20181:        * src/targets/cgi/parser3.C 1.56:
                   20182:        * src/targets/isapi/parser3isapi.C 1.23:
                   20183:        * src/targets/isapi/pool_storage.h 1.4:
                   20184:                todo/tests
                   20185: 
                   20186:        * src/classes/file.C 1.15:
                   20187:        * src/classes/root.C 1.54:
                   20188:        * src/classes/string.C 1.23:
                   20189:        * src/classes/table.C 1.44:
                   20190:        * src/doc/doxygen.cmd 1.1:
                   20191:        * src/doc/doxygen.txt 1.2:
                   20192:        * src/doc/generate.cmd 1.2:
                   20193:        * src/include/pa_array.h 1.34:
                   20194:        * src/include/pa_request.h 1.74:
                   20195:        * src/include/pa_string.h 1.62:
                   20196:        * src/main/execute.C 1.136:
                   20197:        * src/main/pa_string.C 1.60:
                   20198:        * src/main/untaint.C 1.29:
                   20199:        * src/targets/cgi/parser3.C 1.52:
                   20200:        * src/types/pa_vcookie.C 1.15:
                   20201:                string::pos & cmp & piece bugs fixed.
                   20202:                string::split new
                   20203:                table:load separated from set
                   20204:                table:set implemented with clean \n \t searches
                   20205: 
                   20206:        * src/include/pa_common.h 1.31:
                   20207:        * src/include/pa_globals.h 1.32:
                   20208:        * src/main/pa_globals.C 1.38:
                   20209:        * src/main/pa_request.C 1.91:
                   20210:        * src/targets/cgi/parser3.C 1.54:
                   20211:        * src/targets/isapi/parser3isapi.C 1.21:
                   20212:        * src/types/pa_value.h 1.43:
                   20213:                main:post-process
                   20214: 
1.24      paf      20215:        * src/classes/string.C 1.27:
                   20216:        * src/include/pa_string.h 1.66:
                   20217:        * src/main/pa_string.C 1.64:
                   20218:                string:match replace -11
                   20219: 
1.15      paf      20220:        * src/classes/file.C 1.16:
                   20221:        * src/classes/table.C 1.45:
                   20222:        * src/include/pa_common.h 1.32:
                   20223:        * src/main/compile_tools.C 1.34:
                   20224:        * src/main/pa_common.C 1.38:
                   20225:        * src/main/pa_request.C 1.93:
                   20226:        * src/types/pa_vform.C 1.20:
                   20227:        * src/types/pa_vstring.C 1.1:
                   20228:                z
                   20229: 
                   20230:        * src/include/pa_common.h 1.30:
                   20231:        * src/include/pa_request.h 1.75:
                   20232:        * src/include/pa_sapi.h 1.3:
                   20233:        * src/main/main.dsp 1.72:
                   20234:        * src/main/pa_common.C 1.36:
                   20235:        * src/main/pa_request.C 1.90:
                   20236:        * src/targets/cgi/parser3.C 1.53:
                   20237:        * src/types/pa_value.h 1.42:
                   20238:        * src/types/pa_vfile.C 1.10:
                   20239:        * src/types/pa_vfile.h 1.16:
                   20240:        * src/types/pa_vstring.h 1.20:
                   20241:                vfile in response:body
                   20242: 
                   20243:        * src/classes/string.C 1.28:
                   20244:        * src/include/pa_string.h 1.67:
                   20245:        * src/main/pa_string.C 1.65:
                   20246:                string:match replace prepared
                   20247: 
                   20248:        * src/classes/string.C 1.33:
                   20249:        * src/main/compile.y 1.123:
                   20250:                grammar: fixed to allow {}[]< empty []
                   20251: 
                   20252:        * src/classes/double.C 1.20:
                   20253:        * src/classes/file.C 1.17:
                   20254:        * src/classes/form.C 1.3:
                   20255:        * src/classes/int.C 1.18:
                   20256:        * src/classes/response.C 1.6:
                   20257:        * src/classes/root.C 1.55:
                   20258:        * src/classes/string.C 1.24:
                   20259:        * src/classes/table.C 1.47:
                   20260:        * src/include/pa_string.h 1.63:
                   20261:        * src/main/pa_string.C 1.61:
                   20262:                string:match -10 [frame]
                   20263: 
                   20264:        * src/classes/string.C 1.29:
                   20265:        * src/main/pa_string.C 1.66:
                   20266:                string:match replace prepared 2
                   20267: 
                   20268: 2001-04-02  paf
                   20269:        * src/classes/_random.h 1.1:
                   20270:        * src/classes/random.C 1.1:
                   20271:        * src/include/pa_globals.h 1.31:
                   20272:        * src/main/main.dsp 1.71:
                   20273:        * src/main/pa_globals.C 1.37:
                   20274:        * src/main/pa_request.C 1.89:
                   20275:        * src/types/pa_value.h 1.40:
                   20276:                random:generate
                   20277: 
                   20278:        * src/classes/table.C 1.42:
                   20279:        * src/include/pa_array.h 1.33:
                   20280:        * src/include/pa_string.h 1.60:
                   20281:        * src/include/pa_table.h 1.28:
                   20282:        * src/main/execute.C 1.135:
                   20283:        * src/types/pa_value.h 1.41:
                   20284:                table:join
                   20285: 
                   20286:        * src/classes/table.C 1.43:
                   20287:        * src/include/pa_string.h 1.61:
                   20288:        * src/main/pa_string.C 1.59:
                   20289:        * src/types/pa_valiased.C 1.6:
                   20290:        * src/types/pa_valiased.h 1.12:
                   20291:        * src/types/pa_vdouble.h 1.15:
                   20292:        * src/types/pa_vfile.h 1.15:
                   20293:        * src/types/pa_vint.h 1.16:
                   20294:        * src/types/pa_vresponse.h 1.7:
                   20295:        * src/types/pa_vstring.h 1.19:
                   20296:        * src/types/pa_vtable.h 1.13:
                   20297:                string::pos. about to use it in table:set/load
                   20298: 
                   20299:        * src/classes/random.C 1.2:
                   20300:                random:generate 1
                   20301: 
                   20302: 2001-03-30  paf
                   20303:        * src/classes/double.C 1.19:
                   20304:        * src/classes/file.C 1.14:
                   20305:        * src/classes/int.C 1.17:
                   20306:        * src/classes/response.C 1.5:
                   20307:        * src/classes/root.C 1.53:
                   20308:        * src/classes/string.C 1.22:
                   20309:        * src/classes/table.C 1.40:
                   20310:        * src/main/compile.y 1.122:
                   20311:        * src/main/execute.C 1.134:
                   20312:        * src/types/pa_value.h 1.39:
                   20313:        * src/types/pa_vstateless_class.C 1.7:
                   20314:        * src/types/pa_vstateless_class.h 1.9:
                   20315:                static|dynamic|any method registration
                   20316: 
                   20317:        * src/classes/table.C 1.41:
                   20318:        * src/include/pa_string.h 1.59:
                   20319:        * src/main/pa_string.C 1.58:
                   20320:                todo: table flip and append. string::pos
                   20321: 
                   20322: 2001-03-29  paf
                   20323:        * src/classes/string.C 1.14:
                   20324:        * src/main/compile.y 1.120:
                   20325:        * src/main/compile_tools.C 1.33:
                   20326:        * src/main/compile_tools.h 1.36:
                   20327:        * src/main/main.dsp 1.70:
                   20328:        * src/types/pa_value.h 1.38:
                   20329:        * src/types/pa_vstring.h 1.17:
                   20330:        * src/types/pa_vunknown.h 1.8:
                   20331:                empty params allowed. [] and [;] are different now.
                   20332: 
                   20333:        * src/include/pa_pool.h 1.46:
                   20334:        * src/include/pa_request.h 1.72:
                   20335:        * src/main/pa_request.C 1.86:
                   20336:        * src/main/untaint.C 1.25:
                   20337:                pool.request
                   20338: 
                   20339:        * src/classes/string.C 1.21:
                   20340:                string:xsplit forgot that they must result in 1 row N column [
                   20341:                not vice versa]
                   20342: 
                   20343:        * src/classes/string.C 1.17:
                   20344:        * src/include/pa_string.h 1.57:
                   20345:        * src/main/execute.C 1.133:
                   20346:        * src/main/pa_array.C 1.30:
                   20347:        * src/main/pa_string.C 1.56:
                   20348:        * src/types/pa_vtable.h 1.12:
                   20349:                string: lsplit -1
                   20350: 
                   20351:        * src/classes/string.C 1.16:
                   20352:        * src/include/pa_string.h 1.55:
                   20353:        * src/main/pa_string.C 1.54:
                   20354:                string: pos -1
                   20355: 
                   20356:        * src/classes/string.C 1.18:
                   20357:        * src/include/pa_string.h 1.58:
                   20358:        * src/main/pa_string.C 1.57:
                   20359:                string: lsplit
                   20360: 
                   20361:        * src/include/pa_pool.h 1.47:
                   20362:        * src/include/pa_request.h 1.73:
                   20363:        * src/main/pa_request.C 1.87:
                   20364:        * src/main/untaint.C 1.26:
                   20365:                pool.request undone
                   20366: 
                   20367:        * src/classes/string.C 1.20:
                   20368:                z
                   20369: 
                   20370:        * src/include/pa_string.h 1.56:
                   20371:        * src/main/pa_string.C 1.55:
                   20372:        * src/main/untaint.C 1.28:
                   20373:                string: pos
                   20374: 
                   20375:        * src/classes/string.C 1.15:
                   20376:        * src/classes/table.C 1.38:
                   20377:        * src/include/pa_string.h 1.54:
                   20378:        * src/main/compile.y 1.121:
                   20379:        * src/main/pa_request.C 1.88:
                   20380:        * src/main/pa_string.C 1.53:
                   20381:        * src/main/untaint.C 1.27:
                   20382:                string: left right mid
                   20383: 
                   20384:        * src/classes/file.C 1.13:
                   20385:        * src/classes/table.C 1.39:
                   20386:        * src/include/pa_table.h 1.27:
                   20387:        * src/main/pa_table.C 1.24:
                   20388:        * src/types/pa_vstring.h 1.18:
                   20389:        * src/types/pa_wwrapper.h 1.6:
                   20390:                table:flip
                   20391: 
                   20392:        * src/classes/string.C 1.19:
                   20393:                string: rsplit
                   20394: 
                   20395: 2001-03-28  paf
                   20396:        * src/classes/file.C 1.12:
                   20397:        * src/include/pa_globals.h 1.30:
                   20398:        * src/include/pa_request.h 1.71:
                   20399:        * src/targets/cgi/parser3.C 1.51:
                   20400:        * src/targets/isapi/parser3isapi.C 1.20:
                   20401:        * src/types/pa_value.h 1.37:
                   20402:        * src/types/pa_vrequest.C 1.4:
                   20403:        * src/types/pa_vunknown.h 1.7:
                   20404:                $request:browser [.type .version]; unknown.get_double now = 0.
                   20405: 
                   20406:        * src/classes/table.C 1.36:
                   20407:        * src/include/pa_array.h 1.32:
                   20408:        * src/include/pa_hash.h 1.32:
                   20409:        * src/include/pa_table.h 1.24:
                   20410:        * src/main/pa_array.C 1.29:
                   20411:        * src/main/pa_table.C 1.21:
                   20412:        * src/types/pa_vtable.h 1.11:
                   20413:                table:locate just compiled
                   20414: 
                   20415:        * src/classes/file.C 1.9:
                   20416:        * src/include/pa_common.h 1.29:
                   20417:        * src/main/pa_common.C 1.34:
                   20418:        * src/types/pa_vfile.C 1.7:
                   20419:        * src/types/pa_vfile.h 1.12:
                   20420:                started file:load. wrong write. must be self.set
                   20421: 
                   20422:        * src/classes/file.C 1.8:
                   20423:        * src/classes/root.C 1.52:
                   20424:        * src/classes/table.C 1.37:
                   20425:        * src/include/pa_table.h 1.25:
                   20426:        * src/main/pa_table.C 1.22:
                   20427:                table:locate1, file:test
                   20428: 
                   20429:        * src/classes/file.C 1.10:
                   20430:        * src/main/execute.C 1.132:
                   20431:        * src/main/pa_common.C 1.35:
                   20432:        * src/main/untaint.C 1.24:
                   20433:        * src/targets/cgi/parser3.C 1.50:
                   20434:        * src/types/pa_vfile.C 1.8:
                   20435:        * src/types/pa_vfile.h 1.13:
                   20436:        * src/types/pa_vform.C 1.17:
                   20437:                file:load 1. tainted
                   20438: 
                   20439:        * src/classes/file.C 1.11:
                   20440:        * src/include/pa_globals.h 1.29:
                   20441:        * src/include/pa_request.h 1.70:
                   20442:        * src/include/pa_table.h 1.26:
                   20443:        * src/main/pa_globals.C 1.36:
                   20444:        * src/main/pa_request.C 1.85:
                   20445:        * src/main/pa_table.C 1.23:
                   20446:        * src/types/pa_vfile.C 1.9:
                   20447:        * src/types/pa_vfile.h 1.14:
                   20448:        * src/types/pa_vform.C 1.18:
                   20449:                file:load autodetection of mime-type by user-file-name
                   20450: 
                   20451: 2001-03-27  paf
                   20452:        * src/classes/double.C 1.18:
                   20453:        * src/classes/int.C 1.16:
                   20454:        * src/classes/root.C 1.51:
                   20455:        * src/classes/string.C 1.13:
                   20456:        * src/classes/table.C 1.34:
                   20457:        * src/main/compile_tools.C 1.32:
                   20458:        * src/main/execute.C 1.128:
                   20459:        * src/main/pa_request.C 1.84:
                   20460:        * src/main/untaint.C 1.23:
                   20461:        * src/types/pa_value.h 1.35:
                   20462:        * src/types/pa_vbool.h 1.6:
                   20463:        * src/types/pa_vcookie.C 1.14:
                   20464:        * src/types/pa_vdouble.h 1.14:
                   20465:        * src/types/pa_vfile.h 1.11:
                   20466:        * src/types/pa_vint.h 1.15:
                   20467:        * src/types/pa_vmframe.h 1.9:
                   20468:        * src/types/pa_vstring.h 1.16:
                   20469:        * src/types/pa_vtable.h 1.10:
                   20470:        * src/types/pa_vunknown.h 1.6:
                   20471:                sort 0
                   20472: 
                   20473:        * src/classes/table.C 1.31:
                   20474:        * src/include/pa_common.h 1.27:
                   20475:        * src/main/compile.y 1.117:
                   20476:        * src/main/execute.C 1.127:
                   20477:        * src/main/pa_common.C 1.31:
                   20478:        * src/main/pa_table.C 1.20:
                   20479:                table:save decided to have as it were. stepped back.
                   20480:                grammar: added 'in' 'is' 'lt'&co follow-space check
                   20481: 
                   20482:        * src/main/compile.y 1.119:
                   20483:                fixed minor bug in @mn[][] ...^{
                   20484: 
                   20485:        * src/main/execute.C 1.130:
                   20486:        * src/types/pa_value.h 1.36:
                   20487:        * src/types/pa_vmframe.h 1.10:
                   20488:        * src/types/pa_wcontext.h 1.8:
                   20489:                fixed r/w context of code-params
                   20490: 
                   20491:        * src/classes/table.C 1.33:
                   20492:        * src/main/pa_common.C 1.32:
                   20493:        * src/main/pa_request.C 1.83:
                   20494:        * src/targets/cgi/parser3.C 1.49:
                   20495:        * src/types/pa_value.h 1.34:
                   20496:        * src/types/pa_vbool.h 1.5:
                   20497:        * src/types/pa_vdouble.h 1.12:
                   20498:        * src/types/pa_vfile.h 1.9:
                   20499:        * src/types/pa_vint.h 1.13:
                   20500:        * src/types/pa_vstring.h 1.14:
                   20501:        * src/types/pa_vunknown.h 1.5:
                   20502:                continue on sort
                   20503: 
                   20504:        * src/types/pa_valiased.C 1.5:
                   20505:        * src/types/pa_valiased.h 1.11:
                   20506:        * src/types/pa_vdouble.h 1.13:
                   20507:        * src/types/pa_vfile.h 1.10:
                   20508:        * src/types/pa_vint.h 1.14:
                   20509:        * src/types/pa_vresponse.h 1.6:
                   20510:        * src/types/pa_vstring.h 1.15:
                   20511:        * src/types/pa_vtable.h 1.9:
                   20512:                renamed to are_static_calls_disabled
                   20513: 
                   20514:        * src/main/execute.C 1.131:
                   20515:        * src/main/pa_common.C 1.33:
                   20516:                fixed r/w context of code-params2, fixed ntfs hardlink slow dir update
                   20517: 
                   20518:        * src/classes/table.C 1.35:
                   20519:        * src/main/execute.C 1.129:
                   20520:                about to change junction rcontext!!
                   20521: 
                   20522:        * src/classes/table.C 1.32:
                   20523:        * src/include/pa_common.h 1.28:
                   20524:        * src/main/compile.y 1.118:
                   20525:                started table:sort
                   20526:                fixed minor bug in #...^{
                   20527: 
                   20528: 2001-03-26  paf
                   20529:        * src/classes/file.C 1.7:
                   20530:        * src/classes/root.C 1.50:
                   20531:        * src/classes/table.C 1.30:
                   20532:        * src/include/pa_common.h 1.26:
                   20533:        * src/include/pa_globals.h 1.28:
                   20534:        * src/include/pa_table.h 1.23:
                   20535:        * src/main/pa_common.C 1.30:
                   20536:        * src/main/pa_globals.C 1.35:
                   20537:        * src/main/pa_request.C 1.82:
                   20538:        * src/main/pa_table.C 1.19:
                   20539:                moved ::save to pa_table.
                   20540:                disabled @auto invocation in ^process
                   20541: 
                   20542:        * src/classes/table.C 1.29:
                   20543:        * src/include/pa_array.h 1.31:
                   20544:        * src/include/pa_table.h 1.22:
                   20545:        * src/main/pa_array.C 1.28:
                   20546:                table:record
                   20547: 
                   20548:        * src/main/untaint.C 1.22:
                   20549:        * src/targets/cgi/parser3.C 1.48:
                   20550:        * src/targets/isapi/parser3isapi.C 1.19:
                   20551:        * src/targets/isapi/parser3isapi.dsp 1.8:
                   20552:        * src/targets/isapi/pool_storage.h 1.3:
                   20553:        * src/types/pa_valiased.h 1.10:
                   20554:        * src/types/pa_vcookie.C 1.13:
                   20555:        * src/types/pa_vdouble.h 1.11:
                   20556:        * src/types/pa_vfile.h 1.8:
                   20557:        * src/types/pa_vint.h 1.12:
                   20558:        * src/types/pa_vresponse.h 1.5:
                   20559:        * src/types/pa_vstring.h 1.13:
                   20560:        * src/types/pa_vtable.h 1.8:
                   20561:                z
                   20562: 
                   20563:        * src/main/compile.y 1.116:
                   20564:                grammar: [] 0params [;] 2 params (was 0)
                   20565: 
                   20566:        * src/include/pa_pool.h 1.45:
                   20567:        * src/main/execute.C 1.126:
                   20568:        * src/types/pa_valiased.C 1.4:
                   20569:        * src/types/pa_valiased.h 1.9:
                   20570:        * src/types/pa_value.h 1.33:
                   20571:        * src/types/pa_vdouble.h 1.10:
                   20572:        * src/types/pa_vfile.h 1.7:
                   20573:        * src/types/pa_vint.h 1.11:
                   20574:        * src/types/pa_vresponse.h 1.4:
                   20575:        * src/types/pa_vstring.h 1.12:
                   20576:        * src/types/pa_vtable.h 1.7:
                   20577:                disabled $a(123) $b[$a.CLASS] ^b.inc[123] shit.
                   20578:                allowed no checks in native method realisations on 'self' validity -
                   20579:                they now can simply assume that 'self' is V{Proper} .
                   20580: 
                   20581: 2001-03-25  paf
                   20582:        * src/classes/table.C 1.26:
                   20583:        * src/include/pa_globals.h 1.27:
                   20584:        * src/include/pa_string.h 1.52:
                   20585:        * src/include/pa_table.h 1.20:
                   20586:        * src/main/compile.y 1.114:
                   20587:        * src/main/compile_tools.C 1.31:
                   20588:        * src/main/compile_tools.h 1.35:
                   20589:        * src/main/pa_globals.C 1.32:
                   20590:        * src/main/pa_request.C 1.79:
                   20591:        * src/main/pa_string.C 1.52:
                   20592:        * src/main/pa_table.C 1.17:
                   20593:        * src/main/untaint.C 1.15:
                   20594:        * src/types/pa_vcookie.h 1.7:
                   20595:                typo & typo-default
                   20596: 
                   20597:        * src/main/pa_globals.C 1.34:
                   20598:        * src/main/untaint.C 1.19:
                   20599:                html-typo - moved all processing to table [except preliminary \
                   20600:                \n \r \n replacements to "\n"]
                   20601: 
                   20602:        * src/main/untaint.C 1.16:
                   20603:                typo  \r \r\n \n properly handled
                   20604: 
                   20605:        * src/classes/table.C 1.27:
                   20606:        * src/include/pa_table.h 1.21:
                   20607:        * src/main/pa_globals.C 1.33:
                   20608:        * src/main/pa_table.C 1.18:
                   20609:        * src/main/untaint.C 1.17:
                   20610:                returned table originating. useful for reporting typo table
                   20611:                problems origin. think would be useful somewhere else
                   20612: 
                   20613:        * src/classes/table.C 1.28:
                   20614:        * src/main/untaint.C 1.18:
                   20615:                html-typo - decided to move all the processing to table
                   20616: 
                   20617:        * src/main/pa_request.C 1.80:
                   20618:                table empty lines ignored. system-default content type assigned
                   20619:                in output:result [can fail in main:auto and skipped normal
                   20620:                defaults extraction]
                   20621: 
                   20622:        * src/include/pa_string.h 1.53:
                   20623:        * src/main/compile.y 1.115:
                   20624:                #comment fixed minor bug
                   20625: 
                   20626:        * src/main/pa_request.C 1.81:
                   20627:        * src/main/untaint.C 1.20:
                   20628:                moved default typo-table to lowlevel - it initialization could
                   20629:                be skipped if failed in @auto. so that exception report would
                   20630:                use some table
                   20631: 
                   20632:        * src/main/untaint.C 1.21:
                   20633:                z
                   20634: 
                   20635: 2001-03-24  paf
                   20636:        * src/main/pa_globals.C 1.28:
                   20637:        * src/types/pa_vclass.C 1.6:
                   20638:        * src/types/pa_vclass.h 1.11:
                   20639:        * src/types/pa_vstateless_class.C 1.6:
                   20640:        * src/types/pa_vstateless_class.h 1.8:
                   20641:                thrown away freeze mech.
                   20642:                no danger now for you can't do ^request:process[@new-method[]
                   20643:                body]
                   20644:                trick anymore.
                   20645:                still remains $some_instance.process[@new-method[]
                   20646:                possibility]
                   20647:                but would leave it as a feature.
                   20648:                see index for sample
                   20649: 
                   20650:        * src/include/pa_string.h 1.51:
                   20651:        * src/main/pa_string.C 1.51:
                   20652:        * src/main/untaint.C 1.14:
                   20653:        * src/targets/cgi/parser3.C 1.47:
                   20654:                html-typo 2
                   20655: 
                   20656:        * src/include/pa_array.h 1.29:
                   20657:        * src/include/pa_hash.h 1.31:
                   20658:        * src/include/pa_request.h 1.67:
                   20659:        * src/main/compile.y 1.110:
                   20660:        * src/main/pa_array.C 1.26:
                   20661:        * src/main/pa_common.C 1.25:
                   20662:        * src/main/pa_hash.C 1.29:
                   20663:        * src/main/pa_request.C 1.73:
                   20664:        * src/types/pa_vcookie.C 1.12:
                   20665:                cyclic uses ignored. defaulted default content-type
                   20666: 
                   20667:        * src/doc/doxygen.cfg 1.1:
                   20668:        * src/doc/doxygen.txt 1.1:
                   20669:        * src/doc/generate.cmd 1.1:
                   20670:        * src/doc/view.cmd 1.1:
                   20671:        * src/include/pa_array.h 1.30:
                   20672:        * src/include/pa_globals.h 1.26:
                   20673:        * src/include/pa_pool.h 1.44:
                   20674:        * src/include/pa_string.h 1.50:
                   20675:        * src/include/pa_table.h 1.19:
                   20676:        * src/main/execute.C 1.125:
                   20677:        * src/main/pa_array.C 1.27:
                   20678:        * src/main/pa_globals.C 1.31:
                   20679:        * src/main/pa_request.C 1.78:
                   20680:        * src/main/pa_string.C 1.50:
                   20681:        * src/main/untaint.C 1.13:
                   20682:        * src/targets/cgi/parser3.C 1.46:
                   20683:        * src/targets/isapi/parser3isapi.C 1.18:
                   20684:        * src/types/pa_value.h 1.32:
                   20685:        * src/types/pa_vtable.h 1.6:
                   20686:                html-typo 0
                   20687:                html-typo 1. noticed double default content-type prob. run cgi.cmd tomorrow first
                   20688:                html-typo sample. detected << problem: they become ltlt too fast
                   20689: 
                   20690:        * src/classes/file.C 1.6:
                   20691:        * src/classes/root.C 1.49:
                   20692:        * src/classes/table.C 1.25:
                   20693:        * src/include/pa_common.h 1.25:
                   20694:        * src/include/pa_request.h 1.69:
                   20695:        * src/main/compile.y 1.111:
                   20696:        * src/main/pa_common.C 1.28:
                   20697:        * src/main/pa_request.C 1.77:
                   20698:        * src/main/pa_string.C 1.49:
                   20699:        * src/targets/isapi/parser3isapi.C 1.17:
                   20700:        * src/types/pa_vfile.h 1.6:
                   20701:                file_read stringified
                   20702: 
                   20703:        * src/include/pa_sapi.h 1.2:
                   20704:        * src/main/pa_common.C 1.27:
                   20705:        * src/main/pa_request.C 1.76:
                   20706:        * src/targets/cgi/parser3.C 1.44:
                   20707:        * src/targets/isapi/nt_log_events.mc 1.1:
                   20708:        * src/targets/isapi/parser3isapi.C 1.16:
                   20709:        * src/targets/isapi/parser3isapi.dsp 1.6:
                   20710:                nt error log experiments failed - cgi under iis got no access to log. registereventsource simply failed with 5(illegal call) code, while worked OK as standalone executable.
                   20711:                isapi: used HSE_APPEND_LOG_PARAMETER feature
                   20712: 
                   20713:        * src/types/pa_valiased.C 1.3:
                   20714:                decided to String-ify file_read
                   20715: 
                   20716:        * src/targets/cgi/parser3.C 1.45:
                   20717:        * src/targets/isapi/nt_log_events.mc 1.2:
                   20718:        * src/targets/isapi/parser3isapi.dsp 1.7:
                   20719:                cgi: sapi::log
                   20720: 
                   20721:        * src/main/compile.y 1.109:
                   20722:        * src/main/execute.C 1.124:
                   20723:        * src/main/main.dsp 1.69:
                   20724:                @CLASS equals @BASE. sanity
                   20725: 
                   20726:        * src/include/pa_common.h 1.22:
                   20727:        * src/main/pa_common.C 1.23:
                   20728:        * src/main/pa_request.C 1.72:
                   20729:        * src/targets/cgi/parser3.C 1.42:
                   20730:        * src/targets/isapi/pool_storage.h 1.2:
                   20731:        * src/types/pa_vform.C 1.16:
                   20732:        * src/types/pa_vform.h 1.14:
                   20733:                auto.p monkey
                   20734: 
                   20735:        * src/include/pa_common.h 1.24:
                   20736:        * src/include/pa_globals.h 1.25:
                   20737:        * src/main/pa_common.C 1.26:
                   20738:        * src/main/pa_globals.C 1.30:
                   20739:        * src/main/pa_request.C 1.75:
                   20740:        * src/targets/isapi/parser3isapi.C 1.15:
                   20741:                fixed default content-type allocation storage
                   20742: 
1.24      paf      20743:        * src/include/pa_globals.h 1.24:
                   20744:        * src/include/pa_request.h 1.68:
                   20745:        * src/main/compile.y 1.113:
                   20746:        * src/main/pa_common.C 1.29:
                   20747:        * src/main/pa_globals.C 1.29:
                   20748:        * src/main/pa_request.C 1.74:
                   20749:                z
                   20750: 
1.15      paf      20751:        * src/include/pa_common.h 1.23:
                   20752:        * src/main/pa_common.C 1.24:
                   20753:        * src/targets/cgi/parser3.C 1.43:
                   20754:        * src/targets/isapi/parser3isapi.C 1.14:
                   20755:                auto.p monkey every target
                   20756: 
                   20757:        * src/main/compile.y 1.112:
                   20758:        * src/main/compile_tools.h 1.34:
                   20759:                #comment
                   20760: 
                   20761: 2001-03-23  paf
                   20762:        * src/classes/root.C 1.48:
                   20763:        * src/classes/table.C 1.24:
                   20764:        * src/include/pa_common.h 1.21:
                   20765:        * src/include/pa_config_fixed.h 1.1:
                   20766:        * src/include/pa_config_includes.h 1.1:
                   20767:        * src/include/pa_string.h 1.49:
                   20768:        * src/include/pa_threads.h 1.11:
                   20769:        * src/include/pa_types.h 1.23:
                   20770:        * src/include/pa_version.h 1.1:
                   20771:        * src/main/compile.y 1.108:
                   20772:        * src/main/execute.C 1.123:
                   20773:        * src/main/pa_array.C 1.25:
                   20774:        * src/main/pa_common.C 1.22:
                   20775:        * src/main/pa_hash.C 1.28:
                   20776:        * src/main/pa_pool.C 1.17:
                   20777:        * src/main/pa_request.C 1.70:
                   20778:        * src/main/pa_string.C 1.48:
                   20779:        * src/main/untaint.C 1.12:
                   20780:        * src/targets/cgi/parser3.C 1.40:
                   20781:        * src/targets/isapi/parser3isapi.C 1.10:
                   20782:        * src/types/pa_vfile.C 1.6:
                   20783:        * src/types/pa_vform.C 1.15:
                   20784:                cgi: reinvent document_root and request_uri under iis. autoconf
                   20785:                updated. introducing ap_config_includes
                   20786: 
                   20787:        * src/targets/cgi/parser3.C 1.41:
                   20788:        * src/targets/isapi/parser3isapi.C 1.12:
                   20789:                isapi: think it would be better to rewrite as filter then to
                   20790:                deal with pool
                   20791: 
                   20792:        * src/targets/cgi/parser3.C 1.39:
                   20793:                cgi: reinvent document_root under iis
                   20794: 
                   20795:        * src/include/pa_globals.h 1.22:
                   20796:        * src/main/pa_request.C 1.68:
                   20797:        * src/targets/cgi/parser3.C 1.36:
                   20798:        * src/targets/cgi/parser3.dsp 1.12:
                   20799:        * src/targets/isapi/parser3isapi.C 1.8:
                   20800:        * src/types/pa_vcookie.C 1.10:
                   20801:        * src/types/pa_venv.h 1.12:
                   20802:        * src/types/pa_vform.C 1.13:
                   20803:                all: sapi beauty
                   20804: 
                   20805:        * src/main/pa_request.C 1.67:
                   20806:        * src/targets/cgi/parser3.C 1.35:
                   20807:        * src/targets/isapi/parser3isapi.C 1.7:
                   20808:        * src/targets/isapi/parser3isapi.dsp 1.4:
                   20809:                isapi minor env beauty
                   20810: 
                   20811:        * src/include/pa_globals.h 1.23:
                   20812:        * src/include/pa_sapi.h 1.1:
                   20813:        * src/main/main.dsp 1.67:
                   20814:        * src/main/pa_globals.C 1.27:
                   20815:        * src/main/pa_request.C 1.69:
                   20816:        * src/targets/cgi/parser3.C 1.37:
                   20817:        * src/targets/isapi/parser3isapi.C 1.9:
                   20818:        * src/types/pa_vcookie.C 1.11:
                   20819:        * src/types/pa_venv.h 1.13:
                   20820:        * src/types/pa_vform.C 1.14:
                   20821:                sapi made object
                   20822: 
                   20823:        * src/include/pa_pool.h 1.43:
                   20824:        * src/main/pa_request.C 1.71:
                   20825:        * src/targets/cgi/pa_pool.C 1.3:
                   20826:        * src/targets/isapi/pa_pool.C 1.3:
                   20827:        * src/targets/isapi/parser3isapi.C 1.13:
                   20828:        * src/targets/isapi/parser3isapi.dsp 1.5:
                   20829:        * src/targets/isapi/pool_storage.h 1.1:
                   20830:                isapi: dumb pool storage
                   20831: 
                   20832:        * src/main/main.dsp 1.68:
                   20833:        * src/targets/isapi/parser3isapi.C 1.11:
                   20834:                isapi: docroot now like in cgi, not from APPL_PHYSICAL_PATH
                   20835: 
                   20836:        * src/targets/isapi/pa_pool.C 1.2:
                   20837:                decided to continue with extension
                   20838: 
                   20839:        * src/targets/cgi/parser3.C 1.38:
                   20840:                cgi: only one pool now
                   20841: 
                   20842: 2001-03-22  paf
                   20843:        * src/main/pa_request.C 1.66:
                   20844:        * src/targets/cgi/parser3.C 1.34:
                   20845:        * src/targets/isapi/parser3isapi.C 1.6:
                   20846:        * src/targets/isapi/parser3isapi.dsp 1.3:
                   20847:                isapi document_root 0
                   20848: 
                   20849:        * src/types/pa_vcookie.C 1.8:
                   20850:                cookie attr decoded
                   20851: 
                   20852:        * src/include/pa_pool.h 1.40:
                   20853:        * src/targets/cgi/pa_pool.C 1.2:
                   20854:        * src/targets/cgi/parser3.C 1.31:
                   20855:        * src/targets/cgi/parser3.dsp 1.11:
                   20856:        * src/targets/isapi/pa_pool.C 1.1:
                   20857:        * src/targets/isapi/parser3isapi.C 1.1:
                   20858:        * src/targets/isapi/parser3isapi.def 1.1:
                   20859:        * src/targets/isapi/parser3isapi.dsp 1.1:
                   20860:                started isapi
                   20861: 
                   20862:        * src/targets/isapi/parser3isapi.C 1.5:
                   20863:                isapi keep-alive
                   20864: 
                   20865:        * src/targets/isapi/KILL.EXE 1.1:
                   20866:        * src/targets/isapi/PSTAT.EXE 1.1:
                   20867:        * src/targets/isapi/istart.cmd 1.1:
                   20868:        * src/targets/isapi/istop.cmd 1.1:
                   20869:        * src/targets/isapi/kill.pl 1.1:
                   20870:                isapi added utils
                   20871: 
                   20872:        * src/include/pa_pool.h 1.41:
                   20873:        * src/main/pa_pool.C 1.16:
                   20874:        * src/targets/cgi/parser3.C 1.32:
                   20875:        * src/targets/isapi/parser3isapi.C 1.2:
                   20876:        * src/targets/isapi/parser3isapi.dsp 1.2:
                   20877:        * src/types/pa_vform.C 1.12:
                   20878:                isapi 0
                   20879: 
                   20880:        * src/include/pa_globals.h 1.20:
                   20881:        * src/include/pa_request.h 1.66:
                   20882:        * src/include/pa_types.h 1.22:
                   20883:        * src/main/pa_globals.C 1.26:
                   20884:        * src/main/pa_request.C 1.63:
                   20885:        * src/targets/cgi/parser3.C 1.30:
                   20886:        * src/types/pa_vcookie.C 1.9:
                   20887:                config of auto.p path: parser_root_auto_path parser_site_auto_path
                   20888: 
                   20889:        * src/targets/cgi/vform_fields_fill.C 1.2:
                   20890:        * src/targets/cgi/vform_fields_fill.h 1.2:
                   20891:        * src/targets/isapi/parser3isapi.C 1.4:
                   20892:                z
                   20893: 
                   20894:        * src/include/pa_globals.h 1.21:
                   20895:        * src/main/pa_common.C 1.21:
                   20896:        * src/main/pa_request.C 1.64:
                   20897:                some comments
                   20898: 
                   20899:        * src/include/pa_pool.h 1.42:
                   20900:        * src/main/pa_request.C 1.65:
                   20901:        * src/targets/cgi/parser3.C 1.33:
                   20902:        * src/targets/isapi/parser3isapi.C 1.3:
                   20903:                isapi 1
                   20904: 
                   20905: 2001-03-21  paf
                   20906:        * src/include/pa_globals.h 1.18:
                   20907:        * src/targets/cgi/parser3.C 1.28:
                   20908:        * src/types/pa_venv.h 1.11:
                   20909:                in cookie & env. todo:post
                   20910: 
                   20911:        * src/Makefile.am 1.3:
                   20912:        * src/classes/Makefile.am 1.2:
                   20913:        * src/classes/file.C 1.5:
                   20914:        * src/classes/root.C 1.47:
                   20915:        * src/classes/table.C 1.23:
                   20916:        * src/include/pa_array.h 1.28:
                   20917:        * src/include/pa_common.h 1.20:
                   20918:        * src/include/pa_globals.h 1.17:
                   20919:        * src/include/pa_pool.h 1.39:
                   20920:        * src/include/pa_request.h 1.65:
                   20921:        * src/include/pa_string.h 1.48:
                   20922:        * src/main/Makefile.am 1.8:
                   20923:        * src/main/compile.y 1.107:
                   20924:        * src/main/execute.C 1.122:
                   20925:        * src/main/main.dsp 1.66:
                   20926:        * src/main/pa_common.C 1.20:
                   20927:        * src/main/pa_globals.C 1.25:
                   20928:        * src/main/pa_request.C 1.62:
                   20929:        * src/main/pa_string.C 1.47:
                   20930:        * src/main/pa_table.C 1.16:
                   20931:        * src/main/untaint.C 1.11:
                   20932:        * src/targets/Makefile.am 1.4:
                   20933:        * src/targets/cgi/Makefile.am 1.2:
                   20934:        * src/targets/cgi/parser3.C 1.27:
                   20935:        * src/targets/cgi/parser3.dsp 1.10:
                   20936:        * src/types/Makefile.am 1.2:
                   20937:        * src/types/pa_vcookie.C 1.7:
                   20938:        * src/types/pa_vform.C 1.11:
                   20939:        * src/types/pa_vstring.h 1.11:
                   20940:        * src/types/pa_wwrapper.h 1.5:
                   20941:                shifted apache branch on main trunc
                   20942: 
                   20943:        * src/targets/cgi/parser3.C 1.29:
                   20944:                z
                   20945: 
                   20946:        * src/include/pa_common.h [automake_update] 1.19.2.2:
                   20947:        * src/include/pa_globals.h [automake_update] 1.16.2.1:
                   20948:        * src/include/pa_pool.h [automake_update] 1.38.2.1:
                   20949:        * src/include/pa_request.h [automake_update] 1.64.2.4:
                   20950:        * src/main/main.dsp [automake_update] 1.65.2.1:
                   20951:        * src/main/pa_common.C [automake_update] 1.19.2.5:
                   20952:        * src/main/pa_request.C [automake_update] 1.61.2.3:
                   20953:        * src/targets/cgi/parser3.C [automake_update] 1.26.2.4:
                   20954:        * src/targets/cgi/parser3.dsp [automake_update] 1.9.2.1:
                   20955:        * src/types/pa_vcookie.C [automake_update] 1.6.2.2:
                   20956:        * src/types/pa_vform.C [automake_update] 1.10.2.1:
                   20957:        * src/types/pa_vstring.h [automake_update] 1.10.2.1:
                   20958:                starting mod_parser3
                   20959: 
                   20960:        * src/include/pa_globals.h 1.19:
                   20961:                post. todo: config of auto.p path
                   20962: 
                   20963: 2001-03-20  paf
                   20964:        * src/classes/Makefile.am 1.1:
                   20965:        * src/types/Makefile.am 1.1:
                   20966:                file Makefile.am was initially added on branch automake_update.
                   20967: 
                   20968:        * src/main/pa_common.C [automake_update] 1.19.2.4:
                   20969:        * src/targets/cgi/Makefile.am [automake_update] 1.1.2.3:
                   20970:        * src/targets/cgi/parser3.C [automake_update] 1.26.2.3:
                   20971:                automake compiled and works. todo:make win32 ifdefs work and
                   20972:                add ifdef unistd
                   20973: 
                   20974:        * src/classes/Makefile.am [automake_update] 1.1.2.1:
                   20975:        * src/classes/file.C 1.4:
                   20976:        * src/classes/table.C 1.21:
                   20977:        * src/classes/table.C [automake_update] 1.22.2.2:
                   20978:        * src/include/pa_array.h 1.27:
                   20979:        * src/include/pa_common.h 1.18:
                   20980:        * src/include/pa_common.h [automake_update] 1.19.2.1:
                   20981:        * src/include/pa_request.h 1.64:
                   20982:        * src/include/pa_request.h [automake_update] 1.64.2.3:
                   20983:        * src/include/pa_string.h 1.47:
                   20984:        * src/include/pa_table.h 1.18:
                   20985:        * src/include/pa_threads.h 1.10:
                   20986:        * src/main/Makefile.am [automake_update] 1.7.16.3:
                   20987:        * src/main/pa_common.C [automake_update] 1.19.2.3:
                   20988:        * src/main/pa_globals.C 1.24:
                   20989:        * src/main/pa_request.C [automake_update] 1.61.2.2:
                   20990:        * src/main/pa_table.C [automake_update] 1.15.2.1:
                   20991:        * src/main/untaint.C 1.10:
                   20992:        * src/targets/cgi/Makefile.am [automake_update] 1.1.2.2:
                   20993:        * src/targets/cgi/parser3.C [automake_update] 1.26.2.2:
                   20994:        * src/types/Makefile.am [automake_update] 1.1.2.1:
                   20995:        * src/types/pa_valiased.h 1.8:
                   20996:        * src/types/pa_value.h 1.31:
                   20997:        * src/types/pa_vform.h 1.13:
                   20998:                z
                   20999: 
                   21000:        * src/include/pa_request.h [automake_update] 1.64.2.2:
                   21001:        * src/main/Makefile.am [automake_update] 1.7.16.2:
                   21002:        * src/main/compile.y [automake_update] 1.106.2.1:
                   21003:        * src/main/execute.C [automake_update] 1.121.2.2:
                   21004:        * src/main/pa_common.C [automake_update] 1.19.2.2:
                   21005:        * src/types/Makefile.am [automake_update] 1.1.2.2:
                   21006:                removing locking
                   21007: 
                   21008:        * src/Makefile.am [automake_update] 1.2.16.1:
                   21009:        * src/classes/file.C [automake_update] 1.4.2.1:
                   21010:        * src/classes/root.C [automake_update] 1.46.2.1:
                   21011:        * src/classes/table.C [automake_update] 1.22.2.1:
                   21012:        * src/include/pa_array.h [automake_update] 1.27.2.1:
                   21013:        * src/include/pa_request.h [automake_update] 1.64.2.1:
                   21014:        * src/include/pa_string.h [automake_update] 1.47.2.1:
                   21015:        * src/main/Makefile.am [automake_update] 1.7.16.1:
                   21016:        * src/main/execute.C [automake_update] 1.121.2.1:
                   21017:        * src/main/pa_common.C [automake_update] 1.19.2.1:
                   21018:        * src/main/pa_globals.C [automake_update] 1.24.2.1:
                   21019:        * src/main/pa_request.C [automake_update] 1.61.2.1:
                   21020:        * src/main/pa_string.C [automake_update] 1.46.2.1:
                   21021:        * src/main/untaint.C [automake_update] 1.10.2.1:
                   21022:        * src/targets/Makefile.am [automake_update] 1.3.16.1:
                   21023:        * src/targets/cgi/Makefile.am [automake_update] 1.1.2.1:
                   21024:        * src/targets/cgi/parser3.C [automake_update] 1.26.2.1:
                   21025:        * src/types/pa_vcookie.C [automake_update] 1.6.2.1:
                   21026:        * src/types/pa_wwrapper.h [automake_update] 1.4.8.1:
                   21027:                String::UL_
                   21028: 
                   21029:        * src/classes/table.C 1.22:
                   21030:        * src/include/pa_common.h 1.19:
                   21031:        * src/main/pa_common.C 1.19:
                   21032:        * src/main/pa_request.C 1.61:
                   21033:        * src/types/pa_vfile.h 1.5:
                   21034:                ^table:save
                   21035: 
                   21036: 2001-03-19  paf
                   21037:        * src/classes/file.C 1.2:
                   21038:        * src/classes/request.C 1.4:
                   21039:        * src/classes/table.C 1.19:
                   21040:        * src/include/pa_string.h 1.45:
                   21041:        * src/main/main.dsp 1.61:
                   21042:        * src/main/pa_pool.C 1.15:
                   21043:        * src/main/pa_request.C 1.58:
                   21044:        * src/main/untaint.C 1.9:
                   21045:        * src/types/pa_value.h 1.27:
                   21046:        * src/types/pa_vfile.C 1.2:
                   21047:        * src/types/pa_vfile.h 1.2:
                   21048:        * src/types/pa_vform.C 1.10:
                   21049:                file 1
                   21050: 
                   21051:        * src/classes/table.C 1.17:
                   21052:        * src/include/pa_pool.h 1.38:
                   21053:        * src/include/pa_request.h 1.63:
                   21054:        * src/include/pa_table.h 1.16:
                   21055:        * src/include/pa_types.h 1.20:
                   21056:        * src/main/execute.C 1.119:
                   21057:        * src/main/pa_request.C 1.57:
                   21058:        * src/targets/cgi/parser3.C 1.25:
                   21059:        * src/types/pa_value.h 1.25:
                   21060:        * src/types/pa_vclass.h 1.10:
                   21061:        * src/types/pa_vform.C 1.8:
                   21062:        * src/types/pa_vstateless_class.h 1.5:
                   21063:        * src/types/pa_vstateless_object.h 1.4:
                   21064:                ^table:set{default level: TABLE}
                   21065: 
                   21066:        * src/classes/_request.h 1.3:
                   21067:        * src/classes/request.C 1.5:
                   21068:        * src/main/pa_globals.C 1.22:
                   21069:        * src/types/pa_vrequest.C 1.2:
                   21070:        * src/types/pa_vrequest.h 1.6:
                   21071:                VRequest moved to :VStateless_object
                   21072: 
                   21073:        * src/classes/_request.h 1.4:
                   21074:        * src/classes/request.C 1.6:
                   21075:        * src/main/main.dsp 1.65:
                   21076:        * src/main/pa_globals.C 1.23:
                   21077:        * src/types/pa_value.h 1.30:
                   21078:        * src/types/pa_vform.h 1.12:
                   21079:        * src/types/pa_vrequest.C 1.3:
                   21080:        * src/types/pa_vrequest.h 1.7:
                   21081:                VRequest moved to :Value
                   21082: 
                   21083:        * src/types/pa_valiased.h 1.4:
                   21084:        * src/types/pa_vbool.h 1.4:
                   21085:                doc: Value and it's derivates somehow unlinked. don't know why yet
                   21086: 
                   21087:        * src/classes/_env.h 1.6:
                   21088:        * src/classes/_table.h 1.4:
                   21089:        * src/classes/env.C 1.8:
                   21090:        * src/classes/table.C 1.20:
                   21091:        * src/main/execute.C 1.121:
                   21092:        * src/main/main.dsp 1.63:
                   21093:        * src/main/pa_globals.C 1.20:
                   21094:        * src/main/pa_request.C 1.60:
                   21095:        * src/types/pa_value.h 1.28:
                   21096:        * src/types/pa_vcookie.C 1.6:
                   21097:        * src/types/pa_vcookie.h 1.6:
                   21098:        * src/types/pa_venv.h 1.10:
                   21099:                VEnv is now :Value
                   21100: 
                   21101:        * src/targets/cgi/pa_vform.C 1.3:
                   21102:        * src/types/pa_valiased.C 1.1:
                   21103:        * src/types/pa_valiased.h 1.7:
                   21104:        * src/types/pa_value.h 1.29:
                   21105:        * src/types/pa_vstateless_class.C 1.5:
                   21106:        * src/types/pa_vstateless_class.h 1.7:
                   21107:        * src/types/pa_vstateless_object.h 1.7:
                   21108:                moved common get_element part from stateless object&class into VAliased
                   21109: 
                   21110:        * src/classes/_file.h 1.2:
                   21111:        * src/classes/file.C 1.3:
                   21112:        * src/include/pa_types.h 1.21:
                   21113:        * src/main/pa_globals.C 1.18:
                   21114:        * src/main/pa_request.C 1.59:
                   21115:        * src/targets/cgi/parser3.C 1.26:
                   21116:        * src/types/pa_valiased.h 1.6:
                   21117:        * src/types/pa_vfile.C 1.4:
                   21118:        * src/types/pa_vfile.h 1.3:
                   21119:        * src/types/pa_vstateless_class.h 1.6:
                   21120:        * src/types/pa_vstateless_object.h 1.5:
                   21121:                \ to /  and ^file:save
                   21122: 
                   21123:        * src/classes/root.C 1.46:
                   21124:        * src/classes/table.C 1.16:
                   21125:        * src/main/pa_exception.C 1.7:
                   21126:        * src/main/pa_request.C 1.53:
                   21127:        * src/targets/cgi/parser3.C 1.24:
                   21128:        * src/types/pa_vbool.h 1.3:
                   21129:        * src/types/pa_vcookie.C 1.3:
                   21130:        * src/types/pa_vcookie.h 1.3:
                   21131:        * src/types/pa_vdouble.h 1.9:
                   21132:        * src/types/pa_venv.h 1.8:
                   21133:        * src/types/pa_vform.h 1.8:
                   21134:        * src/types/pa_vint.h 1.10:
                   21135:        * src/types/pa_vrequest.h 1.4:
                   21136:                doc: detected Value derivates prob
                   21137: 
                   21138:        * src/include/code.h 1.25:
                   21139:        * src/include/pa_array.h 1.25:
                   21140:        * src/include/pa_pool.h 1.35:
                   21141:        * src/include/pa_string.h 1.42:
                   21142:        * src/include/pa_threads.h 1.8:
                   21143:        * src/main/compile.C 1.32:
                   21144:        * src/main/compile.y 1.105:
                   21145:        * src/main/compile_tools.C 1.29:
                   21146:        * src/main/compile_tools.h 1.32:
                   21147:        * src/main/execute.C 1.117:
                   21148:        * src/main/pa_array.C 1.23:
                   21149:        * src/main/pa_common.C 1.15:
                   21150:        * src/main/pa_exception.C 1.8:
                   21151:        * src/main/pa_globals.C 1.15:
                   21152:        * src/main/pa_hash.C 1.25:
                   21153:        * src/main/pa_pool.C 1.13:
                   21154:        * src/main/pa_request.C 1.54:
                   21155:        * src/main/pa_string.C 1.45:
                   21156:        * src/main/pa_table.C 1.14:
                   21157:        * src/main/untaint.C 1.7:
                   21158:        * src/types/pa_value.h 1.23:
                   21159:                auto @brief
                   21160: 
                   21161:        * src/classes/_file.h 1.1:
                   21162:        * src/classes/file.C 1.1:
                   21163:        * src/classes/table.C 1.18:
                   21164:        * src/include/pa_common.h 1.17:
                   21165:        * src/include/pa_globals.h 1.16:
                   21166:        * src/include/pa_string.h 1.44:
                   21167:        * src/include/pa_table.h 1.17:
                   21168:        * src/main/main.dsp 1.60:
                   21169:        * src/main/pa_common.C 1.18:
                   21170:        * src/main/pa_globals.C 1.17:
                   21171:        * src/types/pa_value.h 1.26:
                   21172:        * src/types/pa_vcookie.h 1.4:
                   21173:        * src/types/pa_venv.h 1.9:
                   21174:        * src/types/pa_vfile.C 1.1:
                   21175:        * src/types/pa_vfile.h 1.1:
                   21176:        * src/types/pa_vform.C 1.9:
                   21177:        * src/types/pa_vform.h 1.9:
                   21178:        * src/types/pa_vrequest.h 1.5:
                   21179:        * src/types/pa_vtable.h 1.5:
                   21180:                file class just compiled
                   21181: 
                   21182:        * src/types/pa_vfile.C 1.5:
                   21183:        * src/types/pa_vfile.h 1.4:
                   21184:        * src/types/pa_vstateless_object.h 1.6:
                   21185:                vfile doxx
                   21186: 
                   21187:        * src/classes/_response.h 1.2:
                   21188:        * src/classes/response.C 1.4:
                   21189:        * src/main/pa_globals.C 1.21:
                   21190:        * src/types/pa_vform.h 1.11:
                   21191:        * src/types/pa_vresponse.h 1.3:
                   21192:                VResponse moved to :VStateless_object
                   21193: 
                   21194:        * src/classes/_request.h 1.2:
                   21195:        * src/classes/request.C 1.3:
                   21196:        * src/include/code.h 1.24:
                   21197:        * src/include/pa_array.h 1.24:
                   21198:        * src/include/pa_common.h 1.15:
                   21199:        * src/include/pa_exception.h 1.10:
                   21200:        * src/include/pa_globals.h 1.13:
                   21201:        * src/include/pa_hash.h 1.28:
                   21202:        * src/include/pa_pool.h 1.34:
                   21203:        * src/include/pa_request.h 1.61:
                   21204:        * src/include/pa_stack.h 1.7:
                   21205:        * src/include/pa_string.h 1.41:
                   21206:        * src/include/pa_table.h 1.14:
                   21207:        * src/include/pa_threads.h 1.7:
                   21208:        * src/include/pa_types.h 1.17:
                   21209:        * src/main/execute.C 1.116:
                   21210:        * src/main/pa_pool.C 1.12:
                   21211:        * src/main/pa_request.C 1.52:
                   21212:        * src/main/pa_string.C 1.44:
                   21213:        * src/main/untaint.C 1.6:
                   21214:        * src/targets/cgi/parser3.C 1.23:
                   21215:        * src/types/pa_value.h 1.22:
                   21216:        * src/types/pa_vform.C 1.7:
                   21217:                doxygen include/, Value
                   21218: 
                   21219:        * src/include/code.h 1.26:
                   21220:        * src/include/pa_array.h 1.26:
                   21221:        * src/include/pa_common.h 1.16:
                   21222:        * src/include/pa_exception.h 1.11:
                   21223:        * src/include/pa_globals.h 1.14:
                   21224:        * src/include/pa_globals.h 1.15:
                   21225:        * src/include/pa_hash.h 1.29:
                   21226:        * src/include/pa_pool.h 1.36:
                   21227:        * src/include/pa_pool.h 1.37:
                   21228:        * src/include/pa_request.h 1.62:
                   21229:        * src/include/pa_stack.h 1.8:
                   21230:        * src/include/pa_string.h 1.43:
                   21231:        * src/include/pa_string.h 1.46:
                   21232:        * src/include/pa_table.h 1.15:
                   21233:        * src/include/pa_threads.h 1.9:
                   21234:        * src/include/pa_types.h 1.18:
                   21235:        * src/main/compile.C 1.33:
                   21236:        * src/main/compile.y 1.106:
                   21237:        * src/main/compile_tools.C 1.30:
                   21238:        * src/main/compile_tools.h 1.33:
                   21239:        * src/main/execute.C 1.118:
                   21240:        * src/main/pa_array.C 1.24:
                   21241:        * src/main/pa_common.C 1.16:
                   21242:        * src/main/pa_exception.C 1.9:
                   21243:        * src/main/pa_globals.C 1.16:
                   21244:        * src/main/pa_hash.C 1.26:
                   21245:        * src/main/pa_pool.C 1.14:
                   21246:        * src/main/pa_request.C 1.55:
                   21247:        * src/main/pa_string.C 1.46:
                   21248:        * src/main/pa_table.C 1.15:
                   21249:        * src/main/untaint.C 1.8:
                   21250:        * src/types/pa_valiased.h 1.5:
                   21251:        * src/types/pa_value.h 1.24:
                   21252:        * src/types/pa_vfile.C 1.3:
                   21253:                z
                   21254: 
                   21255:        * src/include/pa_hash.h 1.30:
                   21256:        * src/include/pa_types.h 1.19:
                   21257:        * src/main/pa_common.C 1.17:
                   21258:        * src/main/pa_hash.C 1.27:
                   21259:        * src/main/pa_request.C 1.56:
                   21260:        * src/types/pa_vcookie.C 1.4:
                   21261:                renamed Hash::Value to Val so to doxygen would finlly stop
                   21262:                confusing those Value-s
                   21263: 
                   21264:        * src/main/main.dsp 1.64:
                   21265:        * src/targets/cgi/parser3.dsp 1.9:
                   21266:        * src/types/pa_valiased.C 1.2:
                   21267:        * src/types/pa_vform.h 1.10:
                   21268:                commented VForm
                   21269: 
                   21270:        * src/classes/_cookie.h 1.2:
                   21271:        * src/classes/_table.h 1.3:
                   21272:        * src/classes/cookie.C 1.3:
                   21273:        * src/main/execute.C 1.120:
                   21274:        * src/main/main.dsp 1.62:
                   21275:        * src/main/pa_globals.C 1.19:
                   21276:        * src/types/pa_vcookie.C 1.5:
                   21277:        * src/types/pa_vcookie.h 1.5:
                   21278:                VCookie is now :Value
                   21279: 
                   21280: 2001-03-18  paf
                   21281:        * src/classes/_cookie.h 1.1:
                   21282:        * src/classes/cookie.C 1.1:
                   21283:        * src/include/pa_common.h 1.14:
                   21284:        * src/include/pa_globals.h 1.12:
                   21285:        * src/include/pa_request.h 1.60:
                   21286:        * src/include/pa_string.h 1.40:
                   21287:        * src/include/pa_types.h 1.16:
                   21288:        * src/main/main.dsp 1.59:
                   21289:        * src/main/pa_common.C 1.14:
                   21290:        * src/main/pa_globals.C 1.14:
                   21291:        * src/main/pa_hash.C 1.24:
                   21292:        * src/main/pa_request.C 1.51:
                   21293:        * src/main/pa_string.C 1.43:
                   21294:        * src/main/untaint.C 1.5:
                   21295:        * src/targets/cgi/parser3.C 1.21:
                   21296:        * src/types/pa_value.h 1.21:
                   21297:        * src/types/pa_vcookie.C 1.1:
                   21298:        * src/types/pa_vcookie.h 1.1:
                   21299:        * src/types/pa_vform.C 1.6:
                   21300:        * src/types/pa_vform.h 1.7:
                   21301:        * src/types/pa_vhash.h 1.9:
                   21302:        * src/types/pa_vunknown.h 1.4:
                   21303:                cookie class
                   21304: 
                   21305:        * src/include/pa_hash.h 1.26:
                   21306:        * src/main/pa_hash.C 1.22:
                   21307:        * src/targets/cgi/parser3.C 1.17:
                   21308:                response fields to header
                   21309: 
                   21310:        * src/classes/root.C 1.41:
                   21311:        * src/classes/string.C 1.12:
                   21312:        * src/include/pa_string.h 1.37:
                   21313:        * src/main/pa_globals.C 1.11:
                   21314:        * src/main/pa_request.C 1.44:
                   21315:        * src/main/pa_string.C 1.41:
                   21316:        * src/types/pa_vdouble.h 1.8:
                   21317:        * src/types/pa_vform.C 1.5:
                   21318:        * src/types/pa_vint.h 1.9:
                   21319:        * src/types/pa_vstateless_class.C 1.4:
                   21320:                convinient string(pool, char *src, bool tainted) ctor
                   21321: 
                   21322:        * src/include/pa_hash.h 1.27:
                   21323:        * src/include/pa_request.h 1.58:
                   21324:        * src/include/pa_string.h 1.36:
                   21325:        * src/main/pa_globals.C 1.10:
                   21326:        * src/main/pa_hash.C 1.23:
                   21327:        * src/main/pa_request.C 1.43:
                   21328:        * src/main/pa_string.C 1.40:
                   21329:        * src/main/untaint.C 1.3:
                   21330:        * src/targets/cgi/parser3.C 1.18:
                   21331:                proper @exceptions params tainting
                   21332: 
                   21333:        * src/classes/_response.h 1.1:
                   21334:        * src/classes/response.C 1.1:
                   21335:        * src/include/pa_globals.h 1.8:
                   21336:        * src/include/pa_hash.h 1.25:
                   21337:        * src/include/pa_request.h 1.57:
                   21338:        * src/main/compile.C 1.31:
                   21339:        * src/main/compile.y 1.104:
                   21340:        * src/main/execute.C 1.114:
                   21341:        * src/main/main.dsp 1.58:
                   21342:        * src/main/pa_globals.C 1.8:
                   21343:        * src/main/pa_hash.C 1.21:
                   21344:        * src/main/pa_request.C 1.41:
                   21345:        * src/targets/cgi/parser3.C 1.16:
                   21346:        * src/targets/cgi/parser3.dsp 1.8:
                   21347:        * src/types/pa_value.h 1.18:
                   21348:        * src/types/pa_vhash.h 1.6:
                   21349:        * src/types/pa_vrequest.h 1.3:
                   21350:        * src/types/pa_vresponse.h 1.1:
                   21351:                $response: 0  request::core exception rethrow
                   21352: 
                   21353:        * src/classes/request.C 1.2:
                   21354:        * src/classes/response.C 1.2:
                   21355:        * src/classes/root.C 1.42:
                   21356:        * src/include/pa_common.h 1.13:
                   21357:        * src/include/pa_globals.h 1.10:
                   21358:        * src/include/pa_request.h 1.59:
                   21359:        * src/include/pa_string.h 1.38:
                   21360:        * src/main/pa_common.C 1.13:
                   21361:        * src/main/pa_globals.C 1.12:
                   21362:        * src/main/pa_request.C 1.45:
                   21363:        * src/targets/cgi/parser3.C 1.19:
                   21364:                ^taint 0
                   21365: 
                   21366:        * src/classes/cookie.C 1.2:
                   21367:        * src/types/pa_vcookie.C 1.2:
                   21368:        * src/types/pa_vcookie.h 1.2:
                   21369:                cookie: allowed access to hash-assigned
                   21370: 
                   21371:        * src/include/pa_globals.h 1.9:
                   21372:        * src/main/execute.C 1.115:
                   21373:        * src/main/pa_globals.C 1.9:
                   21374:        * src/main/pa_request.C 1.42:
                   21375:        * src/targets/cgi/parser3.C 1.22:
                   21376:                z
                   21377: 
                   21378:        * src/main/pa_request.C 1.50:
                   21379:                zero length output allowed
                   21380: 
                   21381:        * src/classes/root.C 1.44:
                   21382:        * src/include/pa_globals.h 1.11:
                   21383:        * src/include/pa_string.h 1.39:
                   21384:        * src/main/pa_globals.C 1.13:
                   21385:        * src/main/pa_request.C 1.47:
                   21386:        * src/main/pa_string.C 1.42:
                   21387:        * src/types/pa_value.h 1.19:
                   21388:        * src/types/pa_vhash.h 1.7:
                   21389:                $defautl[$content-type[$value[text/html] $charset[windows-1251]]
                   21390: 
                   21391:        * src/classes/root.C 1.43:
                   21392:        * src/main/pa_request.C 1.46:
                   21393:        * src/main/untaint.C 1.4:
                   21394:        * src/targets/cgi/parser3.C 1.20:
                   21395:                taint[uri
                   21396: 
                   21397:        * src/classes/response.C 1.3:
                   21398:        * src/main/pa_request.C 1.49:
                   21399:        * src/types/pa_value.h 1.20:
                   21400:        * src/types/pa_vhash.h 1.8:
                   21401:        * src/types/pa_vresponse.h 1.2:
                   21402:                ^response:clear[]
                   21403: 
                   21404:        * src/classes/root.C 1.45:
                   21405:        * src/main/pa_request.C 1.48:
                   21406:                taint forgotten forced lang switch
                   21407: 
                   21408: 2001-03-16  paf
                   21409:        * src/include/code.h 1.22:
                   21410:        * src/include/pa_hash.h 1.24:
                   21411:        * src/include/pa_request.h 1.55:
                   21412:        * src/main/compile.y 1.102:
                   21413:        * src/main/execute.C 1.108:
                   21414:        * src/types/pa_value.h 1.15:
                   21415:        * src/types/pa_vhash.h 1.5:
                   21416:        * src/types/pa_vstring.h 1.10:
                   21417:        * src/types/pa_vtable.h 1.4:
                   21418:        * src/types/pa_wcontext.C 1.4:
                   21419:        * src/types/pa_wcontext.h 1.6:
                   21420:                see () and {} param wcontext conflict
                   21421: 
                   21422:        * src/main/execute.C 1.113:
                   21423:        * src/main/main.dsp 1.57:
                   21424:        * src/types/pa_value.h 1.17:
                   21425:        * src/types/pa_vrequest.h 1.2:
                   21426:                native method' class call with less params then needed error reporting
                   21427: 
                   21428:        * src/classes/double.C 1.17:
                   21429:        * src/include/code.h 1.23:
                   21430:        * src/main/compile.y 1.103:
                   21431:        * src/main/compile_tools.C 1.28:
                   21432:        * src/main/compile_tools.h 1.31:
                   21433:        * src/main/execute.C 1.109:
                   21434:                ) and {} param wcontext conflict fixed by OP_EXPR_CODE__STORE_PARAM
                   21435: 
                   21436:        * src/main/execute.C 1.107:
                   21437:        * src/types/pa_value.h 1.14:
                   21438:        * src/types/pa_vstateless_object.h 1.3:
                   21439:        * src/types/pa_vstring.h 1.9:
                   21440:                disabled  $string.field
                   21441: 
                   21442:        * src/main/execute.C 1.110:
                   21443:        * src/types/pa_vmframe.h 1.7:
                   21444:                if(in "/news/")
                   21445: 
                   21446:        * src/include/pa_globals.h 1.6:
                   21447:        * src/main/execute.C 1.111:
                   21448:        * src/main/pa_globals.C 1.6:
                   21449:        * src/types/pa_value.h 1.16:
                   21450:        * src/types/pa_vcframe.h 1.3:
                   21451:        * src/types/pa_vmframe.h 1.8:
                   21452:        * src/types/pa_wcontext.h 1.7:
                   21453:                $result
                   21454: 
                   21455:        * src/classes/_request.h 1.1:
                   21456:        * src/classes/request.C 1.1:
                   21457:        * src/include/pa_globals.h 1.7:
                   21458:        * src/include/pa_request.h 1.56:
                   21459:        * src/main/execute.C 1.112:
                   21460:        * src/main/main.dsp 1.56:
                   21461:        * src/main/pa_globals.C 1.7:
                   21462:        * src/main/pa_request.C 1.40:
                   21463:        * src/targets/cgi/parser3.C 1.15:
                   21464:        * src/types/pa_vform.C 1.4:
                   21465:        * src/types/pa_vrequest.C 1.1:
                   21466:        * src/types/pa_vrequest.h 1.1:
                   21467:                $request : query :uri
                   21468: 
                   21469: 2001-03-15  paf
                   21470:        * src/main/compile.y 1.99:
                   21471:        * src/main/pa_request.C 1.37:
                   21472:        * src/targets/cgi/parser3.C 1.13:
                   21473:        * src/types/pa_vstring.h 1.7:
                   21474:                pre-pre-pre-beta cgi under win32 apache pre pre pre works
                   21475: 
                   21476:        * src/main/compile.y 1.100:
                   21477:        * src/main/execute.C 1.105:
                   21478:                z
                   21479: 
                   21480:        * src/main/compile.y 1.101:
                   21481:        * src/main/execute.C 1.106:
                   21482:        * src/main/pa_request.C 1.38:
                   21483:        * src/targets/cgi/parser3.C 1.14:
                   21484:        * src/types/pa_vstring.h 1.8:
                   21485:                @exception
                   21486: 
                   21487:        * src/include/pa_globals.h 1.5:
                   21488:        * src/main/pa_globals.C 1.5:
                   21489:        * src/main/pa_request.C 1.36:
                   21490:        * src/targets/cgi/parser3.C 1.12:
                   21491:        * src/types/pa_vform.C 1.3:
                   21492:        * src/types/pa_vform.h 1.6:
                   21493:                vform fillfields just compiled
                   21494: 
                   21495:        * src/main/pa_request.C 1.39:
                   21496:                news sample
                   21497: 
                   21498: 2001-03-14  paf
                   21499:        * src/include/core.h 1.16:
                   21500:        * src/include/pa_globals.h 1.1:
                   21501:        * src/include/pa_pool.h 1.33:
                   21502:        * src/include/pa_string.h 1.35:
                   21503:        * src/include/pa_types.h 1.13:
                   21504:        * src/main/compile.y 1.98:
                   21505:        * src/main/core.C 1.69:
                   21506:        * src/main/main.dsp 1.54:
                   21507:        * src/main/pa_globals.C 1.1:
                   21508:        * src/main/pa_request.C 1.31:
                   21509:        * src/targets/cgi/pa_vform.C 1.2:
                   21510:        * src/targets/cgi/parser3.C 1.5:
                   21511:        * src/targets/cgi/parser3.dsp 1.4:
                   21512:        * src/types/pa_value.h 1.13:
                   21513:        * src/types/pa_vform.h 1.3:
                   21514:        * src/types/pa_vunknown.h 1.3:
                   21515:                global handler, exceptions in parser3
                   21516: 
                   21517:        * src/include/pa_globals.h 1.4:
                   21518:        * src/main/pa_globals.C 1.4:
                   21519:        * src/main/pa_request.C 1.34:
                   21520:        * src/targets/cgi/parser3.dsp 1.7:
                   21521:        * src/types/pa_vform.C 1.2:
                   21522:        * src/types/pa_vform.h 1.5:
                   21523:        * src/types/pa_vstring.h 1.6:
                   21524:                limits -1
                   21525: 
                   21526:        * src/include/pa_common.h 1.12:
                   21527:        * src/include/pa_types.h 1.14:
                   21528:        * src/main/pa_request.C 1.32:
                   21529:        * src/targets/cgi/parser3.C 1.7:
                   21530:                PATH_DELIMITER_CHAR
                   21531: 
                   21532:        * src/targets/cgi/parser3.C 1.8:
                   21533:                #       if MSVC
                   21534: 
                   21535:        * src/include/pa_globals.h 1.3:
                   21536:        * src/include/pa_request.h 1.53:
                   21537:        * src/include/pa_types.h 1.15:
                   21538:        * src/main/main.dsp 1.55:
                   21539:        * src/main/pa_globals.C 1.3:
                   21540:        * src/main/pa_request.C 1.33:
                   21541:        * src/targets/cgi/parser3.C 1.10:
                   21542:        * src/targets/cgi/parser3.dsp 1.6:
                   21543:        * src/types/pa_vform.C 1.1:
                   21544:        * src/types/pa_vform.h 1.4:
                   21545:                request_info -1
                   21546: 
                   21547:        * src/include/pa_globals.h 1.2:
                   21548:        * src/main/pa_globals.C 1.2:
                   21549:        * src/targets/cgi/parser3.C 1.9:
                   21550:        * src/targets/cgi/parser3.dsp 1.5:
                   21551:        * src/targets/cgi/vform_fields_fill.C 1.1:
                   21552:        * src/targets/cgi/vform_fields_fill.h 1.1:
                   21553:                vform_fields_fill
                   21554: 
                   21555:        * src/include/pa_request.h 1.54:
                   21556:        * src/main/pa_request.C 1.35:
                   21557:        * src/targets/cgi/parser3.C 1.11:
                   21558:        * src/targets/cgi/parser3.C 1.6:
                   21559:                z
                   21560: 
                   21561: 2001-03-13  paf
                   21562:        * src/main/execute.C 1.101:
                   21563:        * src/types/pa_value.h 1.10:
                   21564:        * src/types/pa_venv.h 1.4:
                   21565:                for future methods of ENV constructor if
                   21566: 
                   21567:        * src/classes/root.C 1.36:
                   21568:        * src/classes/table.C 1.12:
                   21569:        * src/include/pa_exception.h 1.9:
                   21570:        * src/include/pa_pool.h 1.31:
                   21571:                skipped_restructure_exceptions_dead_end
                   21572: 
                   21573:        * src/types/pa_vstateless_class.h 1.1:
                   21574:                file pa_vstateless_class.h was initially added on branch
                   21575:                stateless_class.
                   21576: 
                   21577:        * src/include/code.h 1.21:
                   21578:        * src/include/pa_string.h 1.34:
                   21579:        * src/main/compile.y 1.95:
                   21580:        * src/main/execute.C 1.103:
                   21581:        * src/main/pa_string.C 1.39:
                   21582:                'value is type' expr operator
                   21583: 
                   21584:        * src/classes/form.C 1.2:
                   21585:        * src/main/compile.y 1.97:
                   21586:        * src/main/core.C 1.68:
                   21587:        * src/types/pa_value.h 1.12:
                   21588:        * src/types/pa_vclass.h 1.9:
                   21589:        * src/types/pa_venv.h 1.7:
                   21590:        * src/types/pa_vform.h 1.2:
                   21591:        * src/types/pa_vstateless_class.C 1.3:
                   21592:        * src/types/pa_vstateless_class.h 1.4:
                   21593:                form:fields removed. use $form.CLASS instead
                   21594: 
                   21595:        * src/types/pa_vstateless_class.C 1.1:
                   21596:                file pa_vstateless_class.C was initially added on branch
                   21597:                stateless_class.
                   21598: 
                   21599:        * src/include/core.h 1.14:
                   21600:        * src/include/pa_common.h 1.10:
                   21601:        * src/include/pa_request.h 1.51:
                   21602:        * src/main/pa_common.C 1.12:
                   21603:        * src/main/pa_request.C 1.29:
                   21604:        * src/targets/cgi/parser3.C 1.3:
                   21605:                before error show with parser
                   21606: 
                   21607:        * src/types/pa_venv.h 1.1:
                   21608:                file pa_venv.h was initially added on branch stateless_class.
                   21609: 
                   21610:        * src/targets/cgi/Makefile.am 1.1:
                   21611:        * src/targets/cgi/pa_pool.C 1.1:
                   21612:        * src/targets/cgi/pa_vform.C 1.1:
                   21613:        * src/targets/cgi/parser.dsp 1.1:
                   21614:        * src/targets/cgi/parser3.C 1.1:
                   21615:                renamed targets/ parser to cgi
                   21616: 
                   21617:        * src/classes/_double.h 1.5:
                   21618:        * src/classes/_double.h [stateless_class] 1.4.8.1:
                   21619:        * src/classes/_env.h 1.4:
                   21620:        * src/classes/_env.h [stateless_class] 1.3.8.1:
                   21621:        * src/classes/_int.h 1.5:
                   21622:        * src/classes/_int.h [stateless_class] 1.4.8.1:
                   21623:        * src/classes/_root.h 1.4:
                   21624:        * src/classes/_root.h [stateless_class] 1.3.8.1:
                   21625:        * src/classes/_string.h 1.6:
                   21626:        * src/classes/_string.h [stateless_class] 1.5.4.1:
                   21627:        * src/classes/_table.h 1.2:
                   21628:        * src/classes/_table.h [stateless_class] 1.1.6.1:
                   21629:        * src/classes/double.C 1.15:
                   21630:        * src/classes/double.C [stateless_class] 1.14.2.1:
                   21631:        * src/classes/env.C 1.5:
                   21632:        * src/classes/env.C [stateless_class] 1.4.8.1:
                   21633:        * src/classes/int.C 1.14:
                   21634:        * src/classes/int.C [stateless_class] 1.13.2.1:
                   21635:        * src/classes/root.C 1.38:
                   21636:        * src/classes/root.C [stateless_class] 1.37.2.1:
                   21637:        * src/classes/string.C 1.10:
                   21638:        * src/classes/string.C [stateless_class] 1.9.4.1:
                   21639:        * src/classes/table.C 1.14:
                   21640:        * src/classes/table.C [stateless_class] 1.13.2.1:
                   21641:        * src/include/pa_request.h 1.46:
                   21642:        * src/include/pa_request.h [stateless_class] 1.45.2.1:
                   21643:        * src/main/compile.C 1.29:
                   21644:        * src/main/compile.C [stateless_class] 1.28.2.1:
                   21645:        * src/main/compile_tools.h 1.30:
                   21646:        * src/main/compile_tools.h [stateless_class] 1.29.8.1:
                   21647:        * src/main/core.C 1.64:
                   21648:        * src/main/core.C [stateless_class] 1.63.6.1:
                   21649:        * src/main/execute.C 1.100:
                   21650:        * src/main/execute.C [stateless_class] 1.99.2.1:
                   21651:        * src/main/main.dsp 1.51:
                   21652:        * src/main/main.dsp [stateless_class] 1.50.6.1:
                   21653:        * src/main/pa_request.C 1.26:
                   21654:        * src/main/pa_request.C [stateless_class] 1.25.2.1:
                   21655:        * src/types/pa_valiased.h 1.3:
                   21656:        * src/types/pa_valiased.h [stateless_class] 1.2.8.1:
                   21657:        * src/types/pa_value.h 1.9:
                   21658:        * src/types/pa_value.h [stateless_class] 1.8.2.1:
                   21659:        * src/types/pa_vclass.C 1.5:
                   21660:        * src/types/pa_vclass.C [stateless_class] 1.4.8.1:
                   21661:        * src/types/pa_vclass.h 1.8:
                   21662:        * src/types/pa_vclass.h [stateless_class] 1.7.6.1:
                   21663:        * src/types/pa_venv.h 1.2:
                   21664:        * src/types/pa_venv.h [stateless_class] 1.1.2.1:
                   21665:        * src/types/pa_vmframe.h 1.6:
                   21666:        * src/types/pa_vmframe.h [stateless_class] 1.5.2.1:
                   21667:        * src/types/pa_vobject.h 1.5:
                   21668:        * src/types/pa_vobject.h [stateless_class] 1.4.8.1:
                   21669:        * src/types/pa_vstateless_class.C 1.2:
                   21670:        * src/types/pa_vstateless_class.C [stateless_class] 1.1.2.1:
                   21671:        * src/types/pa_vstateless_class.h 1.2:
                   21672:        * src/types/pa_vstateless_class.h [stateless_class] 1.1.2.1:
                   21673:        * src/types/pa_vstateless_object.h 1.2:
                   21674:        * src/types/pa_vstateless_object.h [stateless_class] 1.1.8.1:
                   21675:        * src/types/pa_wcontext.h 1.5:
                   21676:        * src/types/pa_wcontext.h [stateless_class] 1.4.4.1:
                   21677:                $ENV: re 0, stateless classes
                   21678: 
                   21679:        * src/include/pa_request.h 1.45:
                   21680:        * src/main/compile.C 1.28:
                   21681:        * src/main/execute.C 1.99:
                   21682:        * src/main/pa_request.C 1.25:
                   21683:        * src/types/pa_value.h 1.8:
                   21684:        * src/types/pa_vmframe.h 1.5:
                   21685:                fixed yesterdays bad decision on execute_static_method
                   21686: 
                   21687:        * src/include/core.h 1.15:
                   21688:        * src/include/pa_common.h 1.11:
                   21689:        * src/include/pa_request.h 1.52:
                   21690:        * src/main/core.C 1.67:
                   21691:        * src/main/execute.C 1.104:
                   21692:        * src/main/main.dsp 1.53:
                   21693:        * src/main/pa_request.C 1.30:
                   21694:        * src/targets/cgi/parser3.C 1.4:
                   21695:        * src/targets/cgi/parser3.dsp 1.3:
                   21696:        * src/types/pa_vform.h 1.1:
                   21697:                started cgi target
                   21698: 
                   21699:        * src/include/pa_request.h 1.47:
                   21700:        * src/types/pa_venv.h 1.3:
                   21701:                $ENV 0.1 stateless class
                   21702: 
                   21703:        * src/classes/_form.h 1.1:
                   21704:        * src/classes/double.C 1.16:
                   21705:        * src/classes/env.C 1.7:
                   21706:        * src/classes/form.C 1.1:
                   21707:        * src/classes/int.C 1.15:
                   21708:        * src/classes/root.C 1.40:
                   21709:        * src/classes/string.C 1.11:
                   21710:        * src/classes/table.C 1.13:
                   21711:        * src/classes/table.C 1.15:
                   21712:        * src/include/core.h 1.13:
                   21713:        * src/include/pa_request.h 1.49:
                   21714:        * src/include/pa_request.h 1.50:
                   21715:        * src/include/pa_types.h 1.12:
                   21716:        * src/main/core.C 1.66:
                   21717:        * src/main/execute.C 1.102:
                   21718:        * src/main/pa_request.C 1.23:
                   21719:        * src/main/pa_request.C 1.24:
                   21720:        * src/main/pa_request.C 1.28:
                   21721:        * src/targets/cgi/parser.dsp 1.2:
                   21722:        * src/targets/cgi/parser3.C 1.2:
                   21723:        * src/targets/cgi/parser3.dsp 1.1:
                   21724:        * src/targets/cgi/parser3.dsp 1.2:
                   21725:        * src/types/pa_vhash.h 1.4:
                   21726:                z
                   21727: 
                   21728:        * src/classes/root.C 1.35:
                   21729:        * src/classes/table.C 1.11:
                   21730:        * src/include/pa_exception.h 1.8:
                   21731:        * src/include/pa_pool.h 1.30:
                   21732:        * src/main/pa_request.C 1.22:
                   21733:                restructure_exceptions_dead_end
                   21734: 
                   21735:        * src/classes/root.C 1.34:
                   21736:        * src/main/compile.y 1.94:
                   21737:                ^if required junctions. allowed ; inside {} to break params
                   21738: 
                   21739:        * src/classes/_env.h 1.5:
                   21740:        * src/classes/env.C 1.6:
                   21741:        * src/classes/root.C 1.39:
                   21742:        * src/include/core.h 1.12:
                   21743:        * src/include/pa_pool.h 1.32:
                   21744:        * src/include/pa_request.h 1.48:
                   21745:        * src/main/compile.C 1.30:
                   21746:        * src/main/compile.y 1.96:
                   21747:        * src/main/core.C 1.65:
                   21748:        * src/main/main.dsp 1.52:
                   21749:        * src/main/pa_common.C 1.11:
                   21750:        * src/main/pa_request.C 1.27:
                   21751:        * src/types/pa_value.h 1.11:
                   21752:        * src/types/pa_venv.h 1.6:
                   21753:        * src/types/pa_vstateless_class.h 1.3:
                   21754:                started $form: [historical moment :)]
                   21755: 
                   21756:        * src/types/pa_venv.h 1.5:
                   21757:                $ENV 1
                   21758: 
                   21759:        * src/classes/double.C 1.14:
                   21760:        * src/classes/int.C 1.13:
                   21761:        * src/classes/root.C 1.37:
                   21762:        * src/types/pa_vdouble.h 1.7:
                   21763:        * src/types/pa_vint.h 1.8:
                   21764:                Int,Double  dec mul div mod
                   21765: 
                   21766: 2001-03-12  paf
                   21767:        * src/classes/_string.h 1.5:
                   21768:        * src/classes/double.C 1.13:
                   21769:        * src/classes/int.C 1.12:
                   21770:        * src/classes/string.C 1.9:
                   21771:        * src/main/execute.C 1.98:
                   21772:        * src/types/pa_wcontext.h 1.4:
                   21773:                int doube string ^format
                   21774: 
                   21775:        * src/classes/root.C 1.19:
                   21776:        * src/types/pa_vclass.h 1.4:
                   21777:                process temp main zeroing
                   21778: 
                   21779:        * src/classes/root.C 1.30:
                   21780:        * src/classes/table.C 1.6:
                   21781:        * src/types/pa_vtable.h 1.2:
                   21782:                table ^offset ^line ^count
                   21783: 
                   21784:        * src/classes/root.C 1.28:
                   21785:        * src/classes/table.C 1.5:
                   21786:                ^use
                   21787: 
                   21788:        * src/main/execute.C [other_construction_strategy_test] 1.97.2.1:
                   21789:        * src/types/pa_wcontext.h [other_construction_strategy_test] 1.3.2.1:
                   21790:                constructing flag not 'bad' but not 'enough'
                   21791: 
                   21792:        * src/classes/root.C 1.27:
                   21793:        * src/classes/table.C 1.4:
                   21794:        * src/include/pa_request.h 1.44:
                   21795:        * src/main/compile.y 1.92:
                   21796:        * src/main/core.C 1.62:
                   21797:        * src/main/execute.C 1.96:
                   21798:        * src/types/pa_vclass.h 1.7:
                   21799:        * src/types/pa_wcontext.C 1.3:
                   21800:        * src/types/pa_wcontext.h 1.3:
                   21801:        * src/types/pa_wwrapper.h 1.3:
                   21802:                while. switched off wcontext.constructing after write(value) or
                   21803:                auto-vhash-constructing
                   21804: 
                   21805:        * src/classes/table.C 1.8:
                   21806:                table ^empty
                   21807: 
                   21808:        * src/classes/root.C 1.33:
                   21809:                ^eval
                   21810: 
                   21811:        * src/classes/root.C 1.26:
                   21812:        * src/classes/table.C 1.3:
                   21813:        * src/include/pa_request.h 1.43:
                   21814:        * src/main/pa_request.C 1.20:
                   21815:                fail_if_junction_ helper func
                   21816: 
                   21817:        * src/classes/root.C 1.23:
                   21818:        * src/include/core.h 1.11:
                   21819:        * src/include/pa_array.h 1.23:
                   21820:        * src/include/pa_request.h 1.41:
                   21821:        * src/include/pa_table.h 1.11:
                   21822:        * src/main/core.C 1.60:
                   21823:        * src/main/main.dsp 1.49:
                   21824:        * src/main/pa_request.C 1.17:
                   21825:        * src/main/pa_table.C 1.12:
                   21826:        * src/types/pa_value.h 1.6:
                   21827:        * src/types/pa_vclass.C 1.4:
                   21828:        * src/types/pa_vclass.h 1.6:
                   21829:        * src/types/pa_vdouble.h 1.5:
                   21830:        * src/types/pa_vint.h 1.5:
                   21831:        * src/types/pa_vmframe.h 1.4:
                   21832:        * src/types/pa_vstring.h 1.5:
                   21833:                freeze, ^table:create[] -1
                   21834: 
                   21835:        * src/types/pa_vtable.h 1.1:
                   21836:                table: no, better with string in cells...
                   21837: 
                   21838:        * src/classes/root.C 1.21:
                   21839:        * src/main/execute.C 1.93:
                   21840:        * src/types/pa_vclass.h 1.5:
                   21841:                used get_method in couple places optimizing them
                   21842: 
1.24      paf      21843:        * src/classes/_table.h 1.1:
                   21844:        * src/classes/root.C 1.20:
                   21845:        * src/classes/root.C 1.22:
                   21846:        * src/classes/table.C 1.1:
                   21847:        * src/include/pa_array.h [table_with_charp_in_cells_dead_end] 1.23.2.1:
                   21848:        * src/include/pa_table.h [table_with_charp_in_cells_dead_end] 1.12.2.1:
                   21849:        * src/main/pa_table.C [table_with_charp_in_cells_dead_end] 1.13.2.1:
                   21850:        * src/main/untaint.C 1.1:
                   21851:        * src/types/pa_value.h 1.5:
                   21852:                z
                   21853: 
1.15      paf      21854:        * src/classes/double.C 1.10:
                   21855:        * src/classes/int.C 1.10:
                   21856:        * src/classes/root.C 1.18:
                   21857:        * src/classes/string.C 1.7:
                   21858:        * src/include/pa_common.h 1.6:
                   21859:        * src/include/pa_request.h 1.40:
                   21860:        * src/include/pa_string.h 1.32:
                   21861:        * src/include/pa_types.h 1.10:
                   21862:        * src/main/compile.C 1.27:
                   21863:        * src/main/compile.y 1.91:
                   21864:        * src/main/compile_tools.h 1.29:
                   21865:        * src/main/execute.C 1.92:
                   21866:        * src/main/pa_common.C 1.7:
                   21867:        * src/main/pa_request.C 1.16:
                   21868:        * src/types/pa_value.h 1.4:
                   21869:        * src/types/pa_vmframe.h 1.3:
                   21870:                process. actual names to store param and  
                   21871:                check_actual_numbered_params for better place diagnostics
                   21872: 
                   21873:        * src/classes/root.C 1.25:
                   21874:        * src/classes/table.C 1.2:
                   21875:        * src/include/pa_common.h 1.8:
                   21876:        * src/include/pa_request.h 1.42:
                   21877:        * src/main/execute.C 1.95:
                   21878:        * src/main/main.dsp 1.50:
                   21879:        * src/main/pa_common.C 1.9:
                   21880:        * src/main/pa_request.C 1.19:
                   21881:                ^process error point by actual method_name, not source.
                   21882:                ^load
                   21883: 
                   21884:        * src/classes/table.C 1.7:
                   21885:        * src/include/pa_table.h 1.13:
                   21886:                table ^menu
                   21887: 
                   21888:        * src/classes/root.C 1.29:
                   21889:                ^round()        ^floor()        ^ceiling()      ^abs()  ^sign()
                   21890: 
                   21891:        * src/classes/double.C 1.11:
                   21892:        * src/classes/int.C 1.11:
                   21893:        * src/classes/root.C 1.31:
                   21894:        * src/classes/string.C 1.8:
                   21895:        * src/classes/table.C 1.9:
                   21896:        * src/main/core.C 1.63:
                   21897:        * src/main/execute.C 1.97:
                   21898:        * src/types/pa_vint.h 1.6:
                   21899:                ^for
                   21900: 
                   21901:        * src/classes/double.C 1.12:
                   21902:        * src/classes/root.C 1.32:
                   21903:        * src/classes/table.C 1.10:
                   21904:        * src/include/pa_common.h 1.9:
                   21905:        * src/include/pa_types.h 1.11:
                   21906:        * src/main/compile.y 1.93:
                   21907:        * src/main/pa_common.C 1.10:
                   21908:        * src/main/pa_request.C 1.21:
                   21909:        * src/main/untaint.C 1.2:
                   21910:        * src/types/pa_vdouble.h 1.6:
                   21911:        * src/types/pa_vint.h 1.7:
                   21912:        * src/types/pa_vtable.h 1.3:
                   21913:        * src/types/pa_wwrapper.h 1.4:
                   21914:                think constructing flag as is  is bad
                   21915: 
                   21916:        * src/classes/root.C 1.24:
                   21917:        * src/include/pa_common.h 1.7:
                   21918:        * src/include/pa_string.h 1.33:
                   21919:        * src/include/pa_table.h 1.12:
                   21920:        * src/main/core.C 1.61:
                   21921:        * src/main/execute.C 1.94:
                   21922:        * src/main/pa_common.C 1.8:
                   21923:        * src/main/pa_request.C 1.18:
                   21924:        * src/main/pa_table.C 1.13:
                   21925:        * src/types/pa_value.h 1.7:
                   21926:                table:set 0
                   21927: 
                   21928: 2001-03-11  paf
                   21929:        * src/classes/double.C 1.8:
                   21930:        * src/classes/int.C 1.8:
                   21931:        * src/classes/root.C 1.14:
                   21932:        * src/include/pa_request.h 1.38:
                   21933:        * src/main/execute.C 1.90:
                   21934:                intercept_string
                   21935: 
                   21936:        * src/classes/double.C 1.6:
                   21937:        * src/classes/int.C 1.6:
                   21938:        * src/include/pa_request.h 1.37:
                   21939:                ^inc-s(expr)
                   21940: 
                   21941:        * src/include/pa_valiased.h 1.4:
                   21942:        * src/include/pa_value.h 1.51:
                   21943:        * src/include/pa_vbool.h 1.8:
                   21944:        * src/include/pa_vcframe.h 1.8:
                   21945:        * src/include/pa_vclass.h 1.30:
                   21946:        * src/include/pa_vdouble.h 1.13:
                   21947:        * src/include/pa_vhash.h 1.13:
                   21948:        * src/include/pa_vint.h 1.5:
                   21949:        * src/include/pa_vjunction.h 1.9:
                   21950:        * src/include/pa_vmframe.h 1.24:
                   21951:        * src/include/pa_vobject.h 1.18:
                   21952:        * src/include/pa_vstring.h 1.18:
                   21953:        * src/include/pa_vunknown.h 1.10:
                   21954:        * src/include/pa_wcontext.h 1.29:
                   21955:        * src/include/pa_wwrapper.h 1.14:
                   21956:        * src/main/compile.y 1.88:
                   21957:        * src/main/core.C 1.55:
                   21958:        * src/main/main.dsp 1.44:
                   21959:        * src/main/pa_cframe.C 1.6:
                   21960:        * src/main/pa_request.C 1.11:
                   21961:        * src/main/pa_value.C 1.8:
                   21962:        * src/main/pa_vclass.C 1.5:
                   21963:        * src/main/pa_wcontext.C 1.11:
                   21964:        * src/types/pa_valiased.h 1.1:
                   21965:        * src/types/pa_value.h 1.1:
                   21966:        * src/types/pa_vbool.h 1.1:
                   21967:        * src/types/pa_vcframe.h 1.1:
                   21968:        * src/types/pa_vclass.C 1.1:
                   21969:        * src/types/pa_vclass.h 1.1:
                   21970:        * src/types/pa_vdouble.h 1.1:
                   21971:        * src/types/pa_vhash.h 1.1:
                   21972:        * src/types/pa_vint.h 1.1:
                   21973:        * src/types/pa_vjunction.h 1.1:
                   21974:        * src/types/pa_vmframe.h 1.1:
                   21975:        * src/types/pa_vobject.h 1.1:
                   21976:        * src/types/pa_vstring.h 1.1:
                   21977:        * src/types/pa_vunknown.h 1.1:
                   21978:        * src/types/pa_wcontext.C 1.1:
                   21979:        * src/types/pa_wcontext.h 1.1:
                   21980:        * src/types/pa_wwrapper.h 1.1:
                   21981:                splitted types from include/
                   21982: 
                   21983:        * src/main/main.dsp 1.47:
                   21984:        * src/types/pa_value.h 1.3:
                   21985:        * src/types/pa_vdouble.h 1.3:
                   21986:        * src/types/pa_vint.h 1.3:
                   21987:        * src/types/pa_vobject.h 1.3:
                   21988:        * src/types/pa_vstring.h 1.3:
                   21989:                VString VDouble VInt base now VObject_base - without fields
                   21990: 
                   21991:        * src/include/core.h 1.7:
                   21992:        * src/include/pa_request.h 1.35:
                   21993:        * src/main/core.C 1.56:
                   21994:        * src/main/main.dsp 1.45:
                   21995:        * src/main/pa_request.C 1.12:
                   21996:                renamed AUTO: to MAIN:
                   21997: 
                   21998:        * src/classes/double.C 1.9:
                   21999:        * src/classes/int.C 1.9:
                   22000:        * src/classes/root.C 1.15:
                   22001:        * src/classes/string.C 1.6:
                   22002:        * src/include/core.h 1.9:
                   22003:        * src/include/pa_hash.h 1.23:
                   22004:        * src/include/pa_pool.h 1.29:
                   22005:        * src/include/pa_request.h 1.39:
                   22006:        * src/include/pa_string.h 1.31:
                   22007:        * src/main/compile.C 1.26:
                   22008:        * src/main/core.C 1.58:
                   22009:        * src/main/pa_request.C 1.15:
                   22010:                ^untaint 0
                   22011: 
                   22012:        * src/classes/root.C 1.17:
                   22013:        * src/main/execute.C 1.91:
                   22014:        * src/main/main.dsp 1.48:
                   22015:                setname for method-junctions bug fixed
                   22016: 
                   22017:        * src/types/pa_vdouble.h 1.4:
                   22018:        * src/types/pa_vint.h 1.4:
                   22019:        * src/types/pa_vobject.h 1.4:
                   22020:        * src/types/pa_vstateless_object.h 1.1:
                   22021:        * src/types/pa_vstring.h 1.4:
                   22022:                stateless_object
                   22023: 
                   22024:        * src/classes/root.C 1.16:
                   22025:        * src/include/core.h 1.10:
                   22026:        * src/main/core.C 1.59:
                   22027:        * src/main/pa_request.C 1.13:
                   22028:        * src/types/pa_vhash.h 1.2:
                   22029:                z
                   22030: 
                   22031:        * src/classes/_double.h 1.4:
                   22032:        * src/classes/_env.h 1.3:
                   22033:        * src/classes/_int.h 1.4:
                   22034:        * src/classes/_root.h 1.3:
                   22035:        * src/classes/_string.h 1.4:
                   22036:        * src/classes/double.C 1.5:
                   22037:        * src/classes/env.C 1.4:
                   22038:        * src/classes/int.C 1.5:
                   22039:        * src/classes/root.C 1.12:
                   22040:        * src/classes/string.C 1.5:
                   22041:        * src/include/code.h 1.20:
                   22042:        * src/include/core.h 1.8:
                   22043:        * src/include/pa_array.h 1.22:
                   22044:        * src/include/pa_common.h 1.5:
                   22045:        * src/include/pa_exception.h 1.7:
                   22046:        * src/include/pa_hash.h 1.22:
                   22047:        * src/include/pa_pool.h 1.28:
                   22048:        * src/include/pa_request.h 1.36:
                   22049:        * src/include/pa_stack.h 1.6:
                   22050:        * src/include/pa_string.h 1.30:
                   22051:        * src/include/pa_table.h 1.10:
                   22052:        * src/include/pa_threads.h 1.6:
                   22053:        * src/include/pa_types.h 1.9:
                   22054:        * src/main/compile.C 1.25:
                   22055:        * src/main/compile.y 1.89:
                   22056:        * src/main/compile_tools.C 1.26:
                   22057:        * src/main/compile_tools.h 1.27:
                   22058:        * src/main/core.C 1.57:
                   22059:        * src/main/execute.C 1.89:
                   22060:        * src/main/pa_array.C 1.22:
                   22061:        * src/main/pa_common.C 1.6:
                   22062:        * src/main/pa_exception.C 1.6:
                   22063:        * src/main/pa_hash.C 1.20:
                   22064:        * src/main/pa_pool.C 1.11:
                   22065:        * src/main/pa_request.C 1.14:
                   22066:        * src/main/pa_string.C 1.37:
                   22067:        * src/main/pa_table.C 1.11:
                   22068:        * src/types/pa_valiased.h 1.2:
                   22069:        * src/types/pa_value.h 1.2:
                   22070:        * src/types/pa_vbool.h 1.2:
                   22071:        * src/types/pa_vcframe.h 1.2:
                   22072:        * src/types/pa_vclass.C 1.2:
                   22073:        * src/types/pa_vclass.h 1.2:
                   22074:        * src/types/pa_vdouble.h 1.2:
                   22075:        * src/types/pa_vhash.h 1.3:
                   22076:        * src/types/pa_vint.h 1.2:
                   22077:        * src/types/pa_vjunction.h 1.2:
                   22078:        * src/types/pa_vmframe.h 1.2:
                   22079:        * src/types/pa_vobject.h 1.2:
                   22080:        * src/types/pa_vstring.h 1.2:
                   22081:        * src/types/pa_vunknown.h 1.2:
                   22082:        * src/types/pa_wcontext.C 1.2:
                   22083:        * src/types/pa_wcontext.h 1.2:
                   22084:        * src/types/pa_wwrapper.h 1.2:
                   22085:                headers updated
                   22086: 
                   22087:        * src/classes/double.C 1.7:
                   22088:        * src/classes/int.C 1.7:
                   22089:        * src/classes/root.C 1.13:
                   22090:        * src/types/pa_vclass.C 1.3:
                   22091:        * src/types/pa_vclass.h 1.3:
                   22092:                add_native_method helper
                   22093: 
                   22094: 2001-03-10  paf
                   22095:        * src/include/core.h 1.4:
                   22096:        * src/include/pa_request.h 1.30:
                   22097:        * src/main/compile.y 1.85:
                   22098:        * src/main/core.C 1.52:
                   22099:        * src/main/pa_request.C 1.6:
                   22100:                names to core.C
                   22101: 
                   22102:        * src/classes/_env.h 1.1:
                   22103:        * src/classes/env.C 1.1:
                   22104:        * src/classes/root.C 1.8:
                   22105:        * src/include/pa_request.h 1.23:
                   22106:        * src/include/pa_vclass.h 1.27:
                   22107:        * src/main/core.C 1.49:
                   22108:        * src/main/main.dsp 1.42:
                   22109:                env0
                   22110: 
                   22111:        * src/include/code.h 1.18:
                   22112:        * src/include/pa_request.h 1.28:
                   22113:        * src/include/pa_vint.h 1.3:
                   22114:        * src/include/pa_vjunction.h 1.7:
                   22115:        * src/include/pa_vstring.h 1.16:
                   22116:        * src/main/compile.y 1.84:
                   22117:        * src/main/compile_tools.C 1.24:
                   22118:        * src/main/compile_tools.h 1.25:
                   22119:        * src/main/execute.C 1.86:
                   22120:                optimized from OP_STRING+OP_WRITE to OP_STRING__WRITE
                   22121: 
                   22122:        * src/include/core.h 1.2:
                   22123:        * src/include/pa_array.h 1.20:
                   22124:        * src/include/pa_hash.h 1.20:
                   22125:        * src/include/pa_request.h 1.24:
                   22126:        * src/include/pa_value.h 1.49:
                   22127:        * src/include/pa_vcframe.h 1.6:
                   22128:        * src/include/pa_vdouble.h 1.11:
                   22129:        * src/include/pa_vint.h 1.2:
                   22130:        * src/include/pa_vstring.h 1.15:
                   22131:        * src/include/pa_vunknown.h 1.8:
                   22132:        * src/include/pa_wcontext.h 1.26:
                   22133:        * src/main/compile.y 1.82:
                   22134:        * src/main/compile_tools.C 1.23:
                   22135:        * src/main/compile_tools.h 1.24:
                   22136:        * src/main/core.C 1.50:
                   22137:        * src/main/execute.C 1.82:
                   22138:        * src/main/main.dsp 1.43:
                   22139:        * src/main/pa_cframe.C 1.4:
                   22140:        * src/main/pa_request.C 1.3:
                   22141:        * src/main/pa_wcontext.C 1.8:
                   22142:                const fight finished
                   22143: 
                   22144:        * src/include/core.h 1.6:
                   22145:        * src/include/pa_request.h 1.34:
                   22146:        * src/main/core.C 1.54:
                   22147:        * src/main/pa_request.C 1.10:
                   22148:                run+auto=run
                   22149: 
                   22150:        * src/include/pa_request.h 1.27:
                   22151:        * src/main/execute.C 1.85:
                   22152:        * src/main/pa_request.C 1.4:
                   22153:                @auto[] realised. auto.p scan togo
                   22154: 
                   22155:        * src/classes/double.C 1.3:
                   22156:        * src/classes/int.C 1.3:
                   22157:        * src/classes/root.C 1.9:
                   22158:        * src/classes/string.C 1.3:
                   22159:        * src/include/pa_request.h 1.25:
                   22160:        * src/include/pa_string.h 1.28:
                   22161:        * src/include/pa_wcontext.h 1.27:
                   22162:        * src/main/compile.y 1.83:
                   22163:        * src/main/execute.C 1.83:
                   22164:        * src/main/pa_string.C 1.35:
                   22165:        * src/main/pa_wcontext.C 1.9:
                   22166:                tainting 0
                   22167: 
                   22168:        * src/classes/_double.h 1.2:
                   22169:        * src/classes/_int.h 1.2:
                   22170:        * src/classes/_root.h 1.1:
                   22171:        * src/classes/_string.h 1.2:
                   22172:        * src/classes/double.C 1.2:
                   22173:        * src/classes/int.C 1.2:
                   22174:        * src/classes/root.C 1.7:
                   22175:        * src/classes/string.C 1.2:
                   22176:        * src/include/pa_request.h 1.22:
                   22177:        * src/include/pa_string.h 1.27:
                   22178:        * src/include/pa_types.h 1.7:
                   22179:        * src/include/pa_vcframe.h 1.5:
                   22180:        * src/include/pa_wcontext.h 1.25:
                   22181:        * src/main/core.C 1.48:
                   22182:        * src/main/main.dsp 1.41:
                   22183:        * src/main/pa_cframe.C 1.3:
                   22184:        * src/main/pa_string.C 1.34:
                   22185:        * src/main/pa_vclass.C 1.3:
                   22186:        * src/main/pa_wcontext.C 1.7:
                   22187:                ^lang prepare0
                   22188: 
                   22189:        * src/include/pa_request.h 1.31:
                   22190:        * src/main/compile.C 1.23:
                   22191:        * src/main/compile.y 1.86:
                   22192:        * src/main/pa_request.C 1.7:
                   22193:                auto tree0
                   22194: 
                   22195:        * src/classes/env.C 1.2:
                   22196:                env:file/line
                   22197: 
                   22198:        * src/include/pa_vclass.h 1.28:
                   22199:                const fight to go
                   22200: 
1.24      paf      22201:        * src/include/pa_request.h 1.26:
                   22202:        * src/main/execute.C 1.84:
                   22203:                autocalc code-junctions result now have names
                   22204: 
1.15      paf      22205:        * src/include/core.h 1.3:
                   22206:        * src/include/pa_common.h 1.3:
                   22207:        * src/include/pa_pool.h 1.26:
                   22208:        * src/include/pa_request.h 1.29:
                   22209:        * src/main/core.C 1.51:
                   22210:        * src/main/execute.C 1.87:
                   22211:        * src/main/pa_common.C 1.4:
                   22212:        * src/main/pa_request.C 1.5:
                   22213:                root auto.p loaded
                   22214: 
                   22215:        * src/classes/root.C 1.11:
                   22216:        * src/include/pa_request.h 1.33:
                   22217:                minor if junction bug
                   22218: 
                   22219:        * src/main/pa_request.C 1.8:
                   22220:                auto..
                   22221: 
                   22222:        * src/classes/_double.h 1.3:
                   22223:        * src/classes/_env.h 1.2:
                   22224:        * src/classes/_int.h 1.3:
                   22225:        * src/classes/_root.h 1.2:
                   22226:        * src/classes/_string.h 1.3:
                   22227:        * src/classes/double.C 1.4:
                   22228:        * src/classes/env.C 1.3:
                   22229:        * src/classes/int.C 1.4:
                   22230:        * src/classes/root.C 1.10:
                   22231:        * src/classes/string.C 1.4:
                   22232:        * src/include/code.h 1.19:
                   22233:        * src/include/core.h 1.5:
                   22234:        * src/include/pa_array.h 1.21:
                   22235:        * src/include/pa_common.h 1.4:
                   22236:        * src/include/pa_exception.h 1.6:
                   22237:        * src/include/pa_hash.h 1.21:
                   22238:        * src/include/pa_pool.h 1.27:
                   22239:        * src/include/pa_request.h 1.32:
                   22240:        * src/include/pa_stack.h 1.5:
                   22241:        * src/include/pa_string.h 1.29:
                   22242:        * src/include/pa_table.h 1.9:
                   22243:        * src/include/pa_threads.h 1.5:
                   22244:        * src/include/pa_types.h 1.8:
                   22245:        * src/include/pa_valiased.h 1.3:
                   22246:        * src/include/pa_value.h 1.50:
                   22247:        * src/include/pa_vbool.h 1.7:
                   22248:        * src/include/pa_vcframe.h 1.7:
                   22249:        * src/include/pa_vclass.h 1.29:
                   22250:        * src/include/pa_vdouble.h 1.12:
                   22251:        * src/include/pa_vhash.h 1.12:
                   22252:        * src/include/pa_vint.h 1.4:
                   22253:        * src/include/pa_vjunction.h 1.8:
                   22254:        * src/include/pa_vmframe.h 1.23:
                   22255:        * src/include/pa_vobject.h 1.17:
                   22256:        * src/include/pa_vstring.h 1.17:
                   22257:        * src/include/pa_vunknown.h 1.9:
                   22258:        * src/include/pa_wcontext.h 1.28:
                   22259:        * src/include/pa_wwrapper.h 1.13:
                   22260:        * src/main/compile.C 1.24:
                   22261:        * src/main/compile.y 1.87:
                   22262:        * src/main/compile_tools.C 1.25:
                   22263:        * src/main/compile_tools.h 1.26:
                   22264:        * src/main/core.C 1.53:
                   22265:        * src/main/execute.C 1.88:
                   22266:        * src/main/pa_array.C 1.21:
                   22267:        * src/main/pa_cframe.C 1.5:
                   22268:        * src/main/pa_common.C 1.5:
                   22269:        * src/main/pa_exception.C 1.5:
                   22270:        * src/main/pa_hash.C 1.19:
                   22271:        * src/main/pa_pool.C 1.10:
                   22272:        * src/main/pa_request.C 1.9:
                   22273:        * src/main/pa_string.C 1.36:
                   22274:        * src/main/pa_table.C 1.10:
                   22275:        * src/main/pa_value.C 1.7:
                   22276:        * src/main/pa_vclass.C 1.4:
                   22277:        * src/main/pa_wcontext.C 1.10:
                   22278:                sources header
                   22279: 
                   22280: 2001-03-09  paf
                   22281:        * src/classes/root.C [before_string_to_object_attempt] 1.4.4.1:
                   22282:        * src/include/pa_request.h [before_string_to_object_attempt] 1.20.4.1:
                   22283:        * src/main/execute.C [before_string_to_object_attempt] 1.78.2.2:
                   22284:                ^string.length[]
                   22285: 
                   22286:        * src/classes/root.C 1.5:
                   22287:        * src/include/pa_request.h 1.21:
                   22288:        * src/include/pa_vclass.h 1.26:
                   22289:        * src/include/pa_vhash.h 1.11:
                   22290:        * src/include/pa_vmframe.h 1.20:
                   22291:        * src/include/pa_vobject.h 1.15:
                   22292:        * src/include/pa_vstring.h 1.13:
                   22293:        * src/include/pa_wcontext.h 1.24:
                   22294:        * src/main/compile.y 1.80:
                   22295:        * src/main/core.C 1.46:
                   22296:        * src/main/execute.C 1.79:
                   22297:        * src/main/main.dsp 1.39:
                   22298:                .
                   22299: 
                   22300:        * src/include/pa_vmframe.h 1.22:
                   22301:        * src/main/compile.C 1.22:
                   22302:        * src/main/execute.C 1.81:
                   22303:                expr construct proper naming
                   22304: 
                   22305:        * src/classes/_double.h 1.1:
                   22306:        * src/classes/_int.h 1.1:
                   22307:        * src/classes/_string.h 1.1:
                   22308:        * src/classes/double.C 1.1:
                   22309:        * src/classes/int.C 1.1:
                   22310:        * src/classes/root.C 1.6:
                   22311:        * src/classes/string.C 1.1:
                   22312:        * src/include/code.h 1.17:
                   22313:        * src/include/pa_value.h 1.48:
                   22314:        * src/include/pa_vbool.h 1.6:
                   22315:        * src/include/pa_vdouble.h 1.10:
                   22316:        * src/include/pa_vint.h 1.1:
                   22317:        * src/include/pa_vmframe.h 1.21:
                   22318:        * src/include/pa_vobject.h 1.16:
                   22319:        * src/include/pa_vstring.h 1.14:
                   22320:        * src/main/compile.y 1.81:
                   22321:        * src/main/compile_tools.C 1.22:
                   22322:        * src/main/core.C 1.47:
                   22323:        * src/main/execute.C 1.80:
                   22324:        * src/main/main.dsp 1.40:
                   22325:                Int and Double classes with ^int[] and ^double[]. fixed expr type
                   22326: 
                   22327: 2001-03-08  paf
                   22328:        * src/include/pa_request.h 1.18:
                   22329:        * src/include/pa_value.h 1.44:
                   22330:        * src/include/pa_vcframe.h 1.4:
                   22331:        * src/include/pa_vmframe.h 1.16:
                   22332:        * src/include/pa_wcontext.h 1.23:
                   22333:        * src/main/compile.C 1.21:
                   22334:        * src/main/compile.y 1.76:
                   22335:        * src/main/core.C 1.45:
                   22336:        * src/main/execute.C 1.70:
                   22337:        * src/main/pa_cframe.C 1.2:
                   22338:        * src/main/pa_wcontext.C 1.5:
                   22339:                'if' just compiled
                   22340: 
                   22341:        * src/main/pa_vclass.C 1.2:
                   22342:                that were ok... [vclass were out of vcs]
                   22343: 
                   22344:        * src/include/pa_value.h 1.43:
                   22345:        * src/include/pa_vmframe.h 1.14:
                   22346:        * src/main/compile.y 1.75:
                   22347:        * src/main/core.C 1.44:
                   22348:        * src/main/execute.C 1.68:
                   22349:        * src/main/main.dsp 1.37:
                   22350:                z. detected probs with parameter names  in operator methods
                   22351: 
                   22352:        * src/include/pa_vclass.h [before_string_to_object_attempt] 1.25.2.2:
                   22353:        * src/include/pa_vstring.h [before_string_to_object_attempt] 1.12.2.2:
                   22354:        * src/include/pa_wcontext.h [before_string_to_object_attempt] 1.23.4.1:
                   22355:        * src/main/compile.y [before_string_to_object_attempt] 1.79.2.1:
                   22356:        * src/main/core.C [before_string_to_object_attempt] 1.45.4.1:
                   22357:        * src/main/execute.C [before_string_to_object_attempt] 1.78.2.1:
                   22358:        * src/main/main.dsp [before_string_to_object_attempt] 1.38.4.2:
                   22359:                dead end: vstring can't be derivated from vobject
                   22360: 
                   22361:        * src/include/pa_request.h 1.17:
                   22362:        * src/main/compile.C 1.20:
                   22363:        * src/main/compile.y 1.73:
                   22364:        * src/main/core.C 1.43:
                   22365:        * src/main/main.dsp 1.36:
                   22366:                introducing ROOT_CLASS.
                   22367:                it's default @BASE.
                   22368:                changed 'RUN' assignment mech
                   22369: 
                   22370:        * src/main/execute.C 1.64:
                   22371:                root root in code-junction
                   22372: 
                   22373:        * src/include/pa_bool.h 1.2:
                   22374:        * src/include/pa_double.h 1.2:
                   22375:        * src/include/pa_value.h 1.47:
                   22376:        * src/include/pa_vbool.h 1.5:
                   22377:        * src/include/pa_vclass.h 1.24:
                   22378:        * src/include/pa_vdouble.h 1.9:
                   22379:        * src/include/pa_vhash.h 1.9:
                   22380:        * src/include/pa_vjunction.h 1.6:
                   22381:        * src/include/pa_vmframe.h 1.19:
                   22382:        * src/include/pa_vobject.h 1.13:
                   22383:        * src/include/pa_vstring.h 1.12:
                   22384:        * src/include/pa_vunknown.h 1.7:
                   22385:        * src/main/compile.y 1.79:
                   22386:        * src/main/compile_tools.C 1.21:
                   22387:        * src/main/execute.C 1.78:
                   22388:                withoud cloning. didn't need it actually, params got passed
                   22389:                from out unnamed ewpool
                   22390: 
                   22391:        * src/include/code.h 1.16:
                   22392:        * src/main/compile.y 1.72:
                   22393:        * src/main/compile_tools.C 1.19:
                   22394:        * src/main/compile_tools.h 1.23:
                   22395:        * src/main/execute.C 1.66:
                   22396:                made class: dynamic, not static. so to enable runtime ^use
                   22397: 
                   22398:        * src/include/code.h 1.15:
                   22399:        * src/main/compile.y 1.70:
                   22400:        * src/main/compile_tools.C 1.18:
                   22401:        * src/main/execute.C 1.65:
                   22402:                joined 2 into one OP_CODE__STORE_PARAM
                   22403: 
                   22404:        * src/main/execute.C 1.74:
                   22405:                fixed problems calling operators in constructors
                   22406: 
                   22407:        * src/classes/root.C 1.2:
                   22408:        * src/include/pa_request.h 1.19:
                   22409:        * src/include/pa_value.h 1.45:
                   22410:        * src/include/pa_vbool.h 1.3:
                   22411:        * src/include/pa_wwrapper.h 1.12:
                   22412:        * src/main/execute.C 1.71:
                   22413:                ^if 0
                   22414: 
                   22415:        * src/main/pa_vclass.C 1.1:
                   22416:                wow! vclass were out of vcs
                   22417: 
                   22418:        * src/classes/root.C 1.4:
                   22419:        * src/include/pa_stack.h 1.4:
                   22420:        * src/main/execute.C 1.73:
                   22421:                detected problems calling operators in constructors
                   22422: 
                   22423:        * src/main/compile.y 1.74:
                   22424:                minor renamings in .y
                   22425: 
                   22426:        * src/include/pa_vdouble.h 1.8:
                   22427:        * src/include/pa_vhash.h 1.8:
                   22428:        * src/include/pa_vjunction.h 1.5:
                   22429:        * src/include/pa_vobject.h 1.12:
                   22430:        * src/include/pa_vunknown.h 1.6:
                   22431:        * src/main/compile.y 1.78:
                   22432:                cloning dead end
                   22433: 
                   22434:        * src/include/pa_vmframe.h [before_string_to_object_attempt] 1.19.2.1:
                   22435:                fixed forgotten method_frame my check
                   22436: 
                   22437:        * src/classes/root.C 1.1:
                   22438:                added root.c
                   22439: 
                   22440:        * src/include/pa_vbool.h 1.2:
                   22441:        * src/include/pa_vclass.h [before_string_to_object_attempt] 1.25.2.1:
                   22442:        * src/include/pa_vdouble.h 1.6:
                   22443:        * src/include/pa_vhash.h [before_string_to_object_attempt] 1.10.2.1:
                   22444:        * src/include/pa_vjunction.h 1.3:
                   22445:        * src/include/pa_vmframe.h 1.15:
                   22446:        * src/include/pa_vobject.h [before_string_to_object_attempt] 1.14.2.1:
                   22447:        * src/include/pa_vstring.h 1.10:
                   22448:        * src/include/pa_vstring.h [before_string_to_object_attempt] 1.12.2.1:
                   22449:        * src/include/pa_wcontext.h 1.22:
                   22450:        * src/main/execute.C 1.67:
                   22451:        * src/main/execute.C 1.69:
                   22452:        * src/main/execute.C 1.75:
                   22453:        * src/main/main.dsp [before_string_to_object_attempt] 1.38.4.1:
                   22454:        * src/main/pa_wcontext.C 1.4:
                   22455:        * src/main/pa_wcontext.C 1.6:
                   22456:                z
                   22457: 
                   22458:        * src/main/compile.y 1.71:
                   22459:                minor grammar bug with OP_CODE__STORE_PARAM
                   22460: 
                   22461:        * src/include/pa_bool.h 1.1:
                   22462:        * src/include/pa_double.h 1.1:
                   22463:        * src/include/pa_valiased.h 1.2:
                   22464:        * src/include/pa_value.h 1.46:
                   22465:        * src/include/pa_vbool.h 1.4:
                   22466:        * src/include/pa_vclass.h 1.23:
                   22467:        * src/include/pa_vdouble.h 1.7:
                   22468:        * src/include/pa_vhash.h 1.7:
                   22469:        * src/include/pa_vjunction.h 1.4:
                   22470:        * src/include/pa_vmframe.h 1.18:
                   22471:        * src/include/pa_vobject.h 1.11:
                   22472:        * src/include/pa_vstring.h 1.11:
                   22473:        * src/include/pa_vunknown.h 1.5:
                   22474:        * src/main/compile.y 1.77:
                   22475:        * src/main/compile_tools.C 1.20:
                   22476:        * src/main/execute.C 1.77:
                   22477:        * src/main/main.dsp 1.38:
                   22478:        * src/main/pa_value.C 1.6:
                   22479:                value.cloning so to give params proper names
                   22480: 
                   22481:        * src/classes/root.C 1.3:
                   22482:        * src/include/pa_request.h 1.20:
                   22483:        * src/main/execute.C 1.72:
                   22484:                autocalc def to string
                   22485: 
                   22486:        * src/include/pa_vmframe.h 1.17:
                   22487:        * src/main/execute.C 1.76:
                   22488:                added names to unknown values in get_element and unfilled
                   22489:                params. removed wrong name change in get_element
                   22490: 
                   22491:        * src/include/pa_vclass.h 1.25:
                   22492:        * src/include/pa_vhash.h 1.10:
                   22493:        * src/include/pa_vobject.h 1.14:
                   22494:                removes some remained clone conseqs
                   22495: 
                   22496: 2001-03-07  paf
                   22497:        * src/include/pa_hash.h 1.19:
                   22498:        * src/include/pa_value.h 1.40:
                   22499:        * src/include/pa_vhash.h 1.4:
                   22500:        * src/include/pa_vunknown.h 1.4:
                   22501:        * src/main/compile.y 1.67:
                   22502:        * src/main/execute.C 1.62:
                   22503:        * src/main/pa_hash.C 1.18:
                   22504:                expr def in -f
                   22505: 
                   22506:        * src/main/compile.y 1.65:
                   22507:        * src/main/execute.C 1.60:
                   22508:        * src/main/pa_string.C 1.33:
                   22509:                bug in string.cmp fixed
                   22510: 
                   22511:        * src/main/compile.y 1.68:
                   22512:                .y priorities syntax shaped up a bit
                   22513: 
                   22514:        * src/main/compile.y 1.64:
                   22515:                expr quoted code
                   22516: 
                   22517:        * src/main/execute.C 1.57:
                   22518:                ^var.menu{$field} problem detected. that $field not a $var.field
                   22519: 
                   22520:        * src/main/compile.y 1.69:
                   22521:        * src/main/compile_tools.h 1.22:
                   22522:                ^func(params)
                   22523: 
1.24      paf      22524:        * src/main/compile.y 1.63:
                   22525:        * src/main/execute.C 1.59:
                   22526:                expr whitespace solved. added "" support0
                   22527: 
1.15      paf      22528:        * src/include/pa_value.h 1.42:
                   22529:        * src/include/pa_vclass.h 1.22:
                   22530:        * src/include/pa_vhash.h 1.6:
                   22531:        * src/include/pa_vmframe.h 1.13:
                   22532:        * src/include/pa_vobject.h 1.10:
                   22533:        * src/include/pa_wwrapper.h 1.11:
                   22534:                const in Value.get_element
                   22535: 
                   22536:        * src/include/pa_string.h 1.26:
                   22537:        * src/main/compile.y 1.61:
                   22538:        * src/main/execute.C 1.58:
                   22539:        * src/main/pa_string.C 1.32:
                   22540:                just compiled lt&co
                   22541: 
                   22542:        * src/include/pa_stack.h 1.3:
                   22543:        * src/include/pa_value.h 1.41:
                   22544:        * src/include/pa_vclass.h 1.21:
                   22545:        * src/include/pa_vhash.h 1.5:
                   22546:        * src/include/pa_vmframe.h 1.12:
                   22547:        * src/include/pa_vobject.h 1.9:
                   22548:        * src/include/pa_wwrapper.h 1.10:
                   22549:        * src/main/execute.C 1.63:
                   22550:                fixed rwcontext of {} params up
                   22551: 
                   22552:        * src/main/compile.y 1.62:
                   22553:                expr string comparisons 0
                   22554: 
                   22555:        * src/main/compile.y 1.66:
                   22556:        * src/main/execute.C 1.61:
                   22557:                expr calls
                   22558: 
                   22559: 2001-03-06  paf
                   22560:        * src/include/pa_vbool.h 1.1:
                   22561:                forgot this
                   22562: 
                   22563:        * src/main/compile.y 1.51:
                   22564:                expr lexx1
                   22565: 
                   22566:        * src/include/code.h 1.14:
                   22567:        * src/main/compile.y 1.59:
                   22568:        * src/main/execute.C 1.56:
                   22569:                1 problems with skipping whitespace in yylex fixed
                   22570:                2 xors: # bitwise ## logical
                   22571: 
                   22572:        * src/include/code.h 1.11:
                   22573:        * src/include/pa_valiased.h 1.1:
                   22574:        * src/include/pa_value.h 1.37:
                   22575:        * src/include/pa_vdouble.h 1.1:
                   22576:        * src/include/pa_vstring.h 1.6:
                   22577:        * src/main/compile.y 1.49:
                   22578:        * src/main/execute.C 1.49:
                   22579:                expr lex0 exec-1
                   22580: 
                   22581:        * src/main/compile.y 1.52:
                   22582:                expr grammar-1
                   22583: 
                   22584:        * src/include/pa_value.h 1.39:
                   22585:        * src/include/pa_vdouble.h 1.5:
                   22586:        * src/include/pa_vstring.h 1.8:
                   22587:        * src/include/pa_vunknown.h 1.3:
                   22588:        * src/main/compile.y 1.56:
                   22589:        * src/main/execute.C 1.54:
                   22590:        * src/main/main.dsp 1.35:
                   22591:                !~
                   22592: 
                   22593:        * src/include/code.h 1.10:
                   22594:        * src/main/compile.y 1.48:
                   22595:        * src/main/compile_tools.h 1.18:
                   22596:                g
                   22597: 
                   22598:        * src/main/compile.y 1.60:
                   22599:                .y expr visible-shorter
                   22600: 
                   22601:        * src/include/pa_vcframe.h 1.3:
                   22602:        * src/include/pa_vclass.h 1.20:
                   22603:        * src/include/pa_vdouble.h 1.4:
                   22604:        * src/include/pa_vhash.h 1.3:
                   22605:        * src/include/pa_vjunction.h 1.2:
                   22606:        * src/include/pa_vmframe.h 1.11:
                   22607:        * src/include/pa_vobject.h 1.8:
                   22608:        * src/include/pa_vstring.h 1.7:
                   22609:        * src/include/pa_vunknown.h 1.2:
                   22610:        * src/include/pa_wcontext.h 1.21:
                   22611:        * src/include/pa_wwrapper.h 1.9:
                   22612:        * src/main/compile.y 1.55:
                   22613:        * src/main/compile_tools.C 1.17:
                   22614:        * src/main/compile_tools.h 1.21:
                   22615:        * src/main/execute.C 1.53:
                   22616:                +-*/
                   22617: 
                   22618:        * src/main/compile.y 1.50:
                   22619:        * src/main/execute.C 1.50:
                   22620:        * src/main/main.dsp 1.34:
                   22621:                z
                   22622: 
                   22623:        * src/include/pa_value.h 1.38:
                   22624:        * src/include/pa_vdouble.h 1.2:
                   22625:        * src/main/compile.y 1.53:
                   22626:        * src/main/execute.C 1.51:
                   22627:                expr grammar-1 2*2=4.000000 :)
                   22628: 
1.24      paf      22629:        * src/include/pa_vstring.h 1.9:
                   22630:        * src/main/compile.y 1.58:
                   22631:                problems with skipping whitespace in yylex
                   22632: 
1.15      paf      22633:        * src/include/pa_vdouble.h 1.3:
                   22634:        * src/main/compile.y 1.54:
                   22635:        * src/main/compile_tools.C 1.15:
                   22636:        * src/main/compile_tools.h 1.19:
                   22637:                grammar-1.1 $a(z) $a=0
                   22638: 
                   22639:        * src/include/code.h 1.13:
                   22640:        * src/main/compile.y 1.57:
                   22641:        * src/main/execute.C 1.55:
                   22642:                without string ops in expressions 0
                   22643: 
                   22644: 2001-02-26  paf
                   22645:        * src/main/compile.y 1.46:
                   22646:                max_string in yyerror bug fix
                   22647: 
                   22648: 2001-02-25  paf
                   22649:        * src/main/compile.y 1.40:
                   22650:                escaping bug
                   22651: 
                   22652:        * src/include/pa_request.h 1.14:
                   22653:        * src/main/compile.C 1.19:
                   22654:        * src/main/core.C 1.38:
                   22655:                default name RUN, also alias
                   22656: 
                   22657:        * src/include/pa_vcframe.h 1.2:
                   22658:        * src/include/pa_vmframe.h 1.5:
                   22659:        * src/include/pa_vobject.h 1.6:
                   22660:        * src/include/pa_wcontext.h 1.17:
                   22661:        * src/include/pa_wwrapper.h 1.7:
                   22662:        * src/main/core.C 1.40:
                   22663:        * src/main/execute.C 1.43:
                   22664:        * src/main/main.dsp 1.31:
                   22665:                would now get fields into interm VFielded class
                   22666: 
                   22667:        * src/include/pa_request.h 1.16:
                   22668:        * src/include/pa_value.h 1.34:
                   22669:        * src/include/pa_vmframe.h 1.7:
                   22670:        * src/include/pa_wcontext.h 1.19:
                   22671:        * src/main/execute.C 1.46:
                   22672:                VAliased0
                   22673: 
                   22674:        * src/main/execute.C 1.47:
                   22675:                VAliased1
                   22676: 
                   22677:        * src/include/pa_value.h 1.35:
                   22678:        * src/include/pa_vmframe.h 1.8:
                   22679:                VAliased2
                   22680: 
                   22681:        * src/include/code.h 1.9:
                   22682:        * src/include/pa_value.h 1.28:
                   22683:        * src/include/pa_vclass.h 1.15:
                   22684:        * src/include/pa_vmframe.h 1.2:
                   22685:        * src/include/pa_vobject.h 1.3:
                   22686:        * src/include/pa_wwrapper.h 1.5:
                   22687:        * src/main/compile.y 1.38:
                   22688:        * src/main/compile_tools.C 1.14:
                   22689:        * src/main/compile_tools.h 1.16:
                   22690:        * src/main/execute.C 1.38:
                   22691:                ^class:method() just compiled
                   22692: 
                   22693:        * src/include/pa_hash.h 1.18:
                   22694:        * src/include/pa_value.h 1.31:
                   22695:        * src/include/pa_vclass.h 1.17:
                   22696:        * src/include/pa_vmframe.h 1.4:
                   22697:        * src/include/pa_vobject.h 1.5:
                   22698:        * src/include/pa_vstring.h 1.5:
                   22699:        * src/include/pa_wcontext.h 1.16:
                   22700:        * src/main/compile.y 1.45:
                   22701:        * src/main/core.C 1.39:
                   22702:        * src/main/execute.C 1.42:
                   22703:        * src/main/main.dsp 1.30:
                   22704:        * src/main/pa_hash.C 1.17:
                   22705:        * src/main/pa_value.C 1.5:
                   22706:        * src/main/pa_wcontext.C 1.3:
                   22707:                virtuals2
                   22708: 
                   22709:        * src/include/pa_value.h 1.32:
                   22710:        * src/include/pa_vclass.h 1.18:
                   22711:        * src/include/pa_wcontext.h 1.18:
                   22712:        * src/include/pa_wwrapper.h 1.8:
                   22713:        * src/main/execute.C 1.44:
                   22714:        * src/main/main.dsp 1.32:
                   22715:                no not get fields into interm VFielded class.
                   22716:                fields & staticfields 1
                   22717: 
                   22718:        * src/include/pa_pool.h 1.25:
                   22719:        * src/include/pa_request.h 1.15:
                   22720:        * src/include/pa_value.h 1.33:
                   22721:        * src/include/pa_vclass.h 1.19:
                   22722:        * src/include/pa_vmframe.h 1.6:
                   22723:        * src/include/pa_vobject.h 1.7:
                   22724:        * src/main/core.C 1.41:
                   22725:        * src/main/execute.C 1.45:
                   22726:        * src/main/main.dsp 1.33:
                   22727:                VAliased just compiled
                   22728: 
1.24      paf      22729:        * src/include/pa_value.h 1.36:
                   22730:        * src/include/pa_vmframe.h 1.9:
                   22731:        * src/include/pa_wcontext.h 1.20:
                   22732:        * src/main/execute.C 1.48:
                   22733:                VAliased3
                   22734: 
1.15      paf      22735:        * src/include/pa_request.h 1.13:
                   22736:        * src/include/pa_value.h 1.29:
                   22737:        * src/include/pa_vobject.h 1.4:
                   22738:        * src/main/compile.y 1.39:
                   22739:        * src/main/compile_tools.h 1.17:
                   22740:        * src/main/core.C 1.37:
                   22741:        * src/main/execute.C 1.39:
                   22742:        * src/main/pa_common.C 1.3:
                   22743:                vobject1
                   22744: 
                   22745:        * src/main/compile.y 1.43:
                   22746:                rethought to $class:static.field.subfield
                   22747: 
                   22748:        * src/main/compile.y 1.44:
                   22749:                : 1
                   22750: 
                   22751:        * src/include/pa_value.h 1.30:
                   22752:        * src/include/pa_vmframe.h 1.3:
                   22753:        * src/include/pa_wwrapper.h 1.6:
                   22754:        * src/main/compile.y 1.41:
                   22755:        * src/main/execute.C 1.40:
                   22756:        * src/main/pa_wcontext.C 1.2:
                   22757:                before execute class calls rewrite
                   22758: 
                   22759:        * src/include/pa_vclass.h 1.16:
                   22760:        * src/main/compile.y 1.42:
                   22761:        * src/main/execute.C 1.41:
                   22762:                $class:element
                   22763: 
                   22764:        * src/include/pa_pool.h [class_alias_dead_end] 1.24.2.1:
                   22765:        * src/include/pa_value.h [class_alias_dead_end] 1.32.2.1:
                   22766:        * src/include/pa_vclass.h [class_alias_dead_end] 1.18.2.1:
                   22767:        * src/include/pa_vobject.h [class_alias_dead_end] 1.6.2.1:
                   22768:        * src/main/execute.C [class_alias_dead_end] 1.44.2.1:
                   22769:                alias dead end
                   22770: 
                   22771: 2001-02-24  paf
                   22772:        * src/main/compile.y 1.32:
                   22773:                fixed grammar bugs in constructor/params klinch
                   22774: 
                   22775:        * src/main/main.dsp 1.29:
                   22776:                no bison -d
                   22777: 
                   22778:        * src/main/compile.y 1.37:
                   22779:        * src/main/compile_tools.h 1.15:
                   22780:                use0 line no on 'undef class' err msg wrong
                   22781: 
                   22782:        * src/main/compile.y 1.30:
                   22783:                fixed last \n macrotemplate strip bug
                   22784: 
                   22785:        * src/include/pa_vframe.h 1.5:
                   22786:        * src/main/compile.y 1.33:
                   22787:                found junction ideology @: ^x{$a()) must construct current
                   22788:                wcontext element, so smart wcontext handling needed
                   22789: 
                   22790:        * src/include/pa_value.h 1.25:
                   22791:        * src/include/pa_wcontext.h 1.15:
                   22792:        * src/include/pa_wwrapper.h 1.4:
                   22793:        * src/main/execute.C 1.36:
                   22794:        * src/main/pa_value.C 1.4:
                   22795:                it works as bad as you've named it: wcontext.value() was not a
                   22796:                perfect idea
                   22797: 
                   22798:        * src/main/compile.y 1.35:
                   22799:        * src/main/core.C 1.36:
                   22800:                yylex need some @special lines adj
                   22801: 
                   22802:        * src/include/pa_value.h 1.24:
                   22803:        * src/include/pa_vcframe.h 1.1:
                   22804:        * src/include/pa_vclass.h 1.10:
                   22805:        * src/include/pa_vframe.h 1.6:
                   22806:        * src/include/pa_vhash.h 1.2:
                   22807:        * src/include/pa_vjunction.h 1.1:
                   22808:        * src/include/pa_vmframe.h 1.1:
                   22809:        * src/include/pa_wcontext.h 1.14:
                   22810:        * src/include/pa_wwrapper.h 1.3:
                   22811:        * src/main/execute.C 1.34:
                   22812:        * src/main/main.dsp 1.27:
                   22813:        * src/main/pa_cframe.C 1.1:
                   22814:        * src/main/pa_wcontext.C 1.1:
                   22815:                codeframe just compiled
                   22816: 
                   22817:        * src/include/pa_request.h 1.12:
                   22818:        * src/include/pa_vclass.h 1.14:
                   22819:        * src/main/compile.C 1.18:
                   22820:        * src/main/compile.y 1.34:
                   22821:        * src/main/compile_tools.h 1.14:
                   22822:        * src/main/core.C 1.35:
                   22823:                modules0
                   22824: 
                   22825:        * src/main/pa_array.C 1.20:
                   22826:                minor bug in expanding very small arrays. 60% from 1 were 0
                   22827: 
                   22828:        * src/include/pa_vclass.h 1.12:
                   22829:        * src/main/compile.y 1.36:
                   22830:        * src/main/core.C 1.33:
                   22831:                z
                   22832: 
                   22833:        * src/include/code.h 1.7:
                   22834:        * src/include/pa_request.h 1.11:
                   22835:        * src/include/pa_value.h 1.23:
                   22836:        * src/include/pa_vclass.h 1.9:
                   22837:        * src/include/pa_vframe.h 1.4:
                   22838:        * src/main/compile.y 1.29:
                   22839:        * src/main/compile_tools.C 1.13:
                   22840:        * src/main/compile_tools.h 1.13:
                   22841:        * src/main/core.C 1.32:
                   22842:        * src/main/execute.C 1.32:
                   22843:                code junctions0. something wrong with last \n macrotemplate strip
                   22844: 
                   22845:        * src/include/pa_value.h 1.26:
                   22846:        * src/include/pa_vclass.h 1.11:
                   22847:        * src/include/pa_vobject.h 1.1:
                   22848:        * src/main/main.dsp 1.28:
                   22849:                vobject00
                   22850: 
                   22851:        * src/main/compile.y 1.31:
                   22852:        * src/main/execute.C 1.33:
                   22853:                fixed empty constructor optimized empty case. failed on calls -
                   22854:                produced empty string param
                   22855: 
                   22856:        * src/main/execute.C 1.35:
                   22857:                codeframe1
                   22858: 
                   22859: 2001-02-23  paf
                   22860:        * src/include/pa_value.h 1.18:
                   22861:        * src/main/core.C 1.27:
                   22862:        * src/main/execute.C 1.25:
                   22863:        * src/main/main.dsp 1.23:
                   22864:                value named
                   22865: 
                   22866:        * src/main/compile.y 1.26:
                   22867:        * src/main/execute.C 1.27:
                   22868:                empty constructor bug fixed
                   22869: 
                   22870:        * src/include/pa_vframe.h 1.1:
                   22871:        * src/include/pa_vunknown.h 1.1:
                   22872:        * src/include/pa_wcontext.h 1.13:
                   22873:        * src/include/pa_wwrapper.h 1.1:
                   22874:        * src/main/core.C 1.29:
                   22875:        * src/main/execute.C 1.29:
                   22876:        * src/main/main.dsp 1.25:
                   22877:        * src/main/pa_value.C 1.1:
                   22878:                call0
                   22879: 
                   22880:        * src/main/compile.y 1.27:
                   22881:        * src/main/compile_tools.C 1.12:
                   22882:        * src/main/compile_tools.h 1.12:
                   22883:                fixed wrong grammar in complex constructor case
                   22884: 
                   22885:        * src/include/pa_value.h 1.21:
                   22886:        * src/include/pa_vclass.h 1.8:
                   22887:        * src/include/pa_vframe.h 1.3:
                   22888:        * src/main/core.C 1.30:
                   22889:        * src/main/execute.C 1.31:
                   22890:        * src/main/pa_value.C 1.2:
                   22891:                get_method RIP. junctions everywhere. call with junctions0
                   22892: 
                   22893:        * src/main/compile.y 1.28:
                   22894:        * src/main/execute.C 1.30:
                   22895:        * src/main/main.dsp 1.26:
                   22896:                rethought some. before junction
                   22897: 
                   22898:        * src/include/pa_value.h 1.17:
                   22899:        * src/include/pa_vstring.h 1.4:
                   22900:        * src/main/execute.C 1.24:
                   22901:                strign 2 value in 2 places in execute
                   22902: 
                   22903:        * src/include/pa_wcontext.h 1.11:
                   22904:                z
                   22905: 
                   22906:        * src/include/pa_hash.h 1.17:
                   22907:        * src/include/pa_value.h 1.19:
                   22908:        * src/include/pa_wcontext.h 1.12:
                   22909:        * src/main/core.C 1.28:
                   22910:        * src/main/execute.C 1.28:
                   22911:        * src/main/main.dsp 1.24:
                   22912:        * src/main/pa_hash.C 1.16:
                   22913:                started call. store param, vframe done
                   22914: 
                   22915:        * src/include/pa_value.h 1.22:
                   22916:        * src/main/compile.C 1.17:
                   22917:        * src/main/core.C 1.31:
                   22918:        * src/main/pa_value.C 1.3:
                   22919:                minor error reporting format beautifyings
                   22920: 
                   22921:        * src/main/execute.C 1.26:
                   22922:                with result rwpool
                   22923: 
1.24      paf      22924:        * src/include/pa_value.h 1.20:
                   22925:        * src/include/pa_vclass.h 1.7:
                   22926:        * src/include/pa_vframe.h 1.2:
                   22927:        * src/include/pa_wwrapper.h 1.2:
                   22928:                lara came, can't work, sorry :(
                   22929: 
1.15      paf      22930:        * src/include/pa_value.h 1.16:
                   22931:        * src/include/pa_wcontext.h 1.10:
                   22932:        * src/main/compile.y 1.25:
                   22933:        * src/main/execute.C 1.23:
                   22934:        * src/main/main.dsp 1.22:
                   22935:        * src/main/pa_array.C 1.19:
                   22936:                auto VHash on wcontext.put_element when wcontext fvalue==0
                   22937: 
                   22938: 2001-02-22  paf
                   22939:        * src/include/pa_request.h 1.10:
                   22940:        * src/main/compile.y 1.23:
                   22941:                $self.put(val)
                   22942: 
                   22943:        * src/include/pa_pool.h 1.24:
                   22944:        * src/include/pa_vclass.h 1.5:
                   22945:        * src/main/core.C 1.25:
                   22946:        * src/main/pa_hash.C 1.15:
                   22947:        * src/main/pa_pool.C 1.9:
                   22948:                TRY...
                   22949: 
                   22950:        * src/include/code.h 1.6:
                   22951:        * src/main/compile_tools.C 1.9:
                   22952:        * src/main/compile_tools.h 1.10:
                   22953:        * src/main/execute.C 1.19:
                   22954:                OP_STRING better then some xxx _VALUE
                   22955: 
                   22956:        * src/main/compile.C 1.14:
                   22957:        * src/main/core.C 1.26:
                   22958:        * src/main/execute.C 1.16:
                   22959:        * src/main/pa_string.C 1.31:
                   22960:                more precise parse error line:col
                   22961: 
                   22962:        * src/main/compile.C 1.15:
                   22963:        * src/main/compile.y 1.18:
                   22964:        * src/main/execute.C 1.20:
                   22965:                started : with $a.$:f
                   22966: 
                   22967:        * src/main/compile.y 1.20:
                   22968:                $: wasn't finished - $:sdf(sdf) troubled a bit. finished now.
                   22969: 
                   22970:        * src/include/code.h 1.3:
                   22971:        * src/include/pa_string.h 1.25:
                   22972:        * src/include/pa_value.h 1.12:
                   22973:        * src/include/pa_vclass.h 1.3:
                   22974:        * src/include/pa_wcontext.h 1.3:
                   22975:        * src/main/compile.y 1.14:
                   22976:        * src/main/execute.C 1.14:
                   22977:        * src/main/pa_string.C 1.28:
                   22978:                write_value write_string 0
                   22979:                it seems wcontext must write strings regardles of fvalue!=0
                   22980: 
                   22981:        * src/include/code.h 1.4:
                   22982:        * src/include/pa_value.h 1.13:
                   22983:        * src/include/pa_vclass.h 1.4:
                   22984:        * src/include/pa_wcontext.h 1.5:
                   22985:        * src/main/compile.y 1.15:
                   22986:        * src/main/compile_tools.C 1.6:
                   22987:        * src/main/compile_tools.h 1.8:
                   22988:        * src/main/execute.C 1.15:
                   22989:        * src/main/main.dsp 1.20:
                   22990:                iiieeyys! get/put simple vars to VClass works0
                   22991: 
                   22992:        * src/include/pa_array.h 1.18:
                   22993:        * src/include/pa_wcontext.h 1.4:
                   22994:        * src/main/pa_string.C 1.29:
                   22995:                in process, but found that exceptions are too global
                   22996: 
                   22997:        * src/main/compile.y 1.19:
                   22998:                $: finished
                   22999: 
                   23000:        * src/main/compile.C 1.16:
                   23001:        * src/main/compile.y 1.21:
                   23002:        * src/main/compile_tools.C 1.10:
                   23003:                z
                   23004: 
                   23005:        * src/include/pa_request.h 1.9:
                   23006:        * src/include/pa_stack.h 1.2:
                   23007:        * src/include/pa_wcontext.h 1.7:
                   23008:        * src/main/execute.C 1.17:
                   23009:                z about to vstring it .y all
                   23010: 
                   23011:        * src/include/pa_hash.h 1.16:
                   23012:        * src/include/pa_value.h 1.15:
                   23013:        * src/include/pa_vclass.h 1.6:
                   23014:        * src/include/pa_vhash.h 1.1:
                   23015:        * src/include/pa_vstring.h 1.3:
                   23016:        * src/include/pa_wcontext.h 1.9:
                   23017:        * src/main/execute.C 1.22:
                   23018:        * src/main/main.dsp 1.21:
                   23019:                auto VHash in pa.th.cre.at.e
                   23020: 
                   23021:        * src/include/code.h 1.5:
                   23022:        * src/include/pa_vstring.h 1.2:
                   23023:        * src/main/compile.y 1.17:
                   23024:        * src/main/compile_tools.C 1.8:
                   23025:        * src/main/compile_tools.h 1.9:
                   23026:        * src/main/execute.C 1.18:
                   23027:                string to vstring it .y all
                   23028: 
                   23029:        * src/include/pa_array.h 1.19:
                   23030:        * src/main/compile.y 1.22:
                   23031:        * src/main/compile_tools.C 1.11:
                   23032:        * src/main/compile_tools.h 1.11:
                   23033:        * src/main/pa_array.C 1.18:
                   23034:                $self.get
                   23035: 
                   23036:        * src/include/pa_exception.h 1.5:
                   23037:        * src/include/pa_pool.h 1.23:
                   23038:        * src/include/pa_request.h 1.8:
                   23039:        * src/include/pa_value.h 1.14:
                   23040:        * src/include/pa_wcontext.h 1.6:
                   23041:        * src/main/compile.C 1.13:
                   23042:        * src/main/compile.y 1.16:
                   23043:        * src/main/compile_tools.C 1.7:
                   23044:        * src/main/core.C 1.24:
                   23045:        * src/main/pa_array.C 1.17:
                   23046:        * src/main/pa_exception.C 1.4:
                   23047:        * src/main/pa_hash.C 1.14:
                   23048:        * src/main/pa_pool.C 1.8:
                   23049:        * src/main/pa_string.C 1.30:
                   23050:        * src/main/pa_table.C 1.9:
                   23051:                removed exception from request
                   23052: 
                   23053:        * src/include/pa_vstring.h 1.1:
                   23054:        * src/main/compile.C 1.12:
                   23055:        * src/main/core.C 1.23:
                   23056:                added some forgotten
                   23057: 
                   23058:        * src/include/pa_wcontext.h 1.8:
                   23059:        * src/main/compile.y 1.24:
                   23060:        * src/main/execute.C 1.21:
                   23061:                erroreos checkout
                   23062: 
                   23063: 2001-02-21  paf
                   23064:        * src/main/compile.y 1.9:
                   23065:                more straightforward yylex[end]
                   23066: 
                   23067:        * src/main/compile.C 1.6:
                   23068:        * src/main/compile.y 1.6:
                   23069:        * src/main/compile_tools.h 1.5:
                   23070:                error processing in eval & yyerror so it wouldn't cause
                   23071:                memleaks.
                   23072: 
                   23073:        * src/include/compile.h 1.5:
                   23074:        * src/include/execute.h 1.3:
                   23075:        * src/include/pa_array.h 1.17:
                   23076:        * src/include/pa_request.h 1.7:
                   23077:        * src/include/pa_stack.h 1.1:
                   23078:        * src/include/pa_vclass.h 1.2:
                   23079:        * src/include/pa_wcontext.h 1.2:
                   23080:        * src/main/compile.C 1.10:
                   23081:        * src/main/compile.y 1.12:
                   23082:        * src/main/execute.C 1.11:
                   23083:        * src/main/main.dsp 1.19:
                   23084:        * src/main/pa_array.C 1.16:
                   23085:        * src/main/pa_request.C 1.2:
                   23086:                get put -1 [just compiled]
                   23087: 
                   23088:        * src/include/compile.h 1.4:
                   23089:        * src/include/pa_array.h 1.16:
                   23090:        * src/main/compile.C 1.9:
                   23091:        * src/main/compile.y 1.11:
                   23092:        * src/main/execute.C 1.10:
                   23093:                MAIN_METHOD_NAME ready to write execute
                   23094: 
                   23095:        * src/include/pa_string.h 1.24:
                   23096:        * src/include/pa_types.h 1.6:
                   23097:        * src/main/pa_string.C 1.27:
                   23098:                string.operator==(char*)
                   23099: 
                   23100:        * src/main/compile.C 1.11:
                   23101:        * src/main/compile.y 1.13:
                   23102:        * src/main/execute.C 1.12:
                   23103:                store0
                   23104: 
                   23105:        * src/include/core.h 1.1:
                   23106:        * src/include/pa_context.h 1.8:
                   23107:        * src/include/pa_request.h 1.6:
                   23108:        * src/include/pa_vclass.h 1.1:
                   23109:        * src/include/pa_wcontext.h 1.1:
                   23110:        * src/main/core.C 1.22:
                   23111:        * src/main/main.dsp 1.18:
                   23112:        * src/main/pa_request.C 1.1:
                   23113:                request core methods0
                   23114: 
                   23115:        * src/include/compile.h 1.3:
                   23116:        * src/include/pa_context.h 1.7:
                   23117:        * src/include/pa_hash.h 1.15:
                   23118:        * src/include/pa_request.h 1.5:
                   23119:        * src/include/pa_string.h 1.23:
                   23120:        * src/include/pa_value.h 1.9:
                   23121:                struck with const array.gets
                   23122: 
                   23123:        * src/include/code.h 1.2:
                   23124:        * src/include/pa_types.h 1.5:
                   23125:        * src/main/compile.C 1.3:
                   23126:        * src/main/compile.y 1.3:
                   23127:        * src/main/compile_tools.C 1.3:
                   23128:        * src/main/compile_tools.h 1.3:
                   23129:        * src/main/execute.C 1.3:
                   23130:        * src/main/main.dsp 1.16:
                   23131:                .y to c++
                   23132:                hierarchy output fix.
                   23133:                compiler works ok
                   23134: 
                   23135:        * src/include/compile.h 1.2:
                   23136:        * src/main/compile.C 1.4:
                   23137:        * src/main/compile.y 1.4:
                   23138:        * src/main/compile_tools.h 1.4:
                   23139:                line numbers needed. would add them to .y now internally. 
                   23140:                externally it's not as precise as needed
                   23141: 
1.24      paf      23142:        * src/include/execute.h 1.2:
                   23143:        * src/include/pa_array.h 1.15:
                   23144:        * src/include/pa_value.h 1.10:
                   23145:        * src/main/execute.C 1.9:
                   23146:        * src/main/pa_array.C 1.15:
                   23147:                after array.const get wonders
                   23148: 
1.15      paf      23149:        * src/include/pa_exception.h 1.4:
                   23150:        * src/include/pa_value.h 1.11:
                   23151:        * src/main/compile.C 1.8:
                   23152:        * src/main/compile.y 1.10:
                   23153:        * src/main/compile_tools.C 1.5:
                   23154:        * src/main/compile_tools.h 1.7:
                   23155:                .y methods and one_big_piece. now compile returns array<method*>
                   23156: 
                   23157:        * src/main/compile.y 1.7:
                   23158:        * src/main/execute.C 1.4:
                   23159:        * src/main/execute.C 1.5:
                   23160:        * src/main/execute.C 1.6:
                   23161:        * src/main/execute.C 1.7:
                   23162:        * src/main/execute.C 1.8:
                   23163:                z
                   23164: 
                   23165:        * src/main/execute.C 1.13:
                   23166:                tired :)
                   23167: 
                   23168:        * src/main/compile.C 1.5:
                   23169:        * src/main/compile.y 1.5:
                   23170:                failed to add absolute precies parse error positions. leaving
                   23171:                RIGHTMOST position as @file[line:col]
                   23172: 
                   23173: 2001-02-20  paf
                   23174:        * src/include/code.h 1.1:
                   23175:        * src/include/compile.h 1.1:
                   23176:        * src/include/execute.h 1.1:
                   23177:        * src/include/pa_array.h 1.14:
                   23178:        * src/include/pa_common.h 1.2:
                   23179:        * src/include/pa_pool.h 1.22:
                   23180:        * src/include/pa_string.h 1.22:
                   23181:        * src/include/pa_table.h 1.8:
                   23182:        * src/include/pa_types.h 1.4:
                   23183:        * src/main/compile.C 1.1:
                   23184:        * src/main/compile.y 1.1:
                   23185:        * src/main/compile_tools.C 1.1:
                   23186:        * src/main/compile_tools.h 1.1:
                   23187:        * src/main/core.C 1.21:
                   23188:        * src/main/execute.C 1.1:
                   23189:        * src/main/main.dsp 1.14:
                   23190:        * src/main/pa_array.C 1.14:
                   23191:        * src/main/pa_common.C 1.2:
                   23192:        * src/main/pa_hash.C 1.12:
                   23193:        * src/main/pa_string.C 1.26:
                   23194:        * src/main/pa_table.C 1.8:
                   23195:                bison[yacc] first time compiled.
                   23196:                execute=dump for now
                   23197: 
                   23198:        * src/main/compile.C 1.2:
                   23199:        * src/main/compile.y 1.2:
                   23200:        * src/main/compile_tools.C 1.2:
                   23201:        * src/main/compile_tools.h 1.2:
                   23202:        * src/main/execute.C 1.2:
                   23203:        * src/main/main.dsp 1.15:
                   23204:                nestage probs, eof yylex not perfect
                   23205: 
                   23206:        * src/main/core.C 1.20:
                   23207:                core rewrite using yacc investigations
                   23208:                now will be compile[yacc]/execute[opcodes]
                   23209: 
                   23210: 2001-02-15  paf
                   23211:        * src/include/pa_value.h 1.8:
                   23212:        * src/main/core.C 1.19:
                   23213:                maybe a-la yacc those ifs rewrite as turing machine?
                   23214:                for it seems it would be it's too many ifs with this syntax now
                   23215: 
                   23216: 2001-02-14  paf
                   23217:        * src/include/pa_context.h 1.6:
                   23218:        * src/include/pa_string.h 1.20:
                   23219:        * src/main/core.C 1.10:
                   23220:        * src/main/pa_string.C 1.23:
                   23221:                process text repassing
                   23222: 
                   23223:        * src/include/pa_value.h 1.7:
                   23224:        * src/main/core.C 1.11:
                   23225:        * src/main/pa_string.C 1.24:
                   23226:                process text repassing2
                   23227:                operator static vars
                   23228: 
                   23229:        * src/include/pa_string.h 1.21:
                   23230:        * src/main/core.C 1.12:
                   23231:        * src/main/pa_string.C 1.25:
                   23232:                get names 0
                   23233: 
                   23234:        * src/include/pa_context.h 1.5:
                   23235:        * src/include/pa_value.h 1.6:
                   23236:        * src/main/core.C 1.9:
                   23237:                module:calls changes
                   23238: 
                   23239:        * src/main/core.C 1.16:
                   23240:                varios breaks
                   23241: 
                   23242:        * src/main/core.C 1.17:
                   23243:                get_params
                   23244:                figured ^menu[UNEVALUATED unthinked :( ]
                   23245: 
                   23246:        * src/main/core.C 1.18:
                   23247:                get_params 1
                   23248: 
                   23249:        * src/main/core.C 1.13:
                   23250:                get names 1
                   23251: 
                   23252:        * src/main/core.C 1.14:
                   23253:                get names 2
                   23254: 
                   23255:        * src/main/core.C 1.15:
                   23256:                get names 3
                   23257: 
                   23258: 2001-02-13  paf
                   23259:        * src/include/pa_string.h 1.17:
                   23260:        * src/main/pa_string.C 1.19:
                   23261:                String_iterator::skip_to
                   23262:                todo:optimize
                   23263: 
                   23264:        * src/main/core.C 1.6:
                   23265:                operators
                   23266:                : and self. prefixes
                   23267: 
                   23268:        * src/include/pa_context.h 1.4:
                   23269:        * src/include/pa_value.h 1.5:
                   23270:        * src/main/core.C 1.8:
                   23271:                ^class:calls[] started
                   23272: 
                   23273:        * src/include/pa_string.h 1.18:
                   23274:        * src/main/pa_string.C 1.21:
                   23275:                String_iterator optimized
                   23276: 
                   23277:        * src/include/pa_string.h 1.19:
                   23278:        * src/main/pa_string.C 1.22:
                   23279:                String_iterator tested
                   23280: 
                   23281:        * src/main/pa_string.C 1.20:
                   23282:                String_iterator::skip_to
                   23283:                optimized a bit. would change privates to better support optimization
                   23284: 
                   23285:        * src/include/pa_value.h 1.4:
                   23286:        * src/main/core.C 1.5:
                   23287:        * src/main/core.C 1.7:
                   23288:                z
                   23289: 
                   23290: 2001-02-12  paf
                   23291:        * src/include/pa_context.h 1.2:
                   23292:        * src/include/pa_value.h 1.2:
                   23293:        * src/main/core.C 1.2:
                   23294:                get self/methodref joined
                   23295: 
                   23296:        * src/include/pa_context.h 1.3:
                   23297:        * src/include/pa_value.h 1.3:
                   23298:        * src/main/core.C 1.3:
                   23299:                some comments
                   23300: 
                   23301:        * src/include/pa_string.h 1.16:
                   23302:        * src/main/core.C 1.4:
                   23303:        * src/main/pa_string.C 1.18:
                   23304:                started String_iterator
                   23305: 
                   23306: 2001-02-11  paf
                   23307:        * src/include/pa_context.h 1.1:
                   23308:        * src/include/pa_value.h 1.1:
                   23309:        * src/main/core.C 1.1:
                   23310:        * src/main/main.dsp 1.13:
                   23311:                core started.
                   23312:                core.C, context&value .h
                   23313: 
                   23314:        * src/include/pa_array.h 1.13:
                   23315:        * src/include/pa_hash.h 1.14:
                   23316:        * src/include/pa_pool.h 1.21:
                   23317:        * src/include/pa_string.h 1.15:
                   23318:        * src/main/main.dsp 1.12:
                   23319:        * src/main/pa_array.C 1.13:
                   23320:        * src/main/pa_hash.C 1.11:
                   23321:        * src/main/pa_pool.C 1.7:
                   23322:        * src/main/pa_string.C 1.17:
                   23323:                :pooled
                   23324: 
                   23325: 2001-01-30  paf
                   23326:        * src/include/pa_error.h 1.4:
                   23327:        * src/include/pa_exception.h 1.1:
                   23328:        * src/include/pa_pool.h 1.17:
                   23329:        * src/include/pa_request.h 1.3:
                   23330:        * src/main/main.dsp 1.10:
                   23331:        * src/main/pa_error.C 1.4:
                   23332:        * src/main/pa_exception.C 1.1:
                   23333:        * src/main/pa_pool.C 1.4:
                   23334:        * src/targets/Makefile.am 1.2:
                   23335:                lowered targets/parser into subdir, added parser_Pool(Pool)
                   23336:                failed to add. would think..
                   23337: 
                   23338:        * src/include/pa_exception.h 1.3:
                   23339:        * src/include/pa_pool.h 1.19:
                   23340:        * src/include/pa_table.h 1.7:
                   23341:        * src/main/pa_exception.C 1.3:
                   23342:        * src/main/pa_table.C 1.7:
                   23343:                minor * to & changes
                   23344: 
                   23345:        * src/include/pa_pool.h 1.20:
                   23346:        * src/main/Makefile.am 1.5:
                   23347:        * src/main/main.dsp 1.11:
                   23348:        * src/main/pa_pool.C 1.6:
                   23349:                moved pa_pool.C to be target specific
                   23350: 
                   23351:        * src/Makefile.am 1.2:
                   23352:        * src/main/Makefile.am 1.6:
                   23353:        * src/targets/Makefile.am 1.3:
                   23354:                .am comments
                   23355: 
                   23356:        * src/include/pa_exception.h 1.2:
                   23357:        * src/include/pa_pool.h 1.18:
                   23358:        * src/include/pa_request.h 1.4:
                   23359:        * src/include/pa_table.h 1.6:
                   23360:        * src/main/pa_array.C 1.12:
                   23361:        * src/main/pa_exception.C 1.2:
                   23362:        * src/main/pa_pool.C 1.5:
                   23363:        * src/main/pa_table.C 1.6:
                   23364:                error re-associated. that's much better
                   23365:                even removed 'die' necessety
                   23366: 
                   23367: 2001-01-29  paf
                   23368:        * src/include/pa_hash.h 1.9:
                   23369:        * src/include/pa_pool.h 1.10:
                   23370:        * src/include/pa_threads.h 1.3:
                   23371:        * src/main/pa_hash.C 1.5:
                   23372:                made local Hash-es not thread safe=quicker by
                   23373:                SYNCHRONIZED(thread_safe)
                   23374: 
                   23375:        * src/include/pa_hash.h 1.5:
                   23376:                some comments
                   23377: 
                   23378:        * src/include/pa_error.h 1.2:
                   23379:        * src/include/pa_request.h 1.2:
                   23380:        * src/include/pa_string.h 1.13:
                   23381:        * src/include/pa_table.h 1.4:
                   23382:        * src/main/pa_error.C 1.2:
                   23383:        * src/main/pa_table.C 1.4:
                   23384:                Error fixed
                   23385: 
                   23386:        * src/include/pa_pool.h 1.11:
                   23387:        * src/include/pa_string.h 1.9:
                   23388:        * src/main/pa_string.C 1.13:
                   23389:                String originating
                   23390: 
1.23      paf      23391:        * src/include/pa_pool.h 1.14:
                   23392:        * src/main/pa_array.C 1.9:
                   23393:                tested - decision "no templates"
1.15      paf      23394: 
                   23395:        * src/include/pa_hash.h 1.6:
                   23396:        * src/include/pa_threads.h 1.1:
                   23397:        * src/main/main.dsp 1.6:
                   23398:        * src/main/pa_threads.C 1.1:
                   23399:                added pa_threads
                   23400:                
                   23401:                Mutex
                   23402: 
1.23      paf      23403:        * src/include/pa_array.h 1.4:
                   23404:        * src/main/pa_array.C 1.4:
                   23405:                Array::operator += (Array& src)
                   23406:                
                   23407:                rethought, would change now
1.15      paf      23408: 
                   23409:        * src/include/pa_array.h 1.7:
                   23410:        * src/include/pa_hash.h 1.10:
                   23411:        * src/include/pa_pool.h 1.12:
                   23412:        * src/include/pa_string.h 1.10:
                   23413:        * src/include/pa_table.h 1.1:
                   23414:        * src/include/pa_types.h 1.2:
                   23415:        * src/main/main.dsp 1.7:
                   23416:        * src/main/pa_array.C 1.7:
                   23417:        * src/main/pa_string.C 1.14:
                   23418:        * src/main/pa_table.C 1.1:
                   23419:                Table started
                   23420:                would test
                   23421:                template Array now
                   23422: 
1.23      paf      23423:        * src/include/pa_error.h 1.3:
                   23424:        * src/include/pa_hash.h 1.13:
                   23425:        * src/include/pa_string.h 1.14:
                   23426:        * src/include/pa_table.h 1.5:
                   23427:        * src/main/pa_error.C 1.3:
                   23428:        * src/main/pa_hash.C 1.10:
                   23429:        * src/main/pa_string.C 1.16:
                   23430:        * src/main/pa_table.C 1.5:
                   23431:                Table
                   23432:                more like C++ style
                   23433:                hence lots of 'const'
1.15      paf      23434: 
                   23435:        * src/include/pa_array.h 1.11:
                   23436:        * src/include/pa_hash.h 1.11:
                   23437:        * src/include/pa_pool.h 1.15:
                   23438:        * src/include/pa_string.h 1.11:
                   23439:        * src/include/pa_table.h 1.2:
                   23440:        * src/include/pa_types.h 1.3:
                   23441:        * src/main/Makefile.am 1.3:
                   23442:        * src/main/main.dsp 1.9:
                   23443:        * src/main/pa_array.C 1.10:
                   23444:        * src/main/pa_hash.C 1.8:
                   23445:        * src/main/pa_string.C 1.15:
                   23446:        * src/main/pa_table.C 1.2:
                   23447:                Request
                   23448:                Error
                   23449:                Table
                   23450: 
1.23      paf      23451:        * src/main/pa_array.C 1.5:
                   23452:                expand not convinient, would rewrite
                   23453: 
1.15      paf      23454:        * src/include/pa_array.h 1.6:
                   23455:        * src/include/pa_hash.h 1.8:
                   23456:        * src/include/pa_string.h 1.8:
                   23457:                moved .h public parts to top
                   23458: 
                   23459:        * src/include/pa_hash.h 1.7:
                   23460:        * src/include/pa_threads.h 1.2:
                   23461:        * src/main/pa_hash.C 1.4:
                   23462:        * src/main/pa_threads.C 1.2:
                   23463:                decided on one global_mutex, like PHP
                   23464:                as I can see: needed only in global Hash now,
                   23465:                made Hash:: put/get SYNCHRONIZED
                   23466: 
                   23467:        * src/include/pa_array.h 1.12:
                   23468:        * src/include/pa_common.h 1.1:
                   23469:        * src/include/pa_error.h 1.1:
                   23470:        * src/include/pa_hash.h 1.12:
                   23471:        * src/include/pa_pool.h 1.16:
                   23472:        * src/include/pa_request.h 1.1:
                   23473:        * src/include/pa_string.h 1.12:
                   23474:        * src/include/pa_table.h 1.3:
                   23475:        * src/main/Makefile.am 1.4:
                   23476:        * src/main/pa_array.C 1.11:
                   23477:        * src/main/pa_common.C 1.1:
                   23478:        * src/main/pa_error.C 1.1:
                   23479:        * src/main/pa_hash.C 1.9:
                   23480:        * src/main/pa_table.C 1.3:
                   23481:                added forgotten
                   23482: 
                   23483:        * src/include/pa_array.h 1.8:
                   23484:        * src/include/pa_pool.h 1.13:
                   23485:        * src/main/Makefile.am 1.2:
                   23486:        * src/main/main.dsp 1.8:
                   23487:        * src/main/pa_array.C 1.8:
                   23488:                templates failed
                   23489:                no template specializations [VC6],
                   23490:                no library auto instantation [VC6, GNU c++ 2.95.2-6 from latest cygwin]
                   23491: 
                   23492:        * src/include/pa_array.h 1.5:
                   23493:        * src/include/pa_pool.h 1.9:
                   23494:        * src/main/pa_array.C 1.6:
                   23495:                Array& operator += (Array& src)
                   23496: 
                   23497: 2001-01-27  paf
                   23498:        * src/include/pa_hash.h 1.1:
                   23499:        * src/include/pa_string.h 1.4:
                   23500:        * src/include/pa_types.h 1.1:
                   23501:        * src/main/main.dsp 1.4:
                   23502:        * src/main/pa_string.C 1.7:
                   23503:                uint, and added pa_types & pa_hash[forgotten]
                   23504: 
                   23505:        * src/main/pa_string.C 1.9:
                   23506:                String::operator ==
                   23507: 
1.23      paf      23508:        * src/main/pa_hash.C 1.2:
                   23509:                String(&String)
                   23510: 
1.15      paf      23511:        * src/include/pa_array.h 1.3:
                   23512:        * src/main/pa_array.C 1.3:
                   23513:                array [] with chunk caching
                   23514: 
                   23515:        * src/include/pa_array.h 1.2:
                   23516:        * src/include/pa_hash.h 1.4:
                   23517:        * src/include/pa_pool.h 1.8:
                   23518:        * src/include/pa_string.h 1.7:
                   23519:        * src/main/pa_array.C 1.2:
                   23520:        * src/main/pa_string.C 1.11:
                   23521:                array cache rethought to chunk caching
                   23522: 
                   23523:        * src/include/pa_array.h 1.1:
                   23524:        * src/include/pa_hash.h 1.3:
                   23525:        * src/include/pa_pool.h 1.7:
                   23526:        * src/include/pa_string.h 1.6:
                   23527:        * src/main/main.dsp 1.5:
                   23528:        * src/main/pa_array.C 1.1:
                   23529:        * src/main/pa_hash.C 1.3:
                   23530:        * src/main/pa_string.C 1.10:
                   23531:                Array 0
                   23532: 
                   23533:        * src/main/pa_hash.C 1.1:
                   23534:                added pa_hash.C [forgotten]
                   23535: 
                   23536: 2001-01-26  paf
1.23      paf      23537:        * src/include/pa_pool.h 1.2:
                   23538:        * src/main/pa_string.C 1.2:
                   23539:                String prealloc & dynamic row_count
                   23540: 
1.15      paf      23541:        * src/include/pa_pool.h 1.6:
                   23542:        * src/include/pa_string.h 1.3:
                   23543:        * src/main/pa_string.C 1.6:
                   23544:                removed templates [vc++ suxx]
                   23545: 
                   23546:        * src/include/pa_pool.h 1.4:
                   23547:        * src/include/pa_string.h 1.1:
                   23548:                pa_pool split
                   23549: 
                   23550:        * src/Makefile.am 1.1.1.1:
                   23551:        * src/include/pa_pool.h 1.1.1.1:
                   23552:        * src/main/Makefile.am 1.1.1.1:
                   23553:        * src/main/main.dsp 1.1.1.1:
                   23554:        * src/main/pa_pool.C 1.1.1.1:
                   23555:        * src/main/pa_string.C 1.1.1.1:
                   23556:        * src/targets/Makefile.am 1.1.1.1:
                   23557:                creating parser3 module
                   23558: 
                   23559:        * src/include/pa_pool.h 1.3:
                   23560:        * src/main/main.dsp 1.2:
                   23561:        * src/main/pa_pool.C 1.2:
                   23562:        * src/main/pa_string.C 1.3:
                   23563:        * src/main/pa_string.C 1.4:
1.26      paf      23564:                $Id$ check
1.15      paf      23565: 
                   23566:        * src/include/pa_pool.h 1.5:
                   23567:        * src/include/pa_string.h 1.2:
                   23568:        * src/main/main.dsp 1.3:
                   23569:        * src/main/pa_pool.C 1.3:
                   23570:        * src/main/pa_string.C 1.5:
                   23571:                templates in VC++ suxx.
                   23572: 

E-mail: