Annotation of parser3/ChangeLog, revision 1.140
1.140 ! moko 1: 2020-08-14 moko
! 2:
! 3: * configure, configure.ac, parser3.sln, src/lib/Makefile.am,
! 4: src/targets/cgi/Makefile.am: no httpd as separate library
! 5:
! 6: 2020-08-13 moko
! 7:
! 8: * src/targets/cgi/parser3.C: SAPI::die used in exception in
! 9: unhandled exception handler to report 500 instead of 200 it was
! 10: before.
! 11:
! 12: * src/targets/apache/mod_parser3_core.C: minor cleanup
! 13:
! 14: * src/: include/pa_sapi.h, main/untaint.C,
! 15: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
! 16: targets/isapi/parser3isapi.C: SAPI::abort was used only once,
! 17: thus replaced with SAPI::die and removed
! 18:
! 19: * src/targets/: apache/mod_parser3_core.C, isapi/parser3isapi.C,
! 20: cgi/parser3.C: whitespace
! 21:
! 22: * src/targets/cgi/parser3.C: locate_config() extracted, whitespace.
! 23:
! 24: 2020-08-12 moko
! 25:
! 26: * src/targets/cgi/parser3.C: duplicate info in signal logging
! 27: removed, whitespace was: SIGPIPE received while executing code.
! 28: uri=/_tmp.html, method=GET, cl=0 [uri=/_tmp.html, method=GET,
! 29: cl=0]
! 30:
! 31: * parser3.sln: + httpd.vcproj
! 32:
! 33: 2020-08-11 moko
! 34:
! 35: * src/targets/cgi/Makefile.am: +libhttpd
! 36:
! 37: * configure.ac, src/lib/Makefile.am: +libhttpd
! 38:
1.139 moko 39: 2020-07-13 moko
40:
41: * tests/: 401.html, results/401.processed: test for hash key does
42: not keep language, but tainted in foreach.
43:
1.138 moko 44: 2020-07-01 moko
45:
46: * tests/: 235.html, results/235.processed: test result updated as
47: messages before attachments implemented (feature #1176)
48:
1.137 moko 49: 2020-06-27 moko
50:
51: * tests/: 400.html, results/400.processed: test updated to check
52: ^return{code}
53:
54: * src/classes/op.C: bugfix: ^return{code} or ^return(expre+ssion)
55: fixed
56:
57: 2020-06-26 moko
58:
59: * tests/: 400.html, results/400.processed: test for OPTIMIZE_RESULT
60: added (related to https://www.parser.ru/forum/?id=85319)
61:
62: * src/types/pa_vmethod_frame.h: bugfix: OPTIMIZE_RESULT failed,
63: when $result assignment was last statement in the method
64: (https://www.parser.ru/forum/?id=85319)
65:
1.136 moko 66: 2020-05-23 moko
67:
68: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h:
69: whitespace, unused level removed
70:
71: 2020-05-19 moko
72:
73: * src/types/pa_vmail.C: whitespace
74:
75: * src/types/pa_vmail.C: files should be processed last (related to
76: feature #1176)
77:
1.135 moko 78: 2020-05-12 moko
79:
80: * src/include/pa_memory.h: no new/delete checks for for FreeBSD1X.X
81: due to https://bugs.llvm.org/show_bug.cgi?id=40161 bug
82:
83: * configure.ac: FreeBSD1X.X check added to avoid
84: https://bugs.llvm.org/show_bug.cgi?id=40161 bug.
85:
1.134 moko 86: 2020-02-26 moko
87:
88: * src/main/pa_common.C: entry_exists -> entry_ifdir to fix Windows
89: compilation issue (related to bug #1201)
90:
91: * src/main/pa_common.C: entry_readable -> entry_exists,
92: undocumented access(fname, R_OK) call removed (fixes bug #1201)
93: -f and -d now works under Windows in UTF-8 with Russian
94: filenames.
95:
96: * src/types/pa_vmail.C: g_mime_stream_pipe_new used by gmime author
97: advice (related to feature #1199)
98:
99: 2020-02-25 moko
100:
101: * buildall: --silent removed
102:
103: * configure.ac: gmime-3.0 support
104:
105: * buildall: --with-system-mailreceive option added to build with
106: system libgmime
107:
108: * src/types/pa_vmail.C: avoiding
109: https://github.com/jstedfast/gmime/issues/83 "feature" (related
110: to feature #1199)
111:
1.133 moko 112: 2020-02-18 moko
113:
114: * src/classes/op.C: windows x64 debug mode compile fix
115:
116: * src/main/pa_globals.C: no longer required due to -MD -> -MT
117: change (releated to feature #1200)
118:
119: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
120: lib/gd/gd.vcproj, lib/json/json.vcproj, lib/ltdl/ltdl.vcproj,
121: lib/md5/md5.vcproj, lib/memcached/memcached.vcproj,
122: lib/pcre/pcre_internal.vcproj, lib/punycode/punycode.vcproj,
123: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
124: targets/apache/ApacheModuleParser3.vcproj,
125: targets/apache/ApacheModuleParser3Core.vcproj,
126: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
127: types/types.vcproj: -MD -> -MT to remove msvcp71.dll/etc
128: dependency (related to feature #1200)
129:
1.132 moko 130: 2020-02-12 moko
131:
132: * src/types/pa_vmail.C: minimize diff
133:
134: * src/types/pa_vmail.C: libgmime 3.X support (implements feature
135: #1199)
136:
1.131 moko 137: 2020-01-18 moko
138:
139: * tests/: 388-sql.html, results/388-sql.processed: +postprocess
140:
1.130 moko 141: 2019-12-28 moko
142:
143: * src/targets/cgi/parser3.C: avoid empty ?
144:
145: 2019-12-27 moko
146:
147: * src/targets/cgi/parser3.C: PATH_INFO check in reinventing
148: DOCUMENT_ROOT (related to feature #1164)
149:
150: * src/targets/cgi/parser3.C: IIS5 support removed to simplify
151: fcgiwrap setup (implements feature #1164)
152:
153: * src/targets/cgi/parser3.C: real_parser_handler logic simplified,
154: but no issues found (related to feature #1164)
155:
156: * src/targets/cgi/parser3.C: actualized
157:
158: 2019-12-26 moko
159:
160: * src/targets/apache/ApacheModuleParser3.vcproj: apache stop/start
161: removed
162:
163: * src/targets/isapi/parser3isapi.vcproj: inetinfo stop/start
164: removed
165:
166: * src/: lib/gc/include/gc.h, main/pa_globals.C: As we log
167: allocation errors, we don't want default gc warnings (without
168: timestamp and URI).
169:
170: * src/: classes/memory.C, main/pa_globals.C,
171: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
172: targets/isapi/parser3isapi.C: GC_dont_gc=1 moved to
173: pa_globals_init
174:
175: * src/main/pa_globals.C: setup_hex_value() removed, static array
176: initialization used (optimization)
177:
178: * src/: main/pa_globals.C, targets/apache/mod_parser3_core.C,
179: targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
180: pa_socks_init/pa_socks_done moved inside pa_globals_init
181: (optimization)
182:
1.129 moko 183: 2019-12-09 moko
184:
185: * src/include/pa_config_fixed.h: warning war
186:
1.128 moko 187: 2019-12-08 moko
188:
189: * src/main/main.vcproj: compile.y - ExcludedFromBuild, as we
190: process grammar under Unix.
191:
192: 2019-12-07 moko
193:
194: * tests/389.html: For Windows XP. :)
195:
196: * tests/388-sql.html: Windows compatibility added
197:
198: 2019-12-06 moko
199:
200: * src/targets/cgi/parser3.C: warning war
201:
202: * src/main/pa_string.C: + COMPILE_ASSERT(sizeof(String::Languages)
203: == sizeof(CORD)) to avoid aligning bugs in future
204:
205: * src/: include/pa_config_fixed.h, main/pa_globals.C: simplified to
206: XML_STATIC
207:
208: * src/include/pa_request.h: StackItem() not required
209:
210: * src/include/pa_stack.h: warning war
211:
212: * src/include/pa_config_includes.h: GCC warning silenced
213:
214: * src/include/pa_memory.h: warning war: the program should also
215: define 'void operator delete [](void*, std::size_t)'
216: [-Wsized-deallocation]
217:
218: * src/types/: pa_vregex.h, pa_vtable.h: warning war
219:
220: * src/classes/string.C: not reqired cast removed
221:
222: * src/classes/string.C: not reqired cast removed
223:
224: 2019-12-05 moko
225:
226: * src/lib/sdbm/pa_file_io.C: warning war
227:
228: * src/include/pa_string.h: bugfix for Windows x64: enum Language ->
229: enum Language : size_t - required for VS2015+ to make
230: sizeof(Languages::opt) == sizeof(CORD), will be 16 byte under x64
231: without it (related to feature #1198)
232:
233: 2019-12-04 moko
234:
235: * src/main/pa_base64.C: unsigned char -> uchar
236:
237: * src/main/: main.vcproj, pa_globals.C: libpcre now linked same way
238: as other libs
239:
240: * src/include/pa_version.h: +amd64
241:
242: 2019-12-03 moko
243:
244: * src/: classes/classes.vcproj, types/types.vcproj: sync debug with
245: release
246:
247: * src/include/pa_config_includes.h: warning war
248:
249: * src/classes/image.C: warning war
250:
251: * src/main/pa_globals.C: x64 libs support
252:
253: * src/include/pa_config_includes.h: warning war
254:
255: * src/types/pa_method.h: warning war
256:
1.127 moko 257: 2019-11-28 moko
258:
259: * src/classes/math.C: vs2003 compatibility + warning war
260:
261: * buildall: libxslt-1.1.29 -> libxslt-1.1.34, libxml2-2.9.4 ->
262: libxml2-2.9.9 (related to feature #1136)
263:
264: * src/classes/xdoc.C: xmlHashScanner declaration changed, using
265: typecast for more compatibility (related to feature #1136)
266:
267: * buildall: --direct-download option added, gc-7.6.2 -> gc-8.0.4 +
268: libatomic no longer required, pcre-8.40 -> pcre-8.43 (related to
269: feature #1136)
270:
271: 2019-11-26 moko
272:
273: * src/main/: compile_tools.C, compile_tools.h: invalid assert
274: removed (it was failing in $$var case), condition added
275:
1.126 moko 276: 2019-11-25 moko
277:
278: * tests/: 397.html, 399.html, results/141.processed,
279: results/399.processed: base64 options tested
280:
281: * src/: classes/math.C, main/pa_http.C: base64 options used
282:
283: * src/main/pa_base64.C: base64 encode rewritten, base64 options
284: implemented (feature #986)
285:
286: * src/main/pa_cache_managers.C: whitespace
287:
288: * tests/: 397.html, 399.html, results/399.processed: tests for
289: ^base64 encode options added (related to feature #986)
290:
291: * src/: classes/file.C, include/pa_base64.h, main/pa_base64.C:
292: pa_base64_encode(file) removed - more memory, but faster and less
293: code (related fo feature #986)
294:
295: 2019-11-24 moko
296:
297: * tests/: 155.html, results/155.processed: limit and offset in
298: ^table::load[] now supported, thus test added
299:
300: * src/: classes/file.C, classes/table.C, include/pa_common.h,
301: main/pa_common.C: optimization: offset and limit options parsing
302: moved inside file_load.
303:
304: 2019-11-23 moko
305:
306: * src/: classes/file.C, classes/op.C, include/pa_common.h,
307: main/pa_common.C, main/pa_request.C, types/pa_vform.C:
308: optimization: file_read replaced with simplified file_read_binary
309:
310: * src/: classes/op.C, main/pa_common.C, main/pa_request.C,
311: types/pa_vform.C: whitespace
312:
313: * src/: include/pa_common.h, main/pa_common.C: never used params
314: removed
315:
316: 2019-11-21 moko
317:
318: * tests/: 193.html, results/193.processed, results/389.processed:
319: test results updated as now base64 does not discard tail without
320: padding (related to feature #986)
321:
322: 2019-11-20 moko
323:
324: * src/: classes/file.C, classes/string.C, include/pa_base64.h,
325: main/pa_base64.C: optimization: void pa_base64_decode -> size_t
326: pa_base64_decode (related to feature #986)
327:
328: * tests/398.html: tests for base64 decode added (related to feature
329: #986)
330:
331: * src/main/pa_base64.C: base64_decode rewritten - padding option
332: support, padding inside base 64 supported (related to feature
333: #096)
334:
335: 2019-11-19 moko
336:
337: * src/include/pa_memory.h: CHECK_DELETE_USAGE tested to work under
338: FreeBSD 12
339:
1.125 moko 340: 2019-11-16 moko
341:
342: * src/main/pa_base64.C: base64_decode converted to C++, url-safe
343: support added, step support removed (related to #986)
344:
345: 2019-11-15 moko
346:
347: * src/classes/math.C: using log since log2 is not present on
348: FreeBSD < 8.4 (related to feature #1177)
349:
350: * src/: include/pa_base64.h, main/pa_base64.C: whitespace,
351: pa_base64_size extracted and used for files as well (related to
352: feature 986)
353:
354: 2019-11-14 moko
355:
356: * tests/: 397.html, results/397.processed: + content check
357:
358: * tests/: 141.html, results/141.processed: make test resuls more
359: readable
360:
361: * tests/: 397.html, results/193.processed, results/397.processed:
362: test results updated after \x00 character was disabled in
363: math:convert string mode (related to feature #1177)
364:
365: * src/classes/: math.C, string.C: \\x00 character disabled while
366: converting to string (as in base64, related to feature #1177)
367:
368: * src/classes/file.C: more correct arguments separation
369:
370: * src/: classes/file.C, classes/math.C, classes/string.C,
371: include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
372: main/pa_http.C, types/pa_vfile.C, types/pa_vmail.C: base64
373: options added, but not yet implemented (related to feature #986)
374:
375: * src/classes/math.C: whitespace
376:
377: 2019-11-13 moko
378:
379: * tests/: 397.html, results/397.processed: +tainting test (related
380: to feature #1177)
381:
382: * src/classes/math.C: as we now produce not only digits, result
383: should be tainted (related to feature #1177)
384:
385: * src/main/pa_base64.C: whitespace
386:
387: * src/: include/Makefile.am, main/Makefile.am, main/main.vcproj,
388: include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
389: main/pa_common.C: pa_base64.h and pa_base64.C added, base64
390: implementation moved from pa_common.h and pa_common.C
391:
392: 2019-11-12 moko
393:
394: * tests/: 275.html, results/275.processed: out of range test fixed,
395: as ^math:convert now supports arbitrary precision
396:
397: 2019-11-11 moko
398:
399: * tests/results/389.processed: uctualized error message
400:
401: * tests/: 389.html, 397.html, results/397.processed: tests for
402: ^math:convert added (related to feature #1177)
403:
404: * src/classes/math.C: ^math:convert now supports arbitrary
405: precision, alphabet support added (implements feature #1177)
406:
1.124 moko 407: 2019-11-06 moko
408:
409: * tests/: 181.html, results/181.processed: entities usage added,
410: more entites load tests (related to bug #842 discussion)
411:
412: 2019-11-05 moko
413:
414: * src/main/pa_xml_io.C: bugfix: no more extra http://localhost/
415: call from xmlFileOpen if http://localhost/<file> was not found
416: (related to bug #842)
417:
418: * src/main/pa_xml_io.C: rename
419:
420: * src/main/pa_xml_io.C: +MemoryStream constructor
421:
422: * src/main/pa_xml_io.C: whitespace
423:
1.123 moko 424: 2019-10-31 moko
425:
426: * src/classes/xdoc.C: XML_PARSE_OPTIONS (XML_PARSE_DTDLOAD |
427: XML_PARSE_NOENT) added to fix entities load, (related to feature
428: #1181)
429:
1.122 moko 430: 2019-10-25 moko
431:
432: * tests/: 388-sql.html, results/388-sql.processed: more multiple
433: queries tests
434:
435: 2019-10-24 moko
436:
437: * tests/: 388-sql.html, results/388-sql.processed: support for
438: pgsql driver test
439:
440: * tests/: 388-sql.html, results/388-sql.processed:
441: multi_statements=1 now tested, mysql test now supported
442: (connection must be specified in [parser3] section in .my.cnf)
443: related to issues #1195 and #1194
444:
1.121 moko 445: 2019-09-11 moko
446:
447: * src/classes/int.C: whitespace
448:
449: * tests/: 388-sql.html, results/388-sql.processed: +duplicate key
450: exception test
451:
452: * tests/results/388-sql.processed: sql queries now shown (related
453: to feature #1196)
454:
455: * src/sql/pa_sql_driver.h: to keep new SQL drivers more compatible
456: with old parser versions.
457:
458: * src/: classes/file.C, classes/hash.C, classes/string.C,
459: classes/table.C, classes/void.C, include/pa_sql_connection.h,
460: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: Show query
461: instead of connect string in query_event_handlers exceptions
462: (implements feature #1196)
463:
1.120 moko 464: 2019-09-06 moko
465:
466: * tests/388-sql.html: mysql compat
467:
468: * src/: classes/hash.C, classes/string.C, classes/table.C,
469: classes/void.C, include/pa_common.h, main/pa_common.C: cleanup:
470: sql_ variables declaration moved to pa_common.h
471:
1.116 moko 472: 2019-01-15 moko
473:
474: * src/classes/curl.C: ^curl:info[] - OrderedHashString used, items
475: logically sorted
476:
477: 2018-12-27 moko
478:
479: * src/include/pa_config_includes.h: warning war:
480: -Wdeprecated-register added for C++ 17
481:
482: 2018-10-15 moko
483:
484: * configure.ac: FreeBSD 11.2 can be build with ./configure
485: --with-gc=/usr/local/lib/ --with-pcre=/usr/local/
486: --with-xml=/usr/local/
487:
488: 2018-09-24 moko
489:
490: * tests/: 396.html, 396.tiff, results/396.processed: test for
491: ^image::measure[] now supports tiff added (related to feature
492: #1188)
493:
494: * src/classes/image.C: ^image::measure[] now supports tiff
495: (implements feature #1188)
496:
497: 2018-09-20 moko
498:
499: * tests/: 395.bmp, 395.html, results/395.processed: test for bmp
500: files measure added (related to ticket #1188)
501:
502: * src/classes/image.C: measure of bmp files implemented (related to
503: ticket #1188)
504:
505: 2018-09-18 moko
506:
507: * tests/: 394-curl.html, results/394-curl.processed,
508: results/auto.p: test for bug #1187 (max_file_size check for head
509: requests) added
510:
511: 2018-08-24 moko
512:
513: * src/classes/curl.C: CURLOPT_NOBODY value used to check if
514: response content-length check is required (fixes bug #1187)
515:
516: 2018-05-11 moko
517:
518: * tests/: 157.html, results/157.processed: test for ^file:copy[..;
519: $.append(bool) ] option added (related to feature #919)
520:
521: * src/classes/file.C: ^file:copy[..; $.append(bool) ] option added
522: from misha@ patch (implements feature #919)
523:
524: 2018-03-22 moko
525:
526: * src/main/pa_request.C: $response:download[ $.file[file.namef] ]
527: worked rather slow (about 1mb/sec) with 10kb buffer, replaced it
528: with 128kb buffer. Now works at least 12 times faster. :) May be
529: Windows-only problem.
530:
531: * src/lib/cord/cord.vcproj: Profile * complete cleanup (VS 2003
532: build fix)
533:
534: 2018-02-03 moko
535:
536: * src/main/execute.C: removes irrelevant lines from exception stack
537: trace when exceptions occurs in assigment (fixes bug #1165)
538:
539: * tests/: 393.html, results/393.processed: test for behavour after
540: "Property can not be created, already exists field with that
541: name" exception removed (related to feature #1183)
542:
543: * src/types/pa_vclass.C: "Property can not be created, already
544: exists field with that name" exception removed (implements
545: feature #1183)
546:
547: 2018-01-19 moko
548:
549: * src/classes/string.C: whitespace
550:
551: * src/classes/string.C: whitespace
552:
553: * tests/: 392.html, results/392.processed: test for
554: ^regex::create[$regex] added (related to feature #1135)
555:
556: * src/: classes/regex.C, types/pa_vregex.C, types/pa_vregex.h:
557: ^regex::create[$regex] added (implements feature #1135)
558:
559: * src/types/: pa_vclass.C, pa_vclass.h: CLASS_GETTER_UNPROTECTED
560: commented define added (related to feature #1157)
561:
562: 2018-01-17 moko
563:
564: * buildall: gc 7.6.0 -> 7.6.2 (related to feature #1136)
565:
566: 2018-01-15 moko
567:
568: * tests/: 390.html, results/390.processed: real path replaced by
569: stub
570:
571: * tests/: 391.html, results/391.processed: test for feature #1181
572: (XML_PARSE_HUGE exception) added
573:
574: 2018-01-11 moko
575:
576: * bin/auto.p.dist.in: sqlite3 -> libsqlite3
577:
578: * src/classes/xdoc.C: xmlReadMemory/xmlReadFile now used with
579: XML_PARSE_HUGE option passed by default (implements feature
580: #1181)
581:
582: * src/classes/string.C: whitespace
583:
584: 2017-12-10 moko
585:
586: * tests/: 389.html, 390.html, results/389.processed,
587: results/390.processed: image code coverage tests added (related
588: to feature #1125)
589:
590: 2017-12-08 moko
591:
592: * tests/: 346-curl.html, 388-sql.html, 389.html,
593: results/346-curl.processed, results/388-sql.processed,
594: results/389.processed: more code coverage tests
595:
596: * tests/: 264.html, results/264.processed: code coverage for
597: ^file::exec[]
598:
599: 2017-12-07 moko
600:
601: * tests/: 174.html, 388-sql.html, 389.html,
602: results/388-sql.processed, results/389.processed,
603: results/174.processed: more coverage tests
604:
605: * src/classes/math.C: exception text actualized
606:
607: 2017-12-06 moko
608:
609: * tests/388-sql.html: $SQL can be here
610:
611: * tests/results/auto.p: $SQL not required here
612:
613: * tests/: 388-sql.html, 389.html, Makefile,
614: results/388-sql.processed, results/389.processed, results/auto.p:
615: code coverage tests for sql (using sqlite) and int/double/bool
616: added (related to feature #1125)
617:
618: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
619: lib/json/json.vcproj, lib/md5/md5.vcproj,
620: lib/memcached/memcached.vcproj, lib/punycode/punycode.vcproj,
621: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
622: targets/apache/ApacheModuleParser3Core.vcproj,
623: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
624: types/types.vcproj: gc\include no longer required
625:
626: * src/lib/: cord/cord.vcproj, gd/gd.vcproj: gc\include no longer
627: required
628:
629: * src/: classes/Makefile.am, classes/table.C,
630: include/pa_config_includes.h, include/pa_string.h,
631: lib/cord/Makefile.am, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
632: lib/gd/Makefile.am, lib/json/Makefile.am, lib/sdbm/Makefile.am,
633: lib/smtp/Makefile.am, main/Makefile.am, main/untaint.C,
634: targets/apache/Makefile.am, targets/cgi/Makefile.am,
635: types/Makefile.am: to be sure that our version of gc.h/cord.h is
636: used, we now include it directly
637:
638: 2017-12-04 moko
639:
640: * src/lib/: gd/gd.vcproj, md5/md5.vcproj,
641: memcached/memcached.vcproj, punycode/punycode.vcproj,
642: sdbm/sdbm.vcproj, smtp/smtp.vcproj: includes unified, gc added
643: where required
644:
645: * src/: classes/memory.C, include/pa_config_includes.h: GC_DEBUG
646: now can be used to trace memory allocations
647:
648: * src/: classes/table.C, include/pa_config_includes.h,
649: include/pa_memory.h, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
650: main/pa_globals.C: PA_DEBUG_DISABLE_GC works again, pa_gc_*
651: method removes, libcord also can work without libgc
652:
653: * src/classes/json.C: pa_gc_malloc_atomic should not be used
654:
655: 2017-11-29 moko
656:
657: * src/classes/curl.C: no exception if some of ^curl:info[] elements
658: are not present (related to feature #1173)
659:
660: * tests/346-curl.html: test updated to test curl content-length bug
661: (related to feature #1173)
662:
663: * tests/results/346-curl.processed: more test for content-length
664: curl bug (related to feature #1173)
665:
666: * tests/results/346-curl.processed: test results updated after
667: #1173 implemented
668:
669: 2017-11-28 moko
670:
671: * src/classes/curl.C: another libcurl Content-length bug walkaround
672: (related to feature #1173)
673:
674: 2017-11-27 moko
675:
676: * src/: classes/curl.C, lib/curl/curl.h: ^curl:options
677: $.http_version[version string] added (implements feature #1173),
678: CURLOPT_POSTFIELDSIZE is set to 0 now only for old versions,
679: where $post(true) bug existed.
680:
681: 2017-11-18 moko
682:
683: * src/include/pa_memory.h: warning war (related to feature #1170)
684:
685: * src/include/pa_pool.h: RedHat 7.3 compatibility fixed (related to
686: feature #1170)
687:
688: 2017-11-17 moko
689:
690: * src/include/pa_memory.h: CHECK_DELETE_USAGE define added as
691: std::basic_stringstream used in ^table.csv-string[] is compatible
692: with delete usage check only under Debian 9 (related to feature
693: #1170)
694:
695: 2017-11-16 moko
696:
697: * src/: classes/curl.C, classes/hash.C, classes/json.C,
698: classes/table.C, classes/xdoc.C, include/pa_config_includes.h,
699: include/pa_hash.h, include/pa_memory.h, include/pa_pool.h,
700: main/pa_charset.C, main/pa_memory.C, main/pa_xml_io.C,
701: sql/pa_sql_driver.h, types/pa_value.h, types/pa_vmemcached.C,
702: types/pa_vxdoc.h: regular new/delete no longer used in our code,
703: stubs defend from accidental use (implements feature #1170)
704:
705: 2017-06-24 moko
706:
707: * configure.ac: minor fix: thanks to alx@
708:
1.115 moko 709: 2017-05-29 moko
710:
711: * src/types/pa_vmail.C: mail headers are now correctly truncated -
712: MAX_CHARS_IN_HEADER_LINE value fixed, mail_header_utf8_substring
713: added to avoid cutting of UTF-8 chars (fixed bug #123)
714:
715: * src/main/untaint.C: as in case of <space>=?UTF-8?Q?= space is
716: ignored, =?UTF-8?Q?= should start in case of leading space
717: (related to bug #123)
718:
719: * buildall: echo -n -> printf for OS X. :)
720:
721: 2017-05-25 moko
722:
723: * tests/: 288.html, results/288.processed: test updated afted
724: setting $o.prop without setter exception removed (related to
725: feature #1157)
726:
727: * src/types/pa_vclass.C: no more "this property has no setter
728: method" when setting $o.prop without setter (implements feature
729: #1157)
730:
731: * buildall: echo \c -> echo -n for FreeBSD
732:
733: * configure, configure.ac, src/include/pa_config_auto.h.in,
734: src/types/pa_vdouble.h: isfinite now checked in configure
735:
736: * compile, config.guess, config.sub, depcomp, install-sh, missing:
737: upgraded to automake 1.15
738:
739: 2017-05-23 moko
740:
741: * src/types/pa_vdouble.h: finite returned where isfinite not
742: defined
743:
744: 2017-05-22 moko
745:
746: * buildall: gc-7.6.0 USE_LIBC_PRIVATES allready defined warning war
747:
748: * buildall: extern CFLAGS setting support
749:
750: * src/types/pa_vdouble.h: warning war: finine() -> isfinite() 4OSX
751:
752: * buildall: http -> https
753:
754: * buildall: gc-7.2f -> gc-7.6.0
755:
756: 2017-05-20 moko
757:
758: * buildall: https, pcre, xml, xslt updated to current versions
759: (related to feature #1136)
760:
761: 2017-05-19 moko
762:
763: * tests/097.html: after parser.ru moved to https
764:
765: 2017-05-17 moko
766:
767: * tests/results/: 175.processed, 372.processed: tests resuls
768: updated after lintian spelling typos fixed (related to bug #1156)
769:
770: * src/: classes/file.C, classes/hash.C, classes/reflection.C,
771: classes/string.C, classes/table.C, main/pa_charset.C,
772: main/pa_common.C, main/pa_http.C, types/pa_vimage.h,
773: types/pa_vmail.C, types/pa_vxdoc.h: fixed spelling typos from
774: lintian reported by Sergey B Kirpichev (fixes bug #1156)
775:
776: * tests/results/096.processed: +XMP
777:
778: * tests/: 096.html, 096_dir/188.jpg: ^image::measure[] $.exif(true)
779: $.xmp(true) options tested (test for feature #1154)
780:
781: * src/classes/image.C: ^image:measure[] options $.exif(false)
782: $.xmp(false) $.xmp-charset[UTF-8] implemened. exif no longer
783: fetched by default! (implements feature #1154)
784:
785: 2017-05-16 moko
786:
787: * tests/: 256.html, results/256.processed: ^json:string[$image] now
788: allowed (related to feature #1154)
789:
790: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
791: initial XMP implementation - without options and transcode
792: (related to feature #1154)
793:
794: 2017-05-12 moko
795:
796: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
797: image: exif moved to ffields, skipped in ^image.html[] where
798: iterators now used (preparation for feature #1154)
799:
800: 2017-05-05 moko
801:
802: * tests/: 387.html, 387_dir/A.p, 387_dir/B.p,
803: results/387.processed: test for circular class inheritance check
804: added (related to bug #1150)
805:
806: * src/types/pa_vstateless_class.C: circular class inheritance check
807: added (fixes endless add_derived bug #1150)
808:
809: 2017-05-04 moko
810:
811: * tests/: 386.html, results/386.processed: test for
812: $table.value(number) added (related to feature #1152)
813:
814: * src/types/pa_vtable.C: table put_element: column value must be
815: string - > column value must be string compatible to allow
816: $t.value(1) (implements feature #1152)
817:
818: 2017-05-03 moko
819:
820: * src/main/pa_request.C: $use[$method] is not possible, reverting
821: (related to feature #1151)
822:
823: * tests/: 386.html, 386.p, results/386.processed: $use[$method] is
824: not possible, removing test (related to feature #1151)
825:
826: * src/: main/pa_request.C, types/pa_vstateless_class.h:
827: get_element_method added and used to allow $use[$method] and
828: $autouse[$method] (implements feature 1151)
829:
830: * tests/: 386.html, 386.p, results/386.processed: test for @use in
831: variable added (related to feature #1151)
832:
833: * tests/results/226.processed: actualized after ^try-catch used
834:
835: * tests/: 226.html, 385.html, results/385.processed: test for
836: @autouse in variable added
837:
838: * configure.ac, src/include/pa_version.h: 3.4.5 -> 3.4.6b
839:
1.114 moko 840: 2017-02-27 moko
841:
842: * configure.ac, src/include/pa_version.h: 3.4.5rc -> 3.4.5
843:
1.113 moko 844: 2017-02-20 moko
845:
846: * operators.txt: actualization + beauty
847:
848: 2017-02-16 moko
849:
850: * tests/: 384.html, results/384.processed: test for
851: ^reflection:mixin[; $.name[] ] option added (related to feature
852: #1089)
853:
854: * tests/: 384.html, results/384.processed: test for
855: ^reflection:mixin[] added (related to feature #1089)
856:
857: * src/types/pa_value.h: warning war: virtual ~Value() added
858:
1.112 moko 859: 2017-02-15 moko
860:
861: * src/include/pa_hash.h: compilation without HASH_CODE_CACHING
862: fixed
863:
864: * tests/: 320.html, results/320.processed: $.reverse(true/false)
865: test added (related to feature #1069)
866:
867: * src/: classes/reflection.C, types/pa_vstateless_class.h:
868: compilation without HASH_ORDER fixed
869:
870: * src/: classes/reflection.C, include/pa_hash.h:
871: $.reverse(true/false) added to ^reflection:methods[] (related to
872: feature #1069)
873:
874: 2017-02-14 moko
875:
876: * tests/: 152.html, results/152.processed: test for $._default hash
877: added (related to bug #1131)
878:
879: * tests/: 277.html, results/277.processed: test for hash with only
880: $._default is now defined (related to bug #1131)
881:
882: * src/types/pa_vhash.h: hash with only $._default is now defined
883: (fixed bug #1131)
884:
885: 2017-02-13 moko
886:
887: * tests/cat-windows.sh: cat-windows added (cygwin required)
888:
889: * tests/: 171.html, 264.html, 286.html, 370.html,
890: results/320.processed, results/375.processed, results/auto.p:
891: cat-windows.sh support added
892:
893: * tests/375.html: Windows support
894:
895: * tests/270.html: documented
896:
897: * tests/: 270.html, run_parser.cmd: bugfix: PATH_INFO has slashes
898: (not backslashes) even under Windows (broke test 270)
899:
900: 2017-02-12 moko
901:
902: * tests/: descript.ion, todo.txt: cleanup
903:
904: 2017-02-09 moko
905:
906: * tests/: 253.html, 255.html, 275.html, 347-curl.html,
907: run_tests.cmd: Windows compatibility
908:
909: * tests/make_tests.cmd: removed as test can't be passed - TZ is set
910: incorrectly (GMT) if parser is called from cygwin
911:
1.111 moko 912: 2017-02-08 moko
913:
1.112 moko 914: * operators.txt: actualization 15% completed
915:
916: * operators.txt: cp1251 -> utf-8
917:
918: * NEWS, README: minor update
919:
920: * src/include/pa_config_includes.h: warning war continues
921:
922: * src/: include/pa_config_includes.h, include/pa_memory.h,
923: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
924: targets/isapi/parser3isapi.C, types/pa_vdouble.h: warning war:
925: gcc 6.x issues fixed
926:
1.111 moko 927: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
928: classes/classes.h, classes/curl.C, classes/date.C,
929: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
930: classes/hashfile.C, classes/image.C, classes/inet.C,
931: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
932: classes/memcached.C, classes/memory.C, classes/op.C,
933: classes/reflection.C, classes/regex.C, classes/response.C,
934: classes/string.C, classes/table.C, classes/void.C,
935: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
936: include/pa_array.h, include/pa_cache_managers.h,
937: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
938: include/pa_config_fixed.h, include/pa_config_includes.h,
939: include/pa_dictionary.h, include/pa_dir.h,
940: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
941: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
942: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
943: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
944: include/pa_request_charsets.h, include/pa_request_info.h,
945: include/pa_sapi.h, include/pa_socks.h,
946: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
947: include/pa_stack.h, include/pa_string.h,
948: include/pa_stylesheet_connection.h,
949: include/pa_stylesheet_manager.h, include/pa_symbols.h,
950: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
951: include/pa_uue.h, include/pa_xml_exception.h,
952: include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
953: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
954: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
955: lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
956: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
957: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
958: main/compile.tab.C, main/compile.y, main/compile_tools.C,
959: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
960: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
961: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
962: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
963: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
964: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
965: main/pa_string.C, main/pa_stylesheet_connection.C,
966: main/pa_stylesheet_manager.C, main/pa_symbols.C, main/pa_table.C,
967: main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
968: main/untaint.C, sql/pa_sql_driver.h,
969: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
970: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
971: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
972: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
973: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
974: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
975: types/pa_vcaller_wrapper.h, types/pa_vclass.C, types/pa_vclass.h,
976: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
977: types/pa_vcookie.h, types/pa_vdate.C, types/pa_vdate.h,
978: types/pa_vdouble.h, types/pa_venv.C, types/pa_venv.h,
979: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
980: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
981: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
982: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
983: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
984: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemcached.C,
985: types/pa_vmemcached.h, types/pa_vmemory.h,
986: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
987: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
988: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
989: types/pa_vresponse.C, types/pa_vresponse.h,
990: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
991: types/pa_vstateless_object.h, types/pa_vstatus.C,
992: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
993: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
994: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
995: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
996: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year:
997: 2015->2017
998:
1.110 moko 999: 2017-02-07 moko
1000:
1001: * configure.ac, src/include/pa_version.h: 3.4.5b -> 3.4.5rc
1002:
1003: 2017-02-06 moko
1004:
1005: * src/main/pa_common.C: minor fixes, whitespace
1006:
1007: * src/: classes/curl.C, classes/file.C, classes/image.C,
1008: include/pa_common.h, include/pa_dir.h, main/pa_common.C,
1009: main/pa_dir.C, main/pa_exec.C: wchar filenames API under Windows
1010: now used (implements feature #1081)
1011:
1012: * src/: types/pa_vcookie.C, main/pa_charset.C: cleanup
1013:
1014: 2017-02-01 moko
1015:
1016: * src/include/pa_request.h: cleanup
1017:
1018: 2017-01-30 moko
1019:
1020: * src/main/pa_request.C: file_lock_wait_limit -> lock_wait_timeout
1021:
1022: 2017-01-29 moko
1023:
1024: * tests/: 383.html, results/383.processed: test for
1025: ^reflection:stack[] added (related to feature #1052)
1026:
1027: * src/classes/reflection.C: else added
1028:
1029: * src/: include/pa_os.h, main/pa_os.C, main/pa_request.C:
1030: $.max_file_lock_wait added (implements feature #1128)
1031:
1032: 2017-01-28 moko
1033:
1034: * tests/: 379-curl.html, results/379-curl.processed: curl empty
1035: body and other cases tests added (related to featue #1014)
1036:
1037: * src/classes/curl.C: bug if response is empty fixed (related to
1038: feature #1014)
1039:
1040: 2017-01-27 moko
1041:
1042: * src/: classes/json.C, classes/reflection.C, include/pa_request.h,
1043: main/execute.C, types/pa_vmethod_frame.h: ^reflection:stack[]
1044: added (implements feature #1052)
1045:
1046: 2017-01-25 moko
1047:
1048: * tests/: 382.html, results/382.processed: @GET_DEFAULT returning
1049: method test added
1050:
1051: 2017-01-23 moko
1052:
1053: * src/classes/reflection.C: optimization: options->get replaced by
1054: hash iterator
1055:
1056: * tests/: 381.html, results/381.processed: now -> fixed date
1057:
1058: * src/main/pa_request.C: warning war
1059:
1060: * src/targets/cgi/parser3.vcproj: Stack size increased from 2Mb to
1061: 5Mb (fixes bug #1058)
1062:
1063: * src/classes/curl.C: warning war
1064:
1065: * tests/: 381.html, results/381.processed: tests for ^json:string
1066: $.one-line(true) option added (related to feature #1124)
1067:
1068: * src/: classes/json.C, types/pa_value.h: $json-string
1069: $.one-line(true|false) options is now supported (implements
1070: feature #1124)
1071:
1072: * tests/: 380.html, results/380.processed: test for modified
1073: $.max_file_size added (related to bug #1014)
1074:
1075: * tests/: 379.html, results/auto.p: tests for rewritten http file
1076: load added (related to bug #1014)
1077:
1078: * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
1079: main/pa_common.C, main/pa_http.C: check_file_size added and used
1080: in curl / file load from disk and http, http file load rewritten
1081: (related to bug #1014)
1082:
1083: 2017-01-18 moko
1084:
1085: * tests/: 378.html, results/378.processed: tests for ^result[]
1086: added (related to feature #66)
1087:
1088: * src/: classes/op.C, include/pa_request.h: ^return[] can't be
1089: Method::CO_WITHOUT_FRAME as frame still added in expression
1090: (related to feature #66)
1091:
1092: 2017-01-17 moko
1093:
1094: * tests/: 377.html, results/377.processed: test for different
1095: combinations of breaks in body and delimiter (related to bug
1096: #1077)
1097:
1098: * tests/: 376.html, results/376.processed: many ^break[] tests
1099: added (related to bug #1077)
1100:
1101: * src/types/pa_vmethod_frame.C: "break is not allowed in expression
1102: passed to native method" exception added to avoid bugs due to
1103: WRITE_EXPR_RESULT skipped and native methods execution continues
1104: after ^break[] (related to bug #1077)
1105:
1106: 2017-01-14 moko
1107:
1108: * tests/: 330.html, results/330.processed: test results updated
1109: after ^break[] bugs where fixed (related to bug #1077)
1110:
1111: * tests/: 329.html, results/329.processed: test results updated
1112: after ^break[] bugs where fixed (related to bug #1077)
1113:
1114: * tests/results/320.processed: ^return[] added
1115:
1116: 2017-01-13 moko
1117:
1118: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
1119: classes/table.C, include/pa_request.h, main/execute.C,
1120: main/pa_request.C, targets/cgi/parser3.C,
1121: types/pa_vmethod_frame.C: Request::SKIP_INTERRUPTED,
1122: Request::SKIP_RETURN added and implemented, Request::SKIP_* now
1123: checked after each possible process/execute call (fixes bug
1124: #1077)
1125:
1126: 2016-12-29 moko
1127:
1128: * src/main/pa_common.C: warning war
1129:
1130: * src/: classes/math.C, include/pa_random.h, include/pa_request.h,
1131: include/pa_types.h, main/pa_request.C, main/pa_string.C:
1132: pa_file_size_limit added, ^math:random fixed for upper limit and
1133: limits more then 0x7FFFFFFF, limits now declared in pa_types.h
1134: (related to feature #1014)
1135:
1136: * src/: classes/curl.C, classes/file.C, include/pa_common.h,
1137: main/pa_common.C, main/pa_dir.C, main/pa_exec.C: stat -> pa_stat
1138: (related to feature #1014)
1139:
1140: 2016-12-28 moko
1141:
1142: * src/: classes/file.C, main/pa_request.C, main/pa_string.C: VS2003
1143: warning war
1144:
1145: 2016-12-26 moko
1146:
1147: * tests/: 341.html, results/341.processed: test for
1148: ^table.hash[id;;$.type[string]] added (related to feature #1057)
1149:
1150: * src/classes/table.C: ^table.hash[id;;$.type[string]] support fix
1151: (related to feature #1057)
1152:
1153: * src/types/pa_vdate.C: warning war continues...
1154:
1155: * src/: classes/date.C, classes/image.C, classes/table.C,
1156: include/pa_config_includes.h, types/pa_vfile.C: warning war
1157:
1158: * src/lib/gd/gifio.C: warning war / cleanup
1159:
1160: * src/lib/json/pa_json.C: warning war
1161:
1162: * src/classes/hash.C: warning war
1163:
1164: * src/types/pa_vfile.C: warning war
1165:
1166: * src/: classes/hash.C, include/pa_common.h, types/pa_vcookie.C:
1167: -Wall warning war continues
1168:
1169: * configure.ac: --with-build-warnings actualized
1170:
1171: 2016-12-25 moko
1172:
1173: * src/main/pa_exec.C: -wAll warning war
1174:
1175: * src/: types/pa_vform.C, types/pa_vrequest.C, main/pa_common.C:
1176: -wAll warning war
1177:
1178: * src/: include/pa_common.h, include/pa_sapi.h,
1179: types/pa_junction.h, types/pa_method.h, types/pa_value.h,
1180: types/pa_vdate.C, types/pa_vstateless_class.h, types/pa_vxdoc.h:
1181: -wAll warning war
1182:
1183: 2016-12-23 moko
1184:
1185: * src/lib/ltdl/Makefile.am: extra dist added
1186:
1187: * tests/results/344.processed: test result updated after $file.text
1188: prefetched in ^hash::create[$file] (related to feature #1075)
1189:
1190: * src/types/: pa_vfile.C, pa_vfile.h: $file.text prefetched in
1191: ^hash::create[$file] (related to feature #1075)
1192:
1193: 2016-12-22 moko
1194:
1195: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
1196: main/pa_request.C, main/pa_stylesheet_connection.C,
1197: types/pa_vfile.C: file_stat now return 64-bit size (implements
1198: #1014 under 32-bit unix versions)
1199:
1200: 2016-12-21 moko
1201:
1202: * tests/: 375.html, results/375.processed: test for exec returning
1203: stated file added (related to feature #1119)
1204:
1205: * src/classes/file.C: load should not return file with null body
1206: (fixes bug #1119)
1207:
1208: 2016-12-14 moko
1209:
1210: * tests/: 374.html, results/374.processed: test for $method.name
1211: added (related to feature #1117) plus method returning junction
1212: test
1213:
1214: 2016-12-13 moko
1215:
1216: * src/: include/pa_symbols.h, main/pa_symbols.C,
1217: types/pa_vjunction.C, types/pa_vjunction.h: $method.name added
1218: (implements feature #1117)
1219:
1220: * src/: types/pa_vform.C, include/pa_request_info.h: now only GET,
1221: HEAD and TRACE can't have body (implements feature #1116)
1222:
1223: 2016-12-09 moko
1224:
1225: * tests/: 373.html, results/373.processed: tests for
1226: ^reflection:tainting added (related to feature #1098)
1227:
1228: * src/classes/reflection.C: ^reflection:tainting arguments order
1229: change (related to feature #1098)
1230:
1231: 2016-12-06 moko
1232:
1233: * src/: classes/reflection.C, include/pa_string.h,
1234: main/pa_string.C: ^reflection:tainting[$string] added (implements
1235: feature #1098)
1236:
1237: 2016-12-05 moko
1238:
1239: * src/types/pa_vdouble.h: negative zero (-0) now converted to 0
1240: (fixes bug #1114)
1241:
1242: 2016-12-04 moko
1243:
1244: * tests/: 206.html, results/206.processed: negative zero (0/-1)
1245: check added
1246:
1247: 2016-12-03 moko
1248:
1249: * tests/: 346-curl.html, results/346-curl.processed: test modified
1250: to test value.as_hash() usage
1251:
1252: * src/classes/curl.C: value.as_hash() used for correct hash
1253: processing
1254:
1255: * src/classes/reflection.C: exceptions texts fixes
1256:
1257: 2016-12-02 moko
1258:
1259: * tests/: 372.html, results/372.processed: tests for
1260: ^reflection:create[ $.class[name] $.constructor[name]
1261: $.arguments[ $.1[param1] $.2[param2] ... ] ] added (related to
1262: feature #1094)
1263:
1264: * src/types/pa_vmethod_frame.h: comment added: params should be
1265: declared outside of *_FRAME_ACTION as MethodParams destructor
1266: will be called in ~VNativeMethodFrame
1267:
1268: * src/classes/reflection.C: ^reflection:create[ $.arguments[ ... ]
1269: ] minor fix
1270:
1271: * src/: classes/reflection.C, types/pa_value.C, types/pa_value.h,
1272: types/pa_vmethod_frame.C: ^reflection:create[ $.class[name]
1273: $.constructor[name] $.arguments[ $.1[param1] $.2[param2] ... ] ]
1274: now supported (implements feature #1094) value::as_hash added
1275: (and should be used everywhere)
1276:
1277: * src/classes/reflection.C: cleanup
1278:
1279: 2016-12-01 moko
1280:
1281: * tests/: 356.html, results/356.processed: test for method
1282: junctions class name added to the resulting hash added (related
1283: to feature #1068)
1284:
1285: * src/classes/reflection.C: for method junctions class name added
1286: to the resulting hash (related to feature #1068)
1287:
1288: 2016-11-30 moko
1289:
1290: * src/types/: pa_vhashfile.C, pa_vhashfile.h: file_name included in
1291: exception (related to bug #1113)
1292:
1293: * src/types/pa_vhashfile.C: whitespace
1294:
1295: * src/main/pa_os.C: errno now returned as it should (fixes bug
1296: #1113)
1297:
1298: * tests/results/: 175.processed, 192.processed, 224.processed,
1299: 229.processed, 239.processed, 244.processed, 246.processed,
1300: 314.processed, 352.processed: tests results updated after method
1301: call exceptions improved as method now keeps its name
1302:
1303: * src/: classes/reflection.C, main/execute.C, types/pa_value.C,
1304: types/pa_vmethod_frame.h: method call exceptions improved as
1305: method now keeps its name
1306:
1307: * tests/: 224.html, 239.html, results/224.processed,
1308: results/239.processed: tests and tests results updated after
1309: Request::construct exception changed
1310:
1311: * src/: classes/reflection.C, main/execute.C: Request::construct
1312: exception optimized
1313:
1314: * tests/: 371.html, results/371.processed: test for
1315: WWrapper.get_element call in $.name.key[value] code added
1316: (related to feature #1091)
1317:
1318: * src/types/pa_wwrapper.h: WWrapper.get_element returned, as used
1319: in $.name.key[value] code (related to feature #1091)
1320:
1321: 2016-11-29 moko
1322:
1323: * src/classes/op.C: VS warning war
1324:
1325: * src/types/: pa_vmethod_frame.h, pa_wcontext.h: VS warning war:
1326: C4239: nonstandard extension used : 'return' : conversion from
1327: 'Value' to 'Value &' (related to feature #1020)
1328:
1329: * src/: main/execute.C, types/pa_vmethod_frame.h,
1330: types/pa_wcontext.h: VS warning war: C4239: nonstandard extension
1331: used : 'return' : conversion from 'Value' to 'Value &' (related
1332: to feature #1020)
1333:
1334: * src/main/execute.C: VS warning war
1335:
1336: * src/targets/cgi/parser3.C: VS compatibility fix
1337:
1338: * src/include/pa_request.h: VS warning war
1339:
1340: * tests/: 370.html, results/370.processed: test for ^file::exec[
1341: ... $.stdin[$binary_file] ] added (related to bug #1044)
1342:
1343: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
1344: include/pa_string.h, main/pa_exec.C: pa_exec now supports
1345: $.stdin[$binary_file] (fixes bug #1044)
1346:
1347: 2016-11-28 moko
1348:
1349: * src/main/pa_exec.C: whitespace
1350:
1351: * src/main/pa_request.C: whitespace
1352:
1353: * tests/: 369.html, results/369.processed: test for
1354: $response:status usage added (related to feature #1099)
1355:
1356: * src/targets/cgi/parser3.C: HTTP response code used as exit status
1357: if < 100 (implements feature #1099)
1358:
1359: * src/targets/cgi/parser3.C: whitespace
1360:
1361: * src/targets/cgi/parser3.C: whitespace
1362:
1363: * tests/: 368.html, results/368.processed: test updated after
1364: ^reflection:filename[$method] added (related to feature #1053)
1365:
1366: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
1367: main/compile.y, main/execute.C, main/pa_request.C,
1368: types/pa_vclass.h: filename -> filespec,
1369: ^reflection:filename[$method] added (related to feature #1053)
1370:
1371: 2016-11-27 moko
1372:
1373: * tests/: 368.html, results/368.processed: test for
1374: reflection:filename[$class or object] added (related to feature
1375: #1053)
1376:
1377: * src/: classes/reflection.C, main/compile.y, types/pa_vclass.h,
1378: types/pa_vstateless_class.h: ^reflection:filename[$class or
1379: object] added (implements feature #1053)
1380:
1381: 2016-11-26 moko
1382:
1383: * src/: include/pa_request_info.h,
1384: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
1385: remove_absolute_uri -> strip_absolute_uri
1386:
1387: 2016-11-25 moko
1388:
1389: * src/: include/pa_request_info.h,
1390: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
1391: request_info.remove_absolute_uri added to remove possible
1392: http://site.name/ from $request:uri (implements feature #1112)
1393:
1394: 2016-11-24 moko
1395:
1396: * tests/: 367-curl.html, results/367-curl.processed: test for
1397: previous request headers clearing after redirect added (related
1398: to bug #1109)
1399:
1400: * src/: classes/curl.C, include/pa_array.h, include/pa_http.h:
1401: response headers from previous requests are now cleared, only
1402: last request headers are collected (fixes bug #1109)
1403:
1404: * tests/results/: 266.processed, 321.processed, 356.processed:
1405: tests results updated as method name now added to the resulting
1406: hash for new syntax only (Imp1 compatimility fixed, related to
1407: feature #1068)
1408:
1409: * src/classes/reflection.C: method name now added to the resulting
1410: hash for new syntax only (Imp1 compatimility fixed, related to
1411: feature #1068)
1412:
1413: * tests/results/366.processed: test for native and parser
1414: implementation of ^use[] logic (related to feature #1074)
1415:
1416: * tests/: 366.html, 366_dir/test-duplicate.p, 366_dir/test.p: test
1417: for native and parser implementation of ^use[] logic (related to
1418: feature #1074)
1419:
1420: 2016-11-23 moko
1421:
1422: * src/: classes/op.C, include/pa_request.h, main/compile.y,
1423: main/pa_request.C: @USE file now implemented as ^use[file;
1424: $.origin[origin_file] ] (implements feature #1074)
1425:
1.109 moko 1426: 2016-11-21 moko
1427:
1.110 moko 1428: * tests/: 365.html, results/365.processed: test for $caller bugs in
1429: 3.4.4 and $caller.method now tested (related to feature #1110)
1430:
1431: * tests/: 364.html, results/364.processed: $caller usage in
1432: different contexts now tested (related to feature #1110)
1433:
1434: * src/types/types.vcproj: +pa_vcaller_wrapper.h
1435:
1436: * src/types/Makefile.am: pa_vcaller_wrapper.h added
1437:
1.109 moko 1438: * src/: include/pa_symbols.h, main/pa_symbols.C, types/pa_method.h,
1439: types/pa_vcaller_wrapper.h, types/pa_vmethod_frame.C,
1440: types/pa_vmethod_frame.h: redesign: VCallerWrapper added and
1441: used (implements feature #1110)
1442:
1443: 2016-11-20 moko
1444:
1445: * src/types/pa_vdouble.h: whitespace
1446:
1447: 2016-11-11 moko
1448:
1449: * tests/: 363.html, results/363.processed: more tests for feature
1450: #1091 (how parser methods work in expression context)
1451:
1452: * src/: include/pa_request.h, types/pa_vmethod_frame.h: in
1453: expressions strings are now written as strings, not values by
1454: write_as_string (related to feature #1091)
1455:
1456: * src/classes/op.C: to make more correct behavour in expression
1457: context
1458:
1459: 2016-11-07 moko
1460:
1461: * tests/: 362.html, results/362.processed: test for
1462: xsltParseStylesheetDoc caching as xsl modification after it added
1463: (related to bug #1108)
1464:
1465: * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltParseStylesheetDoc
1466: result now cached as xdoc is modified after it (fixes bug #1108)
1467:
1468: 2016-11-06 moko
1469:
1470: * src/types/pa_vxdoc.h: whitespace
1471:
1472: 2016-11-05 moko
1473:
1474: * src/types/pa_vmethod_frame.h: cleanup
1475:
1476: 2016-11-03 moko
1477:
1478: * tests/results/244.processed: more correct exception after method
1479: frames separation
1480:
1481: * src/types/pa_vmethod_frame.h: minor optimizaion
1482:
1483: * src/types/pa_method.h: optimization: params_count added
1484:
1485: * src/: classes/json.C, classes/op.C, classes/reflection.C,
1486: include/pa_request.h, main/execute.C, main/pa_request.C,
1487: types/pa_value.C, types/pa_vmethod_frame.C,
1488: types/pa_vmethod_frame.h, types/pa_vobject.C: Optimization:
1489: VMethodFrame now divided into VNativeMethodFrame,
1490: VParserMethodFrame, VLocalParserMethodFrame; METHOD_FRAME_ACTION,
1491: EXPRESSION_FRAME_ACTION, CONSTRUCTOR_FRAME_ACTION defines added
1492: and used (related to feature #1104)
1493:
1494: 2016-11-02 moko
1495:
1496: * src/: classes/bool.C, classes/curl.C, classes/date.C,
1497: classes/double.C, classes/file.C, classes/hash.C,
1498: classes/hashfile.C, classes/image.C, classes/inet.C,
1499: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
1500: classes/memcached.C, classes/op.C, classes/reflection.C,
1501: classes/regex.C, classes/string.C, classes/table.C,
1502: classes/xdoc.C, classes/xnode.C, include/pa_request.h,
1503: main/execute.C: cleanup: r.write_pass_lang, r.write_no_lang ->
1504: r.write (implements feature #1091)
1505:
1506: * src/main/execute.C: cleanup (related to feature #1104)
1507:
1508: * src/: include/pa_request.h, main/execute.C,
1509: types/pa_vmethod_frame.h, types/pa_wcontext.h: VExpressionFrame
1510: added, in_expression removed (implements feature #1104)
1511:
1512: 2016-10-31 moko
1513:
1514: * src/types/pa_value.C: whitespace
1515:
1516: 2016-10-28 moko
1517:
1518: * tests/results/244.processed: updated after error reporting fixed
1519: in pa_wcontext.C
1520:
1521: * src/types/pa_wcontext.C: error reporting fixed
1522:
1523: * src/types/pa_wcontext.h: whitespace
1524:
1525: * src/classes/image.C: not fully readed entries are no longer
1526: processed (fixes bug #1106)
1527:
1528: 2016-10-26 moko
1529:
1530: * src/classes/image.C: whitespace
1531:
1532: * src/: include/pa_request.h, include/pa_string.h, main/untaint.C,
1533: types/pa_vmail.C, types/pa_vmethod_frame.h, types/pa_wcontext.h,
1534: types/pa_wwrapper.h: optimization: L_PASS_APPENDED removed as no
1535: longer required (related to feature #1091)
1536:
1537: * tests/results/: 264.processed, 350.processed: test results update
1538: reverted (whitespace optimization) after write_no_lang removed :)
1539: (related to feature #1091)
1540:
1541: * src/: classes/file.C, classes/hash.C, classes/op.C,
1542: classes/string.C, classes/table.C, classes/void.C,
1543: classes/xdoc.C, include/pa_request.h, main/pa_xml_io.C,
1544: types/pa_vmail.C: Temp_lang removed, write_no_lang now almost
1545: equal write_pass_lang (related to feature #1091)
1546:
1547: * tests/results/: 264.processed, 350.processed: test results
1548: updated (whitespace optimization) after write_assign_lang removed
1549: (related to feature #1091)
1550:
1551: * tests/: 361.html, results/361.processed: test for non-string
1552: ^untaint added (related to feature #1091)
1553:
1554: * src/: classes/curl.C, classes/date.C, classes/file.C,
1555: classes/hash.C, classes/op.C, classes/string.C,
1556: include/pa_request.h, main/execute.C: optimization:
1557: write_assign_lang removed as not required (first part of feature
1558: #1091 implementation)
1559:
1.108 moko 1560: 2016-10-12 moko
1561:
1562: * tests/: 360.html, results/360.processed: more test code (related
1563: to feature #1104)
1564:
1565: * src/: classes/op.C, classes/reflection.C, include/pa_opcode.h,
1566: include/pa_request.h, main/compile.y, main/execute.C: opcode
1567: OP_PREPARE_TO_EXPRESSION removed as not required, optimized
1568: WContext is next task (implements feature #1104)
1569:
1570: * src/types/pa_method.h: more detailed comment for CO_WITHOUT_FRAME
1571: / CO_WITHOUT_WCONTEXT
1572:
1573: * tests/: 360.html, results/360.processed: test for in expression
1574: state (related to feature #1104)
1575:
1576: 2016-10-11 moko
1577:
1578: * src/main/execute.C: compilation without OPTIMIZE_CALL fixed
1579:
1580: * src/classes/op.C: default value removed from initializer
1581:
1582: * src/types/pa_vmemcached.C: FreeBSD 11 warning war
1583:
1584: * src/types/pa_vmethod_frame.h: FreeBSD 11 warning war
1585:
1586: 2016-10-10 moko
1587:
1588: * tests/results/auto.p: test updated adter $RECOURSION_LIMIT,
1589: $LOOP_LIMIT -> $LIMITS[ $.max_recoursion, $.max_loop ] (related
1590: to feature #42)
1591:
1592: * src/main/pa_request.C: $RECOURSION_LIMIT, $LOOP_LIMIT ->
1593: $LIMITS[ $.max_recoursion, $.max_loop ] (related to feature #42)
1594:
1595: 2016-10-08 moko
1596:
1597: * src/classes/double.C: whitespace
1598:
1599: 2016-10-07 moko
1600:
1601: * src/types/pa_vmethod_frame.h: reorder
1602:
1603: 2016-10-06 moko
1604:
1605: * src/classes/date.C: typo
1606:
1607: * src/types/pa_vmethod_frame.h: whitespace + cleanup
1608:
1609: * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
1610: classes/op.C, classes/reflection.C, types/pa_vmethod_frame.C,
1611: types/pa_vmethod_frame.h: params.get now returns Value&, not
1612: Value*
1613:
1614: * src/types/pa_vmethod_frame.C: params.get should return Value&.
1615:
1616: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: get_as
1617: removed; first as_* code rewrite
1618:
1619: 2016-10-05 moko
1620:
1621: * src/include/pa_request.h: whitespace
1622:
1623: * tests/: 359.html, results/359.processed: test for VCodeFrame and
1624: intercept_string added (related to feature #1097)
1625:
1626: * src/: classes/image.C, classes/op.C, classes/table.C,
1627: include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
1628: optimization: intercept_string removed (implements feature #1097)
1629:
1630: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: whitespace
1631:
1632: * src/types/: pa_vcode_frame.h, pa_wwrapper.h: get_element removed
1633: from VCodeFrame and WWrapper as not required
1634:
1635: 2016-10-04 moko
1636:
1637: * src/: classes/curl.C, classes/date.C, classes/double.C,
1638: classes/file.C, classes/hash.C, classes/image.C, classes/inet.C,
1639: classes/int.C, classes/json.C, classes/op.C,
1640: classes/reflection.C, classes/string.C, classes/table.C,
1641: include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
1642: proces_to_value -> process after StringOrValue removed (related
1643: to feature #1020)
1644:
1645: * src/classes/form.C: whitespace
1646:
1647: * src/main/execute.C: VALUE__GET_BASE_CLASS added to opcode_names
1648:
1649: * tests/: 357.html, 358.html, results/357.processed,
1650: results/358.processed, results/auto.p: test for @conf
1651: $RECOURSION_LIMIT and $LOOP_LIMIT added (related to feature #42)
1652:
1653: 2016-10-03 moko
1654:
1655: * src/: classes/op.C, include/pa_request.h, main/pa_request.C,
1656: types/pa_vtable.C: @conf $RECOURSION_LIMIT and $LOOP_LIMIT now
1657: supported (implements feature #42)
1658:
1659: * src/types/pa_vregex.h: no reason for VRegex to be
1660: is_evaluated_expr
1661:
1662: * src/classes/curl.C: CURL_OPT(CURL_INT, SSLVERSION) added
1663: (implements feature #1095)
1664:
1665: 2016-10-01 moko
1666:
1667: * src/classes/reflection.C: $.overwrite in ^reflection:mixin is now
1668: false by default (related to feature #1089)
1669:
1670: 2016-09-30 moko
1671:
1672: * src/types/pa_wcontext.h: cleanup
1673:
1674: 2016-09-29 moko
1675:
1676: * src/main/execute.C: whitespace
1677:
1678: * src/include/pa_request.h: whitespace
1679:
1680: * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
1681: classes/op.C, classes/table.C, include/pa_request.h,
1682: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.h,
1683: types/pa_vobject.C, types/pa_wcontext.h: optimization:
1684: StringOrValue removed as it just slows down and adds complexity
1685: (implements feature #1020)
1686:
1687: 2016-09-28 moko
1688:
1689: * tests/: 356.html, results/266.processed, results/321.processed,
1690: results/356.processed: tests updated after name was added to
1691: method_info hash, test for ^reflection:method_info[junction]
1692: added (related to feature #1068)
1693:
1694: * src/classes/reflection.C: ^reflection:method_info[junction] now
1695: supported, method name added to the resulting hash (implements
1696: feature #1068)
1697:
1698: * tests/: 276.html, results/276.processed: more tests for
1699: ^reflection:delete[]
1700:
1701: * src/classes/reflection.C: fixed bug then ^reflection:delete
1702: didn't work on class and could damage native objects (like file)
1703:
1704: 2016-09-26 moko
1705:
1706: * tests/: 345.html, 346-curl.html, 347-curl.html, 348.html,
1707: results/345.processed, results/346-curl.processed,
1708: results/347-curl.processed, results/348.processed: numbers added
1709: to simplify diff analysis
1710:
1711: * tests/: 352.html, results/352.processed: test result updated as
1712: method name used
1713:
1714: * src/classes/reflection.C: method name used
1715:
1716: * src/types/: pa_method.h, pa_vstateless_class.C: method now keeps
1717: its name
1718:
1719: * src/types/pa_method.h: whitespace
1720:
1721: * src/classes/reflection.C: both method and field with one name can
1722: exist.
1723:
1724: * src/classes/reflection.C: ^reflection:mixin added (implements
1725: feature #1089)
1726:
1727: * tests/: 355.html, results/355.processed: property appears in
1728: derived class if added in base test added
1729:
1730: * src/types/pa_vstateless_class.h: get_method declaration +
1731: whitespace
1732:
1733: * tests/: 354.html, results/354.processed: nice test from method
1734: and property with one name in class added
1735:
1736: 2016-09-23 moko
1737:
1738: * src/classes/reflection.C: ^reflection:method usage documented
1739:
1740: 2016-09-22 moko
1741:
1742: * src/: classes/classes.vcproj, types/types.vcproj: we need RTTI as
1743: we use 'dynamic_cast' on polymorphic type 'Value'. Without it
1744: compile warning and GPF occures on VS2003 (related to feature
1745: #1087)
1746:
1747: * tests/: 350.html, results/350.processed: test added for
1748: $.encloser[] support in ^table::create (related to feature #11)
1749:
1750: * src/classes/table.C: another minor fix (related to feature #11)
1751:
1.107 moko 1752: 2016-09-21 moko
1753:
1754: * src/include/pa_config_fixed.h: vs2015 compilation fixes
1755:
1756: * src/: classes/curl.C, classes/file.C, classes/hash.C,
1757: classes/json.C, classes/string.C, classes/table.C,
1758: classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
1759: main/pa_common.C, main/pa_http.C, main/pa_request.C,
1760: main/pa_sql_driver_manager.C, types/pa_vfile.C, types/pa_vmail.C,
1761: types/pa_vrequest.C, types/pa_vresponse.C: charsets ->
1762: pa_charsets, vs2015 warning war
1763:
1764: * src/classes/table.C: vs2015 warning war
1765:
1766: * src/types/pa_vdate.C: vs2015 warning war
1767:
1768: * src/main/: pa_common.C, pa_globals.C: vs2015 compilation fixes
1769:
1770: * src/targets/cgi/parser3.vcproj: wsock32 -> ws2_32.lib (winsock 1
1771: -> winsock 2) for vs2015 compatibility (getaddrinfo functions)
1772:
1773: * src/main/pa_common.C: vs2015 compilation fixes
1774:
1775: * src/: include/pa_common.h, lib/smtp/smtp.C, main/pa_common.C:
1776: vs2015 compilation fixes
1777:
1778: * src/main/pa_charset.C: vs2015 warning war
1779:
1780: * src/: classes/file.C, types/pa_wwrapper.h: vs2015 warning war
1781:
1782: * src/main/pa_charset.C: vs2015 warning war
1783:
1784: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: vs2015 warning war
1785:
1786: * src/types/pa_vdate.C: vs2015 compilation fix
1787:
1788: * src/: include/pa_memory.h, main/pa_memory.C: VS2015 warning war
1789:
1790: * src/: lib/json/pa_json.C, classes/mail.C, classes/string.C:
1791: VS2015 compilation fixes
1792:
1793: * src/classes/table.C: minor fix (related to feature #11)
1794:
1795: * tests/results/282.processed: no longer skipping extra enclosers
1796: (related to feature #11)
1797:
1798: * src/classes/table.C: minor fix + no longer skipping extra
1799: enclosers (related to feature #11)
1800:
1801: * src/classes/table.C: minor optimization (related to feature #11)
1802:
1803: * src/classes/table.C: minor fix and optimization (related to
1804: feature #11)
1805:
1806: 2016-09-20 moko
1807:
1808: * tests/: 353.html, results/353.processed: test for
1809: PC.cclass->is_vars_local() check in one_big_piece in ^process[]
1810: added (related to bug #1090)
1811:
1812: * src/main/compile.y: PC.cclass->is_vars_local() check added for
1813: one_big_piece (fixes bug #1090)
1814:
1815: * tests/: 229.html, results/229.processed: code coverage tests
1816:
1817: * src/classes/op.C: bugfix: no more GPF if ^process[$context] (no
1818: body) was called
1819:
1820: * src/classes/op.C: whitespace
1821:
1822: * tests/: 323.html, results/323.processed: test for code junction
1823: should not be returned by ^reflection:class, ^reflection:base
1824:
1825: * src/classes/reflection.C: bugfix: code junction should not be
1826: returned by ^reflection:class, ^reflection:base
1827:
1828: * tests/: 323.html, 352.html, results/352.processed: no more
1829: exception for ^reflection:method[class;no-such-method] (related
1830: to feature #1087)
1831:
1832: * src/classes/reflection.C:
1833: ^reflection:method[class;no-such-method] : exception -> void
1834: (related to feature #1087)
1835:
1836: * src/include/pa_request.h: request::write_value added to allow
1837: write value without convertion (related to issue #1091)
1838:
1839: 2016-09-19 moko
1840:
1841: * src/main/pa_random.C: windows build fix
1842:
1843: * src/types/pa_vhash.h: warning war
1844:
1845: 2016-09-14 moko
1846:
1847: * tests/: 352.html, 552.html, results/352.processed,
1848: results/552.processed: test for ^reflection:method[] extension
1849: added (related to feature #1087)
1850:
1851: * tests/: 552.html, results/552.processed: test for
1852: ^reflection:method[] extension added (related to feature #1087)
1853:
1854: * src/classes/reflection.C: compatibility issue fixed, VClass
1855: dynamic_cast check added (related to feature #1087)
1856:
1857: * tests/: 351.html, results/351.processed: test for @auto[]
1858: inheritance bug diring ^process[] added (related to bug #1088)
1859:
1860: * src/: classes/op.C, main/pa_request.C,
1861: types/pa_vstateless_class.C: set_method now checks for @auto[] to
1862: disable it inheritance during ^process (fixes bug #1088)
1863:
1864: * src/classes/reflection.C: ^reflection:method[$class:method;$self]
1865: added (implements feature #1087)
1866:
1867: 2016-09-13 moko
1868:
1869: * tests/: 349.html, results/auto.p: test for objects prototyping
1870: added and $OBJECT-PROTOTYPE(false) is used for old tests (related
1871: to feature #1086)
1872:
1873: * src/: main/pa_request.C, types/pa_vclass.C, types/pa_vclass.h,
1874: types/pa_vobject.C: objects now are not class instances, but have
1875: class as prototype, can be overridden by $OBJECT-PROTOTYPE(false)
1876: in @conf (implements feature #1086)
1877:
1878: 2016-09-08 moko
1879:
1880: * src/: classes/file.C, classes/mail.C, classes/string.C,
1881: classes/table.C, main/pa_http.C, main/pa_string.C,
1882: include/pa_string.h: cleanup: string::split limit argument
1883: removed as no longer required, pos_after no longer reference
1884: (related to feature #11)
1885:
1886: * src/classes/table.C, tests/results/348.processed: now exception
1887: is rised when invalid option is passed to ^table::create[]
1888:
1889: * tests/: 282.cfg, 282.html, results/282.processed: more code
1890: coverage tests
1891:
1892: * tests/: 348.html, results/348.processed: code coverage tests
1893: added
1894:
1895: * tests/: 348.html, results/348.processed: generic ^table::create[]
1896: tests
1897:
1898: * tests/: 035.html, results/035.processed, results/272.processed:
1899: tests updated after $.encloser[] support for ^table::create
1900: implementation (related to feature #11)
1901:
1902: * src/classes/table.C: $.encloser[] support for ^table::create
1903: finally added (implements feature #11)
1904:
1905: 2016-09-07 moko
1906:
1907: * src/include/pa_string.h: added StringSplitHelper as friend
1908: (related to feature #11)
1909:
1910: * src/include/pa_string.h: body and langs now protected, not
1911: private to allow inheritance (related to feature #11)
1912:
1913: * src/classes/table.C: lsplit optimized before cloning for
1914: ^table::create with $.encloser[] (related to feature #11)
1915:
1916: * src/classes/table.C: optimizaion: TableControlChars.separators
1917: added and used (related to feature #11)
1918:
1919: * src/classes/table.C: spelling:
1920:
1921: TableSeparators -> TableControlChars column -> separator
1922: separators -> control_chars
1923:
1924: 2016-09-06 moko
1925:
1926: * src/main/pa_string.C: whitespace
1927:
1928: * src/main/pa_string.C: whitespace
1929:
1930: 2016-09-01 moko
1931:
1932: * tests/: 347-curl.html, results/347-curl.processed: to make tests
1933: results OS-independent
1934:
1935: * src/: include/pa_http.h, main/pa_http.C: typo bugfix for clang
1936: compiler (related to feature #1042)
1937:
1938: 2016-08-15 moko
1939:
1940: * src/include/pa_string.h: whitespace
1941:
1942: * src/classes/table.C: whitespace
1943:
1.106 moko 1944: 2016-08-05 moko
1945:
1946: * tests/: 344.html, results/344.processed: test for
1947: ^hash::create[$file] added (related to feature #1075)
1948:
1949: * src/types/: pa_vfile.h, pa_vmail.C: ^hash::create[$file] now
1950: supported (implements feature #1075)
1951:
1952: 2016-08-04 moko
1953:
1954: * tests/: 341.html, results/341.processed: more code coverage tests
1955:
1956: * tests/: 346-curl.html, results/346-curl.processed: more code
1957: coverage tests for curl
1958:
1959: * tests/: 346-curl.html, results/346-curl.processed: more code
1960: coverage tests for curl
1961:
1962: * tests/: 223-curl.html, 223.html, results/223-curl.processed,
1963: results/223.processed: code coverage tests: $.form[ $.table[] ]
1964: test added
1965:
1966: * tests/: 223-curl.html, results/223-curl.processed: more code
1967: coverage tests for curl
1968:
1969: 2016-08-03 moko
1970:
1971: * src/classes/curl.C: dlink(curl_library) now called not once, but
1972: until it will be loaded, allowing to find existing library.
1973:
1974: * tests/: 346-curl.html, 347-curl.html, results/346-curl.processed,
1975: results/347-curl.processed: more code coverage tests for curl
1976:
1977: * tests/: 339-curl.html, 339.html, 346-curl.html, Makefile,
1978: results/339-curl.processed, results/346-curl.processed: curl
1979: functionality tests
1980:
1981: 2016-08-02 moko
1982:
1983: * tests/: 339.html, results/339.processed: test for tables in
1984: ^file:load[] and ^curl:load[] (commented) added (related to
1985: feature #1042)
1986:
1987: * tests/: 345.html, results/345.processed: code coverage tests for
1988: file class
1989:
1990: * tests/: 344.html, results/344.processed: code coverage tests
1991:
1992: * tests/: 344.html, results/344.processed: mdate removed from
1993: output
1994:
1995: * src/classes/file.C: minor bugfix: is_text should be taked from
1996: fcontent.is_text_mode() if not set (related to feature #1061)
1997:
1998: * tests/: 344.html, results/344.processed: more tests
1999:
2000: * tests/: 343.html, 344.html, results/343.processed,
2001: results/344.processed: tests for ^file::create[ $.from-charset
2002: and $.to-charset ] (related to feature #1061)
2003:
2004: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
2005: aset_text_mode argument optimized
2006:
2007: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
2008: checkBOM now used in detect_binary_content (related to feature
2009: #1061)
2010:
2011: * src/main/pa_request.C: load_charset no longer required to_upper
2012:
2013: * src/types/pa_vfile.C: bugfix: ^file::create[$text_file;...] now
2014: preserves original file mode (if no $.mode specified)
2015:
2016: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
2017: ^file::create now supports $.from-charset[] and $.to-charset
2018: options (implements feature #1061), automatic transcode is done
2019: if text file is created from binary file and charset is detected.
2020:
2021: 2016-07-30 moko
2022:
2023: * src/classes/table.C: ^t.hash[..;] now supported (related to
2024: feature #1057)
2025:
2026: * tests/: 341.html, results/341.processed: test for ^t.hash[..;]
2027: added (related to feature #1057)
2028:
2029: * tests/: 286.html, results/286.processed: code tests coverage
2030:
2031: 2016-07-29 moko
2032:
2033: * src/classes/table.C: table size should be checked inside menu and
2034: foreach (related to feature #858)
2035:
2036: * src/: classes/curl.C, classes/file.C, classes/string.C,
2037: classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
2038: main/pa_common.C, main/pa_http.C, main/pa_sql_driver_manager.C,
2039: types/pa_vmail.C, types/pa_vrequest.C, types/pa_vresponse.C:
2040: charsets.get now does str_upper inside (related to feature #1061)
2041:
2042: * tests/: 342.html, results/342.processed: more code coverage tests
2043:
2044: * tests/: 342.html, outputs/342.processed: table menu code coverage
2045: + foreach test added (related to feature #858)
2046:
2047: * tests/: 341.html, results/341.processed: tests for
2048: ^table.hash[]{code} added + code coverage tests (related to
2049: feature #1057)
2050:
2051: * src/: include/pa_common.h, classes/table.C: ^table.hash[]{code as
2052: value} support (implements feature #1057)
2053:
2054: * src/classes/table.C: whitespace
2055:
2056: 2016-07-28 moko
2057:
2058: * src/: classes/curl.C, types/pa_vfile.C: curl now saves filename
2059: from URL, if not specified query string removed from url-based
2060: filenames in ^curl:load[] and ^file::load[] (related to feature
2061: #1042)
2062:
2063: 2016-07-27 moko
2064:
2065: * tests/: 340.html, results/340.processed: test for
2066: transcode_text_result=false added (related to issue #1042)
2067:
2068: 2016-07-26 moko
2069:
2070: * src/types/pa_vfile.C: file name should not be empty (if file path
2071: is folder and ends with /) (related to feature #1042)
2072:
2073: * src/main/pa_http.C: whitespace optimizaion
2074:
2075: * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
2076: main/pa_common.C, main/pa_http.C: ^curl:load[] now support
2077: multiple headers, ^file::load supports headers transcoding
2078: (implements feature #1042)
2079:
2080: 2016-07-25 moko
2081:
2082: * src/include/pa_common.h: PA_DEFAULT added
2083:
2084: 2016-07-22 moko
2085:
2086: * tests/: 338.html, results/338.processed: test for
2087: $date.field(value) added (related to feature #1066)
2088:
2089: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
2090: $date.field(value) now supported for y/m/d/h/m/s (implements
2091: feature #1066)
2092:
1.105 moko 2093: 2016-07-21 moko
2094:
2095: * src/: classes/file.C, classes/image.C, include/pa_common.h,
2096: main/pa_common.C: pa_common.h: File_read_action: fname, as_text
2097: arguments removed; image.C - absolute path shown in exception
2098: (implements feature #1071)
2099:
2100: * tests/: 235.html, results/235.processed: test and test result
2101: updated after static boundary in mail and Errors-To: mail header
2102: removed (related to feature #1047)
2103:
2104: * src/: classes/math.C, include/pa_random.h, main/pa_http.C,
2105: main/pa_random.C, types/pa_vmail.C: get_uuid_boundary() added and
2106: used, static boundary in mail removed, Errors-To: mail header
2107: removed (implements feature #1047)
2108:
2109: 2016-07-20 moko
2110:
2111: * src/: classes/reflection.C, types/pa_vstateless_class.h:
2112: equest.classes(): Value -> VStateless_class, part 3 (related to
2113: issue #1051)
2114:
2115: * src/: classes/reflection.C, include/pa_request.h, main/execute.C:
2116: request.classes(): Value -> VStateless_class, part 2 (related to
2117: issue #1051)
2118:
2119: * tests/results/: 224.processed, 323.processed: classes without
2120: methods should not be methoded (related to issue #1051)
2121:
2122: * src/: classes/reflection.C, include/pa_request.h, main/compile.y,
2123: main/compile_tools.h, main/pa_request.C: request.classes(): Value
2124: -> VStateless_class, part 1 (related to issue #1051)
2125:
2126: * tests/: 337.html, results/337.processed: test for
2127: ^reflection:fields_reference[] and VHashReference class added
2128: (related to feature #1072)
2129:
2130: * src/: classes/hash.C, classes/json.C, classes/reflection.C,
2131: types/pa_value.h, types/pa_vhash.h, types/pa_vobject.h: VHashBase
2132: and VHashReference added, allowing ^reflection:fields_reference[]
2133: implementation (closes feature #1072)
2134:
2135: 2016-07-19 moko
2136:
2137: * tests/: 323.html, results/323.processed: we want to see
2138: "methoded"
2139:
2140: * tests/: 336.html, results/336.processed: test for $BASE:property
2141: and ^BASE:method (OP_VALUE__GET_BASE_CLASS) added (related to bug
2142: #1059)
2143:
2144: * src/: include/pa_opcode.h, main/compile.y, main/execute.C,
2145: types/pa_vstateless_class.h, types/pa_wcontext.h: no more
2146: somebody_entered_some_class, $BASE:property works again,
2147: ^BASE:method[] bugs fixed (fixes bug #1059)
2148:
2149: 2016-07-14 moko
2150:
2151: * tests/: 335.html, results/335.processed: test for feature #1055
2152: added
2153:
2154: * src/classes/hash.C: bugfix: $._default was not copied if empty
2155: feature: ^hash.contains[_default] added (implements feature
2156: #1055)
2157:
2158: 2016-07-13 moko
2159:
2160: * src/classes/reflection.C: bugfix: ^reflection:def[class;name]
2161: should not call @autouse (http://www.parser.ru/forum/?id=83480)
2162:
2163: 2016-07-05 moko
2164:
2165: * src/classes/hash.C: Optimization: HashStringValue::Iterator used
2166: in ^hash.foreach (related to feature #1073)
2167:
2168: 2016-07-04 moko
2169:
2170: * tests/: 134.html, 281.html, results/134.processed,
2171: results/281.processed: tests updated after hash blocking removed
2172: (related to feature #1073)
2173:
2174: * src/: classes/hash.C, include/pa_hash.h, types/pa_vhash.h: hash
2175: no longer blocks on change during foreach (implements feature
2176: #1073)
2177:
2178: 2016-06-17 moko
2179:
2180: * tests/: 330.html, results/330.processed: try exception source
2181: test added (related to bug in #1062)
2182:
2183: * tests/: 334.html, results/334.processed: Exception stack trace
2184: test added (related to bug in $1062)
2185:
2186: * src/classes/op.C: Exception trace now correctly restored and
2187: errors reported (related to bug #1062)
2188:
1.104 moko 2189: 2016-05-25 moko
2190:
2191: * src/main/compile.y: minor cleanup + beauty
2192:
2193: 2016-05-24 moko
2194:
2195: * tests/: 333.html, results/333.processed: more exceptions testing
2196:
2197: * tests/: 332.html, results/332.processed: test for FIELDS_SYMBOL,
2198: _DEFAULT_SYMBOL, CALLER_SYMBOL, SELF_SYMBOL added (related to
2199: features #1056, #1026)
2200:
2201: * src/: classes/json.C, include/pa_symbols.h, main/pa_symbols.C,
2202: types/pa_vhash.C, types/pa_vhash.h, types/pa_vtable.C,
2203: types/pa_vtable.h: FIELDS_SYMBOL, _DEFAULT_SYMBOL added and used
2204: (implements feature #1056)
2205:
2206: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
2207: main/execute.C, main/pa_symbols.C, types/pa_vjunction.C,
2208: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
2209: CLASS_SYMBOL, CLASS_NAME_SYMBOL added and used (related to
2210: feature #1026)
2211:
2212: * src/: classes/reflection.C, include/pa_symbols.h, main/compile.y,
2213: main/compile_tools.C, main/compile_tools.h, main/pa_symbols.C,
2214: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: Symbols now
2215: have *_SYMBOL naming convention. STATIC_SYMBOL, DYNAMIC_SYMBOL,
2216: LOCALS_SYMBOL, PARTIAL_SYMBOL, REM_SYMBOL where added (related to
2217: feature #1026)
2218:
2219: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
2220: main/pa_globals.C, main/pa_symbols.C, types/pa_vmethod_frame.C,
2221: types/pa_vmethod_frame.h, types/pa_vstateless_class.C:
2222: SYMBOLS_CACHING define implemented (related to feature #1026)
2223:
2224: * src/main/main.vcproj: + ps_symbols
2225:
2226: * src/: include/Makefile.am, include/pa_string.h,
2227: include/pa_symbols.h, main/Makefile.am, main/compile.tab.C,
2228: main/compile.y, main/compile_tools.C, main/pa_symbols.C,
2229: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
2230: types/pa_vstateless_class.C: initial implementation for symbols
2231: cache (related to feature #1026)
2232:
2233: * src/: include/pa_common.h, main/pa_http.C: minor cleanup
2234:
2235: * src/main/pa_globals.C: minor cleanup
2236:
2237: 2016-05-19 moko
2238:
2239: * src/types/pa_vhash.h: minor optimization: ^hash.fields[] removed
2240: (related to feature #1046)
2241:
2242: * tests/: 331.html, results/331.processed: test for
2243: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE removal added
2244: (related to feature #1051)
2245:
2246: * src/main/compile.y:
2247: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE error removed
2248: (implements feature #1054)
2249:
2250: 2016-05-18 moko
2251:
2252: * src/types/pa_vtable.C, tests/results/324.processed: no more
2253: "column not found" exception for ^table.no-such-method[] (related
2254: to feature #1046)
2255:
2256: * tests/: 261.html, results/261.processed: test added and updated
2257: after feature #1046 implementation
2258:
2259: * src/: classes/string.C, types/pa_value.C, types/pa_vstring.h,
2260: types/pa_vvoid.h: $string.anything works for whitespace strings,
2261: ^string.contains added for hash compatibility, $string.method no
2262: longer returns stting method (implements feature #1046)
2263:
2264: 2016-05-12 moko
2265:
2266: * src/classes/curl.C: content-type response header no longer
2267: ignored (fixes issue #1045)
2268:
2269: * tests/: 330.html, results/330.processed: test for incomplete
2270: finally execution when break occures added (related to issue
2271: #1077)
2272:
2273: * src/classes/op.C: bugfix: Request::skip reset is called before
2274: executing catch and finally code (fixes issue #1062)
2275:
2276: 2016-05-11 moko
2277:
2278: * tests/: 329.html, results/329.processed: test for invalid
2279: ^break[] behavour added (bug #1077)
2280:
2281: * src/classes/op.C: try_catch code cleanup (related to bug #1062)
2282:
2283: 2016-04-24 moko
2284:
2285: * src/types/pa_vstateless_class.h: warning war
2286:
2287: 2016-04-17 moko
2288:
2289: * tests/: 328.html, results/328.processed: test for
2290: ^break(condition) and ^continue(condition) (related to feature
2291: #1063)
2292:
2293: * src/classes/op.C: ^break(condition) and ^continue(condition)
2294: implemented (feature #1063)
2295:
2296: 2016-04-12 moko
2297:
2298: * tests/results/280.processed: ordered hash now used for class
2299: methods and properties (test results updated for feature #1069)
2300:
2301: * src/classes/: xdoc.C, xnode.C: xnode_class initialization moved
2302: to xdoc.C as under FreeBSD it was inited after and inheritance
2303: failed (related to issue #1051)
2304:
2305: * tests/: 320.html, results/320.processed: xdoc and xnode methods
2306: are printed to check inheritance (related to feature #1051)
2307:
1.103 moko 2308: 2016-04-09 moko
2309:
2310: * tests/results/320.processed: ordered hash now used for class
2311: methods and properties (test results updated for feature #1069)
2312:
2313: * src/types/pa_vstateless_class.h: ordered hash now used for class
2314: methods and properties (implements feature #1069)
2315:
2316: * src/types/: pa_vconsole.h, pa_vcookie.C, pa_venv.C,
2317: pa_vrequest.C, pa_vstatus.C: minor optimization: #ifndef
2318: OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL returned (related to
2319: feature #1051)
2320:
2321: 2016-04-07 moko
2322:
2323: * src/main/execute.C: returned Value in .CLASS case for VJunction
2324: (related to feature #1051)
2325:
2326: * src/types/: pa_vjunction.C, pa_vmethod_frame.C,
2327: pa_vmethod_frame.h, pa_vstateless_class.C, pa_vstateless_class.h:
2328: string constants deduplication (related to feature #1051)
2329:
2330: * tests/results/224.processed: test result updated (related to
2331: feature #1051)
2332:
2333: * src/: main/execute.C, types/pa_vconsole.h, types/pa_vcookie.C,
2334: types/pa_vcookie.h, types/pa_venv.C, types/pa_venv.h,
2335: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vstatus.C,
2336: types/pa_vstatus.h: classes hash now contains only
2337: VStateless_class derived objects, .CLASS is also allways
2338: VStateless_class derived object (related to feature #1051).
2339:
2340: 2016-04-06 moko
2341:
2342: * tests/results/323.processed: test result updated after feature
2343: #1051 implementation
2344:
2345: * src/: classes/classes.h, classes/op.C, classes/response.C,
2346: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
2347: main/pa_request.C, types/pa_vclass.h, types/pa_vform.C,
2348: types/pa_vmail.C, types/pa_vmath.C, types/pa_vmemory.h,
2349: types/pa_vresponse.C, types/pa_vresponse.h,
2350: types/pa_vstateless_class.h: base -> methoded_donor for static
2351: classes, type() moved from VStateless_class to VClass and
2352: Methoded (implements feature #1051)
2353:
2354: 2016-04-04 moko
2355:
2356: * src/: classes/classes.C, include/pa_request.h, main/pa_request.C:
2357: beauty: put_class added (related to feature #1051)
2358:
2359: 2016-04-01 moko
2360:
2361: * tests/results/: 175.processed, 192.processed, 224.processed,
2362: 229.processed, 244.processed, 246.processed, 316.processed: test
2363: results updated as class.type() removed from error messages, only
2364: type() left (related to feature #1051)
2365:
2366: * src/: classes/classes.C, classes/classes.h, classes/mail.C,
2367: classes/op.C, classes/reflection.C, main/compile.y,
2368: main/compile_tools.h, main/execute.C, main/pa_request.C,
2369: types/pa_value.C, types/pa_vclass.C, types/pa_vclass.h,
2370: types/pa_vmethod_frame.h, types/pa_vobject.h,
2371: types/pa_vstateless_class.h, types/pa_wcontext.C: name() removed
2372: from VStateless_class, type() is used instead (related to feature
2373: #1051)
2374:
2375: * src/classes/mail.C: old logic restored.
2376:
2377: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
2378: classes/classes.h, classes/curl.C, classes/date.C,
2379: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
2380: classes/hashfile.C, classes/image.C, classes/inet.C,
2381: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
2382: classes/memcached.C, classes/memory.C, classes/reflection.C,
2383: classes/regex.C, classes/response.C, classes/string.C,
2384: classes/table.C, classes/xdoc.C, classes/xnode.C,
2385: types/pa_vform.C, types/pa_vmail.C, types/pa_vmath.C,
2386: types/pa_vmemory.h: optimizaion: *_base_class removed (related to
2387: feature #1051)
2388:
2389: 2016-03-30 moko
2390:
2391: * tests/: 327.html, results/224.processed, results/327.processed:
2392: test for TZ specification in ^date::create[], TZ is kept during
2393: ^date::create[$dt] (related to feature #1048)
2394:
2395: * src/: classes/date.C, types/pa_vdate.h: TZ can be specified in
2396: ^date::create[], TZ is kept during ^date::create[$dt] (implements
2397: feature #1048)
2398:
2399: 2016-03-29 moko
2400:
2401: * tests/: 315.html, results/315.processed: test for timezone format
2402: +HHmm added (related to feature #1065)
2403:
2404: * src/classes/date.C: timezone format +HHmm now supported
2405: (implements feature #1065)
2406:
2407: 2016-03-28 moko
2408:
2409: * tests/: 202.html, results/131.processed, results/202.processed,
2410: results/224.processed, results/256.processed,
2411: results/315.processed: test results updated after %.2d now
2412: default for hours offset in iso-string (was %2d), test for
2413: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
2414: added (related to feature #1065)
2415:
2416: 2016-03-27 moko
2417:
2418: * src/types/pa_vdate.C: '+' sign for zero offset (related to
2419: feature #1065)
2420:
2421: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
2422: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
2423: added (implements feature #1065)
2424:
2425: 2016-03-24 moko
2426:
2427: * tests/: 202.html, results/202.processed: test $date.week added
2428: (related to bug #1067)
2429:
2430: * src/types/: pa_vdate.C, pa_vdate.h: fix for $date.week changed
2431: date (fix for bug #1067)
2432:
2433: 2016-03-10 moko
2434:
2435: * configure.ac, src/include/pa_version.h: 3.4.4 -> 3.4.5b
2436:
1.102 moko 2437: 2015-12-07 moko
2438:
2439: * tests/: 326.html, results/326.processed: test for .CLASS &
2440: .CLASS_NAME optimization added (related to feature #844)
2441:
2442: 2015-11-17 moko
2443:
2444: * tests/: 323.html, results/323.processed: order added
2445:
2446: * tests/: 325.html, results/325.processed: double range test added
2447: (related to bug #1049)
2448:
2449: 2015-11-16 moko
2450:
2451: * src/: classes/string.C, types/pa_vdouble.h: finite(double) check
2452: added to disallow NaN and Infinity (fixes bug #1049)
2453:
2454: 2015-11-11 moko
2455:
2456: * tests/324.html: parser 3.4.3 execution support added (related to
2457: feature #1017)
2458:
2459: * tests/: 324.html, results/324.processed: test for
2460: GET_ELEMENT4CALL feature added (feature #1017)
2461:
1.101 moko 2462: 2015-10-29 moko
2463:
2464: * operators.txt: updated for 3.4.4
2465:
2466: * configure.ac, src/include/pa_version.h: 3.4.4rc -> 3.4.4
2467:
2468: * src/main/pa_exec.C: get_exit_status implemented for Windows
2469: (related to bug #1043)
2470:
2471: 2015-10-28 moko
2472:
2473: * src/main/pa_exec.C: Windows bugfix: $.stdin[] no longer cause
2474: hangup during ^file::exec (fixes bug #1043)
2475:
1.100 moko 2476: 2015-10-27 moko
2477:
2478: * src/main/pa_memory.C: pa_fail_alloc added for GC_abort in Windows
2479:
1.99 moko 2480: 2015-10-26 moko
2481:
1.100 moko 2482: * tests/322.html, src/classes/reflection.C: arguments reorder
2483: (related to issue #1041)
2484:
2485: * src/: classes/classes.awk, main/helpers/simple_folding.pl:
2486: Copyright year updated
2487:
1.99 moko 2488: * src/: classes/bool.C, classes/classes.C, classes/classes.h,
2489: classes/curl.C, classes/date.C, classes/double.C, classes/file.C,
2490: classes/form.C, classes/hash.C, classes/hashfile.C,
2491: classes/image.C, classes/inet.C, classes/int.C, classes/json.C,
2492: classes/mail.C, classes/math.C, classes/memcached.C,
2493: classes/memory.C, classes/op.C, classes/reflection.C,
2494: classes/regex.C, classes/response.C, classes/string.C,
2495: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
2496: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
2497: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
2498: include/pa_config_fixed.h, include/pa_config_includes.h,
2499: include/pa_dictionary.h, include/pa_dir.h,
2500: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
2501: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
2502: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
2503: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
2504: include/pa_request_charsets.h, include/pa_request_info.h,
2505: include/pa_sapi.h, include/pa_socks.h,
2506: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
2507: include/pa_stack.h, include/pa_string.h,
2508: include/pa_stylesheet_connection.h,
2509: include/pa_stylesheet_manager.h, include/pa_table.h,
2510: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
2511: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
2512: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
2513: lib/md5/pa_md5c.c, lib/memcached/pa_memcached.C,
2514: lib/memcached/pa_memcached.h, lib/sdbm/pa_file_io.C,
2515: lib/sdbm/pa_strings.C, lib/smtp/comms.C, lib/smtp/smtp.C,
2516: lib/smtp/smtp.h, main/compile.C, main/compile.tab.C,
2517: main/compile.y, main/compile_tools.C, main/compile_tools.h,
2518: main/execute.C, main/pa_cache_managers.C, main/pa_charset.C,
2519: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
2520: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
2521: main/pa_globals.C, main/pa_http.C, main/pa_memory.C,
2522: main/pa_os.C, main/pa_pool.C, main/pa_random.C,
2523: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
2524: main/pa_string.C, main/pa_stylesheet_connection.C,
2525: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
2526: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
2527: sql/pa_sql_driver.h, targets/apache/mod_parser3.c,
2528: targets/apache/mod_parser3_core.C, targets/apache/pa_httpd.h,
2529: targets/apache/pa_threads.C, targets/cgi/pa_threads.C,
2530: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
2531: targets/isapi/parser3isapi.C, types/pa_junction.h,
2532: types/pa_method.h, types/pa_property.h, types/pa_value.C,
2533: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
2534: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
2535: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.C,
2536: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
2537: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
2538: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
2539: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
2540: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
2541: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
2542: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
2543: types/pa_vmemcached.C, types/pa_vmemcached.h, types/pa_vmemory.h,
2544: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
2545: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
2546: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
2547: types/pa_vresponse.C, types/pa_vresponse.h,
2548: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
2549: types/pa_vstateless_object.h, types/pa_vstatus.C,
2550: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
2551: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
2552: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
2553: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
2554: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
2555:
2556: * src/targets/cgi/parser3.C: year updated
2557:
2558: * src/classes/reflection.C: VS2003 compatibility fixed (related to
2559: issue #1041)
2560:
2561: * tests/: 323.html, results/323.processed: test for base classes
2562: added
2563:
2564: * tests/: 261.html, results/261.processed: updated after better
2565: error reporting done for $string.key exception
2566:
2567: * src/types/pa_vstring.h: better error report for $string.key
2568: exception
2569:
2570: * src/types/: pa_vobject.C, pa_vobject.h: VObject::get_element
2571: copied as VObject::get_element4call to remove extra virtual call
2572:
2573: * tests/: 322.html, results/322.processed: test for
2574: ^reflection:is[] added (related to feature #1041)
2575:
2576: * src/classes/reflection.C: ^reflection:is empty value is void
2577: (related to feature #1041)
2578:
2579: * src/classes/reflection.C:
2580: ^reflection:is[class_name|code|method;[context;]element_name]
2581: added (implements feature #1041)
2582:
2583: 2015-10-24 moko
2584:
2585: * configure.ac, src/include/pa_version.h: 3.4.4b -> 3.4.4rc
2586:
1.98 moko 2587: 2015-10-22 moko
2588:
2589: * tests/: 321.html, results/321.processed: test for
2590: ^reflection:method_info[] file detection added
2591:
2592: * tests/: 320.html, results/320.processed: test for
2593: ^reflection:class_by_name[class_name] added (related to feature
2594: #993)
2595:
2596: * src/classes/reflection.C: ^reflection:class_by_name[class_name]
2597: added (implements feature #993)
2598:
2599: * src/main/execute.C: GET_ELEMENT4CALL added to get_method_filename
2600: (related to feature #1017)
2601:
2602: * tests/: 319.html, results/319.processed: ^throw[] stacktrace test
2603: added (related to issue #1039)
2604:
2605: * src/main/pa_request.C: ^throw origin fixed (related to feature
2606: #1039)
2607:
2608: * src/types/pa_vcookie.C: bugfix: expires_sec should not be called
2609: for VDate
2610:
2611: * tests/results/182.processed: updated after feature #1038
2612: implemented
2613:
2614: * tests/: 318.html, 182_dir/a6.p, results/318.processed: test for
2615: compile-time exception origin added (test for feature #1039)
2616:
2617: * src/: include/pa_request.h, main/compile.C, main/compile.y,
2618: main/pa_request.C: exception unification: compile-time exceptions
2619: now have origin, @USE origins also tracked (implements feature
2620: #1039)
2621:
2622: 2015-10-20 moko
2623:
2624: * src/main/pa_request.C: cleanup
2625:
2626: 2015-10-15 moko
2627:
2628: * src/types/pa_vtable.C: defines fixed (related to feature #1017)
2629:
2630: * src/: classes/hash.C, include/pa_opcode.h, types/pa_vhash.h,
2631: types/pa_vtable.C: new feature: no more $table.method and
2632: $hash.method, aliases for _at, _count, _key (related to feature
2633: #1017)
2634:
1.97 moko 2635: 2015-10-14 moko
2636:
1.98 moko 2637: * tests/: 317.html, results/317.processed: test for
2638: ^string.unescape[] added (related to feature #120)
2639:
1.97 moko 2640: * buildall: reverted libxml 2.9.2 -> 2.9.1 due to "ID already
2641: defined" bug (described in issue #1036)
2642:
2643: * tests/: 247.html, results/247.processed: test for checkBOM added
2644: (test for bug #1037)
2645:
2646: * src/: include/pa_charsets.h, main/pa_charsets.C,
2647: main/pa_common.C, main/pa_http.C: checkBOM detects charset if
2648: it's not enforced, skips BOM signature if it complies charset
2649: (fixes bug #1037)
2650:
2651: 2015-10-13 moko
2652:
2653: * src/targets/cgi/parser3.vcproj: disabling buggy incremental
2654: linking
2655:
2656: * src/classes/inet.C: vs2003 compilation fix
2657:
2658: * src/classes/math.C: warning war
2659:
2660: * src/lib/punycode/pa_punycode.c: warning war
2661:
2662: 2015-10-12 moko
2663:
2664: * src/lib/punycode/pa_punycode.c: warning war
2665:
2666: * parser3.sln: moved parser3 first, to make it default startup
2667: project
2668:
2669: * buildall: parser "mirror" now used for external libs sources
2670: (implements feature #1036)
2671:
2672: * buildall: most external libs are updated to their current
2673: versions (related to feature #1036)
2674:
2675: * src/classes/image.C: more tags added
2676:
2677: * src/: include/pa_memory.h, types/pa_vdate.C: warning war
2678:
2679: 2015-10-11 moko
2680:
2681: * src/classes/curl.C: minor optimization (related to feature #1035)
2682:
2683: 2015-10-09 moko
2684:
2685: * src/classes/curl.C: pa_strdup added for strings from curl
2686: (related to feature #1035)
2687:
2688: * src/main/pa_string.C: mini fix: RedHat 7.2 does not have
2689: ULLONG_MAX definition
2690:
2691: * src/classes/curl.C: ^curl:info[name]/^curl:info[] added
2692: (implements feature #1035)
2693:
2694: * src/main/pa_charset.C: String::Body(String::C) used
2695:
2696: * src/main/pa_charset.C: exceptions unified
2697:
2698: * src/: include/pa_charset.h, main/pa_charset.C: declarations
2699: unified
2700:
2701: * src/: classes/file.C, classes/image.C, classes/mail.C,
2702: classes/op.C, classes/xdoc.C, classes/xnode.C,
2703: include/pa_string.h, main/pa_request.C, main/pa_string.C,
2704: types/pa_vimage.C, types/pa_vmath.C, types/pa_vstatus.C,
2705: types/pa_vxdoc.C: explicit String::Body(char) calls removed;
2706: String::Body(String::C) constructor added (related to bug #957)
2707:
2708: * src/classes/file.C: minor optimization
2709:
2710: * src/include/pa_hash.h: hash.get(char*) added, to minimize
2711: Cord(char*) autocreation (related to bug #957)
2712:
2713: * src/: classes/string.C, main/untaint.C: minor optimizations
2714:
2715: * src/: classes/json.C, classes/reflection.C, include/pa_string.h:
2716: String(char*, Lang, length) removed, String(C(), Lang) used
2717: instead (related to bug #957)
2718:
2719: 2015-10-08 moko
2720:
2721: * src/: classes/file.C, include/pa_string.h, lib/cord/cordbscs.c,
2722: lib/cord/include/cord.h, main/pa_http.C, main/pa_string.C,
2723: main/untaint.C: Now char * is converted to CORD only using
2724: AS_CORD() to check for empty cord bug (fixes bug #957)
2725:
2726: * src/include/pa_hash.h: fixed compilation without
2727: HASH_CODE_CACHING
2728:
2729: * src/classes/string.C:
2730: ^string:unescape[js|uri;escaped;$.charset[...]] added (implements
2731: feature #120)
2732:
2733: * src/main/pa_common.C: reduce js flags checks count (related to
2734: feature #120)
2735:
1.96 moko 2736: 2015-10-07 moko
2737:
2738: * tests/: 275.html, results/275.processed: test modified after
2739: unsigned long long int support implemented (feature #1034)
2740:
2741: * src/: classes/math.C, include/pa_string.h, main/pa_string.C:
2742: pa_atoul added for unsigned long long int support
2743:
2744: 2015-10-06 moko
2745:
2746: * src/types/pa_vdate.C: INT_MAX used
2747:
2748: 2015-10-03 moko
2749:
2750: * tests/: 302.html, results/302.processed: test for bug #1023
2751: (\u2028, \u2029 escaping) added
2752:
2753: * src/main/untaint.C: \u2028, \u2029 are now escaped in
2754: json:string[] (fixes bug #1023)
2755:
2756: 2015-09-29 moko
2757:
2758: * tests/305.html: try-catch added for OS without ipv6 support
2759:
2760: * src/lib/json/pa_json.C: more unique prefixes for Solaris
2761: compilation
2762:
2763: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.y,
2764: main/execute.C, types/pa_value.h, types/pa_vhash.h,
2765: types/pa_vtable.C, types/pa_vtable.h: get_element4call
2766: implemented to distinguish ^hash.method from $hash.field
2767: (implements feature #1017)
2768:
2769: * src/lib/punycode/pa_punycode.c: warning war
2770:
2771: * src/include/pa_config_includes.h: warning war
2772:
2773: * src/include/pa_config_includes.h: pragma warning actualized a bit
2774:
2775: * src/include/pa_config_includes.h: warning war
2776:
2777: * src/include/pa_hash.h: clang compilation fix
2778:
2779: 2015-09-27 moko
2780:
2781: * src/main/compile.tab.C: Bison 3 is now default
2782:
2783: * src/main/: compile.C, compile.y: Bison 3 compatibility fixed
2784:
2785: 2015-09-25 moko
2786:
2787: * src/: classes/hash.C, include/pa_hash.h: parser now compiles and
2788: works with undefined HASH_ORDER (related to feature #196)
2789:
2790: 2015-09-24 moko
2791:
2792: * tests/: 027.html, results/027.processed: test modified to test
2793: ^hash.sort (feature #196)
2794:
2795: * src/: classes/hash.C, include/pa_hash.h:
2796: ^hash.sort[key;value]{string-key-maker}|(numeric-key-maker)[[asc|desc]]
2797: added (implements feature #196)
2798:
2799: * tests/: 316.html, results/316.processed: Added test for bug #1025
2800: (exception handling in non-cached ^cache), plus for "it does not
2801: have logical value" and "$exception.handled value must be either
2802: boolean or string 'cache'" exceptions.
2803:
2804: * src/classes/op.C: ^cache: exceptions now handled in non-cached
2805: code (fixes bug #1025)
2806:
1.95 moko 2807: 2015-09-23 moko
2808:
2809: * src/classes/table.C: warning war
2810:
2811: * src/: classes/math.C, types/pa_vcookie.C: warning war
2812:
2813: * src/classes/file.C: warning war
2814:
2815: * src/: include/pa_table.h, main/pa_table.C: warning war
2816:
2817: * src/: main/pa_request.C, classes/date.C: warning war
2818:
2819: * src/: types/pa_vdate.C, classes/op.C: warning war
2820:
2821: * tests/: 122.html, results/122.processed: win sync: to remove
2822: differences with OS that doesn't keep timezone change history
2823:
2824: * src/types/pa_vdate.C: tzset() should be called in Windows after
2825: TZ change (related to feature #36)
2826:
2827: * tests/: 075.html, results/075.processed: win sync: to remove
2828: differences with OS that doesn't keep timezone change history
2829:
2830: * tests/: 315.html, results/315.processed: win sync: to remove
2831: differences with OS that doesn't keep timezone change history
2832:
2833: * tests/: 256.html, results/256.processed: win sync: to remove
2834: differences with OS that doesn't keep timezone change history
2835:
2836: * tests/: 124.html, results/124.processed: win results sync: to
2837: avoid hitting time change hole.
2838:
2839: * src/types/pa_vdate.C: static returned. :)
2840:
2841: 2015-09-22 moko
2842:
2843: * src/types/pa_vdate.C: FreeBSD 10 GPF fix (related to feature #36)
2844:
2845: * tests/results/131.processed: more tests for feature #1032
2846:
2847: * src/classes/date.C: minor fix related to feature #1032
2848:
2849: * operators.txt: ISO date creation documented (related to feature
2850: #1032)
2851:
2852: * operators.txt: iso-string documented (related to feature #1032)
2853:
2854: * tests/: 315.html, results/315.processed: more tests added
2855: (related to feature #1032)
2856:
2857: * tests/: 131.html, results/131.processed: date range checks
2858: updated (related to feature #36)
2859:
2860: * tests/: 315.html, results/057.processed, results/315.processed:
2861: test added for ISO date support (related to issue #315)
2862:
2863: * src/classes/date.C: more readable exceptions in date creation
2864: (related to ticket #1032)
2865:
2866: 2015-09-18 moko
2867:
2868: * tests/: 202.html, results/202.processed: ^date.iso-string[] check
2869: added (related to issue #1032)
2870:
2871: * tests/results/256.processed, src/classes/json.C: iso-string
2872: documented (related to issue #1032)
2873:
2874: * tests/: 256.html, results/256.processed: ISO date check added
2875: (related to issue #1032)
2876:
2877: * tests/: 057.html, results/057.processed, results/224.processed:
2878: tests results updated after ISO date support implemented (related
2879: to feature #1032)
2880:
2881: * src/: classes/date.C, classes/image.C, types/pa_value.h,
2882: types/pa_vdate.C, types/pa_vdate.h: ISO 8601 dates support added,
2883: ^date::create[string] constructor formalized, ^date.iso-string[]
2884: added (implements feature #1032)
2885:
2886: 2015-09-05 moko
2887:
2888: * operators.txt: actualized
2889:
2890: * operators.txt: date changes documented (related to ticket #36)
2891:
2892: 2015-09-04 moko
2893:
2894: * src/types/pa_vdate.C: warning war
2895:
2896: * src/: classes/op.C, types/pa_vhashfile.C: warning war
2897:
2898: 2015-09-03 moko
2899:
2900: * tests/results/096.processed: test result updated for 0..9999 year
2901: date range support (related to feature #36)
2902:
2903: * tests/: 314.html, results/314.processed: test for
2904: ^string:base64[], ^string:idna[], ^string:js-escape[] (related to
2905: bug #1031)
2906:
2907: * src/classes/string.C: Static calls fixed for ^string:base64[],
2908: ^string:idna[], ^string:js-escape[] (closes bug #1031)
2909:
1.116 moko 2910: * Makefile.am, acsite.m4, configure.ac, configure.in: Warning war:
2911: configure.in -> configure.ac
1.95 moko 2912:
1.116 moko 2913: * configure, configure.in, src/include/pa_config_auto.h.in: more
2914: correct timezone check for FreeBSD Warning war: configure.in ->
2915: configure.ac
1.95 moko 2916:
2917: * configure, configure.in, src/classes/Makefile.am,
1.116 moko 2918: src/include/pa_config_auto.h.in, src/lib/cord/Makefile.am,
2919: src/lib/gd/Makefile.am, src/lib/json/Makefile.am,
2920: src/lib/memcached/Makefile.am, src/lib/pcre/Makefile.am,
2921: src/lib/sdbm/Makefile.am, src/lib/smtp/Makefile.am,
2922: src/main/Makefile.am, src/targets/apache/Makefile.am,
2923: src/targets/cgi/Makefile.am, src/types/Makefile.am: INCLUDES ->
1.95 moko 2924: AM_CPPFLAGS (warning war) PA_DATE64 (0..9999 year date range)
2925: check added
2926:
2927: * src/types/pa_vdate.C: FreeBSD fixes + more robust code
2928:
2929: * tests/results/: 124.processed, 224.processed: test resuls updated
2930: for new date implementation (related to feature #36)
2931:
2932: * src/: classes/date.C, classes/image.C, include/pa_common.h,
2933: main/pa_common.C, types/pa_value.C, types/pa_vdate.C,
2934: types/pa_vdate.h: new double date implementation with internal
2935: support for extended 0..9999 year range, default timezone support
2936: (related to feature #36)
2937:
2938: 2015-08-28 moko
2939:
2940: * src/types/pa_vmail.C: fixed $mail:received.date calculations
2941: (fixes bug #1030)
2942:
2943: 2015-08-21 moko
2944:
2945: * src/classes/inet.C: snprintf size "bug" commented
2946:
2947: * src/main/pa_common.C: snprintf comments updated
2948:
2949: 2015-08-16 moko
2950:
2951: * src/types/: pa_vdate.C, pa_vdate.h: logic moved to pa_vdate.C
2952:
2953: 2015-08-11 moko
2954:
2955: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
2956: types/pa_vclass.C, types/pa_vobject.C: hash_json_string argument
2957: can be null (fixes bug #1029)
2958:
2959: 2015-08-06 moko
2960:
1.116 moko 2961: * src/types/: Makefile.am, pa_vdate.C, pa_vdate.h, types.vcproj:
2962: pa_vdate.C added
1.95 moko 2963:
2964: 2015-08-05 moko
2965:
2966: * tests/: 313.html, results/313.processed: test for
2967: ^table.count[columns] and ^table.flip[] with nameless tables
2968: (feature #1003)
2969:
2970: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
2971: max_cell added, now ^table.count[columns] and ^table.flip[] works
2972: correctly for nameless tables (implements feature #1003)
2973:
2974: 2015-08-03 moko
2975:
2976: * tests/312.html: test for ^table.append[$hash] and
2977: ^table.insert[$hash] added (related to feature #1028)
2978:
2979: * src/classes/table.C: ^table.append[$hash] and
2980: ^table.insert[$hash] now supported (implements feature #1028)
2981:
2982: * tests/: 312.html, results/312.processed: test row copy in
2983: ^table.hash[; $.type[table] ] added (related to feature #1016)
2984:
2985: * src/classes/table.C: row copy now created in ^table.hash[;
2986: $.type[table] ] (related to feature #1016)
2987:
2988: 2015-07-29 moko
2989:
2990: * tests/: 312.html, results/312.processed: test for ^table.delete[]
2991: added (related to feature #1016)
2992:
2993: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
2994: ^table.delete[] added to delete current row (related to feature
2995: 1016)
2996:
2997: 2015-07-28 moko
2998:
2999: * tests/: 312.html, results/312.processed: test for
3000: $table.column[value] and ^table.insert{row} (related to feature
3001: #1016)
3002:
3003: * src/: classes/table.C, include/pa_table.h, main/pa_table.C,
3004: types/pa_vtable.C, types/pa_vtable.h: $table.column[value] and
3005: ^table.insert{row} are now implemented (feature #1016)
3006:
3007: * src/include/pa_array.h: Optimization: bool reverse removed from
3008: append(), insert() added, memmove arguments order in remove()
3009: fixed (related to feature #1016)
3010:
3011: 2015-07-23 moko
3012:
3013: * src/classes/json.C: tainted json and empty json exception added
3014: (implements feature #1015)
3015:
3016: * tests/: 311.html, results/311.processed: empty json and tainted
3017: json exception test added (related to issue #1015)
3018:
3019: 2015-07-22 moko
3020:
3021: * tests/: 311.html, results/311.processed: test for UTF-8
3022: processing added
3023:
3024: * tests/: 311.html, results/311.processed: test for
3025: json_exception_with_source added (related to issue #394)
3026:
3027: * src/classes/json.C: json_exception_with_source added (implements
3028: feature #394)
3029:
3030: 2015-06-29 moko
3031:
3032: * src/: classes/file.C, include/pa_dir.h, main/pa_dir.C:
3033: directories are now correctly determined if _d_type == DT_UNKNOWN
3034: (closes bug #1027)
3035:
3036: 2015-06-10 moko
3037:
3038: * src/types/pa_vxnode.h: extern "C" not requred and causes build
3039: error if libxml has LIBXML_ICU_ENABLED.
3040:
3041: 2015-06-04 moko
3042:
3043: * tests/099.html: ups, reverting
3044:
3045: * tests/: 099.html, 309.html, 310.html, results/309.processed,
3046: results/310.processed: tests for $response:body[ $.file[] ] and
3047: $response:last-modified added
3048:
3049: * src/main/pa_request.C: last-modified check fixed
3050:
3051: 2015-06-03 moko
3052:
3053: * tests/: 204.html, 205.html, 293.html, results/204.processed,
3054: results/205.processed, results/293.processed: $response:headers
3055: logging added (tests for feature #1007)
3056:
3057: * src/: include/pa_common.h, include/pa_request.h,
3058: main/pa_request.C, types/pa_vmail.C, types/pa_vresponse.C:
3059: $response:headers are now in uppercase (closes feature #1007)
3060:
3061: 2015-06-02 moko
3062:
3063: * src/: include/pa_memory.h, classes/math.C: some of -pedantic
3064: build errors reverted for clang compatibility
3065:
3066: 2015-06-01 moko
3067:
3068: * src/include/pa_memory.h: -pedantic build errors fixed
3069:
3070: * src/classes/math.C: -pedantic build error fixed
3071:
3072: * src/classes/table.C: USE_STRINGSTREAM moved to the correct place
3073:
3074: 2015-05-31 moko
3075:
3076: * src/classes/table.C: USE_STRINGSTREAM optimized
3077:
3078: * src/: classes/file.C, classes/math.C, include/pa_opcode.h,
3079: include/pa_string.h, lib/json/pa_json.h, main/compile_tools.h,
3080: main/pa_charset.C, main/pa_globals.C, main/pa_string.C,
3081: types/pa_vmail.C, types/pa_vmethod_frame.C, types/pa_vregex.C,
3082: types/pa_vxnode.h: warning war (-pedantic flag)
3083:
3084: 2015-05-28 moko
3085:
3086: * tests/: 308.html, results/308.processed: test for
3087: ^table::create[$t;], etc work added (related to bug #975)
3088:
3089: * src/classes/table.C: check_option_param removed,
3090: ^table::create[$t;], etc now works (fixes bug #975)
3091:
3092: 2015-05-27 moko
3093:
3094: * src/main/pa_request.C: Invalid response filename in gcc 4.9.2
3095: (Debian jessie) fixed (closes issue #1024)
3096:
3097: * tests/Makefile: sort added as in Debian jessie list become
3098: unsorted
3099:
3100: 2015-05-18 moko
3101:
3102: * tests/: 201.html, results/201.processed: test for
3103: ^string.trim[what] feature #1022
3104:
3105: * src/classes/string.C: ^string.trim[what] now supported,
3106: implements feature #1022
3107:
3108: 2015-05-17 moko
3109:
3110: * tests/results/185.processed: test result updated as feature #1021
3111: implemented (left/right accept negative parameter)
3112:
3113: * src/classes/string.C: left/right now accept negative parameter
3114: (implements feature #1021)
3115:
3116: 2015-05-08 moko
3117:
3118: * src/classes/math.C: isalnum -> pa_isalnum
3119:
3120: * src/main/execute.C: optimization in getter-junction processing
3121: (related to issue #997)
3122:
3123: 2015-05-07 moko
3124:
3125: * tests/: 307.html, results/307.processed: test for issue #997
3126: added
3127:
3128: * src/main/execute.C: process_getter result now checked if junction
3129: returned (closes issue #997)
3130:
3131: * tests/: 305.html, results/305.processed: sort added to ignore
3132: different order
3133:
3134: * src/types/pa_vxnode.C: & now untainted in $node.nodeValue
3135: assignment (closes issue #994)
3136:
3137: * tests/: 306.html, results/306.processed: test for issue #994
3138: added
3139:
3140: * tests/: 303.html, results/303.processed: two more errors tested
3141:
3142: 2015-05-06 moko
3143:
3144: * tests/: 305.html, results/305.processed: test for name2ip &
3145: ip2name added (related to feature #992)
3146:
3147: * tests/: 303.html, 304.html, results/303.processed,
3148: results/304.processed: tests for idna conversion added (related
3149: to issue #849)
3150:
3151: 2015-05-02 moko
3152:
3153: * src/classes/inet.C: ^inet:ip2name[] and ^inet:name2ip[]
3154: implemented
3155:
3156: 2015-04-30 moko
3157:
3158: * src/main/pa_http.C: idna_host added, related to issue #849
3159:
3160: * src/main/pa_http.C: set_addr corrected, pa_idna_encode call added
3161: (related to issue #849)
3162:
3163: 2015-04-24 moko
3164:
3165: * src/types/pa_vjunction.C: warning war
3166:
3167: * src/lib/punycode/: pa_idna.h, pa_punycode.h: code style
3168: unification
3169:
3170: * src/lib/punycode/pa_idna.c: warning war
3171:
3172: 2015-04-22 moko
3173:
3174: * src/main/main.vcproj: punycode include path added
3175:
3176: * src/lib/punycode/pa_idna.c: windows compile error fixed
3177:
3178: * src/lib/punycode/pa_idna.c: warning war
3179:
3180: * parser3.sln, src/lib/punycode/punycode.vcproj: punycode windows
3181: project file added
3182:
3183: * src/lib/punycode/pa_convert_utf.c: debug compilation fix
3184:
3185: * src/include/pa_memory.h: warning war
3186:
3187: * src/: classes/string.C, include/pa_common.h, main/pa_common.C:
3188: ^string:idna[xn--...], ^string.idna[] - idna conversion support
3189: implemented (related to feature #849)
3190:
3191: * configure.in, src/main/Makefile.am,
3192: src/targets/apache/Makefile.am, src/targets/cgi/Makefile.am:
3193: libpunycode added in Unix
3194:
3195: 2015-04-21 moko
3196:
3197: * configure.in: large files support
3198:
3199: 2015-04-15 moko
3200:
3201: * src/lib/punycode/: Makefile.am, pa_convert_utf.c,
3202: pa_convert_utf.h, pa_idna.c, pa_idna.h, pa_punycode.c,
3203: pa_punycode.h: initial version for punycode/idna support library
3204: (ticket #849)
3205:
3206: 2015-04-08 moko
3207:
3208: * src/: classes/curl.C, classes/date.C, classes/file.C,
3209: classes/image.C, classes/mail.C, classes/reflection.C,
3210: classes/string.C, classes/xnode.C, include/pa_request.h,
3211: include/pa_string.h, include/pa_stylesheet_connection.h,
3212: main/compile.y, main/compile_tools.h, main/execute.C,
3213: main/pa_common.C, main/pa_request.C, main/pa_string.C,
3214: main/pa_xml_io.C, main/untaint.C, types/pa_vclass.C,
3215: types/pa_vcookie.C, types/pa_vfile.C, types/pa_vform.C,
3216: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
3217: types/pa_wwrapper.h, main/compile.tab.C: removed most of the
3218: clang compiler warnings (closes issue #1018)
3219:
3220: * src/include/pa_string.h: String::Body comparation operators with
3221: char * added (related to issue #958)
3222:
3223: 2015-04-07 moko
3224:
3225: * src/main/compile.tab.C: YYMALLOC/YYFREE defined to
3226: pa_malloc/pa_free to remove system malloc/free usage (related to
3227: issue #1018)
3228:
3229: * src/: classes/table.C, classes/xdoc.C, doc/memory.dox,
3230: include/pa_hash.h, include/pa_memory.h, lib/gd/gif.C,
3231: lib/gd/gif.h, lib/smtp/smtp.C, main/compile.y, main/pa_charset.C,
3232: main/pa_http.C, main/pa_request.C, main/pa_string.C,
3233: main/pa_xml_io.C, targets/apache/mod_parser3_core.C,
3234: types/pa_vconsole.h, types/pa_vdouble.h, types/pa_vfile.C,
3235: types/pa_vform.C, types/pa_vint.h: new(UseGC) replaced with new,
3236: malloc/strdup/free replaced with pa_ version and checks for
3237: accidental use of non-pa_ version added (related to issue #1018)
3238:
3239: 2015-04-03 moko
3240:
3241: * buildall: pcre-8.33 -> pcre-8.36
3242:
3243: * src/: main/compile.y, classes/form.C, classes/mail.C,
3244: classes/op.C, classes/string.C, main/compile.tab.C,
3245: main/compile_tools.C, main/pa_http.C, main/pa_request.C,
3246: main/pa_sql_driver_manager.C, types/pa_vfile.C,
3247: types/pa_vhashfile.C: C++11 compilation errors fixed (related to
3248: ticket #958)
3249:
3250: * src/: classes/file.C, include/pa_common.h, include/pa_sapi.h,
3251: main/pa_common.C, main/pa_http.C, main/pa_request.C,
3252: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
3253: targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_vform.C,
3254: types/pa_vform.h, types/pa_vrequest.C, types/pa_vrequest.h:
3255: $request:headers, $request:method added (implements feature
3256: #1007)
3257:
3258: 2015-03-17 misha
3259:
3260: * tests/302.html: - test for
3261: ^json:string[...;$._default[method-name]]
3262:
3263: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
3264: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C: - if
3265: option $._default[method-name] is specified in ^json:string[], a
3266: method with specified name will be called for classes/objects
3267: serialization ( new feature: #982 )
3268:
3269: 2015-03-16 misha
3270:
3271: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
3272: main/compile_tools.h, main/execute.C, types/pa_vconsole.h,
3273: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.C,
3274: types/pa_venv.h, types/pa_vform.C, types/pa_vform.h,
3275: types/pa_vhashfile.h, types/pa_vjunction.C, types/pa_vjunction.h,
3276: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
3277: types/pa_vmemory.h, types/pa_vmethod_frame.C,
3278: types/pa_vmethod_frame.h, types/pa_vregex.C, types/pa_vrequest.C,
3279: types/pa_vrequest.h, types/pa_vstateless_class.C,
3280: types/pa_vstateless_class.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
3281: types/pa_vxnode.C, types/pa_vxnode.h: - $var.CLASS &
3282: $var.CLASS_NAME now have special opcodes. This can be switched
3283: off by commenting #define OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL
3284: on pa_opcode.h ( new feature: #844 )
3285:
3286: 2015-03-15 misha
3287:
3288: * tests/075.html: - test for $response:header[]
3289:
3290: * src/types/pa_vresponse.C: - $response:header[] deletes header
3291: that was set earlie ( new feature: #1001 )
3292:
3293: 2015-03-12 misha
3294:
3295: * tests/246.html: - more tests for ^hash._at[]
3296:
3297: * src/: classes/hash.C, include/pa_hash.h: - ^õýø._at[...] now
3298: accepts second param [key|value|hash] ( new feature: #1012 )
3299:
3300: 2015-03-09 moko
3301:
3302: * src/types/pa_vmail.C: exception for everything but
3303: $mail:received, closes issue #1011
3304:
3305: 2015-02-20 moko
3306:
3307: * tests/: 275.html, results/275.processed: hex detection in
3308: pa_atoui fix test (closes issue #1010)
3309:
3310: * src/main/pa_string.C: hex detection in pa_atoui fixed (closes
3311: issue #1010)
3312:
3313: 2015-02-17 moko
3314:
3315: * src/types/pa_vmail.C: closes issue #1009 - mail content should be
3316: tainted.
3317:
3318: 2015-02-03 misha
3319:
3320: * tests/301.html: - test for ^json:string($double) causes
3321: exception. bugfix: #1008
3322:
3323: * src/classes/json.C: - ^json:string($double) causes exception.
3324: bugfix: #1008
3325:
3326: * tests/014.html: - updated for work with ^hash.delete[]
3327:
3328: 2015-01-12 misha
3329:
3330: * src/: classes/form.C, include/pa_common.h,
3331: include/pa_request_info.h, main/pa_common.C, types/pa_vform.C,
3332: types/pa_vform.h: - supports body with PUT method as well ( new
3333: feature: #1006 )
3334:
3335: * src/classes/file.C: - warnings war
3336:
3337: 2015-01-11 misha
3338:
3339: * tests/300.html: - test for ^hash.delete[] is added
3340:
3341: * src/classes/hash.C: - ^hash.delete[] clear all hash ( new
3342: feature: #989 ) - tiny optimization in intersects
3343:
3344: 2015-01-06 moko
3345:
3346: * src/types/pa_vmail.C: file names transcode added, to and cc added
3347: with transcode, attachments detection fixed
3348:
3349: * src/main/pa_request.C: filling mail received after cgi/auto.p
3350: load to allow charset switch (related to issue #996)
3351:
3352: 2014-12-31 moko
3353:
3354: * src/types/pa_vmail.C: from and subject now transcoded if not
3355: UTF-8 source charset (fixes issue 996)
3356:
3357: * src/main/pa_exception.C: fixed string from stack bug (closes
3358: issue #1000)
3359:
3360: 2014-12-11 misha
3361:
3362: * src/types/pa_vhashfile.C: - check if key is not empty before
3363: access ( bug fix: #1005 )
3364:
3365: 2014-11-13 misha
3366:
3367: * src/main/compile.y: - PC.append does not reset to false while
3368: creating a new class. bugfix: #990
3369:
3370: * tests/299.html: - test for creation class after working with
3371: partial class (create+append)
3372:
3373: * src/types/pa_vobject.C: - @GET[def] always returns true. bugfix:
3374: #995
3375:
3376: * tests/232.html: - test for @get[def] added
3377:
3378: 2014-10-12 moko
3379:
3380: * src/lib/pcre/pcre_internal.vcproj: correct path
3381:
3382: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
3383: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
3384: lib/pcre/pcre_internal.vcproj, main/main.vcproj,
3385: targets/apache/ApacheModuleParser3.vcproj,
3386: targets/apache/ApacheModuleParser3Core.vcproj,
3387: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
3388: types/types.vcproj: project GUID inserted in *.vcproj for correct
3389: conversion in newer VS versions
3390:
3391: * parser3.sln, src/lib/pcre/pcre_internal.vcproj:
3392: pcre_internal.vcproj added
3393:
3394: 2014-08-28 moko
3395:
3396: * src/lib/pcre/: Makefile.am, pa_pcre_chartables.c,
3397: pa_pcre_internal.h, pa_pcre_valid_utf8.c: _pcre_default_tables
3398: and pcre_valid_utf are copied to parser3 code (fixes issue #991)
3399:
3400: 2014-06-30 misha
3401:
3402: * tests/298.html: - tests for ^reflection:def[class;className]
3403: added
3404:
3405: * src/classes/reflection.C: - ^reflection:def[class;className]
3406: added ( new feature: #918 )
3407:
3408: 2014-06-29 misha
3409:
3410: * src/classes/table.C: - ^table::create[unsupported data] -
3411: exception comment changed to "body must be table or code" ( bug
3412: fix: #951 )
3413:
3414: * tests/: 261.html, results/261.processed: - tests for
3415: ^json:string[...;$.void[null|string]] added
3416:
3417: * src/: classes/json.C, types/pa_value.h, types/pa_vvoid.h: - new
3418: option $.void[string|null] added to ^json:string[...] ( new
3419: feature: #952 )
3420:
3421: 2014-06-28 moko
3422:
3423: * src/classes/curl.C: $.charset now processed before other curl
3424: options (closes issue #980)
3425:
3426: 2014-05-23 misha
3427:
3428: * src/classes/json.C: - bug fix: #987
3429:
3430: 2014-05-04 misha
3431:
3432: * tests/: 253.html, 253_json.txt: - test for
3433: ^json:parse[$.int(false)] is added
3434:
3435: * src/classes/json.C: - To ^json:parse[] added option $.int(bool,
3436: default true). The option is similar to $.double(bool) but for
3437: integers.
3438:
3439: 2014-05-01 moko
3440:
3441: * src/classes/file.C: "PARSER_VERSION" -> PARSER_VERSION ( bugfix:
3442: #12 )
3443:
3444: 2014-04-16 moko
3445:
3446: * src/main/pa_http.C: response-charset option should finally work
3447: now (fix for issue #867)
3448:
3449: * src/main/pa_http.C: response-charset option should work now (fix
3450: for issue #867)
3451:
3452: 2014-03-07 moko
3453:
3454: * buildall: libgc moved
3455:
3456: * buildall: libgc moved
3457:
3458: 2013-12-29 moko
3459:
3460: * src/classes/string.C: ^string:js-unescape result now tainted,
3461: closes issue #966
3462:
3463: * tests/: 186.html, results/186.processed: ^string:js-unescape
3464: result now tainted, issue #966
3465:
3466: 2013-12-03 moko
3467:
3468: * src/: classes/memcached.C, types/pa_vmemcached.C,
3469: types/pa_vmemcached.h: memcached open $.skip-connect(true|false)
3470: option was added for http://www.parser.ru/forum/?id=79343
3471:
3472: * src/classes/file.C: bugfix for
3473: http://www.parser.ru/forum/?id=79337
3474:
3475: 2013-11-05 moko
3476:
3477: * configure.in, src/include/pa_version.h: 3.4.3 -> 3.4.4b
3478:
3479: * src/main/pa_globals.C: spelling fixed
3480:
3481: 2013-10-29 moko
3482:
3483: * src/lib/json/json.vcproj: json.c -> pa_json.C
3484:
3485: * src/lib/json/pa_json.C: C++ compatibility addes, related to issue
3486: #892
3487:
3488: * src/: classes/json.C, lib/json/Makefile.am, lib/json/json.c,
3489: lib/json/json.h, lib/json/pa_json.C: json.c -> pa_json.C (for
3490: exceptions to be thrown thougth json library), related to issue
3491: #892
3492:
3493: * src/main/pa_charset.C: avoid compilation bug in Debian 6.0.8 x32,
3494: related to issue #896
3495:
3496: 2013-10-24 moko
3497:
3498: * configure.in, src/include/pa_version.h: 3.4.3rc -> 3.4.3
3499:
3500: 2013-10-23 moko
3501:
3502: * README: actualization
3503:
3504: 2013-10-22 moko
3505:
3506: * src/targets/apache/mod_parser3.c: Adopted apache 2.4
3507: compatibility patch from Sergey Kirpichev
3508:
3509: * tests/: 297.html, results/297.processed: non-working getter fix
3510: test for issue #948
3511:
3512: * src/: include/pa_request.h, main/pa_request.C: Now getter is not
3513: called when saving value of $match variable in ^string.match[] to
3514: increase compatibility (related to issue #948).
3515:
3516: * src/: include/pa_request.h, targets/cgi/parser3.C: minor header
3517: usage optimization
3518:
3519: 2013-10-21 moko
3520:
3521: * tests/: 182.html, results/182.processed: local path removed for
3522: compatibility
3523:
3524: * tests/: 244.html, 253.html, 254.html, 275.html, 281.html,
3525: results/244.processed, results/253.processed,
3526: results/254.processed, results/275.processed,
3527: results/281.processed: try_catch -> try-catch
3528:
3529: * tests/: 288.html, 294.html, 296.html, results/288.processed,
3530: results/294.processed, results/296.processed: try_catch ->
3531: try-catch
3532:
3533: 2013-10-20 moko
3534:
3535: * tests/: 296.html, results/296.processed: test for xsl exception
3536: for issue #938 added.
3537:
3538: * src/: include/pa_xml_exception.h,
3539: main/pa_stylesheet_connection.C: forgotten to be replaced
3540: XmlException is now replaced (once again closes issue #938)
3541:
3542: 2013-10-19 misha
3543:
3544: * bin/auto.p.dist.in: - more mime-types are added
3545:
3546: 2013-10-18 moko
3547:
3548: * buildall: disable clock_gettime detection to avoid librt linking
3549: (which in turn depends on libpthread), related to issue #943
3550:
3551: 2013-10-18 misha
3552:
3553: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
3554: lib/smtp/smtp.vcproj, main/main.vcproj,
3555: targets/apache/ApacheModuleParser3Core.vcproj,
3556: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
3557: types/types.vcproj: - new locations for libxml2 includes where
3558: added to vcproj files
3559:
3560: 2013-10-18 moko
3561:
3562: * src/classes/: hashfile.C, op.C: hopefully last part of issue #948
3563: fix
3564:
3565: * tests/: 295.html, results/295.processed: test for issue #948
3566: updated
3567:
3568: * src/classes/table.C: hopefully last lost part for issue #948 fix.
3569: :)
3570:
3571: * tests/: 295.html, results/295.processed: test for issue #948
3572: added
3573:
3574: * src/: classes/hash.C, classes/string.C, classes/table.C,
3575: include/pa_request.h, types/pa_method.h: for getters and setters
3576: to be executed request.put_element should be called, not
3577: context.put_element (fixes issue #948)
3578:
3579: 2013-10-17 moko
3580:
3581: * src/classes/xdoc.C: libxml 2.9.1 compatibility with define
3582: LIBXML2_NEW_BUFFER check (closes issue #943)
3583:
3584: * buildall: libxml 2.9.1 build is broken --without-reader.
3585:
3586: 2013-10-16 moko
3587:
3588: * configure.in, src/include/pa_version.h: 3.4.3b -> 3.4.3rc
3589:
3590: * tests/: 294.html, results/294.processed: test for issue #938
3591:
3592: * src/: classes/xdoc.C, classes/xnode.C,
3593: include/pa_xml_exception.h, main/pa_xml_exception.C: XmlException
3594: now calls fixUTF8 if source charset is UTF-8 (closes issue #938)
3595:
3596: * buildall: pcre-8.30 -> pcre-8.33 libxml2-2.8.0 -> libxml2-2.9.1
3597: libxslt-1.1.26 -> libxslt-1.1.28
3598:
3599: * src/: include/pa_charset.h, lib/pcre/pa_pcre_internal.h,
3600: main/pa_charset.C: fixUTF8 method added to replace invalid UTF-8
3601: to '?', related to issue #938
3602:
3603: 2013-10-15 moko
3604:
3605: * src/: include/pa_common.h, main/pa_charset.C, main/pa_common.C,
3606: main/untaint.C: json chars 0x01-0x1F now are escaped as \u00XX,
3607: minor optimizations (closes issue #896)
3608:
3609: * tests/results/: 292.processed, 293.processed: results updated to
3610: comply with issue #896
3611:
3612: * tests/: 292.html, 293.html, results/292.processed,
3613: results/293.processed: tests for json escaping
3614:
3615: 2013-10-14 moko
3616:
3617: * src/: include/pa_common.h, main/pa_common.C: minor rearrangements
3618: and cleanup, code moved from .h to .C, no changes in code
3619:
3620: 2013-10-12 moko
3621:
3622: * tests/results/119.processed: updated test result commited
3623:
3624: * tests/: 291.html, results/291.processed: test for issue #894
3625: added
3626:
3627: * src/types/pa_wcontext.h: base methods call support function
3628: get_somebody_entered_some_class should not be true forever, as
3629: wcontext can have many get_elements calls (fixes issue #894)
3630:
3631: 2013-10-11 moko
3632:
3633: * tests/: 290.html, results/290.processed: test for junction GPF
3634: issue #942 added
3635:
3636: * src/types/pa_vmethod_frame.h: GPF if method junctions is passed
3637: to native method fixed (closes issue #942)
3638:
3639: * tests/: 158.html, results/158.processed: test for csv-string[]
3640: added
3641:
3642: * src/classes/table.C: minor fixes for table.csv-string[] (closes
3643: feature #907)
3644:
3645: * src/classes/table.C: ^table.csv-string[] from misha@ (implements
3646: feature #907)
3647:
3648: 2013-10-09 moko
3649:
3650: * src/: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
3651: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
3652: types/pa_vstateless_class.C: GET_default, SET_default now works
3653: properly not only in objects, but in classes as well (closes
3654: issue #903)
3655:
3656: * tests/: 289.html, results/289.processed: GET/SET_default now
3657: works in classes, not only objects, test case added, related to
3658: issue #903
3659:
3660: * tests/: 288.html, results/288.processed: test for endless
3661: recursion bug added (related to issue #903)
3662:
3663: 2013-10-05 moko
3664:
3665: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
3666: classes/table.C, main/execute.C, types/pa_method.h,
3667: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
3668: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
3669: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
3670: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmemcached.C,
3671: types/pa_vmemcached.h, types/pa_vmethod_frame.h,
3672: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
3673: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
3674: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
3675: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
3676: optimization: put_element no longer has "bool areplace" argument,
3677: related to issue #903
3678:
3679: 2013-10-03 moko
3680:
3681: * tests/results/182.processed: result for $.replace(false) test
3682: commited
3683:
3684: * src/classes/date.C: ^date::create(number) processed correctly
3685: (fixes issue #901)
3686:
3687: * src/classes/image.C: as_no_junction removed, as param can be
3688: expression (closes issue #931)
3689:
3690: * tests/233.html: test for issue #931 added
3691:
3692: 2013-10-02 moko
3693:
3694: * tests/: 182.html, 182_dir/a5.p: test for $.replace(true)
3695: modified, test for $.replace(false) added
3696:
3697: * src/main/compile_tools.h: forgotten class replace returned. :)
3698:
3699: 2013-09-30 moko
3700:
3701: * tests/: 141.html, results/141.processed: md5 tainting test added
3702:
3703: * src/: classes/op.C, include/pa_request.h, main/compile.y,
3704: main/compile_tools.h, main/pa_request.C: allow_class_replace
3705: implemented; $.replace option added to ^process and ^use
3706:
3707: 2013-08-27 moko
3708:
3709: * src/classes/: file.C, json.C, math.C, string.C, xdoc.C:
3710: cstr_to_string_body_untaint should be called with charsets for
3711: possible uri language and connection for possible sql language.
3712: related to issue #857
3713:
3714: * buildall: and -> or fixed
3715:
3716: 2013-08-26 moko
3717:
3718: * buildall: prepare_ functions logic changed to support
3719: gc-7.2d.tar.gz extracting to gc-7.2 directory
3720:
3721: 2013-08-23 moko
3722:
3723: * src/include/pa_config_fixed.h: gc and xml libs are now linked
3724: statically
3725:
3726: 2013-08-22 moko
3727:
3728: * src/classes/string.C: String::Empty used (related to issue #912)
3729: append_know_length removed (related to old GPF bug)
3730:
3731: 2013-08-21 moko
3732:
3733: * src/classes/math.C: untaint(L_AS_IS) added for md5 and sha1
3734:
3735: * src/classes/math.C: ^math:digest[...;$file] support added
3736: (related to ticket #857
3737:
3738: * tests/: 141.html, results/141.processed: ^math:digest[...;$file]
3739: implemented
3740:
3741: * src/types/pa_vhashfile.h: warning war
3742:
3743: * src/: classes/json.C, classes/op.C, include/pa_hash.h,
3744: include/pa_request.h, main/pa_request.C, types/pa_value.h:
3745: anti_endless_json_string_recoursion removed from request;
3746: json_string_recoursion added to json_options; $.indent[indent
3747: value] now supported and passed within recoursion closes feature
3748: #937
3749:
3750: * tests/: 287.html, results/287.processed: test for feature #937
3751:
3752: 2013-07-31 moko
3753:
3754: * src/lib/json/: json.c, pa_json.C: STATE__X -> STATE_XX for cygwin
3755: compilation having #define _S
3756:
3757: * src/main/pa_globals.C: cleanup
3758:
3759: 2013-07-30 moko
3760:
3761: * src/: classes/table.C, include/pa_common.h, main/pa_charset.C,
3762: main/pa_common.C: vs2003 warning war
3763:
3764: * src/lib/json/: json.c, pa_json.C: vs2003 warning war
3765:
3766: * src/lib/json/: json.c, pa_json.C: vs2003 compilation fix
3767:
3768: * src/lib/md5/pa_sha2.c: warning war
3769:
3770: 2013-07-29 moko
3771:
3772: * src/lib/json/: json.c, json.h, pa_json.C, pa_json.h: some libjson
3773: patches from github
3774:
3775: * src/: classes/bool.C, classes/double.C, classes/int.C,
3776: classes/memcached.C, include/pa_config_includes.h,
3777: types/pa_vfile.C, types/pa_vfile.h: warning war
3778:
3779: * src/lib/json/json.vcproj: C++ -> C
3780:
3781: * src/lib/json/: json.c, pa_json.C: C++ warning revert
3782:
3783: * src/lib/json/: json.c, pa_json.C: windows compatibility
3784:
3785: * src/lib/json/: json.c, pa_json.C: windows compatibility
3786:
3787: * src/lib/json/: json.c, pa_json.C: warning war
3788:
3789: * src/lib/json/: json.c, pa_json.C: win32 compilation issues fixes
3790:
3791: * src/include/pa_config_fixed.h: uint16_t added
3792:
3793: * configure.in: uint16_t check added
3794:
3795: * src/: classes/json.C, lib/json/JSON_parser.C,
1.116 moko 3796: lib/json/JSON_parser.h, lib/json/Makefile.am, lib/json/json.c,
3797: lib/json/json.h, lib/json/json.vcproj, lib/json/pa_json.C,
3798: lib/json/pa_json.h: JSON_parser with non-free licence is replaced
3799: with similar GPL licenced libjson (fixes issue #892)
1.95 moko 3800:
3801: 2013-07-25 moko
3802:
3803: * parser3.sln: dependencies added
3804:
3805: * parser3.sln, src/targets/apache/ApacheModuleParser3.vcproj,
3806: src/targets/apache/ApacheModuleParser3Core.vcproj: win32 apache
3807: module support
3808:
3809: * src/targets/apache/mod_parser3_core.C: win32 cleanup
3810:
3811: * src/targets/apache/mod_parser3.c: win32 apache 2.2 module
3812:
3813: 2013-07-23 moko
3814:
3815: * src/: include/pa_memory.h, main/pa_memory.C: non-working
3816: PA_DEBUG_GC_MEMORY removed
3817:
3818: * src/: main/pa_globals.C, targets/cgi/parser3.C:
3819: PA_DEBUG_DISABLE_GC compilation fix
3820:
3821: * src/: classes/op.C, classes/table.C, include/pa_request.h,
3822: main/pa_request.C: outdated RESOURCES_DEBUG removed
3823:
3824: * src/: main/pa_os.C, targets/cgi/parser3.C: headers cleanup,
3825: garbage cleanup
3826:
3827: * src/main/pa_common.C: warning war
3828:
3829: * src/: include/pa_http.h, main/pa_http.C: headers cleanup
3830:
3831: * src/: include/pa_common.h, main/pa_common.C: WIN32 -> _MSC_VER,
3832: minor cleanup
3833:
3834: * src/: include/pa_dir.h, main/pa_dir.C: loaddir under cygwin now
3835: uses cygwin, not WIN32 implementation
3836:
3837: * src/main/pa_exec.C: WIN32 -> _MSC_VER, under cygwin unix exec is
3838: able to exec shell scripts
3839:
3840: * src/classes/math.C: ifdef WIN32 cleanup
3841:
3842: * src/types/pa_vmemcached.C: LT_MODULE_EXT used
3843:
3844: * bin/auto.p.dist.in: libpq.so -> libpq.
3845:
3846: * src/classes/curl.C: LT_MODULE_EXT used
3847:
3848: * src/include/pa_config_fixed.h: LT_MODULE_EXT defined
3849:
3850: 2013-07-22 moko
3851:
3852: * src/include/: pa_config_fixed.h, pa_config_includes.h: win32
3853: includes fix
3854:
3855: * src/: main/pa_common.C, targets/cgi/parser3.C: includes cleanup
3856:
3857: * configure.in, src/include/pa_config_includes.h,
3858: src/lib/smtp/comms.C, src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
3859: src/main/pa_exec.C: includes cleanup
3860:
3861: * src/targets/cgi/parser3.C: 2012->2013
3862:
3863: * src/include/pa_version.h: 3.4.2 -> 3.4.3b
3864:
3865: * configure.in, src/include/pa_config_includes.h,
3866: src/include/pa_http.h, src/lib/json/JSON_parser.h,
3867: src/main/pa_random.C, src/main/pa_socks.C,
3868: src/types/pa_vstatus.C: cygwin support cleanup
3869:
3870: * configure.in: dirent.h check added
3871:
3872: * src/: include/pa_config_includes.h, include/pa_dir.h,
3873: main/pa_dir.C: includes cleanup, dirent.h check added filePath
3874: not copied
3875:
3876: 2013-07-21 moko
3877:
3878: * src/lib/cord/cord.vcproj: unused cordprnt.c removed
3879:
3880: * src/targets/cgi/: Makefile.am, getopt.c, getopt.h,
3881: parser3.vcproj: unused getopt.h / getopt.c removed
3882:
3883: * operators.txt, src/classes/file.C, tests/022.html,
3884: tests/results/022.processed: ^file:list[path][$.filter[regexp]
3885: $.stat(true)] usage commented
3886:
3887: * configure.in, src/classes/file.C, src/include/pa_dir.h,
3888: src/main/pa_dir.C: ^file:list[] now has dir column and when
3889: $.stat(true) it has size/*date columns modified patch from misha@
3890: that closes issue #914.
3891:
3892: * src/: include/pa_config_includes.h, main/pa_globals.C:
3893: PA_RELEASE_ASSERTS removed
3894:
3895: * src/lib/md5/pa_md5c.c: minor cleanup
3896:
3897: * src/lib/json/: JSON_parser.C, JSON_parser.h: headers cleanup,
3898: localeconv()->decimal_point usage remoed (related to issue #934)
3899:
3900: * src/lib/cord/: Makefile.am, cordprnt.c, include/cord.h: unused
3901: cordprnt.c removed
3902:
3903: * src/lib/sdbm/: sdbm.c, sdbm_pair.c, pa-include/pa_apr.h,
3904: pa-include/pa_errno.h, pa-include/pa_file_io.h,
3905: pa-include/pa_strings.h: includes cleanup
3906:
3907: * src/lib/md5/pa_md5c.c: headers cleanup
3908:
3909: 2013-07-20 moko
3910:
3911: * src/lib/cord/: cordbscs.c, cordprnt.c, cordxtra.c: includes
3912: cleanup
3913:
3914: 2013-07-19 moko
3915:
3916: * src/classes/math.C: extern "C" added for crypt
3917:
3918: 2013-07-18 moko
3919:
3920: * src/classes/math.C: fix redhat7.2 build
3921:
3922: 2013-07-17 moko
3923:
3924: * configure.in, src/include/pa_config_includes.h,
3925: src/include/pa_config_fixed.h: headers actualized (inttypes.h
3926: added for uint8/32/64_t)
3927:
3928: * src/lib/md5/: pa_md5.h, pa_md5c.c, pa_sha2.c, pa_sha2.h:
3929: pa_config_includes.h used for uint32/64_t
3930:
3931: 2013-07-16 moko
3932:
3933: * src/: include/pa_string.h, main/pa_string.C, types/pa_vform.C,
3934: types/pa_vform.h, types/pa_vobject.C, types/pa_vobject.h: warning
3935: war
3936:
3937: * src/main/compile.tab.C: compile.y was updated
3938:
3939: * src/main/compile.y: warning war
3940:
3941: * src/: include/pa_exception.h, main/pa_exception.C,
3942: main/pa_xml_exception.C: warning war
3943:
3944: * src/: include/pa_common.h, main/pa_common.C: warning war
3945:
3946: * configure.in: beauty :)
3947:
3948: * tests/: 141.html, results/141.processed: sha256/512 added
3949:
3950: 2013-07-13 moko
3951:
3952: * src/lib/md5/md5.vcproj: sha2 added
3953:
3954: * src/: lib/md5/pa_sha2.c, lib/md5/pa_sha2.h, lib/md5/Makefile.am,
3955: classes/math.C: sha2 support (sha256/sha512 digest)
3956:
3957: 2013-07-08 moko
3958:
3959: * src/classes/image.C: directory read or other read problem message
3960: fixed (related to issue #933)
3961:
3962: 2013-07-07 moko
3963:
3964: * bin/auto.p.dist.in: windows-1251 commented to remove auto.p
3965: dependense from $charsetsdir directory existance and content (and
3966: UTF-8 is default allready)
3967:
3968: * AUTHORS: + misha + moko. :)
3969:
3970: 2013-07-06 moko
3971:
3972: * src/: classes/curl.C, include/pa_globals.h,
3973: include/pa_sql_driver_manager.h, lib/memcached/pa_memcached.C,
3974: main/pa_globals.C, main/pa_sql_driver_manager.C: pa_dlinit added
3975: for lt_dlinit to be called once and lt_dlexit called at right
3976: place (related to issue #925)
3977:
3978: 2013-07-04 moko
3979:
3980: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstring.C:
3981: VString::as_vfile now uses vfile.set_binary_string to avoid
3982: content-type to be set, as it brokes badly designed logic in
3983: response output. This hopefully finishes issue #928.
3984:
3985: * tests/results/: 256.processed, 286.processed: file now displayed
3986: as name, size, mode, content-type
3987:
3988: * src/main/pa_common.C: read error now reported cottectly (fixes
3989: issue #933
3990:
3991: 2013-06-28 moko
3992:
3993: * tests/: 286.html, results/286.processed: test extended
3994:
3995: * tests/: 286.html, results/286.processed: Test for issue #928
3996: added. it tests default content-type change.
3997:
3998: * src/types/pa_vfile.C: closes issue #928 - default content-type
3999: now updated
4000:
4001: 2013-06-25 moko
4002:
4003: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h: default
4004: content-type for text/binary files without name added;
4005: ^file::create[$f;...] options now works properly and $f
4006: properties are default (fixes issue #928)
4007:
4008: 2013-05-16 misha
4009:
4010: * src/include/pa_opcode.h: - define for OBJECT_POOL optimisation is
4011: added
4012:
4013: * src/main/pa_table.C: - a tiny memory optimisation while creating
4014: table if specified limit is bigger than source rows count
4015:
4016: * src/classes/table.C: - ^table.foreach[k;v]{code}[separator] is
4017: added ( new feature: #858 )
4018:
4019: 2013-04-29 moko
4020:
4021: * src/classes/curl.C: CURL_IPRESOLVE_V4 now set by default,
4022: $.ipresolve(0|1|2) added (closes issue #891)
4023:
4024: * src/lib/curl/curl.h: CURL_IPRESOLVE added
4025:
4026: 2013-04-24 moko
4027:
4028: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
4029: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
4030: types/pa_vmemcached.h: ^memcache.release[] added, calls
4031: memcached_quit (refs #893)
4032:
4033: 2013-04-22 moko
4034:
4035: * src/: include/pa_string.h, main/pa_common.C: no more double
4036: slashes in file path (fixes bug #872)
4037:
4038: * src/: classes/curl.C, lib/curl/curl.h: minor fixes related to
4039: CURLOPT_ENCODING renamed into CURLOPT_ACCEPT_ENCODING (issue
4040: #739)
4041:
4042: * tests/results/266.processed: $.max_params added (feature #915)
4043:
4044: * src/: include/pa_common.h, main/pa_http.C: response-charset
4045: option added to file::load (closes issue #867)
4046:
4047: 2013-04-20 misha
4048:
4049: * src/classes/curl.C: - forgotten CURL_ACCEPT_ENCODING option is
4050: commited
4051:
4052: 2013-03-15 misha
4053:
4054: * src/classes/: hash.C, table.C: - Optimisation: do not create
4055: multiple empty strings while ::sql. uae String::Empty instead
4056:
4057: 2013-03-14 misha
4058:
4059: * src/classes/reflection.C: - for user classes
4060: ^reflection:method_info[] returns $.max_params and $.extra_param
4061: with $.call_type if they available ( new feature: #915 )
4062:
4063: * src/classes/file.C: - ^file:delete[] now supports an option
4064: $.exception(false) that suppress any exception while deleting
4065: file ( new feature: #916 )
4066:
4067: * src/classes/curl.C: - parsing cookies after curl:load now should
4068: work :)
4069:
4070: 2013-03-12 misha
4071:
4072: * src/types/pa_vfile.C: - if specified file_name is empty string
4073: set default name for the file
4074:
4075: 2013-03-11 misha
4076:
4077: * src/classes/curl.C: - after $f[^curl:load[...]] the cookies are
4078: also available in $f.cookies
4079:
4080: * src/: include/pa_http.h, main/pa_http.C: - parsing cookies is
4081: moved to a separate method
4082:
4083: 2013-03-10 moko
4084:
4085: * src/include/pa_config_fixed.h: typedef unsigned int uint32_t
4086: added
4087:
4088: * src/lib/memcached/pa_memcached.h: typedef unsigned int uint32_t
4089: removed (declared by autoconf)
4090:
4091: * configure.in: AC_TYPE_SSIZE_T, AC_TYPE_UINT32_T added for
4092: uint32_t define
4093:
4094: 2013-03-10 misha
4095:
4096: * src/classes/file.C: ^file:delete and ^file:move now support
4097: option $.keep-empty-dirs(true) ( new feature: #884 )
4098:
4099: * src/: include/pa_common.h, main/pa_common.C: - option for keeping
4100: empty dirs is added
4101:
4102: 2013-03-10 moko
4103:
4104: * src/classes/: bool.C, double.C, int.C: default can be present,
4105: but default check removed from ^int/double/bool.int/double/bool
4106: for string.int/double/bool compatibility (related to issue #913)
4107:
4108: * src/classes/string.C: ^string.int/dobule/bool no longer
4109: internally throws exception if default is present (closes issue
4110: #913)
4111:
4112: 2013-03-09 misha
4113:
4114: * src/types/: pa_vhash.h, pa_vregex.h, pa_vtable.h: - tiny
4115: optimisations ( #845 )
4116:
4117: * src/types/pa_venv.C: - added $env:fields ( new feature: #906 )
4118:
4119: 2013-03-08 moko
4120:
4121: * src/main/pa_http.C: GPF on ^cookies:save fixed, $file.cookies now
4122: creates correct table (fixes issue #910)
4123:
4124: * src/classes/op.C: r.connection() -> r.connection(false) to allow
4125: use outside of 'connect' operator (fixes issue #911)
4126:
4127: * tests/results/: 096.processed, 122.processed: test results
4128: updated as doubles now printed with 15 significant digits, not 5
4129: (fixes issue #882)
4130:
4131: * src/types/pa_vdouble.h: %.15g now used to format doubles instead
4132: of broken has_frac() ? "%g": "%.0f" logic (fixes issue #882)
4133:
4134: 2013-02-21 moko
4135:
4136: * src/classes/table.C: _locate_name_value does not check arguments
4137: count, so we check it in advance (fixes issue #905)
4138:
4139: 2012-10-23 moko
4140:
4141: * buildall: old shell for and echo compatibility (for six)
4142:
4143: 2012-10-19 moko
4144:
4145: * buildall: --strip added --disable-safe-mode listed in usage
4146:
4147: 2012-10-17 misha
4148:
4149: * src/classes/op.C: - apply-taint should not throw "outside
4150: connect" exception with sql lang now
4151:
4152: 2012-10-17 moko
4153:
4154: * src/main/pa_request.C: bugfix: safe mode should be inited for
4155: each request (for apache module)
4156:
4157: 2012-09-26 moko
4158:
4159: * src/doc/doxygen.cfg: png -> svg
4160:
4161: 2012-09-25 moko
4162:
4163: * tests/: 141.html, results/141.processed: md5 hmac added, long key
4164: test added
4165:
4166: * src/classes/math.C: HMAC for MD5 added, bugfix for tempdigest
4167: double use when key is long
4168:
4169: 2012-09-16 moko
4170:
4171: * src/classes/math.C: Format -> Method Encode -> Format
4172:
4173: * tests/: 141.html, results/141.processed: math:digest hmac test
4174: added
4175:
4176: 2012-09-14 moko
4177:
4178: * src/classes/math.C: SHA1ReadDigest added and used in ^sha1.
4179: ^digest[sha1|md5;data; $.encode[base64|hex] $.hmac[key]] basic
4180: implementation added
4181:
4182: 2012-09-12 moko
4183:
4184: * src/doc/: doxygen.cfg, footer.htm, index.dox, string.dox,
4185: targets.dox: doxygen.cfg and footer.htm updated for doxygen 1.7.3
4186: targets.dox and string.dox slightly actualized
4187:
4188: 2012-08-31 moko
4189:
4190: * ChangeLog: now generated with patched cvs2cl.pl
4191:
4192: 2012-07-29 moko
4193:
4194: * tests/285.html, src/main/execute.C, tests/results/285.processed:
4195: result should be pushed after VMethodFrame destructor is called,
4196: as it deletes junctions from stack params (fixes issue #868)
4197:
4198: 2012-07-23 moko
4199:
4200: * INSTALL, README: buildall script usage documented, other outdated
4201: info updated.
4202:
4203: * buildall-with-xml, buildall-without-xml: replaced by buildall
4204:
4205: 2012-07-21 moko
4206:
4207: * buildall: glib does not compile when threads are disabled...
4208:
4209: * src/types/pa_vmail.C: g_assertion fixes for empty input
4210:
4211: * src/types/pa_vmail.C: yet another fix (strange GPF on object
4212: unref, can't unref nested objects)
4213:
4214: * src/types/pa_vmail.C: another check added
4215:
4216: 2012-07-19 moko
4217:
4218: * buildall: usage added
4219:
4220: * buildall: new buildall script that unites buildall-with-xml,
4221: buildall-without-xml, --with-apache and --with-mailreceive
4222:
4223: * configure.in: support for static gmime and dynamic glib linking.
4224: fixes for FreeBSD
4225:
4226: 2012-07-17 moko
4227:
4228: * configure.in: --with-mailreceive replaced
4229: --with-static-mailreceive and --with-shared-mailreceive pathlink
4230: removed
4231:
4232: 2012-07-16 moko
4233:
4234: * src/types/pa_vmail.C: updated to work gmime 2.6, headers now
4235: capitalized, content now decoded and text content converted to
4236: $request:charset. all properties are accessed by functions, this
4237: ready for dynamic load.
4238:
4239: 2012-06-28 moko
4240:
1.116 moko 4241: * src/targets/apache/Makefile.am: fix for apache cflags for Linux
4242: 32 bit
1.95 moko 4243:
4244: 2012-06-27 moko
4245:
4246: * buildall-with-xml, buildall-without-xml: fetch requires -p for
4247: passive ftp
4248:
4249: * src/lib/ltdl/ltdl.vcproj: release build fixed
4250:
4251: * configure.in: 3.4.2 RC -> 3.4.2
4252:
4253: 2012-06-22 moko
4254:
4255: * src/types/pa_vfile.C: returned empty mode to stated files (issue
4256: #815)
4257:
4258: * tests/: 284.html, results/284.processed: output options test
4259: (feature #265)
4260:
4261: 2012-06-22 misha
4262:
4263: * tests/215.html: - little changes
4264:
4265: 2012-06-21 moko
4266:
4267: * src/: classes/json.C, classes/xdoc.C, types/pa_vxdoc.C,
4268: types/pa_vxdoc.h: output_options returned and used (bugfix for
4269: feature #265)
4270:
4271: * buildall-with-xml, buildall-without-xml: --with-match-limit=10000
4272: breaks long .*, default 10M restored. (issue #216)
4273:
4274: * tests/: 283.html, results/283.processed: test for issue #815
4275: added
4276:
4277: * src/types/: pa_vfile.C, pa_vstring.C: bugfix: ^#0D not altered
4278: again, cstrm not required.
4279:
4280: * src/lib/ltdl/: argz.c, ltdl.c, libltdl/lt__glibc.h: fixes for
4281: Win32 and broken FreeBSD (issue #45)
4282:
4283: * src/lib/ltdl/ltdl.vcproj: preopen.c and config.h removed
4284:
4285: * src/main/pa_string.C: warnings war
4286:
4287: * src/: classes/mail.C, include/pa_dir.h, include/pa_http.h,
4288: lib/json/JSON_parser.h, lib/smtp/smtp.h, main/pa_random.C,
4289: main/pa_socks.C, targets/apache/pa_threads.C,
4290: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
4291: types/pa_vstatus.C: compilation under cygwin fixed
4292:
4293: 2012-06-19 moko
4294:
4295: * src/lib/ltdl/: config_fixed.h, ltdl.vcproj: compilation under
4296: Windows fixed
4297:
4298: * parser3.sln: removed antique pcre_ctype
4299:
4300: * src/include/pa_config_fixed.h: required for INT_MAX / UINT_MAX
4301:
4302: * src/include/pa_config_fixed.h: undefined reference to
4303: __imp__pcre_* fix for Windows
4304:
4305: * src/: include/pa_charset.h, lib/pcre/Makefile.am,
1.116 moko 4306: lib/pcre/pa_pcre_internal.h, lib/pcre/pcre_internal.h:
4307: pcre_internal.h -> pa_pcre_internal.h for Windows compatibility
4308: (win32/pcre has own copy of pcre_internal.h _pcre_default_tables
4309: define fixed
1.95 moko 4310:
4311: 2012-06-18 moko
4312:
4313: * src/classes/memcached.C: flush -> clear
4314:
4315: * src/classes/memcached.C: memcached does not support quotes even
4316: in server name
4317:
4318: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
4319: lib/memcached/pa_memcached.h, types/pa_vmemcached.C: version()
4320: called on open to check servers existance. $.key(true) syntax
4321: now supported
4322:
4323: 2012-06-17 moko
4324:
4325: * src/include/: pa_config_fixed.h, pa_config_includes.h: old stuff
4326: cleanup
4327:
4328: * src/classes/table.C, tests/282.cfg, tests/282.html,
4329: tests/results/282.processed: encloser at the EOF bug fixed,
4330: incorrectly enclosed data now processed more logicaly (fixes
4331: #339)
4332:
4333: 2012-06-15 moko
4334:
4335: * buildall-without-xml: sync with buildall-with-xml
4336:
4337: * buildall-with-xml: download auto-detected between fetch and curl
4338:
4339: * configure.in: --with-gc and --with-pcre now also processed
4340: correctly
4341:
1.116 moko 4342: * aclocal.m4, configure, src/include/pa_config_auto.h.in: now
4343: aclocal -I src/lib/ltdl/m4/ && autoheader && automake && autoconf
4344: should be run on rol1 using automake / aclocal (GNU automake)
4345: 1.11.1 autoconf (GNU Autoconf) 2.68
1.95 moko 4346:
4347: * configure.in: new PARSER_VERSION logic
4348:
4349: * src/include/pa_version.h: new pa_version.h logic
4350:
4351: * src/: classes/curl.C, classes/file.C, classes/image.C,
4352: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
4353: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C:
4354: feols_normalized -> fis_text_content set_binary added
4355:
4356: * src/targets/cgi/parser3.C: gcc compilation warnings fixed
4357:
4358: 2012-06-15 misha
4359:
4360: * src/: classes/curl.C, classes/file.C, classes/image.C,
4361: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
4362: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C: -
4363: ^file::create[text;content] EOLs in content now is normalized. (
4364: new feature: #815 )
4365:
4366: 2012-06-15 moko
4367:
4368: * configure.in: --disable-version-update added to disable version
4369: update with host information (for debian package) whitespace
4370: optimized
4371:
4372: * configure.in: version changed to 3.4.2 RC no-pic added for
4373: libtool
4374:
4375: * src/include/pa_version.h: Nice pa_version.h default. Please keep
4376: it.
4377:
4378: 2012-06-14 moko
4379:
4380: * src/classes/hash.C, src/types/pa_vhash.h, tests/281.html,
4381: tests/results/281.processed: "hash flocked" error removed for
4382: safe operations like ^h._count[] ( new feature: #335 )
4383:
1.116 moko 4384: * src/targets/apache/Makefile.am: libmod_parser3 -> mod_parser3
1.95 moko 4385:
4386: * buildall-with-xml, buildall-without-xml: --with-static -> --with
4387:
4388: * configure.in: --with-static/shared xml replaced with --with-xml,
4389: xml compilation check added
4390:
4391: * configure.in: --with-static/shared-gc, --with-static-pcre are
4392: replaced with --with-gc and --with-pcre test for pcre linking
4393: added
4394:
4395: 2012-06-13 moko
4396:
4397: * configure.in: apxs2 check optimized
4398:
4399: * src/targets/cgi/Makefile.am: preserve-dup-deps requires .a, not
4400: .la, includes optimized
4401:
4402: * buildall-with-xml: --with-pic looks better for -fPIC
4403:
4404: * configure.in: switched to convenience library in static linking
4405:
4406: * src/targets/apache/Makefile.am: switched to convenience library
4407: usage to avoid libtool warnings
4408:
4409: * src/lib/: cord/Makefile.am, gd/Makefile.am, json/Makefile.am,
4410: md5/Makefile.am, memcached/Makefile.am, sdbm/Makefile.am,
4411: smtp/Makefile.am: switched to convenience library usage
4412:
4413: * src/sql/Makefile.am: pa_sql_driver.h should be in includes
4414:
4415: * src/targets/apache/Makefile.am: updated for libtool usage
4416:
4417: * bin/auto.p.dist.in: .cfg removed from charset names.
4418:
4419: * buildall-without-xml: --with-included-ltdl added
4420:
4421: * buildall-without-xml: sync with buildall-with-xml
4422:
4423: * buildall-with-xml: --with-included-ltdl added $cflags added for
4424: -fPIC for x64 $download added for wget success check added
4425:
4426: * buildall-without-xml: --with-dynamic-stdcpp removed
4427:
4428: * configure.in: disable-static returned
4429:
4430: * src/targets/cgi/Makefile.am: Automake 1.9 does not support
4431: LIBTOOLFLAGS
4432:
4433: 2012-06-12 moko
4434:
4435: * configure.in, src/targets/cgi/Makefile.am: disable-static not
4436: compatible with LIBTOOLFLAGS for unknown reasons
4437:
4438: * buildall-with-xml: --with-dynamic-stdcpp removed
4439:
4440: * configure.in: static/dynamic -lstdc++ linking option removed
4441: apxs2 check added
4442:
4443: * src/targets/cgi/Makefile.am: static/dynamic -lstdc++ linking
4444: option removed
4445:
4446: 2012-06-10 moko
4447:
4448: * src/targets/cgi/Makefile.am: --preserve-dup-deps libtool option
4449: added
4450:
4451: * src/targets/cgi/pp3.cmd: old PAF stuff
4452:
1.116 moko 4453: * Makefile.am: ACLOCAL_AMFLAGS = -I src/lib/ltdl/m4 added and some
4454: beauty
1.95 moko 4455:
4456: * depcomp: from libtool 2.4.2
4457:
4458: * configure.in: ltdl directory removed, it has correct Makefile.in
4459:
4460: 2012-06-09 moko
4461:
1.116 moko 4462: * Makefile.am, aclocal.m4, config.guess, config.sub, configure,
4463: install-sh, ltmain.sh, missing, src/include/pa_config_auto.h.in:
1.95 moko 4464: autogenerated files updated after libtool update
4465:
1.116 moko 4466: * src/lib/ltdl/: COPYING.LIB, Makefile.am, README, acinclude.m4,
4467: aclocal.m4, argz.c, argz_.h, config-h.in, config.h,
1.95 moko 4468: config_auto.h.in, config_fixed.h, configure, configure.ac,
4469: configure.in, lt__alloc.c, lt__dirent.c, lt__strl.c,
4470: lt_dlloader.c, lt_error.c, ltdl.c, ltdl.h, slist.c,
4471: config/compile, config/config.guess, config/config.sub,
4472: config/depcomp, config/install-sh, config/ltmain.sh,
4473: config/missing, libltdl/lt__alloc.h, libltdl/lt__dirent.h,
4474: libltdl/lt__glibc.h, libltdl/lt__private.h, libltdl/lt__strl.h,
4475: libltdl/lt_dlloader.h, libltdl/lt_error.h, libltdl/lt_system.h,
4476: libltdl/slist.h, loaders/dld_link.c, loaders/dlopen.c,
4477: loaders/dyld.c, loaders/load_add_on.c, loaders/loadlibrary.c,
4478: loaders/preopen.c, loaders/shl_load.c, m4/argz.m4, m4/libtool.m4,
4479: m4/ltdl.m4, m4/ltoptions.m4, m4/ltsugar.m4, m4/ltversion.m4,
4480: m4/lt~obsolete.m4: libtool updated to version 2.4.2
4481:
4482: * configure.in: preparation for new libtool
4483:
4484: * configure.in: Some beauty added :)
4485:
4486: * src/targets/apache/Makefile.am: := -> =
4487:
4488: * src/lib/pcre/: Makefile.am, config.h: config.h removed once
4489: again. :)
4490:
4491: * src/include/pa_config_includes.h, configure.in: limits.h added,
4492: previously was taken from pcre_internal.h. :)
4493:
4494: * src/lib/pcre/Makefile.am: config.h returned
4495:
4496: * src/lib/pcre/config.h: still need this. :)
4497:
4498: * src/lib/pcre/pcre_internal.h: extracts from real pcre_internal.h
4499:
4500: * configure.in: --with-charsets removed; --with-mysql-client & co
4501: removed
4502:
4503: * buildall-with-xml, buildall-without-xml: pcre_internal.h extracts
4504: now in parser tree, no need to copy
4505:
4506: * src/lib/pcre/: Makefile.am, config.h, ibm-1250.ucm, ibm-1251.ucm,
4507: ibm-1254.ucm, ibm-1257.ucm, pcre_parser_ctype.c,
4508: pcre_parser_ctype.vcproj, ruspart_win2koi.pl, win-koi.tab:
4509: debian/patches/101_pcre.patch - local copy of pcre_internal.h
4510: extracts now used old trash removed
4511:
4512: * bin/auto.p.dist.in: all charsets are listed, utf-8 by default,
4513: rare charsets/drivers are commented, sql driver quessing removed
4514: (debian/patches/103_auto_p.patch)
4515:
4516: * etc/parser3.charsets/Makefile.am: charsets now in share
4517: (debian/patches/104_automake.patch) + all charsets are copied
4518:
4519: * buildall-with-xml, buildall-without-xml: curl option removed +
4520: extra arguments now supported
4521:
4522: 2012-06-08 misha
4523:
4524: * src/classes/table.C: - one params.as_hash usage was rolled back:
4525: the 2nd option in ^table.hash[] could be hash or table so
4526: .as_hash will throw an exception when table option is specified
4527:
4528: * src/: classes/curl.C, classes/file.C, classes/hash.C,
4529: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
4530: classes/table.C, classes/void.C, classes/xdoc.C,
4531: include/pa_exception.h, types/pa_vmethod_frame.C,
4532: types/pa_vmethod_frame.h: - MethodParams::as_hash is optimized
4533: and improved (whitespaces are allowed as empty options) -
4534: MethodParams::as_table is added - above methods are used for
4535: parsing methods' options ( new feature: #9 )
4536:
4537: * src/types/: pa_vclass.C, pa_vclass.h: - method get_hash is added
4538: to vclass. now class fields can be accessible as a hash:
4539: $h[^hash::create[$asd:CLASS]]
4540:
4541: * src/types/: pa_vhash.h, pa_vhashfile.h: - vhash and vhashfile now
4542: have get_fields method so their fields can be accessed with
4543: ^reflection:fields[...] & ^reflection:field[...]
4544:
4545: 2012-06-06 misha
4546:
4547: * tests/280.html: - tests for
4548: ^reflection:method[obj-or-class;method],
4549: ^reflection:field[obj-or-class;field] and
4550: ^reflection:fields[obj-or-class] are added
4551:
4552: 2012-06-05 misha
4553:
4554: * src/classes/reflection.C: - ^reflection:method[class or
4555: object;method name] and ^reflection:field[class or object;field
4556: name] are added
4557:
4558: * src/types/pa_vstateless_class.C: - Method::get_vjunction method
4559: is used
4560:
4561: * src/types/pa_method.h: - Method::as_vjunction method is added
4562:
4563: 2012-06-05 moko
4564:
1.116 moko 4565: * src/targets/Makefile.am: cgi now build with apache module
1.95 moko 4566:
4567: * src/classes/memcached.C: flish ttl fixed
4568:
4569: 2012-06-04 moko
4570:
4571: * src/classes/json.C, src/classes/op.C, tests/279.html,
4572: tests/results/279.processed: ^json:parse[] now supports $.taint
4573: option (new feature #833)
4574:
4575: 2012-06-04 misha
4576:
4577: * src/: include/pa_common.h, main/pa_common.C, types/pa_vcookie.C:
4578: - search_stop method was moved from pa_vcookie.C to pa_common.C
4579:
4580: 2012-06-03 misha
4581:
4582: * src/main/pa_http.C: - ^file:load[...;http://...] - all received
4583: cookies are parced and stored into $.cookies ( new feature: #31 )
4584:
4585: 2012-05-30 misha
4586:
4587: * tests/: 182_dir/a3.p, 182_dir/a4.p, 182.html: - test for adding
4588: incomplete class into a scope while @USE is found
4589:
4590: * src/main/compile.y: - add incomplete class into a scope while
4591: @USE and @CLASS instructions are found ( bugfix: #838 )
4592:
4593: 2012-05-30 moko
4594:
4595: * src/types/pa_vclass.C, tests/278.html,
4596: tests/results/278.processed: removed "property has no getter
4597: method" exception when GET_DEFAULT present (fixes #269)
4598:
4599: * src/classes/json.C, tests/277.html: ^json:string[], $.default ->
4600: $._default
4601:
4602: 2012-05-29 moko
4603:
4604: * src/types/pa_vvoid.h: $STRICT-VARS(true) implemented to check
4605: uninitialized values usage (new feature: #154)
4606:
4607: 2012-05-28 moko
4608:
4609: * tests/277.html, src/classes/json.C, src/classes/reflection.C,
4610: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
4611: src/types/pa_vdate.h, src/types/pa_vdouble.h,
4612: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vint.h,
4613: src/types/pa_vobject.C, src/types/pa_vobject.h,
4614: src/types/pa_vstring.h, src/types/pa_vtable.C,
4615: tests/results/277.processed, src/types/pa_vtable.h,
4616: src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h:
4617: ^json:string[$o; $.default[$method]] implemented for VObject (new
4618: feature #803)
4619:
4620: * src/classes/json.C, src/lib/json/JSON_parser.h, tests/277.html,
4621: tests/results/277.processed: json numbers are now treated as
4622: double ( new feature: #834 )
4623:
4624: * src/: classes/math.C, include/pa_string.h, main/pa_charset.C,
4625: main/pa_string.C, types/pa_vdouble.h, types/pa_vint.h: pa_atoui
4626: added for out of range checks, zero division in vint/vdouble
4627: check added ( fixes #832 )
4628:
4629: * tests/: 275.html, results/275.processed: tests for pa_atoui added
4630: ( fixes #832 )
4631:
4632: 2012-05-28 misha
4633:
4634: * buildall-with-xml: - --without-lzma option is added to libxml2
4635: configure
4636:
4637: * tests/256.html: - test for ^json:string[-file-;$.file[stat]] is
4638: added - tests for unsupported values for options $.file, $.table
4639: and $.date are added
4640:
4641: * src/: classes/json.C, types/pa_value.h: - ^json:string[...] now
4642: accepts "stat" $.file[] option's value in addition to existed
4643: "text" and "base64" ( new feature: #835 )
4644:
4645: * tests/276.html: - test for
4646: ^reflection:delete[$object-or-class;field-name]
4647:
4648: * src/classes/reflection.C: -
4649: ^reflection:delete[$object-or-class;field-name] is added ( new
4650: feature: #268 )
4651:
4652: 2012-05-27 misha
4653:
4654: * buildall-with-xml: - libxml2 2.7.8 => 2.8.0
4655:
4656: 2012-05-24 misha
4657:
4658: * src/include/pa_common.h: - method lastposafter was removed
4659:
4660: * src/classes/file.C: - use strrpbrk & rskipchars instead of
4661: lastposafter - ^file:dirname[] & Co proper handle windows file
4662: paths ( bug fix: #783 ) - ^file:dirname[] & ^file:basename[] now
4663: work as *nix commands
4664:
4665: * src/main/pa_request.C: - use strrpbrk instead of lastposafter
4666:
4667: * src/: include/pa_string.h, main/pa_string.C: - strrpbrk &
4668: rskipchars were added
4669:
4670: * tests/270.html: - more tests for ^file:find[]
4671:
4672: * tests/065.html: - more tests for ^file:dirname[] & Co
4673:
4674: * src/include/pa_version.h: - must be "win32" here. it is
4675: auto-generated on *nix
4676:
4677: 2012-05-24 moko
4678:
4679: * src/classes/math.C: ^math:convert[] now supports uint32 and
4680: throws overflow exception ( new feature: #830 )
4681:
4682: * tests/: 275.html, results/275.processed: test for ^math:convert[]
4683: uint32 support and overflow added ( new feature: #830 )
4684:
4685: 2012-05-23 moko
4686:
4687: * src/: classes/table.C, types/pa_value.h, types/pa_vbool.h,
4688: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
4689: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
4690: types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
4691: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
4692: types/pa_vregex.h, types/pa_vstateless_class.C,
4693: types/pa_vstateless_class.h, types/pa_vstring.h,
4694: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
4695: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: bool
4696: "return string as-is" removed from as_expr_result. ( new feature:
4697: #831 )
4698:
4699: * tests/results/244.processed: test changed after bug #782 fix
4700: commited
4701:
4702: * tests/results/229.processed: test results for bug #782 commited
4703:
4704: * tests/: 254.html, results/254.processed: uid now just compared,
4705: not printed. :)
4706:
4707: 2012-05-20 moko
4708:
4709: * src/classes/reflection.C: ^reflection:uid[$object] added ( new
4710: feature: #341 )
4711:
4712: * tests/: 254.html, results/254.processed: test for
4713: ^reflection:uid[] added
4714:
4715: * tests/: 254.html, results/254.processed: test for
4716: ^reflection:uid[$obj] added
4717:
4718: 2012-05-17 misha
4719:
4720: * src/main/untaint.C: - do not replace ' char by _26 while
4721: exploding filespec-tainting ( new feature: #829 )
4722:
4723: 2012-05-12 moko
4724:
4725: * src/types/pa_vvoid.h: is_string now also checked, but get_* -
4726: not.
4727:
4728: 2012-05-08 moko
4729:
4730: * src/types/pa_vmethod_frame.h: bug #782 fixed
4731:
4732: * tests/229.html: test for bug #782
4733:
4734: * tests/results/259.processed, src/main/pa_request.C,
4735: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
4736: src/types/pa_vstring.h, src/types/pa_vvoid.C,
4737: src/types/pa_vvoid.h: feature #154 - first empty param now
4738: string; defined locals are empty strings; $STRICT-VARS(true)
4739: added
4740:
4741: 2012-04-27 moko
4742:
1.116 moko 4743: * src/targets/apache/Makefile.am:
1.95 moko 4744: ../../lib/memcached/libmemcached.a added
4745:
4746: 2012-04-27 misha
4747:
4748: * buildall-with-xml, buildall-without-xml: - prce 8.12 => pcre 8.30
4749: ( #827 )
4750:
4751: 2012-04-25 moko
4752:
4753: * src/: classes/json.C, classes/memcached.C,
4754: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
4755: types/pa_vmemcached.C, types/pa_vmemcached.h: memcached_add
4756: implemented.
4757:
4758: * src/classes/curl.C: stderr -> f_stderr for Windows compatibility
4759:
4760: 2012-04-23 moko
4761:
4762: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
4763: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
4764: types/pa_vmemcached.h: open allows options hash for new
4765: memcached(options) function
4766:
4767: * src/classes/curl.C: check_safe_mode added, stderr now rewritten,
4768: not appended
4769:
4770: 2012-04-21 moko
4771:
4772: * src/classes/curl.C: '' added. :)
4773:
4774: * src/classes/classes.vcproj: new curl.h location
4775:
4776: * src/classes/curl.C: verbose output redirection from stderr to
4777: file curl option added
4778:
4779: 2012-04-20 moko
4780:
4781: * src/: classes/curl.C, lib/curl/curl.h: lib/curl/curl.h now
4782: contains what we need from curl, #ifdef HAVE_CURL removed
4783:
1.116 moko 4784: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 4785: src/include/pa_config_auto.h.in, src/include/pa_version.h,
1.116 moko 4786: src/lib/Makefile.am, src/lib/curl/Makefile.am,
4787: src/lib/curl/curl.h: curl.h header now in src/lib/curl, not
1.95 moko 4788: configure option
4789:
4790: 2012-04-19 moko
4791:
4792: * src/: classes/double.C, classes/inet.C, classes/int.C,
4793: classes/string.C, lib/gc/include/gc_allocator.h,
4794: types/pa_vform.C: PVS-Studio detected errors fixes, unused
4795: options from sql_result_string removed. (closes issue #468)
4796:
4797: * src/types/pa_vmemcached.C: empty string fix
4798:
4799: * src/types/: pa_value.C, pa_value.h, pa_vmemcached.C,
4800: pa_vstring.C, pa_vstring.h: serialization helpers moved to
4801: pa_vmemcached.C
4802:
4803: 2012-04-18 moko
4804:
4805: * src/targets/apache/mod_parser3.c: "Parser3 module requires
4806: apache2-mpm-prefork" error displayed in threaded mpm.
4807:
4808: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
4809: pa_setup_module_cells delayed to avoid GPF on init with php5-xsl
4810: installed (issue #354)
4811:
4812: 2012-04-16 moko
4813:
4814: * src/types/pa_vmemcached.C: call to memcached_result_create and
4815: memcached_result_free removed
4816:
4817: 2012-04-14 moko
4818:
4819: * src/lib/memcached/pa_memcached.h: uint32_t for Windows defined
4820:
4821: * src/types/pa_vmemcached.C: check_key added and used
4822:
4823: 2012-04-13 moko
4824:
4825: * src/: include/pa_string.h, types/pa_value.C, types/pa_value.h,
4826: types/pa_vmemcached.C, types/pa_vstring.C, types/pa_vstring.h:
4827: Serialization_data now added and used, VString now serialized
4828: with languages into memcached.
4829:
4830: 2012-03-28 moko
4831:
4832: * src/: types/pa_vmemcached.C, lib/memcached/pa_memcached.C,
4833: lib/memcached/pa_memcached.h: result lengths added
4834:
4835: 2012-03-27 moko
4836:
4837: * src/types/pa_vmemcached.C: strdup added
4838:
4839: 2012-03-24 moko
4840:
4841: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
4842: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
4843: types/pa_vmemcached.h: memcached: mget, flush, fttl added
4844:
4845: 2012-03-20 moko
4846:
1.116 moko 4847: * configure, configure.in: Makefiles.in updated for memcached
1.95 moko 4848:
4849: * src/targets/cgi/Makefile.am: cleanup
4850:
4851: * src/: types/Makefile.am, types/pa_vmemcached.C,
4852: types/pa_vmemcached.h, targets/cgi/Makefile.am: memcached initial
4853:
4854: * src/: classes/Makefile.am, classes/memcached.C,
4855: lib/memcached/Makefile.am, lib/memcached/constants.h,
4856: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
4857: lib/memcached/types.h, lib/Makefile.am: memcached initial
4858:
4859: 2012-03-16 moko
4860:
4861: * src/main/execute.C: ident now works under Linux + ident displays
4862: filenames (closes issue #818)
4863:
1.116 moko 4864: * src/types/: Makefile.am, pa_vmethod_frame_global.h,
1.95 moko 4865: pa_vmethod_frame_local.h: cleanup: pa_vmethod_frame_global.h
4866: pa_vmethod_frame_local.h removed
4867:
4868: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
4869: classes/classes.h, classes/curl.C, classes/date.C,
4870: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
4871: classes/hashfile.C, classes/image.C, classes/inet.C,
4872: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
4873: classes/memory.C, classes/op.C, classes/reflection.C,
4874: classes/regex.C, classes/response.C, classes/string.C,
4875: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
4876: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
4877: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
4878: include/pa_config_fixed.h, include/pa_config_includes.h,
4879: include/pa_dictionary.h, include/pa_dir.h,
4880: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
4881: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
4882: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
4883: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
4884: include/pa_request_charsets.h, include/pa_request_info.h,
4885: include/pa_sapi.h, include/pa_socks.h,
4886: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
4887: include/pa_stack.h, include/pa_string.h,
4888: include/pa_stylesheet_connection.h,
4889: include/pa_stylesheet_manager.h, include/pa_table.h,
4890: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
4891: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
4892: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
4893: lib/md5/pa_md5c.c, lib/pcre/pcre_parser_ctype.c,
4894: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
4895: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
4896: main/compile.tab.C, main/compile.y, main/compile_tools.C,
4897: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
4898: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
4899: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
4900: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
4901: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
4902: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
4903: main/pa_string.C, main/pa_stylesheet_connection.C,
4904: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
4905: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
4906: main/helpers/simple_folding.pl, sql/pa_sql_driver.h,
4907: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
4908: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
4909: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
4910: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
4911: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
4912: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
4913: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
4914: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
4915: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
4916: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
4917: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
4918: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
4919: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
4920: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
4921: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
4922: types/pa_vmemory.h, types/pa_vmethod_frame.C,
4923: types/pa_vmethod_frame.h, types/pa_vmethod_frame_global.h,
4924: types/pa_vmethod_frame_local.h, types/pa_vobject.C,
4925: types/pa_vobject.h, types/pa_vregex.C, types/pa_vregex.h,
4926: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
4927: types/pa_vresponse.h, types/pa_vstateless_class.C,
4928: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
4929: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
4930: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
4931: types/pa_vvoid.C, types/pa_vvoid.h, types/pa_vxdoc.C,
4932: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
4933: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
4934: ident now works under Linux + ident displays filenames (closes
4935: issue #818) Copyright updated
4936:
4937: 2012-03-13 moko
4938:
4939: * src/main/pa_string.C: compilation fix for feature #741
4940:
4941: 2012-03-09 misha
4942:
4943: * tests/193.html: - tests for ^string:base64[encoded] are updated
4944:
4945: * src/main/pa_common.C: - ^string:base64[encoded;$.strict(true)]
4946: now detects invalid base64 chars in the middle of encoded stricg
4947: ( new feature: #55 )
4948:
4949: * src/include/pa_exception.h: - new exception type for base64
4950: decoding is added
4951:
4952: 2012-03-06 misha
4953:
4954: * tests/274.html: - tests for ^date::today[] and
4955: ^date.sql-string[datetime|date|time] are added
4956:
4957: * src/classes/date.C: - constructor ^date::today[] is added ( new
4958: feature: #811 ) - ^date.sql-string[] now can accept one param --
4959: strings "datetime", "date" or "time" - comments tidying up
4960:
4961: * src/types/pa_vdate.h: - get_sql_string now can print datetime,
4962: date and time
4963:
4964: 2012-03-03 misha
4965:
4966: * tests/193.html: - tests for
4967: ^string:base64[encoded;$.strict(true)] are added
4968:
4969: * tests/results/auto.p: - try-catch operator is added
4970:
4971: * src/: classes/file.C, classes/string.C, include/pa_common.h,
4972: main/pa_common.C: - $.strict(true|false) option is added to
4973: base64 decode methods ( new feature: #55 )
4974:
4975: * src/main/pa_common.C: - base64 decode memory usage was decreased
4976: ( new feature: #819 )
4977:
4978: 2012-02-28 moko
4979:
4980: * src/classes/hash.C: ident test
4981:
4982: 2012-02-27 misha
4983:
4984: * src/classes/file.C: - PARSER_VaRSION => PARSER_VeRSION
4985:
4986: 2012-01-08 misha
4987:
4988: * tests/273.html: - tests for ^string.replace[from;to] are added
4989:
4990: * src/: classes/string.C, include/pa_dictionary.h,
4991: main/pa_dictionary.C, main/pa_string.C: -
4992: ^string.replace[from;to] is added ( new feature: #741 ) -
4993: ^string.replace[one subst here] is slightly optimized
4994:
4995: 2011-12-07 misha
4996:
4997: * src/classes/table.C: - $t[^table::create{$empty}] now creates
4998: named table with one empty column ( bugfix: #63 )
4999:
5000: 2011-11-30 misha
5001:
5002: * src/classes/json.C: - it's possible to set user's method for
5003: parsing arrays: ^json:parse[...;$.array[$hook]] ( new feature:
5004: #763 )
5005:
5006: * tests/272.html: - test for ^json:parse[...;$.array[$hook]]
5007:
5008: 2011-11-23 misha
5009:
5010: * src/: classes/curl.C, classes/file.C, classes/image.C,
5011: classes/table.C, classes/xdoc.C, types/pa_vfile.C,
5012: types/pa_vfile.h, types/pa_vform.C: - constructor
5013: ^file::create[mode;filename;content[;options]] now accepts binary
5014: mode and file-content - new constructor's format:
5015: ^file::create[string-or-file-content[;$.name[filename]
5016: $.mode[text|binary] $.content-type[...] $.charset[...]]] ( new
5017: feature: #65 )
5018:
5019: * src/: include/pa_request.h, main/pa_request.C: - new method
5020: mime_type_of(const String*) is added
5021:
5022: * src/include/pa_exception.h: - new exception constant
5023: FILE_NAME_MUST_BE_SPECIFIED is added
5024:
5025: * src/classes/table.C: - bug with negative offset transformed into
5026: a feature. it means pointing to a row from the end of the table (
5027: new feature: #810 )
5028:
5029: 2011-11-19 misha
5030:
5031: * src/classes/table.C: - íåñêîëüêî signed/unsigned warnings óáðàíû
5032: â ìåòîäå _select ( new feature: #810 )
5033:
5034: * src/types/pa_vxdoc.C: - checkout if $.encoding and $.charset
5035: options were specified together is simplified
5036:
5037: 2011-11-12 misha
5038:
5039: * src/main/pa_request.C: - forgotten fix for escaping filename in
5040: HTTP content-disposition header (a part of bug #361 )
5041:
5042: * src/classes/json.C: - ^json:string[$.class_name[jmethod]] now
5043: checks for ancestors' classes as well ( new feature: #456 )
5044:
5045: * src/classes/op.C: - exceptions for ^break[] and ^continue[]
5046: "without cycle" now have types "parser.break" and
5047: "parser.continue" instead of "parser.runtime" ( new feature: #799
5048: )
5049:
5050: 2011-11-11 misha
5051:
5052: * tests/results/: 099.processed, 100.processed, 205.processed,
5053: 237.processed: - since bug #361 was fixed the content of filename
5054: in HTTP headers is quoted
5055:
5056: * tests/results/270.processed: - result for test 270
5057:
5058: * tests/: 065.html, results/065.processed: - more tests for
5059: ^file:basename[] & Co were added
5060:
5061: * tests/270_dir/: 270.txt, subdir/270.txt: - stuff for 270.html
5062:
5063: * tests/270.html: - tests for ^file:find[] are added
5064:
5065: * src/types/pa_vxdoc.C: - now it's possible to specify encoding
5066: using option $.charset. option $.engoding is still supported but
5067: these options can not be specified together
5068:
5069: * src/classes/xdoc.C: - charset.isUTF8 is used instead of
5070: comparation charset name with string "UTF-8" ( bugfix: #759 )
5071:
5072: 2011-10-11 misha
5073:
5074: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h: - new
5075: option was added: ^xdoc.file[$.name[èìÿ ôàéëà]] (new feature:
5076: #622)
5077:
5078: 2011-09-30 misha
5079:
5080: * src/types/pa_vrequest.C: - saving empty $request:post-body causes
5081: exception "saving stat-ed file" ( bugfix: #395 )
5082:
5083: 2011-05-30 misha
5084:
5085: * src/classes/string.C: - fixed bug which was added with
5086: params.as_hash into string:sql
5087:
5088: 2011-05-29 misha
5089:
5090: * src/types/pa_value.C: - filename in content-disposition header
5091: must be quoted ( bugfix: #361 )
5092:
5093: 2011-05-27 misha
5094:
5095: * src/classes/: image.C, xdoc.C: - $.mode must be set for newly
5096: created file
5097:
5098: * src/classes/: hash.C, mail.C: - little tunning with get_hash
5099: usage
5100:
5101: * src/include/pa_exception.h: - one more string for exception was
5102: added
5103:
5104: 2011-05-25 misha
5105:
5106: * tests/269.html: - tests for checking input params in some dom
5107: methods
5108:
5109: * src/classes/: xdoc.C, xnode.C: - validation of some input params
5110: was added. it isn't possible not wo create xdoc with invalid
5111: tagName. ( bugfix: #160 )
5112:
5113: * src/include/: pa_exception.h, pa_xml_exception.h: - exception's
5114: string "data must be string" was mover from pa_exception.h to
5115: pa_xml_exception.h
5116:
5117: * src/classes/: xnode.C, xnode.h: - methods as_xmlqname,
5118: as_xmlncname, as_xmlname and as_xmlnsuri were added
5119:
5120: * src/main/pa_xml_exception.C: - XmlException accepts more options
5121:
5122: * src/include/pa_xml_exception.h: - XmlException accepts more
5123: options - XML-related exception's strings were added
5124:
5125: * src/: classes/xdoc.C, types/pa_vxdoc.h: - code cleanup (unused
5126: output_options were removed)
5127:
5128: 2011-05-19 misha
5129:
5130: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
5131: params.as_hash is used more while parsing methods hash-options
5132:
5133: 2011-05-18 misha
5134:
5135: * operators.txt: - info about json-serialization of xdoc was added
5136:
5137: * tests/256.html: - tests for json-serialization xdoc were added
5138:
5139: * src/types/pa_vxdoc.C: - ups. I've forgot about "method" :)
5140:
5141: * src/: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
5142: classes/json.C, classes/xdoc.C: - now json:string can serialize
5143: xdoc-objects. options (the same as ^xdoc.string[]) could be
5144: specified in $.xdoc[] ( new feature: #265 )
5145:
5146: 2011-05-15 misha
5147:
5148: * tests/268.html: - tests for ^table.count[with options] were added
5149:
5150: * src/classes/table.C: - method ^table.count[] now can accept
5151: options ( new feature: #93 ): ^table.count[column] returns number
5152: of columns for named table; ^table.count[cells] returns number of
5153: cells in the current row; ^table.count[] & ^table.count[rows]
5154: return number of rows in a table.
5155:
5156: * tests/267.html: - test for checking switch/case in boolean mode
5157: was added
5158:
5159: * src/classes/op.C: - if switch's or case's value is bool, they are
5160: compared as bool values, not as double values: new feature: #351
5161:
5162: 2011-05-06 misha
5163:
5164: * tests/242.html: - EOL before EOF was added
5165:
5166: * tests/169.html: - tests for splitting empty string and void were
5167: added
5168:
5169: * src/main/pa_string.C: - fix of fix (^empty_string.split[...]
5170: returned table with one empty cell)
5171:
5172: 2011-04-03 misha
5173:
5174: * src/include/pa_version.h, configure.in: - version in head was
5175: changed to 3.4.2b
5176:
5177: 2011-03-30 misha
5178:
5179: * src/types/pa_vregex.C: - \w & Co now contain unicode properties
5180: as well ( new feature #294 )
5181:
5182: 2011-03-29 misha
5183:
5184: * buildall-with-xml, buildall-without-xml: - PCRE stack usage is
5185: limited to approx. 6 MB. previous limits were too big for real
5186: life. bugfix: #216
5187:
5188: 2011-03-04 moko
5189:
5190: * etc/parser3.charsets/cp866.cfg: Conforms to
5191: http://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP866.TXT
5192:
5193: * etc/parser3.charsets/cp866.cfg: cp866 initial version from
5194: vlalek@
5195:
5196: 2011-02-22 misha
5197:
5198: * src/include/pa_charset.h, operators.txt: - some methods mustn't
5199: be under #ifdef XML or parser can't be compiled without xml
5200: support
5201:
5202: 2011-02-21 misha
5203:
1.116 moko 5204: * src/targets/apache/: Makefile.am: - mention
1.95 moko 5205: ApacheModuleParser3.vcproj was removed
5206:
5207: * src/types/pa_vjunction.C: - EOL before EOF was added (warning
5208: removed)
5209:
5210: 2011-02-20 misha
5211:
5212: * tests/: 266.html, 266.p: - tests for checking $.inherited and
5213: $.overridden in ^reflection:method_info[...] were added
5214:
5215: * src/classes/reflection.C: - beautifying result of
5216: ^reflection:method_info[] ($.overridden/inherited)
5217:
5218: 2011-02-18 misha
5219:
5220: * src/main/: pa_charset.C, pa_http.C, untaint.C: - use pa_isalpha
5221: and pa_isalnum instead of isalpha and isalnum - bug with
5222: redundand quoting lowercased latin chars while building email
5223: body was fixed
5224:
5225: * src/include/pa_common.h: - pa_isalpha and ps_isalnum methods were
5226: added (they check for latin chars only)
5227:
5228: 2011-02-16 misha
5229:
5230: * src/main/pa_charset.C: - bugfix: in some cases the calculating
5231: string size for transcoding gave too small value (should ever
5232: look for availability char in dest charset inspite of the char
5233: size)
5234:
5235: 2011-02-04 moko
5236:
5237: * tests/223.html: header values now not url-encoded (issue #195)
5238:
5239: 2011-02-01 misha
5240:
5241: * buildall-with-xml, buildall-without-xml: - 8.10 => 8.12
5242:
5243: 2011-01-31 misha
5244:
5245: * src/main/pa_request.C: - throw exception if param file_name in
5246: use_file is empty
5247:
5248: 2011-01-08 moko
5249:
5250: * src/classes/curl.C: compilations errors fixed
5251:
5252: 2010-12-29 moko
5253:
5254: * tests/: 265.html, results/265.processed: test for issue #200
5255: added
5256:
5257: * src/main/pa_string.C: empty regex result check added (fixes issue
5258: #200)
5259:
5260: * src/main/pa_http.C: pa_http_safe_header_name corrected a bit
5261:
5262: * tests/results/223.processed: header values now not url-encoded
5263: (issue #195)
5264:
5265: * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
5266: main/untaint.C: L_HTTP_HEADER now used in http headers values,
5267: pa_http_safe_header_name added for headers names (fixes bug #195)
5268:
5269: 2010-12-18 misha
5270:
5271: * src/: types/types.vcproj, classes/classes.vcproj: - arp-include
5272: => pa-include
5273:
5274: 2010-11-28 moko
5275:
5276: * src/lib/sdbm/sdbm.vcproj: apr -> pa (.vcproj)
5277:
5278: * src/lib/sdbm/: pa_strings.C, sdbm.c, pa-include/pa_strings.h: apr
5279: -> pa
5280:
5281: * configure.in: apr -> pa
5282:
5283: * src/types/: pa_vhashfile.C, pa_vhashfile.h: apr -> pa
5284:
5285: * src/: lib/sdbm/pa-include/Makefile.am, lib/sdbm/Makefile.am,
5286: classes/Makefile.am, types/Makefile.am: apr -> pa
5287:
5288: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C,
5289: pa_file_io.C, pa_strings.C, sdbm.c, sdbm_hash.c, sdbm_lock.c,
5290: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h,
5291: pa-include/pa_apr.h, pa-include/pa_errno.h,
5292: pa-include/pa_file_info.h, pa-include/pa_file_io.h,
5293: pa-include/pa_sdbm.h, pa-include/pa_strings.h: apr -> pa (apache2
5294: module apr name conflict resolved)
5295:
5296: 2010-11-27 misha
5297:
5298: * buildall-with-xml, buildall-without-xml: - typo fixed: libz2 ->
5299: libbz2
5300:
5301: 2010-11-26 misha
5302:
5303: * src/: types/pa_vregex.C, classes/hash.C, classes/table.C: -
5304: warnings removed
5305:
5306: 2010-11-25 moko
5307:
5308: * operators.txt: $.indent(true)
5309:
5310: * operators.txt: another bugfix. :)
5311:
5312: * operators.txt: bugfix. :)
5313:
5314: * buildall-with-xml: libxml2-2.7.8 + with-apache
5315:
5316: 2010-11-24 moko
5317:
1.116 moko 5318: * configure: apxs support
1.95 moko 5319:
5320: * configure.in: apxs support -Bstatic gc removed for OS X
5321:
5322: * src/targets/: Makefile.am, apache/Makefile.am: apxs support
5323:
5324: * src/main/: pa_globals.C, pa_xml_io.C: the rest converted to
5325: THREAD_LOCAL usage
5326:
5327: * src/: classes/curl.C, include/pa_config_includes.h,
5328: main/pa_globals.C: THREAD_LOCAL defined and used
5329:
5330: 2010-11-23 moko
5331:
5332: * src/: classes/op.C, main/pa_os.C: microseconds, not milliseconds
5333: should be passed to pa_sleep, and only fractional part (bugfix:
5334: #188)
5335:
5336: * src/targets/apache/mod_parser3.c: 1.3 compatibility
5337:
5338: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
5339: GC_dont_gc=1, as in cgi version
5340:
5341: * src/targets/apache/mod_parser3.c: warning war
5342:
5343: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
5344: pa_httpd.h: version removed, some trash removed
5345:
5346: * src/targets/apache/mod_parser3.c: version removed (we don't want
5347: to show it), warning war
5348:
5349: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
5350: pa_httpd.h: parser_status_allowed removed + merge config
5351: functions removed (override is the default) + beauty
5352:
5353: * src/: include/pa_request.h, main/pa_request.C,
5354: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: option to
5355: hide $status used in apache module removed
5356:
5357: 2010-11-18 moko
5358:
5359: * operators.txt: $.table[compact] added for ^json:string[]
5360:
5361: 2010-11-16 moko
5362:
5363: * src/targets/apache/mod_parser3.c: some cleanup done
5364:
5365: * src/main/untaint.C: bugfix: first, second String::Body argument
5366: is hashcode; second, info.fragment_begin is original, not
5367: resulting length
5368:
5369: * src/classes/file.C: new feature: $.stdin now untainted
5370:
5371: * tests/results/264.processed: new feature: $.stdin[] now untainted
5372:
5373: * tests/cat.sh: new feature: stdin arg to test $.stdin[value]
5374:
5375: * src/classes/op.C: ^apply-taint[] method added
5376:
5377: * tests/: 264.html, results/264.processed: ^apply-taint[] test
5378: added; $.stdin untaint test added
5379:
5380: 2010-11-15 moko
5381:
5382: * src/targets/apache/mod_parser3.c: outdated MODULE_MAGIC_NUMBER
5383: removed
5384:
5385: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
5386: pa_httpd.h: 2x2 calculated under apache2. :)
5387:
5388: 2010-11-13 moko
5389:
5390: * src/targets/apache/mod_parser3.c: initial changes to build module
5391: with apache 2.x includes
5392:
5393: * src/targets/apache/: Makefile.am, mod_parser3.c,
5394: mod_parser3_core.C, pa_httpd.h, pa_threads.C: initial commit for
5395: united apache 1.3 / apache 2.x DSO module
5396:
5397: 2010-11-09 moko
5398:
5399: * src/types/pa_method.h: check added to dissallow @method[name;*]
5400: syntax
5401:
5402: * tests/: 263.html, results/263.processed: test from method[*args]
5403: added
5404:
5405: * src/types/: pa_method.h, pa_vmethod_frame.h: closes #26: variable
5406: number of params can now be passed to a method declared with *arg
5407:
5408: 2010-11-06 moko
5409:
5410: * src/classes/table.C: formating fixed. :)
5411:
5412: * src/classes/table.C: closes #4: ^table.select now supports
5413: $.limit(), $.offset, $.reverse() options
5414:
5415: * tests/: 262.html, results/262.processed: test for ^table:select
5416: with options added (feature #4)
5417:
5418: * src/include/pa_array.h: remove function added
5419:
5420: * src/types/: pa_vhash.C, pa_vhash.h: avoiding temporal String
5421: object in get_element/put_element, using static one.
5422:
5423: 2010-11-04 moko
5424:
5425: * src/types/pa_vregex.C: closes #6: exeption now thrown if invalid
5426: options is passed
5427:
5428: * tests/: 256.html, results/256.processed: $.table[compact] feature
5429: now tested; k and p in handler now tested.
5430:
5431: * src/types/: pa_value.h, pa_vtable.C, pa_vtable.h: fixes #153,
5432: $.table[compact] feature added
5433:
5434: * src/classes/json.C: key is now passed to handler in
5435: value_json_string; ^json:string result now process tainting
5436: inside and returns clean string, related to issue #153
5437:
5438: * src/main/untaint.C: bugfix: charset can be null (in
5439: ^string:save[] as example), thus check is added
5440:
5441: 2010-10-31 moko
5442:
5443: * src/classes/string.C: error message changed (fixes issue #149)
5444:
5445: 2010-10-29 moko
5446:
5447: * src/main/pa_http.C: ":port" is now added to "Host:" header if
5448: port is not default (fixes issue #155); exception on invalid port
5449: added.
5450:
5451: * src/main/untaint.C: '*' is now not urlencoded to allow header
5452: "Accept: */*" to be passed
5453:
5454: 2010-10-28 moko
5455:
5456: * src/classes/curl.C: bugfix: detect_charset() was throwing
5457: exception on unknown charset even if response_charset was
5458: specified
5459:
5460: 2010-10-27 moko
5461:
5462: * src/classes/string.C: ^string.append removed for void
5463: compatibility
5464:
5465: 2010-10-26 moko
5466:
5467: * src/classes/json.C: libjson supports array at top level, we too
5468: (GPF fixed)
5469:
5470: 2010-10-25 moko
5471:
5472: * tests/: 253.html, results/253.processed: libjson supports array
5473: at top level, parser now supports it as well.
5474:
5475: * tests/261.html, tests/results/261.processed,
5476: src/types/pa_vstring.h: empty string is now void compatible
5477: (allows $empty.key)
5478:
5479: 2010-10-22 misha
5480:
5481: * src/types/pa_vcookie.C: - fix for session cookie (was introduced
5482: while adding additional expires checkout)
5483:
5484: * tests/030.html: - test for session cookie was added
5485:
5486: 2010-10-21 moko
5487:
5488: * src/: classes/string.C, classes/void.C, main/execute.C,
5489: types/pa_vvoid.C, types/pa_vvoid.h: void now inherited from
5490: string (feature #111)
5491:
5492: * tests/: 261.html, results/261.processed: checks void from string
5493: inheritance (feature #111)
5494:
5495: * src/classes/: bool.C, classes.h, curl.C, date.C, double.C,
5496: file.C, hash.C, hashfile.C, image.C, inet.C, int.C, json.C,
5497: reflection.C, regex.C, string.C, table.C, void.C: used_directly()
5498: now true by default
5499:
5500: 2010-10-17 moko
5501:
5502: * src/: include/pa_string.h, main/pa_http.C, main/untaint.C: files
5503: upload now uses binary blocks instead of L_FILE_POST tainting.
5504: (bugfix: #128)
5505:
5506: * tests/: 223.html, results/223.processed: binary file upload test
5507: added, GPF (issue #128) also checked in this test
5508:
5509: 2010-10-13 misha
5510:
5511: * tests/260.html: - test for math:convert
5512:
5513: * src/classes/math.C: - error in math:convert was fixed
5514:
5515: * operators.txt: - info about
5516: ^math:convert[number](from-base;to-base) was added
5517:
5518: * src/classes/math.C: - method
5519: ^math:convert[number](from-base;to-base) for converting number
5520: represention from one base to another was added ( new feature:
5521: #23 )
5522:
5523: 2010-10-13 moko
5524:
5525: * src/main/compile.tab.C: [] now is empty string, not void
5526:
5527: * src/main/compile.y: [] now is empty string, not void
5528:
5529: * src/types/pa_vvoid.h: void now passed as parameter
5530:
5531: * tests/: 259.html, results/259.processed: to test difference
5532: between void and empty string (see ticket #111)
5533:
5534: * tests/results/152.processed: $sEmpty[] is now empty string, not
5535: void
5536:
5537: * tests/256.html: $s[$void] is no longer empty string
5538:
5539: * tests/254.html: empty string is no longer void
5540:
5541: 2010-10-12 misha
5542:
5543: * src/types/pa_vcookie.C: - check if $.expires value can be
5544: converted to date during cookies set up ( bugfix: #104 )
5545:
5546: * tests/041.html: - more tests for ^table.locate were added
5547:
5548: * src/classes/table.C: - ^table.locate[field;value;options] didn't
5549: work ( bugfix: #129 ) - exception comment for incorrect options
5550: ^table.locate[field;value;options] was fixed
5551:
5552: 2010-10-10 moko
5553:
5554: * src/: classes/reflection.C, main/execute.C: constructor returning
5555: another object feature returned
5556:
5557: * tests/results/258.processed: test result updated as constructor
5558: returning another object feature returned
5559:
5560: * tests/: 258.html, results/258.processed: test for constructor
5561: returning another object
5562:
5563: 2010-10-08 misha
5564:
5565: * tests/257.html: - whitespaces after @METACOMMANDS and their
5566: options shouldn't cause exceptions any longer
5567:
5568: 2010-10-06 moko
5569:
5570: * src/classes/: hash.C, table.C: length from sql server is now
5571: ignored, as sql string can contain 0x00 inside (bugfix: #119)
5572:
5573: 2010-10-02 misha
5574:
5575: * operators.txt: - the X mark was removed from ^cache[file]. it is
5576: usable to delete cache file.
5577:
5578: 2010-10-02 moko
5579:
5580: * tests/: 253.html, results/253.processed: hook_key added for key
5581: checking
5582:
5583: * src/classes/json.C: null key bug fixed
5584:
5585: 2010-09-29 misha
5586:
5587: * tests/: 256.html, 256.txt: - tests for ^json:string[] were added
5588:
5589: 2010-09-25 moko
5590:
5591: * src/classes/json.C: small fixed
5592:
5593: * tests/results/: 253.processed, 255.processed: just updated
5594:
5595: * tests/: 253.html, 253_json.txt, 255.html, results/253.processed,
5596: results/255.processed: charset transcode test added for
5597: json:parse
5598:
5599: 2010-09-24 moko
5600:
5601: * src/types/pa_value.h: warning war :)
5602:
5603: * src/: classes/json.C, include/pa_request.h, types/pa_value.h,
5604: types/pa_vfile.C, types/pa_vtable.C: $.indent implemented for
5605: ^json:string
5606:
5607: 2010-09-22 moko
5608:
5609: * src/main/pa_charset.C: parser charset tables declare only
5610: white-space before 0x20, thus adding the missing chars
5611:
5612: * etc/parser3.charsets/: koi8-r.cfg, koi8-u.cfg: updated to conform
5613: to http://unicode.org/Public/MAPPINGS/VENDORS/
5614:
5615: 2010-09-21 misha
5616:
5617: * src/main/compile.y: - some semicolons were added (VS2010 don't
5618: want to compile grammar if they are absent)
5619:
5620: * tests/: make_tests.cmd, run_tests.cmd: - path tools is changed
5621:
5622: * src/classes/classes.vcproj: - pathes to ls and gawk are changed
5623:
5624: * src/main/main.vcproj: - path to bison is changed
5625:
5626: 2010-09-21 moko
5627:
1.116 moko 5628: * etc/parser3.charsets/: windows-1250.cfg, windows-1251.cfg,
5629: windows-1254.cfg, windows-1257.cfg, x-mac-cyrillic.cfg: updated
5630: to conform to http://unicode.org/Public/MAPPINGS/VENDORS/
1.95 moko 5631:
5632: 2010-09-20 misha
5633:
5634: * src/types/pa_vtable.C: - add EOLs while json-serializing table
5635:
5636: * src/classes/json.C: - add EOL while json-serializing hash
5637:
5638: * src/lib/json/JSON_parser.C: - 'ES' replaced by 'ESC' because some
5639: compilers don't like 'ES'.
5640:
5641: 2010-09-17 misha
5642:
5643: * operators.txt: - info about json class was added
5644:
5645: * src/classes/json.C: - ^json:string[object]
5646:
5647: * src/: include/pa_request.h, main/pa_request.C: - stuff for
5648: preventing infinite recursion while executing json:string was
5649: added
5650:
5651: * src/include/pa_string.h: - method append_quoted was added
5652:
5653: * src/types/: pa_value.C, pa_value.h, pa_vbool.h, pa_vdate.h,
5654: pa_vdouble.h, pa_vfile.C, pa_vfile.h, pa_vint.h, pa_vstring.h,
5655: pa_vtable.C, pa_vtable.h, pa_vvoid.h: - method get_json_string
5656: was added to Value & Co
5657:
5658: * src/classes/date.C: - methods get_gmt_string and get_sql_string
5659: were used
5660:
5661: * src/types/pa_vdate.h: - methods get_gmt_string and get_sql_string
5662: were added
5663:
5664: 2010-09-10 moko
5665:
5666: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
5667: die_or_abort (backport from 3.4.1)
5668:
5669: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
5670: die_or_abort (bugfix: #106)
5671:
5672: 2010-09-09 moko
5673:
5674: * src/classes/json.C: warning war. :)
5675:
5676: 2010-09-08 misha
5677:
5678: * src/lib/json/Makefile.am: - additional include directories were
5679: added (for pa_memory.h and gc.h)
5680:
5681: * src/lib/json/json.vcproj: - JSON_parser.c => JSON_parser.C -
5682: compile as C++ instead default - additional include directory was
5683: added (for gc.h)
5684:
5685: * src/types/pa_vform.C: - little code reformating
5686:
5687: * src/classes/file.C: - $.content-type option now can be specified
5688: in ^file::create ( new feature: #102 )
5689:
5690: 2010-09-08 moko
5691:
5692: * src/lib/json/: JSON_parser.C, JSON_parser.h: json lib now uses
5693: pa_malloc/pa_free
5694:
5695: 2010-09-07 moko
5696:
5697: * tests/results/254.processed: VStateless_class:put_element
5698: exception was fixed
5699:
5700: * src/types/: pa_value.h, pa_vstateless_class.h: now
5701: VStateless_class:put_element barks self.type, not this.type
5702: (bugfix: #105)
5703:
5704: 2010-09-06 moko
5705:
5706: * src/classes/reflection.C: bugfix: new String() is required for
5707: exception handling
5708:
5709: * tests/: 254.html, results/254.processed: test modified
5710:
5711: 2010-09-05 moko
5712:
5713: * tests/: 254.html, results/254.processed: ^reflection:copy test
5714: added
5715:
5716: * src/: classes/reflection.C, include/pa_request.h:
5717: ^reflection:copy implemented (new feature: #100)
5718:
5719: 2010-09-03 moko
5720:
5721: * src/lib/json/JSON_parser.C: c++ compatiblity
5722:
5723: * tests/: 253.html, 253_json.txt, results/253.processed: $.distinct
5724: option testing added
5725:
5726: 2010-09-02 moko
5727:
5728: * src/classes/json.C: $.distinct[first|last|all] added
5729:
5730: 2010-09-01 moko
5731:
5732: * tests/results/253.processed: json test result
5733:
5734: * tests/: 253.html, 253_json.txt: json test added
5735:
5736: * src/classes/json.C: json.C update to actual version + hash key
5737: creation bugfix
5738:
5739: 2010-08-31 misha
5740:
5741: * src/lib/json/JSON_parser.C, src/lib/json/JSON_parser.h,
5742: src/lib/json/Makefile.am, src/lib/json/json.vcproj,
5743: src/lib/Makefile.am, src/classes/Makefile.am,
5744: src/classes/classes.vcproj, src/classes/json.C, parser3.sln: -
5745: json library was added
5746:
5747: 2010-08-30 moko
5748:
5749: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
5750: types/pa_vobject.C: cosmetic optimization in
5751: request:execute_method usage
5752:
5753: * src/: include/pa_charset.h, main/pa_charset.C: small
5754: optimization, just to decrease number of lines. :)
5755:
5756: 2010-08-27 misha
5757:
5758: * src/classes/op.C: - taint[json] was added
5759:
5760: * tests/: 250.html, 251.html, 252.html: - tests for taint[json]
5761: were added
5762:
5763: * src/main/pa_exec.C: - warning fix was rolled back.
5764:
5765: * src/: main/pa_charset.C, main/untaint.C, include/pa_charset.h,
5766: include/pa_string.h: - taint[json] was added - escaping was
5767: slightly modified
5768:
5769: 2010-08-25 misha
5770:
5771: * src/classes/file.C: - typo in file:sql exception was fixed
5772:
5773: * src/main/pa_exec.C: - warning about declared and not used
5774: variable forced_allow was removed
5775:
5776: 2010-08-14 misha
5777:
5778: * src/classes/hash.C: - two warnings about signed/unsigned mismatch
5779: were removed
5780:
5781: 2010-08-11 moko
5782:
5783: * tests/: 249.html, results/249.processed: default setter and
5784: anti-recursive default getter test added
5785:
5786: * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
5787: types/pa_value.h, types/pa_vclass.C, types/pa_vobject.C,
5788: types/pa_vobject.h, types/pa_vstateless_class.C,
5789: types/pa_vstateless_class.h: default setter support +
5790: anti-recursive default getter support ( new feature: #13 )
5791:
5792: * src/include/pa_hash.h: optimization: threshold member removed
5793: from hash, reducing sizeof(hash)
5794:
5795: 2010-08-10 misha
5796:
5797: * tests/196.html: - junction-method was added to the test
5798:
5799: * tests/248.html: - ups. typo :)
5800:
5801: * tests/248.html: - test for checking .match with 4 params
5802:
5803: * tests/: 247.html, 247_utf8.txt, 247_utf8_bom.txt,
5804: 247_windows1251.txt: - test for "transcode file from utf-8 to
5805: $request:charset during loading if the BOM code is detected"
5806:
5807: * src/main/: pa_common.C, pa_http.C: - transcode file from utf-8 to
5808: $request:charset during loading if the BOM code is detected ( new
5809: feature: #98 )
5810:
5811: 2010-08-05 misha
5812:
5813: * src/classes/image.C: - ^image.replace now can accept only 2
5814: params. in this case the whole image is affected ( new feature:
5815: #95 )
5816:
5817: 2010-08-04 misha
5818:
5819: * tests/246.html: - test tor ^hash._at[] was added
5820:
5821: * src/classes/hash.C: - ^hash._at[first|last|[-]N] ( new feature:
5822: #53 )
5823:
5824: * src/include/pa_hash.h: - methods for accessing the first and the
5825: last values of ordered hash were added (first_value and
5826: last_value)
5827:
5828: * src/classes/file.C: - now ^file::base64 accepts up to 4 params
5829: (similar to others file's methods):
5830: ^file::base64[mode;user-file-name;encoded;options] ( new feature:
5831: #68 )
5832:
5833: * src/types/pa_vmethod_frame.h: - helper method as_hash was added
5834:
5835: 2010-08-01 moko
5836:
5837: * src/classes/op.C: to correctly process $result[] in code, called
5838: from ^process
5839:
5840: * tests/245.html: $result in ^process[] test added
5841:
5842: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
5843: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.C,
5844: types/pa_vmethod_frame.h, types/pa_vobject.C: optimization:
5845: VMethodFrame(junction, caller) replaced with VMethodFrame(method,
5846: caller, self) op_call(VMethodFrame &frame, bool constructing)
5847: removed, construct(class,method) added
5848:
5849: * tests/results/: 192.processed, 244.processed: request::construct
5850: added
5851:
5852: * tests/: 244.html, 245.html, results/244.processed,
5853: results/245.processed: object creation exceptions and ^process
5854: tests added
5855:
5856: 2010-07-28 misha
5857:
5858: * tests/make_tests.cmd: - win32 EOLs
5859:
5860: * tests/: run_parser.cmd, run_tests.cmd: - cmd files for executing
5861: tests on Win32 were added (The system timezone should be GMT+3)
5862:
5863: 2010-07-26 misha
5864:
5865: * tests/: 212.html, results/212.processed: - sizes were removed
5866: mecause they could be different on different OSs
5867:
5868: * tests/065.html: - make it "win32 friendly"
5869:
5870: 2010-07-25 misha
5871:
5872: * src/main/compile.y: - all EOLs between methods are removed during
5873: compilation ( new feature: #47 )
5874:
5875: * tests/results/149.processed: - prepare tests to trim trailing
5876: methods' EOLs
5877:
5878: * tests/149.html: - prepare tests to trim trailing methods' EOLs
5879:
5880: * tests/: results/006.processed, results/014.processed, 006.html,
5881: 014.html, 022.html: - prepare tests to trim trailing methods'
5882: EOLs
5883:
5884: * tests/: 059.html, 071.html, 149.html, results/059.processed,
5885: results/071.processed, results/022.processed: - prepare tests to
5886: trim trailing methods' EOLs
5887:
5888: * tests/: results/073.processed, results/109.processed,
5889: results/142.processed, results/144.processed,
5890: results/149.processed, 073.html, 096.html, 109.html, 142.html,
5891: 144.html: - prepare tests to trim trailing methods' EOLs
5892:
5893: * tests/: 096.html, 107.html, 109.html, 142.html, 144.html,
5894: 149.html, 152.html, results/096.processed, results/107.processed,
5895: results/109.processed, results/142.processed,
5896: results/144.processed: - prepare tests to trim trailing methods'
5897: EOLs
5898:
5899: 2010-07-24 moko
5900:
5901: * tests/results/: 156.processed, 224.processed: fix for #54 changed
5902: the hash order in this test
5903:
5904: * tests/014.html: to check hash order, hash no is longer sorted
5905: before print
5906:
5907: * src/include/pa_hash.h: hash copy constructor now keeps order
5908: (bugfix: #54)
5909:
5910: 2010-07-23 moko
5911:
5912: * tests/results/224.processed: @auto[] is no longer inherited
5913:
5914: * src/types/pa_vstateless_class.C, tests/227.html,
5915: tests/results/227.processed: @auto[] is no longer inherited
5916: (bugfix: #57)
5917:
5918: 2010-07-22 misha
5919:
5920: * src/classes/table.C: - don't skip comment lines during
5921: table::load if encloser or separator is set as '#' ( new feature:
5922: #30 )
5923:
5924: * src/targets/cgi/parser3.C: - don't run as cgi if
5925: env:PARSER_VERSION was set for preventing infinite loot ( bugfix:
5926: #12 )
5927:
5928: * src/classes/file.C: - set PARSER_VARSION env before external
5929: script executing
5930:
5931: 2010-07-13 misha
5932:
5933: * tests/058.html: - test for suppressing @border was added - test
5934: for user attribute was added
5935:
5936: * tests/results/186.processed: unescaping from \uXXXX
5937:
5938: * tests/186.html: unescaping from \uXXXX
5939:
5940: * tests/: 239.html, results/239.processed: method call type
5941:
5942: * src/types/: pa_vjunction.C, pa_vjunction.h: - bugfix: #90 :
5943: $junction_method.CLASS_NAME (+CLASS)
5944:
5945: 2010-07-07 misha
5946:
5947: * buildall-with-xml, buildall-without-xml: - moving to pcre 8.10 on
5948: *nix
5949:
5950: 2010-07-05 misha
5951:
5952: * src/: classes/curl.C, classes/file.C, classes/hash.C,
5953: classes/image.C, classes/op.C, classes/string.C, classes/table.C,
5954: classes/void.C, main/pa_common.C, main/pa_http.C: - exception
5955: comment strings "options must be hash", "options must be hash,
5956: not code" and "called with invalid option" were replaced by
5957: constatns - exception comment string "invalid option passed" was
5958: replaced by "called with invalid option" (now in different
5959: methods are the same exception comment string)
5960:
5961: * src/include/pa_exception.h: - more exception strings were defined
5962:
5963: * src/: main/compile.y, main/compile_tools.C, main/compile_tools.h,
5964: types/pa_vstateless_class.h: - now we can define possible
5965: method's call type ( new feature: #5 ) 1.
5966: @OPTIONS\nstatic|dynamic (no option == any) -- for all classe's
5967: methods 2. @static:method[params] (only static keyword could be
5968: used here) -- for specified methods
5969:
5970: * src/main/pa_common.C: - junction points should not be deleted on
5971: win32 during dirs cleanup ( bugfix: #83 ) - optimisation in dirs
5972: cleanup
5973:
5974: 2010-07-03 misha
5975:
5976: * tests/: 158.html, 160.html, 161.html, 162.html, 163.html,
5977: results/158.processed, results/160.processed,
5978: results/161.processed, results/162.processed,
5979: results/163.processed: - prepare tests to trim trailing methods'
5980: EOLs
5981:
5982: * tests/results/169.processed: - prepare tests to trim trailing
5983: methods' EOLs
5984:
5985: * tests/results/: 168.processed, 169.processed: - prepare tests to
5986: trim trailing methods' EOLs
5987:
5988: * tests/: results/170.processed, results/167.processed,
5989: results/168.processed, results/169.processed, 167.html, 168.html,
5990: 169.html: - prepare tests to trim trailing methods' EOLs
5991:
5992: * tests/: results/170.processed, results/171.processed,
5993: results/172.processed, results/173.processed,
5994: results/174.processed, results/175.processed, 170.html, 171.html,
5995: 172.html, 173.html, 174.html, 175.html: - prepare tests to trim
5996: trailing methods' EOLs
5997:
5998: * tests/: results/176.processed, results/180.processed,
5999: results/184.processed, results/185.processed,
6000: results/191.processed, results/192.processed,
6001: results/196.processed, results/197.processed,
6002: results/198.processed, 176.html, 180.html, 184.html, 185.html,
6003: 191.html, 192.html, 196.html, 197.html, 198.html: - prepare tests
6004: to trim trailing methods' EOLs
6005:
6006: * tests/: 199.html, 208.html, 209.html, 213.html, 214.html,
6007: results/199.processed, results/208.processed,
6008: results/209.processed, results/213.processed,
6009: results/214.processed: - prepare tests to trim trailing methods'
6010: EOLs
6011:
6012: 2010-06-29 misha
6013:
6014: * tests/: 220.html, 218.html, results/218.processed,
6015: results/215.processed, results/217.processed, 215.html, 217.html:
6016: - prepare tests to trim trailing methods' EOLs
6017:
6018: * tests/: results/224.processed, 224.html, 223.html,
6019: results/223.processed, results/220.processed: - prepare tests to
6020: trim trailing methods' EOLs
6021:
6022: * tests/results/: 226.processed, 230.processed: - prepare tests to
6023: trim trailing methods' EOLs
6024:
6025: * tests/: 229.html, results/229.processed: - prepare tests to trim
6026: trailing methods' EOLs
6027:
6028: * tests/: 232.html, 235.html, results/232.processed,
6029: results/235.processed, 226.html, 227.html, 228.html, 230.html,
6030: results/226.processed, results/227.processed,
6031: results/228.processed, results/230.processed: - prepare tests to
6032: trim trailing methods' EOLs
6033:
6034: 2010-06-16 moko
6035:
6036: * tests/: 229.html, results/229.processed: elseif now supported in
6037: ^if
6038:
6039: * src/classes/op.C: new feature: #56 elseif now supported in ^if
6040:
6041: 2010-06-03 misha
6042:
6043: * src/main/pa_common.C: - bugfix #74 -- memmove should be used
6044: instead of memcopy for overlaped regions
6045:
6046: 2010-05-25 misha
6047:
6048: * src/main/pa_common.C: - wanring about unused vars was removed
6049:
6050: * src/: include/pa_request.h, main/execute.C, main/pa_request.C: -
6051: get_method_filename was moved to execute.C
6052:
6053: 2010-05-23 misha
6054:
6055: * src/main/pa_request.C: - more accurate detection of method's file
6056:
6057: 2010-05-22 misha
6058:
6059: * src/classes/reflection.C: - bugfix: core during detection of
6060: .file if filespec isn't detected successfully
6061:
6062: 2010-05-20 misha
6063:
6064: * src/main/pa_request.C: - fix in get_method_filename
6065:
6066: * src/include/pa_request.h: - new feature: #24 -- searching
6067: included file in @USE/^use is changed. if its filespec doesn't
6068: start from '/' it will be searched in caller file directory
6069:
6070: * src/classes/reflection.C: - ^reflection:method_info returns file
6071: where the method is defined
6072:
6073: * src/: include/pa_request.h, main/compile.y, main/pa_request.C,
6074: classes/op.C: - new feature: #24 -- searching included file in
6075: @USE/^use is changed. if its filespec doesn't start from '/' it
6076: will be searched in caller file directory
6077:
6078: * src/: classes/file.C, include/pa_common.h: - method lastposafter
6079: is moved to pa_common.h
6080:
6081: 2010-05-18 misha
6082:
6083: * src/: main/pa_common.C, include/pa_common.h, classes/string.C,
6084: types/pa_vcookie.C: new feature: #71 ^string:js-unescape and
6085: cookie parser decode \uXXXX as well as %uXXXX
6086:
6087: 2010-05-17 misha
6088:
6089: * src/classes/curl.C: beauty: - unused param is removed in method
6090: _curl_version_action - some spaces were removed or replaced by
6091: tabs
6092:
6093: * src/classes/table.C: - bugfix: #72 core with empty value during
6094: ^table.hash[...;name_of_the_last_column][$.type[string]]
6095:
6096: 2010-05-16 misha
6097:
6098: * src/classes/curl.C: new: #61 more curl options were added
6099: (contributed by Sumo)
6100:
6101: 2010-04-29 pretender
6102:
6103: * src/main/pa_string.C: fixes #63 Split result from empty string
6104: now empty string.
6105:
6106: * src/types/pa_vtable.C: bugfix: #35 All empty table cells are now
6107: string type.
6108:
6109: 2010-04-28 pretender
6110:
6111: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
6112: main/execute.C: bugfix: #59 OPTIMIZE_BYTECODE_GET_CLASS
6113: macrodefinition removed
6114:
6115: 2010-04-19 pretender
6116:
6117: * src/main/execute.C: fixes #60 Stacktrace now contains info for
6118: OP_CONSTRUCT_OBJECT and OP_GET_CLASS
6119:
6120: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
6121: fixes #64 Now file.missing exception generates in unsafe mode to.
6122:
6123: * src/classes/file.C: fixes #48 Now not throw "not save environment
6124: variable" exception in grpunlim version.
6125:
6126: 2010-04-05 misha
6127:
6128: * src/classes/string.C: - new feature: 4th param was added to
6129: match. if specified its value is returned in case of nothing was
6130: found
6131:
6132: 2010-04-01 misha
6133:
6134: * src/main/pa_request.C: - bugfix: on *nix URIs like /a/b/// caused
6135: multiple execution of /a/b/auto.p
6136:
6137: 2010-03-19 misha
6138:
6139: * src/main/execute.C: - core in $table1.$table2 was fixed
6140:
6141: * src/targets/cgi/parser3.C: - core in sigpipe was fixed
6142:
6143: 2010-01-27 misha
6144:
6145: * src/main/pa_common.C: - bugfix: there are no excaption.type if
6146: trying to open file by path /existing-file/non-exixting-file
6147:
6148: 2010-01-26 misha
6149:
6150: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:post-body
6151: was added (returns file)
6152:
6153: 2009-12-22 misha
6154:
6155: * src/classes/curl.C: - method 'option' was renamed to 'options' -
6156: now parser doesn't have class curl if it was built without it
6157:
6158: 2009-12-15 misha
6159:
6160: * configure.in: - little cheat with curl include dir was added
6161:
6162: 2009-12-05 misha
6163:
6164: * src/classes/curl.C: - some fixes
6165:
6166: 2009-12-04 misha
6167:
6168: * src/include/pa_config_fixed.h, src/classes/classes.vcproj,
6169: src/classes/curl.C, src/classes/file.C, src/classes/Makefile.am,
6170: buildall-with-xml, buildall-without-xml, configure.in: - curl
6171: class was added
6172:
6173: * src/include/pa_hash.h: - hash-iterator was added
6174:
6175: * buildall-with-xml, buildall-without-xml: - option --passive-ftp
6176: was added to pcre
6177:
6178: 2009-11-27 misha
6179:
6180: * src/classes/image.C: - don't add @border attribute to output of
6181: ^image.html[] if it was specified by user with empty value
6182:
6183: * src/types/pa_vxdoc.C: - bugfix: core if xdoc doesn't have the
6184: root element and we are trying to access .documentElement
6185:
6186: 2009-11-11 misha
6187:
6188: * src/classes/table.C: - in ^table.flip[] look at number of columns
6189: instead of number of items in first row for named tables
6190:
6191: 2009-11-10 misha
6192:
6193: * operators.txt: - info about hash-options in ^file::create was
6194: added
6195:
6196: * tests/237.html: - test for ^file::create[...;$.charset[...]] was
6197: added
6198:
6199: 2009-11-09 misha
6200:
6201: * buildall-with-xml: - moving to libxml 2.7.6
6202:
6203: * tests/236.html: - tests for comparations cords with functions
6204: were added
6205:
6206: * src/include/pa_string.h: - optimisation: cacheing of cstr was
6207: added
6208:
6209: * src/main/pa_http.C: - little optimisation
6210:
6211: * src/: classes/table.C, lib/gc/include/gc_allocator.h: - bugfix:
6212: GPF mallocs + stringstream (table.save)
6213:
6214: * src/classes/file.C: - file::create now accepts 4th param: options
6215: with $.charset
6216:
6217: * src/lib/cord/: cordxtra.c, include/private/cord_pos.h: - fixed
6218: bug in cord (comparation cords with functions was buggy)
6219:
6220: 2009-11-06 misha
6221:
6222: * src/main/pa_string.C: - bugfix: calculation string.length
6223: sometimes was buggy
6224:
6225: * src/classes/string.C: - bugfix: Temp_value_element wasn't
6226: destroyed if exception occured during match/replace
6227:
6228: * src/: main/pa_charset.C, include/pa_charset.h: - method
6229: lengthUTF8Char was added
6230:
6231: * src/classes/op.C: - clean tainting lang was added for user's
6232: usage
6233:
6234: * src/lib/cord/: cordbscs.c, cordxtra.c: - some rare GPF were
6235: fixed: checkouts are required after GC_MALLOC
6236:
6237: * src/types/pa_vregex.C: - check UTF8 only during 1st iteration
6238:
6239: * operators.txt: - actually, there is no ^untaint[xml] in
6240: file::create
6241:
6242: 2009-10-15 misha
6243:
6244: * tests/: 235.html, 235_attach.txt: - tests for preparing email
6245: were added
6246:
6247: * tests/234.html: - more tests for checking ^taint[uri] escaping
6248: were added
6249:
6250: * src/: include/pa_string.h, main/pa_charset.C, main/pa_http.C,
6251: main/pa_request.C, main/untaint.C, types/pa_vmail.C: - little
6252: hacking: for dealing with transcoding+^taint[uri]
6253: transcode_and_untaint was replaced by untaint_and_transcode
6254:
6255: 2009-10-13 misha
6256:
6257: * tests/: 121.html, results/121.processed: - test transcoding +
6258: url-escaping now
6259:
6260: * tests/results/auto.p: - more helpers' methods were added
6261:
6262: * src/main/pa_globals.C: - die instead of abort
6263:
6264: 2009-10-06 misha
6265:
6266: * src/main/pa_common.C: - don't allocate memory during
6267: capitalization if input string is already capitalized
6268:
6269: * src/targets/isapi/parser3isapi.C: - pass pre-capitalized headers
6270:
6271: * src/targets/cgi/parser3.C: - pass pre-capitalized headers - don't
6272: use format function because it calls malloc
6273:
6274: * src/include/pa_common.h: - more capitalized headers were added
6275:
6276: * src/main/pa_common.C: - in safe mode clear executable bits during
6277: file writing
6278:
6279: 2009-10-05 misha
6280:
6281: * src/main/pa_charset.C: - use iterators in pa_charset.C itself
6282:
6283: 2009-10-03 misha
6284:
6285: * src/: types/pa_vimage.h, classes/image.C: - ^img.font[],
6286: ^img.text[] & ^img.length[] can work in utf-8 now
6287:
6288: * src/: include/pa_charset.h, main/pa_charset.C: - class
6289: UTF8_string_iterator was added
6290:
6291: * src/classes/image.C: - respect utf-8 when calculate alphabet
6292: length
6293:
6294: * src/classes/mail.C: - check from before get message.cstr
6295:
6296: 2009-10-02 misha
6297:
6298: * tests/233.html: - test for image.font, image.length, image.text
6299: with text in utf-8 were added
6300:
6301: * src/main/pa_common.C: - use pa_malloc_atomic instead of new
6302:
6303: * buildall-with-xml, buildall-without-xml: - comment about gc
6304: version for freebsd 4 was added
6305:
6306: 2009-10-01 misha
6307:
6308: * src/main/pa_exec.C: - bugfix: allocate a bit more (for
6309: terminator) - read_pipe were slightly optimized
6310:
6311: 2009-09-28 misha
6312:
6313: * src/main/: pa_common.C, pa_uue.C: - some magic numbers were
6314: removed
6315:
6316: * src/types/pa_vmail.C: - forgot about space after ':'
6317:
6318: * src/types/pa_vmail.C: - escape filenames while preparing mail
6319: body - small simplifications
6320:
6321: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode now has
6322: inout params like pa_base64
6323:
6324: * src/: types/pa_vmail.C, types/pa_vmail.h, classes/mail.C: - new
6325: option $.debug-print(1) was added to mail:send - changes for
6326: using uue_encode which uses less memory
6327:
6328: * src/main/pa_common.C: - pa_base64_encode uses less memory now
6329:
6330: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode reduces less
6331: memory now
6332:
6333: 2009-09-26 misha
6334:
6335: * src/types/pa_vmail.C: - default encoding now is base64
6336:
6337: * buildall-with-xml: - moving to libxml 2.7.5 and libxslt 1.1.26
6338:
6339: 2009-09-25 misha
6340:
6341: * src/types/pa_vmail.C: - capitalization of headers was added to
6342: sending mail as well
6343:
6344: * buildall-with-xml: - catalog package was removed from libxml
6345:
6346: * src/main/pa_xml_io.C: - fix in removing file:// protocol for
6347: win32 absolute path
6348:
6349: * src/include/pa_common.h: - one more capitalized header was added
6350:
6351: 2009-09-22 misha
6352:
6353: * INSTALL: - comment about building just httpd binary while
6354: building apache module was added
6355:
6356: 2009-09-21 misha
6357:
6358: * buildall-with-xml: - moving to the latest versions of xml libs:
6359: libxml 2.7.4 and libxslt 1.1.25
6360:
6361: 2009-09-19 misha
6362:
6363: * tests/231.html: - test for encoding cookie in win-1251
6364:
6365: 2009-09-18 misha
6366:
6367: * tests/: 224.html, 224.p: - tests for ^reflection:fields[class or
6368: object] were added
6369:
6370: * operators.txt: - info about method ^reflection:fields[class or
6371: object] was added
6372:
6373: * src/classes/reflection.C: - method ^reflection:fields[class or
6374: object] was added
6375:
6376: * src/types/: pa_value.h, pa_vclass.C, pa_vclass.h, pa_vobject.h: -
6377: methods get_fields were added
6378:
6379: * tests/232.html: - tests for @GET[name]
6380:
6381: * src/classes/table.C: - some changes in handling hash-options for
6382: creare, join and locate
6383:
6384: * src/types/: pa_vobject.C, pa_vobject.h: - @GET[] now could be
6385: defined with option: the type of requested value
6386:
6387: 2009-09-17 misha
6388:
6389: * tests/212.html: - tests for .pattern and .options were added
6390:
6391: * src/types/: pa_vregex.C, pa_vregex.h: - $regex.pattern and
6392: $regex.options were added
6393:
6394: 2009-09-11 misha
6395:
6396: * tests/: 223.html, 223_utf8.txt, 223_win1251.txt: - test was
6397: rewrited. it checks not just one case of sending cookies during
6398: file::load[http], but also sending headers and fields (including
6399: files)
6400:
6401: 2009-09-10 misha
6402:
6403: * src/main/untaint.C: - workaround in file-spec lang for old Macs
6404: was removed => now parser can open files with Russian 'r' in
6405: filename
6406:
6407: * src/main/untaint.C: - bugfix: client charset whould be analized
6408: while escaping cookies but now source charset
6409:
6410: * src/main/pa_http.C: - bugfix: the values of http headers didn't
6411: ^tainted[uri] so it was possible to make request with incorrect
6412: http header
6413:
6414: * src/main/pa_http.C: - capitalization of http headers during
6415: file::load[http was slightly changes - bugfix: all headers which
6416: parser sends during file::load[http should be transcoded and only
6417: then escaped
6418:
6419: * src/main/untaint.C: - a bit more comments were added
6420:
6421: * src/classes/: file.C, string.C: - types where changes (minus 2
6422: warnings)
6423:
6424: * src/include/pa_common.h: - 2 capitalized strings for making http
6425: headers during file::load[http were added
6426:
6427: 2009-09-08 misha
6428:
6429: * operators.txt: - changes in file.save and string.save were added
6430:
6431: * tests/: 230.html, 230.txt: - tests for checking options in
6432: file.save and string.save were added
6433:
6434: * src/main/pa_request.C: - http headers names, which are passed to
6435: SAPI::add_header_attribute are lowercased now (it'll be
6436: capitalized in that method)
6437:
6438: * src/: types/pa_vfile.C, types/pa_vfile.h, classes/file.C,
6439: classes/string.C: - file_write accepts Request_charsets and asked
6440: charset and cound transcode content before writing - string.save
6441: and file.save have option $.charset now
6442:
6443: * src/: include/pa_common.h, main/pa_common.C, classes/table.C,
6444: classes/xdoc.C: - file_write accepts Request_charsets and asked
6445: charset and cound transcode content before writing
6446:
6447: * src/include/pa_exception.h: - new exception comment string was
6448: defined
6449:
6450: 2009-09-07 misha
6451:
6452: * src/main/compile.y: - grammar $name\ name stops now for regex
6453: sub-pattern\s
6454:
6455: 2009-09-04 misha
6456:
6457: * src/main/pa_http.C: - capitalization of http headers during
6458: file::load[http was implemented
6459:
6460: 2009-09-03 misha
6461:
6462: * src/: main/pa_common.C, main/pa_http.C, main/pa_request.C,
6463: include/pa_common.h, include/pa_sapi.h, types/pa_vcookie.C,
6464: types/pa_vmail.C, targets/cgi/parser3.C,
6465: targets/isapi/parser3isapi.C: - back to storing response http
6466: headers in lowercase - capitalize them during output
6467:
6468: 2009-08-31 misha
6469:
6470: * src/classes/table.C: - allow call with any brackets (it could be
6471: useful in methods with explict result declaration)
6472:
6473: * src/classes/table.C: - bugfix: ^table.sort{...} doesn't work
6474: correctly if $request:charset==koi8-r
6475:
6476: 2009-08-30 misha
6477:
6478: * src/: include/pa_common.h, main/pa_request.C: - http headers were
6479: changed: content-type => Content-type and so on
6480:
6481: * src/classes/file.C, src/include/pa_common.h,
6482: src/include/pa_request.h, src/main/pa_http.C,
6483: src/main/pa_request.C, src/types/pa_vcookie.C,
6484: src/types/pa_vmail.C, src/targets/cgi/parser3.C,
6485: src/targets/isapi/parser3isapi.C, tests/results/001.processed,
6486: tests/results/002.processed, tests/results/003.processed,
6487: tests/results/004.processed, tests/results/005.processed,
6488: tests/results/006.processed, tests/results/007.processed,
6489: tests/results/008.processed, tests/results/009.processed,
6490: tests/results/010.processed, tests/results/011.processed,
6491: tests/results/012.processed, tests/results/013.processed,
6492: tests/results/014.processed, tests/results/015.processed,
6493: tests/results/016.processed, tests/results/017.processed,
6494: tests/results/018.processed, tests/results/019.processed,
6495: tests/results/020.processed, tests/results/021.processed,
6496: tests/results/022.processed, tests/results/023.processed,
6497: tests/results/024.processed, tests/results/025.processed,
6498: tests/results/026.processed, tests/results/027.processed,
6499: tests/results/028.processed, tests/results/029.processed,
6500: tests/results/030.processed, tests/results/031.processed,
6501: tests/results/032.processed, tests/results/033.processed,
6502: tests/results/034.processed, tests/results/035.processed,
6503: tests/results/036.processed, tests/results/037.processed,
6504: tests/results/038.processed, tests/results/039.processed,
6505: tests/results/040.processed, tests/results/041.processed,
6506: tests/results/042.processed, tests/results/043.processed,
6507: tests/results/044.processed, tests/results/045.processed,
6508: tests/results/046.processed, tests/results/047.processed,
6509: tests/results/048.processed, tests/results/049.processed,
6510: tests/results/050.processed, tests/results/051.processed,
6511: tests/results/052.processed, tests/results/053.processed,
6512: tests/results/054.processed, tests/results/055.processed,
6513: tests/results/056.processed, tests/results/057.processed,
6514: tests/results/058.processed, tests/results/059.processed,
6515: tests/results/060.processed, tests/results/061.processed,
6516: tests/results/062.processed, tests/results/063.processed,
6517: tests/results/064.processed, tests/results/065.processed,
6518: tests/results/066.processed, tests/results/067.processed,
6519: tests/results/068.processed, tests/results/069.processed,
6520: tests/results/070.processed, tests/results/071.processed,
6521: tests/results/072.processed, tests/results/073.processed,
6522: tests/results/074.processed, tests/results/075.processed,
6523: tests/results/076.processed, tests/results/077.processed,
6524: tests/results/078.processed, tests/results/079.processed,
6525: tests/results/080.processed, tests/results/081.processed,
6526: tests/results/082.processed, tests/results/083.processed,
6527: tests/results/084.processed, tests/results/085.processed,
6528: tests/results/086.processed, tests/results/087.processed,
6529: tests/results/088.processed, tests/results/089.processed,
6530: tests/results/090.processed, tests/results/091.processed,
6531: tests/results/092.processed, tests/results/093.processed,
6532: tests/results/094.processed, tests/results/095.processed,
6533: tests/results/096.processed, tests/results/097.processed,
6534: tests/results/098.processed, tests/results/099.processed,
6535: tests/results/100.processed, tests/results/101.processed,
6536: tests/results/102.processed, tests/results/103.processed,
6537: tests/results/104.processed, tests/results/105.processed,
6538: tests/results/106.processed, tests/results/107.processed,
6539: tests/results/108.processed, tests/results/109.processed,
6540: tests/results/110.processed, tests/results/111.processed,
6541: tests/results/112.processed, tests/results/113.processed,
6542: tests/results/114.processed, tests/results/115.processed,
6543: tests/results/116.processed, tests/results/117.processed,
6544: tests/results/118.processed, tests/results/119.processed,
6545: tests/results/120.processed, tests/results/121.processed,
6546: tests/results/122.processed, tests/results/123.processed,
6547: tests/results/124.processed, tests/results/125.processed,
6548: tests/results/126.processed, tests/results/127.processed,
6549: tests/results/128.processed, tests/results/129.processed,
6550: tests/results/130.processed, tests/results/131.processed,
6551: tests/results/132.processed, tests/results/133.processed,
6552: tests/results/134.processed, tests/results/135.processed,
6553: tests/results/136.processed, tests/results/138.processed,
6554: tests/results/139.processed, tests/results/140.processed,
6555: tests/results/141.processed, tests/results/142.processed,
6556: tests/results/143.processed, tests/results/144.processed,
6557: tests/results/145.processed, tests/results/146.processed,
6558: tests/results/147.processed, tests/results/148.processed,
6559: tests/results/149.processed, tests/results/150.processed,
6560: tests/results/151.processed, tests/results/152.processed,
6561: tests/results/153.processed, tests/results/154.processed,
6562: tests/results/155.processed, tests/results/156.processed,
6563: tests/results/157.processed, tests/results/158.processed,
6564: tests/results/159.processed, tests/results/160.processed,
6565: tests/results/161.processed, tests/results/162.processed,
6566: tests/results/163.processed, tests/results/164.processed,
6567: tests/results/165.processed, tests/results/166.processed,
6568: tests/results/167.processed, tests/results/168.processed,
6569: tests/results/169.processed, tests/results/170.processed,
6570: tests/results/171.processed, tests/results/172.processed,
6571: tests/results/173.processed, tests/results/174.processed,
6572: tests/results/175.processed, tests/results/176.processed,
6573: tests/results/177.processed, tests/results/178.processed,
6574: tests/results/179.processed, tests/results/180.processed,
6575: tests/results/181.processed, tests/results/182.processed,
6576: tests/results/183.processed, tests/results/184.processed,
6577: tests/results/185.processed, tests/results/186.processed,
6578: tests/results/187.processed, tests/results/188.processed,
6579: tests/results/189.processed, tests/results/190.processed,
6580: tests/results/191.processed, tests/results/192.processed,
6581: tests/results/193.processed, tests/results/194.processed,
6582: tests/results/195.processed, tests/results/196.processed,
6583: tests/results/197.processed, tests/results/198.processed,
6584: tests/results/199.processed, tests/results/200.processed,
6585: tests/results/201.processed, tests/results/202.processed,
6586: tests/results/203.processed, tests/results/204.processed,
6587: tests/results/205.processed, tests/results/206.processed,
6588: tests/results/207.processed, tests/results/208.processed,
6589: tests/results/209.processed, tests/results/210.processed,
6590: tests/results/211.processed, tests/results/212.processed,
6591: tests/results/213.processed, tests/results/214.processed,
6592: tests/results/215.processed, tests/results/216.processed,
6593: tests/results/217.processed, tests/results/218.processed,
6594: tests/results/219.processed, tests/results/220.processed,
6595: tests/results/221.processed, tests/results/222.processed,
6596: tests/results/223.processed, tests/results/224.processed,
6597: tests/results/225.processed, tests/results/226.processed,
6598: tests/results/227.processed, tests/results/228.processed,
6599: tests/results/229.processed: - http headers were changed:
6600: content-type => Content-type and so on
6601:
6602: 2009-08-27 misha
6603:
6604: * src/: main/pa_random.C, include/pa_random.h,
6605: targets/cgi/parser3.C: - year was updated :)
6606:
6607: 2009-08-26 misha
6608:
6609: * tests/: 224.html, 224.p: - test for creating of parser object
6610: using constructor without params - little bugfix in test
6611:
6612: * src/main/compile_tools.h: - bugfix: should't call autouse while
6613: checking existed class while processing partial option
6614:
6615: * src/classes/reflection.C: - bugfix: core when creating object
6616: with reflection and constructor doesn't have params
6617:
6618: 2009-08-24 misha
6619:
6620: * tests/229.html: - tests for checking the number of parameters
6621: were added
6622:
6623: * src/types/: pa_value.C, pa_vmethod_frame.h: - bugfix: the actual
6624: number of method's parameters wasn't checked correctly (the bug
6625: was introduced in 3.4.0)
6626:
6627: 2009-08-22 misha
6628:
6629: * src/main/pa_http.C: - ^file::load[http://...;$.body[]] : $.body
6630: transcoded, but tainted pieces are escaped only when
6631: content-type==url-encoding
6632:
6633: * tests/228.html: - test for checking
6634: ^file::load[http://...;$.body[]]
6635:
6636: * src/types/: pa_vform.C, pa_vform.h: - bugfix: attempt to detect
6637: post charset was too early (charsets is empty at this moment)
6638:
6639: 2009-08-21 misha
6640:
6641: * src/: include/pa_string.h, main/pa_http.C, main/pa_request.C,
6642: main/untaint.C: - some fixes with transcode+untaint
6643:
6644: 2009-08-15 misha
6645:
6646: * src/main/pa_exec.C: - number of argv in file::exec/cgi on unix
6647: was increaced to 100 (was 50)
6648:
6649: * tests/227.html: - test for checking overriding properties in
6650: static classes was added
6651:
6652: * tests/: 226.html, 226.p: - test for @autoload[] was added
6653:
6654: * src/: include/pa_request.h, main/compile.y, main/compile_tools.h,
6655: main/execute.C, main/pa_request.C, classes/reflection.C: -
6656: autouse was implemented
6657:
6658: 2009-08-14 misha
6659:
6660: * src/classes/reflection.C: - outdated checkout was removed
6661:
6662: * src/classes/reflection.C: - optimization - method ^dynamical was
6663: added.
6664:
6665: * src/: types/pa_value.h, types/pa_vmethod_frame.h,
6666: types/pa_vstateless_class.h, main/execute.C: - optimization
6667:
6668: * src/types/pa_vclass.C: - exception if base on sytem class
6669:
6670: 2009-08-12 misha
6671:
6672: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
6673: pa_vstateless_class.h: - little optimisation
6674:
6675: 2009-08-11 misha
6676:
6677: * tests/224.html: - method_params => method_info - checking for
6678: $.inherited
6679:
6680: * src/classes/reflection.C, operators.txt: - method method_params
6681: was renamed to method_info and now it returns class name, if
6682: method was defined in ancestor
6683:
6684: * tests/225.html: - tests for cheching properties in hierarhical
6685: classes were added
6686:
6687: * src/: types/pa_property.h, types/pa_vclass.C, types/pa_vclass.h,
6688: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
6689: main/compile.y, main/execute.C, classes/classes.C: - problems
6690: with properties in new classes implementation were fixed
6691:
6692: 2009-08-10 misha
6693:
6694: * src/main/execute.C: - now constructor shouldn't be defined in
6695: class. it could be defined in parent.
6696:
6697: 2009-08-09 misha
6698:
6699: * src/classes/reflection.C: - ^reflection:methods doesn't return
6700: base's methods
6701:
6702: 2009-08-08 misha
6703:
6704: * src/: classes/classes.h, classes/date.C, classes/file.C,
6705: classes/form.C, classes/hash.C, classes/hashfile.C,
6706: classes/image.C, classes/mail.C, classes/op.C,
6707: classes/reflection.C, classes/regex.C, classes/string.C,
6708: classes/table.C, classes/xdoc.C, classes/xnode.C,
6709: classes/xnode.h, include/pa_hash.h, main/execute.C,
6710: main/pa_http.C, main/pa_request.C, targets/cgi/parser3.C,
6711: types/pa_method.h, types/pa_property.h, types/pa_value.C,
6712: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
6713: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
6714: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.C,
6715: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
6716: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
6717: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
6718: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
6719: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.h,
6720: types/pa_vobject.C, types/pa_vobject.h, types/pa_vproperty.C,
6721: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
6722: types/pa_vresponse.C, types/pa_vresponse.h,
6723: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
6724: types/pa_vstateless_object.h, types/pa_vstatus.C,
6725: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
6726: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
6727: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
6728: types/pa_wwrapper.h, types/types.vcproj: - new classes
6729: implementation
6730:
6731: * buildall-with-xml, buildall-without-xml: - gc has a bug if
6732: USE_MUNMAP is used. so it is disabled as a workaround.
6733:
6734: 2009-08-05 misha
6735:
6736: * src/: main/pa_common.C, include/pa_common.h: - not needed
6737: parameter was removed
6738:
6739: * src/main/pa_http.C: - bugfix: error was during detecting
6740: content-type of file which was loaded by http
6741:
6742: 2009-08-01 misha
6743:
6744: * src/main/execute.C, src/main/compile.y, src/include/pa_opcode.h,
6745: src/types/pa_wcontext.h, src/types/pa_wwrapper.h, INSTALL: -
6746: OPTIMIZE_BYTECODE_CONSTRUCT_OBJECT and OPTIMIZE_CONSTRUCT_OBJECT
6747: can't be disabled with defines any longer
6748:
6749: 2009-07-29 misha
6750:
6751: * src/classes/reflection.C, tests/results/224.processed: - for
6752: native methods with any call type now returned empty call_type
6753: value
6754:
6755: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
6756: classes/table.C, include/pa_hash.h, include/pa_request.h,
6757: main/pa_request.C: - break in cycles was optimized
6758:
6759: * INSTALL: - more defines were described
6760:
6761: 2009-07-28 misha
6762:
6763: * operators.txt: - some changes in information about reflection
6764: class
6765:
6766: * tests/: 224.html, 224.p: - tests for reflection class
6767:
6768: * src/classes/reflection.C: - some bugs were fixed, method classes
6769: was added, refactoring
6770:
6771: 2009-07-26 misha
6772:
6773: * src/classes/classes.vcproj: - reflection class wass added to
6774: project
6775:
6776: * operators.txt: - information about reflection class was added
6777:
6778: * src/classes/reflection.C: - class was redesigned
6779:
6780: 2009-07-24 misha
6781:
6782: * src/classes/: Makefile.am, reflection.C: - class reflection was
6783: added
6784:
6785: * src/types/pa_vstateless_class.h: - method for reflection method's
6786: in classes was added
6787:
6788: 2009-07-22 misha
6789:
6790: * src/main/compile_tools.h: - bugfix: $object.$var was
6791: over-optimized. it failed if $object1.$object2.field
6792:
6793: 2009-07-16 misha
6794:
6795: * src/: lib/cord/cordbscs.c, lib/cord/cordprnt.c,
6796: lib/cord/cordxtra.c, lib/cord/include/cord.h,
6797: include/pa_string.h, main/pa_string.C: - optimization: CORD_str,
6798: CORD_to_const_char_star, CORD_to_char_star and CORD_substr have
6799: one more arg: length of cord
6800:
6801: 2009-07-15 misha
6802:
6803: * src/main/pa_http.C: - bugfix: $.cookies' values should be force
6804: tainted in ^file::load[http://...;$.cookies[]]
6805:
6806: * src/classes/: op.C, regex.C, string.C: - new string with
6807: exception was used
6808:
6809: * src/include/pa_exception.h: - new string with exception was added
6810:
6811: * tests/223.html: - test for checking cookie-encoding during
6812: ^file::load[http was added
6813:
6814: * tests/: 221.html, 222.html: - tests for checking type of
6815: $table.fields.field were added
6816:
6817: * src/types/pa_vtable.C: - not used var decl was removed
6818:
6819: * src/include/pa_string.h: - use cached string length in Body::mid.
6820: it improves speed of match with brackets in pattern
6821:
6822: * src/lib/cord/include/cord.h: - make CORD_substr_checked available
6823: outside
6824:
6825: 2009-07-14 misha
6826:
6827: * src/types/pa_vtable.C: - $table.fields.a return string even if
6828: column is empty (sometime returned void) - $table.fields was
6829: added for nameless tables
6830:
6831: * src/targets/cgi/getopt.c: - one warning resolved
6832:
6833: * src/main/pa_string.C: - potentian bug fixed
6834:
6835: * src/classes/op.C: - small optimization in taint/untaint
6836:
6837: 2009-07-13 misha
6838:
6839: * tests/156.html: - test for $cookie[...$.httponly(false)...] was
6840: added
6841:
6842: * src/types/pa_value.C: - bugfix: $cookie[...$.httponly(false)...]
6843: souldn't add the attribut to output
6844:
6845: 2009-07-11 misha
6846:
6847: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
6848: stack size was increaced to 2MB (default=1MB)
6849:
6850: 2009-07-08 misha
6851:
6852: * src/main/pa_string.C: - link to UTF-8 description was added
6853:
6854: * src/include/pa_hash.h: - hash keeps element's order in more
6855: places (ex: ._keys[])
6856:
6857: * tests/220.html: - test for checking order of elements in hash in
6858: foreach was added
6859:
6860: * tests/172.html: - small changes in printing hash
6861:
6862: * tests/129.html: - small changes in printing hash
6863:
6864: * src/: include/pa_common.h, include/pa_hash.h,
6865: include/pa_request.h, types/pa_value.h, types/pa_vmethod_frame.C,
6866: types/pa_vmethod_frame.h: - hash now keeps order of elements
6867:
6868: * tests/014.html: - small changes in printing hash
6869:
6870: 2009-07-07 misha
6871:
6872: * src/classes/op.C: - new taint language "parser-code" was added
6873:
6874: * tests/219.html: - test for auto untaint parser code in process
6875: was added
6876:
6877: * src/classes/op.C: - tainted pieces in body of process are
6878: auto-untainted now: ^ -> ^^, $ -> ^$ etc.
6879:
6880: * src/: include/pa_string.h, main/untaint.C: - new language
6881: L_PARSER_CODE for auto-untaint in process was added
6882:
6883: * src/: classes/file.C, classes/hash.C, classes/image.C,
6884: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
6885: classes/xdoc.C, include/pa_string.h, main/pa_charset.C,
6886: main/pa_http.C, main/pa_request.C, main/pa_xml_io.C,
6887: main/untaint.C, types/pa_value.h, types/pa_vhash.h,
6888: types/pa_vmail.C, types/pa_vobject.h, types/pa_vstring.h: - some
6889: code cleanup
6890:
6891: 2009-07-06 misha
6892:
6893: * src/classes/: file.C, hash.C, image.C, mail.C, op.C, string.C,
6894: table.C, void.C, xdoc.C: - cstr(params) and cstrm(params) were
6895: deleted. taint_cstr[m] and untaint_cstr[m] should be used
6896:
6897: * src/types/: pa_vcookie.C, pa_vhash.h, pa_vhashfile.C,
6898: pa_vimage.C, pa_vmail.C, pa_vobject.h, pa_vregex.C,
6899: pa_vrequest.C, pa_vstring.h, pa_vvoid.h: - cstr(params) and
6900: cstrm(params) were deleted. taint_cstr[m] and untaint_cstr[m]
6901: should be used
6902:
6903: * src/main/: pa_charset.C, pa_common.C, pa_exec.C, pa_http.C,
6904: pa_request.C, pa_sql_driver_manager.C, pa_xml_io.C: -
6905: cstr(params) and cstrm(params) were deleted. taint_cstr[m] and
6906: untaint_cstr[m] should be used
6907:
6908: * src/include/pa_string.h: - cstr(params) and cstrm(params) were
6909: deleted. taint_cstr[m] and untaint_cstr[m] should be used
6910:
6911: * tests/218.html: - test for checking automatic file-spec-taint was
6912: added
6913:
6914: * src/: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vmail.C,
6915: types/pa_vregex.C, types/pa_vrequest.C, types/pa_vstring.C,
6916: classes/file.C, classes/hash.C, classes/image.C,
6917: classes/string.C, classes/table.C, classes/void.C,
6918: classes/xdoc.C: - optimizations and simplification of
6919: string.cstr(...)
6920:
6921: * src/: include/pa_string.h, main/untaint.C, main/pa_common.C,
6922: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C:
6923: - optimizations and simplification of string.cstr(...)
6924:
6925: 2009-07-04 misha
6926:
6927: * tests/217.html: - test for recursion detection was added
6928:
6929: * src/: types/types.vcproj, main/main.vcproj,
6930: classes/classes.vcproj, targets/cgi/parser3.vcproj,
6931: targets/isapi/parser3isapi.vcproj: - RuntimeTypeInfo was removed
6932: from .vcproj
6933:
6934: * src/types/pa_wwrapper.h: - dynamic_cast was removed
6935:
6936: * tests/: 195.html, 195_utf8.txt, 195_windows1251.txt: - tests for
6937: uploading files and case-insensitive http-method were added
6938:
6939: * tests/: 216.html, 216_dir/1, 216_dir/2.txt: - test for checking
6940: tainted pattern in ^file:list[] was added
6941:
6942: 2009-07-03 misha
6943:
6944: * src/: classes/classes.vcproj, main/main.vcproj,
6945: types/types.vcproj, targets/cgi/parser3.vcproj,
6946: targets/isapi/parser3isapi.vcproj: - enable runtime info (needed
6947: for dynamic_cast) - little options changes
6948:
6949: * src/main/pa_http.C: - file::load[http works now with uploading
6950: files _and_ changing $.charset
6951:
6952: 2009-06-29 misha
6953:
6954: * src/types/pa_vregex.C: - ^untaint[regex][] for all tainted data
6955: while creating pattern
6956:
6957: 2009-06-25 misha
6958:
6959: * src/classes/image.C, operators.txt: - options' names for
6960: ^image.font were changed to $.space, $.width and $spacing -
6961: default space width now == gif's width
6962:
6963: 2009-06-24 misha
6964:
6965: * tests/215.html: - tests for $file.mode were added
6966:
6967: * operators.txt: - added info about $file.mode and changes in
6968: ^image.font[
6969:
6970: * src/: types/pa_vimage.h, classes/image.C: ^image.font - third
6971: param now could be omited - third param now could be hash (with
6972: all widths options: $.space-width, $.letter-width) - it's
6973: possible to specify tracking ($.letter-space)
6974:
6975: * src/classes/file.C: - file objects now could have mode field
6976: (text|binary)
6977:
6978: * src/types/: pa_vfile.C, pa_vfile.h: - method set_method was added
6979:
6980: 2009-06-23 misha
6981:
6982: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
6983: trim can work with utf-8 chars now
6984:
6985: 2009-06-20 misha
6986:
6987: * src/: classes/hash.C, main/pa_string.C: - string length cacheing
6988: was implemented
6989:
6990: * src/classes/table.C: - string length cacheing was implemented
6991:
6992: * src/include/pa_string.h: - string length cacheing was implemented
6993:
6994: 2009-06-17 misha
6995:
6996: * src/main/execute.C: - value param was removed from
6997: WContext::WContext
6998:
6999: * src/types/: pa_vcode_frame.h, pa_vmethod_frame.C, pa_wcontext.h,
7000: pa_wwrapper.h: - value param was removed from WContext::WContext
7001: - field wcontext was removed from VCodeFrame (using fparent
7002: instead)
7003:
7004: * tests/214.html: - test with hash copying
7005:
7006: 2009-06-16 misha
7007:
7008: * tests/: 062.html, results/062.processed: - evaluation hardcoded
7009: strings doesn't work in expression anymore
7010:
7011: * src/main/execute.C: - less calls for get_constructing() - little
7012: refactoring
7013:
7014: * src/: types/pa_wcontext.h, types/pa_wwrapper.h,
7015: include/pa_request.h: - less calls for get_constructing()
7016:
7017: * src/classes/: hash.C, hashfile.C: - fixed bug which was
7018: introduced with OPTIMIZE_SINGLE_STRING optimization
7019:
7020: 2009-06-14 misha
7021:
7022: * src/: classes/date.C, classes/file.C, classes/hash.C,
7023: classes/hashfile.C, classes/image.C, classes/regex.C,
7024: classes/table.C, classes/xdoc.C, classes/xnode.h,
7025: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
7026: types/pa_vstateless_class.h, main/execute.C: - create object for
7027: storing object's fields only for parser objects
7028:
7029: 2009-06-13 misha
7030:
7031: * buildall-with-xml, buildall-without-xml: - new option was added
7032: for building GC (it slightly reduces memory usage)
7033:
7034: * src/types/: pa_wcontext.h, pa_wwrapper.h: - optimization of
7035: single string write
7036:
7037: * src/main/execute.C: - bytecode optimization of ^class:constructor
7038: - optimization of single string write
7039:
7040: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.h:
7041: - bytecode optimization of ^class:constructor
7042:
7043: 2009-06-09 misha
7044:
7045: * src/targets/cgi/parser3.C: - type size_t was changed to int in
7046: main (better compatibility)
7047:
7048: 2009-06-08 misha
7049:
7050: * src/main/compile.y: - I've forgot to commit it :(
7051:
7052: 2009-06-07 misha
7053:
7054: * src/include/pa_opcode.h: - more optimizations for WITH_SELF,
7055: WITH_READ and WITH_ROOT
7056:
7057: * src/main/: compile.y, compile_tools.C, compile_tools.h,
7058: execute.C: - more optimizations for WITH_SELF, WITH_READ and
7059: WITH_ROOT - little refactoring
7060:
7061: 2009-06-06 misha
7062:
7063: * tests/213.html: - tests for 3rd match string-param were added
7064:
7065: * src/classes/string.C: - 3rd match param could be string now
7066:
7067: * src/main/: compile.y, compile_tools.h: - much more bytecode's
7068: sequences optimized to WITH_SELF__VALUE__GET_ELEMENT and
7069: GET_OBJECT_ELEMENT
7070:
7071: 2009-06-05 misha
7072:
7073: * src/main/pa_http.C: - bugfix: content-length was not calculated
7074: if $.body was specified
7075:
7076: 2009-06-04 misha
7077:
7078: * src/classes/op.C: - optimizing write_assign_lang in connect
7079:
7080: * src/classes/op.C: - optimizing write_assign_lang in taint/untaint
7081:
7082: * src/main/execute.C: - little refactoring - optimizing
7083: write_assign_lang in taint/untaint
7084:
7085: * src/include/pa_opcode.h: - little refactoring
7086:
7087: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
7088: main/compile_tools.h, main/execute.C: - optimizations for
7089: $self.field, ^self.method, $self.field[...] and $self.field(...)
7090: were added
7091:
7092: 2009-06-03 misha
7093:
7094: * src/types/pa_venv.C: - pa_strdup was replaced by strdup
7095:
7096: 2009-06-02 misha
7097:
7098: * src/: main/compile.y, main/compile_tools.h, main/execute.C,
7099: include/pa_opcode.h: - refactoring in last optimizations
7100: ($a[...], $a(...), $.a[...], $.a(...)). a bit less optimizations
7101: now but code is much easy and it is ready for further
7102: improvements.
7103:
7104: 2009-05-27 misha
7105:
7106: * src/: types/pa_junction.h, types/pa_vjunction.C,
7107: types/pa_vjunction.h, types/pa_vmethod_frame.h, main/execute.C: -
7108: changed in destructing junctions
7109:
7110: * src/main/: pa_charset.C, pa_string.C: - more safe creation on
7111: String:Body
7112:
7113: 2009-05-26 misha
7114:
7115: * src/: main/pa_common.C, main/pa_http.C, include/pa_common.h: -
7116: one method detect_charset was deleted - bug was fixed in this
7117: method (error while detecting charset in content_type withot last
7118: ';')
7119:
7120: * src/types/: pa_vform.C, pa_vform.h: - detect post charset only
7121: once
7122:
7123: 2009-05-25 misha
7124:
7125: * src/classes/file.C: - bugfix: file::exec didn't work after
7126: optimizing of helper_length
7127:
7128: 2009-05-24 misha
7129:
7130: * src/main/compile_tools.h: - $a[$b.c] and $a[$b.$c] optimisations
7131: were added - little refactoring
7132:
7133: * src/main/execute.C: - core while printing in debug log
7134: non-printable values was fixed - $a[$b.c] and $a[$b.$c]
7135: optimisations were added
7136:
7137: * src/include/pa_opcode.h: - new opcodes for $a[$b.c] and $a[$b.$c]
7138: were added
7139:
7140: 2009-05-23 misha
7141:
7142: * src/: lib/cord/cordbscs.c, lib/cord/cordxtra.c,
7143: lib/cord/include/cord.h, include/pa_string.h, main/untaint.C: -
7144: CORD_cat optimization
7145:
7146: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C:
7147: - call constr optimisation under separate define now
7148:
7149: * src/main/: compile_tools.h, execute.C: - bugfix: $a[] $b[$a] --
7150: in $b should be string, not void
7151:
7152: * src/main/compile.y: - little fix for rem-cut optimisation
7153:
7154: * src/: include/pa_opcode.h, main/compile_tools.C,
7155: main/compile_tools.h, main/execute.C: - optimisations for
7156: $a[^b[...]], $.a[^b[...]], $a(^b[...]) and $.a(^b[...])
7157:
7158: * INSTALL: - description of some #defined were added
7159:
7160: * src/types/: pa_vfile.C, pa_vfile.h: - fill .'text' field only
7161: before 1st access (memory usage is reduced if don't access to
7162: .text field)
7163:
7164: * src/include/pa_array.h: - array grows step now not static (it
7165: reduces numbers of reallocs)
7166:
7167: 2009-05-20 misha
7168:
7169: * src/include/pa_opcode.h: - bytecode optimization for $a(1),
7170: $.b(2), $c[d] and $.e[f] was added
7171:
7172: * src/main/: compile.y, compile_tools.C, compile_tools.h,
7173: execute.C: - bytecode optimization for $a(1), $.b(2), $c[d] and
7174: $.e[f] was added
7175:
7176: * src/main/execute.C: - debug printing moved in defines
7177:
7178: * src/main/: compile.y, compile_tools.C, compile_tools.h: - bugfix
7179: and little refactoring for OP_GET_OBJECT_ELEMENT +
7180: OP_GET_OBJECT_VAR_ELEMENT optimisation
7181:
7182: 2009-05-19 misha
7183:
7184: * src/main/: compile.y, compile_tools.C, compile_tools.h,
7185: execute.C: - $a.$b & ^a.$b bytecode optimisation
7186:
7187: * src/include/pa_opcode.h: - new opcodes were added (for $a.$b &
7188: ^a.$b optimisation)
7189:
7190: * src/main/compile.y: - compiler now generate new opcodes:
7191: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE for $a.b and
7192: ^a.b - compiler now cut off ^rem{ with all content ; any number
7193: of params }
7194:
7195: * src/main/execute.C: - code for handle new opcodes
7196: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE was added
7197:
7198: * src/main/: compile_tools.C, compile_tools.h: - new parameter was
7199: added for LA2V and LA2S
7200:
7201: * src/include/pa_opcode.h: - new defines which can be used for
7202: disable some bytecode optimisation and new opcodes were added
7203:
7204: 2009-05-17 misha
7205:
7206: * src/lib/cord/cordxtra.c: - bugfix.
7207:
7208: * tests/212.html: - .size[] and .study_size[] were added to tests
7209:
7210: * operators.txt: - info about regex class was added
7211:
7212: * tests/212.html: - tests for regex class were added
7213:
7214: 2009-05-16 misha
7215:
7216: * buildall-with-xml, buildall-without-xml: - moving from gc6.8 to
7217: gc7.1
7218:
7219: * tests/022.html: - test for ^file:list[path;] (empty second param)
7220: was added
7221:
7222: * src/classes/file.C: - bugfix: ^file:list[path;] [empty second
7223: param) should work
7224:
7225: 2009-05-15 misha
7226:
7227: * src/classes/table.C: - automatically disable stringstream usage
7228: on freebsd4
7229:
7230: * src/lib/cord/cordxtra.c: - var decl should be at the beginning of
7231: scope
7232:
7233: * tests/211.html: - test with different types of access to hash was
7234: added
7235:
7236: * tests/210.html: - test which checks for loosing tainting in
7237: hash's keys was added
7238:
7239: * tests/208.html: - some parser work added. or stime == 0 %-)
7240:
7241: * src/lib/cord/cordbscs.c: - little hack was added to cord
7242:
7243: * src/lib/cord/cordxtra.c: - cacheing of cord chars was added
7244:
7245: * src/include/pa_version.h, configure.in: - moko have made a lot of
7246: optimisations for increacing version number more dramatically :)
7247:
7248: * src/classes/date.C: - little refactoring: use constructor which
7249: accepts formated string
7250:
7251: * src/: include/pa_string.h, main/pa_string.C: - String constructor
7252: which can print formatted string was added
7253:
7254: 2009-05-14 misha
7255:
7256: * src/include/pa_string.h: - type was fixed
7257:
7258: * src/: classes/hashfile.C, classes/op.C,
7259: include/pa_cache_managers.h, include/pa_charset.h,
7260: include/pa_charsets.h, include/pa_common.h, include/pa_hash.h,
7261: include/pa_request.h, include/pa_sql_driver_manager.h,
7262: include/pa_string.h, include/pa_stylesheet_manager.h,
7263: include/pa_table.h, include/pa_xml_io.h, main/pa_charset.C,
7264: main/pa_charsets.C, main/pa_string.C,
7265: main/pa_stylesheet_connection.C, types/pa_value.h,
7266: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
7267: types/pa_vobject.C, types/pa_vstateless_class.C,
7268: types/pa_vstateless_class.h: - hash_code caching was implemented
7269: (seaches should be faster now)
7270:
7271: * src/: classes/file.C, classes/hash.C, classes/image.C,
7272: classes/string.C, classes/table.C, include/pa_string.h,
7273: main/pa_charset.C, main/pa_http.C, main/pa_request.C,
7274: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_venv.C,
7275: types/pa_vform.C, types/pa_vhashfile.C, types/pa_vregex.C,
7276: types/pa_vrequest.C: - String constructors don't have that stupid
7277: true/false param which means 'tainted'. they accept lang instead.
7278:
7279: * src/types/pa_vmethod_frame.h: - bugfix: taint/untaint didn't work
7280: with OPTIMIZE_RESULT
7281:
7282: * src/types/: pa_method.h, pa_vstateless_class.C: - less warnings
7283: wher OPTIMIZE_RESULT and OPTIMIZE_CALL not defined
7284:
7285: 2009-05-13 misha
7286:
7287: * src/: types/pa_method.h, types/pa_vcookie.C, types/pa_vdouble.h,
7288: types/pa_venv.C, types/pa_vhashfile.C, types/pa_vint.h,
7289: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
7290: types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
7291: types/pa_vstateless_class.C, main/execute.C, main/pa_charset.C,
7292: main/pa_common.C, main/pa_request.C, main/pa_string.C,
7293: include/pa_string.h, classes/date.C, classes/file.C,
7294: classes/hash.C, classes/image.C, classes/string.C,
7295: classes/table.C, classes/xdoc.C: - result optimisation -
7296: helper_length parameter removed from string constructors
7297:
7298: 2009-05-11 misha
7299:
7300: * tests/209.html: - tests for ^hash::create[hash] were added
7301:
7302: * tests/208.html: - tests for $status:rusage, $status:memory,
7303: ^memory:compact[] were added
7304:
7305: * tests/207.html: -tests for abs, sign, trunc, frac, exp, log,
7306: log10 were added
7307:
7308: * tests/206.html: - test for try with finally was added
7309:
7310: 2009-05-10 misha
7311:
7312: * tests/205.html: - test for ^file::create[...] was added
7313:
7314: * tests/204.html: - test for ^response:clear[] was added
7315:
7316: * tests/038.html: - tests for trigonometric functions were added
7317:
7318: * tests/014.html: - tests for ^hash.containts and ^hash.delete were
7319: added - more tests for .add, .sub, .union, .intersects and
7320: .intersections
7321:
7322: * tests/065.html: - test for ^file:dirname was added
7323:
7324: * tests/030.html: - test for $cookie:fields was added
7325:
7326: * tests/203.html: - test for ^h._keys[column name] was added
7327:
7328: * tests/201.html: - tests for .trim were added
7329:
7330: * tests/202.html: - tests for last-day,
7331: date:calendar[type](YYYY;MM;DD) were added
7332:
7333: * tests/200.html: - tests for .sort(), .sort{}, .flip[] and
7334: .offset[type](N) were added
7335:
7336: * tests/185.html: - more tests for .left(N), .right(N), .min(N;M)
7337: and .pos[c](N) were added
7338:
7339: * tests/141.html: - test for math:sha1 was added
7340:
7341: * tests/063.html: - tests for .mod(N), .inc[] & .dec[] were added
7342:
7343: 2009-05-09 misha
7344:
7345: * src/main/compile.y: - rollback
7346:
7347: 2009-05-05 misha
7348:
7349: * src/main/pa_exec.C: - little optimisation: somewhere length() was
7350: replaced by is_empty()
7351:
7352: * src/: include/pa_string.h, main/pa_charset.C: - little
7353: optimisation: somewhere length() was replaced by is_empty()
7354:
7355: * src/classes/table.C: - little optimisation: somewhere length()
7356: was replaced by is_empty()
7357:
7358: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
7359: classes/op.C, classes/table.C, main/pa_exception.C: - little
7360: optimisation: somewhere length() was replaced by is_empty()
7361:
7362: 2009-05-04 misha
7363:
7364: * src/: types/pa_method.h, types/pa_vstateless_class.C,
7365: types/pa_vstateless_class.h, main/execute.C,
7366: include/pa_request.h, classes/hash.C, classes/op.C,
7367: classes/table.C: - more optimisations were added: some operators
7368: don't switch write context anylonger
7369:
7370: 2009-05-01 misha
7371:
7372: * src/main/compile.y: - slightly more opcode optimisations for
7373: WITH_WRITE + VALUE + GET_ELEMENT -> OP_VALUE__GET_ELEMENT
7374:
7375: * src/main/execute.C: - simplifying process for getters
7376:
7377: 2009-04-30 misha
7378:
7379: * tests/: 198.html, 199.html: - new line fixes (should be 0x0A)
7380:
7381: * tests/results/199.processed: - test for checking $result into
7382: ^rem was added
7383:
7384: * tests/199.html: - test for checking $result into ^rem was added
7385:
7386: * tests/: 022.html, 096.html: - þsort after :list was asses (on
7387: some OS it returns list in different order)
7388:
7389: * src/: include/pa_array.h, include/pa_request.h,
7390: include/pa_stack.h, main/execute.C, types/pa_vmethod_frame.h: -
7391: changes in stack impl - get_element() optimisation: 3rd param
7392: removed - bugfix: problems with reading empty input param -
7393: defines SAVE_CONTEXT and RESTORE_CONTEXT were added and used
7394:
7395: * tests/results/198.processed: - test for reading empty local var
7396: was added
7397:
7398: * tests/198.html: - test for reading empty local var was added
7399:
7400: 2009-04-29 misha
7401:
7402: * src/main/compile.y: - bugfix: couldn't compile because
7403: OP_VALUE__GET_ELEMENT should be unde #ifdef
7404:
7405: * src/: include/pa_array.h, include/pa_opcode.h,
7406: include/pa_request.h, main/compile.y, main/execute.C,
7407: main/pa_request.C, types/pa_vmethod_frame.C,
7408: types/pa_vmethod_frame.h: - we can work without opcode
7409: OP_STORE_PARAM, so it was removed
7410:
7411: 2009-04-28 misha
7412:
7413: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: -
7414: op-codes optimisation: 1. VALUE+GET_CLASS=>VALUE_GET_CLASS 2.
7415: WITH_READ+VALUE+GET_ELEMENT=>VALUE__GET_ELEMENT (not all yet)
7416: 3. WITH_READ+VALUE+GET_ELEMENT__WRITE=>VALUE__GET_ELEMENT__WRITE
7417: 4.
7418: WITH_READ+VALUE+GET_ELEMENT_OR_OPERATOR=>VALUE__GET_ELEMENT_OR_OPERATOR
7419:
7420: * src/main/compile_tools.h: - new stuff for op-codes optimisation
7421:
7422: * src/: main/pa_string.C, classes/string.C: - !length() =>
7423: is_empty()
7424:
7425: 2009-04-27 misha
7426:
7427: * src/types/pa_vregex.h: - back explicit vars initialisation
7428:
7429: 2009-04-24 misha
7430:
7431: * src/classes/string.C: - ups. typo fixed
7432:
7433: * src/main/execute.C: - more replacements '*new VBool' to
7434: 'VBool::get' - checks for ^break[], ^continue[] and
7435: parser.interrupted were optimised
7436:
7437: * src/classes/string.C: - number of params.count() calls was
7438: slightly reduced
7439:
7440: 2009-04-23 misha
7441:
7442: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
7443: make it x64 friendly
7444:
7445: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
7446: parser is x64 friendly now
7447:
7448: 2009-04-22 misha
7449:
7450: * src/types/pa_vhashfile.C: - coder friendly exception about
7451: exceeding record size was added
7452:
7453: * src/classes/file.C: - use vregex object instead of direct calls
7454: methods from pcre lib
7455:
7456: * src/: classes/file.C, include/pa_string.h, main/pa_string.C,
7457: classes/string.C: - use vregex object instead of direct calls
7458: methods from pcre lib
7459:
7460: * src/: include/pa_common.h, main/pa_common.C: - method
7461: print_pcre_exec_error_text was moved to class vregex
7462:
7463: * src/classes/: Makefile.am, classes.vcproj, regex.C: - class regex
7464: was added
7465:
7466: * src/types/: Makefile.am, pa_vregex.C, pa_vregex.h, types.vcproj:
7467: - class vregex was added
7468:
7469: 2009-04-21 misha
7470:
7471: * buildall-with-xml, buildall-without-xml: - pcre 7.8 -> pcre 7.9
7472:
7473: * src/: types/pa_junction.h, types/pa_value.C,
7474: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_wcontext.C,
7475: types/pa_wcontext.h, main/execute.C, classes/op.C: -
7476: junction-optimisation (destructors)
7477:
7478: * src/include/pa_array.h: - free under if now
7479:
7480: 2009-04-19 misha
7481:
7482: * src/main/untaint.C: - ^taint[js] now escapes \x0D as well
7483:
7484: 2009-04-18 misha
7485:
7486: * src/include/pa_version.h:
7487: :q :
7488:
7489: CV:
7490: ----------------------------------------------------------------------
7491:
7492: * src/types/: pa_vjunction.h, pa_vstateless_class.C: - little
7493: refactoring
7494:
7495: * src/: include/pa_array.h, include/pa_hash.h,
7496: types/pa_vmethod_frame.h: - destructors under #ifdef now
7497:
7498: * src/include/pa_memory.h: - define for using destructors was added
7499:
7500: * src/: types/pa_method.h, types/pa_vstateless_class.C,
7501: main/execute.C: - some junctions will be cached now
7502:
7503: * src/include/pa_hash.h: - hash destructor frees pairs now
7504:
7505: * src/include/pa_array.h: - inline was added to destructor
7506:
7507: * src/types/pa_method.h: - comment was changed
7508:
7509: 2009-04-17 misha
7510:
7511: * src/: include/pa_array.h, include/pa_hash.h,
7512: types/pa_vmethod_frame.h: - destructors were added
7513:
7514: * src/types/: pa_method.h, pa_vmethod_frame.h: - write_to_result
7515: renamed to always_use_result
7516:
7517: * src/main/: compile.y, compile_tools.h: - rollback changes in
7518: compiler: full backward compatibility is better
7519:
7520: * src/types/pa_vmethod_frame.h: - set flag write_to_result if find
7521: result in var's hash
7522:
7523: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
7524: optimisation in method_frame
7525:
7526: * src/include/pa_array.h: - optimisation in array (allocate
7527: elements only when needed)
7528:
7529: * src/types/pa_vresponse.C: - check for $response:headers field
7530: before looking at custom fields
7531:
7532: * src/types/pa_vmethod_frame.h: - if flag write_to_result was set,
7533: not needed to check existance var with name 'result' in var's
7534: hash
7535:
7536: * src/main/compile.y: - compiler was changed: now it detects
7537: writings to $result and set flag writo_to_result in method
7538:
7539: * src/classes/string.C: - little optimisation: no needed to write
7540: number with lang
7541:
7542: * src/main/pa_charset.C: - methods readChar and skipChar which is
7543: used for read utf8-strings were renamed - is_escaped was renamed
7544: to isEscaped (to the same name convention)
7545:
7546: * src/: types/pa_method.h, main/compile_tools.h: - flag
7547: write_to_result added. compiler get this info from code.
7548:
7549: 2009-04-16 misha
7550:
7551: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: - create new
7552: String only before 1st write
7553:
7554: * src/include/pa_string.h: - not needed template removed
7555:
7556: * src/: types/pa_vbool.h, types/pa_vfile.h, types/pa_vimage.C,
7557: types/pa_vjunction.C, types/pa_vproperty.C,
7558: types/pa_vstateless_class.C, types/pa_vxdoc.C, types/pa_vxnode.C,
7559: main/pa_request.C, classes/bool.C, classes/double.C,
7560: classes/hash.C, classes/int.C, classes/string.C, classes/table.C,
7561: classes/void.C, classes/xnode.C: - bool optimisation (use only 2
7562: bool objects)
7563:
7564: 2009-04-15 misha
7565:
7566: * src/lib/cord/cordxtra.c: - more optimisation
7567:
7568: * src/: include/pa_string.h, main/untaint.C: - String::append
7569: optimisation
7570:
7571: * src/include/pa_hash.h: - get_by_hash_code added (it works faster
7572: then get and can sometime be used)
7573:
7574: * src/main/pa_string.C: - String::length optimisation
7575:
7576: * src/main/pa_charset.C: - rollback changeing readChar to skipChar.
7577: these methods read different strings
7578:
7579: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
7580: fresult_initial_void removed + some optimisation - if $result
7581: defined we don't write to context anymore
7582:
7583: * src/main/pa_charset.C: - readChar => skipChar (in this place we
7584: need just skip char)
7585:
7586: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
7587: types/pa_vrequest.C, types/pa_vtable.C, main/execute.C,
7588: classes/table.C: - VVoid::get() => new VVoid (one void-instance)
7589:
7590: * src/types/pa_vvoid.h: - added get() method for retreave one
7591: instance
7592:
7593: 2009-04-11 misha
7594:
7595: * tests/196.html: - tests for $cookie:CLASS_NAME & Co were added
7596:
7597: * tests/197.html: - test for parser://test in xml was added
7598:
7599: * src/classes/string.C: - small optimisation
7600:
7601: * src/types/: pa_venv.C, pa_venv.h, pa_vconsole.h: - small
7602: optimisation
7603:
7604: 2009-04-10 misha
7605:
7606: * buildall-with-xml, buildall-without-xml: - moving from pcre-7.7
7607: to pcre-7.8
7608:
7609: * src/types/pa_vclass.C: - normalizing todo-comments: '@todo' now
7610:
7611: * src/types/: pa_vcookie.C, pa_vcookie.h: - $cookie:CLASS_NAME was
7612: added
7613:
7614: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:CLASS and
7615: $request:CLASS_NAME were added
7616:
7617: * src/types/pa_vconsole.h: - $console:CLASS and $console:CLASS_NAME
7618: were added
7619:
7620: * src/types/: pa_venv.C, pa_venv.h: - $env:CLASS and
7621: $env:CLASS_NAME were added
7622:
7623: * src/types/: pa_vmail.C, pa_vdate.h: - normalizing todo-comments:
7624: '@todo' now
7625:
7626: * src/targets/cgi/parser3.C: - size_t -> int for calming down
7627: compirer
7628:
7629: * src/main/pa_string.C: - little code cleanup
7630:
7631: * src/main/pa_common.C: - describe one more UTF-8 related error
7632: during PCRE compile/execute
7633:
7634: * src/classes/: image.C, inet.C, string.C, xdoc.C, xnode.C: -
7635: normalizing todo-comments: '@todo' now
7636:
7637: * src/types/: pa_vmath.C, pa_vmath.h: - $math:E was added
7638:
7639: * src/main/pa_charset.C: - type changed for making compiler happy
7640:
7641: 2009-03-10 misha
7642:
7643: * src/targets/cgi/parser3.C: make g++ happy with the type of argc
7644: in main()
7645:
7646: 2009-02-01 misha
7647:
7648: * src/main/pa_http.C: - bugfix: double CRLF before the end of
7649: boundary
7650:
7651: 2009-01-25 misha
7652:
7653: * tests/: 194.html, 194_dir/194.p: - test for @GET[] was added
7654:
7655: * src/classes/file.C: - more changes for parsing different number
7656: of params for file::load
7657:
7658: * tests/193.html: - tests for exception while base64-decode binary
7659: to string was added
7660:
7661: * tests/192.html: - tests for file::load with different number of
7662: options
7663:
7664: * src/classes/math.C: - ups. forgot '+1'
7665:
7666: * src/: classes/table.C, classes/file.C, include/pa_common.h,
7667: include/pa_http.h, main/pa_xml_io.C, main/pa_common.C,
7668: main/pa_http.C: - ^file::load[...;http://...;] now can post files
7669: (new option $.encode[multipart-form/data] should be specified) -
7670: $.method[] option for file::load now is not case-sensitive
7671:
7672: * src/: include/pa_string.h, main/untaint.C: - for file post the
7673: new taint language L_FILE_POST was added
7674:
7675: * src/: include/pa_random.h, main/Makefile.am, main/pa_random.C,
7676: main/main.vcproj, classes/math.C, include/Makefile.am: - some
7677: stuff was moved to separate files
7678:
7679: 2009-01-23 misha
7680:
7681: * src/classes/math.C: - little optimisation in ^math:sha1[] -
7682: spaces to tabs were converted
7683:
7684: 2009-01-12 misha
7685:
7686: * src/main/pa_http.C: - value of $.method[] option force uppercased
7687: now
7688:
7689: * src/: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
7690: types/pa_vform.C, types/pa_vmail.C: - some constants changed
7691: their names
7692:
7693: * src/main/pa_common.C: - changes in formating
7694:
7695: * src/: classes/file.C, main/pa_http.C: - some constants changed
7696: their names
7697:
7698: * src/include/pa_http.h: - some spaces were converted to tabs
7699:
7700: * src/include/pa_common.h: - some constants changed their names
7701:
7702: * src/classes/file.C: - fixed 4-th paramether for file::load -
7703: little code rewriting
7704:
7705: * src/types/pa_vfile.C: - little code rewriting
7706:
7707: * src/: main/pa_common.C, main/pa_http.C, main/untaint.C,
7708: types/pa_value.h: - some formating changes
7709:
7710: * src/include/pa_common.h: - some formating spaces transformed to
7711: tabs
7712:
7713: * src/classes/string.C: - exception while base64-decode binary to a
7714: string
7715:
7716: 2009-01-11 misha
7717:
7718: * configure.in: - version changed to 3.3.1b
7719:
7720: 2008-09-05 misha
7721:
7722: * src/lib/pcre/Makefile.am: file Makefile.am was added on branch
7723: release_3_3_0 on 2008-09-05 10:59:35 +0000
7724:
7725: 2008-09-04 misha
7726:
7727: * tests/: 130.html, 131.html: - these exceptions not typeless
7728: anymore
7729:
7730: * src/classes/op.C: - exception with 'invalid taint language' not
7731: typeless anylonger
7732:
7733: * src/classes/image.C: - some exceptions while operations with
7734: image not typeless anymore
7735:
7736: * src/: types/pa_vhashfile.C, main/pa_common.C, classes/file.C,
7737: main/pa_exec.C, main/pa_http.C: - some exceptions while
7738: operations with files not typeless anymore
7739:
7740: * src/: classes/date.C, types/pa_value.C, types/pa_vcookie.C,
7741: types/pa_vdate.h: - exceptions while checking date range not
7742: typeless anymore
7743:
7744: * src/include/pa_exception.h: - exception type string for invalid
7745: date range was added
7746:
7747: 2008-09-03 misha
7748:
7749: * src/: classes/file.C, main/pa_string.C: - exception while pce
7750: operations not typeless anymore
7751:
7752: * src/include/pa_exception.h: - exception type for pce operations
7753: was added
7754:
7755: * tests/: 191.html, 191_a.p, 191_b.p: - tests for calling .CLASS
7756: and .CLASS_NAME insite classes
7757:
7758: * src/classes/table.C: - don't save table header whiile
7759: ^table.save[append;filename] if file exists
7760:
7761: 2008-09-02 misha
7762:
7763: * src/main/compile.y, src/main/compile_tools.h,
7764: src/types/pa_vstateless_class.h, src/main/compile.tab.C,
7765: tests/182_dir/a1.p, tests/182_dir/a2.p: - append option was
7766: renamed to partial and it login changed: we must mark class as
7767: partial for allow their modifications in future.
7768:
7769: 2008-08-29 misha
7770:
7771: * tests/results/022.processed: - testing taint[regex] in mask for
7772: file:list
7773:
7774: * tests/022.html: - testing taint[regex] in mask for file:list
7775:
7776: * tests/022_dir/b[b].txt: - file for testing taint[regex] in mask
7777: for file:list was added
7778:
7779: * src/classes/file.C: - bugfix: ^taint[regex][] didn't works in
7780: file:list
7781:
7782: 2008-08-26 misha
7783:
7784: * src/types/pa_vobject.C: - we must get .CLASS and .CLASS_NAME from
7785: last derived object
7786:
7787: * src/classes/image.C: - many strings "image.format" replaced by
7788: IMAGE_FORMAT constant string - handle GPS info while parse exif -
7789: understand some more exif tags
7790:
7791: * src/include/pa_exception.h: - string "image.format" was added
7792:
7793: 2008-08-21 misha
7794:
7795: * src/: main/pa_string.C, classes/file.C: - use method for print
7796: pcre_exec text error
7797:
7798: * src/main/pa_common.C: - method for print pcre_exec text error was
7799: added
7800:
7801: * src/include/pa_common.h: - method declaration for print pcre_exec
7802: text error was added
7803:
7804: 2008-08-19 misha
7805:
7806: * src/main/execute.C: - bugfix: opcodes must be in separate
7807: namespace while debug execution as well
7808:
7809: * tests/: 015.html, results/015.processed: - test for escaping some
7810: parser chars was added
7811:
7812: 2008-08-18 misha
7813:
7814: * tests/: 190.html, 190.p, results/190.processed: - test for
7815: $caller.self.field + default getter in one class was added
7816:
7817: * tests/: 189.html, results/189.processed: - test for
7818: ^date::create[date object]
7819:
7820: * tests/: 188.html, results/188.processed: - tests for match with
7821: UTF-8 strings
7822:
7823: * src/main/pa_string.C: - option 'U' (ungreedy) was added to
7824: ^string.match[]
7825:
7826: * ChangeLog: - parser 3.3.0 beta13
7827:
7828: 2008-08-15 misha
7829:
1.116 moko 7830: * src/lib/pcre/: LICENCE, Makefile.am, README, Tech.Notes, get.c,
7831: internal.h, pcre.3, pcre.3.html, pcre.3.txt, pcre.c, pcre.h,
7832: pcre.vcproj, study.c, maketables.c, pcre_dftables.vcproj,
7833: dftables.c: - old PCRE files removed
1.95 moko 7834:
7835: * src/lib/pcre/config.h: - configuration for PCRE library
7836:
7837: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
7838: use PCRE library from win32\pcre instead of parser3\src\lib\pcre
7839:
7840: * src/: classes/file.C, main/pa_string.C: - moved to new PCRE
7841: library and set flag UTF8 if $request:charset is UTF-8
7842:
7843: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_globals.C,
7844: include/pa_config_fixed.h: - moved to new PCRE library
7845:
7846: * src/: main/main.vcproj, types/types.vcproj,
7847: classes/classes.vcproj, lib/Makefile.am: - use PCRE library from
7848: win32\pcre instead of parser3\src\lib\pcre
7849:
7850: * src/: include/pa_opcode.h, include/pa_operation.h,
7851: main/compile.C, main/compile.y, main/compile_tools.C,
7852: main/compile_tools.h, main/execute.C, main/compile.tab.C: -
7853: opcodes were moved to separate namespace
7854:
7855: 2008-08-14 misha
7856:
7857: * src/types/pa_vstateless_class.C: - newline at the end missed
7858:
7859: * src/main/untaint.C: - char '-' also prefixed by '\' while regex
7860: tainting
7861:
7862: 2008-08-11 misha
7863:
7864: * tests/: 187.html, 187.p, results/187.processed: - tests for
7865: $caller.self, $caller.self.field and $caller.self.field[value]
7866: were added
7867:
7868: * src/types/pa_vmethod_frame.h: - still need to check 'self'
7869: runtime as well (for $caller.self)
7870:
7871: 2008-07-25 misha
7872:
7873: * tests/: 021.html, 032.html, 033.html, 047.html, 055.html,
7874: 059.html, 061.html, 064.html, 067.html, 068.html, 085.html,
7875: 086.html, 098.html, 109.html, 121.html: - set correct charsets in
7876: tests with international characters
7877:
7878: 2008-07-23 misha
7879:
7880: * src/main/pa_http.C: - escape $cookies as %uXXXX while
7881: file::load[...;http://
7882:
7883: * src/: main/pa_string.C, main/pa_globals.C, classes/file.C: - pcre
7884: now everywhere in separate namespace
7885:
7886: * src/types/pa_vmethod_frame.h: - looking for caller before looking
7887: for vars
7888:
7889: * src/main/: compile.y, compile.tab.C: - characters '@' and '#' now
7890: can be escaped by '^'
7891:
7892: 2008-07-22 misha
7893:
7894: * src/classes/string.C, tests/186.html: - names changes:
7895: escape=>js-escape, unescape=>js-unescape
7896:
7897: 2008-07-21 misha
7898:
7899: * tests/results/186.processed: - test for string escape/unescape
7900:
7901: * tests/186.html: - test for string escape/unescape
7902:
7903: * src/classes/string.C: - string has escape and unescape methods
7904: now
7905:
7906: * src/: include/pa_string.h, main/pa_string.C: - escape method was
7907: added
7908:
7909: * src/: include/pa_charset.h, main/pa_charset.C: - more escape
7910: method-layers added (with different params)
7911:
7912: 2008-07-18 misha
7913:
7914: * tests/results/185.processed: - test for ^str.pos[substr](offset)
7915: was added
7916:
7917: * tests/185.html: - test for ^str.pos[sub](offset) added
7918:
7919: * src/classes/string.C, src/classes/void.C, operators.txt: -
7920: ^string.pos[substr](offset) -- 2nd param accepted now
7921:
7922: * src/main/pa_string.C: - .pos works fine with offset for utf-8
7923: strings
7924:
7925: 2008-07-17 misha
7926:
7927: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
7928: helper length added for mid for small optimisation
7929:
7930: 2008-07-16 misha
7931:
7932: * tests/: 185.html, results/185.processed: - tests for
7933: length/left/right/mid/pos with utf-8 strings
7934:
7935: * src/classes/string.C: - left/right/mid/length/pos works fine for
7936: utf-8 strings
7937:
7938: * src/main/untaint.C: - comments removed
7939:
7940: * src/: include/pa_string.h, main/pa_string.C,
7941: include/pa_charset.h, main/pa_charset.C: - methods for working
7942: with pos/mid for strings in utf-8 were added
7943:
7944: 2008-07-15 misha
7945:
7946: * tests/: 184.html, results/184.processed: - test for case body as
7947: expression: $var(^switch(1){^case(1)(true)..})
7948:
7949: * src/classes/op.C: - case body can be expression now:
7950: $var(^switch(1){^case(1)(true)..})
7951:
7952: * tests/: results/183.processed, 183.html: - added test for testing
7953: new cookie encoding (%uXXXX)
7954:
7955: * src/main/untaint.C: - cookies outputs as %uXXXX now. while
7956: decoding for backward compatibility they decoded from %XX in
7957: request:charset too
7958:
7959: * src/: types/pa_vcookie.C, types/pa_vcookie.h, main/pa_request.C:
7960: - cookie class now decode cookies before first access after last
7961: request:charset changing (as form class).
7962:
7963: * src/main/pa_charset.C: - added method escape for escaping cookies
7964: as %uXXXX - before transcode calculate required space for dest
7965: string. it reduce mem usage for transcode
7966:
7967: * src/include/pa_charset.h: - added method escape for escaping
7968: cookies as %uXXXX
7969:
7970: * src/include/pa_string.h: - taint lang (internal) L_HTTP_COOKIE
7971: was added. will used for escaping cookies as %uXXXX
7972:
7973: * src/include/pa_common.h: - escape method has new option for skip
7974: converting '+' to a space char
7975:
7976: * src/main/: pa_common.C, pa_http.C: - skip BOM code before
7977: transcode - escape method has new option for skip converting '+'
7978: to a space char
7979:
7980: 2008-07-08 misha
7981:
7982: * src/classes/op.C: - bugfix in switch - case "stops" on 1st match
7983: (no UE if more then 1 case matches anylonger) - optimization:
7984: doing searching.as_string() || searching.as_double() only once
7985:
7986: 2008-07-04 misha
7987:
7988: * src/types/pa_vdate.h: - is_evaluated_expr returning true added so
7989: now ^date::create[date object] works
7990:
7991: * src/classes/string.C: - left and right added as aliases for start
7992: and end in ^string.trim[]
7993:
7994: 2008-07-03 misha
7995:
7996: * src/classes/file.C: - allow $.limit for file::sql as well
7997:
7998: * src/classes/file.C: - allow $.offset option for file::sql - force
7999: send limit=1 to query for use sql specifics authomatically
8000:
8001: * src/classes/: hash.C, string.C, table.C: - don't throw exception
8002: if $.limit value if empty. autoconvert it as everywere
8003:
8004: 2008-07-02 misha
8005:
8006: * configure.in: - time to change version number to 3.3.0 %-)
8007:
8008: * src/include/pa_version.h: - time to change version number to
8009: 3.3.0 %-)
8010:
8011: 2008-06-26 misha
8012:
8013: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
8014: $.limit(0) fixes
8015:
8016: * src/sql/pa_sql_driver.h: - new drivers API and new version (10.0)
8017: - $.limit(0) fixes
8018:
8019: * src/sql/pa_sql_driver.h: - SQL_NO_LIMIT added (preparations to
8020: new API)
8021:
8022: * src/: include/pa_sql_driver_manager.h,
8023: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
8024: classes/op.C: - document_root added
8025:
8026: * src/main/compile.tab.C: - error message was changed
8027:
8028: 2008-06-25 misha
8029:
8030: * src/main/compile.y: - error message was changed
8031:
8032: 2008-06-24 misha
8033:
8034: * tests/176_dir/: a.p, d.p: - @OPTION => @OPTIONS
8035:
8036: * tests/: 182.html, 182_dir/a1.p, 182_dir/a2.p, 182_dir/a3.p: -
8037: tests for @OPTIONS\nappend
8038:
8039: * tests/: 176.html, results/176.processed: - @OPTION => @OPTIONS
8040:
8041: * src/main/: compile.y, compile.tab.C: - stuff for @OPTIONS\nappend
8042:
8043: * src/main/compile_tools.h: - new methods for @OPTIONS\nappend
8044:
8045: * src/types/pa_vmethod_frame.h: - ALL_VARS_LOCAL_NAME moved fo
8046: compile.y
8047:
8048: 2008-06-17 misha
8049:
8050: * src/main/: compile.y, compile.tab.C: - bugfix in 'def'
8051: compilation: ^if(default){true. it's incorrect. must be
8052: exception}
8053:
8054: 2008-06-16 misha
8055:
8056: * tests/: 181.ent, 181.html, results/181.processed: - test for
8057: checking external reference loading with 'http://localhost'
8058: prefix while creating xdoc
8059:
8060: * tests/180.html: - use ^inet:ntoa[] and ^inet:aton[] instead of
8061: ^math:long2ip[] and ^math:ip2long[]
8062:
8063: * src/types/: pa_vobject.C, pa_vobject.h: - get_scalar_value method
8064: added which use scalar stateless class method when user object
8065: used in scalar context - use get_scalar_value when user object
8066: requested in scalar context
8067:
8068: * src/main/pa_common.C: - size must be int but not size_t or we
8069: can't compare with 0 sprintf result
8070:
8071: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
8072: main/execute.C, main/pa_request.C: - go back to one VMethodFrame
8073: with internal switch between local/global vars
8074:
8075: * src/types/pa_vclass.C: - register scalar if method @GET[] was
8076: specified
8077:
8078: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h,
8079: pa_vstateless_object.h: - stateless class and object now has
8080: private scalar field and getter/setter for working with it
8081:
8082: * src/classes/math.C: - methods math:long2ip & math:ip2long were
8083: moved to inet static class
8084:
8085: * src/classes/: classes.vcproj, inet.C, Makefile.am: - inet static
8086: class added (^inet:aton[IP], ^inet:ntoa(number))
8087:
8088: * tests/: 180.html, results/180.processed: - tests for
8089: ^math:long2ip(long) and ^math:ip2long[IP]
8090:
8091: * src/classes/math.C: - ^math:ip2long[IP] added
8092:
8093: 2008-06-11 misha
8094:
8095: * src/main/pa_xml_io.C: - use file_read_text again because of we
8096: need cut BOM code and remove DOS newline chars. but don't
8097: transcode it anyway.
8098:
8099: * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
8100: main/pa_http.C: - option for disable transcoding while file_read
8101: and file_read_text added
8102:
8103: 2008-06-10 misha
8104:
8105: * tests/: 179.html, 179.p, results/179.processed: - test for many
8106: classes in 1 file
8107:
8108: * src/main/: compile.C, compile_tools.h: - compile return list of
8109: classes now.
8110:
8111: * src/main/: compile.y, compile.tab.C: - compile return list of
8112: classes now. internals.
8113:
8114: * src/main/pa_request.C: - compile return list of classes now. try
8115: call @conf and @auto for each returned class
8116:
8117: * src/include/pa_request.h: - compile return list of classes now
8118:
8119: * src/types/pa_vstateless_class.h: - typedef ArrayClass added (for
8120: return list of classes when compile buf)
8121:
8122: 2008-06-07 misha
8123:
8124: * src/main/pa_request.C: - constructing VRequest object with 3rd
8125: param -- form
8126:
8127: * src/types/: pa_vrequest.C, pa_vrequest.h: - constructor acceps
8128: 3rd param: form. needed for get post_charset
8129:
8130: * src/types/: pa_vform.C, pa_vform.h: - VForm::get_post_charset()
8131: added
8132:
8133: * src/: include/pa_common.h, main/pa_common.C, main/pa_http.C,
8134: types/pa_vform.C, types/pa_vform.h: - some polish
8135:
8136: 2008-06-06 misha
8137:
8138: * src/types/: pa_vform.C, pa_vform.h: - if POST -- try detec
8139: charset and decode chars from it but not from response:charset
8140:
8141: * src/main/pa_http.C: - detect_charset moved out of here
8142:
8143: * src/: include/pa_common.h, main/pa_common.C: - more helpers
8144: methods moved here - unescape_chars accepn one charset now
8145:
8146: * src/main/pa_http.C: - new constants used - don't allow
8147: $.content-type in ^file::load[;http://;$.method[POST]] - add
8148: charset info while ^file::load[;http://;$.method[POST]] - option
8149: $.omit-post-charset(true) added to ^file::load[;http://] for
8150: disabling charset during post
8151:
8152: * src/types/pa_vform.C: - new constants used
8153:
8154: * src/include/pa_common.h: - some constants were added
8155:
8156: * src/: classes/form.C, types/pa_vform.C: - use StrStartFromNC
8157: instead of StrEqNc
8158:
8159: * src/main/pa_common.C: - new method for caseless search
8160: c-substring in c-string - use isxdigit instead of is_hex_digit
8161:
8162: * src/include/pa_common.h: - new method for caseless search
8163: c-substring in c-string
8164:
8165: 2008-06-05 misha
8166:
8167: * tests/results/178.processed: - test for testing default getter
8168:
8169: * tests/178.html: - test for testing default getter
8170:
8171: * tests/178_dir/: 178a.p, 178b.p, 178c.p, 178d.p, 178e.p: - classes
8172: for test for testing default getter
8173:
8174: * src/main/execute.C: - default getter soul
8175:
8176: * src/types/: pa_vobject.C, pa_vobject.h: - get default getter if
8177: requested objects' field not found
8178:
8179: * src/types/pa_vclass.C: - register default getter if defined - get
8180: default getter if requested field not found
8181:
8182: * src/types/pa_vstateless_object.h: - method get_default_getter was
8183: added
8184:
8185: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
8186: pointer to default getter and methods for get/set it were added
8187:
8188: * src/types/: pa_junction.h, pa_vjunction.h: - junction has
8189: auto_name field (for default getter)
8190:
8191: 2008-06-04 misha
8192:
8193: * src/main/pa_xml_io.C: - load external xml in binary mode (no
8194: transcoding, no cutting BOM code, no fixing line breaks) and get
8195: it to libxml "as is"
8196:
8197: 2008-06-03 misha
8198:
8199: * src/main/pa_common.C: - use store_Char instead of
8200: transcodeCharFromUTF8
8201:
8202: * src/: include/pa_charset.h, main/pa_charset.C: - method
8203: store_Char added, transcodeCharFromUTF8 -- removed
8204:
8205: 2008-06-02 misha
8206:
8207: * tests/: results/177.processed, 177.html: - test for checking
8208: .[acm]date after local ^file::load[] was added
8209:
8210: * tests/: results/176.processed, 176.html: - test for checking
8211: @OPTION\locals + @method[vars][locals] added
8212:
8213: * tests/results/auto.p: - CLASS_PATH specified for checking use
8214:
8215: 2008-05-30 misha
8216:
8217: * src/main/: compile.y, compile.tab.C: - changes in compiler:
8218: @OPTION\nlocals + @method[vars][;locals;] were added
8219:
8220: * src/main/execute.C: - code of OP_CALL and OP_CALL__WRITE was
8221: moved to separate method op_code - switch from VMethodFrame to
8222: VMethodFrameGlobal + VMethodFrameLocal
8223:
8224: * src/include/pa_request.h: - code of OP_CALL and OP_CALL__WRITE
8225: was moved to separate method op_code
8226:
8227: * src/main/pa_request.C: - use VMethodFrameGlobal instead of
8228: VMethodFrame now
8229:
8230: * src/types/pa_vstateless_class.h: - stateless class have bool flag
8231: all_vars_local as well
8232:
8233: * src/types/: pa_vmethod_frame.h, pa_vmethod_frame_global.h,
8234: pa_vmethod_frame_local.h, Makefile.am: - who children for
8235: VMethodFrame were added: one (global) works as VMethodFrame
8236: before and second (local) write all vars in self vars scope
8237:
8238: * src/types/pa_method.h: - method has bool flag all_vars_local now
8239:
8240: 2008-05-29 misha
8241:
8242: * tests/: 129.html, results/129.processed: - more tests for
8243: ^table.hash[]
8244:
8245: * src/classes/hash.C: - ^hash::sql has a new option:
8246: $.type[hash|string|table] as ^table.hash[] one.
8247:
8248: * src/classes/op.C: - ^try has 3rd param now: finally code which
8249: executed anyway after try or catch section
8250:
8251: 2008-05-27 misha
8252:
8253: * src/classes/table.C: - bugfix: ^table.hash[key][$.type[table]]
8254: must not fail if $.distinct(1) wasn't specified
8255:
8256: 2008-05-26 misha
8257:
8258: * src/classes/op.C: - allow ^throw[my type]
8259:
8260: 2008-05-22 misha
8261:
8262: * configure.in, configure: - version number updated to 3.2.4b
8263:
8264: * src/classes/: op.C, string.C: - trim format string before
8265: eval/format
8266:
8267: * tests/: results/175.processed, 175.html: - more tests for
8268: different format strings in .format[]
8269:
8270: * src/types/pa_vform.C: - while decoding get values decode %uXXXX
8271: as well (not only %XX)
8272:
8273: * src/main/pa_common.C: - unescape_chars can decode %uXXXX if
8274: charset specified - checks for format before print number
8275: (^d.format[>...<], ^eval($d)[>...<]) - formating with spaces
8276: (instead of tabs) removed
8277:
8278: * src/include/pa_common.h: - unescape_chars can decode %uXXXX if
8279: charset specified
8280:
8281: * src/: include/pa_charset.h, main/pa_charset.C: - method for get
8282: char in requested charset from utf code was added
8283:
8284: 2008-05-19 misha
8285:
8286: * tests/: 174.html, results/174.processed: - test for
8287: ^hashfile.cleanup[] added
8288:
8289: * src/classes/hashfile.C: - optimization: don't create any key or
8290: value variable if it's name weren't specified
8291: (^hf.foreach[;v]{...})
8292:
8293: 2008-05-16 misha
8294:
8295: * src/classes/hash.C: - optimization: don't create any key variable
8296: if variable name wasn't specified (^h.foreach[;v]{...})
8297:
8298: 2008-05-15 misha
8299:
8300: * src/classes/op.C: - small changes
8301:
8302: * src/classes/hashfile.C: - code reformating (as hash.foreach)
8303:
8304: * src/classes/hash.C: - calculate var_context once before foreach
8305:
8306: 2008-05-14 misha
8307:
8308: * src/classes/hashfile.C: - incorrect vars context calculation for
8309: ^hashfile.foreach[;]{} fixed
8310:
8311: * src/classes/: hash.C, table.C: - little optimisation
8312:
8313: * src/classes/file.C: - bugfix: double absolute path while loading
8314: file
8315:
8316: * tests/: 174.html, results/174.processed: - tests for hashfile
8317: were added
8318:
8319: * buildall-with-xml: - moving to libxslt 1.1.24
8320:
8321: 2008-04-30 misha
8322:
8323: * src/classes/file.C: - stat file while loading (local only) so
8324: .adate, .mdate and .cdate available without additional ::stat
8325:
8326: 2008-04-28 misha
8327:
8328: * src/classes/file.C: - $.name and $.content-type available for
8329: stated file
8330:
8331: 2008-04-14 misha
8332:
8333: * src/targets/cgi/parser3.C: - new year in copyright %-)
8334:
8335: * src/include/pa_version.h: - new version number in head
8336:
8337: 2008-04-10 misha
8338:
8339: * tests/: 080.html, results/080.processed: - cut '0' from
8340: exponential part because of on diff OS it differ (20 or 020 for
8341: ex)
8342:
8343: * tests/: 119.html, results/119.processed: - check for encoding
8344: while creating xdoc
8345:
8346: 2008-04-09 misha
8347:
8348: * buildall-with-xml: - move to libxml 2.6.32 and libxslt 1.1.23
8349:
8350: * src/main/pa_common.C: - comment added
8351:
8352: * src/classes/date.C: - little refactoring
8353:
8354: 2008-04-07 misha
8355:
8356: * src/classes/table.C: - use NO_STRINGSTREAM for switch to old
8357: style of ^table.save[]: prepare one big string and sabe it at
8358: once. it's safe on freebsd 4.x but use much more memory.
8359:
8360: * buildall-with-xml, buildall-without-xml: - option
8361: --disable-stringstream added (under comment. use it on freebsd
8362: 4.x)
8363:
8364: 2008-02-22 misha
8365:
8366: * src/main/pa_http.C: - exception if $.body[] and $.forms[]
8367: specified together in file::load[;http] - get back transcoding
8368: $.body[] in file::load[;http]
8369:
8370: 2008-02-21 misha
8371:
8372: * src/classes/date.C: - ^date.gmt-string[] was added
8373:
8374: * src/types/pa_value.C: - method for output date in RFC 822 format
8375: moved to pa_common.h
8376:
8377: * src/include/pa_common.h: - method for output date in RFC 822
8378: format moved here from pa_value.C
8379:
8380: * src/types/pa_vmail.C: - fixed core in sending mail with
8381: attachment in simple mode ($.file[file here]) introduced in 3.2.2
8382:
8383: 2008-02-20 misha
8384:
8385: * src/main/pa_http.C: - transcode $.headers before escaping into
8386: specified charset while ^file::load[...;http://...] (L_URI
8387: instead of L_HTTP_HEADER) - $.cookies param available in
8388: ^file::load[;http://...] now (but we don't parse set-cookies from
8389: response yet) (cookies not transcoded as common $cookies)
8390:
8391: 2008-02-19 misha
8392:
8393: * src/main/pa_request.C: - rollback: we mustn't force taint
8394: $response:field values because in this case
8395: $response:locateion[http://...] don't works.
8396:
8397: 2008-02-15 misha
8398:
8399: * src/classes/op.C: - little refactoring
8400:
8401: * src/main/pa_http.C: - taint names of $.headers for load[;http
8402:
8403: * src/main/pa_request.C: - force taint values of $response:field
8404:
8405: 2008-02-14 misha
8406:
8407: * src/main/pa_request.C: - $response:field transcoded to
8408: $response:charset before escaping now
8409:
8410: * src/main/pa_http.C: - some outdated comments removed
8411:
8412: * src/classes/date.C: - lastdat -> last-day
8413:
8414: * src/classes/date.C: - ^date:lastday(year;month) and
8415: ^date.lastday[] were added - little code refactoring - comments
8416: changes
8417:
8418: * tests/: 159.html, results/159.processed: - test for number of
8419: days in February
8420:
8421: * src/types/pa_value.C: - fixes in code formatting
8422:
8423: * src/classes/: file.C, op.C, table.C: - fixes in code formatting
8424: and comments
8425:
8426: 2008-02-13 misha
8427:
8428: * src/main/pa_common.C: - bugfix for february at leap year
8429:
8430: 2008-01-28 misha
8431:
8432: * tests/: 160.html, results/160.processed: - more test for cache
8433: added
8434:
8435: * src/classes/op.C: - bugfix: cache body executed twice if contains
8436: unhandled exception
8437:
8438: 2008-01-25 misha
8439:
8440: * src/lib/sdbm/sdbm.c: - use arp_malloc instead of malloc (fixed
8441: bug when hashfile became inavailable after memory:compact)
8442:
8443: * src/lib/sdbm/apr_strings.C: - +arp_malloc
8444:
8445: 2008-01-22 misha
8446:
8447: * src/classes/table.C: - little refactiring and exception texts
8448: changes in method ^table.hash[]
8449:
8450: * src/types/pa_vcookie.C: - link to cookie specification changed
8451:
8452: 2008-01-21 misha
8453:
8454: * tests/: 171.html, cat.sh, results/171.processed: - more tests for
8455: file::exec/cgi
8456:
8457: * src/classes/file.C: - bugfix: core while processing headers if
8458: executed cgi script don't return content
8459:
8460: 2008-01-18 misha
8461:
8462: * buildall-with-xml: - move to libxml2 version 2.6.31
8463:
8464: * src/include/pa_version.h, configure.in: - version number updated
8465: to '3.2.3b'
8466:
8467: 2007-12-28 misha
8468:
8469: * src/: classes/hash.C, include/pa_hash.h: - hash.contain =>
8470: hash.contains
8471:
8472: 2007-12-27 misha
8473:
8474: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
8475: src/lib/cord/cord.vcproj, src/lib/gd/gd.vcproj,
8476: src/lib/ltdl/ltdl.vcproj, src/lib/md5/md5.vcproj,
8477: src/lib/pcre/pcre.vcproj, src/lib/pcre/pcre_dftables.vcproj,
8478: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
8479: src/lib/smtp/smtp.vcproj, src/main/main.vcproj,
8480: src/targets/cgi/parser3.vcproj,
8481: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj: -
8482: back to VS2003 because of Apache 1.3 module can't work if it was
8483: built in VS 2005. with cgi all file so VS2003 project files can
8484: be easy converted to the new format.
8485:
8486: 2007-12-04 misha
8487:
8488: * src/types/pa_vcode_frame.h: - changes in comment
8489:
8490: 2007-11-29 misha
8491:
8492: * src/: types/pa_vcode_frame.h, main/execute.C: - code frame don't
8493: intercept strings any longer
8494:
8495: * tests/: 173.html, results/173.processed: - tests for
8496: $d[^date::now[]] $j{$d} $r[$j] -- must create date object in $r
8497: but not in main code frame
8498:
8499: * tests/: 172.html, results/172.processed: - more tests for pass
8500: objects from code frames
8501:
8502: 2007-11-27 misha
8503:
8504: * tests/: 152.html, results/152.processed: - tests for converting
8505: strings 'true'/'false' to bool were added
8506:
8507: * tests/152.html: - added checks for converting strings
8508: 'true'/'false' to bool
8509:
8510: * src/classes/string.C: - ^srting.bool[] now can convert to bool
8511: not only strings with numbers but with values 'true'/'false' as
8512: well
8513:
8514: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: - buffer size
8515: for parser3.log increased
8516:
8517: * src/main/pa_common.C: - remove_crlf optimize whitespaces now
8518:
8519: * src/include/pa_common.h: - remove_crlf return cstring size now
8520:
8521: * src/include/pa_types.h: - constant with buffer size for
8522: parser3.log added
8523:
8524: 2007-11-16 misha
8525:
8526: * tests/cat.sh: - script for tests for file::exec/cgi
8527:
8528: * tests/171.html: - tests for file::exec/cgi
8529:
8530: * tests/results/171.processed: - tests results for file::exec/cgi
8531:
8532: 2007-11-15 misha
8533:
8534: * src/main/pa_exec.C: - fixed incorrect exec code for unix
8535:
8536: * src/classes/file.C: - .body must be set before analyzing cgi
8537: headers
8538:
8539: * src/classes/file.C: - bugfix: we must transcode output fix EOLs
8540: only if exec/cgi return anything.
8541:
8542: 2007-11-14 misha
8543:
8544: * operators.txt: - info about new text|binary option for
8545: file::exec/cgi was added
8546:
8547: * src/: include/pa_exec.h, main/pa_exec.C, classes/file.C: -
8548: ^file:exec[[text|binary];script;...]
8549:
8550: * src/: include/pa_exception.h, classes/file.C, classes/image.C,
8551: classes/string.C, classes/table.C: - more text strings moved to
8552: the one place
8553:
8554: 2007-11-09 misha
8555:
8556: * src/types/pa_vrequest.C: - $request:argv must be taint
8557:
8558: * ChangeLog: - $request:argv [patch from Sumo]
8559:
8560: * operators.txt: - $request:argv
8561:
8562: * src/: include/pa_request_info.h, types/pa_vrequest.C,
8563: types/pa_vrequest.h, targets/cgi/parser3.C: - $request:argv
8564:
8565: 2007-10-25 misha
8566:
8567: * buildall-with-xml, buildall-without-xml: - options preparations
8568: for ./configure rewrited
8569:
8570: * src/main/: compile.tab.C, compile.y: - bug if parser.compile
8571: error occure in unhandled_exception finally fixed
8572:
8573: 2007-10-23 misha
8574:
8575: * tests/: 170.html, results/170.processed: - test for
8576: @method[][result]
8577:
8578: * operators.txt: - added info about node.prefix and
8579: node.namespaceURI
8580:
8581: * src/classes/xnode.C: - xmlHasProp used instead of xmlGetProp
8582:
8583: * src/types/pa_vxnode.C: - DOM2 fields namespaceURI and prefix were
8584: added for node and attribute
8585:
8586: 2007-10-22 misha
8587:
8588: * src/types/pa_vmail.C: - content-transfer-encoding: 8bit added
8589:
8590: * src/main/pa_request.C: - added const content-transfer-encoding
8591:
8592: * src/include/pa_request.h: - added const content-transfer-encoding
8593: - ups. constants must be in lowercase (for search)
8594:
8595: * src/types/pa_vmail.C: - more constants used -
8596: content-transfer-encoding: 8bit added
8597:
8598: * src/main/pa_uue.C: - content-transfer-encoding moved out of here
8599:
8600: * src/include/pa_request.h: - more constants
8601:
8602: * src/types/pa_vmail.C: - constant renamed - $.content-id don't
8603: ommit anymore if $.content-disposition was specified - little
8604: refactoring
8605:
8606: * src/: include/pa_request.h, main/pa_request.C: - constant renamed
8607:
8608: 2007-10-17 misha
8609:
8610: * operators.txt: - info about
8611: table::create[nameless]{data}[>options<] was added
8612:
8613: * src/main/: compile.tab.C, compile.y: - if error occure while
8614: compile method don't put this method in methods table anymore.
8615: in other case the parser coredumped if @unhandled_exception
8616: method can't be compiled because of parser.compile error.
8617:
8618: * src/main/execute.C: - little code reformating
8619:
8620: * src/main/pa_request.C: - little code reformating - comment
8621: changed
8622:
8623: 2007-10-16 misha
8624:
8625: * tests/: 035.html, results/035.processed: - tests
8626: table::create[]{}[options] added
8627:
8628: * src/classes/table.C: - table::create[]{} now accept 3rd param:
8629: options (only $.seperator[] yet)
8630:
8631: 2007-10-10 misha
8632:
8633: * src/classes/table.C: - some contstants moved to pa_common.h -
8634: some code changes
8635:
8636: 2007-10-02 misha
8637:
8638: * src/main/pa_uue.C: - memory usage during uuencode reduced more
8639: then three time as much. but base64 encoding method still use
8640: less memory anyway.
8641:
8642: 2007-09-17 misha
8643:
8644: * operators.txt: - added info about $cookie:fields
8645:
8646: * src/types/pa_vcookie.C: - $cookie:fields available now
8647:
8648: * src/classes/hash.C: - some stuff for use with .for_each moved to
8649: common
8650:
8651: * src/include/pa_common.h: - some stuff for use with .for_each
8652: moved here
8653:
8654: * src/types/: pa_venv.C, pa_venv.h: - some strings moved to #define
8655:
8656: 2007-09-14 misha
8657:
8658: * buildall-with-xml: - new xml libs again =)
8659:
8660: 2007-08-28 misha
8661:
8662: * operators.txt: - texts about ^table.columns[[column name]] and
8663: ^string.split[...][v][column name] were added
8664:
8665: * tests/: 168.html, 169.html, results/168.processed,
8666: results/169.processed: - tests for ^table.columns[[column name]]
8667: and ^string.split[...][v][column name] were added
8668:
8669: * src/classes/table.C: - new option ^table.columns[[column name]]
8670: was added
8671:
8672: * src/classes/string.C: - new option ^string.split[...;v;[column
8673: name]]
8674:
8675: * src/include/pa_exception.h: - error text message for
8676: ^hash._keys[], ^table.columns[] and ^string.split[]
8677:
8678: 2007-08-27 misha
8679:
8680: * src/main/untaint.C: - try to fix coredump on unix if print to
8681: body ^taint[sql][something] outside of connect
8682:
8683: * tests/: 167.html, results/167.processed: - test for ^taint[sql]
8684: outside of connect
8685:
8686: * buildall-with-xml, buildall-without-xml: - strip parser3 was
8687: added (commented by default)
8688:
8689: 2007-08-20 misha
8690:
8691: * operators.txt: - comment about new method ^node.hasAttributes[]
8692: was added
8693:
8694: * src/classes/: file.C, math.C, op.C, string.C, xdoc.C: - more
8695: duplicated exception text strings were removed
8696:
8697: * src/include/pa_exception.h: - more exception text strings moved
8698: here
8699:
8700: * src/classes/table.C: - some duplicate exceptions' text strings
8701: removed
8702:
8703: * src/classes/: file.C, hashfile.C, image.C, op.C, string.C,
8704: xdoc.C, xnode.C: - some duplicate exceptions' text strings
8705: removed
8706:
8707: * src/include/pa_exception.h: - some exception text strings movet
8708: to pa_exception
8709:
8710: * tests/: 149.html, results/149.processed: - test for
8711: ^xnode.hasAttributes[] was added - some code changes
8712:
8713: * src/classes/xnode.C: - DOM2 method ^xnode.hasAttributes[] was
8714: added
8715:
8716: 2007-08-17 misha
8717:
8718: * tests/: results/006.processed, results/059.processed, 006.html,
8719: 059.html: - more tests for match
8720:
8721: * tests/: 129.html, results/129.processed: - tests for
8722: ^table.hash[...][$.type[string|hash|table]] added
8723:
8724: * src/targets/cgi/parser3.C: - little syntax changes
8725:
8726: * src/: classes/math.C, targets/isapi/parser3isapi.C: - little
8727: syntax changes
8728:
8729: * src/targets/cgi/parser3.C, operators.txt: - annoying 'SIGPIPE'
8730: messages in parser3.log switched off by default. If someone
8731: really still need it: use $SIGPIPE(1)
8732:
8733: 2007-08-08 misha
8734:
8735: * buildall-with-xml, buildall-without-xml: - remove libs source
8736: files by default since now
8737:
8738: 2007-08-07 misha
8739:
8740: * buildall-without-xml: - some option syntax changes
8741:
8742: * buildall-with-xml: - compile libxml2 without http support - some
8743: option syntax changes
8744:
8745: * src/main/pa_xml_io.C: - will use parser file loader for xml needs
8746:
8747: 2007-08-06 misha
8748:
8749: * buildall-with-xml: - moved to libxml2-2.6.29 and libxslt-1.1.21
8750:
8751: * tests/: 160.html, results/160.processed: - cache test was
8752: rewrited
8753:
8754: 2007-07-06 misha
8755:
8756: * tests/: 153.html, results/153.processed: - added test for
8757: ^math:sha1[string]
8758:
8759: * src/types/pa_vform.C: - bugfix: uploaded file name wasn't
8760: transcoded
8761:
8762: * src/classes/math.C: - ^math:long2ip(long) and ^math:sha1[string]
8763: were added
8764:
8765: 2007-06-28 misha
8766:
8767: * etc/parser3.charsets/windows-1251.cfg: - removed duplicated and
8768: some incorrect chars
8769:
8770: 2007-06-19 misha
8771:
8772: * src/include/pa_hash.h: - methods generic_hash_code & hash_code
8773: were moved on top because of gcc 4 had a problems during
8774: building.
8775:
8776: 2007-06-18 misha
8777:
8778: * tests/results/019.processed: - new image commited
8779:
8780: 2007-06-09 misha
8781:
8782: * src/classes/: op.C, table.C: - in while and table.select method
8783: as_expression used now
8784:
8785: * src/types/pa_vmethod_frame.h: - method as_expression was added
8786:
8787: 2007-06-08 misha
8788:
8789: * tests/: 166.html, results/166.processed: - test for
8790: ^match[...][n]
8791:
8792: * tests/: 165.html, results/165.processed: - tests for loops
8793:
8794: * src/lib/cord/include/private/cord_pos.h: - back to origin value
8795: because of no speed/memory optimisation but some proglems with
8796: long cycles occure
8797:
8798: 2007-06-06 misha
8799:
8800: * src/classes/: op.C, table.C: - ^while(true){}, ^while(1){},
8801: ^table.select(true) and ^table.select(1) didn't works because of
8802: awaiting junction-param only. fixed.
8803:
8804: 2007-05-24 misha
8805:
8806: * src/: include/pa_os.h, main/pa_os.C: - 20 attempt to get lock
8807: with 0.5 secs interval
8808:
8809: * src/classes/op.C: - cache was rewrited. I hope it works with
8810: locking system now on unix
8811:
8812: * src/main/pa_os.C: - locks engines were rewrited: now we don't use
8813: system locks which wait till other threads release it but try get
8814: lock, if fail wait 1 sec and make 10 attempts.
8815:
8816: * src/include/pa_os.h: - consts for blocking locks + some comments
8817: were added
8818:
8819: * src/lib/sdbm/apr_file_io.C: - wait till lock released while
8820: opening files
8821:
8822: * src/classes/table.C: - changes in includes. if unclude <sstream>
8823: after our classes on unix it can't be build
8824:
8825: * src/types/pa_vhashfile.C: - not needed code removed
8826:
8827: 2007-05-23 misha
8828:
8829: * src/: classes/file.C, classes/op.C, main/pa_common.C,
8830: include/pa_common.h: - cosmetic changes
8831:
8832: 2007-05-18 misha
8833:
8834: * src/lib/cord/include/private/cord_pos.h: - rebalance tree not so
8835: often. it's give some speed increasing
8836:
8837: * tests/results/160.processed: - returned time corrected
8838:
8839: * tests/160.html: - time increased because on unix 1 mean nothing
8840: :(
8841:
8842: * operators.txt: - added info about ^hash.contain[key]
8843:
8844: * src/classes/hash.C: - added ^hash.contain[key]
8845:
8846: * src/include/pa_hash.h: - added method for checking key exists in
8847: hash
8848:
8849: 2007-05-07 misha
8850:
8851: * src/include/pa_string.h: - was compilation error during build on
8852: freebsd4
8853:
8854: 2007-05-03 misha
8855:
8856: * src/classes/table.C: - option $.type[hash|string|table] was added
8857: for ^table.hash[]
8858:
8859: * src/classes/file.C: - comment removed
8860:
8861: 2007-04-26 misha
8862:
8863: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - while ::open the
8864: real files doesn't opened in place anymore
8865:
8866: 2007-04-24 misha
8867:
8868: * src/classes/math.C: - I thought one more time and remove lg(N) :)
8869:
8870: * src/include/pa_exception.h: "static" removed
8871:
8872: 2007-04-23 misha
8873:
8874: * src/classes/math.C: ^math:lg(N) => ^math:log10(N)
8875:
8876: * src/classes/math.C: added: - ^math:ln(N) (the same as
8877: ^math:log(N)) - ^math:lg(N)
8878:
8879: * tests/: 097.html, results/097.processed: - charsets converstion
8880: during ^file::load[text;http://...] added
8881:
8882: * tests/: 164.html, results/164.processed: - check for set expires
8883: as a date
8884:
8885: * tests/: 164.html, results/164.processed: - test for hashfile
8886:
8887: * src/classes/hashfile.C: - little comment changes
8888:
8889: * src/types/pa_vhashfile.C: - don't open hashfile files until 1st
8890: access
8891:
8892: * src/: classes/date.C, classes/double.C, classes/file.C,
8893: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
8894: classes/mail.C, classes/math.C, classes/op.C, classes/string.C,
8895: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
8896: classes/xnode.h, include/pa_request.h, main/execute.C,
8897: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
8898: main/pa_dictionary.C, main/pa_exec.C, main/pa_http.C,
8899: main/pa_request.C, main/pa_sql_driver_manager.C, main/pa_table.C,
8900: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
8901: types/pa_vconsole.h, types/pa_vfile.h, types/pa_vhash.h,
8902: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmethod_frame.h,
8903: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
8904: types/pa_vtable.C, types/pa_vxdoc.h, types/pa_wcontext.C: -
8905: "parser.runtime" strings were removed
8906:
8907: * src/classes/hashfile.C: - with .clear[] called files_delete()
8908: now.
8909:
8910: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - .clear() removed.
8911:
8912: * src/include/pa_exception.h: - string constant with
8913: "parser.runtime" text was added
8914:
8915: 2007-04-20 misha
8916:
8917: * operators.txt: - some comments changing
8918:
8919: * operators.txt: - added info about .^hashfile.release[],
8920: ^hashfile.clenaup[] and new ^string.match[][>N-option<]
8921:
8922: * configure: =cheching for unsetenv
8923:
8924: * src/classes/hashfile.C: - ^hashfile.cleanup[],
8925: ^hashfile.release[] were added
8926:
8927: * src/: main/pa_string.C, include/pa_string.h, classes/string.C: -
8928: ^string.match[][] understand new option now: return number of
8929: matches but not table wit results
8930:
8931: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - hashfile can auto
8932: reopen now
8933:
8934: * src/classes/op.C: - bug. must be false
8935:
8936: * configure.in: - checking for unsetenv was added
8937:
8938: * src/types/pa_vform.C: - some comments
8939:
8940: 2007-04-18 misha
8941:
8942: * buildall-with-xml: moving to libxml2-2.6.28
8943:
8944: * buildall-with-xml, buildall-without-xml: added commented lines
8945: with --disable-safe-mode option
8946:
8947: * operators.txt: - info about $form:files
8948:
8949: 2007-04-17 misha
8950:
8951: * src/types/: pa_vform.C, pa_vform.h: - some code was modified -
8952: $form:files was added
8953:
8954: * tests/: 163.html, results/163.processed: removing auto format
8955:
8956: * src/types/pa_vdate.h: - start adding unsetenv("TZ");
8957:
8958: 2007-04-16 misha
8959:
8960: * tests/: 163.html, results/163.processed: - test for .int[],
8961: floor, round, ceiling and .format[]
8962:
8963: * src/classes/file.C: - little optimization for getting args in
8964: exec/cgi
8965:
8966: 2007-04-13 misha
8967:
8968: * src/classes/file.C: - arguments for file::exec/cgi can be
8969: specified now as s table with one column
8970:
8971: 2007-03-27 misha
8972:
8973: * tests/: 162.html, results/162.processed: - test for
8974: ^table.select(^condition[$t])
8975:
8976: * tests/results/auto.p: - load windows-1251 charset for some tests
8977:
8978: * tests/run_parser.sh: PARSER_CONFIG -> CGI_PARSER_CONFIG
8979:
8980: * tests/: results/161.processed, 161.html, 161_utf8.txt,
8981: 161_windows1251.txt: - added test for
8982: ^file::load[text;/local/file.txt;$.charset[...]]
8983:
8984: * tests/: results/013.processed, 013.html: - added test for
8985: checking $._default value while hash modifications
8986:
8987: * tests/: 160.html, results/160.processed: - add test for
8988: ^cache[key](secs){code}, ^cache[] and ^cache(0)
8989:
8990: 2007-03-22 misha
8991:
8992: * src/include/pa_common.h: - "charset" string defined for
8993: ^file::load[text;/local.txt] and ^table::load[/table.txt]
8994:
8995: * src/main/: pa_common.C, pa_http.C: - $.charset option for
8996: ^file::load[text;/local.txt] and ^table::load[/table.txt] was
8997: added - not needed transcodes were removed from
8998: ^file::load[...;http://...]
8999:
9000: * src/types/pa_vdate.h: - date.week was fixed - date.weekyear was
9001: added
9002:
9003: * src/classes/date.C: - date.week was fixed
9004:
9005: * operators.txt: - added info about date.weekyear
9006:
9007: * tests/: 159.html, results/159.processed: - tests for date.week
9008: and date.weekyear added
9009:
9010: 2007-03-15 misha
9011:
9012: * src/classes/table.C: - enclose column numbers for nameless tables
9013: as well
9014:
9015: 2007-03-14 misha
9016:
9017: * src/targets/cgi/parser3.C: - bugxif. failed when request cgi
9018:
9019: * src/classes/table.C: - table.save optimization: now required much
9020: less memory
9021:
9022: 2007-03-13 misha
9023:
9024: * tests/results/: 158.processed, 158.processes: - tests for
9025: table.save/table.load
9026:
9027: * tests/: 158.html, results/158.processes: - tests for
9028: table.save/table.load
9029:
9030: * buildall-with-xml: libxml2: --without-ftp --without-docbook
9031:
9032: * buildall-with-xml: - pattern needed now for building
9033:
9034: * tests/results/097.processed: - added test results for xdoc::load
9035: & xdoc::load[http://...]
9036:
9037: * tests/097.html: - added test for xdoc::load
9038:
9039: 2007-03-12 misha
9040:
9041: * tests/: 107.html, results/107.processed: - added test for xpath
9042: '//man'
9043:
9044: 2007-03-01 misha
9045:
9046: * tests/: 097.html, results/097.processed: - added test for
9047: creating xdoc from file
9048:
9049: * tests/: results/157.processed, 157.html: - added test for
9050: file:move
9051:
9052: 2007-02-28 misha
9053:
9054: * src/classes/xdoc.C: - another attempt
9055:
9056: * src/classes/xdoc.C: - roll back last changes for a while
9057:
9058: * src/classes/xdoc.C, operators.txt: - ^xdoc::create[$file] added.
9059:
9060: * src/classes/file.C: - under lock we create non-exist dir anyway
9061:
9062: * tests/results/099.processed: - ever send content-disposition to
9063: client with file
9064:
9065: * tests/157.html: + test for file:copy
9066:
9067: 2007-02-26 misha
9068:
9069: * src/classes/file.C: - some similar strings moved to #define
9070: instead of to be copy/pasted many times
9071:
9072: * src/types/pa_vfile.h: - class name string ("file") moved to
9073: #define
9074:
9075: 2007-02-20 misha
9076:
9077: * bin/auto.p.dist.in: - added lines for sqlite
9078:
9079: * configure.in: - added some strings for sqlite detection
9080:
9081: 2007-02-19 misha
9082:
9083: * operators.txt: - some comments changes
9084:
9085: * buildall-with-xml, buildall-without-xml: - some modifications
9086:
9087: 2007-02-17 misha
9088:
9089: * buildall-with-xml, buildall-without-xml: - moving to gc6.8
9090:
9091: * src/main/pa_request.C: - damn, i forgot to commit it while I
9092: change console behaviour
9093:
9094: 2007-02-12 misha
9095:
9096: * src/targets/cgi/parser3.C: - don't print headers if
9097: $console:line[data] was used during cgi execution.
9098:
9099: * src/types/pa_vconsole.h: - console class have bool flag now which
9100: marked as 'true' if class was used.
9101:
9102: * tests/: 152.html, results/152.processed: - more types was added
9103: to test 152
9104:
9105: * src/types/: pa_vimage.C, pa_vimage.h: - fixed bug added while
9106: adding 'bool' (^if($image){} caused exception)
9107:
9108: 2007-02-09 misha
9109:
9110: * tests/: 152.html, results/152.processed: - test alightly updated
9111:
9112: * tests/: 152.html, results/152.processed: - test rewrited
9113:
9114: * src/types/: pa_vxdoc.C, pa_vxdoc.h, pa_vxnode.C, pa_vxnode.h: -
9115: bugfix. I broke xdoc & xnode in expression
9116:
9117: 2007-02-08 misha
9118:
9119: * tests/: 152.html, results/152.processed: - add test for checking
9120: 'def' for void, string, bool, int & double
9121:
9122: 2007-02-07 misha
9123:
9124: * operators.txt: - ^file:base64[filespec] was added
9125:
9126: * tests/results/153.processed: - result test for
9127: ^file:base64[filespec] was updated
9128:
9129: * tests/153.html: - test for ^file:base64[filespec] was added
9130:
9131: * src/types/pa_vconsole.h: - little optimization
9132:
9133: * src/classes/file.C: - ^file:base64[filespec]
9134:
9135: * src/main/pa_common.C: - definitions for ^file:base64[filespec]
9136:
9137: * src/include/pa_common.h: - declarations for
9138: ^file:base64[filespec]
9139:
9140: * src/types/pa_vcookie.C: - little optimization
9141:
9142: 2007-02-06 misha
9143:
9144: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: - some chars
9145: were temporary commented
9146:
9147: * src/types/pa_vbool.h: - bugfix
9148:
9149: * tests/156.html: - added test for bool cookie
9150:
9151: * src/types/pa_vcookie.h: - not needed string "cookie" removed
9152:
9153: * tests/: 155.html, results/155.processed: - added test for check
9154: $.encloser[] option for table save/load
9155:
9156: * tests/: 153.html, 154.html, todo.txt: - two more tests added
9157:
9158: 2007-02-05 misha
9159:
9160: * tests/results/152.processed: - newline at the end was missed
9161:
9162: * tests/results/141.processed: - math:md5 must be lowercased
9163:
9164: * src/targets/cgi/parser3.C: - 2007 in help ;)
9165:
9166: 2007-02-03 misha
9167:
9168: * tests/results/: 150.processed, 151.processed, 152.processed: -
9169: test for bool added and some content length fixes
9170:
9171: * tests/152.html: - test for bool added
9172:
9173: * buildall-with-xml: - moved to libxml2-2.6.27 and libxslt-1.1.20
9174:
9175: * operators.txt: - info bool class was added
9176:
1.116 moko 9177: * src/: classes/Makefile.am, classes/bool.C,
1.95 moko 9178: classes/classes.vcproj, classes/double.C, classes/int.C,
9179: classes/string.C, classes/void.C, classes/xnode.C,
9180: include/pa_string.h, types/pa_vbool.h, types/pa_vclass.h,
9181: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
9182: types/pa_vjunction.h, types/pa_vproperty.C, types/pa_vproperty.h,
9183: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
9184: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h,
9185: types/types.vcproj: - bool class was added
9186:
9187: * src/main/pa_request.C: - fix
9188:
9189: 2007-01-18 misha
9190:
9191: * src/: main/pa_string.C, classes/string.C: - return table during
9192: ^string.match[][] even if no matched found.
9193:
9194: 2006-12-20 misha
9195:
9196: * src/types/: pa_method.h, pa_vfile.h: - some syntax changes [
9197: http://www.parser.ru/forum/?id=55598 ]
9198:
9199: 2006-12-19 misha
9200:
9201: * src/types/pa_vxdoc.C: - $xDoc is "xnode" == true now. more
9202: details: http://www.parser.ru/forum/?id=52359
9203:
9204: * src/main/pa_request.C: - always set content-disposition for
9205: $response:body[hash here]. more details:
9206: http://www.parser.ru/forum/?id=52130
9207:
9208: 2006-12-07 misha
9209:
9210: * operators.txt: - added info about bool params in cookie set
9211:
9212: * src/types/pa_vcookie.C: - bool param in cookies available now
9213: $cookie:name[ $.value[123] $.secure(true) $.httponly(true)
9214: ]
9215:
9216: * src/types/: pa_value.C, pa_value.h, pa_vbool.h: - is_bool method
9217: was added
9218:
9219: 2006-12-02 misha
9220:
9221: * src/classes/file.C: - file_block_read used instead of native read
9222:
9223: * src/main/pa_common.C: - added file_block_read with read error
9224: detection - file_block_read used instead of native read
9225:
9226: * src/include/pa_common.h: - added file_block_read declaration
9227:
9228: 2006-12-01 misha
9229:
9230: * operators.txt: - info about $var.CLASS_NAME was added
9231:
9232: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
9233: $var.CLASS_NAME added
9234:
9235: * operators.txt: - added info about ^file:copy[]
9236:
9237: * src/classes/file.C: - ^file:copy[from;fo] was added
9238:
9239: 2006-11-20 misha
9240:
9241: * src/classes/date.C: - bug fix :)
9242:
9243: 2006-11-17 misha
9244:
9245: * src/include/pa_common.h: - array in crc32 calculation was changed
9246: to static
9247:
9248: * src/main/pa_common.C: - little optimization in getMonthDays -
9249: small changes in crc32 calculation
9250:
9251: * src/classes/date.C: - not needed code was removed
9252:
9253: 2006-11-16 misha
9254:
9255: * src/types/pa_vmail.C: - fix missed brakes
9256:
9257: * src/types/pa_vmail.C: - mail:send now set content-type:
9258: multipart/related instead of multipart/mixed if file have
9259: $.content-id[]
9260:
9261: 2006-11-15 misha
9262:
9263: * src/types/pa_vdouble.h: abs -> fabs
9264:
9265: 2006-11-14 misha
9266:
9267: * operators.txt: - added info about ^file.md5[] and
9268: ^file:md5[file-name]
9269:
9270: * src/classes/file.C: - ^file.md5[] and ^file:md5[file-name] were
9271: added
9272:
9273: * src/main/pa_common.C: - CRC32_MAX_BUFFER_SIZE was renamed to
9274: FILE_BUFFER_SIZE
9275:
9276: * src/classes/math.C: - hex_string was moved to pa_common.h
9277:
9278: * src/include/pa_common.h: - hex_string was moved from math.C -
9279: CRC32_MAX_BUFFER_SIZE was renamed to FILE_BUFFER_SIZE
9280:
9281: * src/types/pa_vdouble.h: - incorrect frac detection with negative
9282: values was fixed
9283:
9284: 2006-11-13 misha
9285:
9286: * operators.txt: - added info about ^math:crc32[string],
9287: ^file:crc32[file-name] & ^file.crc32[]
9288:
9289: * src/classes/math.C: - added ^math:crc32[string]
9290:
9291: * src/classes/file.C: - some comments were changed - added
9292: ^file:crc32[file-name] and ^file.crc32[]
9293:
9294: * src/: include/pa_common.h, main/pa_common.C: - some functions for
9295: crc32 calculation added
9296:
9297: 2006-11-03 misha
9298:
9299: * src/include/pa_array.h: - not needed variable removed
9300:
9301: * tests/: 150.html, 151.html, results/150.processed,
9302: results/151.processed: - 2 tests were added
9303:
9304: * src/include/: pa_array.h, pa_table.h: - table.locate & table.join
9305: with $.reverse(1) were fixed
9306:
9307: * src/main/pa_http.C: - bug fix. now tainted data from $.form and
9308: query converted to $.charset during ^file::load[http://...]
9309:
9310: 2006-11-02 misha
9311:
9312: * src/include/pa_table.h: ups. forget '=' char
9313:
9314: * src/include/pa_table.h: - one more fix in
9315: .locate[...][$.reverse(1)]
9316:
9317: 2006-11-01 misha
9318:
9319: * src/classes/math.C: - bug fix, details:
9320: http://www.parser.ru/forum/?id=53360
9321:
9322: * src/include/pa_table.h: - bug fix during ^table.locate( condition
9323: false for all records )[$.reverse(1)]
9324:
9325: * src/main/pa_http.C: - second param for this mid method is length
9326: but not end_index so this method has error and can't detect
9327: charsets in next content-types: Content-type: text/html;
9328: charset="windows-1251" Content-type: text/html;
9329: charset="windows-1251"; Content-type: text/html;
9330: charset=windows-1251;
9331:
9332: only Content-type: text/html; charset=windows-1251 was fine
9333:
9334: 2006-10-31 misha
9335:
9336: * src/classes/file.C: - empty args in file::exec removed now
9337:
9338: 2006-09-11 misha
9339:
9340: * bin/auto.p.dist.in: - 2 errors were fixed - table::set was
9341: replaced to table::create - some changes in text/code formatting
9342:
9343: 2006-09-03 paf
9344:
9345: * src/classes/file.C: proper tainting of
9346: ^file::exec/cgi[script;env;COMMAND;LINE;PARAMS]
9347:
9348: 2006-06-09 paf
9349:
9350: * src/lib/pcre/pcre-2_08.tar.gz: one can easily find those
9351:
9352: * src/classes/table.C: formatting
9353:
9354: * src/classes/table.C: incorporated patch from misha: Sent:
9355: Thursday, June 08, 2006 12:38 PM Subject: parser3: patch for
9356: ignoring string options for ^table.save[]
9357:
9358: * src/classes/hash.C: incorporated patch from misha Sent:
9359: Wednesday, June 07, 2006 9:52 PM Subject: parser3: patch for
9360: $hash._default disappear while
9361:
9362: * operators.txt: ^mail:send[ $.file1[ $.value[file]
9363: $.format[!uue|!base64] << new base64 option. default uue ] ]
9364:
9365: * src/types/pa_vmail.C: misha: Sent: Wednesday, June 07, 2006 8:51
9366: PM Subject: patch for base64 in ^mail:send[] %-)
9367:
9368: 2006-04-09 paf
9369:
9370: * src/main/compile.tab.C: ` change compiled
9371:
9372: * gnu.vcproj, operators.txt, parser3.sln,
9373: src/classes/classes.vcproj, src/classes/file.C,
9374: src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
9375: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
9376: src/classes/xnode.C, src/include/pa_array.h,
9377: src/include/pa_config_fixed.h, src/include/pa_dir.h,
9378: src/include/pa_memory.h, src/include/pa_request.h,
9379: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
9380: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
9381: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
9382: src/lib/pcre/pcre_dftables.vcproj,
9383: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
9384: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
9385: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
9386: src/main/pa_cache_managers.C, src/main/pa_charset.C,
9387: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
9388: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
9389: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
9390: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
9391: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
9392: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
9393: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
9394: src/types/pa_value.h, src/types/pa_vcookie.C,
9395: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
9396: src/types/pa_vmail.C, src/types/pa_vresponse.C,
9397: src/types/pa_vstatus.C, src/types/types.vcproj,
9398: tests/descript.ion: + ^break[] ^continue[], in ^for, ^while,
9399: ^menu, ^hash/hashfile.foreach
9400:
9401: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
9402: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
9403: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
9404: src/classes/xnode.C, src/include/pa_array.h,
9405: src/include/pa_config_fixed.h, src/include/pa_dir.h,
9406: src/include/pa_memory.h, src/include/pa_request.h,
9407: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
9408: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
9409: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
9410: src/lib/pcre/pcre_dftables.vcproj,
9411: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
9412: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
9413: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
9414: src/main/pa_cache_managers.C, src/main/pa_charset.C,
9415: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
9416: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
9417: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
9418: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
9419: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
9420: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
9421: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
9422: src/types/pa_value.h, src/types/pa_vcookie.C,
9423: src/types/pa_vmail.C, src/types/pa_vresponse.C,
9424: src/types/pa_vstatus.C, src/types/types.vcproj,
9425: tests/descript.ion: ! switched to VS2005 (projects and
9426: object<info explicitly typed>.for_each(, info)) +
9427: $response:field[] setting void means removing + grammar $name`
9428: name stops now, for mysql `$field` + started ^break[]
9429: ^continue[], in ^for. TODO: to other iterators (while, menu,
9430: foreach) + all log messages += [uri=, method=, cl=]
9431:
9432: * buildall-with-xml: merged . ftp paths update
9433:
9434: * buildall-with-xml: . ftp paths update
9435:
9436: 2006-03-04 paf
9437:
9438: * src/main/: pa_string.C: merged from HEAD ! cache file curruption
9439: checks++ [thanks to Igor Zinkovsky for detailed report]
9440:
9441: * src/main/pa_string.C: ! cache file curruption checks++ [thanks to
9442: Igor Zinkovsky for detailed report]
9443:
9444: 2006-03-01 paf
9445:
9446: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
9447: \n to ' ' in
9448:
9449: 2006-02-18 paf
9450:
9451: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
9452: \n to ' ' in
9453:
9454: * src/main/untaint.C: ! mail:send << changed \r or \n to ' ' in
9455:
9456: 2006-02-03 paf
9457:
9458: * src/main/pa_common.C: merged from HEAD ! bugfix: decoding from
9459: base64
9460:
9461: * src/main/pa_common.C: ! bugfix: decoding from base64
9462:
9463: 2006-01-20 paf
9464:
9465: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
9466: economy fix
9467:
9468: * src/classes/: table.C: merged from HEAD ! bugfix
9469: ^table.save[$.encloser-s now handled properly
9470:
9471: * src/classes/table.C: ! bugfix ^table.save[$.encloser-s now
9472: handled properly
9473:
9474: 2006-01-19 paf
9475:
9476: * buildall-with-xml, buildall-without-xml: merged from HEAD !
9477: libgc:USE_MUNMAP activates merging of free memory blocks which
9478: helps a lot in our case: after transform we want
9479: CORD(main.result)->cstr[big malloc]->transcode[big malloc]
9480:
9481: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
9482: economy fix
9483:
9484: * buildall-with-xml, buildall-without-xml: ! libgc:USE_MUNMAP
9485: activates merging of free memory blocks which helps a lot in our
9486: case: after transform we want CORD(main.result)->cstr[big
9487: malloc]->transcode[big malloc]
9488:
9489: 2006-01-17 paf
9490:
9491: * src/types/pa_vhashfile.C: ! hashfile.foreach: counted pairs
9492: before reading them. got rid of reallocs = became quicker and
9493: less fragmentated
9494:
9495: 2005-12-29 paf
9496:
1.116 moko 9497: * INSTALL, Makefile.am, buildall-with-xml, buildall-without-xml,
9498: configure, configure.in, src/include/pa_version.h,
9499: src/lib/ltdl/Makefile.am, src/lib/ltdl/acconfig.h,
1.95 moko 9500: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
9501: src/lib/ltdl/config.sub, src/lib/ltdl/configure.in,
9502: src/lib/ltdl/install-sh, src/lib/ltdl/ltmain.sh,
9503: src/lib/ltdl/missing: . merged from 3.2.1
9504:
1.116 moko 9505: * Makefile.am, src/lib/ltdl/Makefile.am: . now site.m4 also
9506: packaged when 'make dist', so do configure companion files in
9507: src/lib/ltdl
9508:
9509: * src/lib/ltdl/: Makefile.am, acconfig.h, acinclude.m4,
9510: config.guess, config.sub, configure.in, install-sh, ltmain.sh,
9511: missing: . now config_auto.h is created with configure [were
9512: constant]
1.95 moko 9513:
9514: * INSTALL: . references to documentation and some clarification
9515:
9516: * buildall-with-xml, buildall-without-xml: . farawell doc
9517: indication
9518:
1.116 moko 9519: * Makefile.am: . dist+=buildall*
1.95 moko 9520:
9521: 2005-12-28 paf
9522:
9523: * configure: . 3.2.1
9524:
9525: * INSTALL, buildall-with-xml, buildall-without-xml: + started to
9526: simplify build process, see INSTALL
9527:
9528: 2005-12-26 paf
9529:
9530: * configure: ver
9531:
9532: * configure.in, src/include/pa_version.h, src/main/compile.tab.C:
9533: version
9534:
9535: 2005-12-21 paf
9536:
9537: * src/main/: compile.tab.C, main.vcproj: . win32: grammar is now
9538: compiled with bison 1.875b, it reports unexpected token names
9539:
9540: 2005-12-19 paf
9541:
9542: * src/: main/compile.tab.C, types/pa_vxnode.h: ! bugfix xnode now
9543: holds a link to xmlNode to prevent premature gc(xmlNode)
9544:
9545: * src/classes/classes.vcproj, src/include/pa_config_fixed.h,
9546: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
9547: src/main/main.vcproj, src/main/pa_globals.C,
9548: src/targets/cgi/parser3.vcproj,
9549: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj,
9550: configure, configure.in, src/include/pa_version.h: . killing
9551: gdome [what a relief]
9552:
9553: * tests/: 097.html, 106.html, 108.html, 110.html, 112.html,
9554: 113.html, 114.html, 115.html, 116.html, 117.html, Makefile,
9555: run_parser.sh, results/001.processed, results/002.processed,
9556: results/003.processed, results/004.processed,
9557: results/005.processed, results/006.processed,
9558: results/008.processed, results/009.processed,
9559: results/010.processed, results/011.processed,
9560: results/012.processed, results/013.processed,
9561: results/014.processed, results/015.processed,
9562: results/016.processed, results/017.processed,
9563: results/018.processed, results/020.processed,
9564: results/021.processed, results/022.processed,
9565: results/023.processed, results/024.processed,
9566: results/025.processed, results/026.processed,
9567: results/027.processed, results/028.processed,
9568: results/029.processed, results/030.processed,
9569: results/031.processed, results/032.processed,
9570: results/033.processed, results/034.processed,
9571: results/035.processed, results/036.processed,
9572: results/037.processed, results/038.processed,
9573: results/039.processed, results/040.processed,
9574: results/041.processed, results/042.processed,
9575: results/043.processed, results/044.processed,
9576: results/045.processed, results/046.processed,
9577: results/047.processed, results/048.processed,
9578: results/049.processed, results/050.processed,
9579: results/051.processed, results/052.processed,
9580: results/053.processed, results/054.processed,
9581: results/055.processed, results/056.processed,
9582: results/057.processed, results/058.processed,
9583: results/059.processed, results/060.processed,
9584: results/061.processed, results/062.processed,
9585: results/063.processed, results/064.processed,
9586: results/065.processed, results/066.processed,
9587: results/067.processed, results/068.processed,
9588: results/069.processed, results/070.processed,
9589: results/071.processed, results/072.processed,
9590: results/073.processed, results/074.processed,
9591: results/075.processed, results/076.processed,
9592: results/077.processed, results/078.processed,
9593: results/079.processed, results/080.processed,
9594: results/081.processed, results/082.processed,
9595: results/083.processed, results/084.processed,
9596: results/085.processed, results/086.processed,
9597: results/087.processed, results/088.processed,
9598: results/089.processed, results/090.processed,
9599: results/091.processed, results/092.processed,
9600: results/093.processed, results/094.processed,
9601: results/095.processed, results/096.processed,
9602: results/097.processed, results/099.processed,
9603: results/100.processed, results/101.processed,
9604: results/102.processed, results/104.processed,
9605: results/105.processed, results/106.processed,
9606: results/107.processed, results/108.processed,
9607: results/109.processed, results/110.processed,
9608: results/111.processed, results/112.processed,
9609: results/113.processed, results/114.processed,
9610: results/115.processed, results/117.processed,
9611: results/119.processed, results/120.processed,
9612: results/121.processed, results/122.processed,
9613: results/123.processed, results/124.processed,
9614: results/125.processed, results/126.processed,
9615: results/127.processed, results/128.processed,
9616: results/129.processed, results/130.processed,
9617: results/131.processed, results/132.processed,
9618: results/133.processed, results/134.processed,
9619: results/135.processed, results/136.processed,
9620: results/138.processed, results/139.processed,
9621: results/140.processed, results/141.processed,
9622: results/142.processed, results/143.processed,
9623: results/144.processed, results/145.processed,
9624: results/146.processed, results/147.processed,
9625: results/148.processed, results/149.processed, results/auto.p: .
9626: now works if we turn off default auto.p
9627:
1.116 moko 9628: * configure: . makes
1.95 moko 9629:
9630: * src/types/pa_vxnode.C: . less warnings
9631:
9632: * src/types/pa_vxnode.C, tests/142.html, tests/144.html,
9633: tests/145.html, tests/149.html, tests/descript.ion,
9634: tests/outputs/d.cmd, tests/results/142.processed,
9635: tests/results/143.processed, tests/results/144.processed,
9636: tests/results/145.processed, tests/results/146.processed,
9637: tests/results/147.processed, tests/results/148.processed,
9638: tests/results/149.processed: . removed .nodeValue from all node
9639: types other than 5 (grabbed piece from gdome)
9640:
9641: * tests/: 137.html, results/137.processed: . not handled this case
9642: yet. code does not hang from inserting parent into child,
9643: considering thing minor issue -- nodes are removed from source
9644: anyway, don't know why shold that be an error after all
9645:
9646: * src/targets/cgi/parser3.C: . style
9647:
9648: * src/classes/xnode.C: . "xml.dom" . xnode.select* now works on
9649: xdoc too [were barking "not element"]
9650:
9651: 2005-12-16 paf
9652:
9653: * tests/: 146.html, 147.html, 148.html: . more tests
9654:
9655: * src/classes/xnode.C: . also bark on possible errors
9656:
9657: * src/types/: pa_vxdoc.C, pa_vxnode.C, pa_vxnode.h: + xdoc DOM
9658: props
9659:
9660: * src/: types/pa_value.h, types/pa_vvoid.h, main/compile.tab.C,
9661: main/compile.y: merged from HEAD ! fixed overoptimized
9662: ^call(false) case. (confused it with ^call[] case)
9663:
9664: * src/main/: compile.tab.C, compile.y: ! fixed overoptimized
9665: ^call(false) case. (confused it with ^call[] case)
9666:
9667: * tests/: 142.html, 143.html, 144.html, 145.html: . dom [part]
9668:
9669: * tests/: 006.html, 034.html, 057.html, Makefile, make_tests.cmd,
9670: results/001.processed, results/002.processed,
9671: results/003.processed, results/004.processed,
9672: results/005.processed, results/006.processed,
9673: results/008.processed, results/009.processed,
9674: results/010.processed, results/011.processed,
9675: results/012.processed, results/013.processed,
9676: results/014.processed, results/015.processed,
9677: results/016.processed, results/017.processed,
9678: results/018.processed, results/019.processed,
9679: results/020.processed, results/021.processed,
9680: results/022.processed, results/023.processed,
9681: results/024.processed, results/025.processed,
9682: results/026.processed, results/027.processed,
9683: results/028.processed, results/029.processed,
9684: results/030.processed, results/031.processed,
9685: results/032.processed, results/033.processed,
9686: results/034.processed, results/035.processed,
9687: results/036.processed, results/037.processed,
9688: results/038.processed, results/039.processed,
9689: results/040.processed, results/041.processed,
9690: results/042.processed, results/043.processed,
9691: results/044.processed, results/045.processed,
9692: results/046.processed, results/047.processed,
9693: results/048.processed, results/049.processed,
9694: results/050.processed, results/051.processed,
9695: results/052.processed, results/053.processed,
9696: results/054.processed, results/055.processed,
9697: results/056.processed, results/057.processed,
9698: results/058.processed, results/059.processed,
9699: results/060.processed, results/061.processed,
9700: results/062.processed, results/063.processed,
9701: results/064.processed, results/065.processed,
9702: results/066.processed, results/067.processed,
9703: results/068.processed, results/069.processed,
9704: results/070.processed, results/071.processed,
9705: results/072.processed, results/073.processed,
9706: results/074.processed, results/075.processed,
9707: results/076.processed, results/077.processed,
9708: results/078.processed, results/079.processed,
9709: results/080.processed, results/081.processed,
9710: results/082.processed, results/083.processed,
9711: results/084.processed, results/085.processed,
9712: results/086.processed, results/087.processed,
9713: results/088.processed, results/089.processed,
9714: results/090.processed, results/091.processed,
9715: results/092.processed, results/093.processed,
9716: results/094.processed, results/095.processed,
9717: results/096.processed, results/097.processed,
9718: results/099.processed, results/101.processed,
9719: results/102.processed, results/104.processed,
9720: results/105.processed, results/106.processed,
9721: results/107.processed, results/108.processed,
9722: results/109.processed, results/110.processed,
9723: results/111.processed, results/112.processed,
9724: results/113.processed, results/114.processed,
9725: results/115.processed, results/116.processed,
9726: results/117.processed, results/118.processed,
9727: results/119.processed, results/120.processed,
9728: results/121.processed, results/122.processed,
9729: results/123.processed, results/124.processed,
9730: results/125.processed, results/126.processed,
9731: results/127.processed, results/128.processed,
9732: results/129.processed, results/130.processed,
9733: results/131.processed, results/132.processed,
9734: results/133.processed, results/134.processed,
9735: results/135.processed, results/136.processed,
9736: results/137.processed, results/138.processed,
9737: results/139.processed, results/140.processed,
9738: results/141.processed: . refreshed old tests, made them work
9739: without auto.p (in utf8) . things noted: . gif got encoded
9740: differently . exif 0000:00:00 decoded now into 0000:00:00 (were
9741: some strange year)
9742:
9743: * INSTALL: . revived linux libgc fix
9744:
9745: * INSTALL, configure.in, src/lib/Makefile.am: . sweetest part [no
9746: glib/gdome in INSTALL and patches]
9747:
9748: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
9749: include/pa_charset.h, include/pa_config_includes.h,
9750: include/pa_globals.h, include/pa_memory.h, include/pa_request.h,
9751: include/pa_xml_exception.h, lib/cord/Makefile.am,
9752: lib/cord/cord.vcproj, lib/cord/cordbscs.c, lib/cord/cordprnt.c,
9753: lib/cord/cordxtra.c, main/compile.tab.C, main/pa_charset.C,
9754: main/pa_globals.C, main/pa_memory.C, main/pa_request.C,
9755: main/pa_stylesheet_connection.C, main/pa_xml_exception.C,
9756: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
9757: types/pa_vxnode.h: . started killing gdome
9758:
9759: 2005-12-13 paf
9760:
9761: * src/main/: pa_request.C: merged from HEAD ! when code in
9762: @unhandled_exception thrown another exception, print correct
9763: origin (earlier code in catch of exception inside of
9764: @unhandled_exception grabbed parent_frame(original_exception)
9765: origin and printed it, instead of true origin)
9766:
9767: * src/main/pa_request.C: ! when code in @unhandled_exception thrown
9768: another exception, print correct origin (earlier code in catch of
9769: exception inside of @unhandled_exception grabbed
9770: parent_frame(original_exception) origin and printed it, instead
9771: of true origin)
9772:
9773: 2005-12-09 paf
9774:
9775: * INSTALL: . updated INSTALL doc to work around linux stack base
9776: detection problem, due to change in gc6.4 code
9777:
9778: * src/main/: pa_string.C: merged from 3.1.5 ! regex tainting were
9779: ignored in ^string.matched :(
9780:
9781: * src/main/pa_string.C: ! regex tainting were ignored in
9782: ^string.matched :(
9783:
9784: * ChangeLog, INSTALL, configure, configure.in, src/classes/date.C,
9785: src/include/pa_config_fixed.h, src/include/pa_version.h,
9786: src/main/compile.y, src/main/compile_tools.h,
9787: src/main/pa_charset.C, src/main/pa_common.C,
9788: src/main/pa_globals.C, src/main/pa_string.C,
9789: src/targets/cgi/getopt.c, src/targets/isapi/parser3isapi.C,
9790: src/types/pa_vmail.C: . merged latest fixes from 3.2.0
9791:
9792: 2005-12-08 paf
9793:
9794: * src/types/pa_vmail.C: merged from 3.2.0 ! bcc line longer then
9795: 500 chars now handled OK [were wrapped on 500th char according to
9796: rfc, but sendmail failed to unwrap it properly]
9797:
9798: * src/types/pa_vmail.C: ! bcc line longer then 500 chars now
9799: handled OK [were wrapped on 500th char according to rfc, but
9800: sendmail failed to unwrap it properly]
9801:
9802: * src/targets/isapi/parser3isapi.C: . less warnings
9803:
9804: * src/targets/isapi/parser3isapi.C: . undone some strange change
9805: since 3.1.5
9806:
9807: * src/targets/isapi/parser3isapi.C: . merged from 3.1.5 release
9808: link fixes
9809:
9810: * src/: classes/date.C, include/pa_config_fixed.h,
9811: main/compile.tab.C, main/compile.y, main/compile_tools.h,
9812: main/pa_charset.C, main/pa_common.C, main/pa_globals.C,
9813: main/pa_string.C, targets/cgi/getopt.c: . less warnings
9814:
9815: * src/include/pa_config_fixed.h: . removed outdated string origins
9816: [in current storage scheme there's no place for them. someday we
9817: can add third CORD to store origins and special version of parser
9818: which stores origins there [separate binary]]
9819:
9820: 2005-12-07 paf
9821:
9822: * src/targets/isapi/parser3isapi.C: . now links in release mode
9823:
9824: * src/include/pa_version.h: makefiles
9825:
9826: * src/include/pa_version.h: . not beta
9827:
9828: * configure, configure.in, src/include/pa_version.h: not beta
9829:
9830: 2005-12-06 paf
9831:
9832: * src/types/: pa_wcontext.C, pa_wcontext.h: ! after long discussion
9833: [some details here http://i2/tasks/edit/?id=4869912143891354460]
9834: decided to undo the change ^call[$void] passes void. now it will
9835: pass empty string again.
9836:
9837: * src/main/: compile.tab.C, compile.y: . version readded
9838:
9839: * src/classes/op.C: . in this version there is no ^switch[$nothing]
9840: = ^switch[void] problem
9841:
9842: 2005-12-01 paf
9843:
9844: * src/classes/op.C: mreged from HEAD . bugfix ^switch[$void_value]
9845: caused ^case[string] to be coerced to double since searching
9846: value were not string (it was vvoid)
9847:
9848: * src/classes/op.C: . bugfix ^switch[$void_value] caused
9849: ^case[string] to be coerced to double since searching value were
9850: not string (it was vvoid)
9851:
9852: * INSTALL: . compiled with libxml2 = 2.6.22 libxslt =
9853: 1.1.15 glib = 1.2.10 gdome2 = 0.8.1
9854:
9855: 2005-11-30 paf
9856:
9857: * src/types/pa_vdate.h: merged from HEAD: ! bugfix: to drop TZ on
9858: win32 must putenv("TZ="), on unix works only putenv("TZ")
9859:
9860: * src/types/pa_vdate.h: ! bugfix: to drop TZ on win32 must
9861: putenv("TZ="), on unix works only putenv("TZ")
9862:
9863: * INSTALL: . xml libs versions updated
9864:
9865: * src/main/pa_globals.C: //20051130 trying to remove this, author
9866: claims that fixed a lot there // 20040920 for now both
9867: workarounds needed. wait for new libxml/xsl versions
9868:
9869: 2005-11-28 paf
9870:
9871: * src/classes/table.C: merged from HEAD: ! nameless table has
9872: columns==0
9873:
9874: * src/classes/table.C: ! nameless table has columns==0
9875:
9876: * src/main/pa_http.C: merged from HEAD: ! status line check made
9877: earlier [was totally wrong]
9878:
9879: * src/main/pa_http.C: ! status line check made earlier [was totally
9880: wrong]
9881:
9882: 2005-11-25 paf
9883:
9884: * src/include/pa_array.h: -this reduces speed(table::load) strange.
9885: undoing for now...
9886:
9887: * src/include/pa_version.h: -this reduces speed(table::load),
9888: strange. undoing
9889:
9890: * src/classes/op.C: merged from HEAD + ^while(){}[SEPARATOR]
9891:
9892: * src/classes/op.C: + ^while(){}[SEPARATOR]
9893:
9894: * src/include/pa_array.h: + optimistics added: all arrays (table
9895: rows) now grow size*=2, like in .NET ArrayList.EnsureCapacity,
9896: this speeds things up and saves memory a LOT! (not noticed
9897: negative effect on syntetic tests, future will tell...)
9898:
9899: * src/include/pa_memory.h: . removed GC_DEBUG for debug version, it
9900: changed gc_malloc implementation, which obscured profiling
9901:
9902: * src/classes/table.C: merged from HEAD: + optimized
9903: table::load/sql, now row ArrayString-s allocated with
9904: columns.count() elements and don't always grow from
9905: count=3[realloc,realloc]
9906:
9907: * src/classes/table.C: + optimized table::load/sql, now row
9908: ArrayString-s allocated with columns.count() elements and don't
9909: always grow from count=3[realloc,realloc]
9910:
9911: * src/classes/table.C: merged from HEAD: . ^table.save unused
9912: buffer after save
9913:
9914: * src/classes/table.C: . ^table.save unused buffer after save
9915:
9916: 2005-11-24 paf
9917:
9918: * configure.in: . merged glib2-config patch
9919:
9920: * configure.in: + trying to find glib2-config
9921:
9922: * src/: classes/file.C, include/pa_common.h, main/execute.C,
9923: main/pa_common.C, main/pa_request.C: merged from HEAD: ! changed
9924: file/dir_readable to simple file/dir_exist, this would help in
9925: situations "class not found because .p file has bad rights" << in
9926: that case error would be explicit "access denied to 'this' file"
9927:
1.116 moko 9928: * aclocal.m4, configure, src/include/pa_config_auto.h.in: makefiles
1.95 moko 9929:
9930: * src/: classes/file.C, include/pa_common.h, main/execute.C,
9931: main/pa_common.C, main/pa_request.C: ! changed file/dir_readable
9932: to simple file/dir_exist, this would help in situations "class
9933: not found because .p file has bad rights" << in that case error
9934: would be explicit "access denied to 'this' file"
9935:
9936: * src/: classes/file.C, include/Makefile.am, include/pa_common.h,
9937: include/pa_http.h, main/Makefile.am, main/main.vcproj,
9938: main/pa_common.C, main/pa_http.C: merged from HEAD: +!
9939: ^file::exec/cgi[script;$.charset[changed]
9940: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
9941: encoded in $.charset charset
9942:
9943: * src/classes/file.C: +! ^file::exec/cgi[script;$.charset[changed]
9944: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
9945: encoded in $.charset charset
9946:
9947: * src/: include/Makefile.am, include/pa_common.h,
9948: include/pa_http.h, main/Makefile.am, main/main.vcproj,
9949: main/pa_common.C, main/pa_http.C: . extracted http:// into
9950: separate file [preparation for
9951: ^file::cgi[script;$.form[$.field1[]
9952:
9953: 2005-11-22 paf
9954:
9955: * src/: include/pa_version.h, main/compile.tab.C: makefiles
9956:
9957: * acinclude.m4, configure.in: . merged underquting fixes
9958:
1.116 moko 9959: * src/include/pa_config_auto.h.in: configure+makes
1.95 moko 9960:
9961: * src/classes/op.C: . overmerged a little
9962:
9963: * src/main/compile.tab.C: Makefile
9964:
9965: * src/main/: pa_common.C: . less gcc warnings
9966:
9967: * src/classes/op.C: merged from HEAD: + $exception.handled[cache]
9968: now reports original exception if we have no old cache
9969:
9970: * src/classes/op.C: + $exception.handled[cache] now reports
9971: original exception if we have no old cache
9972:
9973: * src/: classes/op.C, include/pa_string.h, main/untaint.C: merged
9974: from HEAD: + ^taint/untaint[regex] << escapes these:
9975: \^$.[]|()?*+{}
9976:
9977: * src/: classes/op.C, include/pa_string.h, main/untaint.C: +
9978: ^taint/untaint[regex] << escapes these: \^$.[]|()?*+{}
9979:
9980: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
9981: getenv-ed variable, which does not work both on win32&unix.
9982: copied old TZ value now
9983:
9984: * src/types/pa_vdate.h: merged from 3.1.5: ! date TZ save/restore
9985: stored pointer to getenv-ed variable, which does not work both on
9986: win32&unix. copied old TZ value now
9987:
9988: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
9989: getenv-ed variable, which does not work both on win32&unix.
9990: copied old TZ value now
9991:
9992: * src/types/pa_vresponse.C: merged from HEAD: + $response:headers
9993: access to internal hash
9994:
9995: * src/types/pa_vresponse.C: + $response:headers access to internal
9996: hash
9997:
9998: * src/targets/isapi/parser3isapi.C: merged from HEAD: +
9999: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
10000: isapi] this reduces number of "GC Warning: Repeated allocation of
10001: very large block" messages to only important onces
10002:
10003: * src/targets/isapi/parser3isapi.C: +
10004: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
10005: isapi] this reduces number of "GC Warning: Repeated allocation of
10006: very large block" messages to only important onces
10007:
10008: * src/classes/string.C: merged from HEAD: + removed limitation on
10009: ^string/int/double:sql{}[$.default[({param style})] ]
10010:
10011: * src/classes/string.C: + removed limitation on
10012: ^string/int/double:sql{}[$.default[({param style})] ]
10013:
10014: * src/main/pa_common.C: merged from HEAD: + removed "use either uri
10015: with ?params or $.form option" limitation
10016:
10017: * src/main/pa_common.C: + removed "use either uri with ?params or
10018: $.form option" limitation
10019:
10020: * src/: classes/file.C, classes/string.C, include/pa_common.h,
10021: main/pa_common.C: merged from HEAD: + ^file.base64[] encode +
10022: ^file::base64[encoded] decode
10023:
10024: * src/: classes/file.C, classes/string.C, include/pa_common.h,
10025: main/pa_common.C: + ^file.base64[] encode +
10026: ^file::base64[encoded] decode
10027:
10028: * src/classes/: file.C, string.C: + ^string.base64[] encode +
10029: ^string:base64[encoded] decode
10030:
10031: * src/: classes/string.C, include/pa_common.h, main/pa_common.C: +
10032: ^string:base64[in] encode + ^string.base64[] decode
10033:
10034: 2005-11-21 paf
10035:
10036: * src/classes/file.C: + merged from HEAD:
10037: ^file::create[text;file.xml;^untaint[xml]{data}]
10038:
10039: * src/classes/file.C: +
10040: ^file::create[text;file.xml;^untaint[xml]{data}]
10041:
10042: * src/main/pa_request.C: ! merged: $response:body[file] now
10043: differes from :download, it does not return content-disposition
10044: at all now [previusely it returned valueless content-disposition]
10045:
10046: * src/main/pa_request.C: ! $response:body[file] now differes from
10047: :download, it does not return content-disposition at all now
10048: [previusely it returned valueless content-disposition]
10049:
10050: * src/main/: compile.tab.C, compile.y: ! overoptimized void
10051: literals, reverted to just vvod, recreating empty array with each
10052: void_value token. that's absolutely needed, since that array
10053: grows
10054:
10055: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
10056: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
10057: types/pa_vmethod_frame.h: + merged: expression literals:
10058: true/false. ^format[$.indent(true)]
10059:
10060: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
10061: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
10062: types/pa_vmethod_frame.h: + expression literals: true/false.
10063: ^format[$.indent(true)]
10064:
10065: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
10066: merged: $env:PARSER_VERSION reports "3.1.5beta (compiled on
10067: i386-pc-win32)"
10068:
10069: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
10070: $env:PARSER_VERSION reports "3.1.5beta (compiled on
10071: i386-pc-win32)"
10072:
10073: 2005-11-18 paf
10074:
10075: * src/classes/: double.C, int.C: ! ^int/double:sql{select
10076: null}[$.default(123)] will now return default value
10077:
10078: * src/classes/op.C: + merged ^cache[] << returns current cache
10079: expiration time
10080:
10081: * src/classes/op.C: + ^cache[] << returns current cache expiration
10082: time
10083:
10084: * src/classes/table.C: ! merged ^table::create[not'nameless';
10085: failed << Exception.problem_source pointed to local var!
10086:
10087: * src/classes/table.C: ! ^table::create[not'nameless'; failed <<
10088: Exception.problem_source pointed to local var!
10089:
10090: * src/main/pa_common.C: ! merged: file::load[binary;fileOfZeroSize]
10091: now loads VFile.ptr!=0, so such files can be saved now
10092:
10093: * src/main/pa_common.C: ! file::load[binary;fileOfZeroSize] now
10094: loads VFile.ptr!=0, so such files can be saved now
10095:
10096: * src/include/pa_dir.h: ! merged: file:list now sees .xxx files,
10097: only . and .. now removed from list [were removed all .*]
10098:
10099: * src/include/pa_dir.h: ! file:list now sees .xxx files, only . and
10100: .. now removed from list [were removed all .*]
10101:
10102: * src/lib/sdbm/apr_file_io.C: ! merged from 3.1.5: hashfile file
10103: open error now checked, were not :( [stole that piece from apache
10104: 1.3 sources]
10105:
10106: * src/lib/sdbm/apr_file_io.C: ! hashfile file open error now
10107: checked, were not :( [stole that piece from apache 1.3 sources]
10108:
10109: * src/main/pa_request.C: ! merged from 3.1.5: ensured proper
10110: untainting of @main result if returned by $result or
10111: $response:body
10112:
10113: * src/main/pa_request.C: ! ensured proper untainting of @main
10114: result if returned by $result or $response:body
10115:
10116: * src/main/pa_common.C: ! merged from 3.1.5: fixed file load memory
10117: issue: now tries to guess content-length and allocates one big
10118: piece if possible [regretfully gc_realloc works as malloc+free,
10119: leaving lots of holes behind]
10120:
10121: * src/: classes/memory.C, main/compile.tab.C, main/pa_common.C: !
10122: fixed file load memory issue: now tries to guess content-length
10123: and allocates one big piece if possible [regretfully gc_realloc
10124: works as malloc+free, leaving lots of holes behind]
10125:
10126: 2005-11-16 paf
10127:
10128: * src/: include/pa_common.h, classes/file.C, classes/table.C,
10129: main/compile.tab.C, main/pa_common.C: merged to HEAD: !
10130: table::save with enclosers now doubles them: "->"" !
10131: table::save/load do not remove elements from options hash
10132:
10133: * src/main/compile.y: ! merged to HEAD: ^if(-f "...") now works
10134: [were overoptimized ^if(double_literal), compiler confused
10135: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
10136:
10137: * src/main/: compile.tab.C, compile.y: ! ^if(-f "...") now works
10138: [were overoptimized ^if(double_literal), compiler confused
10139: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
10140:
10141: * src/: classes/file.C, classes/table.C, include/pa_common.h,
10142: main/pa_common.C: ! table::save with enclosers now doubles them:
10143: "->"" ! table::save/load do not remove elements from options hash
10144:
10145: 2005-11-03 paf
10146:
1.116 moko 10147: * src/main/: Makefile.am, compile.tab.C: removed $< from .y
10148: compilation, not all makefiles liked that
1.95 moko 10149:
10150: 2005-08-30 paf
10151:
10152: * src/classes/op.C: merge . speedup check of [DEFAULT]
10153:
10154: * src/classes/op.C: . speedup check of [DEFAULT]
10155:
10156: 2005-08-26 paf
10157:
10158: * src/: classes/date.C, types/pa_vdate.h: merged + date.week
10159:
10160: * src/: classes/date.C, types/pa_vdate.h: + date.week
10161:
10162: * src/classes/table.C: merged ! ^table::create[bad]{xxx} now
10163: complains about bad!=nameless
10164:
10165: * src/classes/table.C: ! ^table::create[bad]{xxx} now complains
10166: about bad!=nameless
10167:
10168: * src/classes/: hash.C, string.C, table.C, void.C: merged !
10169: optional options were allowed to be empty. were checked
10170: if(is_string), changed to !defined||is_string to allow void
10171:
10172: * src/: targets/isapi/parser3isapi.C, classes/hash.C,
10173: classes/string.C, classes/table.C, classes/void.C: ! optional
10174: options were allowed to be empty. were checked if(is_string),
10175: changed to !defined||is_string to allow void
10176:
10177: * src/types/pa_vmethod_frame.h: merged ! many classes/* used
10178: as_junction where they needed as_int/double, so failed with
10179: recent "(const) now no junction" optimization
10180:
10181: * src/classes/: double.C, int.C, math.C, op.C, string.C, table.C:
10182: merged ! many classes/* used as_junction where they needed
10183: as_int/double, so failed with recent "(const) now no junction"
10184: optimization
10185:
10186: * src/: classes/double.C, classes/int.C, classes/math.C,
10187: classes/op.C, classes/string.C, classes/table.C,
10188: main/compile.tab.C, types/pa_vmethod_frame.h: ! many classes/*
10189: used as_junction where they needed as_int/double, so failed with
10190: recent "(const) now no junction" optimization
10191:
10192: 2005-08-24 paf
10193:
10194: * src/targets/isapi/: parser3isapi.C, parser3isapi.vcproj: ! on
10195: windows 2003 DllMain receivese \\?\ prefix to fullspec of .dll,
10196: stripped it
10197:
10198: 2005-08-09 paf
10199:
10200: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
10201: not cleared
10202:
10203: * src/: classes/classes.C, classes/classes.h, classes/date.C,
10204: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
10205: classes/hashfile.C, classes/image.C, classes/int.C,
10206: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
10207: classes/response.C, classes/string.C, classes/table.C,
10208: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
10209: include/pa_array.h, include/pa_cache_managers.h,
10210: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
10211: include/pa_config_fixed.h, include/pa_config_includes.h,
10212: include/pa_dictionary.h, include/pa_dir.h,
10213: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
10214: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
10215: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
10216: include/pa_request_charsets.h, include/pa_request_info.h,
10217: include/pa_sapi.h, include/pa_socks.h,
10218: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
10219: include/pa_stack.h, include/pa_string.h,
10220: include/pa_stylesheet_connection.h,
10221: include/pa_stylesheet_manager.h, include/pa_table.h,
10222: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
10223: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
10224: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
10225: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
10226: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
10227: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
10228: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
10229: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
10230: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
10231: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
10232: main/pa_sql_driver_manager.C, main/pa_string.C,
10233: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
10234: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
10235: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
10236: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
10237: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
10238: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
10239: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
10240: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
10241: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
10242: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
10243: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
10244: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
10245: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
10246: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
10247: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
10248: types/pa_vmemory.h, types/pa_vmethod_frame.C,
10249: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
10250: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
10251: types/pa_vresponse.C, types/pa_vresponse.h,
10252: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
10253: types/pa_vstateless_object.h, types/pa_vstatus.C,
10254: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
10255: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
10256: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
10257: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
10258: types/pa_wcontext.h, types/pa_wwrapper.h: 2005
10259:
10260: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
10261: pa_vmethod_frame.h: merged from HEAD ! simplified (double)
10262: speedup consequent checks in vmethod_frame
10263:
10264: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
10265: not cleared
10266:
10267: * src/: classes/file.C, main/pa_exec.C: merged +file::cgi/exec now
10268: params: 50 max (were 10)
10269:
10270: * src/: classes/file.C, main/pa_exec.C: + file::cgi/exec now
10271: params: 50 max (were 10)
10272:
10273: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
10274: pa_vmethod_frame.h, pa_vvoid.C, pa_vvoid.h, pa_wcontext.C,
10275: pa_wcontext.h: + ^call[$void] param inside now is void (were:
10276: empty string) ! simplified (double) speedup consequent checks in
10277: vmethod_frame
10278:
10279: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: merged +
10280: optimized constants in expressions vstring->vdouble + optimized
10281: ^call(vdouble), no junction creation, no calls later
10282:
10283: 2005-08-08 paf
10284:
10285: * bin/auto.p.dist.in: merged . apache bad 404 handling workaround
10286: integrated
10287:
10288: * bin/auto.p.dist.in: . apache bad 404 handling workaround
10289: integrated
10290:
10291: * src/main/: compile.tab.C, compile.y, compile_tools.C,
10292: compile_tools.h: merged + optimized constants in expressions
10293: vstring->vdouble + optimized ^call(vdouble), no junction
10294: creation, no calls later
10295:
10296: * src/types/pa_vdouble.h: merged . double values without fractional
10297: part now default printed as %.0f instead of %g
10298:
10299: * src/types/pa_vdouble.h: . double values without fractional part
10300: now default printed as %.0f instead of %g
10301:
10302: * src/classes/hashfile.C: . merged ! second hashfile::open would
10303: cause an exception
10304:
10305: * src/classes/hashfile.C: ! second hashfile::open would cause an
10306: exception
10307:
10308: * src/: classes/classes.h, main/execute.C, types/pa_junction.h,
10309: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
10310: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
10311: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
10312: types/pa_vimage.C, types/pa_vimage.h, types/pa_vjunction.h,
10313: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
10314: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
10315: types/pa_vresponse.h, types/pa_vstateless_class.C,
10316: types/pa_vstateless_object.h, types/pa_vvoid.h,
10317: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
10318: merged VJunction(new Junction) optimization from 3.1.4
10319:
10320: * src/: main/execute.C, types/pa_junction.h, types/pa_vjunction.h,
10321: types/pa_vstateless_class.C: + optimized new VJunction(new
10322: Junction(params)) to new VJunction(params), thousands of mallocs
10323: removed
10324:
10325: 2005-08-05 paf
10326:
10327: * src/: include/pa_memory.h, main/compile.tab.C, main/compile.y,
10328: types/pa_vdouble.h, types/pa_vmethod_frame.C,
10329: types/pa_vmethod_frame.h: + optimized ^call(vdouble), no junction
10330: creation, no calls later
10331:
10332: * src/: classes/classes.C, classes/classes.h, classes/date.C,
10333: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
10334: classes/hashfile.C, classes/image.C, classes/int.C,
10335: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
10336: classes/response.C, classes/string.C, classes/table.C,
10337: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
10338: include/pa_array.h, include/pa_cache_managers.h,
10339: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
10340: include/pa_config_fixed.h, include/pa_config_includes.h,
10341: include/pa_dictionary.h, include/pa_dir.h,
10342: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
10343: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
10344: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
10345: include/pa_request_charsets.h, include/pa_request_info.h,
10346: include/pa_sapi.h, include/pa_socks.h,
10347: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
10348: include/pa_stack.h, include/pa_string.h,
10349: include/pa_stylesheet_connection.h,
10350: include/pa_stylesheet_manager.h, include/pa_table.h,
10351: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
10352: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
10353: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
10354: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
10355: lib/smtp/smtp.h, main/compile.C, main/compile.y,
10356: main/compile_tools.C, main/compile_tools.h, main/execute.C,
10357: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
10358: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
10359: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
10360: main/pa_memory.C, main/pa_os.C, main/pa_request.C,
10361: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
10362: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
10363: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
10364: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
10365: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
10366: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
10367: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
10368: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
10369: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
10370: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
10371: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
10372: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
10373: types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.h,
10374: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
10375: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
10376: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemory.h,
10377: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
10378: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
10379: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
10380: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
10381: types/pa_vstateless_object.h, types/pa_vstatus.C,
10382: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
10383: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
10384: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
10385: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
10386: types/pa_wcontext.h, types/pa_wwrapper.h: . 2005 ;)
10387:
10388: * src/: lib/cord/cord.vcproj, lib/gd/gd.vcproj,
10389: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/pcre.vcproj,
10390: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
10391: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/compile.tab.C,
10392: main/compile.y, main/compile_tools.C, main/compile_tools.h,
10393: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj: +
10394: optimized constants in expressions vstring->vdouble
10395:
10396: 2005-07-29 paf
10397:
10398: * src/types/pa_vclass.C: . shaped up error messages a bit
10399:
10400: * src/types/pa_vclass.C: + property getter can now be overridden
10401:
10402: * src/: main/execute.C, types/pa_vclass.C, types/pa_vobject.C: !
10403: bug fix: static parent fields were not replaced in case
10404: $derived:field[put] + property setter can now be overridden
10405:
10406: 2005-07-28 paf
10407:
10408: * configure, configure.in, src/classes/classes.h,
10409: src/classes/date.C, src/classes/file.C, src/classes/hash.C,
10410: src/classes/hashfile.C, src/classes/image.C, src/classes/op.C,
10411: src/classes/table.C, src/classes/xdoc.C, src/classes/xnode.C,
10412: src/classes/xnode.h, src/include/pa_hash.h,
10413: src/include/pa_version.h, src/main/execute.C,
1.116 moko 10414: src/types/Makefile.am, src/types/pa_method.h,
10415: src/types/pa_value.h, src/types/pa_vclass.C,
10416: src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
10417: src/types/pa_vconsole.h, src/types/pa_vcookie.C,
10418: src/types/pa_vcookie.h, src/types/pa_vhash.h,
10419: src/types/pa_vhashfile.h, src/types/pa_vimage.C,
10420: src/types/pa_vimage.h, src/types/pa_vmethod_frame.h,
10421: src/types/pa_vobject.C, src/types/pa_vobject.h,
10422: src/types/pa_vproperty.h, src/types/pa_vrequest.C,
10423: src/types/pa_vrequest.h, src/types/pa_vresponse.C,
10424: src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
10425: src/types/pa_vstateless_class.h,
1.95 moko 10426: src/types/pa_vstateless_object.h, src/types/pa_vvoid.h,
10427: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
10428: src/types/pa_wwrapper.h: + 3.2.0 beta: merged from
10429: dynamic_fields_join
10430:
10431: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
10432: classes/xnode.C, include/pa_hash.h, main/execute.C,
10433: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
10434: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
10435: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
10436: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
10437: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
10438: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
10439: types/pa_vresponse.h, types/pa_vstateless_object.h,
10440: types/pa_vvoid.h, types/pa_vxnode.C, types/pa_vxnode.h,
10441: types/pa_wwrapper.h: ! restored put_element('replace' param), and
10442: restored its checks in vobject.put_element->static fields |
10443: dynamic properties
10444:
10445: 2005-07-27 paf
10446:
10447: * src/types/pa_vclass.C: ! changed to GET_ SET_ prefixes. for there
10448: is some old code containing @set_name $name
10449:
10450: * src/types/pa_vobject.h: . fixed warning
10451:
10452: * configure, configure.in, src/include/pa_version.h,
1.116 moko 10453: src/types/Makefile.am: 3.2.0beta started
1.95 moko 10454:
10455: * src/: classes/xnode.C, include/pa_hash.h,
10456: types/pa_vstateless_class.C: ! new asserts were all false.
10457: regretfully reverted them all to checks
10458:
10459: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
10460: classes/op.C, main/execute.C, types/pa_method.h,
10461: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
10462: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
10463: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
10464: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
10465: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
10466: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
10467: types/pa_vstateless_object.h, types/pa_vvoid.h,
10468: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
10469: joined_dynamic_fields: removed unused param from put_method
10470: (returned to 3 params)
10471:
10472: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vclass.h:
10473: joined_dynamic_fields: dynamic get/set works with overriding
10474: props [alpha2]
10475:
10476: * src/types/pa_vclass.C: joined_dynamic_fields: dynamic get/set
10477: works [alfa]
10478:
10479: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
10480: classes/op.C, include/pa_hash.h, main/execute.C,
10481: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
10482: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
10483: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
10484: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
10485: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
10486: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
10487: types/pa_vresponse.h, types/pa_vstateless_class.C,
10488: types/pa_vstateless_object.h, types/pa_vvoid.h,
10489: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
10490: joined_dynamic_fields: just compiled
10491:
10492: * src/: classes/date.C, classes/file.C, classes/hash.C,
10493: classes/hashfile.C, classes/image.C, classes/table.C,
10494: classes/xdoc.C, classes/xnode.h, main/execute.C,
10495: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
10496: types/pa_vstateless_class.h: joined_dynamic_fields: started
10497:
10498: * src/types/pa_vobject.C: . object setters [only started, does not
10499: work yet]
10500:
10501: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vobject.C: .
10502: object setters [only started, does not work yet]
10503:
10504: 2005-07-26 paf
10505:
10506: * src/: include/pa_request.h, main/execute.C: . properties: set
10507: works [alpha2]. for classes. todo: for objects
10508:
10509: * src/: classes/classes.h, include/pa_hash.h, main/execute.C,
10510: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
10511: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
10512: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
10513: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
10514: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
10515: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
10516: types/pa_vstateless_object.h, types/pa_vvoid.h,
10517: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
10518: properties: set works [alpha1]
10519:
10520: 2005-07-25 paf
10521:
10522: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h,
10523: types/pa_vstateless_class.C, types/pa_vstateless_class.h: .
10524: properties: started, get works [alpha1, other approach]
10525:
10526: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h: .
10527: properties: started, get works [alpha2]
10528:
10529: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
10530: pa_vstateless_class.h: . properties: started, get works [alpha]
10531:
10532: 2005-07-15 paf
10533:
10534: * src/: classes/classes.h, classes/op.C, main/execute.C,
10535: types/pa_junction.h, types/pa_property.h, types/pa_value.h,
10536: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
10537: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
10538: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
10539: types/pa_vimage.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
10540: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
10541: types/pa_vresponse.C, types/pa_vresponse.h,
10542: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
10543: types/pa_vstateless_object.h, types/pa_vvoid.h,
10544: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.h,
10545: types/pa_wwrapper.h, types/types.vcproj: + started property
10546: [getters work but think of changing them too to precaching]
10547:
10548: 2005-07-08 paf
10549:
10550: * src/main/pa_request.C: ! bugfix: $response:body[nonfile] caused
10551: gpf
10552:
10553: 2005-06-28 paf
10554:
10555: * src/: classes/file.C, main/untaint.C: ! string invariant violated
10556: in passing empty strings to file::exec/cgi environment
10557:
10558: 2005-06-06 paf
10559:
10560: * src/classes/: hash.C, string.C, table.C: ! bugfix ^string:sql
10561: ^table:sql ^hash:sql now DO process $.bind option
10562:
10563: 2005-05-24 paf
10564:
10565: * src/classes/file.C: ! bugfix ^file::load[mode;name;$.offset
10566: $.limit] now work again [support was broken in 3.1.4]
10567:
10568: * src/: main/pa_string.C, classes/op.C: . steps toward removing
10569: ALL_INTERIOR_POINTERS
10570:
10571: 2005-05-12 paf
10572:
10573: * configure: 3.1.5beta
10574:
10575: * src/main/pa_common.C: ! bugfix -- recv()==0 is not an error
10576:
10577: * src/main/pa_common.C: ! bugfix ^file::load[mode;name;$.offset
10578: $.limit] now work again [support was broken in 3.1.4]
10579:
10580: * src/lib/gd/gif.C: ! fixed image.fill, not it does not depend on
10581: line-width [was refusing to fill if line-width >1, thanks to
10582: Seras <seras@pinxit.lt> for repro case
10583:
10584: 2005-04-25 paf
10585:
10586: * src/types/pa_vdate.h: ! getenv("TZ")==0? TZ environment restored
10587: correctly
10588:
10589: 2005-04-19 paf
10590:
10591: * src/types/pa_vdate.h: bugfix: initial $date.TZ is 0, that results
10592: in VString violating invariant!!
10593:
10594: * src/types/pa_vdate.h: bugfix: TZ now restored after roll if were
10595: getenv("TZ")==null
10596:
10597: 2005-04-08 paf
10598:
10599: * src/main/pa_charset.C: bugfix: UTF8->one-byte-per-char-encoding
10600: bugfix: when there is no char in charset one byte produces 6
10601: (ÿ <<max). increased buffer size!
10602:
10603: 2005-03-23 paf
10604:
10605: * src/: types/pa_vdate.h, classes/date.C: ! bugfix:
10606: ^date.sql-string now takes TZ into account
10607:
10608: 2005-03-16 paf
10609:
10610: * INSTALL, src/include/pa_stack.h: . compiled on freebsd 5.3 with
10611: gcc 3.4
10612:
10613: * src/types/pa_vhash.C: . warning about eof eol
10614:
10615: 2005-02-17 paf
10616:
10617: * operators.txt, src/classes/op.C: + operator ^sleep(double
10618: seconds)
10619:
10620: 2005-02-02 paf
10621:
10622: * src/classes/xnode.C: beauty: removed needless includes
10623:
10624: 2005-01-31 paf
10625:
10626: * src/types/pa_vmail.C: change: $.partX now always 1... change:
10627: $.partNoNumber now alias to $.part1
10628:
10629: * src/types/pa_vmail.C: change: incoming letter part contains
10630: "content-disposition" header with any value? now considering that
10631: part to be "file#" [for text/plain text/html were $.text#
10632: $.html#]
10633:
10634: * INSTALL: updatet to latest working versions available
10635:
10636: 2005-01-20 paf
10637:
10638: * configure.in, src/include/pa_version.h: version
10639:
10640: 2005-01-19 paf
10641:
1.116 moko 10642: * src/: lib/gd/Makefile.am, lib/ltdl/Makefile.am,
10643: targets/cgi/parser3.C, types/Makefile.am: forgotten makefiles.
10644: couple warnings in parser3.C
1.95 moko 10645:
10646: 2004-12-23 paf
10647:
10648: * src/main/pa_sql_driver_manager.C: sql connect string, rsplit @
10649:
10650: * src/main/pa_exec.C: win32: bugfix: file::cgi/exec now set current
10651: dir to directory of script (when shbang used), not to directory
10652: of its interpreter
10653:
10654: * src/include/pa_version.h: compiled on win32...
10655:
10656: * src/targets/cgi/parser3.C: now, when version (compiled on HOST),
10657: we need more hspace
10658:
10659: * configure, configure.in, src/include/pa_version.h: configured
10660: host to pa_version. will be displayed everywhere
10661:
10662: * src/main/pa_request.C: new: @unhandled_exception can prevent
10663: exception from being logged by setting $exception.handled(1)
10664:
10665: * operators.txt, src/classes/file.C: change:
10666: ^file::sql{query}[[options]] options: $.name[file name]
10667: $.content-type[application/what]
10668:
10669: * src/: include/pa_common.h, main/pa_common.C,
10670: types/pa_vhashfile.C: beauty: hashfile::open now creates dir for
10671: new file
10672:
10673: * src/: classes/table.C, types/pa_vhash.C, types/pa_vhash.h:
10674: bugfix: table->hash now regards _default
10675:
10676: * src/types/pa_vmethod_frame.h: bugfix: when method junction was
10677: created by accessing $name_of_method it acquired bad self=closest
10678: methodframe; instead of proper self (current class)
10679:
10680: * src/types/pa_vhashfile.C: bugfix: reading empty string from
10681: hashfile produced bad cord
10682:
10683: 2004-12-10 paf
10684:
10685: * src/: lib/smtp/comms.C, main/pa_common.C: DONT_LINGER can cause
10686: subsequent failures though defined in .h
10687:
10688: * src/main/pa_common.C: comment on volatile
10689:
10690: * src/: include/pa_config_auto.h.in, main/pa_common.C: http: unix:
10691: alarm function were not used since the beginning due to stupid
10692: error [setsigjmp were not checked in configure.in]
10693:
10694: * src/main/pa_common.C: http: timeout setsockopt [if possible] on
10695: unix too
10696:
10697: * src/main/pa_common.C: http: exception status of send/recv errors
10698: change to most probable http.timeout
10699:
10700: * src/main/pa_common.C: win32: http connection $.timeout option now
10701: works [setsockopt on send/receive]
10702:
10703: 2004-12-08 paf
10704:
10705: * src/: classes/mail.C, types/pa_vmail.C: bugfix: mail body now
10706: cstr-ed knowing mail charset, and untainting uri lang now knows
10707: proper charset
10708:
10709: 2004-11-24 paf
10710:
10711: * src/classes/hash.C: hash: adding/cloning adds/clones _default now
10712:
10713: $hash[ $.a[1] $._default[def] ] #$hash2[^hash::create[$hash]]
10714: $hash2[^hash::create[]] ^hash2.add[$hash] $hash2.shit
10715:
10716: 2004-11-12 paf
10717:
10718: * src/types/pa_vmail.C: bugfix: mail:send[$.date[]] were ignored
10719: [since 3.0.4]
10720:
10721: 2004-11-09 paf
10722:
10723: * src/targets/cgi/parser3.C: debug: PA_DEBUG_CGI_ENTRY_EXIT if on,
10724: writes basics to c:\parser3.log
10725:
10726: 2004-10-21 paf
10727:
10728: * src/classes/xnode.C: bugfix: xnode.getAttribute[NS] now return
10729: tainted strings [were returning clean onces]
10730:
10731: 2004-10-15 paf
10732:
10733: * src/types/pa_vdouble.h: bugfix: ^for[i](1;1.5){} << did two
10734: cycles(i=1; i=2), which was wrong, now does ONE
10735:
10736: 2004-10-12 paf
10737:
10738: * etc/parser3.charsets/windows-1251.cfg: euro promille +/-
10739:
10740: 2004-10-07 paf
10741:
10742: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
10743: main/pa_globals.C: debugger help: PA_RELEASE_ASSERTS enables
10744: release asserts
10745:
10746: * src/: main/pa_string.C, include/pa_string.h: debugger help:
10747: String.dump() to stdout in detailed form [were String.v() in
10748: short form]
10749:
10750: * src/lib/cord/cordbscs.c: debugger help: CORD_dump now dumpts
10751: \t\r\n as @#| and truncates long char sequences less
10752:
10753: 2004-10-06 paf
10754:
10755: * src/: include/pa_socks.h, main/pa_common.C, main/pa_socks.C:
10756: win32 beauty: socket errors properly decoded
10757:
10758: 2004-10-05 paf
10759:
10760: * src/: include/pa_request.h, main/pa_request.C: bugfix:
10761: request::configure_user/admin done always, even if no
10762: file-to-process useful in @unhandled_exception [say, if they
10763: would want to mail by SMTP something]
10764:
10765: * src/main/pa_request.C: bugfix: cookie(and mail:recieved) fills
10766: now performed prior to file loading [and @auto executing] thus
10767: making $cookie:value available in @auto and in
10768: @unhandled_exception when IIS is configured to run interpreter
10769: even if no file exist
10770:
10771: 2004-09-20 paf
10772:
10773: * src/main/pa_globals.C: libxml has bugs: it calls xmlMallocAtomic
10774: somewhere where it should have called xmlMalloc and it calls
10775: xmlFree when it should have not called it. inserted two
10776: workarounds: xmlMallocAtomic implemented as xmlMalloc, and
10777: xmlFree just ignored. put away a testcase, maybe someday libxml
10778: author would fix all that. until that day: we have SLOW garbage
10779: collecting when many xml objects are alive hint: do
10780: ^memory:compact[] before xdoc::create
10781:
10782: 2004-09-17 paf
10783:
10784: * src/classes/file.C: bugfix: file::cgi headers were lost [typo
10785: error from 3.0.8 version]
10786:
10787: 2004-09-14 paf
10788:
10789: * src/types/pa_vhashfile.C: bugfix: hashfile.clear deleted only
10790: part bugfix: hashfile.foreach iterated only part if hashfile were
10791: modified inside
10792:
10793: 2004-09-13 paf
10794:
10795: * src/main/pa_string.C: bugfix: $s[+008] ^eval($s) now parsed OK
10796: [were as octal]
10797:
10798: * src/types/pa_vhashfile.C: beauty: not reproduced
10799: $hashfile.key[$novalue] bug [reported by motorin], inserted
10800: safety-check
10801:
10802: * src/types/pa_vhashfile.C: change: empty keys now error in parser
10803: [not something obscure from sdbm lib]
10804:
10805: * src/types/pa_vhashfile.C: bugfix: error numbers now from errno.h
10806: = strerror now returnes something and we can properly report that
10807: to client
10808:
10809: * src/lib/sdbm/sdbm_private.h: change: limit on length(key+value)
10810: now 8008 bytes, were 1008. perl sdbm compatibility now ruined
10811:
10812: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
10813: [tainted as-is] this helps //[space][newline] to remain as-is and
10814: not be unnecessary optimized away [ruining javascript]
10815:
10816: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
10817: [tainted as-is]
10818:
10819: * src/classes/mail.C: bugfix: typo error
10820:
10821: 2004-09-09 paf
10822:
10823: * src/main/pa_common.C: bugfix: loads headers with both \r\n and \n
10824: separators bugfix: loads header with endings \r\n\r\n and \n\n
10825: (bloody yandex.server)
10826:
10827: 2004-09-06 paf
10828:
10829: * src/main/pa_charset.C: bugfix: two-bytes invalid chars in
10830: TranscodeFromUTF8 considered valid. only >2bytes-long now %HH
10831: encoded
10832:
10833: 2004-09-01 paf
10834:
10835: * src/types/pa_vmail.C: change: multipart/mixed changed to
10836: multipart/related outlook express have no problems showing
10837: unrelated attachments. todo: someday figure out a way of
10838: multipart/mixed multipart/related text/html
10839: image/xxx application/octet-stream << true attachments
10840:
10841: * src/types/pa_vmail.C: new:
10842: ^mail:send[$.file[$.content-disposition can be overriden new:
10843: empty mail header fields removed from letter
10844:
10845: * src/: classes/mail.C, include/pa_config_fixed.h,
10846: types/pa_value.C, types/pa_value.h, types/pa_vmail.C: new:
10847: ^mail:send[ $.file[ $.any[header]
10848:
10849: 2004-08-30 paf
10850:
10851: * src/: include/pa_config_fixed.h, main/pa_common.C: beauty: less
10852: warnings
10853:
10854: * src/main/pa_common.C: beauty: do not bother with charset
10855: detection when ^file::load[binary
10856:
10857: 2004-08-27 paf
10858:
10859: * src/main/pa_common.C: hack: for yandex.server http server
10860:
10861: 2004-08-18 paf
10862:
10863: * src/main/pa_request.C: bugfix: Accept-Ranges: bytes when sending
10864: possibly-chunked response
10865:
10866: 2004-08-17 paf
10867:
10868: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
10869: $f.content-type now = that of http response
10870:
10871: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
10872: $f.content-type now = that of http response
10873:
10874: 2004-07-30 paf
10875:
10876: * src/: include/pa_request.h, main/pa_request.C,
10877: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: bugfix:
10878: win32: system&parser exceptions in release mode reported properly
10879: parser exception in exception handler WERE mistakenly reported as
10880: system exception, without details [in apache & isapi] +some
10881: beauty in exception text
10882:
10883: * src/: include/pa_exception.h, main/pa_request.C,
10884: targets/cgi/parser3.C: bugfix: win32: system&parser exceptions in
10885: release mode reported properly parser exception in exception
10886: handler WERE mistakenly reported as system exception, without
10887: details
10888:
10889: * src/main/execute.C: beauty: simplified system exception handling
10890:
10891: 2004-07-29 paf
10892:
10893: * src/classes/table.C: bugfix:
10894: ^table.save[export.csv;$.separator[^;]] now works fine [separator
10895: were ignored, and \t used unconditionally]
10896:
10897: * src/types/Makefile.am: added vhash.c
10898:
10899: 2004-07-28 paf
10900:
10901: * src/: classes/date.C, classes/image.C, classes/math.C,
10902: lib/ltdl/ltdl.c, lib/pcre/pcre_parser_ctype.c, lib/smtp/comms.C,
10903: main/pa_common.C, targets/cgi/parser3.C, types/pa_vform.C,
10904: types/pa_vmail.C: bugfix: isspace((unsigned char)c) everywhere.
10905: failed on russian letters
10906:
10907: * src/: main/pa_string.C, types/pa_vmail.C, main/pa_common.C:
10908: bugfix: isspace((unsigned char)c) everywhere. failed on russian
10909: letters
10910:
10911: * src/main/pa_exec.C: bugfix: win32: chdir not needed, dir passwed
10912: as 'currentDirectory' parameter to CreateProcess
10913:
10914: 2004-07-27 paf
10915:
10916: * src/targets/cgi/parser3.vcproj: beauty: win32:
10917: globaloptimizations ON, release:mapfile ON todo: copy .mapfile
10918: from release somewhere [to help searching for unhandled system
10919: exceptions]
10920:
10921: * src/types/pa_vdate.h: check: for invalid datetime after temporary
10922: TZ shift
10923:
10924: * src/types/pa_vdate.h: bugfix: time checked not only at set_time
10925: but also in ctor
10926:
10927: 2004-07-26 paf
10928:
10929: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
10930: src/main/pa_request.C, src/types/pa_vfile.h,
10931: src/types/pa_vhash.C, src/types/pa_vhash.h,
10932: src/types/types.vcproj: new: $response:body/download[
10933: $.file[name on disk] $.name[of file for user]
10934: $.mdate[date of last-modified. default from directory] ]
10935:
10936: * src/classes/file.C: moving file:send somewhere else..
10937:
10938: * src/: classes/file.C, include/pa_sapi.h, main/pa_common.C,
10939: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: patched:
10940: ^file:send by Victor Fedoseev <vvf_ru@mail.ru> todo: turn it to
10941: $response:download[ $.filename[filename] $.option[] ,, ]
10942:
10943: * src/classes/file.C: beauty: invalid mode thoroughly reported
10944:
10945: 2004-07-21 paf
10946:
10947: * src/types/pa_vmail.C: bugfix: too long header values now splitted
10948: to several lines
10949:
10950: were: header: vaaaaaaaaaaaalue now: header: vaaaaaa aaalue
10951:
10952: note: ms outlook[!express] shows only first 255 characters of
10953: subject
10954:
10955: 2004-07-15 paf
10956:
10957: * src/main/pa_os.C: bugfix: locks now compiled in [were mistakenly
10958: off]
10959:
10960: 2004-07-14 paf
10961:
10962: * src/classes/table.C: bugfix: $.bind values now got untainted
10963: according to lang [were: as-is]
10964:
10965: 2004-07-07 paf
10966:
10967: * src/classes/op.C: bugfix: cache with 2 params caused assertion,
10968: checked that
10969:
10970: * src/main/pa_exec.C: bufix: on unix AND win32 environment string
10971: now untainted according to their languages. were: as-is.
10972: EVERYWHERE
10973:
10974: * src/: classes/file.C, main/pa_exec.C: bufix: on unix AND win32
10975: environment string now untainted according to their languages.
10976: were: as-is. EVERYWHERE
10977:
10978: * src/main/pa_exec.C: bufix: on unix environment string now
10979: untainted according to their languages. were: as-is. on win32:
10980: ok
10981:
10982: * parser3.vssscc: ...would not go unnoticed
10983:
10984: * src/main/pa_charset.C: convinience: transcodeFromUTF8 now never
10985: fails. in case on input appears nonutf, those bytes will be
10986: printed in %HH form. that can be easily decoded/recovered.
10987:
10988: this form is quite noticable, and hopefully would not go noticed
10989:
10990: 2004-07-06 paf
10991:
10992: * src/main/pa_exec.C: bufix: on unix environment string now
10993: untainted according to their languages. were: as-is. on win32:
10994: ok
10995:
10996: 2004-07-01 paf
10997:
10998: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
10999: lib/gd/gd.vcproj, lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
11000: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
11001: lib/pcre/pcre_parser_ctype.vcproj, lib/smtp/smtp.vcproj,
11002: main/main.vcproj, targets/cgi/parser3.vcproj,
11003: targets/isapi/parser3isapi.vcproj, types/types.vcproj: win32:
11004: option: global optimization ON
11005:
11006: * src/main/untaint.C: workaround kinda bug in libxml: life requires
11007: to do xdoc::create{invalid chars} standard disables chars less
11008: then \x20, except tab, cr, lf.
11009:
11010: changed tainting so that those become '!'
11011:
11012: 2004-06-25 paf
11013:
11014: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
11015: int on odd address [prev bugfix failed due to superwize
11016: optimizer, which turned memcpy into same 'ld' asm command]
11017:
11018: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
11019: int on odd address
11020:
11021: 2004-06-22 paf
11022:
11023: * src/sql/pa_sql_driver.h: note: about possible optimization
11024:
11025: * operators.txt, src/classes/hash.C, src/classes/memory.C,
11026: src/classes/string.C, src/classes/table.C, src/classes/void.C,
11027: src/include/pa_config_includes.h: new: ^void:sql{call
11028: paf(:a)}[ $.bind[ $.a[2]
11029: ] ] output variables work. todo: check in out
11030: variables
11031:
11032: 2004-06-18 paf
11033:
11034: * src/: classes/file.C, classes/hash.C, classes/string.C,
11035: classes/table.C, classes/void.C, include/pa_globals.h,
11036: include/pa_sql_connection.h, main/compile.tab.C,
11037: sql/pa_sql_driver.h: started: ^void:sql{call paf(:a)}[
11038: $.bind[ $.a[2] ]
11039: ] input variables work. todo:output
11040:
11041: * src/targets/cgi/parser3.C: bugfix: iis specific
11042: http://parser3/_bug.html?404;http://hpsv/test/ now $request:uri
11043: /_bug.html?404;http://hpsv/test/
11044: --------------------------------------------------------------------------------
11045: $request:query IIS-STATUS=404&IIS-DOCUMENT=http://hpsv/test/
11046: --------------------------------------------------------------------------------
11047: IIS-STATUS="404" IIS-DOCUMENT="http://hpsv/test/"
11048:
11049: 2004-06-16 paf
11050:
11051: * src/targets/cgi/parser3.C: new: iis specific
11052: http://parser3/_bug.html?404;http://server/_bug.html?f=v now
11053: $request:query
11054: IIS-STATUS=404&IIS-DOCUMENT=http://server/_bug.html&f=v
11055: $form:fields IIS-STATUS="404"
11056: IIS-DOCUMENT="http://server/_bug.html" f="v"
11057:
11058: todo: isapi too
11059:
11060: 2004-05-26 paf
11061:
11062: * src/include/pa_version.h: 3.1.3
11063:
11064: * operators.txt: beauty: removed outdated level 'table'
11065:
11066: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: thanks to konst
11067:
11068: * src/main/pa_string.C: beauty: removed 3 warnings
11069:
11070: * src/: include/pa_string.h, classes/table.C, main/untaint.C,
11071: classes/op.C: beauty: removed outdated level 'table'
11072:
11073: 2004-05-25 paf
11074:
11075: * src/lib/sdbm/apr_file_io.C: bugfix: bad seek wrapper
11076: implementation. mistery: how anything worked
11077:
11078: * src/sql/pa_sql_driver.h: beauty: param renamed and comment
11079: changed, it is now safe to use url if pointers to it are stored
11080: to gc mem
11081:
11082: * src/: main/pa_exec.C, types/pa_vhashfile.C: bugfix: hashfile
11083: unknown errors reported and not cause SIGSEGV now
11084:
11085: 2004-05-24 paf
11086:
11087: * src/: include/pa_string.h, lib/cord/cordbscs.c,
11088: lib/cord/include/cord.h, lib/cord/cordxtra.c: cancel: more speed,
11089: less memory: CORD_chars_block originally intended to ... it was
11090: good that CORD_chars_block were not used: it consumes more memory
11091: [and, might be slow too] undoing that. [and removed that func so
11092: that it would not confuse parser developer in future]
11093:
11094: * src/: include/pa_string.h, lib/cord/include/cord.h: more speed,
11095: less memory: CORD_chars_block originally intended to
11096: speedup/reduce mem usage were forgotten, and were used stupid
11097: CORD_chars
11098:
11099: * src/include/pa_config_auto.h.in: bugfix: bigendian check added
11100:
11101: * src/include/: pa_config_fixed.h, pa_string.h: bugfix: on
11102: BIGENDIAN processors space-conserving mech failed, causing
11103: SIGSEGV/SIGBUS and SAPI::abort("unknown untaint lang#%d",
11104: (1|2|3));
11105:
11106: 2004-05-14 paf
11107:
11108: * src/types/: Makefile.am, pa_vvoid.C, pa_vvoid.h, types.vcproj:
11109: bugfix: void now has vfile value, and $response:body[] works OK
11110:
11111: 2004-05-12 paf
11112:
11113: * src/types/: pa_vbool.h, pa_vhash.h, pa_vhashfile.h, pa_vtable.h:
11114: beauty: ^if(def $bool) now equals ^if($bool) and shaped up other
11115: sources to use is_defined() {return as_bool();} along VBool
11116:
11117: 2004-05-11 paf
11118:
11119: * src/include/pa_exec.h: bugfix: gpf on file::exec/cgi because of
11120: referencing to local objects
11121:
11122: * src/: classes/mail.C, include/pa_exec.h, main/compile.tab.C,
11123: types/pa_vmail.C, types/pa_vmail.h: bugfix: bcc with sendmail now
11124: left intact
11125:
11126: 2004-04-15 paf
11127:
11128: * src/classes/date.C: merged: beauty: unused var removed
11129:
11130: * src/classes/date.C: beauty: unused var removed
11131:
11132: * src/include/: pa_exec.h: bugfix: interface without pointer
11133: provoked bug
11134:
11135: 2004-04-09 paf
11136:
11137: * src/types/pa_vform.C: merge: bugfix: form:imap were incorrect
11138:
11139: * src/types/pa_vform.C: bugfix: form:imap were incorrect
11140:
11141: 2004-04-08 paf
11142:
11143: * src/classes/date.C: new: ^date::create[y-m-d
11144: h-M-s>>.milliseconds<<] now allowed, ignored so far
11145:
11146: * src/main/pa_xml_io.C: merged: bugfix /etc/xml/catalog
11147:
11148: * src/main/pa_xml_io.C: bugfix: in safe mode -- disabled attempts
11149: to consult default catalog [usually, that file belongs to other
11150: user/group]
11151:
11152: 2004-04-06 paf
11153:
11154: * src/main/pa_common.C: beauty: gcc warning removed
11155:
11156: * src/main/: compile.tab.C, compile.y: bugfix: gcc refused to
11157: accept that trick, trying other
11158:
11159: * src/main/: compile.tab.C, compile.y: bugfix: step3 to fix
11160: explicit result problem
11161:
11162: * src/main/: compile.tab.C, compile.y: bugfix: step2 to fix
11163: explicit result problem
11164:
11165: * src/main/: compile.tab.C, compile.y: bugfix: step1 to fix
11166: explicit result problem
11167:
11168: * operators.txt, src/classes/string.C: new: ^string.append[string]
11169:
11170: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
11171: main/execute.C: attempt_check_call_in_explicit_result_mode:
11172: failed
11173:
11174: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
11175: http://i.p.a.ddress gethostbyaddr added [on some platforms
11176: gethostbyname failed with such 'domains'] now checked properly,
11177: were: needless reverse/forward dns lookup
11178:
11179: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
11180: http://i.p.a.ddress gethostbyaddr added [on some platforms
11181: gethostbyname failed with such 'domains'] now checked properly,
11182: were: needless reverse/forward dns lookup
11183:
11184: * src/main/: compile.C, compile.tab.C, compile.y: reimplemented:
11185: @method[][result] means "no string output here" moved to lexical
11186: level [on grammar level it were too difficult]
11187:
11188: * operators.txt, src/include/pa_string.h, src/main/compile.tab.C,
11189: src/main/compile.y, src/main/compile_tools.h,
11190: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h: new:
11191: @method[][result] means "no string output here", implemented part
11192: of that idea: compiler throws away string literal generation
11193: code. and barks nonwhitespace chars
11194:
11195: * operators.txt: truth: removed comment about $ORIGIN
11196:
11197: 2004-04-05 paf
11198:
11199: * configure.in, src/doc/html2chm.cmd, src/doc/sources2html.cmd,
11200: src/include/pa_version.h, src/main/pa_common.C,
11201: src/targets/isapi/parser3isapi.C: merged with 3.1.3
11202:
11203: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: donated by
11204: Konstantin Tomashevitch [mailto:konst@design.ru]
11205:
11206: * src/doc/html2chm.cmd: beauty: no need in bg here
11207:
11208: * src/doc/sources2html.cmd: beauty: same window, in bg it
11209: interfered with FAR console
11210:
11211: * configure, configure.in: 3.1.3
11212:
11213: * src/targets/isapi/parser3isapi.C: beauty: removed some warnings
11214:
11215: * src/main/pa_common.C: removed warning
11216:
11217: * src/include/pa_version.h: 3.1.3
11218:
11219: 2004-04-02 paf
11220:
11221: * src/main/pa_string.C: bugfix: $s[009] ^s.int[] now 9, were error
11222:
11223: * src/targets/cgi/parser3.C: new: CGI_PARSER_LOG env variable
11224: allows to specify where to put parser log file
11225:
11226: 2004-04-01 paf
11227:
11228: * src/classes/table.C: bugfix: bugfix: table::load last line
11229: without tab and enter were ignored
11230:
11231: * src/: include/pa_cache_managers.h, include/pa_globals.h,
11232: include/pa_socks.h, main/pa_cache_managers.C, main/pa_globals.C,
11233: main/pa_socks.C, targets/cgi/parser3.C,
11234: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.def:
11235: bugfix: sql connections now are disconnected
11236:
11237: 2004-03-30 paf
11238:
11239: * src/classes/table.C: bugfix: table::load last line without tab
11240: and enter were ignored
11241:
11242: * src/classes/table.C: bufix: if last table lines were commented,
11243: gpfed
11244:
11245: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
11246: doc/ClassExample3.dox, doc/chmhelper.pl, doc/class.dox,
11247: doc/compiler.dox, doc/doxygen.cfg, doc/exception.dox,
11248: doc/executor.dox, doc/footer.htm, doc/index.dox, doc/memory.dox,
11249: doc/methoded.dox, doc/object.dox, doc/string.dox,
11250: doc/targets.dox, doc/value.dox, include/pa_version.h,
11251: main/pa_cache_managers.C, main/pa_stylesheet_connection.C,
11252: targets/isapi/parser3isapi.vcproj, types/pa_vform.C: merged
11253: bugfixes from 3.1.2, changed version to 3.1.3beta
11254:
11255: 2004-03-29 paf
11256:
11257: * src/types/pa_vhashfile.C: bugfix: empty key on hashfile.get
11258: causes gpf
11259:
11260: * src/doc/: ClassExample1.dox, ClassExample2.dox,
11261: ClassExample3.dox, chmhelper.pl, class.dox, compiler.dox,
11262: doxygen.cfg, exception.dox, executor.dox, footer.htm, index.dox,
11263: memory.dox, methoded.dox, object.dox, string.dox, targets.dox,
11264: value.dox: translated to english
11265:
11266: 2004-03-25 paf
11267:
11268: * src/targets/isapi/parser3isapi.vcproj: beauty: one more
11269: parser3project dependency removed
11270:
11271: * src/main/: pa_cache_managers.C, pa_stylesheet_connection.C:
11272: bugfix: refused to compile without xml
11273:
11274: * src/types/pa_vform.C: beauty: removed warning
11275:
11276: * src/classes/classes.vcproj: merged bugfix: now all compiles in
11277: any folder [removed last ;) folder dependency]
11278:
11279: * src/classes/classes.vcproj: bugfix: now all compiles in any
11280: folder [removed last ;) folder dependency]
11281:
11282: * src/include/pa_version.h: release
11283:
11284: * src/lib/gd/gif.C: new: ^image.pixel(outof;bounds) now returns -1
11285:
11286: * src/classes/table.C: beauty: comment& more meaningful error
11287: message
11288:
11289: * src/classes/hash.C: bugfix: ^hash::sql{one column} now produces
11290: $.hash[$.column_value1(true) ... ] [were producing some strang
11291: thing]
11292:
11293: 2004-03-23 paf
11294:
11295: * src/: classes/image.C, main/pa_common.C: bugfix: ^image.polyline
11296: and http status line parsing checked number of columns in table
11297: [user reported an assert]
11298:
11299: * operators.txt: example: on hashfile
11300:
11301: * src/: classes/op.C, types/pa_value.C, types/pa_wcontext.C:
11302: bugfix: junction reattach now actually reattaches a junction to
11303: new wcontext [were only assigning it to junction, which caused
11304: junction tracking to loose junction, and it's context were not
11305: killed, and it tried to process in invalid context, gpf]
11306:
11307: * src/targets/cgi/parser3.C: debug helper added
11308:
11309: 2004-03-19 paf
11310:
11311: * src/types/pa_wcontext.C: beauty: error messages removed duplicate
11312: "type(type)" in braces
11313:
11314: 2004-03-10 paf
11315:
11316: * operators.txt, src/classes/xdoc.C, src/classes/xnode.C,
11317: src/classes/xnode.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
11318: src/types/pa_vxnode.C, src/types/pa_vxnode.h: new: refined
11319: solution to search-in-namespaces problem:
11320: $xdoc.search-namespaces.x[http://pif.design.ru/]
11321: $nodes[^xdoc.select[//x:second]]
11322:
11323: * operators.txt, src/classes/xnode.C: new: xnode.select*[xpath
11324: expression][[NAMESPACES HASH]] allows to search for info in
11325: namespaces
11326:
11327: $nodes[^xdoc.select[//x:second][
11328: $.x[http://pif.design.ru/] ]]
11329:
11330: 2004-03-09 paf
11331:
11332: * operators.txt, src/main/pa_common.C: new:
11333: ^file::load[...][options] $.form[
11334: !$.field1[string]
11335: !$.field2[^table::create{one_column_only^#0Avalue1^#0Avalue2}]
11336: ] !$.body[string]
11337:
11338: GET ?here notGET(POST, HEAD, others) in content-type:
11339: application/x-www-form-urlencoded
11340:
11341: todo: upload files ability
11342:
11343: * src/lib/cord/cordxtra.c: bugfix: CORD_pos were not fixed
11344: properly, done
11345:
11346: 2004-03-05 paf
11347:
11348: * operators.txt, src/main/pa_common.C: new: file::load[;http://
11349: GET/POST $.form[$.fields started, not tested yet
11350: todo:$.field[table] for multiple values
11351:
11352: * operators.txt: new: http:// options $.user $.password basic
11353: authorization
11354:
11355: * src/main/pa_common.C: beauty: link to rtf added
11356:
11357: * operators.txt, src/include/pa_common.h, src/main/pa_common.C:
11358: new: http:// options $.user $.password basic authorization
11359:
11360: * src/main/pa_common.C: beauty: removed needless vars
11361:
11362: * operators.txt: new: pgsql option [like that recently added to
11363: oracle driver] ClientCharset=parser-charset <<
11364: charset in which parser thinks client works
11365:
11366: * operators.txt: new: odbc option [like that recently added to
11367: oracle driver] ClientCharset=parser-charset <<
11368: charset in which parser thinks client works
11369:
11370: * src/sql/pa_sql_driver.h: beauty: important warning added
11371:
11372: * etc/parser3.charsets/koi8-r.cfg: there's special code for grad
11373: char!
11374:
11375: * etc/parser3.charsets/windows-1251.cfg: typo
11376:
11377: 2004-03-04 paf
11378:
11379: * src/main/pa_sql_driver_manager.C: speedup: charset lookups
11380: cached, sql transcoding now goes faster
11381:
11382: * operators.txt: new: mysql option [like that recently added to
11383: oracle driver] ClientCharset=parser-charset <<
11384: charset in which parser thinks client works
11385:
11386: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: keyboard
11387: typo error
11388:
11389: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: typograph
11390: chars commented
11391:
11392: 2004-03-03 paf
11393:
11394: * INSTALL: note: added on libgc on FreeBSD, thanks to Andrey N.
11395: Pazychev <135@ugtel.ru> and Goor <goor@hotbox.ru>
11396:
11397: 2004-03-02 paf
11398:
11399: * operators.txt: new[update typo]: !^void.left(n)
11400: nothing !^void.right(n) nothing !^void.mid(p[;n])
11401: nothing
11402:
11403: * operators.txt, src/classes/void.C: new: !^void.left(n)
11404: nothing !^void.right(n) nothing !^void.pos(p[;n])
11405: nothing
11406:
11407: * operators.txt, src/classes/file.C, src/include/pa_string.h: new:
11408: ^file::sql[[name_to_become_$.name]]{} query result must be one
11409: row with columns: first: data second: file name third:
11410: content-type
11411:
11412: * operators.txt, src/classes/file.C: ^file.sql-string[] inside
11413: ^connect gets properly escaped string, which can be passed to
11414: request now this for mysql only. it's up to parser sql driver to
11415: fix zeros properly
11416:
11417: * INSTALL: note: added on building apache with this option:
11418: --enable-shared=max thanks to Victor Fedoseev <vvf_ru@mail.ru>
11419:
11420: 2004-03-01 paf
11421:
11422: * src/targets/isapi/parser3isapi.C: new: apache module & isapi
11423: extension memory:compact befor processingrequest
11424:
11425: * operators.txt, src/classes/hash.C: new: ^hash._keys[>>name<<] to
11426: call sole column of result
11427:
11428: * operators.txt, src/classes/image.C, src/lib/gd/gif.C,
11429: src/lib/gd/gif.h: new: ^image.pixel(x;y)[(color)] get/set
11430: pixel color
11431:
11432: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
11433: beauty: image -- less checks [were ugly impl]
11434:
11435: * src/classes/string.C: bugfix: ^string.left/right/mid with
11436: negative values now considered bad
11437:
11438: * src/main/pa_common.C: bugfix: INADDR_NONE not everywhere defined
11439:
11440: * src/: classes/xdoc.C, types/pa_vxdoc.h: bugfix: boolean output
11441: options now have unified defaults [after transform
11442: indent/omit-xml-declaration/standalone 'default' erroreously
11443: meant 'true']
11444:
11445: * src/main/pa_common.C: bugfix: http://i.p.a.ddress gethostbyaddr
11446: added [on some platforms gethostbyname failed with such
11447: 'domains']
11448:
11449: * src/include/pa_config_auto.h.in: no select check, no define
11450:
11451: * src/classes/string.C: feature: ^string.trim both parameters may
11452: be empty-strings, meaning kind=both chars=whitespaces
11453:
11454: * src/lib/smtp/comms.C: bugfix: use SO_LINGER if no SO_DONTLINGER
11455: exist
11456:
11457: * src/classes/string.C: check: trim 'chars' must not be empty,
11458: exception if it is
11459:
11460: * src/classes/string.C: changed: ^string.trim [] << both,
11461: whitespaces [start|both|end] << kind, whitespaces
11462: [start|both|end;chars] full
11463:
11464: 2004-02-27 paf
11465:
11466: * operators.txt, src/classes/string.C, src/main/pa_string.C: new
11467: method: ^string.trim[start|both|end[;chars]] default
11468: 'chars' -- whitespace chars finished
11469:
11470: * operators.txt, src/classes/string.C, src/include/pa_string.h,
11471: src/main/pa_string.C: new method:
11472: ^string.trim[start|both|end[;chars]] default 'chars' --
11473: whitespace chars started, only start works
11474:
11475: * src/main/compile.C: bugfix: line numbers after
11476: ^process{}[$.line(-10]] can be negative, allowed to print they as
11477: signed
11478:
11479: * src/main/untaint.C: speed: there's no \n chars in output
11480: [normally], so no need to optimize them they could be retrived
11481: from databases, though. but 1. should be replaced 2. if not
11482: optimized, no harm done
11483:
11484: * src/main/pa_exec.C: bugfix: waitpid could be interrupted --
11485: ^file::exec/cgi could return invalid status & zombie child can
11486: remain for short period until process exists [very bad in
11487: mod_parser3] http://i2/tasks/edit/?id=4629451867179521923
11488:
11489: * src/lib/smtp/smtp.h: bugfix: SMTP buffer overflow could allow
11490: malicious SMTP server to attack as by returning too long status
11491: responses http://i2/tasks/edit/?id=4629448401140924947
11492:
11493: 2004-02-26 paf
11494:
11495: * operators.txt: feature: ^process...{CODE}[now has options] which
11496: are $.main[to what to rename @main] $.file[file,
11497: from which (user says) goes that CODE] $.lineno(line
11498: number in that file, where CODE starts. may be negative)
11499:
11500: * operators.txt, src/classes/op.C, src/include/pa_request.h,
11501: src/main/compile.C, src/main/compile_tools.h,
11502: src/main/pa_request.C: feature: ^process...{CODE}[now has
11503: options] which are $.main[to what to rename @main]
11504: $.file[file, from which (user says) goes that CODE]
11505: $.lineno(line number in that file, where CODE starts. may be
11506: negative)
11507:
11508: 2004-02-25 paf
11509:
1.116 moko 11510: * etc/parser3.charsets/Makefile.am: bugfix: @sysconfdir@ used [were
11511: old @charsetsdir@ recently erased from configure.in]
1.95 moko 11512:
11513: * src/classes/hash.C: feature: ^hash::sql{one colum result} now
11514: produces hash of column=>1
11515:
11516: * src/lib/smtp/smtp.h: beauty: couple of #ifdef-s to compile even
11517: with incomplete errno constants set
11518:
11519: 2004-02-24 paf
11520:
11521: * src/lib/smtp/smtp.C: smtp on unix: authors of lib/smtp never read
11522: "man select"
11523:
11524: * src/main/pa_os.C: beauty: <0 better then ==-1
11525:
11526: * src/lib/smtp/comms.C: smtp on unix: steps to work on unix
11527:
11528: * src/lib/smtp/: smtp.C: smtp on unix: steps to work on unix
11529:
1.116 moko 11530: * src/classes/Makefile.am: smtp on unix: steps to work on unix
1.95 moko 11531:
11532: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp on
11533: unix: steps to work on unix [extracted 'to']
11534:
11535: * src/classes/mail.C: smtp on unix: steps to work on unix
11536:
11537: * src/lib/smtp/smtp.C: smtp on unix: compiled on win32
11538:
1.116 moko 11539: * src/: lib/smtp/Makefile.am, lib/smtp/comms.C, lib/smtp/smtp.C,
11540: lib/smtp/smtp.h, targets/cgi/Makefile.am: started porting smtp to
11541: unix [testing on solaris]
1.95 moko 11542:
11543: 2004-02-20 paf
11544:
11545: * src/classes/xdoc.C: beauty: ugly code removed, thanks to egr for
11546: pointing that out
11547:
11548: * src/classes/xdoc.C: bugfix: <tag attr="&#digital_entity;" bug
11549: fixed again [same solution, mistanenly removed one line]
11550:
11551: 2004-02-19 paf
11552:
11553: * src/: classes/date.C, classes/image.C, types/pa_vdate.h: feature:
11554: date::create from bad datetime in spring daylightsaving hole now
11555: OK for all platforms [on some platforms it failed]
11556:
11557: * src/classes/: date.C, image.C: beauty: date::create[bad date time
11558: in daylightsaving hole] now throws error
11559:
11560: * src/classes/date.C: comment: mistake fixed
11561:
11562: 2004-02-18 paf
11563:
11564: * src/: classes/xdoc.C, include/pa_charset.h: beauty: xdoc.string
11565: now renderes in $request:charset, but in header puts
11566: $response:charset todo: make that default only so that coder
11567: could override that
11568:
11569: * src/classes/xdoc.C: beauty: xhtml doctype-public/system forcly
11570: turns off omit-xml-declaration
11571:
11572: * src/classes/xdoc.C: feature: reimplemented xhtml output, see
11573: /.xsl for sample
11574:
11575: 2004-02-17 paf
11576:
11577: * src/classes/xdoc.C: beauty: needless helper class removed
11578:
11579: * src/classes/xdoc.C: beauty: method=html outputxmlbuffer not
11580: copied extra time
11581:
11582: * src/classes/xdoc.C: bugfound: meta again, now somewhere in xhtml
11583: part of libxml
11584:
11585: * src/classes/xdoc.C: new: xhtml now works [libxslt prevented
11586: libxml to do the work] <xsl:output method="html"
11587: doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
11588: doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
11589: />
11590:
11591: * src/classes/xdoc.C: beauty: no <meta ... charset generated
11592:
11593: * src/types/pa_vxdoc.h: bugfix: ^xdoc::transform [note double :]
11594: caused assertion
11595:
11596: * src/classes/hash.C: bugfix: ^hash.add[$hash] ^hash.sub[$hash]
11597: could hang. now such add does nothing, sub clears $hash
11598:
11599: * src/main/untaint.C: bugfix: one last char prior to "spaces<" were
11600: not made quoted-printable
11601:
11602: * src/main/pa_uue.C: bugfix: uuencoded finish char adding violated
11603: string invariant
11604:
11605: 2004-02-16 paf
11606:
11607: * src/main/pa_globals.C: bugfix: xml errors copy from library now
11608: cleared [were not cleared properly]
11609:
11610: 2004-02-13 paf
11611:
1.116 moko 11612: * src/include/pa_version.h: prerelease
1.95 moko 11613:
11614: * src/main/pa_stylesheet_connection.C: change: .xsl.stamp now not
11615: used, introducing dependencies timestamp check
11616:
11617: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
11618: include/pa_xml_io.h, main/Makefile.am, main/compile.tab.C,
11619: main/main.vcproj, main/pa_globals.C, main/pa_xml_io.C: change:
11620: .xsl.stamp now not used, introducing dependencies timestamp check
11621:
11622: * configure.in, bin/auto.p.dist.in: auto.p: @conf made relative
11623:
11624: 2004-02-12 paf
11625:
11626: * src/types/pa_vform.C: bugfix: empty values[recently allowed]
11627: ruined empty <input type=file> submits. parser thought there were
11628: nameless empty file and $form:field got value of type 'file'
11629:
11630: * INSTALL: --without-threads
11631:
11632: * src/include/pa_sapi.h: 2004
11633:
11634: 2004-02-11 paf
11635:
11636: * src/: classes/classes.C, classes/classes.h, classes/date.C,
11637: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
11638: classes/hashfile.C, classes/image.C, classes/int.C,
11639: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
11640: classes/response.C, classes/string.C, classes/table.C,
11641: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11642: include/pa_array.h, include/pa_cache_managers.h,
11643: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
11644: include/pa_config_fixed.h, include/pa_config_includes.h,
11645: include/pa_dictionary.h, include/pa_dir.h,
11646: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
11647: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
11648: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
11649: include/pa_request_charsets.h, include/pa_request_info.h,
11650: include/pa_socks.h, include/pa_sql_connection.h,
11651: include/pa_sql_driver_manager.h, include/pa_stack.h,
11652: include/pa_string.h, include/pa_stylesheet_connection.h,
11653: include/pa_stylesheet_manager.h, include/pa_table.h,
11654: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
11655: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
11656: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
11657: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
11658: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
11659: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
11660: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
11661: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
11662: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
11663: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
11664: main/pa_sql_driver_manager.C, main/pa_string.C,
11665: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
11666: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
11667: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
11668: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
11669: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
11670: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
11671: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
11672: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
11673: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
11674: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
11675: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
11676: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
11677: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
11678: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
11679: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11680: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
11681: types/pa_vresponse.h, types/pa_vstateless_class.C,
11682: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
11683: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
11684: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
11685: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
11686: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
11687: types/pa_wcontext.h, types/pa_wwrapper.h: 2004
11688:
11689: * src/main/pa_globals.C: beauty: typo caused gc.log warnings with
11690: debug version of gc.dll
11691:
11692: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
11693: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
11694: lib/pcre/pcre_parser_ctype.vcproj, lib/sdbm/sdbm.vcproj,
11695: lib/smtp/smtp.vcproj, main/main.vcproj, main/pa_globals.C,
11696: targets/cgi/parser3.C, targets/cgi/parser3.vcproj,
11697: targets/isapi/parser3isapi.vcproj, types/types.vcproj: migrated
11698: to latest libxml[2.6.5] and libgdome[1.1.2] simplified lib build
11699: processes
11700:
11701: * src/: classes/classes.vcproj, lib/gd/gd.vcproj, main/main.vcproj,
11702: main/pa_globals.C, targets/cgi/parser3.vcproj,
11703: targets/isapi/parser3isapi.vcproj, types/types.vcproj: continued
11704: changes to reflect libxml xsl new folders
11705:
11706: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
11707: lib/smtp/smtp.vcproj, main/main.vcproj,
11708: targets/cgi/parser3.vcproj, types/types.vcproj: continued changes
11709: to reflect libxml xsl new folders
11710:
11711: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
11712: lib/smtp/smtp.vcproj, main/main.vcproj,
11713: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
11714: types/types.vcproj: started changes to reflect libxml xsl new
11715: folders
11716:
11717: * ChangeLog, parser3.sln, src/classes/classes.vcproj,
11718: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
11719: src/main/compile.tab.C, src/main/main.vcproj,
11720: src/main/pa_globals.C, src/targets/cgi/parser3.vcproj,
11721: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
11722: started changes to reflect libxml xsl new folders
11723:
11724: 2004-02-10 paf
11725:
11726: * INSTALL: critical: libxslt1.1.2 wanted at least libxml2.6.3 to
11727: compile. recommened latest libxml up to date
11728:
11729: * INSTALL: critical: prior to 1.0.30 had bug: "a segfault on
11730: pattern compilation errors", on which spent 4 hours worktime. use
11731: versions higher than that. recommended now latest up to date
11732:
11733: 2004-02-06 paf
11734:
11735: * src/main/: pa_sql_driver_manager.C, pa_stylesheet_manager.C:
11736: beauty: unified destructing style
11737:
11738: * src/main/untaint.C: beauty: removed old def/ifdef
11739:
11740: * src/main/untaint.C: beauty: coredump @unknown untaint language
11741: now
11742:
11743: 2004-02-03 paf
11744:
11745: * src/: classes/image.C, main/pa_exec.C, main/pa_memory.C,
11746: targets/isapi/parser3isapi.C, types/pa_value.C,
11747: types/pa_vcookie.C: beauty: %u is more simple=proper for size_t
11748: then %ld/%lu
11749:
11750: * src/main/pa_common.C: typo: %l -> %u
11751:
11752: * src/classes/xdoc.C: bugfix: libxml: FOR UTF-8 TOO russian letters
11753: in attributes or documents-results of transform now not xx;
11754:
11755: * src/classes/xnode.C: memleaks found: not fixed yet. todo
11756:
11757: * src/main/pa_charset.C: bugfix: forgot to undo some
11758:
11759: * src/main/pa_charset.C: beauty: uncomment
11760: PA_PATCHED_LIBXML_BACKWARD to link with old patched libxml
11761: libraries
11762:
11763: 2004-02-02 paf
11764:
11765: * src/types/pa_vcookie.C: bugfix: erasing cookie: params now output
11766: $cookie:example[ $.value[value] $.path[/there/] ]
11767:
11768: $cookie:example[ $.value[] $.expires[session]
11769: $.path[/there/] $.domain[test.com] ]
11770:
11771: * src/types/pa_vform.C: bugfix: empty values with
11772: enctype=multipart/form-data now produce entries in $form:tables
11773: <form method=post enctype=multipart/form-data> <input type=hidden
11774: name=a> <input type=hidden name=b>
11775:
11776: <input type=submit> </form> $k[^form:fields._keys[]] ^eval($k)
11777: <hr> <pre>$request:body
11778:
11779: 2004-01-30 paf
11780:
11781: * src/classes/xdoc.C: bugfix: libxml: russian letters in attributes
11782: or documents-results of transform now not xx;
11783:
11784: * src/classes/date.C: bugfix: ^date::create[invalid fields now
11785: produce exception.
11786:
11787: * src/: classes/date.C, include/pa_string.h, main/pa_string.C:
11788: bugfix: ^date::create[invalid fields now produce exception.
11789:
11790: * ChangeLog, src/classes/date.C: bugfix: ^date::create[invalid
11791: year] now produces exception. todo: check other fields
11792:
11793: 2004-01-29 paf
11794:
11795: * src/include/pa_memory.h: typo error
11796:
11797: * src/include/pa_memory.h: bugfix: [potential] strdup copied one
11798: more byte then specified, then zeroed it << useless and
11799: potentially harmful(could gpf)
11800:
11801: 2004-01-22 paf
11802:
11803: * src/classes/xdoc.C: bugfix: when stylesheet contains error, gpf
11804:
11805: * src/main/untaint.C: merged: bugfix from 3.1.1 on whitespace
11806: optimization
11807:
11808: * src/main/untaint.C: bugfix: whitespace now optimized properly
11809: [were bug: ^taint[1 & 2]="1 &2"
11810:
11811: * src/main/pa_globals.C: beauty: bigger buffer for xml-related
11812: errors
11813:
11814: * src/main/pa_common.C: merged: bugfix from 3.1.1 on memory
11815: overflow
11816:
11817: * src/main/pa_common.C: bugfix: buffer overflow * in libxml&xsl
11818: error-reporting code * in parser-error reporting code [when no
11819: @unhandled_exception defined]
11820:
11821: fixed in one place: my *snprintf override
11822:
11823: 2004-01-13 paf
11824:
11825: * operators.txt: typo erro
11826:
11827: 2003-12-25 paf
11828:
11829: * src/main/pa_common.C: bugfix: ^file::load[binary;http:// now not
11830: garbled [pieces after zero bytes were removed]
11831:
11832: 2003-12-22 paf
11833:
1.116 moko 11834: * src/include/Makefile.am: bugfix: removed from dist:
11835: src/include/pa_config_auto.h which were configured for
1.95 moko 11836: make-dist-platform and badly updated proper config file in target
11837: [when .tar used for updating existing source tree]
11838:
11839: * ChangeLog, operators.txt, src/classes/op.C,
11840: src/include/pa_sql_connection.h,
11841: src/include/pa_sql_driver_manager.h,
11842: src/main/pa_sql_driver_manager.C, src/sql/pa_sql_driver.h:
11843: feature: sql introducing ability to transcode charsets
11844:
11845: 2003-12-19 paf
11846:
11847: * src/main/pa_sql_driver_manager.C: beauty: more straighforward
11848: error message
11849:
11850: * src/main/pa_charset.C: bugfix: memory for charsethandler
11851: structure for libxml now allocated properly
11852:
11853: 2003-12-17 paf
11854:
11855: * src/types/pa_vfile.C: beauty: removed outdated cast
11856:
11857: * src/main/pa_common.C: bugfix: empty http response caused gpf
11858:
11859: * src/include/pa_string.h: bugfix: removed too strong a assert
11860:
11861: * src/main/pa_globals.C: bugfix: removed false warning [warning:
11862: unreported xmlGenericErrors]
11863:
11864: 2003-12-15 paf
11865:
11866: * src/classes/xdoc.C: bugfix: taint uri under ^xdoc::create{now
11867: works}
11868:
11869: 2003-12-11 paf
11870:
11871: * operators.txt, src/types/pa_vstatus.C: !$status:pid process
11872: id
11873: !$status:tid thread id
11874:
11875: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
11876: main/pa_globals.C, main/pa_request.C, types/pa_vstatus.C:
11877: bugfix(solaris): removed dependency on object initialization
11878: order [one more place]
11879:
11880: * src/: classes/file.C, classes/mail.C, classes/op.C,
11881: classes/xdoc.C, main/pa_request.C, types/pa_vimage.C,
11882: types/pa_vmath.C, types/pa_vstatus.C: beauty cancel: gcc does not
11883: understand that
11884:
11885: * src/: classes/file.C, classes/mail.C, classes/op.C,
11886: classes/xdoc.C, include/pa_cache_managers.h,
11887: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
11888: include/pa_stylesheet_manager.h, main/pa_request.C,
11889: main/pa_stylesheet_manager.C, types/pa_vimage.C,
11890: types/pa_vmath.C, types/pa_vstatus.C: beauty: removed redundant
11891: ctor call [relying on implicit String::Body(cstr) call]
11892:
11893: * src/main/: pa_cache_managers.C, pa_sql_driver_manager.C,
11894: pa_stylesheet_manager.C: bugfix(solaris): removed dependency on
11895: object initialization order [two places]
11896:
11897: 2003-12-10 paf
11898:
11899: * src/include/pa_sql_connection.h: bugfix: $status:sql.cache back
11900: << time now ok
11901:
11902: * operators.txt, src/main/pa_sql_driver_manager.C,
11903: src/main/pa_stylesheet_manager.C: $status:stylesheet.cache back
11904: operational
11905:
11906: * ChangeLog, operators.txt, src/classes/xdoc.C,
11907: src/include/pa_charset.h, src/include/pa_sql_connection.h,
11908: src/main/pa_charset.C, src/main/pa_sql_driver_manager.C,
11909: src/main/pa_string.C, src/types/pa_vxdoc.h: $status:sql.cache
11910: back operational
11911:
11912: 2003-12-02 paf
11913:
11914: * src/types/pa_vmail.C: bugfix:
11915: ^mail:send[$.file[$.value[>>xxxx<<]] now untaints properly [were:
11916: as-is forced]
11917:
11918: * src/main/pa_xml_io.C: bugfix: on some platforms one can't throw
11919: exceptions out of libxml callbacks: reimplemented error handling
11920: of http://localhost, parser://method and safemode check callbacks
11921:
11922: * src/main/pa_string.C: bugfix: SPARC gpf on %4!=0 address int ref
11923: [merged from HEAD]
11924:
11925: * src/classes/image.C: nothing: comment removed
11926:
11927: * src/main/pa_string.C: bugfix: sparc gpf on reading %4!=0
11928: addresses to int
11929:
11930: 2003-12-01 paf
11931:
11932: * src/main/pa_xml_io.C: bugfix: typo
11933:
11934: * src/main/pa_globals.C: bugfix: win32: compile prob
11935:
11936: * src/classes/xdoc.C: bugfix: typo
11937:
11938: * src/main/pa_xml_io.C: todo: safe mode check not to throw
11939: exception
11940:
11941: * src/main/pa_xml_io.C: bugfix: http://localhost typo error
11942:
11943: 2003-11-28 paf
11944:
11945: * src/main/pa_xml_io.C: installed safe-mode checker as filter of
11946: all xml documents read
11947:
11948: * src/main/pa_xml_io.C: http://localhost/ now checked for safe mode
11949:
11950: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
11951: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
11952: replaced original open mech of xdoc::create & co to use libxml
11953: open, so that this would work for root document todo: safe mode
11954: checks to libxml: ideally to some 1 point
11955:
11956: * src/main/pa_xml_io.C: comment
11957:
11958: * operators.txt, src/main/pa_xml_io.C: leading / in
11959: http://parser[abscent params]
11960:
11961: * operators.txt, src/include/pa_request.h, src/main/pa_xml_io.C:
11962: works. todo: maybe replace original open mech of xdoc::create &
11963: co to use libxml open, so that this would work for root document
11964:
11965: $xdoc[^xdoc::create{<?xml version="1.0"?> <!DOCTYPE test SYSTEM
11966: "parser://method/params/here"> <test> &test^; </test> }]
11967:
11968: ^taint[^xdoc.string[]]
11969:
11970: @method[param] <!ENTITY test
11971: "test-entity-value+$form:user+$param!">
11972:
11973: 2003-11-27 paf
11974:
11975: * src/main/pa_xml_io.C: libxml: started parser://methodcall/params
11976:
11977: * src/classes/date.C: bugfix: typo error
11978:
11979: 2003-11-26 paf
11980:
11981: * operators.txt, src/include/Makefile.am, src/include/pa_globals.h,
11982: src/main/Makefile.am, src/main/main.vcproj,
11983: src/main/pa_globals.C, src/main/pa_request.C,
11984: src/include/pa_xml_io.h, src/main/pa_xml_io.C: simplification:
11985: xml errors to hash<thread_id,error> reorganization: xml io moved
11986: to pa_xml_io.C/h
11987:
11988: * src/types/pa_value.h: warnings: --
11989:
11990: 2003-11-25 paf
11991:
11992: * src/classes/table.C: bugfix: wrong sequence. [sadly no waring
11993: whatever)
11994:
11995: * src/classes/table.C: bugfix: a, c?x:y, z in gcc considered(?) as
11996: a, (c?x:y, z)
11997:
11998: * src/main/untaint.C: bugfix: consequences of not reading this
11999: comment: CORD_pos_chars_left /* Number of characters in cache.
12000: <= 0 ==> none */
12001:
12002: * src/include/pa_array.h: removed needless checks
12003:
12004: 2003-11-24 paf
12005:
12006: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
12007: removed limit: now $form:xxx can be accessed anytime, even in
12008: @auto/conf [and request/response:charset still can be changed
12009: anytime]
12010:
12011: * src/main/pa_common.C: bugfix: ^file::load[binary;http://...]
12012: now not transcodes response body
12013:
12014: * operators.txt, src/types/pa_vxnode.C, src/types/pa_vxnode.h:
12015: $xdoc[^xdoc::create[test]] $tn[^xdoc.createTextNode[text node
12016: value]] $dummy[^xdoc.firstChild.appendChild[$tn]]
12017: $xdoc.firstChild.firstChild.nodeValue[different]
12018: ^taint[^xdoc.string[]]
12019:
12020: * src/: include/pa_hash.h, types/types.vcproj: linker HPUX nongnu
12021: workaround: static Hash::allocates -> static Hash_allocates
12022:
12023: 2003-11-21 paf
12024:
1.116 moko 12025: * Makefile.am, configure, configure.in, src/classes/Makefile.am,
12026: src/include/pa_config_auto.h.in, src/targets/cgi/Makefile.am,
12027: src/types/Makefile.am: rearrange: gd&smtp moved to src/lib
1.95 moko 12028:
12029: * src/classes/classes.vcproj: rearrange: gd&smtp moved to src/lib
12030:
12031: * src/classes/mail.C: bugfix: typo
12032:
12033: * parser3.sln, src/classes/Makefile.am, src/lib/Makefile.am,
1.116 moko 12034: src/lib/gd/Makefile.am, src/lib/gd/gd.vcproj, src/lib/gd/gif.C,
12035: src/lib/gd/gif.h, src/lib/gd/gifio.C, src/lib/gd/mtables.h,
12036: src/lib/smtp/Makefile.am, src/lib/smtp/comms.C,
12037: src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
1.95 moko 12038: src/lib/smtp/smtp.vcproj: rearrange: gd&smtp moved to src/lib
12039:
12040: * src/main/pa_exec.C: bug in safe mode
12041:
12042: * src/include/Makefile.am: pa_xml_exception.h
12043:
12044: * src/targets/isapi/parser3isapi.C: more warnings --
12045:
12046: 2003-11-20 paf
12047:
12048: * src/: classes/math.C, classes/op.C, classes/string.C,
12049: main/pa_charset.C, main/pa_dictionary.C, main/pa_string.C,
12050: types/pa_value.C, main/pa_dir.C, main/pa_table.C: more warnings
12051: --
12052:
12053: * src/: main/pa_charset.C, main/pa_string.C, types/pa_vxnode.C:
12054: more warnings --
12055:
12056: * src/classes/xdoc.C: more warnings --
12057:
12058: * src/classes/: date.C, image.C, xdoc.C: more warnings --
12059:
12060: * src/: main/pa_sql_driver_manager.C, main/untaint.C,
12061: types/pa_vcookie.C, types/pa_vmail.C: more warnings --
12062:
12063: * src/: classes/date.C, classes/file.C, classes/hash.C,
12064: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
12065: classes/table.C, include/pa_cache_managers.h,
12066: include/pa_stylesheet_connection.h, main/pa_request.C,
12067: types/pa_vdate.h, types/pa_vhashfile.C, types/pa_vimage.h,
12068: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: more warnings
12069: --
12070:
12071: * src/main/: execute.C, pa_request.C: old forgotten todo: when
12072: can't report problem (undefined @unhandled_exception) problem
12073: source string were not reported
12074:
12075: * src/: classes/classes.C, classes/classes.h, classes/date.C,
12076: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
12077: classes/hashfile.C, classes/image.C, classes/int.C,
12078: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
12079: classes/response.C, classes/string.C, classes/table.C,
12080: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
12081: include/pa_array.h, include/pa_cache_managers.h,
12082: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
12083: include/pa_config_fixed.h, include/pa_dictionary.h,
12084: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
12085: include/pa_globals.h, include/pa_hash.h, include/pa_memory.h,
12086: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
12087: include/pa_request.h, include/pa_request_charsets.h,
12088: include/pa_request_info.h, include/pa_sapi.h, include/pa_socks.h,
12089: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
12090: include/pa_stack.h, include/pa_string.h,
12091: include/pa_stylesheet_connection.h,
12092: include/pa_stylesheet_manager.h, include/pa_table.h,
12093: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
12094: include/pa_xml_exception.h, lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
12095: lib/sdbm/apr_file_io.C, lib/sdbm/apr_strings.C, main/compile.C,
12096: main/compile_tools.C, main/compile_tools.h, main/execute.C,
12097: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
12098: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
12099: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
12100: main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
12101: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
12102: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
12103: main/pa_uue.C, main/pa_xml_exception.C, main/untaint.C,
12104: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
12105: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
12106: targets/isapi/parser3isapi.C, types/pa_junction.h,
12107: types/pa_method.h, types/pa_value.C, types/pa_value.h,
12108: types/pa_vbool.h, types/pa_vclass.C, types/pa_vclass.h,
12109: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
12110: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
12111: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
12112: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
12113: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
12114: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
12115: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
12116: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
12117: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
12118: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
12119: types/pa_vresponse.h, types/pa_vstateless_class.C,
12120: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
12121: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
12122: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
12123: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
12124: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
12125: types/pa_wcontext.h, types/pa_wwrapper.h: static const char *
12126: const IDENT
12127:
12128: * src/: include/pa_array.h, include/pa_pool.h,
12129: include/pa_request.h, include/pa_string.h, include/pa_table.h,
12130: main/compile_tools.h, main/pa_common.C, types/pa_vhash.h,
12131: types/pa_wcontext.h: more warnings --
12132:
12133: * src/: classes/classes.vcproj, classes/date.C, classes/double.C,
12134: classes/file.C, classes/hash.C, classes/hashfile.C,
12135: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
12136: classes/memory.C, classes/op.C, classes/string.C,
12137: classes/table.C, classes/xdoc.C, classes/xnode.C,
12138: include/pa_config_includes.h, include/pa_operation.h,
12139: include/pa_sql_connection.h, include/pa_table.h,
12140: include/pa_types.h, lib/ltdl/config_fixed.h,
12141: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/maketables.c,
12142: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
12143: lib/sdbm/apr_file_io.C, main/compile.tab.C, main/execute.C,
12144: main/main.vcproj, main/pa_cache_managers.C, main/pa_charset.C,
12145: main/pa_common.C, main/pa_dir.C, main/pa_exec.C,
12146: main/pa_globals.C, main/pa_os.C, main/pa_request.C,
12147: main/pa_string.C, main/pa_table.C, targets/cgi/parser3.vcproj,
12148: targets/isapi/parser3isapi.vcproj, types/pa_value.h,
12149: types/pa_vconsole.h, types/pa_vdate.h, types/pa_vfile.h,
12150: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vimage.h,
12151: types/pa_vmail.C, types/pa_vobject.C,
12152: types/pa_vstateless_class.h, types/pa_vtable.C,
12153: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
12154: types/pa_vxnode.h, types/types.vcproj: turned on warnings level4
12155: on all projects (except libltdl=off & libsdbm=level3) found
12156: several unitialized vars
12157:
12158: 2003-11-19 paf
12159:
12160: * src/classes/op.C: more ansi C++ comp
12161:
12162: * operators.txt, src/classes/op.C, src/include/pa_request.h,
12163: src/main/pa_request.C: ^cache[...]{body}{catch block with
12164: $exception.handled[cache] meaning "get expired cache, if any.
12165: else error"}
12166:
12167: * src/: classes/op.C, include/pa_os.h, include/pa_request.h,
12168: main/pa_common.C: cache: ^cache[] fallback todo: kinda ^try:
12169: ^cache[...]{body}{catch code with $exception.cache field}
12170:
12171: 2003-11-12 paf
12172:
12173: * src/classes/xnode.C: replaceChild: 2nd param now named oldChild
12174: [copy/paste bug]
12175:
12176: 2003-11-11 paf
12177:
12178: * src/types/: pa_value.h, pa_vfile.h: more C++ compatible [HP C++
12179: failed]
12180:
12181: * bin/auto.p.dist.in: colno
12182:
12183: 2003-11-10 paf
12184:
12185: * src/types/pa_vconsole.h: flush
12186:
12187: * operators.txt, src/main/pa_request.C, src/types/Makefile.am,
12188: src/types/types.vcproj, src/types/pa_vconsole.h: $console:line
12189: read/write [for nntp]
12190:
12191: * operators.txt: mysql: transaction support: ?autocommit=0
12192:
12193: * operators.txt: comment: updated
12194:
12195: * src/types/: pa_vhashfile.C, pa_vhashfile.h: add: hashfile old
12196: serialize version and exipire now removes entries
12197:
12198: * operators.txt: ^hashfile.delete[] removes files altogether [and
12199: dir, if could]
12200:
12201: * src/: classes/hashfile.C, include/pa_common.h, main/pa_common.C,
12202: types/pa_vhashfile.C, types/pa_vhashfile.h: ^hashfile.delete[]
12203: removes files altogether [and dir, if could]
12204:
12205: * src/lib/sdbm/sdbm.c: bugfix: sdbm: .h said it's OK to remove
12206: nonexistent pair. .c coded that that was error. fixed
12207:
12208: * src/types/pa_vhashfile.C: sdbm: exception type change to
12209: file.access [regretfull can't split it to different exceptions
12210: without modifying sdbm source wich would prefer not to]
12211:
12212: 2003-11-07 paf
12213:
12214: * src/: classes/date.C, classes/file.C, classes/hash.C,
12215: classes/hashfile.C, classes/image.C, classes/table.C,
12216: classes/xdoc.C, include/Makefile.am, include/pa_array.h,
12217: include/pa_pool.h, include/pa_request.h, main/Makefile.am,
12218: main/execute.C, main/main.vcproj, main/pa_pool.C,
12219: main/pa_request.C, targets/cgi/parser3.C, types/pa_vclass.C,
12220: types/pa_vclass.h, types/pa_vhashfile.h, types/pa_vobject.h,
12221: types/pa_vstateless_class.h: resurrected: pool idea. now only for
12222: destructing objects at request processing end
12223:
12224: 2003-11-06 paf
12225:
12226: * src/: classes/Makefile.am, types/Makefile.am: .am sdbm INCLUDES
12227: updates
12228:
12229: * parser3.sln, src/targets/cgi/Makefile.am: .vcproj & .am updated
12230: to include sdbm
12231:
1.116 moko 12232: * src/include/: pa_config_includes.h, pa_version.h: our
12233: replacements of max& co only for cpp
1.95 moko 12234:
12235: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C: move to
12236: upper dir, .am updated
12237:
12238: * tests/todo.txt: hashfile: done
12239:
12240: * operators.txt, src/types/pa_vhashfile.C: hashfile: clear &
12241: expiration [time in value. todo: move time to key]
12242:
12243: * src/types/pa_vhashfile.C: hashfile: foreach body can bodify $self
12244:
12245: * src/types/pa_vhashfile.C: hashfile: clear now works [were trying
12246: to do that in foreach, no errors, but surely wrong]
12247:
12248: * operators.txt, src/types/pa_vhashfile.C,
12249: src/types/pa_vhashfile.h: hashfile: clear and proper locking
12250:
12251: * operators.txt, src/classes/hash.C, src/classes/hashfile.C,
12252: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h: hashfile:
12253: foreach
12254:
12255: * src/classes/hashfile.C, src/types/pa_vhashfile.C,
12256: src/types/pa_vhashfile.h, operators.txt: hashfile: hash
12257:
12258: * operators.txt, src/classes/hashfile.C, src/types/pa_vhashfile.C,
12259: src/types/pa_vhashfile.h, tests/todo.txt: hashfile: delete
12260:
12261: * src/: include/pa_memory.h, targets/cgi/parser3.C,
12262: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
12263: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile implemented
12264: get/put [raw]
12265:
12266: * src/: classes/op.C, main/pa_os.C: just linked
12267:
12268: * src/: classes/xdoc.C, classes/xnode.C, types/pa_vxnode.h:
12269: XmlException changes
12270:
12271: * src/: include/pa_charset.h, include/pa_globals.h,
12272: include/pa_stylesheet_connection.h, main/pa_exception.C:
12273: XmlException changes
12274:
12275: * src/lib/sdbm/: sdbm.c, sdbm.vcproj: just compiled
12276:
12277: * src/: include/pa_common.h, include/pa_exception.h,
12278: main/main.vcproj, main/pa_common.C, include/pa_os.h,
12279: include/pa_xml_exception.h, main/pa_os.C, lib/sdbm/sdbm.vcproj,
12280: main/pa_xml_exception.C: locking move to pa_os [along with
12281: pa_sleep] apr-impl locking done
12282:
12283: * configure, configure.in, operators.txt, parser3.sln,
12284: src/classes/classes.vcproj, src/classes/hashfile.C,
12285: src/classes/xdoc.C, src/include/pa_config_fixed.h,
12286: src/include/pa_exception.h, src/include/pa_globals.h,
12287: src/include/pa_memory.h, src/include/pa_version.h,
12288: src/lib/ltdl/libltdl.vcproj, src/lib/ltdl/libltdl.vcproj.vspscc,
12289: src/lib/ltdl/ltdl.vcproj, src/lib/ltdl/ltdl.vcproj.vspscc,
12290: src/main/compile.tab.C, src/main/main.vcproj,
12291: src/main/pa_charset.C, src/targets/cgi/parser3.vcproj,
12292: src/types/Makefile.am, src/types/pa_vhash.C,
12293: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
12294: src/types/pa_vxnode.h, src/types/types.vcproj: hashfile: started
12295: again with sdbm from apache
12296:
12297: 2003-11-05 paf
12298:
12299: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
12300: main/main.vcproj, targets/cgi/parser3.vcproj: not has to be in
12301: \parser3project dir anymore
12302:
12303: * src/main/pa_charset.C: bugfix: had broken binary search [copied
12304: thoughtlessly from xalan]
12305:
12306: * src/lib/sdbm/: Makefile.am, sdbm.c, sdbm_hash.c, sdbm_lock.c,
12307: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h: original
12308: from httpd-2.0.43\srclib\apr-util\dbm\sdbm
12309:
12310: * src/main/helpers/CaseFolding.txt:
12311: http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
12312:
12313: 2003-11-04 paf
12314:
12315: * operators.txt: comment: ^mail:send[$.options[
12316:
12317: * src/classes/table.C: compiled on unix
12318:
1.116 moko 12319: * src/classes/Makefile.am: classes.C to rebuild last
1.95 moko 12320:
12321: * src/classes/mail.C: compiled on unix
12322:
12323: * operators.txt, src/classes/mail.C, src/types/pa_vmail.C,
12324: src/types/pa_vmail.h: !^mail:send[
12325: $.options[unix: string to append to sendmail command
12326: line]
12327:
12328: * operators.txt, src/classes/table.C, src/main/pa_string.C,
12329: tests/todo.txt: ^table.save[... $.separator[^#09]
12330: $.encloser["] <nothing> by default
12331:
12332: * operators.txt, src/classes/table.C, tests/todo.txt: ^table::load
12333: !$.separator[^#09] !$.encloser["] <nothing> by
12334: default
12335:
12336: 2003-11-03 paf
12337:
12338: * operators.txt, src/classes/table.C, src/main/pa_common.C:
12339: ^table::load[; options: !$.column-separator[^#09]
12340: !$.column-encloser["]
12341:
12342: * operators.txt, src/include/pa_config_fixed.h,
12343: src/types/pa_vrequest.C: $request:document-root
12344:
12345: * src/targets/cgi/parser3.C: beauty: SIGUSRX removed qs= printing
12346: [already included into uri=xxx]
12347:
12348: * operators.txt, src/classes/image.C, tests/todo.txt:
12349: ^image.gif[filename] for $response:download
12350:
12351: * src/classes/date.C: minor precaution
12352:
12353: * operators.txt, src/classes/date.C: !^date::unix-timestamp()
12354: !^date.unix-timestamp[]
12355:
12356: 2003-10-30 paf
12357:
12358: * operators.txt, src/classes/date.C, src/types/pa_vdate.h: merged
12359: from 3.0.8: ^date.roll[TZ;GMT] $date.hour
12360:
12361: * src/classes/: date.C, image.C: improvement diagnostics:
12362: $now[^date::create[$undefined]] now is error
12363:
12364: * src/main/pa_common.C: read errors would now be reported 'actually
12365: read -1 bytes'
12366:
12367: 2003-10-24 paf
12368:
12369: * Makefile.am, src/classes/Makefile.am, src/lib/cord/Makefile.am,
12370: src/lib/md5/Makefile.am, src/lib/pcre/Makefile.am,
12371: src/main/Makefile.am, src/targets/cgi/Makefile.am,
12372: src/targets/isapi/Makefile.am: .dsp/w -> .vcproj/sln
12373:
12374: 2003-10-22 paf
12375:
12376: * src/include/pa_request.h: fixed: $h[^hash::create[]] $$h[1]
12377:
12378: 2003-10-21 paf
12379:
12380: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
12381: fixed: string.match[g] without <'> option produced columns with
12382: NULL's, which gpf'ed at table.save time
12383:
12384: * src/: classes/op.C, include/pa_request.h: fixed: false 'endless
12385: recoursion' message with intensive throw-catches fixed: incorrect
12386: name and line (one name upper then needed) in error message about
12387: problems inside try block
12388:
12389: 2003-10-10 paf
12390:
12391: * src/: include/pa_string.h, main/compile.tab.C: CORD_chr does not
12392: check offset argument for validity did that in String::Body::pos
12393: myself http://i2/tasks/edit/?id=4577425257580789777
12394:
12395: 2003-10-07 paf
12396:
12397: * src/main/: compile.tab.C, compile.y: ^if ( better error:
12398: .html(1:4): parse error, expecting `'['' or `'{'' or `'('' now
12399:
12400: 2003-10-03 paf
12401:
12402: * parser3.sln, src/include/pa_dictionary.h,
12403: src/main/pa_dictionary.C, src/main/pa_string.C,
12404: src/targets/cgi/parser3.vcproj: dictionary optimized by
12405: precalculating cstr&length
12406:
12407: 2003-10-02 paf
12408:
12409: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
12410: main/execute.C, main/pa_request.C, main/pa_sql_driver_manager.C,
12411: main/pa_stylesheet_manager.C: bugfix: ^throw context were
12412: saved/restored incompletely http://www.parser.ru/forum/?id=21484
12413:
12414: 2003-09-30 paf
12415:
12416: * src/main/pa_string.C: string::replace bug fix [were ignoring
12417: occurrances after lang-mismatched
12418:
12419: 2003-09-29 paf
12420:
12421: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: generated by
12422: helper
12423:
12424: * src/main/pa_string.C: string::serialize bug fix with
12425: zero-terminator
12426:
12427: * src/classes/table.C: ^nameless_table.save column row now has no
12428: \t at the end
12429:
12430: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
12431: @postprocess now takes $response:body/download
12432:
12433: * src/classes/form.C: better error message: MAX_POST_SIZE_NAME to
12434: error message
12435:
12436: * src/classes/string.C: bugfix: s.right(>s.length) returned nothing
12437:
12438: * src/classes/table.C: bugfix: flip: must produce nameless
12439: http://i2/tasks/edit/?id=4573405524674081244
12440:
12441: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_string.C,
12442: main/helpers/simple_folding.pl: utf-8 upper/lower
12443:
12444: * src/main/pa_common.C: bugfix: utf signature were not ignored due
12445: to typo error http://i2/tasks/edit/?id=4573354650786434584
12446:
12447: 2003-09-26 paf
12448:
12449: * src/main/untaint.C: removed needless field
12450:
12451: * src/main/untaint.C: removed needless const
12452:
12453: * src/: include/pa_string.h, main/pa_common.C, main/pa_string.C:
12454: String.for_each bug fixed [omited one-char cases]
12455:
12456: * src/include/pa_stack.h: bugfix: before collecting garbage,
12457: runtime-executor stack were cleared... BADLY
12458:
12459: * src/main/pa_string.C: ^stirng.replace code used old
12460: param-convention on langs.append, fixed that search fo the like,
12461: found none
12462:
12463: * src/: classes/op.C, include/pa_string.h, main/pa_string.C:
12464: string::serialize/deserialize implemented Language enum assigned
12465: meaningful letters [more convinient for debugging. read warning
12466: before adding/changing anything]
12467:
12468: 2003-09-25 paf
12469:
12470: * src/: include/pa_string.h, include/pa_version.h,
12471: main/pa_string.C, main/untaint.C: templates and anonymous unions
12472: differences on unix
12473:
12474: * parser3.sln, src/classes/file.C, src/classes/image.C,
12475: src/classes/mail.C, src/classes/op.C, src/classes/table.C,
12476: src/classes/xdoc.C, src/classes/xnode.C,
12477: src/include/pa_cache_managers.h, src/include/pa_charset.h,
12478: src/include/pa_charsets.h, src/include/pa_common.h,
12479: src/include/pa_request.h, src/include/pa_sql_driver_manager.h,
12480: src/include/pa_string.h, src/include/pa_stylesheet_manager.h,
12481: src/include/pa_table.h, src/lib/cord/cordbscs.c,
12482: src/lib/cord/cordprnt.c, src/lib/cord/cordxtra.c,
12483: src/lib/cord/include/cord.h, src/main/compile.tab.C,
12484: src/main/compile_tools.h, src/main/pa_charset.C,
12485: src/main/pa_charsets.C, src/main/pa_common.C, src/main/pa_exec.C,
12486: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
12487: src/main/pa_string.C, src/main/pa_stylesheet_manager.C,
12488: src/main/untaint.C, src/types/pa_value.h, src/types/pa_vimage.C,
12489: src/types/pa_vmail.C, src/types/pa_vmath.C,
12490: src/types/pa_vstateless_class.h, src/types/pa_vstatus.C,
12491: src/types/pa_vxnode.C: string_fragments_to_cord merged to HEAD
12492:
12493: * src/main/: compile.tab.C, pa_string.C: string: debug: .v()
12494: functions aligned to that of eeparser3 look
12495:
12496: * src/lib/cord/cordprnt.c: removed warnings
12497:
12498: 2003-09-24 paf
12499:
12500: * src/: classes/file.C, classes/image.C, classes/mail.C,
12501: classes/op.C, classes/xdoc.C, classes/xnode.C,
12502: include/pa_cache_managers.h, include/pa_charset.h,
12503: include/pa_charsets.h, include/pa_common.h, include/pa_request.h,
12504: include/pa_sql_driver_manager.h, include/pa_string.h,
12505: include/pa_stylesheet_manager.h, include/pa_table.h,
12506: main/compile_tools.h, main/pa_charset.C, main/pa_charsets.C,
12507: main/pa_common.C, main/pa_exec.C, main/pa_request.C,
12508: main/pa_sql_driver_manager.C, main/pa_string.C,
12509: main/pa_stylesheet_manager.C, main/untaint.C, types/pa_value.h,
12510: types/pa_vimage.C, types/pa_vmail.C, types/pa_vmath.C,
12511: types/pa_vstateless_class.h, types/pa_vstatus.C,
12512: types/pa_vxnode.C: v() functions of String::Body,
12513: String::Languages and String itself StringBody->String::Body
12514:
12515: * src/: include/pa_string.h, lib/cord/cordbscs.c,
12516: lib/cord/include/cord.h: CORD_append_block showed no efficiency =
12517: never optimized anything. todo: somehow speed up harder cases:
12518: concatenationA+concatenationB when last block of A and first of B
12519: contain same letters
12520:
12521: * src/: include/pa_string.h, lib/cord/cordbscs.c,
12522: lib/cord/include/cord.h: langs: speed up by joining adjucent
12523: blocks of same char [CORD_append_block]
12524:
12525: * src/: include/pa_string.h, lib/cord/cordbscs.c,
12526: lib/cord/include/cord.h, main/pa_string.C: aval/ works! todo:
12527: save space by extending blocks when appending block with c ==
12528: lastblock.c
12529:
12530: * src/: include/pa_string.h, main/pa_string.C: aval is not actually
12531: working yet :( but more working &understood :)
12532:
12533: * src/: classes/table.C, include/pa_string.h,
12534: lib/cord/include/cord.h, main/pa_string.C: aval/ works!
12535:
12536: 2003-09-23 paf
12537:
12538: * src/main/untaint.C: $a[ok!] $a works!
12539:
12540: * src/main/untaint.C: something even more works :)
12541:
12542: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
12543: something more works :)
12544:
12545: * src/: include/pa_string.h, lib/cord/cordbscs.c,
12546: lib/cord/cordxtra.c: something already works :)
12547:
12548: * src/: include/pa_string.h, main/untaint.C: just compiled todo:
12549: serialize&deserialize
12550:
12551: * src/: classes/table.C, include/pa_string.h, lib/cord/cordbscs.c,
12552: lib/cord/cordxtra.c, lib/cord/include/cord.h, main/pa_string.C,
12553: main/untaint.C: main idea implemented, details left
12554:
12555: 2003-09-22 paf
12556:
12557: * src/: classes/memory.C, include/pa_memory.h: #ifdef GC_DEBUG
12558:
12559: * src/classes/xnode.C: copy/paste comment bugfix
12560:
12561: * src/: include/pa_memory.h, main/pa_globals.C: when xml memory
12562: allocator returns 0, just die.
12563: http://i2/tasks/edit/?id=4570798492410259445
12564:
12565: * src/classes/xdoc.C: copy/paste comment bugfix
12566:
12567: * src/classes/: xdoc.C, xnode.C: new DOM2 methods from Alexandr
12568: Egorov <egr> (all?) xdoc: createAttributeNS createElementNS
12569: xnode: getAttributeNS setAttributeNS removeAttributeNS
12570: getAttributeNodeNS setAttributeNodeNS hasAttribute hasAttributeNS
12571:
12572: * src/lib/cord/cordxtra.c: CORD_pos bugfix [failed to find 8bit
12573: chars due to bitwise operation signed-char error]
12574:
12575: 2003-09-19 paf
12576:
12577: * src/types/pa_wcontext.C: output message: more practical
12578: suggestion
12579:
12580: * src/main/pa_common.C, operators.txt: merged
12581: $f[^file::load[binary;http://...]] $f.tables
12582:
12583: 2003-09-02 paf
12584:
12585: * src/main/pa_common.C: printf is buffered, write(1 is not. can't
12586: flush stdout without referencing 'stdout' symbol. to hell with
12587: non-ansi libraries without 'stdout' symbol
12588:
12589: * src/main/pa_common.C: got rid of 'stdout' symbol reference on
12590: unix (users reported problems with some old libc)
12591:
12592: * src/types/pa_vdate.h: forgot initializer
12593:
12594: 2003-09-01 paf
12595:
12596: * src/: classes/date.C, include/pa_common.h, main/compile.tab.C,
12597: main/pa_common.C, types/pa_vdate.h: $date.TZ ^date.roll[TZ;new
12598: zone]
12599:
12600: * src/classes/image.C: memory handling bugs [unpatched 'new' calls]
12601:
12602: 2003-08-19 paf
12603:
12604: * src/types/: pa_value.C, pa_value.h, pa_vdate.h, pa_vrequest.C,
12605: pa_vstring.h, pa_vxdoc.C, pa_vxnode.C: bark intefrace obsoleted,
12606: simplified a little
12607:
12608: * src/types/: pa_vhash.C, pa_vhash.h: _default+foreach bug refix
12609: [lost fix from 3.0.8]
12610:
12611: * src/types/pa_vcookie.C: in VC7 if(type var=xxx){ }else{ now
12612: visible here }
12613:
12614: bug fix
12615:
12616: * src/: include/pa_memory.h, types/pa_value.h: -= few warnings
12617:
12618: * src/main/compile.tab.C: initialized couple of variables about
12619: which user reported runtime problems when parser were compiled
12620: with VC7, warning level4. study shows that later in bison
12621: they've fixed that. would migrate to latest bison someday
12622:
12623: * src/types/pa_vmail.C: turned off recoding in gmime (were still
12624: recoding headers)
12625:
12626: * src/types/pa_vmail.C: works as before, same charset problems:
12627: gmime recodes to UTF-8 only headers, not body. so not recoding
12628: anything for now
12629:
12630: * src/types/: pa_vmail.C, pa_vmail.h: parses headers, still
12631: problems with body
12632:
12633: * src/types/pa_vmail.C: mail_receive just compiled
12634:
12635: 2003-08-18 paf
12636:
12637: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
12638: main/main.vcproj, types/types.vcproj: win32: continued process
12639: detaching from \parser3project directory
12640:
12641: * gnu.dsp, parser3.dsw, src/classes/classes.dsp,
12642: src/lib/cord/cord.dsp, src/lib/ltdl/libltdl.dsp,
12643: src/lib/md5/md5.dsp, src/lib/pcre/pcre.dsp,
12644: src/lib/pcre/pcre_dftables.dsp,
12645: src/lib/pcre/pcre_parser_ctype.dsp, src/main/main.dsp,
12646: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
12647: src/types/types.dsp: moved to MSVC 7
12648:
12649: * gnu.vcproj.vspscc, parser3.vssscc,
12650: src/classes/classes.vcproj.vspscc,
12651: src/lib/cord/cord.vcproj.vspscc,
12652: src/lib/ltdl/libltdl.vcproj.vspscc,
12653: src/lib/md5/md5.vcproj.vspscc,
12654: src/lib/pcre/pcre_dftables.vcproj.vspscc,
12655: src/lib/pcre/pcre_parser_ctype.vcproj.vspscc,
12656: src/lib/pcre/pcre.vcproj.vspscc, src/main/main.vcproj.vspscc,
12657: src/targets/isapi/parser3isapi.vcproj.vspscc,
12658: src/types/types.vcproj.vspscc, src/targets/cgi/parser3.vcproj:
12659: moved to MSVC 7
12660:
12661: * parser3.sln, gnu.vcproj, src/classes/classes.vcproj,
12662: src/lib/cord/cord.vcproj, src/lib/ltdl/libltdl.vcproj,
12663: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
12664: src/lib/pcre/pcre_dftables.vcproj,
12665: src/lib/pcre/pcre_parser_ctype.vcproj, src/main/main.vcproj,
12666: src/targets/cgi/parser3.vcproj,
12667: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
12668: new VS project files
12669:
12670: * ~sak5c961f3101c36563.tmp: Temporary file created by Visual Studio
12671: .NET to detect Jalindi Igloo capabilities.
12672:
12673: * ChangeLog, configure, configure.in, src/classes/Makefile.am,
1.116 moko 12674: src/classes/classes.awk, src/doc/footer.htm,
12675: src/include/pa_config_fixed.h, src/include/pa_version.h,
12676: src/lib/Makefile.am, src/main/compile.tab.C,
1.95 moko 12677: src/main/pa_charset.C, src/main/pa_string.C, src/main/untaint.C,
12678: src/types/pa_vmail.C: merged 3.1.0 latest changes
12679:
12680: 2003-08-15 paf
12681:
12682: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
12683: non-ascii <yyy> now encoded correctly [kinda merge from 3.0.8]
12684:
12685: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
12686: non-ascii <yyy> now encoded correctly
12687:
12688: 2003-07-29 paf
12689:
1.116 moko 12690: * src/classes/: Makefile.am, classes.awk: classes.awk added to make
12691: dist
1.95 moko 12692:
12693: * src/types/pa_vmail.C: just started --with-mail-receive
12694:
12695: 2003-07-28 paf
12696:
1.116 moko 12697: * src/: classes/Makefile.am, lib/Makefile.am: removed circular
12698: dependence in src/classes, src/lib/gc now in dist
1.95 moko 12699:
12700: * src/main/pa_string.C: ^cache bug fix [were not working at all]
12701:
12702: 2003-07-25 paf
12703:
12704: * src/doc/footer.htm: year
12705:
12706: 2003-07-24 paf
12707:
12708: * src/: include/pa_config_fixed.h, main/pa_charset.C: bad #endif
12709: fix
12710:
12711: * src/include/pa_version.h: release
12712:
1.116 moko 12713: * src/lib/gc/include/: Makefile.am, gc.h: moved tempate_gc to HEAD
1.95 moko 12714:
12715: * ChangeLog, src/classes/classes.dsp, src/main/main.dsp,
12716: src/main/pa_globals.C, src/targets/cgi/parser3.dsp,
12717: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: cvs:
12718: getting rid of win32xml pseudo project
12719:
12720: * src/main/: compile.tab.C, pa_memory.C: moved tempate_gc to HEAD
12721:
1.116 moko 12722: * ChangeLog, INSTALL, Makefile.am, acsite.m4, configure,
12723: configure.in, operators.txt, parser3.dsw,
1.95 moko 12724: etc/parser3.charsets/koi8-r.cfg,
1.116 moko 12725: etc/parser3.charsets/windows-1251.cfg, src/classes/Makefile.am,
1.95 moko 12726: src/classes/classes.C, src/classes/classes.awk,
12727: src/classes/classes.dsp, src/classes/classes.h,
12728: src/classes/date.C, src/classes/double.C, src/classes/file.C,
12729: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
12730: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
12731: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
12732: src/classes/string.C, src/classes/table.C, src/classes/void.C,
12733: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
12734: src/doc/exception.dox, src/doc/index.dox, src/doc/memory.dox,
12735: src/doc/string.dox, src/include/Makefile.am,
1.116 moko 12736: src/include/pa_array.h, src/include/pa_cache_managers.h,
12737: src/include/pa_charset.h, src/include/pa_charsets.h,
12738: src/include/pa_common.h, src/include/pa_config_auto.h.in,
12739: src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
12740: src/include/pa_dictionary.h, src/include/pa_dir.h,
12741: src/include/pa_exception.h, src/include/pa_exec.h,
12742: src/include/pa_globals.h, src/include/pa_hash.h,
12743: src/include/pa_memory.h, src/include/pa_opcode.h,
12744: src/include/pa_operation.h, src/include/pa_pool.h,
12745: src/include/pa_pragma_pack_begin.h,
1.95 moko 12746: src/include/pa_pragma_pack_end.h, src/include/pa_request.h,
12747: src/include/pa_request_charsets.h, src/include/pa_request_info.h,
12748: src/include/pa_sapi.h, src/include/pa_socks.h,
12749: src/include/pa_sql_connection.h,
12750: src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
12751: src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
12752: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
12753: src/include/pa_threads.h, src/include/pa_types.h,
1.116 moko 12754: src/include/pa_uue.h, src/lib/Makefile.am,
12755: src/lib/cord/Makefile.am, src/lib/cord/cord.dsp,
12756: src/lib/cord/cordbscs.c, src/lib/cord/cordprnt.c,
12757: src/lib/cord/cordxtra.c, src/lib/cord/source.url,
12758: src/lib/cord/include/Makefile.am, src/lib/cord/include/cord.h,
1.95 moko 12759: src/lib/cord/include/ec.h,
12760: src/lib/cord/include/private/Makefile.am,
12761: src/lib/cord/include/private/cord_pos.h, src/lib/gc/Makefile.am,
1.116 moko 12762: src/lib/ltdl/libltdl.dsp, src/lib/md5/pa_md5.h,
12763: src/lib/md5/pa_md5c.c, src/lib/pcre/pcre.h,
1.95 moko 12764: src/lib/pcre/pcre_parser_ctype.c, src/main/Makefile.am,
1.116 moko 12765: src/main/compile.C, src/main/compile.tab.C, src/main/compile.y,
12766: src/main/compile_tools.C, src/main/compile_tools.h,
12767: src/main/execute.C, src/main/main.dsp, src/main/pa_array.C,
12768: src/main/pa_cache_managers.C, src/main/pa_charset.C,
12769: src/main/pa_charsets.C, src/main/pa_common.C,
12770: src/main/pa_dictionary.C, src/main/pa_dir.C,
12771: src/main/pa_exception.C, src/main/pa_exec.C,
1.95 moko 12772: src/main/pa_globals.C, src/main/pa_hash.C, src/main/pa_pool.C,
12773: src/main/pa_request.C, src/main/pa_socks.C,
12774: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
12775: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
1.116 moko 12776: src/main/pa_uue.C, src/main/untaint.C, src/sql/pa_sql_driver.h,
12777: src/targets/Makefile.am, src/targets/cgi/Makefile.am,
12778: src/targets/cgi/getopt.c, src/targets/cgi/getopt.h,
12779: src/targets/cgi/pa_pool.C, src/targets/cgi/pa_threads.C,
12780: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
12781: src/targets/cgi/pool_storage.h, src/targets/cgi/pp3.cmd,
12782: src/targets/isapi/Makefile.am, src/targets/isapi/pa_pool.C,
1.95 moko 12783: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
12784: src/targets/isapi/parser3isapi.dsp,
12785: src/targets/isapi/pool_storage.h, src/types/Makefile.am,
1.116 moko 12786: src/types/pa_junction.h, src/types/pa_method.h,
12787: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
1.95 moko 12788: src/types/pa_vclass.C, src/types/pa_vclass.h,
12789: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
12790: src/types/pa_vcookie.h, src/types/pa_vdate.h,
12791: src/types/pa_vdouble.h, src/types/pa_venv.h,
12792: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
12793: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
12794: src/types/pa_vimage.C, src/types/pa_vimage.h,
12795: src/types/pa_vint.h, src/types/pa_vjunction.h,
12796: src/types/pa_vmail.C, src/types/pa_vmail.h, src/types/pa_vmath.C,
12797: src/types/pa_vmath.h, src/types/pa_vmemory.h,
12798: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
12799: src/types/pa_vobject.C, src/types/pa_vobject.h,
12800: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
12801: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
12802: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
12803: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
12804: src/types/pa_vstatus.h, src/types/pa_vstring.C,
12805: src/types/pa_vstring.h, src/types/pa_vtable.C,
12806: src/types/pa_vtable.h, src/types/pa_vvoid.h,
12807: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
12808: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
12809: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
12810: src/types/pa_wwrapper.h, src/types/types.dsp: moved tempate_gc to
12811: HEAD
12812:
12813: * tests/: 001.html, 002.html, 003.html, 004.html, 005.html,
12814: 006.html, 007.html, 008.html, 009.html, 010.html, 011.html,
12815: 012.html, 013.html, 014.html, 015.html, 016.html, 017.html,
12816: 018.html, 019.html, 019paf2001.gif, 020.html, 021.html, 022.html,
12817: 023.html, 024.html, 025.html, 026.html, 027.html, 028.html,
12818: 029.html, 030.html, 031.html, 032.html, 033.html, 034.html,
12819: 035.html, 036.html, 037.html, 038.html, 039.html, 040.html,
12820: 041.html, 042.html, 043.html, 044.html, 045.html, 046.html,
12821: 047.html, 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p,
12822: 052.html, 053.html, 054.html, 055.html, 056.html, 057.html,
12823: 058.html, 058_paf2000.png, 059.html, 060.html, 061.dat, 061.html,
12824: 062.html, 063.html, 064.html, 065.html, 066.html, 067.html,
12825: 068.html, 069.html, 070.html, 071.html, 072.html, 073.html,
12826: 074.html, 075.html, 076.html, 077.html, 078.html, 079.html,
12827: 080.html, 081.html, 082.html, 083.html, 084.html, 085.html,
12828: 086.html, 087.html, 088.html, 089.html, 090.html, 091.html,
12829: 092.html, 093.html, 094.html, 095.html, 096.html, 097.html,
12830: 098.html, 098font.gif, 099.html, 100.html, 101.html, 102.html,
12831: 103.html, 103mark.gif, 103paf2001.gif, 104.html, 105.html,
12832: 106.html, 107.html, 108.html, 108.xsl, 109.html, 110.html,
12833: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
12834: 117.html, 118.html, 119.html, 120.html, 121.html, 122.html,
12835: 123.html, 124.html, 125.html, 126.html, 127.html, 128.html,
12836: 129.html, 130.html, 131.html, 132.html, 133.html, 134.html,
12837: 135.html, 136.html, 137.html, 138.html, 139.html, 140.html,
12838: 141.html, Makefile, descript.ion, run_parser.sh, 022_dir/a.html,
12839: 022_dir/b.txt, 022_dir/c.htm, 096_dir/163.jpg, 096_dir/188.jpg,
12840: outputs/create-dir, results/001.processed, results/002.processed,
12841: results/003.processed, results/004.processed,
12842: results/005.processed, results/006.processed,
12843: results/007.processed, results/008.processed,
12844: results/009.processed, results/010.processed,
12845: results/011.processed, results/012.processed,
12846: results/013.processed, results/014.processed,
12847: results/015.processed, results/016.processed,
12848: results/017.processed, results/018.processed,
12849: results/019.processed, results/020.processed,
12850: results/021.processed, results/022.processed,
12851: results/023.processed, results/024.processed,
12852: results/025.processed, results/026.processed,
12853: results/027.processed, results/028.processed,
12854: results/029.processed, results/030.processed,
12855: results/031.processed, results/032.processed,
12856: results/033.processed, results/034.processed,
12857: results/035.processed, results/036.processed,
12858: results/037.processed, results/038.processed,
12859: results/039.processed, results/040.processed,
12860: results/041.processed, results/042.processed,
12861: results/043.processed, results/044.processed,
12862: results/045.processed, results/046.processed,
12863: results/047.processed, results/048.processed,
12864: results/049.processed, results/050.processed,
12865: results/051.processed, results/052.processed,
12866: results/053.processed, results/054.processed,
12867: results/055.processed, results/056.processed,
12868: results/057.processed, results/058.processed,
12869: results/059.processed, results/060.processed,
12870: results/061.processed, results/062.processed,
12871: results/063.processed, results/064.processed,
12872: results/065.processed, results/066.processed,
12873: results/067.processed, results/068.processed,
12874: results/069.processed, results/070.processed,
12875: results/071.processed, results/072.processed,
12876: results/073.processed, results/074.processed,
12877: results/075.processed, results/076.processed,
12878: results/077.processed, results/078.processed,
12879: results/079.processed, results/080.processed,
12880: results/081.processed, results/082.processed,
12881: results/083.processed, results/084.processed,
12882: results/085.processed, results/086.processed,
12883: results/087.processed, results/088.processed,
12884: results/089.processed, results/090.processed,
12885: results/091.processed, results/092.processed,
12886: results/093.processed, results/094.processed,
12887: results/095.processed, results/096.processed,
12888: results/097.processed, results/098.processed,
12889: results/099.processed, results/100.processed,
12890: results/101.processed, results/102.processed,
12891: results/103.processed, results/104.processed,
12892: results/105.processed, results/106.processed,
12893: results/107.processed, results/108.processed,
12894: results/109.processed, results/110.processed,
12895: results/111.processed, results/112.processed,
12896: results/113.processed, results/114.processed,
12897: results/115.processed, results/116.processed,
12898: results/117.processed, results/118.processed,
12899: results/119.processed, results/120.processed,
12900: results/121.processed, results/122.processed,
12901: results/123.processed, results/124.processed,
12902: results/125.processed, results/126.processed,
12903: results/127.processed, results/128.processed,
12904: results/129.processed, results/130.processed,
12905: results/131.processed, results/132.processed,
12906: results/133.processed, results/134.processed,
12907: results/135.processed, results/136.processed,
12908: results/137.processed, results/138.processed,
12909: results/139.processed, results/140.processed,
12910: results/141.processed: merged(copied) to HEAD from template_gc
12911:
12912: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: more step
12913: towards \parser3project not having to be in root
12914:
12915: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c: apache
12916: module compiled [were minor unnecessary changes in lib/md5
12917: interface]
12918:
12919: * src/include/pa_version.h: release
12920:
12921: * parser3.dsw, src/main/pa_globals.C: relative paths to xml&gc libs
12922:
12923: * src/classes/math.C: merged uuid bugfix
12924:
12925: * tests/: 141.html, results/141.processed: fixed bug with
12926: too-small-a-buffer
12927:
12928: * src/classes/math.C: uuid bugfix
12929:
12930: * tests/: 141.html, Makefile, results/005.processed,
12931: results/030.processed, results/075.processed,
12932: results/078.processed: to reflect date format change (were -
12933: become ' ')
12934:
12935: * src/classes/math.C: uuid bugfix
12936:
12937: * parser3.dsw, src/main/pa_globals.C: few paths for libxml
12938: debug/release changes
12939:
12940: * src/lib/md5/pa_md5c.c: PA_ -> pa_
12941:
12942: 2003-07-23 paf
12943:
12944: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
12945: renamed a little [to move to comman naming conv]
12946:
1.116 moko 12947: * src/targets/Makefile.am: apache13 splitted to simplify apache
12948: build
1.95 moko 12949:
12950: * src/: include/pa_request.h, include/pa_stack.h, main/execute.C,
12951: main/pa_request.C, main/pa_sql_driver_manager.C,
12952: main/pa_stylesheet_manager.C, targets/isapi/parser3isapi.dsp:
12953: stack top_index() fixed
12954:
12955: * src/main/pa_globals.C: minor style changes
12956:
12957: * src/: classes/op.C, include/pa_sql_connection.h: connection
12958: closing/caching fixed [connections were not closed/put to cache]
12959:
12960: 2003-07-22 paf
12961:
12962: * INSTALL: gc part updated stightly
12963:
12964: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: updated to
12965: new sapi interface
12966:
12967: * src/classes/file.C: comment on OS
12968:
12969: * src/main/pa_string.C: removed reduntant invariant check [there is
12970: one deeper in cord lib]
12971:
12972: * src/main/pa_exec.C: on win32 bugfix in handling shbang
12973:
12974: * src/main/pa_memory.C: out of memory is no longer coredump
12975:
12976: * INSTALL: disable-threads adviced
12977:
12978: 2003-07-21 paf
12979:
1.116 moko 12980: * src/classes/Makefile.am: removed circular dependency on classes.C
1.95 moko 12981:
12982: * src/classes/file.C: file::exec/cgi environment variables now must
12983: be UPPERCASE and A-Z 0-9 _-
12984:
12985: * src/classes/file.C: env passing fixed
12986:
12987: * src/main/pa_common.C: http:// CRLF now [merged from HEAD]
12988:
12989: * src/main/pa_common.C: http:// CRLF now
12990:
12991: 2003-07-02 paf
12992:
12993: * operators.txt, src/types/pa_vstatus.C: renamed $memory:status
12994: fields to reflect their real meaning
12995:
12996: 2003-06-27 paf
12997:
12998: * src/: classes/file.C, include/pa_charset.h, include/pa_exec.h,
12999: include/pa_hash.h, main/pa_charset.C: merged from HEAD
13000: file::exec/cgi .charset
13001:
13002: 2003-06-26 paf
13003:
13004: * ChangeLog, src/classes/file.C, src/classes/hash.C,
13005: src/classes/image.C, src/classes/op.C, src/classes/string.C,
13006: src/classes/table.C: fixed several uninitialized local
13007: structures. notably ^hash.foreach now inserts delimiters
13008: properly [were inserting it before first body]
13009:
13010: 2003-06-24 paf
13011:
13012: * src/include/pa_hash.h: simplified HASH_ALLOCATES_COUNT
13013:
13014: 2003-06-20 paf
13015:
13016: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
13017: src/main/pa_globals.C: introducing
13018: $f[^file::load[binary;http://...]] $f.tables
13019:
13020: 2003-06-06 paf
13021:
13022: * src/types/: pa_vhash.h: $hash.field lookup first now: along with
13023: table. [were method lookup: inconsistent]
13024:
13025: 2003-06-02 paf
13026:
13027: * src/include/pa_memory.h: empty string clone fixed to return
13028: writable memory
13029:
13030: * src/main/pa_common.C: fix_line_breaks bug fix [terminating zero
13031: were not appended] which violated string invariant
13032:
13033: 2003-05-30 paf
13034:
13035: * src/types/pa_value.C: date format now Sun, 06 Nov 1994 08:49:37
13036: GMT ; RFC 822, updated by RFC 1123 [as in HEAD]
13037:
13038: * src/main/pa_common.C: date format now Sun, 06 Nov 1994 08:49:37
13039: GMT ; RFC 822, updated by RFC 1123
13040:
13041: * src/: classes/file.C, classes/form.C, targets/cgi/parser3.C,
13042: targets/isapi/parser3isapi.C: initialized request_info properly
13043:
13044: * src/classes/xnode.C: found minor bug, commended for future
13045:
13046: 2003-05-28 paf
13047:
13048: * src/classes/form.C: request_info.content_length can't be <0,
13049: size_t for some time
13050:
13051: 2003-05-26 paf
13052:
13053: * src/: classes/file.C, classes/string.C, main/pa_string.C: few
13054: forgotten <0 changed to !=STRING_NOT_FOUND
13055:
13056: * src/classes/math.C: merged ffffu from HEAD
13057:
13058: 2003-05-11 paf
13059:
13060: * src/main/pa_globals.C: xml memory debugging functions (ifdefed)
13061:
13062: * src/types/: pa_vxdoc.h, pa_vxnode.h: think that found cause of
13063: premature doc free. transformed document had xmlDoc reference
13064: stored to non-gc-memory (libgdome) added holding-reference
13065:
13066: 2003-04-29 paf
13067:
13068: * src/main/pa_globals.C: started digging on double free. on win32
13069: found that that's perfectly normal.
13070:
13071: 2003-04-25 paf
13072:
13073: * src/classes/table.C: table.join bug fix [bad limit check]
13074:
13075: * src/classes/math.C: merged from HEAD: simpiler hash_string
13076:
13077: * src/classes/math.C: snprintf(buf, 3) become (buf,2) and failed to
13078: print anything. changed to quicker and simplier code
13079:
13080: * src/classes/hash.C: allowed ^hash::create[^rem{xxx}] [were to
13081: strict a check]
13082:
13083: * src/: classes/table.C, lib/md5/pa_md5c.c: minor compile errors
13084:
13085: 2003-04-24 paf
13086:
13087: * src/include/pa_table.h: too strict assert loosened
13088:
13089: * src/lib/: md5/pa_md5c.c, pcre/pcre.h: thanks to Ilia Soldis
13090: <soldis@infolio.ru> for reporing this ansi c fiolation syntax
13091: report
13092:
13093: 2003-04-21 paf
13094:
1.116 moko 13095: * src/targets/cgi/Makefile.am: pp3 added to .am
1.95 moko 13096:
13097: * src/main/pa_globals.C: pcre memory management changed to use GC
13098: memory
13099:
13100: * src/main/pa_globals.C: 2.5.6 version of libxml allows to install
13101: xmlMallocAtomic [author agreed to my suggestion], used that
13102:
13103: * src/types/pa_vmail.C: ^mail:send[$.body backward compatibility
13104:
13105: * src/: targets/cgi/parser3.C, types/pa_value.C, types/pa_value.h,
13106: types/pa_vmail.C: attributed_meaning_to_string added
13107: L_UNSPECIFIED piece which was sortof OK, but violated string
13108: invariant [assertion barked on that] changed to L_PASS_APPEND,
13109: made that param obligatory
13110:
13111: * src/main/pa_string.C: String::ArrayFragment::append_positions bug
13112: fixed [assert helped]
13113:
13114: * src/include/pa_string.h: assert added [looking for bug]
13115:
13116: * src/main/pa_request.C: merged from HEAD: "x:..." and "\\..." file
13117: names on Win32 considered disk-global
13118:
13119: * src/main/pa_request.C: "x:..." and "\\..." file names on Win32
13120: considered disk-global
13121:
13122: 2003-04-18 paf
13123:
13124: * src/main/untaint.C: merged from HEAD: enabled '~' letter in
13125: filenames
13126:
13127: * src/main/untaint.C: enabled '~' letter in filenames
13128:
13129: 2003-04-16 paf
13130:
13131: * src/classes/file.C: small bug introduced in autoptr times fixed
13132:
13133: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: merged from
13134: HEAD
13135:
1.116 moko 13136: * src/classes/table.C: fix: gcc reported tiny error
1.95 moko 13137:
13138: 2003-04-15 paf
13139:
13140: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
13141: src/lib/md5/pa_md5c.c, tests/141.html,
13142: tests/results/141.processed: merged from head ^math:uuid[]
13143: ^math:uid64[] ^math:md5[string]
13144:
13145: test added: 141.html
13146:
13147: * operators.txt, src/classes/math.C: ^math:uid64[]
13148:
13149: * src/classes/math.C: ^math:uuid[]
13150:
13151: * operators.txt, src/classes/math.C: ^math:uuid[]
13152:
13153: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
13154: src/lib/md5/pa_md5c.c: ^math:md5[string] 16-byte digest
13155:
13156: * operators.txt, src/classes/file.C, src/include/pa_common.h,
13157: src/include/pa_config_fixed.h, src/main/pa_common.C:
13158: ^file::load[mode;name; $.offset $.limit
13159:
13160: 2003-04-14 paf
13161:
13162: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
13163: started ^math:md5
13164:
13165: * src/classes/table.C, src/include/pa_array.h,
13166: src/include/pa_table.h, src/main/pa_table.C, tests/140.html,
13167: tests/results/140.processed: table $.reverse option works in
13168: create&co table $.distinct[tables] bug fix merged
13169:
13170: * src/: classes/table.C, include/pa_table.h: table
13171: $.distinct[tables] bug fixed
13172:
13173: * src/classes/table.C: more warnings
13174:
13175: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C:
13176: removed checks in table::set_current, moved them back to
13177: table::locate implemented table::create/join ñ $.reverse
13178:
13179: * src/: include/pa_table.h, main/pa_array.C, main/pa_table.C:
13180: removed checks in table::set_current, moved them back to
13181: table::locate
13182:
13183: 2003-04-11 paf
13184:
13185: * operators.txt, src/classes/date.C, src/classes/table.C,
13186: src/include/pa_array.h, src/include/pa_common.h,
13187: src/include/pa_config_includes.h, src/include/pa_string.h,
13188: src/include/pa_table.h, src/main/pa_request.C,
13189: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
13190: src/main/pa_table.C: merged from HEAD from
13191: before_append_array_limit_sense_change to
13192: after_append_array_limit_sense_change
13193:
13194: * src/classes/table.C: typo
13195:
13196: * operators.txt, src/classes/date.C, src/classes/table.C,
13197: src/include/pa_array.h, src/include/pa_common.h,
13198: src/include/pa_config_includes.h, src/include/pa_globals.h,
13199: src/include/pa_table.h, src/main/pa_array.C,
13200: src/main/pa_globals.C, src/main/pa_request.C,
13201: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
13202: src/main/pa_table.C: append_array_limit_sense_change locate
13203: accepts options same as create new option: $.reverse(1) [do not
13204: work in table::create]
13205:
13206: * src/: include/pa_common.h, main/pa_common.C: gcc didn't like
13207: (stat xxx,
13208:
13209: * src/classes/: table.C: typo
13210:
13211: * tests/: 130.html, 131.html, 132.html, 133.html, 134.html,
13212: 135.html, 136.html, 137.html, 138.html, 139.html, descript.ion,
13213: results/130.processed, results/131.processed,
13214: results/132.processed, results/133.processed,
13215: results/134.processed, results/135.processed,
13216: results/136.processed, results/137.processed,
13217: results/138.processed, results/139.processed: added few mustfail
13218: tests 130.html mustfail: empty regexp 131.html mustfail: invalid
13219: date/time 132.html mustfail: access to junction outside of
13220: context 133.html mustfail: access to junction outside of context,
13221: case version 134.html mustfail: hash: adding a key inside of
13222: foreach 135.html mustfail: modifying system class 136.html
13223: mustfail: $.name outside of $hash[here] 137.html mustfail:
13224: appendChild without import 138.html mustfail: invalid encoding
13225: inside of xml 139.html mustfail: bad XPath
13226:
13227: * operators.txt, src/classes/table.C, tests/084.html,
13228: tests/125.html, tests/126.html, tests/127.html, tests/128.html,
13229: tests/129.html, tests/results/125.processed,
13230: tests/results/126.processed, tests/results/127.processed,
13231: tests/results/128.processed, tests/results/129.processed: merged
13232: from HEAD ^table.hash[key][$.distinct[tables]]
13233:
13234: maked appropriate tests [changed one old nonconforming]
13235:
13236: * operators.txt, src/classes/table.C:
13237: ^table.hash[key][$.distinct[tables]]
13238:
13239: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
13240: merged fix for found very old xml (dom) bug: were passing
13241: domString objects and later ERROREOUSLY freed them
13242:
13243: * INSTALL, src/include/pa_charset.h, src/lib/Makefile.am,
13244: src/main/pa_charset.C: re-added libgdome patch. regretfully
13245: libgdome bug can not be worked around
13246:
13247: 2003-04-10 paf
13248:
13249: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
13250: found very old xml (dom) bug: were passing domString objects and
13251: later ERROREOUSLY freed them
13252:
13253: * src/doc/string.dox, src/include/pa_memory.h,
13254: src/include/pa_string.h, src/lib/cord/cordbscs.c,
13255: src/main/pa_string.C, src/types/pa_vform.C, src/types/pa_vform.h,
13256: tests/123.html, tests/124.html, tests/results/001.processed,
13257: tests/results/002.processed, tests/results/003.processed,
13258: tests/results/004.processed, tests/results/005.processed,
13259: tests/results/006.processed, tests/results/008.processed,
13260: tests/results/009.processed, tests/results/010.processed,
13261: tests/results/011.processed, tests/results/012.processed,
13262: tests/results/013.processed, tests/results/014.processed,
13263: tests/results/015.processed, tests/results/016.processed,
13264: tests/results/017.processed, tests/results/018.processed,
13265: tests/results/020.processed, tests/results/021.processed,
13266: tests/results/022.processed, tests/results/023.processed,
13267: tests/results/024.processed, tests/results/025.processed,
13268: tests/results/026.processed, tests/results/027.processed,
13269: tests/results/028.processed, tests/results/029.processed,
13270: tests/results/030.processed, tests/results/031.processed,
13271: tests/results/032.processed, tests/results/033.processed,
13272: tests/results/034.processed, tests/results/035.processed,
13273: tests/results/036.processed, tests/results/037.processed,
13274: tests/results/038.processed, tests/results/039.processed,
13275: tests/results/040.processed, tests/results/041.processed,
13276: tests/results/042.processed, tests/results/043.processed,
13277: tests/results/044.processed, tests/results/045.processed,
13278: tests/results/046.processed, tests/results/047.processed,
13279: tests/results/048.processed, tests/results/049.processed,
13280: tests/results/050.processed, tests/results/051.processed,
13281: tests/results/052.processed, tests/results/053.processed,
13282: tests/results/054.processed, tests/results/055.processed,
13283: tests/results/056.processed, tests/results/057.processed,
13284: tests/results/058.processed, tests/results/059.processed,
13285: tests/results/060.processed, tests/results/061.processed,
13286: tests/results/062.processed, tests/results/063.processed,
13287: tests/results/064.processed, tests/results/065.processed,
13288: tests/results/066.processed, tests/results/067.processed,
13289: tests/results/068.processed, tests/results/069.processed,
13290: tests/results/070.processed, tests/results/071.processed,
13291: tests/results/072.processed, tests/results/073.processed,
13292: tests/results/074.processed, tests/results/075.processed,
13293: tests/results/076.processed, tests/results/077.processed,
13294: tests/results/078.processed, tests/results/079.processed,
13295: tests/results/080.processed, tests/results/081.processed,
13296: tests/results/082.processed, tests/results/083.processed,
13297: tests/results/084.processed, tests/results/085.processed,
13298: tests/results/086.processed, tests/results/087.processed,
13299: tests/results/088.processed, tests/results/089.processed,
13300: tests/results/090.processed, tests/results/091.processed,
13301: tests/results/092.processed, tests/results/093.processed,
13302: tests/results/094.processed, tests/results/095.processed,
13303: tests/results/096.processed, tests/results/097.processed,
13304: tests/results/101.processed, tests/results/102.processed,
13305: tests/results/104.processed, tests/results/105.processed,
13306: tests/results/106.processed, tests/results/107.processed,
13307: tests/results/108.processed, tests/results/109.processed,
13308: tests/results/110.processed, tests/results/111.processed,
13309: tests/results/112.processed, tests/results/113.processed,
13310: tests/results/114.processed, tests/results/115.processed,
13311: tests/results/116.processed, tests/results/117.processed,
13312: tests/results/118.processed, tests/results/119.processed,
13313: tests/results/120.processed, tests/results/121.processed,
13314: tests/results/122.processed, tests/results/123.processed,
13315: tests/results/124.processed: new convention: char* never 0.
13316: assert in cord on that
13317:
13318: * src/main/pa_charset.C: couple more asserts
13319:
13320: * src/: main/pa_charset.C, include/pa_charset.h: little transcodes
13321: speedup
13322:
13323: * src/main/pa_charset.C: couple assertions on fantastic situations
13324: added [may be those is the case now?]
13325:
13326: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
13327: that's memory from gc_malloc, not from g_malloc :(, but would
13328: hope]
13329:
13330: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
13331: that's memory from gc_malloc, not from g_malloc :(, but would
13332: hope]
13333:
13334: * src/main/pa_charset.C: checked custom malloc for returning 0
13335:
13336: 2003-04-09 paf
13337:
13338: * src/classes/date.C: merged ^date.roll changes
13339:
13340: * src/classes/date.C: ^date.roll bug fix
13341:
13342: * src/classes/date.C: ^date.roll now throws less errors: month
13343: shifts handles end of month situation by reducing day number
13344: hour-hole shift reduces hour to recover
13345:
13346: * src/targets/cgi/pp3.cmd: custom profiling script: plist/ST <<
13347: Sort by function time
13348:
13349: * operators.txt, src/main/pa_charset.C, src/main/pa_common.C:
13350: http:// $.charset[] param done
13351:
13352: * tests/: 122.html, results/122.processed: 122 date test <= and ==
13353: added [after volatile fix. passes on win&intel-solaris]
13354:
13355: 2003-04-08 paf
13356:
13357: * src/: classes/file.C, classes/op.C, classes/table.C,
13358: classes/xdoc.C, include/pa_charset.h, include/pa_charsets.h,
13359: include/pa_common.h, include/pa_request_charsets.h,
13360: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
13361: main/pa_exec.C, main/pa_request.C, main/untaint.C,
13362: types/pa_value.h, types/pa_vmail.C, types/pa_vrequest.C,
13363: types/pa_vresponse.C: started http:// $.charset[] param and
13364: http response charset detection just compiled. todo:test
13365:
13366: * src/main/pa_common.C: merged PA_USE_ALARM bugfix from HEAD
13367:
13368: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
13369: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vform.C,
13370: types/pa_vmail.C: changed transcode param converntion along with
13371: string creating convention -- all strings are zero-terminated,
13372: this allowed to fix one remaining String("123", 2) case
13373:
13374: * src/: classes/date.C, classes/file.C, classes/hash.C,
13375: classes/op.C, classes/string.C, classes/table.C,
13376: include/pa_charset.h, include/pa_memory.h, include/pa_string.h,
13377: main/compile.tab.C, main/pa_charset.C, main/pa_exec.C,
13378: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
13379: main/untaint.C, types/pa_vfile.C, types/pa_vfile.h,
13380: types/pa_vform.C, types/pa_vform.h, types/pa_vmail.C: pa_vform
13381: violated String::invariant. started fixing [not compiled now]
13382:
13383: * src/: classes/string.C, include/pa_string.h, lib/cord/cordbscs.c,
13384: main/compile.tab.C, main/compile.y, main/pa_string.C,
13385: main/untaint.C, targets/cgi/parser3.C: number of string style
13386: improvements & optimizations
13387:
13388: * src/classes/xnode.C: =0 bug fix [left from autoptr default ctor
13389: :(]
13390:
13391: * src/main/untaint.C: removed redundant & in CORD_pos param passing
13392: [for it's a pointer really]
13393:
13394: * src/main/untaint.C: CORD_pos_advance turned out to have limit on
13395: 'n' param. worked that around
13396:
13397: * src/lib/cord/: Makefile.am, cordbscs.c, source.url: From: "Boehm,
13398: Hans" <hans_boehm@hp.com> To: "'Alexandr Petrosian (PAF)'"
13399: <PAF@design.ru>; "Boehm, Hans" <hans_boehm@hp.com> Sent: Tuesday,
13400: April 08, 2003 2:16 AM Subject: RE: libgc 6.2.alpha4
13401: cord/cordbscs.c/CORD_cat bug [were: CORD__extend_path bug?
13402:
13403: Thanks for the bug report and patch.
13404:
13405: I hadn't looked at this code in a while. Reading it now, it
13406: seems to me that the tests should also be ">= MAX_DEPTH" to
13407: comply with the invariant, though that may not matter a lot. I
13408: changed that, too.
13409:
13410: Hans
13411:
13412: 2003-04-07 paf
13413:
13414: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
13415: merged from head:safe mode error message now includes numbers
13416:
13417: * src/main/execute.C: n-th attempt to make a=a work with double.
13418: problem: as_double returns it's result in fp-register compiler
13419: optimizes access to that register after b->as_double, and just
13420: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
13421: from memory. _SAME_ double values do not match here. when
13422: forced to REload fp-register, values do match.
13423:
13424: tried to make them volatile.
13425:
13426: * src/main/execute.C: n-th attempt to make a=a work with double.
13427: problem: as_double returns it's result in fp-register compiler
13428: optimizes access to that register after b->as_double, and just
13429: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
13430: from memory. _SAME_ double values do not match here. when
13431: forced to REload fp-register, values do match.
13432:
13433: tried to make them volatile.
13434:
13435: * src/types/pa_vobject.h: small style change
13436:
13437: * src/: lib/cord/cordbscs.c, include/pa_string.h: CORD_cat bugfix
13438:
13439: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C: safe
13440: mode error message now includes numbers
13441:
13442: * src/: main/untaint.C, targets/cgi/parser3.C: unknown untaint lang
13443: now causes death
13444:
13445: 2003-04-04 paf
13446:
13447: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C:
13448: incorportated pa_exec patch by From: "Victor Fedoseev"
13449: <vvf_ru@mail.ru> To: "Alexandr Petrosian (PAF)" <PAF@design.ru>
13450: Sent: Thursday, January 23, 2003 9:14 AM
13451:
13452: huge speedup on ^file::cgi with big result
13453:
13454: * src/classes/table.C: sort table with 0 rows bug fixed
13455:
13456: * src/types/pa_vhash.h: $hash._default showed in foreach & co bug
13457: fix http://i2/tasks/edit/?id=4493701604654042676
13458:
13459: @main[] $with_default[ $.a[1] $._default[default from
13460: with_default] ] ^show[$with_default]
13461:
13462: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
13463: =$to_add_to.xxx=<br>
13464:
13465: ^show[$to_add_to]
13466:
13467: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
13468: ^show[$cloned]
13469:
13470: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
13471:
13472: } <hr>
13473:
13474: * src/classes/hash.C: $hash._default showed in foreach & co bug fix
13475: http://i2/tasks/edit/?id=4493701604654042676
13476:
13477: @main[] $with_default[ $.a[1] $._default[default from
13478: with_default] ] ^show[$with_default]
13479:
13480: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
13481: =$to_add_to.xxx=<br>
13482:
13483: ^show[$to_add_to]
13484:
13485: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
13486: ^show[$cloned]
13487:
13488: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
13489:
13490: } <hr>
13491:
13492: * src/types/pa_vmail.C: mail receive: .txt attachemnts bug fix
13493: http://i2/tasks/edit/?id=4507350336410850921
13494:
13495: * src/classes/xdoc.C: memory allocation func bugfix
13496: http://i2/tasks/edit/?id=4499303470368629745
13497:
13498: * src/classes/math.C: allowed random 1...
13499:
13500: * src/classes/math.C: allowed random 0..
13501:
13502: * src/main/pa_globals.C: exif mem leak
13503: http://i2/tasks/edit/?id=4480590323629807263
13504:
13505: * src/: classes/classes.dsp, main/main.dsp,
13506: targets/cgi/parser3.dsp, types/pa_vmail.C, types/types.dsp: buf
13507: fix http://i2/tasks/edit/?id=4493946731322521294
13508: $.to[billgates@microsoft.com BCc: send-spam-to@someemails.ru ]
13509:
13510: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
13511: lib/pcre/pcre.dsp, main/compile.tab.C, main/main.dsp,
13512: main/pa_globals.C, targets/cgi/parser3.dsp, types/types.dsp:
13513: links to xml libs made relative, no need to unpack parser3project
13514: to /parser3project.
13515:
13516: * src/main/: compile.tab.C, compile.y, compile_tools.h: error
13517: column more precise - tab handling bug fixed
13518:
13519: * src/main/: compile.tab.C, compile.y: more understandable error
13520: message in case @CLASS with more then one line inside
13521:
13522: * src/targets/cgi/parser3.C: more understandable error message in
13523: case of errors in @unhandled_exception
13524:
13525: 2003-04-03 paf
13526:
13527: * INSTALL, src/include/pa_operation.h, src/include/pa_request.h,
13528: src/main/compile.tab.C, src/main/compile.y,
13529: src/main/compile_tools.C, src/main/compile_tools.h,
13530: src/main/execute.C, src/main/pa_request.C: debug info format
13531: simplified, now it's: OP_VALUE Operation::Origin << here value*
13532:
13533: higher limits: file number (max: 255) line number (max:
13534: 64535) column number (max: 255)
13535:
13536: * src/classes/math.C: top limit
13537:
13538: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
13539: precise parse error position in case of
13540:
13541: ^bug ]
13542:
13543: * src/classes/op.C, src/main/pa_request.C, tests/042.html: test 042
13544: changed to realities, and passed [bug fixed]
13545:
13546: * src/: classes/op.C, include/pa_request.h, main/compile.C,
13547: main/compile.tab.C, main/compile.y, main/compile_tools.C,
13548: main/compile_tools.h, main/pa_request.C: introducing
13549: ^process...[main-method-alias]
13550:
13551: * src/: classes/date.C, classes/image.C, classes/op.C,
13552: classes/string.C, classes/table.C, classes/xdoc.C,
13553: types/pa_vmethod_frame.h: MethodParams& now [methods without
13554: params receive zero reference, but they are expected not to look
13555: there]
13556:
13557: * operators.txt, src/classes/date.C, src/classes/double.C,
13558: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
13559: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
13560: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
13561: src/classes/string.C, src/classes/table.C, src/classes/void.C,
13562: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
13563: src/main/execute.C, src/types/pa_method.h: MethodParams& now
13564: [methods without params receive zero reference, but they are
13565: expected not to look there]
13566:
13567: * operators.txt, src/classes/op.C, src/include/pa_request.h,
13568: src/main/pa_request.C, src/types/pa_vmethod_frame.h:
13569: ^process...[filename] useful for better error reporting
13570: [file/line/col]
13571:
13572: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
13573: types/pa_vstring.h: slightly improved error messages text: 1. is
13574: '%s', it 2. method undefined in case of ^void[]
13575:
13576: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
13577: include/pa_types.h, main/execute.C, main/pa_request.C: exception
13578: handling done. now we have error columns todo: test it
13579:
13580: * src/: classes/op.C, include/pa_request.h: removed from trace 'a'
13581: exception when ^try{ ^throw[a;1] }{ ^throw[b;2] }
13582:
13583: this makes life easier: were: bad stack order -- were in
13584: exception catch unwind order, which didn't match execution order
13585:
13586: @main[] ^try{ ^first[] }{ ^throw[c;3] }
13587:
13588: @first[] ^throw[a;1]
13589:
13590: showed throw a first throw b try
13591:
13592: which is no good
13593:
13594: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
13595: main/compile.tab.C, main/execute.C, main/pa_request.C: strack
13596: trace reset after handled exception [old bug fixed]
13597:
13598: * src/main/: compile.tab.C, compile.y: parse position old bug
13599: fixed. position reporting made precise [both, in parse erros and
13600: runtime errors]
13601:
13602: 2003-04-02 paf
13603:
13604: * src/: include/pa_operation.h, include/pa_request.h,
13605: main/compile.C, main/compile.tab.C, main/compile.y,
13606: main/compile_tools.C, main/compile_tools.h, main/execute.C,
13607: main/pa_exception.C, main/pa_request.C: debug info: started
13608: using. todo:complete
13609:
13610: * src/: classes/op.C, include/pa_operation.h, include/pa_request.h,
13611: main/compile.C, main/compile.tab.C, main/compile.y,
13612: main/compile_tools.C, main/compile_tools.h, main/execute.C,
13613: main/pa_request.C: prepared debug info todo:use it
13614:
13615: * src/include/pa_operation.h: strange mistake fixed: forgot to
13616: return Operation class->union after switching from autoptrs.
13617:
13618: * tests/: Makefile, results/108.processed, results/117.processed:
13619: meta considered OK [it's up to coder now to remove it not needed]
13620:
13621: * src/main/pa_dictionary.C, tests/Makefile: replace bug fix [broke
13622: Dictionary constructor when moved to gc]
13623:
13624: * src/main/pa_common.C: uncommented http:// file loading
13625:
13626: * src/include/pa_array.h, src/main/execute.C,
13627: src/targets/cgi/parser3.C, tests/run_parser.sh: gif encoder bug
13628: fix [gdGrowingBuf]
13629:
13630: * configure.in, src/lib/Makefile.am: removed patches
13631:
13632: * configure, src/include/pa_config_auto.h.in,
13633: src/main/pa_charset.C: --enable-assertions autoconf-ed
13634:
13635: * src/main/pa_common.C: uncommented http:// file loading
13636:
13637: * src/: classes/xdoc.C, types/pa_vxdoc.h: removed ref leak in
13638: xdoc::create/load
13639:
13640: * src/: classes/form.C, classes/hash.C, classes/image.C,
13641: classes/string.C, classes/table.C, classes/void.C,
13642: include/pa_common.h, main/pa_common.C, main/pa_request.C,
13643: main/pa_sql_driver_manager.C, main/pa_string.C: all calls to
13644: String::String(str,helper_length) are checked. found/fixed one
13645: place: $request:body now zero-terminated,
13646:
13647: * src/: classes/op.C, classes/table.C, include/pa_request.h,
13648: main/compile_tools.C, main/execute.C, types/pa_value.h,
13649: types/pa_vbool.h, types/pa_vclass.h, types/pa_vdate.h,
13650: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
13651: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
13652: types/pa_vobject.C, types/pa_vobject.h, types/pa_vstring.h,
13653: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
13654: types/pa_vxnode.h: more locally scoped vars in execute (more
13655: easily optimizable)
13656:
13657: * src/: classes/table.C, include/pa_table.h, main/pa_table.C: few
13658: for(size_t i=0...) -> for(Array_iterator... i(..); i.has_next()
13659:
13660: * src/: include/pa_array.h, include/pa_stack.h,
13661: include/pa_string.h, main/compile_tools.C, main/main.dsp,
13662: main/pa_table.C, types/pa_vmethod_frame.C: array get/put check
13663: become assertion iterator in methodframe filler
13664:
13665: * src/: include/pa_array.h, include/pa_stack.h, main/main.dsp,
13666: targets/cgi/parser3.C: array::get/put inlined
13667:
13668: * src/: lib/cord/cordbscs.c, main/pa_globals.C: globals.c:
13669: gc_substitute_memory_management_functions +installed CORD_oom
13670: function
13671:
13672: * configure.in, src/classes/xnode.C, src/include/pa_config_fixed.h,
13673: src/include/pa_config_includes.h, src/include/pa_string.h,
13674: src/lib/cord/cordbscs.c, src/main/pa_memory.C,
13675: src/targets/cgi/parser3.C: converted debug hacks to ANSI
13676: assertions started configure.in --enable-assertions
13677:
13678: 2003-04-01 paf
13679:
13680: * src/: classes/xdoc.C, classes/xnode.h, include/pa_memory.h,
13681: main/pa_memory.C, targets/cgi/parser3.C, types/pa_vxdoc.h,
13682: types/pa_vxnode.C, types/pa_vxnode.h: memory bug debugged down:
13683: gdome uses glib memory, and stores last pointer to xmlDoc there,
13684: gc misses that and collects valid memory fixed by remembering
13685: xmlDoc from dom object in xdoc. todo: do something with
13686: premature free of xdoc with xnodes/node values referring into it
13687:
13688: * src/classes/: mail.C: typo fix
13689:
13690: * src/main/pa_memory.C: bug() to set bpt in (memory.c) some .am
13691: changes
13692:
13693: * src/: include/pa_memory.h, main/pa_common.C, main/pa_globals.C,
13694: main/pa_memory.C: moved memory debugging to global level: to
13695: pa_gc_malloc
13696:
13697: * src/: main/pa_globals.C, targets/cgi/parser3.C: xml memory
13698: debugging showed no errors. todo: debug parser memory
13699:
13700: * src/targets/cgi/: parser3.C, parser3.dsp: more build
13701: configurations
13702:
13703: * src/: classes/classes.dsp, include/pa_config_fixed.h,
13704: main/compile.tab.C, main/main.dsp, main/pa_globals.C,
13705: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
13706: types/types.dsp: prepared xml-static configuration
13707:
13708: 2003-03-31 paf
13709:
13710: * INSTALL, src/classes/xdoc.C, src/main/pa_globals.C,
13711: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp: started
13712: xml lib memory debugging, simple checks failed: it seems that
13713: library does realloc(bad ptr), and recording those ptrs in heap
13714: [for debugging] was bad: heap situation changes = everything
13715: works fine
13716:
13717: * src/: main/pa_charset.C, include/pa_charset.h: worked around
13718: xmlRegisterCharEncodingHandler limitation [currently imposed
13719: limit of 10 user-defined charsets]
13720:
13721: 2003-03-28 paf
13722:
13723: * src/main/execute.C: execution stack copied to local register
13724: variable, removed lots [~2e7) of memory accesses
13725:
13726: 2003-03-27 paf
13727:
13728: * src/: classes/xdoc.C, main/pa_globals.C: XML memory funcs to GC
13729: works in debug, but fails in release todo: fix that
13730:
13731: * src/: classes/xdoc.C, main/compile.tab.C, main/pa_globals.C,
13732: targets/cgi/parser3.C: forgot to merge XML memory funcs
13733: replacement from gc branch
13734:
13735: * src/main/pa_exec.C: introducing append_help_length [radical
13736: improvement here]
13737:
13738: * src/targets/cgi/parser3.C: GC_java_finalization turned off [was
13739: 'not recommened' in gc.h, on win32 noticed no difference]
13740:
13741: * src/include/pa_array.h: returned checked array get [were disabled
13742: for debugging] result:not slower [don't understand that, it were
13743: INLINED] todo: find out a way of inlining it!
13744:
13745: * src/: include/pa_string.h, lib/gc/include/gc.h,
13746: lib/gc/include/gc_fake.h, main/compile.tab.C,
13747: targets/cgi/parser3.C, main/pa_memory.C, targets/cgi/parser3.dsp:
13748: convention changed: all resulting strings are zero-terminated
13749:
13750: * src/: classes/date.C, classes/file.C, classes/hash.C,
13751: classes/string.C, classes/table.C, classes/void.C,
13752: include/pa_string.h, lib/cord/cord.dsp, lib/cord/cordbscs.c,
13753: lib/cord/include/cord.h, main/compile.tab.C, main/compile.y,
13754: main/compile_tools.h, main/pa_common.C, main/pa_exec.C,
13755: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
13756: sql/pa_sql_driver.h, types/pa_value.C, types/pa_venv.h,
13757: types/pa_vfile.C, types/pa_vmail.C: introducing
13758: append_help_length [radical improvement here]
13759:
13760: * src/: classes/memory.C, include/pa_array.h, include/pa_hash.h,
13761: include/pa_memory.h, lib/cord/cord.dsp, lib/cord/cordxtra.c,
13762: lib/gc/include/gc.h, main/pa_memory.C, targets/cgi/parser3.C,
13763: targets/cgi/parser3.dsp, types/pa_vstatus.C: disabled gc, become
13764: even slower
13765:
13766: * src/: classes/string.C, classes/table.C, include/pa_array.h,
13767: include/pa_stack.h, include/pa_string.h, main/compile_tools.C,
13768: main/pa_string.C, main/untaint.C, types/pa_vmethod_frame.C: fixed
13769: clients of &get(): most to use non-ref version, some[in tight
13770: places] to get_unchecked_ref
13771:
13772: * src/doc/memory.dox: forgot to add
13773:
13774: * src/: classes/classes.dsp, classes/memory.C, classes/xdoc.C,
13775: include/pa_array.h, include/pa_request.h, include/pa_stack.h,
13776: include/pa_string.h, lib/cord/cord.dsp, lib/ltdl/libltdl.dsp,
13777: lib/md5/md5.dsp, lib/pcre/pcre.dsp, main/compile.tab.C,
13778: main/compile.y, main/compile_tools.C, main/compile_tools.h,
13779: main/main.dsp, main/pa_string.C, targets/cgi/parser3.C,
13780: targets/cgi/parser3.dsp, types/pa_vmail.C,
13781: types/pa_vmethod_frame.C, types/types.dsp: Array::put(index,
13782: T>>&<< removed after Stack::pop wiping removed [moved to separate
13783: func] other Array & removed
13784:
13785: 2003-03-26 paf
13786:
13787: * src/: classes/classes.dsp, classes/file.C, classes/op.C,
13788: classes/table.C, include/pa_array.h, include/pa_charset.h,
13789: include/pa_stack.h, include/pa_string.h, include/pa_table.h,
13790: lib/cord/cord.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
13791: lib/pcre/pcre.dsp, main/compile.tab.C, main/compile.y,
13792: main/main.dsp, main/pa_charset.C, main/pa_common.C,
13793: main/pa_exec.C, main/pa_sql_driver_manager.C,
13794: main/pa_stylesheet_manager.C, main/pa_table.C,
13795: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
13796: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
13797: types/pa_vobject.C, types/pa_vobject.h, types/types.dsp:
13798: pre-evaluated .count() in some places
13799:
13800: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
13801: lib/pcre/pcre.dsp, main/main.dsp, targets/cgi/parser3.dsp,
13802: types/types.dsp: .dsp profiling updated
13803:
13804: * src/: classes/classes.dsp, lib/cord/cord.dsp,
13805: lib/ltdl/libltdl.dsp, lib/md5/md5.dsp, main/main.dsp,
13806: targets/cgi/parser3.dsp, types/types.dsp: started profiling
13807:
13808: * src/: classes/classes.dsp, lib/cord/cord.dsp, main/compile.tab.C,
13809: main/compile_tools.h, main/main.dsp, targets/cgi/parser3.dsp,
13810: targets/isapi/parser3isapi.dsp, types/types.dsp: .dsp updated to
13811: use lib/gc,lib/cord
13812:
1.116 moko 13813: * acsite.m4, src/classes/Makefile.am, src/classes/mail.C,
13814: src/classes/math.C, src/classes/op.C, src/include/pa_common.h,
1.95 moko 13815: src/include/pa_config_auto.h.in, src/include/pa_config_fixed.h,
13816: src/include/pa_config_includes.h, src/include/pa_request.h,
13817: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
13818: src/include/pa_stylesheet_connection.h, src/include/pa_version.h,
1.116 moko 13819: src/lib/Makefile.am, src/lib/cord/Makefile.am,
1.95 moko 13820: src/lib/cord/include/Makefile.am,
1.116 moko 13821: src/lib/cord/include/private/Makefile.am, src/main/Makefile.am,
13822: src/main/pa_exec.C, src/main/pa_string.C, src/main/untaint.C,
13823: src/targets/cgi/Makefile.am, src/types/Makefile.am,
13824: src/types/pa_vclass.h, src/types/pa_vcookie.h,
13825: src/types/pa_vform.h, src/types/pa_vhash.h,
13826: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.h,
13827: src/types/pa_vresponse.h, src/types/pa_vstateless_class.h,
13828: src/types/pa_vstatus.C, src/types/pa_vstatus.h,
13829: src/types/pa_vtable.h, src/types/pa_vxdoc.h: configured math
13830: funcs ported pa_exec
1.95 moko 13831:
13832: * src/lib/: cord/include/gc.h, gc/include/gc.h: introducing lib/gc
13833:
13834: * src/lib/cord/include/: cord.h, ec.h, gc.h, private/cord_pos.h:
13835: bundled gc includes
13836:
13837: * src/: classes/op.C, include/pa_array.h,
13838: include/pa_sql_connection.h, include/pa_string.h,
13839: include/pa_version.h, main/compile.tab.C, main/compile.y,
13840: main/execute.C, main/pa_common.C, main/pa_exception.C,
13841: main/pa_request.C, main/pa_string.C, targets/cgi/parser3.C,
13842: targets/cgi/parser3.dsp: a number of bugfixes [while testing
13843: first real site (aval)]
13844:
13845: 2003-03-25 paf
13846:
13847: * operators.txt, src/main/pa_sql_driver_manager.C,
13848: src/types/pa_vstatus.C: $status.memory used free since_compact
13849: process
13850:
13851: * src/: include/pa_sql_connection.h, main/pa_globals.C,
13852: main/untaint.C, sql/pa_sql_driver.h: untaint.C L_SQL
13853:
13854: * src/main/: pa_charset.C, untaint.C: untaint.C L_MAIL_HEADER
13855:
13856: * src/main/pa_request.C, src/main/untaint.C, src/types/pa_value.C,
13857: src/types/pa_value.h, src/types/pa_vfile.h,
13858: src/types/pa_vobject.C, src/types/pa_vobject.h,
13859: src/types/pa_vstring.C, src/types/pa_vstring.h, tests/121.html,
13860: tests/results/121.processed: untaint.C L_URI
13861:
13862: * operators.txt, src/classes/Makefile.am, src/classes/classes.dsp,
13863: src/classes/op.C, src/main/pa_request.C, src/types/Makefile.am,
13864: src/types/pa_venv.h, src/types/types.dsp, src/classes/memory.C,
13865: src/types/pa_vmemory.h: ^memory:compact[]
13866:
13867: * tests/results/109.processed: it was a bug in parser. updated 109
13868: test result
13869:
13870: * src/classes/xdoc.C, tests/Makefile: fixed transform params2
13871:
13872: * src/main/pa_charset.C, src/targets/cgi/parser3.C, tests/Makefile,
13873: tests/results/107.processed: fixed dom language [values are now
13874: considered tainted. it was a bug in parser. updated 107 test
13875: result
13876:
13877: * src/classes/xdoc.C: fixed transform params
13878:
13879: * src/: include/pa_stylesheet_manager.h,
13880: main/pa_stylesheet_manager.C: fixed stylesheet caching
13881:
13882: * src/: include/pa_memory.h, main/pa_charset.C: memory: new 'new'
13883: overloads for structure handling
13884:
13885: * src/: classes/image.C, classes/xdoc.C, classes/xnode.C,
13886: include/pa_string.h, main/pa_string.C, types/pa_vxnode.C: removed
13887: StringBody(0) ambiguilty, introducting static
13888: StringBody::Format(int)
13889:
13890: * src/: main/pa_request.C, types/pa_vxnode.C: vxnode compiled xml
13891: linked
13892:
13893: * src/types/pa_vxdoc.C: vxdoc compiled
13894:
13895: * src/: classes/xnode.C, classes/xnode.h, include/pa_memory.h,
13896: types/pa_vxdoc.h, types/pa_vxnode.h: xnode.C compiled, doc/node
13897: finalizers isntalled
13898:
13899: * src/: classes/image.C, classes/xdoc.C, classes/xnode.h,
13900: doc/exception.dox, doc/index.dox, include/pa_charset.h,
13901: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
13902: main/pa_charset.C, main/pa_memory.C, main/pa_string.C: xdoc.C
13903: compiled todo: xnode.C / finalizers
13904:
13905: * src/doc/string.dox: updated: new string internals
13906:
13907: 2003-03-24 paf
13908:
13909: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
13910: include/pa_charset.h, include/pa_config_fixed.h,
13911: include/pa_request.h, include/pa_stylesheet_connection.h,
13912: include/pa_stylesheet_manager.h, main/pa_charset.C,
13913: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
13914: main/pa_stylesheet_manager.C, types/pa_vxdoc.h,
13915: types/pa_vxnode.h: started XML
13916:
13917: * src/main/: pa_common.C, pa_sql_driver_manager.C: http://
13918:
13919: * src/: classes/file.C, classes/image.C, classes/mail.C,
13920: include/pa_string.h, main/pa_common.C,
13921: main/pa_sql_driver_manager.C: introducing string[body]::pos(char)
13922:
13923: * src/: classes/file.C, classes/image.C, classes/mail.C,
13924: include/pa_memory.h, include/pa_string.h, main/pa_common.C,
13925: main/pa_request.C, main/pa_sql_driver_manager.C,
13926: types/pa_vimage.h: size_t pos everywhere checks changed to check
13927: for eq STRING_NOT_FOUND
13928:
13929: * src/main/pa_string.C, src/main/untaint.C, tests/Makefile: string
13930: optimize bit implemented
13931:
13932: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
13933: String::ArrayFragment::append_positions fixed
13934:
13935: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
13936: String::this_starts fixed
13937:
13938: * src/main/pa_string.C, tests/Makefile: string::pos fixed
13939:
13940: * src/: include/pa_hash.h, main/execute.C, main/pa_string.C:
13941: hashcode implemented fully, including per-char callback [it can
13942: be - substr CORD node]
13943:
13944: * src/: include/pa_array.h, main/compile.tab.C: gif encoding
13945: rewritten to rewalloc with 100byte buf ahead
13946:
13947: * src/classes/image.C, src/classes/op.C, src/classes/table.C,
13948: src/include/pa_string.h, src/main/compile.tab.C,
13949: src/main/compile.y, src/main/execute.C, src/main/pa_common.C,
13950: src/main/untaint.C, tests/Makefile: attempt to do gif encoding to
13951: CORD_ec [bad] would rewrite as realloc now
13952:
13953: * src/: classes/date.C, classes/file.C, classes/form.C,
13954: classes/image.C, classes/math.C, classes/op.C, classes/table.C,
13955: include/pa_cache_managers.h, include/pa_charsets.h,
13956: include/pa_common.h, include/pa_request.h,
13957: include/pa_sql_driver_manager.h, include/pa_table.h,
13958: main/pa_charset.C, main/pa_exception.C, main/pa_exec.C,
13959: main/pa_globals.C, main/pa_request.C, main/pa_uue.C,
13960: targets/isapi/parser3isapi.C, types/pa_value.C, types/pa_value.h,
13961: types/pa_vmail.C, types/pa_vmethod_frame.C,
13962: types/pa_vstateless_class.h: 2*2 worked :)
13963:
13964: * parser3.dsw, src/classes/date.C, src/classes/file.C,
13965: src/include/pa_exec.h, src/include/pa_string.h,
13966: src/main/pa_exec.C, src/main/pa_sql_driver_manager.C: empty run
13967: passed OK
13968:
13969: * src/: classes/hash.C, classes/string.C, classes/table.C,
13970: types/pa_value.C: all linked todo: debug
13971:
13972: * src/: classes/mail.C, main/pa_request.C, targets/cgi/parser3.C,
13973: types/pa_vstateless_class.C: all compiled. todo:link
13974:
13975: * src/types/pa_wcontext.C: pa_wcontext.C compiled
13976:
13977: * src/types/pa_vtable.C: pa_vtable.C compiled
13978:
13979: * src/types/pa_vstring.C: pa_vstring.C compiled
13980:
13981: * src/types/pa_vstatus.C: pa_vstatus.C compiled
13982:
13983: * src/types/: pa_vmath.C, pa_vmethod_frame.C, pa_vmethod_frame.h,
13984: pa_vobject.C, pa_vrequest.C, pa_vresponse.C,
13985: pa_vstateless_class.C, pa_vstateless_class.h:
13986: pa_vstateless_class.C compiled
13987:
13988: * src/: classes/xdoc.C, types/pa_vmail.C, types/pa_vmail.h,
13989: types/pa_vmath.C: pa_vmail.C compiled
13990:
13991: * src/types/: pa_vhash.C, pa_vimage.C: pa_vimage.C compiled
13992:
13993: * src/types/pa_vform.C: pa_vform.C compiled
13994:
13995: * src/types/pa_vfile.C: pa_vfile.C compiled
13996:
13997: * src/types/: pa_value.h, pa_vclass.C, pa_vcookie.C,
13998: pa_vstateless_class.C: pa_vcookie.C compiled
13999:
14000: * src/: classes/string.C, types/pa_value.C, types/pa_value.h,
14001: types/pa_vhash.h: pa_value.C compiled
14002:
14003: * src/: main/execute.C, main/pa_string.C, types/pa_wcontext.h:
14004: classes.lib main.lib compiled
14005:
14006: * src/classes/void.C: void.C compiled
14007:
14008: * src/: classes/string.C, classes/table.C, include/pa_string.h,
14009: main/pa_string.C, types/pa_vtable.C, types/pa_vtable.h: table.C
14010: compiled
14011:
14012: * src/: classes/string.C, include/pa_request.h,
14013: include/pa_string.h, main/pa_string.C: string.C compiled
14014:
14015: * src/: classes/op.C, classes/string.C, classes/table.C,
14016: classes/void.C, include/pa_sql_connection.h, include/pa_string.h,
14017: main/pa_request.C, main/pa_string.C: op.C compiled
14018:
14019: * src/classes/: math.C, op.C: math.C compiled
14020:
14021: * src/: classes/mail.C, classes/string.C, classes/table.C,
14022: types/pa_vmail.h: mail.C compiled
14023:
14024: * src/classes/: int.C, table.C: int.C compiled
14025:
14026: * src/: classes/hash.C, classes/image.C, classes/string.C,
14027: classes/table.C, include/pa_memory.h, include/pa_string.h,
14028: main/pa_memory.C, types/pa_vimage.h, types/pa_vmail.C: image.C
14029: compiled
14030:
14031: * src/: classes/hash.C, classes/string.C, classes/table.C,
14032: classes/void.C, classes/xdoc.C, include/pa_request.h,
14033: include/pa_sql_connection.h: hash.C compiled
14034:
14035: * src/: classes/classes.C, classes/classes.awk, classes/classes.h,
14036: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
14037: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
14038: classes/math.C, classes/op.C, classes/response.C,
14039: classes/string.C, classes/table.C, classes/void.C,
14040: classes/xdoc.C, classes/xnode.C, include/pa_memory.h,
14041: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
14042: main/pa_string.C, types/pa_vdate.h, types/pa_vmethod_frame.h:
14043: file.C table.C compiled
14044:
14045: * src/: include/pa_string.h, main/pa_string.C, main/pa_uue.C,
14046: main/untaint.C: main.lib compiled
14047:
14048: 2003-03-21 paf
14049:
14050: * src/: classes/op.C, include/pa_cache_managers.h,
14051: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
14052: include/pa_stylesheet_manager.h, main/pa_exception.C,
14053: main/pa_globals.C, main/pa_sql_driver_manager.C,
14054: sql/pa_sql_driver.h, types/pa_vimage.C: pa_sql_driver_manager.C
14055: compiled
14056:
14057: * src/: classes/hash.C, classes/image.C, classes/op.C,
14058: classes/xdoc.C, classes/xnode.C, include/pa_common.h,
14059: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
14060: main/compile.C, main/pa_common.C, main/pa_request.C,
14061: types/pa_vmail.C, types/pa_vresponse.C, types/pa_vxnode.C:
14062: pa_request.C compiled
14063:
14064: * src/: classes/hash.C, classes/mail.C, classes/op.C,
14065: include/pa_request.h, main/execute.C, main/pa_request.C,
14066: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
14067: types/pa_vhash.h, types/pa_vimage.C, types/pa_vmethod_frame.h,
14068: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
14069: types/pa_vresponse.h, types/pa_vtable.C: pa_request.C 50%
14070: compiled
14071:
14072: * src/: include/pa_exec.h, include/pa_string.h, main/pa_exec.C,
14073: main/pa_string.C: pa_exec.C compiled [win32 only for now] todo:
14074: on unix
14075:
14076: * src/: include/pa_charset.h, include/pa_charsets.h,
14077: include/pa_exec.h, main/compile.tab.C, main/pa_charset.C,
14078: main/pa_charsets.C, main/pa_dictionary.C, main/pa_exec.C:
14079: pa_charsets.C compiled
14080:
14081: * src/: classes/image.C, classes/mail.C, classes/op.C,
14082: include/pa_request.h, include/pa_string.h, main/compile.tab.C,
14083: main/compile.y, main/execute.C, main/pa_common.C,
14084: main/pa_request.C, types/pa_junction.h, types/pa_method.h,
14085: types/pa_vcode_frame.h, types/pa_vimage.h,
14086: types/pa_vmethod_frame.h: execute.C compiled
14087:
14088: * src/: classes/classes.C, classes/classes.h, classes/date.C,
14089: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
14090: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
14091: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
14092: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
14093: include/pa_cache_managers.h, include/pa_charsets.h,
14094: include/pa_common.h, include/pa_exec.h, include/pa_memory.h,
14095: include/pa_operation.h, include/pa_request.h, include/pa_sapi.h,
14096: include/pa_sql_driver_manager.h, include/pa_string.h,
14097: include/pa_stylesheet_connection.h,
14098: include/pa_stylesheet_manager.h, include/pa_table.h,
14099: main/compile.C, main/compile.tab.C, main/compile.y,
14100: main/compile_tools.C, main/compile_tools.h, main/execute.C,
14101: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
14102: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C,
14103: main/pa_string.C, main/pa_stylesheet_manager.C, main/untaint.C,
14104: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
14105: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
14106: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
14107: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
14108: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
14109: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
14110: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
14111: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
14112: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
14113: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
14114: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
14115: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
14116: types/pa_vresponse.h, types/pa_vstateless_class.C,
14117: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
14118: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
14119: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
14120: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
14121: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
14122: types/pa_wcontext.h, types/pa_wwrapper.h: introducing StringBody
14123: [C++ CORD wrapper]
14124:
14125: * src/: lib/cord/cordbscs.c, main/pa_string.C: test14 [bug fixed]
14126:
14127: * src/: classes/file.C, include/pa_charset.h, main/pa_charset.C:
14128: $file::exec/cgi[script; $.charset[this is script's charset]
14129:
14130: command line, env values, input got transcoded before call
14131: stdout, stderr got transcoded after call
14132:
14133: * src/classes/file.C: ^file::exec/cgi now does not pass post data
14134: by default. use: ^file::exec[...;$.stdin[$request.body]
14135:
14136: * src/main/pa_common.C: } typo bug fix
14137:
14138: * src/main/pa_common.C: } typo bug fix
14139:
14140: 2003-03-20 paf
14141:
14142: * src/: include/pa_string.h, lib/cord/cordbscs.c, main/pa_string.C,
14143: main/untaint.C: cord bug fix, but still errors todo: clear out
14144:
14145: * src/include/pa_string.h: more tests
14146:
14147: * src/main/pa_string.C: string.pos fixed
14148:
1.116 moko 14149: * src/lib/: ltdl/config_fixed.h, ltdl/configure, ltdl/configure.in,
14150: ltdl/libltdl.dsp, ltdl/ltdl.c, ltdl/ltdl.h, pcre/dftables.c,
14151: pcre/get.c, pcre/internal.h, pcre/maketables.c, pcre/pcre.c,
14152: pcre/pcre.h, pcre/pcre_parser_ctype.c, pcre/study.c: undone bad
14153: replaces
1.95 moko 14154:
14155: * src/: classes/image.C, include/pa_dictionary.h,
14156: include/pa_string.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
14157: lib/pcre/internal.h, lib/pcre/pcre.c, lib/pcre/study.c,
14158: main/compile.tab.C, main/pa_dictionary.C, main/pa_string.C,
14159: main/untaint.C, types/pa_vmail.C: more tests [bugs fixed]
14160:
14161: * src/include/pa_string.h: warning
14162:
14163: * src/include/pa_string.h: this_starts fixed
14164:
14165: * src/: include/pa_string.h, main/pa_string.C: added: assertion on
14166: new String ctor & append params convention
14167:
14168: * src/: classes/file.C, classes/hash.C, classes/image.C,
14169: classes/mail.C, classes/op.C, classes/string.C, classes/table.C,
14170: classes/xdoc.C, include/pa_common.h, include/pa_memory.h,
14171: include/pa_string.h, main/compile.tab.C, main/pa_common.C,
14172: main/pa_exception.C, main/pa_exec.C,
14173: main/pa_sql_driver_manager.C, main/pa_string.C,
14174: main/pa_stylesheet_manager.C, main/untaint.C,
14175: targets/isapi/parser3isapi.C, types/pa_vimage.C,
14176: types/pa_vmail.C: more tests OK
14177:
14178: * src/: include/pa_array.h, include/pa_hash.h, include/pa_memory.h,
14179: include/pa_string.h, main/pa_memory.C, main/pa_string.C: test:
14180: gc/exit runned OK
14181:
14182: * src/types/pa_vmail.C: another naming problem: should not name
14183: vars like that: unpredictable close caused problems with later
14184: sending mail: Mar 20 06:39:53 pt-6 sendmail[19044]: File
14185: descriptors missing on startup: stdin; Bad file number
14186:
14187: todo: find out why so many filters(stream) here. probably wrong?
14188:
14189: * src/: include/pa_dictionary.h, include/pa_string.h,
14190: main/pa_common.C, main/pa_dictionary.C, main/pa_string.C,
14191: main/untaint.C: test compiled
14192:
14193: * src/: classes/image.C, classes/mail.C, classes/math.C,
14194: classes/string.C, include/pa_dictionary.h, include/pa_hash.h,
14195: include/pa_memory.h, include/pa_string.h, lib/cord/cordbscs.c,
14196: lib/cord/cordxtra.c, lib/pcre/dftables.c, lib/pcre/get.c,
14197: lib/pcre/maketables.c, lib/pcre/pcre.c, lib/pcre/pcre.h,
14198: lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
14199: main/compile.tab.C, main/pa_common.C, main/pa_dictionary.C,
14200: main/pa_exec.C, main/pa_memory.C, main/pa_request.C,
14201: main/pa_string.C, main/untaint.C, types/pa_vfile.h,
14202: types/pa_vmail.C: untaint.C 99% [except mail&sql&optimize]
14203:
14204: * parser3.dsw, src/classes/file.C, src/classes/image.C,
14205: src/classes/op.C, src/classes/string.C, src/classes/table.C,
14206: src/classes/xdoc.C, src/classes/xnode.C, src/include/pa_common.h,
14207: src/include/pa_memory.h, src/include/pa_request.h,
14208: src/include/pa_request_charsets.h,
14209: src/include/pa_sql_connection.h, src/include/pa_string.h,
14210: src/main/compile.tab.C, src/main/execute.C,
14211: src/main/pa_charset.C, src/main/pa_common.C,
14212: src/main/pa_exception.C, src/main/pa_exec.C,
14213: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
14214: src/main/pa_stylesheet_manager.C, src/main/untaint.C,
14215: src/sql/pa_sql_driver.h, src/targets/cgi/parser3.C,
14216: src/targets/isapi/parser3isapi.C, src/types/pa_value.C,
14217: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
14218: src/types/pa_venv.h, src/types/pa_vform.C, src/types/pa_vmail.C,
14219: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
14220: src/types/pa_vobject.C, src/types/pa_vresponse.C,
14221: src/types/pa_vstatus.C, src/types/pa_vstring.C,
14222: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
14223: src/types/pa_vxnode.C, src/types/pa_wcontext.h: untaint.C 30%,
14224: pa_common.C [done, without http for now]
14225:
14226: 2003-03-19 paf
14227:
14228: * src/: classes/date.C, classes/form.C, classes/hash.C,
14229: classes/image.C, classes/mail.C, classes/op.C, classes/xdoc.C,
14230: classes/xnode.C, include/pa_array.h, include/pa_config_fixed.h,
14231: include/pa_exception.h, include/pa_memory.h, include/pa_sapi.h,
14232: include/pa_string.h, include/pa_table.h, main/compile.C,
14233: main/compile_tools.C, main/execute.C, main/pa_charset.C,
14234: main/pa_common.C, main/pa_exception.C, main/pa_request.C,
14235: main/pa_socks.C, main/pa_string.C, main/pa_table.C,
14236: main/untaint.C, targets/cgi/parser3.C, targets/cgi/parser3.dsp,
14237: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.h,
14238: types/pa_vform.C, types/pa_vmail.C, types/pa_vmethod_frame.h,
14239: types/pa_vstateless_class.h, types/pa_vtable.C,
14240: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.C,
14241: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
14242: types/pa_wwrapper.h: started test
14243:
1.116 moko 14244: * src/lib/pcre/: dftables.c, get.c, maketables.c, pcre.c, pcre.dsp,
14245: pcre.h, pcre_parser_ctype.c, study.c: restored bad replaces
1.95 moko 14246:
14247: * src/: classes/op.C, include/pa_array.h, include/pa_memory.h,
14248: include/pa_string.h, main/pa_string.C: string compiled todo: test
14249: it
14250:
14251: * src/: classes/classes.dsp, classes/string.C, classes/table.C,
14252: include/pa_array.h, include/pa_common.h, include/pa_dictionary.h,
14253: include/pa_exception.h, include/pa_string.h, include/pa_table.h,
14254: lib/cord/cord.dsp, main/compile.tab.C, main/main.dsp,
14255: main/pa_common.C, main/pa_string.C, targets/cgi/parser3.dsp,
14256: types/pa_method.h, types/pa_value.h, types/pa_vmethod_frame.C,
14257: types/pa_vmethod_frame.h, types/types.dsp: string
14258: reimplementation with cord+array<fragment>: 70%
14259:
14260: 2003-03-18 paf
14261:
14262: * src/: classes/date.C, classes/file.C, classes/form.C,
14263: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
14264: classes/op.C, classes/string.C, classes/table.C, classes/xdoc.C,
14265: classes/xnode.C, include/pa_hash.h, include/pa_string.h,
14266: main/pa_string.C, types/pa_vmail.C: lots of replacements, todo:we
14267: can ignore lang in cmp and pos really, but would
14268: split properly!
14269:
14270: * src/lib/cord/: cord.dsp, cordbscs.c, cordprnt.c, cordxtra.c: gc:
14271: cord part made parser/src/lib: it's not compiled into libgc by
14272: default
14273:
14274: * parser3.dsw, src/classes/classes.dsp, src/classes/classes.h,
14275: src/classes/date.C, src/classes/double.C, src/classes/file.C,
14276: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
14277: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
14278: src/classes/op.C, src/classes/response.C, src/classes/string.C,
14279: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
14280: src/classes/xnode.C, src/classes/xnode.h,
14281: src/include/Makefile.am, src/include/pa_cache_managers.h,
14282: src/include/pa_charset.h, src/include/pa_charsets.h,
14283: src/include/pa_common.h, src/include/pa_dictionary.h,
14284: src/include/pa_exception.h, src/include/pa_exec.h,
14285: src/include/pa_globals.h, src/include/pa_hash.h,
14286: src/include/pa_memory.h, src/include/pa_pool.h,
14287: src/include/pa_request.h, src/include/pa_request_charsets.h,
14288: src/include/pa_sapi.h, src/include/pa_sql_connection.h,
14289: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
14290: src/include/pa_stylesheet_connection.h,
14291: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
14292: src/include/pa_uue.h, src/lib/pcre/get.c, src/main/Makefile.am,
14293: src/main/compile.C, src/main/compile.tab.C,
14294: src/main/compile_tools.C, src/main/compile_tools.h,
14295: src/main/execute.C, src/main/main.dsp, src/main/pa_charset.C,
14296: src/main/pa_charsets.C, src/main/pa_common.C,
14297: src/main/pa_dictionary.C, src/main/pa_exception.C,
14298: src/main/pa_exec.C, src/main/pa_globals.C, src/main/pa_memory.C,
14299: src/main/pa_pool.C, src/main/pa_request.C,
14300: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
14301: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
14302: src/main/pa_uue.C, src/main/untaint.C, src/targets/cgi/parser3.C,
14303: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
14304: src/types/pa_junction.h, src/types/pa_method.h,
14305: src/types/pa_value.C, src/types/pa_value.h,
14306: src/types/pa_vclass.C, src/types/pa_vclass.h,
14307: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
14308: src/types/pa_vcookie.h, src/types/pa_vdate.h,
14309: src/types/pa_vdouble.h, src/types/pa_venv.h,
14310: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
14311: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
14312: src/types/pa_vimage.C, src/types/pa_vimage.h,
14313: src/types/pa_vint.h, src/types/pa_vmail.C, src/types/pa_vmail.h,
14314: src/types/pa_vmath.C, src/types/pa_vmath.h,
14315: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
14316: src/types/pa_vobject.C, src/types/pa_vobject.h,
14317: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
14318: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
14319: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
14320: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
14321: src/types/pa_vstatus.h, src/types/pa_vstring.C,
14322: src/types/pa_vstring.h, src/types/pa_vtable.C,
14323: src/types/pa_vtable.h, src/types/pa_vvoid.h,
14324: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
14325: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
14326: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
14327: src/types/pa_wwrapper.h, src/types/types.dsp: started porting to
14328: gc: PA_Object done lots of replacements also
14329:
14330: * src/: include/pa_pool.h, main/execute.C, targets/cgi/pa_pool.C:
14331: gc logging
14332:
14333: 2003-03-17 paf
14334:
14335: * src/: classes/date.C, classes/file.C, classes/form.C,
14336: classes/image.C, classes/mail.C, classes/op.C, classes/table.C,
14337: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
14338: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
14339: include/pa_string.h, include/pa_types.h, main/compile.C,
14340: main/compile.tab.C, main/execute.C, main/pa_charset.C,
14341: main/pa_common.C, main/pa_exception.C, main/pa_exec.C,
14342: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
14343: main/pa_sql_driver_manager.C, main/pa_string.C,
14344: main/pa_stylesheet_manager.C, main/pa_uue.C, main/untaint.C,
14345: targets/cgi/pa_pool.C, targets/cgi/parser3.C,
14346: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
14347: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.C,
14348: types/pa_vform.C, types/pa_vint.h, types/pa_vmail.C,
14349: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
14350: types/pa_vxnode.h: libgc attempt
14351:
14352: 2003-03-13 paf
14353:
14354: * src/: include/pa_sql_driver_manager.h,
14355: main/pa_sql_driver_manager.C, targets/cgi/parser3.C: lt_dlexit
14356: called
14357:
14358: * src/: include/pa_request.h, lib/ltdl/libltdl.dsp,
14359: lib/md5/md5.dsp, main/compile.tab.C, main/execute.C,
14360: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.C,
14361: types/pa_value.h, types/pa_vobject.h,
14362: types/pa_vstateless_class.h, types/pa_vstatus.C, types/types.dsp:
14363: set_base, set_derived simplified [counter leaks fixed]
14364:
14365: * ChangeLog, src/include/pa_config_fixed.h, src/types/pa_vstatus.C,
14366: src/types/types.dsp: incorporated status class patch From:
14367: "Victor Fedoseev" <vvf_ru@mail.ru> Sent: Thursday, January 23,
14368: 2003 8:14 AM
14369:
14370: now we have $status.rusage.maxrss,tv_sec,tv_usec un WIN32 [plus
14371: Win32 specific: QuotaPeakNonPagedPoolUsage
14372: QuotaPeakPagedPoolUsage PeakPagefileUsage]
14373:
14374: 2003-03-12 paf
14375:
1.116 moko 14376: * configure, configure.in, src/lib/ltdl/configure,
14377: src/lib/ltdl/configure.in, src/targets/cgi/Makefile.am:
1.95 moko 14378: lib/ltdl/Makefile now created by /configure.in only [were by
14379: lib/ltdl/configure.in OVERWRITE]
14380:
1.116 moko 14381: * configure, configure.in, src/targets/cgi/Makefile.am: libstdc++
14382: linkage fixed for g++ 3.2.2
1.95 moko 14383:
14384: * src/include/pa_stylesheet_manager.h: gcc 3.2 rightliy complained
14385: on using privately declared class [fixed]
14386:
14387: * src/: include/pa_sql_driver_manager.h, main/compile.tab.C: gcc
14388: 3.2 rightliy complained on using privately declared class [fixed]
14389:
14390: * src/targets/cgi/parser3.C: 1. more detailed log on signals. 2.
14391: sigpipe before request constructor now causes death
14392:
14393: * src/: include/pa_request.h, main/compile.tab.C, main/execute.C,
14394: targets/cgi/parser3.C: SIGPIPE now can be intercepted and does
14395: not cause exception in exception handler
14396:
1.116 moko 14397: * configure, configure.in, src/targets/cgi/Makefile.am: configure
14398: now default links libstdc++ statically. that can be overriden by
14399: --with-dynamic-stdcpp
1.95 moko 14400:
14401: 2003-03-11 paf
14402:
14403: * src/: main/compile.tab.C, main/compile.y, sql/pa_sql_driver.h,
14404: types/pa_vstateless_class.C, types/pa_vstateless_class.h: removed
14405: necessity of libstdc++
14406:
14407: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
14408:
14409: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
14410:
14411: 2003-03-08 paf
14412:
14413: * tests/Makefile: make install & co
14414:
14415: * src/: include/pa_request.h, classes/op.C: removing
14416: vclass,object.h -> pa_request.h dependency
14417:
14418: * src/: classes/mail.C, classes/response.C, include/pa_request.h,
14419: main/pa_request.C: removing vform,response,cookie.h ->
14420: pa_request.h dependency
14421:
14422: * src/include/pa_request.h: removing vmail.h -> pa_request.h
14423: dependency [testing...]
14424:
14425: * src/: include/pa_config_fixed.h, types/pa_vxdoc.C: yet another
14426: return 0; fixed
14427:
14428: * src/: include/pa_config_fixed.h, types/pa_vmail.C,
14429: types/pa_vmail.h: vmail.C received just compiled [not tested]
14430:
14431: * src/classes/xdoc.C: forgotten: global xdoc when ndef XML
14432:
14433: * src/main/pa_request.C: forgotten: ifdef XML
14434:
14435: * src/main/pa_request.C: forgotten: ifdef XML
14436:
14437: * src/targets/cgi/parser3.C: todo: move to latest xml version on
14438: win32 and run memleak tests again
14439:
14440: * src/targets/cgi/parser3.C: charsets: see some strange things with
14441: old xml lib-- it's internal memory handling has faults
14442:
14443: * src/: include/pa_types.h, main/pa_charset.C: charsets: fixed
14444: problems when transcode from charset A to A.
14445:
14446: * src/: main/untaint.C, types/pa_vmail.C: mail: transcode fixed.
14447: todo: still problems when transcode from charset A to A.
14448:
14449: * src/: classes/hash.C, classes/mail.C, classes/string.C,
14450: classes/table.C, include/pa_array.h,
14451: main/pa_sql_driver_manager.C, types/pa_vmail.C, types/pa_vmail.h:
14452: started full-scale-site-test [~ http://parser.ru sources]
14453:
14454: some fixes
14455:
14456: * tests/: 021.html, 031.html, 033.html, 109.html, 110.html,
14457: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
14458: 117.html, 118.html, 119.html, 120.html, results/109.processed,
14459: results/110.processed, results/111.processed,
14460: results/112.processed, results/113.processed,
14461: results/114.processed, results/115.processed,
14462: results/116.processed, results/117.processed,
14463: results/118.processed, results/119.processed,
14464: results/120.processed: xml: tests 109 dom create/show 110 xpath
14465: selectSingle 111 xdoc.create from tainted & 112
14466: xdoc.create/output with russian attr value 113 xpath
14467: selectString/Number 114 dom attributes.count 115 xpath selectBool
14468: 116 output media-type change 117 transform by dom stylesheet 118
14469: empty transform result 119 dom setAttribute 120 nbsp letter
14470: output
14471:
14472: =END OF PREPARED XML TESTS=
14473:
14474: 2003-03-07 paf
14475:
14476: * src/classes/xdoc.C, src/include/pa_charset.h,
14477: src/include/pa_stylesheet_connection.h, tests/108.html,
14478: tests/108.xsl, tests/results/108.processed: xml: test 108
14479: transform with params [bugs fixed]
14480:
14481: * src/: main/pa_charset.C, targets/cgi/parser3.C: fixed: mem leak
14482: from copy/paste bug
14483:
14484: * src/classes/xdoc.C, src/include/pa_charset.h,
14485: src/include/pa_request.h, src/main/execute.C,
14486: src/main/pa_charset.C, src/main/pa_exception.C,
14487: src/main/pa_globals.C, src/main/pa_request.C,
14488: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
14489: src/types/pa_vxnode.C, tests/107.html,
14490: tests/results/107.processed: xml: test: 107 bug fixes
14491:
14492: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
14493: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
14494: types/pa_vxnode.C, types/pa_vxnode.h: test: 107 bug fixes
14495:
14496: * tests/: 106.html, results/106.processed: test: 106 xdoc create,
14497: string
14498:
14499: * src/: include/pa_charset.h, main/pa_charset.C: xml: charset two
14500: mem alloc functions used for different cases [libxml, libxsl]
14501:
14502: * src/classes/classes.C: fixed: prevent system classes from
14503: modification to lock ALL the classes, not only directly used
14504:
14505: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h: xml:
14506: linked
14507:
14508: * src/: classes/xdoc.C, types/pa_vxdoc.h: xdoc.C compiled
14509:
14510: 2003-03-06 paf
14511:
14512: * src/classes/xdoc.C: xdoc.C 50%
14513:
14514: * src/: classes/xnode.C, classes/xnode.h, include/pa_charset.h,
14515: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
14516: main/pa_globals.C, main/pa_request.C,
14517: main/pa_stylesheet_manager.C: xnode.C compiled
14518:
14519: * src/: include/pa_stylesheet_connection.h,
14520: include/pa_stylesheet_manager.h, main/pa_sql_driver_manager.C,
14521: main/pa_stylesheet_manager.C: xml: stylesheet&manager done
14522:
14523: * src/: include/pa_memory.h, include/pa_stylesheet_connection.h,
14524: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
14525: xml: stylesheet&manager STARTED
14526:
14527: * src/: include/pa_globals.h, main/pa_charset.C,
14528: main/pa_exception.C, main/pa_globals.C: xml: exceptions
14529:
14530: * src/: include/pa_charset.h, include/pa_config_fixed.h,
14531: include/pa_memory.h, include/pa_pool.h, main/pa_charset.C,
14532: main/pa_memory.C, main/pa_pool.C, types/pa_vxdoc.C,
14533: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: xml:
14534: charsets
14535:
14536: * tests/023.html: in some cases it rounded up badly. postponing
14537: solution of that problem, making more simple test
14538:
14539: * tests/: 058_paf2000.png, results/058.processed: .png added with
14540: -kb now
14541:
14542: * src/: include/pa_charset.h, include/pa_charsets.h,
14543: main/pa_charset.C, main/pa_charsets.C: charset_utf8 declaration
14544: moved to charsets.C
14545:
14546: 2003-03-05 paf
14547:
14548: * src/classes/string.C, src/include/pa_string.h,
14549: src/main/pa_string.C, tests/105.html,
14550: tests/results/105.processed: String::match bug fixed
14551:
14552: * src/classes/op.C, src/main/main.dsp, tests/104.html,
14553: tests/results/104.processed: ^bpt operator added [does int3 in
14554: debug build on win32]
14555:
14556: * tests/: 057.html, results/057.processed: test bug fixed
14557:
1.116 moko 14558: * src/targets/cgi/Makefile.am: linker needed more tricks to link OK
1.95 moko 14559:
14560: * src/classes/math.C: can be: crypt in -lcrypt OK, but crypt.h be
14561: missing
14562:
1.116 moko 14563: * src/: include/Makefile.am, main/Makefile.am, types/Makefile.am:
14564: forgotten files added to Makes
1.95 moko 14565:
14566: * ltmain.sh: ltmain.sh added
14567:
14568: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
14569: change undone ;(
14570:
14571: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
14572: made static
14573:
14574: * src/: classes/math.C, classes/op.C, classes/string.C,
1.116 moko 14575: main/pa_exec.C, targets/cgi/Makefile.am: gcc more happy.
14576: todo:make linker happy
1.95 moko 14577:
14578: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C: pa_exec
14579: env param made optional
14580:
14581: 2003-03-04 paf
14582:
14583: * src/: classes/image.C, include/pa_request.h, include/pa_stack.h,
14584: types/pa_vimage.h: number of gcc compiler bugs fixed
14585:
14586: * tests/: 103.html, 103mark.gif, 103paf2001.gif,
14587: results/103.processed: tests: 103 image.copy transparence test
14588:
14589: * src/main/execute.C, tests/101.html, tests/102.html,
14590: tests/results/101.processed, tests/results/102.processed: tests:
14591: 101 method/variable name conflict test 102 form fields change
14592: should not not change anything [bug fix]
14593:
14594: * tests/: 057.html, 099.html, 100.html, results/057.processed,
14595: results/099.processed, results/100.processed: tests: 57 date
14596: create 2002: added 99,100 response:body/download
14597:
14598: * src/classes/image.C, tests/098.html, tests/098font.gif,
14599: tests/results/098.processed: test: 98 image font text [bug fixed]
14600:
14601: * src/main/pa_common.C, src/targets/cgi/parser3.C, tests/097.html,
14602: tests/results/097.processed: test: 97 file::load http:// [bugs
14603: fixed]
14604:
14605: * src/classes/hash.C, src/classes/image.C, src/classes/table.C,
14606: src/include/pa_memory.h, tests/096.html, tests/096_dir/163.jpg,
14607: tests/096_dir/188.jpg, tests/results/096.processed: tests: 96
14608: image EXIF [bug fixed]
14609:
14610: * src/classes/table.C, src/main/execute.C, tests/061.dat,
14611: tests/061.html, tests/062.html, tests/063.html, tests/064.html,
14612: tests/065.html, tests/066.html, tests/067.html, tests/068.html,
14613: tests/069.html, tests/070.html, tests/071.html, tests/072.html,
14614: tests/073.html, tests/074.html, tests/075.html, tests/076.html,
14615: tests/077.html, tests/078.html, tests/080.html, tests/081.html,
14616: tests/082.html, tests/083.html, tests/084.html, tests/085.html,
14617: tests/086.html, tests/087.html, tests/088.html, tests/089.html,
14618: tests/090.html, tests/091.html, tests/092.html, tests/093.html,
14619: tests/094.html, tests/095.html, tests/results/061.processed,
14620: tests/results/062.processed, tests/results/063.processed,
14621: tests/results/064.processed, tests/results/065.processed,
14622: tests/results/066.processed, tests/results/067.processed,
14623: tests/results/068.processed, tests/results/069.processed,
14624: tests/results/070.processed, tests/results/071.processed,
14625: tests/results/072.processed, tests/results/073.processed,
14626: tests/results/074.processed, tests/results/075.processed,
14627: tests/results/076.processed, tests/results/077.processed,
14628: tests/results/078.processed, tests/results/080.processed,
14629: tests/results/081.processed, tests/results/082.processed,
14630: tests/results/083.processed, tests/results/084.processed,
14631: tests/results/085.processed, tests/results/086.processed,
14632: tests/results/087.processed, tests/results/088.processed,
14633: tests/results/089.processed, tests/results/090.processed,
14634: tests/results/091.processed, tests/results/092.processed,
14635: tests/results/093.processed, tests/results/094.processed,
14636: tests/results/095.processed, tests/079.html,
14637: tests/results/079.processed: tests: 61 file::stat size 62
14638: string->int autoconvert 63 double .int,dec,div,mul 64 date
14639: compare 65 file: basename,justname,justext 66 math:crypt 67
14640: string.match simple on long 68 string.match normalized simple on
14641: long 69 string.int 70 file::stat content-type 71 table.join 72
14642: hash parameter conditional pass 73 date daylightsaving,yearday 74
14643: date arithmetics 75 response date values/attributes 76 string.pos
14644: of void, void.pos 77 syntax parsing 78 cookie tainting 79 switch
14645: with local 80 scientific numeric literal in string autoconvert 81
14646: xor: logical and numerical 82 for delims 83 menu delims 84
14647: table.hash distinct 85 long string replace 86 throw+catch
14648: current language preserve 87 bit shifts 88 junction tests +
14649: $caller test 89 hash.foreach selfmodification 90 int/void to int
14650: 91 $caller test 92 junction is + def junction tests 93 $caller
14651: test 94 syntax test 95 table.hash(keygenerator) [bug fixed]
14652:
14653: * src/main/: execute.C, pa_table.C: test: 59 table.locate [bug
14654: fixed] 60 string eq string [bug fixed]
14655:
14656: * tests/: 053.html, 054.html, 055.html, 056.html, 057.html,
14657: 058.html, 058_paf2000.png, 059.html, 060.html,
14658: results/053.processed, results/054.processed,
14659: results/055.processed, results/056.processed,
14660: results/057.processed, results/058.processed,
14661: results/059.processed, results/060.processed: test: 53
14662: string.replace 54 junctions 55 table.hash 56 call indirect 57
14663: date.create[string] 58 image.measure[png]
14664:
14665: * tests/: 052.html, outputs/049.processed, outputs/050.processed,
14666: outputs/051.processed, results/052.processed: test: 52
14667: pre/match/post test: passed AS-IT-WERE, but wrong :) separate
14668: task: fix that
14669:
14670: 2003-03-03 paf
14671:
14672: * tests/: 043.html, 044.html, 045.html, 046.html, 047.html,
14673: 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p, Makefile,
14674: parser-cygwin.sh, parser-unix.sh, run_parser.sh,
14675: outputs/049.processed, outputs/050.processed,
14676: outputs/051.processed, results/001.processed,
14677: results/002.processed, results/003.processed,
14678: results/005.processed, results/006.processed,
14679: results/008.processed, results/009.processed,
14680: results/011.processed, results/012.processed,
14681: results/013.processed, results/014.processed,
14682: results/015.processed, results/016.processed,
14683: results/017.processed, results/020.processed,
14684: results/021.processed, results/022.processed,
14685: results/024.processed, results/025.processed,
14686: results/026.processed, results/027.processed,
14687: results/028.processed, results/029.processed,
14688: results/030.processed, results/031.processed,
14689: results/049.processed, results/050.processed,
14690: results/051.processed, results/043.processed,
14691: results/044.processed, results/045.processed,
14692: results/046.processed, results/047.processed,
14693: results/048.processed: tests: 43,44,45 date rolls 46
14694: autoevaluating junction 47 table.select 48 name with subvar 49
14695: hash-creating switch 50 process 51 started parent/child, works as
14696: it were but it were NOT GOOD, created separate task to fix that
14697:
14698: * tests/: 042.html, results/042.processed: test: 42
14699: exception.handled
14700:
14701: * tests/: 041.html, results/041.processed: test: 41 table.locate by
14702: expression
14703:
14704: * tests/: 040.html, results/040.processed: test: 39 method result
14705: of type table 40 method param junction auto evaluate
14706:
14707: * tests/: 039.html, results/039.processed: test: 37 method result
14708: of type table
14709:
14710: * src/main/pa_request.C, src/types/pa_vmath.C, tests/033.html,
14711: tests/034.html, tests/035.html, tests/036.html, tests/037.html,
14712: tests/038.html, tests/results/033.processed,
14713: tests/results/034.processed, tests/results/035.processed,
14714: tests/results/036.processed, tests/results/037.processed,
14715: tests/results/038.processed: tests: 33 string.replace 34
14716: string.upper 35 table created 36 local/global vars with juntions
14717: 37 table clone 38 math PI & number formatting
14718:
14719: math class registring typo fixed
14720:
14721: * src/classes/op.C, src/include/pa_request.h,
14722: src/include/pa_string.h, src/main/execute.C,
14723: src/main/pa_request.C, src/main/pa_string.C, src/main/untaint.C,
14724: src/types/pa_vcode_frame.h, src/types/pa_wcontext.h,
14725: tests/032.html, tests/results/032.processed: uchar changed to
14726: String_UL in all places [was not everywhere] untaint test: 032
14727:
14728: * src/targets/cgi/parser3.C, tests/004.html, tests/Makefile,
14729: tests/results/004.processed, tests/parser-cygwin.sh,
14730: tests/parser-unix.sh: removed -H command line key, now testing
14731: using .sh file with SERVER_SOFTWARE=xxx
14732:
14733: 2003-02-26 paf
14734:
14735: * src/main/execute.C, src/types/pa_vstateless_class.h,
14736: tests/024.html, tests/025.html, tests/026.html, tests/027.html,
14737: tests/028.html, tests/029.html, tests/030.html, tests/031.html,
14738: tests/results/024.processed, tests/results/025.processed,
14739: tests/results/026.processed, tests/results/027.processed,
14740: tests/results/028.processed, tests/results/029.processed,
14741: tests/results/030.processed, tests/results/031.processed: fixed
14742: bug with name_cstr mutable CharPtr more tests
14743:
14744: * src/: include/pa_sapi.h, main/pa_globals.C, main/pa_memory.C,
14745: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: SAPI::abort
14746: << abort. die now just exits
14747:
14748: * src/classes/classes.awk, src/classes/classes.h,
14749: src/classes/date.C, src/classes/double.C, src/classes/file.C,
14750: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
14751: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
14752: src/classes/op.C, src/classes/response.C, src/classes/string.C,
14753: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
14754: src/classes/xnode.C, src/include/pa_memory.h,
14755: src/include/pa_sapi.h, src/targets/cgi/parser3.C,
14756: src/targets/isapi/parser3isapi.C, src/types/pa_venv.h,
14757: src/types/pa_vform.C, tests/015.html, tests/016.html,
14758: tests/017.html, tests/018.html, tests/019.html,
14759: tests/019paf2001.gif, tests/020.html, tests/021.html,
14760: tests/022.html, tests/023.html, tests/022_dir/a.html,
14761: tests/022_dir/b.txt, tests/022_dir/c.htm,
14762: tests/results/015.processed, tests/results/016.processed,
14763: tests/results/017.processed, tests/results/018.processed,
14764: tests/results/019.processed, tests/results/020.processed,
14765: tests/results/021.processed, tests/results/022.processed,
14766: tests/results/023.processed: methoded_array now contains all Mxxx
14767: classes SAPI::get_env now returns info on pool more tests
14768:
14769: * src/include/pa_array.h, src/include/pa_hash.h,
14770: src/include/pa_memory.h, src/main/pa_charset.C, tests/001.html,
14771: tests/002.html, tests/003.html, tests/004.html, tests/005.html,
14772: tests/006.html, tests/007.html, tests/008.html, tests/009.html,
14773: tests/010.html, tests/011.html, tests/012.html, tests/013.html,
14774: tests/014.html, tests/Makefile, tests/outputs/create-dir,
14775: tests/results/001.processed, tests/results/002.processed,
14776: tests/results/003.processed, tests/results/004.processed,
14777: tests/results/005.processed, tests/results/006.processed,
14778: tests/results/007.processed, tests/results/008.processed,
14779: tests/results/009.processed, tests/results/010.processed,
14780: tests/results/011.processed, tests/results/012.processed,
14781: tests/results/013.processed, tests/results/014.processed: hash
14782: cloning fixed
14783:
14784: 2003-02-25 paf
14785:
14786: * src/main/pa_common.C: typo fixed
14787:
14788: 2003-02-24 paf
14789:
14790: * src/types/pa_vcookie.C: fixed all places with bad get_string(0)
14791: [one remained]
14792:
14793: * src/: include/pa_request.h, main/execute.C: few bad get_string(0)
14794: [should have been get_string(&pool)] todo: check other such calls
14795:
14796: * src/: main/compile.tab.C, main/execute.C, types/pa_vfile.h:
14797: test10, bad lookups
14798:
14799: xxx* xxx=smartptr.get(); << is bad style, after ";" original
14800: object got destructed, and xxx points to sky
14801:
14802: * ChangeLog, src/classes/string.C: match bug fixed
14803:
14804: * src/types/pa_vmail.C: body [text/html] transcoded to
14805: $.charset[specified] now
14806:
14807: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
14808: which failed to handle sigsetjmp+throw: crashed inside of
14809: pre-throw code. rewritten simplier [though duplicating
14810: closesocket code]
14811:
14812: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
14813: which failed to handle sigsetjmp+throw: crashed inside of
14814: pre-throw code. rewritten simplier [though duplicating
14815: closesocket code]
14816:
14817: 2003-02-21 paf
14818:
14819: * operators.txt, src/targets/cgi/parser3.C, src/types/pa_vcookie.C:
14820: $cookie:name[$.expires[date << can be now]]
14821:
14822: written makefile with regression tests [raw]
14823:
14824: * src/targets/cgi/parser3.C: MAKE_TEST must be used inside of 'make
14825: tests' only [it's not forcing CGI mode now] now use -H to output
14826: CGI header when parser used in command line [useful for tests
14827: also]
14828:
14829: * src/targets/cgi/parser3.C: MAKE_TEST environment variable
14830: switches on CGI mode, and is used in regression tests
14831:
14832: * src/: include/pa_request.h, main/pa_request.C,
14833: targets/cgi/parser3.C, types/pa_vcookie.h, types/pa_venv.h: env
14834: fixed
14835:
14836: * src/: include/pa_memory.h, main/pa_memory.C: inlined memory
14837: handling pa_*
14838:
14839: * src/: include/pa_memory.h, main/pa_memory.C, include/pa_array.h,
14840: include/pa_exception.h, include/pa_pool.h, main/Makefile.am,
14841: main/main.dsp, main/pa_array.C, main/pa_pool.C: reorganized
14842: memory handling files
14843:
14844: * src/main/pa_array.C: pool::format_integer terminator fixed
14845:
14846: * src/: main/execute.C, targets/cgi/parser3.C: release mode now
14847: compiles OK test to show benefits of free
14848:
14849: * src/: classes/file.C, classes/image.C, classes/mail.C,
14850: classes/op.C, classes/xdoc.C, main/pa_charset.C, main/pa_exec.C,
14851: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
14852: types/pa_vimage.C, types/pa_vxdoc.h: fixed all cstr's that must
14853: use pool [as the one in ^process]
14854:
14855: * src/classes/op.C: fixed process. sould now check for all cstr's
14856: -- some must use pool [as the one in ^process]
14857:
14858: 2003-02-20 paf
14859:
14860: * src/: classes/date.C, classes/double.C, classes/file.C,
14861: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
14862: classes/math.C, classes/op.C, classes/response.C,
14863: classes/string.C, classes/table.C, classes/void.C,
14864: classes/xdoc.C, classes/xnode.C, main/pa_string.C,
14865: types/pa_method.h, types/pa_value.C, types/pa_vmethod_frame.h:
14866: string cmp fixed
14867:
14868: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C: form
14869: values passed OK now
14870:
14871: 2003-02-19 paf
14872:
14873: * src/: classes/form.C, include/pa_charset.h, include/pa_pool.h,
14874: main/pa_charset.C, main/pa_exception.C, main/pa_request.C,
14875: main/pa_stylesheet_manager.C, targets/cgi/parser3.C,
14876: targets/isapi/parser3isapi.dsp, types/pa_vcookie.C,
14877: types/pa_vform.C, types/pa_vmail.C, types/pa_vxnode.C: found&kill
14878: all remaning leaks resulted from pooled::malloc calls [excluding
14879: in gd -- planning complete rewrite extremely ugly code]
14880:
14881: * src/targets/isapi/: pa_pool.C, pool_storage.h: removed unneeded
14882: files
14883:
14884: 2003-02-17 paf
14885:
14886: * src/: classes/date.C, classes/double.C, classes/file.C,
14887: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
14888: classes/response.C, classes/string.C, classes/table.C,
14889: classes/xdoc.C, classes/xnode.h, include/pa_stack.h,
14890: include/pa_stylesheet_connection.h,
14891: include/pa_stylesheet_manager.h, sql/pa_sql_driver.h,
14892: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
14893: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.h,
14894: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
14895: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
14896: types/pa_wcontext.h, types/pa_wwrapper.h: fixed all remained bugs
14897: of unitialized simple-typed field
14898:
14899: * src/: classes/classes.C, classes/classes.h, main/execute.C,
14900: main/pa_charset.C, main/pa_request.C: another bug of unitialized
14901: simple-typed field fixed. todo: find&kill all like that one
14902:
14903: * src/: main/execute.C, targets/cgi/pa_pool.C,
14904: targets/cgi/parser3.C, targets/cgi/pool_storage.h: few bugs in
14905: debug output fixed
14906:
14907: * src/: include/pa_stack.h, main/compile.C, main/execute.C,
14908: main/pa_request.C: stack-stored items need extra .ref to prevent
14909: object_ptr from delete[them]
14910:
14911: * src/: classes/date.C, classes/op.C, classes/table.C,
14912: classes/xdoc.C, classes/xnode.C, include/pa_array.h,
14913: include/pa_charset.h, main/Makefile.am, main/main.dsp,
14914: main/pa_charset.C, main/pa_common.C,
14915: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
14916: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
14917: types/pa_vmail.C: fixed more leaks resulted from pooled::malloc
14918: calls
14919:
14920: * src/: main/pa_request.C, targets/cgi/parser3.C, types/pa_vfile.C:
14921: couple mem leaks rusulted from old pooled::malloc usage.
14922: todo:find more like those
14923:
14924: * src/main/: compile.C, compile_tools.C: 2*2!
14925:
14926: * src/: include/pa_array.h, include/pa_request.h, main/execute.C:
14927: stackItem fixed [there were no string on stack before]
14928:
14929: * src/: main/execute.C, main/pa_request.C,
14930: types/pa_vmethod_frame.C: first letters out OK
14931:
14932: * src/: classes/classes.C, include/pa_array.h, include/pa_hash.h,
14933: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
14934: main/pa_string.C, main/untaint.C, types/pa_value.h,
14935: types/pa_vint.h, types/pa_vstateless_class.h, types/pa_vstring.h,
14936: types/pa_vvoid.h, types/pa_wcontext.h: class fields of simple
14937: type not initialized with zeros :( while class fields of class
14938: types initialized with default constructors. learn C++
14939:
14940: * src/: classes/classes.awk, classes/double.C, classes/file.C,
14941: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
14942: classes/math.C, classes/xdoc.C, classes/xnode.C,
14943: include/pa_array.h, include/pa_string.h, main/pa_exec.C,
14944: types/pa_vmail.C: parser3.exe - 0 error(s), 0 warning(s)
14945:
14946: 2003-02-14 paf
14947:
14948: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
14949: 13 link errors
14950:
14951: * src/: classes/file.C, include/pa_request.h, main/pa_request.C,
14952: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
14953: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
14954: types/pa_vimage.C, types/pa_vtable.C: all compiled, only 14 link
14955: errors :)
14956:
14957: * src/: classes/classes.C, classes/classes.awk, classes/file.C,
14958: classes/hash.C, classes/mail.C, classes/op.C,
14959: include/pa_common.h, include/pa_request.h, include/pa_sapi.h,
14960: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C,
14961: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C:
14962: classes.lib - 0 error(s), 0 warning(s) parser.C compiled
14963:
14964: * src/: classes/classes.dsp, classes/op.C, classes/string.C,
14965: classes/table.C, include/pa_common.h, include/pa_globals.h,
14966: include/pa_pool.h, include/pa_request.h, main/pa_globals.C,
14967: main/pa_request.C, types/pa_value.h, types/pa_vhash.h,
14968: types/pa_vint.h, types/types.dsp: op compiled
14969:
14970: * src/: classes/classes.dsp, classes/response.C, classes/string.C,
14971: include/pa_dictionary.h, include/pa_string.h, main/pa_string.C,
14972: main/untaint.C, types/pa_vtable.h: string, response compiled
14973:
14974: 2003-02-07 paf
14975:
14976: * src/: classes/table.C, types/pa_vtable.h: table compiled
14977:
14978: 2003-02-06 paf
14979:
14980: * src/: classes/mail.C, include/pa_request.h, main/pa_request.C:
14981: mail compiled
14982:
14983: * src/: classes/image.C, classes/string.C, classes/xdoc.C,
14984: include/pa_common.h, include/pa_hash.h, main/pa_common.C,
14985: types/pa_vfile.h, types/pa_vimage.h: image compiled
14986:
14987: * src/classes/: file.C, form.C: form compiled
14988:
14989: * src/: classes/classes.dsp, classes/file.C, include/pa_common.h,
14990: include/pa_exec.h, main/pa_common.C, main/pa_exec.C,
14991: types/pa_vfile.C, types/pa_vfile.h: file compiled
14992:
14993: * src/: classes/hash.C, classes/math.C, types/pa_vmath.C,
14994: types/pa_vmath.h: math compiled [win32]
14995:
14996: * src/: classes/hash.C, include/pa_hash.h, include/pa_table.h,
14997: types/pa_vstring.h: hash compiled
14998:
14999: 2003-02-04 paf
15000:
15001: * src/: classes/date.C, classes/hash.C, include/pa_exec.h,
15002: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
15003: include/pa_table.h, main/pa_common.C, main/pa_exec.C,
15004: main/pa_string.C, types/pa_method.h, types/pa_vform.C,
15005: types/pa_vhash.h: hash 50% compiled
15006:
15007: * src/: classes/date.C, classes/file.C, classes/hash.C,
15008: classes/image.C, classes/mail.C, classes/math.C, classes/op.C,
15009: classes/string.C, classes/table.C, classes/xdoc.C,
15010: classes/xnode.C, include/pa_request.h, main/pa_globals.C,
15011: main/pa_string.C: date compiled
15012:
15013: * src/classes/: classes.dsp, double.C: double compiled
15014:
15015: * src/: classes/date.C, classes/double.C, classes/file.C,
15016: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
15017: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
15018: classes/string.C, classes/table.C, classes/void.C,
15019: classes/xdoc.C, classes/xnode.C, types/pa_vdouble.h,
15020: types/pa_vhash.h, types/pa_vint.h, types/pa_vstring.h,
15021: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.h: int
15022: compiled
15023:
15024: * src/: classes/date.C, classes/double.C, classes/file.C,
15025: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
15026: classes/math.C, classes/op.C, classes/response.C,
15027: classes/string.C, classes/table.C, classes/void.C,
15028: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
15029: types/pa_vvoid.h: void compiled :)
15030:
15031: * src/: include/pa_globals.h, main/pa_cache_managers.C,
15032: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
15033: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
15034: main/pa_globals.C, main/pa_pool.C, main/pa_sql_driver_manager.C,
15035: main/pa_string.C, main/pa_uue.C, main/untaint.C,
15036: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.C,
15037: types/pa_vimage.C, types/pa_vmath.C, types/pa_vrequest.C,
15038: types/pa_vresponse.C, types/pa_vstateless_class.C,
15039: types/pa_vstatus.C, types/pa_vstring.C, types/pa_vtable.C,
15040: types/pa_wcontext.C, types/types.dsp: removed stupid
15041: value_includes.h
15042:
15043: * src/types/: pa_value.C, pa_value_includes.h, pa_vrequest.C:
15044: trying to remove stupid value_includes.h
15045:
15046: * src/main/pa_exec.C: pa_exec compiled on win32
15047:
15048: * src/main/pa_exec.C: libmain.a compiled on six [unix]
15049:
15050: * src/: include/pa_globals.h, include/pa_request.h,
15051: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
15052: types/pa_vcookie.C, types/pa_vdate.h, types/pa_vfile.C,
15053: types/pa_vfile.h, types/pa_vmail.C, types/pa_vobject.C,
15054: types/pa_vrequest.C, types/pa_vstateless_class.C,
15055: types/pa_vstatus.C, types/pa_vtable.C: libtypes.a compiled gcc
15056:
15057: * src/: include/pa_config_includes.h, include/pa_dictionary.h,
15058: main/pa_common.C, main/pa_dictionary.C, main/pa_exec.C,
15059: main/pa_socks.C: libmain.a gcc and mail.lib msvc++ compiled
15060:
15061: * src/: include/pa_array.h, include/pa_config_includes.h,
15062: include/pa_dictionary.h, main/pa_dictionary.C, main/pa_exec.C,
15063: main/pa_socks.C, main/pa_sql_driver_manager.C: gcc libmain.a
15064: compiled
15065:
15066: * src/main/pa_globals.C: merged changes from 1.149-1.150 (stupid
15067: name conflicts)
15068:
15069: * src/: main/compile_tools.h, main/execute.C, main/pa_table.C,
15070: types/pa_vmethod_frame.h, types/pa_vvoid.h: yuk: gcc on cygwin
15071: yelds "virtual memory exhausted" while trying to compile
15072: execute.C [eating up to 127MB]
15073:
15074: 2003-02-03 paf
15075:
15076: * src/: include/pa_config_includes.h, include/pa_hash.h,
15077: include/pa_operation.h, include/pa_pool.h, include/pa_string.h,
15078: main/pa_common.C, types/pa_value.C, types/pa_value.h,
15079: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
15080: types/pa_vint.h, types/pa_vjunction.h,
15081: types/pa_vstateless_class.h, types/pa_vstring.h, types/types.dsp:
15082: started gcc compiling pa_common compiled
15083:
15084: * src/: include/pa_exception.h, include/pa_pool.h,
15085: main/pa_exception.C: exception gcc change #1
15086:
1.116 moko 15087: * src/include/: Makefile.am, pa_hash.h, pa_pool.h: gcc refused to
15088: compile _P identifier. it replaced it to some strange 0x0000040
1.95 moko 15089:
15090: * src/types/: pa_vmath.C, pa_vmethod_frame.C: vmath compiled
15091:
15092: * src/types/pa_vtable.C: vtable compiled
15093:
15094: * src/types/: pa_vstring.C, pa_vstring.h: vstring compiled
15095:
15096: * src/: include/pa_cache_managers.h, main/pa_request.C,
15097: types/pa_vstatus.C, types/pa_vstatus.h: vstatus compiled
15098:
15099: * src/types/pa_vstateless_class.C: vstateless_class compiled
15100:
15101: * src/types/: pa_vresponse.C, pa_vresponse.h: vresponse compiled
15102:
15103: * src/types/pa_vrequest.C: vrequest compiled
15104:
15105: * src/types/: pa_value.C, pa_value.h, pa_vclass.C, pa_vclass.h,
15106: pa_vobject.C, pa_vobject.h: vobject compiled
15107:
15108: * src/: classes/form.C, classes/mail.C, include/pa_request.h,
15109: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
15110: types/pa_vform.C, types/pa_vmail.C, types/pa_vmail.h: vmail
15111: compiled
15112:
15113: * src/types/: pa_vimage.C, pa_vimage.h: vimage compiled
15114:
15115: * src/: include/pa_pool.h, main/pa_request.C, types/pa_value.C,
15116: types/pa_vclass.C, types/pa_vcookie.C, types/pa_vcookie.h,
15117: types/pa_vform.C, types/pa_vform.h, types/pa_vobject.h: vform
15118: compiled
15119:
15120: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
15121: main.lib - 0 error(s), 0 warning(s)
15122:
15123: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
15124: types/pa_value.h, types/pa_vmethod_frame.h: execute compiled
15125:
15126: 2003-01-31 paf
15127:
15128: * src/: include/pa_array.h, include/pa_operation.h,
15129: include/pa_request.h, main/execute.C, main/main.dsp,
15130: types/pa_vjunction.h: started last file from main library:
15131: execute
15132:
15133: * src/: include/pa_request.h, include/pa_sapi.h,
15134: main/compile.tab.C, main/compile.y, main/compile_tools.h,
15135: main/pa_request.C, targets/cgi/parser3.C,
15136: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vfile.h,
15137: types/pa_vhash.h: pa_request compiled
15138:
15139: * src/: classes/op.C, classes/string.C, include/pa_common.h,
15140: include/pa_globals.h, include/pa_request.h,
15141: include/pa_sql_connection.h, main/compile.tab.C, main/compile.y,
15142: main/execute.C, main/main.dsp, main/pa_common.C,
15143: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
15144: types/pa_vcode_frame.h, types/pa_vcookie.h, types/pa_vform.h,
15145: types/pa_vmail.C, types/pa_vmail.h, types/pa_vresponse.h,
15146: types/pa_vtable.h, types/pa_wcontext.C, types/pa_wcontext.h,
15147: types/types.dsp: most pa_request compiled
15148:
15149: * src/: classes/classes.C, classes/classes.h, classes/date.C,
15150: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
15151: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
15152: classes/op.C, classes/response.C, classes/string.C,
15153: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
15154: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
15155: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
15156: include/pa_config_fixed.h, include/pa_config_includes.h,
15157: include/pa_dictionary.h, include/pa_dir.h,
15158: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
15159: include/pa_hash.h, include/pa_opcode.h, include/pa_operation.h,
15160: include/pa_pool.h, include/pa_request.h,
15161: include/pa_request_charsets.h, include/pa_request_info.h,
15162: include/pa_sapi.h, include/pa_socks.h,
15163: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
15164: include/pa_stack.h, include/pa_string.h,
15165: include/pa_stylesheet_connection.h,
15166: include/pa_stylesheet_manager.h, include/pa_table.h,
15167: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
15168: lib/ltdl/config_fixed.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
15169: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, lib/pcre/dftables.c,
15170: lib/pcre/get.c, lib/pcre/maketables.c, lib/pcre/pcre.c,
15171: lib/pcre/pcre.h, lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
15172: main/compile.C, main/compile.tab.C, main/compile.y,
15173: main/compile_tools.C, main/compile_tools.h, main/execute.C,
15174: main/main.dsp, main/pa_cache_managers.C, main/pa_charset.C,
15175: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
15176: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
15177: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
15178: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
15179: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
15180: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/getopt.c,
15181: targets/cgi/getopt.h, targets/cgi/pa_pool.C,
15182: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
15183: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
15184: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
15185: targets/isapi/pool_storage.h, types/pa_value.C, types/pa_value.h,
15186: types/pa_value_includes.h, types/pa_vbool.h, types/pa_vclass.C,
15187: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
15188: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
15189: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
15190: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
15191: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
15192: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
15193: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
15194: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
15195: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
15196: types/pa_vresponse.h, types/pa_vstateless_class.C,
15197: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
15198: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
15199: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
15200: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
15201: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
15202: types/pa_wcontext.h, types/pa_wwrapper.h: grammar compiled
15203:
15204: * ChangeLog, src/classes/classes.h, src/classes/op.C,
15205: src/include/pa_cache_managers.h, src/include/pa_charset.h,
15206: src/include/pa_charsets.h, src/include/pa_common.h,
15207: src/include/pa_dictionary.h, src/include/pa_exception.h,
15208: src/include/pa_exec.h, src/include/pa_pool.h,
15209: src/include/pa_request.h, src/include/pa_sapi.h,
15210: src/include/pa_sql_connection.h,
15211: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
15212: src/include/pa_table.h, src/include/pa_uue.h, src/main/compile.C,
15213: src/main/compile.tab.C, src/main/compile_tools.C,
15214: src/main/compile_tools.h, src/main/main.dsp,
15215: src/main/pa_charset.C, src/main/pa_charsets.C,
15216: src/main/pa_common.C, src/main/pa_dictionary.C,
15217: src/main/pa_exception.C, src/main/pa_exec.C,
15218: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
15219: src/main/pa_string.C, src/main/pa_table.C, src/main/pa_uue.C,
15220: src/main/untaint.C, src/types/pa_value.C, src/types/pa_value.h,
15221: src/types/pa_vclass.h, src/types/pa_vcookie.C,
15222: src/types/pa_vcookie.h, src/types/pa_vdate.h,
15223: src/types/pa_vdouble.h, src/types/pa_venv.h,
15224: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.h,
15225: src/types/pa_vhash.h, src/types/pa_vimage.C,
15226: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.C,
15227: src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
15228: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
15229: src/types/pa_vobject.C, src/types/pa_vobject.h,
15230: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
15231: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
15232: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
15233: src/types/pa_vstateless_object.h, src/types/pa_vstatus.h,
15234: src/types/pa_vstring.h, src/types/pa_vtable.h,
15235: src/types/pa_vvoid.h, src/types/pa_wcontext.C,
15236: src/types/pa_wcontext.h, src/types/pa_wwrapper.h: ConstStringPtr
15237: died, long live StringPtr
15238:
15239: 2003-01-30 paf
15240:
15241: * src/: include/pa_charset.h, include/pa_request.h,
15242: include/pa_sql_driver_manager.h, main/compile.tab.C,
15243: main/compile.y, main/compile_tools.h, main/pa_request.C,
15244: types/pa_vobject.h, types/pa_vstatus.h: grammar compiled
15245:
15246: * src/: classes/classes.h, include/pa_pool.h, main/compile.C,
15247: main/compile.tab.C, types/pa_value.h, types/pa_vfile.h,
15248: types/pa_vhash.h, types/pa_vmethod_frame.h,
15249: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
15250: types/types.dsp: vstateless_class compiled
15251:
15252: * src/main/compile.C: compile compiled
15253:
15254: * src/: include/pa_array.h, include/pa_operation.h,
15255: include/pa_table.h, main/compile_tools.C, main/compile_tools.h,
15256: main/pa_table.C: compile_tools compiled
15257:
15258: * src/: include/pa_operation.h, main/compile.y,
15259: main/compile_tools.C, main/compile_tools.h: started
15260: compile_tools. vagues ideas of how to free compiled code
15261:
15262: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C,
15263: main/main.dsp, types/pa_value.C, types/pa_value.h,
15264: types/pa_vmethod_frame.h, types/pa_vstateless_class.h: value
15265: compiled
15266:
15267: 2003-01-29 paf
15268:
15269: * src/: include/pa_globals.h, include/pa_request.h,
15270: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
15271: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
15272: types/pa_wcontext.h, types/types.dsp: vmethodframe, pa_request.h
15273: compiled
15274:
15275: * src/lib/ltdl/config_fixed.h: libltdl compiled without warnings
15276: now
15277:
15278: * src/: include/pa_array.h, include/pa_exception.h,
15279: include/pa_pool.h, main/pa_exception.C: gd compiled
15280:
15281: * src/types/: pa_vfile.C, pa_vfile.h, pa_vimage.C, pa_vimage.h: gd
15282: compiled
15283:
15284: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
15285: types/pa_value.C, types/pa_value.h, types/pa_vfile.C,
15286: types/pa_vfile.h: vfile compiled
15287:
15288: * src/: include/pa_common.h, include/pa_globals.h,
15289: include/pa_string.h, main/pa_globals.C, types/pa_value.C,
15290: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
15291: types/pa_vform.C, types/pa_vform.h: vcookie compiled
15292:
15293: * src/: include/pa_exception.h, main/pa_cache_managers.C,
15294: main/pa_charsets.C, main/pa_common.C, main/pa_dir.C,
15295: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
15296: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
15297: main/pa_uue.C: #include "pa_value_includes.h" everywhere in main
15298:
15299: * src/: include/pa_request_charsets.h, include/pa_request_info.h,
15300: main/main.dsp, main/untaint.C: more compiled
15301:
15302: * src/: include/pa_charsets.h, include/pa_request.h,
15303: include/pa_request_info.h, include/pa_string.h,
15304: main/pa_charsets.C, types/pa_vrequest.C, types/pa_vresponse.C,
15305: types/pa_vresponse.h: vrequest compiled
15306:
15307: * src/types/: pa_value.h, pa_vdate.h, pa_vform.h, pa_vhash.h,
15308: pa_vobject.C, pa_vobject.h, pa_vrequest.C, pa_vresponse.C,
15309: pa_vresponse.h, pa_wcontext.h: vrequest compiled
15310:
15311: * src/: classes/classes.h, include/pa_charset.h,
15312: include/pa_charsets.h, include/pa_globals.h, include/pa_pool.h,
15313: include/pa_request.h, include/pa_string.h, main/main.dsp,
15314: main/pa_charset.C, main/pa_charsets.C, main/pa_globals.C,
15315: main/untaint.C, types/pa_value.h, types/pa_vdouble.h,
15316: types/pa_vfile.h, types/pa_vint.h, types/pa_vmath.C,
15317: types/pa_vrequest.C, types/pa_vrequest.h,
15318: types/pa_vstateless_class.h, types/pa_vstring.h,
15319: types/pa_vvoid.h: vrequest,vdouble,vint compiled
15320:
15321: * src/: classes/classes.h, classes/math.C, include/pa_pool.h,
15322: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
15323: main/main.dsp, types/pa_value.h, types/pa_vbool.h,
15324: types/pa_vclass.h, types/pa_vdouble.h, types/pa_venv.h,
15325: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
15326: types/pa_vjunction.h, types/pa_vmath.C, types/pa_vmath.h,
15327: types/pa_vobject.h, types/pa_vstateless_class.h,
15328: types/pa_vstateless_object.h, types/pa_vstatus.h,
15329: types/pa_vstring.h, types/types.dsp: vmath compiled
15330:
15331: 2003-01-28 paf
15332:
15333: * src/: classes/classes.h, classes/date.C, classes/file.C,
15334: classes/hash.C, classes/image.C, classes/table.C, classes/xdoc.C,
15335: classes/xnode.h, main/execute.C, main/main.dsp, types/pa_value.h,
15336: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C,
15337: types/pa_vobject.h, types/pa_vstateless_class.h: started main:
15338: compile_tools
15339:
15340: * src/: include/pa_charset.h, include/pa_exception.h,
15341: include/pa_request.h, include/pa_string.h, main/untaint.C:
15342: untaint compiled
15343:
15344: * ChangeLog, src/include/pa_array.h, src/include/pa_string.h,
15345: src/main/execute.C, src/main/untaint.C, src/types/pa_vmail.C:
15346: more compiled. struck with string::store_to needing to know
15347: source/client charsets
15348:
15349: * src/: include/pa_exception.h, include/pa_uue.h, main/pa_uue.C,
15350: types/pa_vfile.h: uue compiled
15351:
15352: * src/: include/pa_table.h, main/pa_string.C, main/pa_table.C:
15353: table compiled
15354:
15355: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
15356: main/pa_globals.C, main/pa_sql_driver_manager.C: globals compiled
15357:
15358: * src/: include/pa_charset.h, main/pa_charset.C,
15359: main/pa_charsets.C: charset/s simplified [charset::pool_for_load
15360: introduced]
15361:
15362: * src/: classes/date.C, include/pa_charset.h,
15363: include/pa_charsets.h, include/pa_globals.h, main/pa_charset.C,
15364: main/pa_charsets.C, main/pa_globals.C, main/pa_request.C:
15365: pa_charsets compiled
15366:
15367: * src/: include/pa_array.h, include/pa_exec.h, include/pa_hash.h,
15368: include/pa_pool.h, main/pa_exec.C: pa_exec win32 compiled
15369:
15370: * src/: include/pa_pool.h, main/pa_common.C, types/pa_vdouble.h:
15371: common compiled
15372:
15373: * src/: include/pa_charsets.h, main/pa_charsets.C,
15374: main/pa_sql_driver_manager.C: pa_charsets compiled
15375:
15376: * src/: include/pa_array.h, include/pa_charset.h,
15377: include/pa_charsets.h, include/pa_pool.h,
15378: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
15379: include/pa_stack.h, include/pa_string.h,
15380: main/pa_sql_driver_manager.C, types/pa_vhash.h, types/pa_vint.h:
15381: sql_driver_manager compiled
15382:
15383: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: ukranian
15384: letter i with two dots added to koi, all ukranian letters added
15385: to win1251.
15386:
15387: typographic simbol 0xb9 deleted from win1251 [strange one & were
15388: abscent from koi]
15389:
15390: 2003-01-27 paf
15391:
15392: * src/: include/pa_exception.h, include/pa_sql_connection.h,
15393: include/pa_sql_driver_manager.h, include/pa_string.h,
15394: main/pa_common.C, main/pa_exec.C, main/pa_sql_driver_manager.C,
15395: sql/pa_sql_driver.h: paused on sql_manager
15396:
15397: * src/: include/pa_cache_managers.h, include/pa_pool.h,
15398: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
15399: include/pa_stack.h, main/pa_sql_driver_manager.C,
15400: types/pa_vtable.h, types/pa_vvoid.h: vtable compiled
15401:
15402: * src/: classes/op.C, include/pa_globals.h, include/pa_hash.h,
15403: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
15404: include/pa_table.h, main/pa_sql_driver_manager.C,
15405: main/pa_table.C: table compiled
15406:
15407: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C:
15408: cache_managers compiled
15409:
15410: * src/: include/pa_array.h, include/pa_charset.h,
15411: include/pa_pool.h, main/pa_charset.C: charset compiled
15412:
15413: * src/: include/pa_pool.h, main/pa_common.C: common compiled
15414:
15415: * src/: include/pa_array.h, include/pa_common.h, include/pa_hash.h,
15416: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
15417: main/pa_string.C, types/pa_value.C, types/pa_value.h,
15418: types/pa_vhash.h, types/pa_vint.h, types/pa_vstateless_class.h,
15419: types/pa_wcontext.C, types/pa_wcontext.h: wcontext compiled
15420:
15421: 2003-01-24 paf
15422:
15423: * src/: classes/classes.C, classes/classes.h, include/pa_array.h,
15424: include/pa_common.h, include/pa_globals.h, include/pa_hash.h,
15425: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
15426: main/pa_globals.C, main/pa_string.C, types/pa_value.h,
15427: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vhash.h,
15428: types/pa_vint.h, types/pa_vjunction.h,
15429: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
15430: types/pa_vstatus.h, types/pa_vstring.h: more patched
15431:
15432: * src/: classes/op.C, include/pa_array.h, include/pa_exception.h,
15433: include/pa_hash.h, include/pa_pool.h, include/pa_string.h,
15434: include/pa_table.h, main/pa_dictionary.C, main/pa_exception.C,
15435: main/pa_string.C, main/pa_table.C: string compiled
15436:
15437: * src/: include/pa_array.h, include/pa_common.h,
15438: include/pa_dictionary.h, include/pa_exception.h,
15439: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
15440: main/pa_common.C, main/pa_dictionary.C, main/pa_exception.C,
15441: main/pa_string.C: dictionary compiled
15442:
15443: 2003-01-23 paf
15444:
15445: * src/: include/pa_array.h, include/pa_common.h,
15446: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
15447: include/pa_request.h, include/pa_string.h, main/pa_common.C,
15448: main/pa_exception.C, main/pa_globals.C, types/pa_value.C,
15449: types/pa_value.h: resurrected pool in new sense: now it's
15450: factory, producing&accounting memory chunks for read[autofree]
15451: buffers
15452:
15453: * src/: include/pa_array.h, include/pa_exception.h,
15454: include/pa_hash.h, include/pa_pool.h, include/pa_table.h,
15455: main/pa_exception.C, main/pa_table.C: table compiled
15456:
15457: * src/: classes/image.C, classes/op.C, include/pa_array.h,
15458: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
15459: include/pa_pool.h, include/pa_pragma_pack_begin.h,
15460: include/pa_pragma_pack_end.h, include/pa_sapi.h,
15461: include/pa_string.h, include/pa_table.h, include/pa_types.h,
15462: main/pa_exception.C, main/pa_globals.C, main/pa_string.C,
15463: main/pa_table.C: aint that easy
15464:
15465: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
15466: main/main.dsp: continued with Hash
15467:
15468: * src/main/pa_common.C: connect_string allocated on heap[wes on
15469: stack] now. and exception can be reported OK now [can be reported
15470: outside of pro c with that stack]
15471:
15472: 2003-01-22 paf
15473:
15474: * src/: include/pa_array.h, include/pa_charset.h,
15475: include/pa_dictionary.h, include/pa_hash.h, include/pa_pool.h,
15476: include/pa_string.h, main/pa_array.C, main/pa_hash.C,
15477: main/pa_pool.C, main/pa_string.C: started auto_ptr. PA_Object is
15478: base: contains references_count. auto_ptr template calls
15479: add_ref/release
15480:
15481: 2003-01-21 paf
15482:
15483: * src/: classes/classes.C, classes/classes.h, classes/date.C,
15484: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
15485: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
15486: classes/op.C, classes/response.C, classes/string.C,
15487: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
15488: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
15489: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
15490: include/pa_config_fixed.h, include/pa_config_includes.h,
15491: include/pa_dictionary.h, include/pa_dir.h,
15492: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
15493: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
15494: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
15495: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
15496: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
15497: include/pa_stack.h, include/pa_string.h,
15498: include/pa_stylesheet_connection.h,
15499: include/pa_stylesheet_manager.h, include/pa_table.h,
15500: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
15501: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
15502: lib/pcre/pcre_parser_ctype.c, main/compile.C,
15503: main/compile_tools.C, main/compile_tools.h, main/execute.C,
15504: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
15505: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
15506: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
15507: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
15508: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
15509: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
15510: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
15511: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
15512: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
15513: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
15514: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
15515: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
15516: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
15517: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
15518: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
15519: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
15520: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
15521: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
15522: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
15523: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
15524: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
15525: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
15526: types/pa_vstateless_object.h, types/pa_vstatus.C,
15527: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
15528: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
15529: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
15530: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
15531: types/pa_wwrapper.h, main/compile.tab.C, main/compile.y:
15532: 2002->2003
15533:
15534: 2003-01-16 paf
15535:
15536: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
15537: src/main/pa_globals.C: http:// introducing $.any-status(1)
15538:
15539: * operators.txt, src/include/pa_config_fixed.h,
15540: src/main/pa_common.C: http request now return status. and not
15541: fail on status!=200
15542:
15543: 2003-01-15 paf
15544:
15545: * src/main/pa_globals.C: localized pa_xmlFileRead/Close
15546:
15547: 2003-01-14 paf
15548:
15549: * src/lib/ltdl/: config.guess, config.sub, install-sh, missing,
15550: mkinstalldirs: removed some ancient files [they in / really]
15551:
15552: * src/lib/ltdl/: config_fixed.h, libltdl.dsp, ltdl.c: ltdl.c
15553: regretfully needed patch in two places. in config_fixed.h made
15554: stubs for lib to compile in MSVC
15555:
15556: 2003-01-13 paf
15557:
15558: * config.guess, config.sub, ltmain.sh: removed last piece of
15559: configure.in(libtool) hacks
15560:
1.116 moko 15561: * src/lib/ltdl/: COPYING.LIB, acinclude.m4, config.h,
1.95 moko 15562: config_auto.h.in, configure, configure.in, libltdl.dsp, ltdl.c,
15563: ltdl.h: moved to latest libtool (1.4.3)
15564:
15565: 2003-01-10 paf
15566:
15567: * src/lib/ltdl/: configure, configure.in: PROG_NM
15568:
15569: * src/main/pa_globals.C: moved to latest xml lib versions, changed
15570: patches. libxml2 >= 2.5.1
15571: [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >= 1.0.23
15572: [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >= 0.7.2
15573: [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
15574:
15575: * INSTALL: moved to latest versions of xml libs libxml2 >=
15576: 2.5.1 [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >=
15577: 1.0.23 [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >=
15578: 0.7.2 [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
15579:
15580: 2003-01-09 paf
15581:
15582: * INSTALL: xml,xslt,gdome lib urls updated
15583:
15584: * config.guess, config.sub, missing, mkinstalldirs,
1.116 moko 15585: src/include/pa_config_auto.h.in, src/lib/ltdl/config_auto.h.in,
1.95 moko 15586: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
1.116 moko 15587: src/targets/cgi/Makefile.am: moved to autoconf 2.57 & automake
15588: 1.7.2
1.95 moko 15589:
15590: * depcomp: moving to automake 1.7.2
15591:
15592: 2002-12-27 paf
15593:
15594: * src/include/pa_version.h: 0007
15595:
15596: * src/doc/: aliased.dox, index.dox, module.dox, pooled.dox: removed
15597: outdated parts, made links to language docs
15598:
15599: * src/include/pa_config_auto.h.in: comment
15600:
15601: 2002-12-26 paf
15602:
15603: * src/classes/file.C: ^file:fullpath[a.gif] when document root did
15604: not contain trailing / fixed.
15605:
15606: * INSTALL: changing SAFE_MODE politics
15607:
15608: * src/include/pa_config_auto.h.in: changing SAFE_MODE politics
15609:
15610: * src/main/: pa_common.C, pa_exec.C: changing SAFE_MODE politics
15611:
15612: 2002-12-25 paf
15613:
15614: * src/main/pa_globals.C: optimized-xml
15615:
15616: * src/main/pa_globals.C: optimized-as-is
15617:
15618: 2002-12-24 paf
15619:
15620: * src/main/: pa_common.C, pa_pool.C: pool::copy on zero size|ptr
15621: fixed [were really called with zero size when .html?a=&b=]
15622:
15623: * src/classes/mail.C: $MAIL in @conf now invalid when configured
15624: with --with-sendmail
15625:
15626: * src/main/pa_exec.C: fork/pipe error now [old always-pipe-error
15627: fixed]
15628:
15629: 2002-12-23 paf
15630:
15631: * src/types/pa_vcookie.C: $cookie:field[put value] fixed [were
15632: ignoring parameters & were storing only string with default
15633: expires
15634:
15635: * src/main/pa_charset.C: From: "Victor Fedoseev" <vvf_ru@mail.ru>
15636: To: "Alexandr Petrosian (PAF)" <PAF@design.ru> Sent: Monday,
15637: December 23, 2002 4:22 AM Subject: bug â
15638: Charset::transcode_buf2xchar
15639:
15640: 2002-12-20 paf
15641:
15642: * src/targets/cgi/parser3.C: removed last \n appending in non-win32
15643: non-cgi [script] runs
15644:
15645: 2002-12-19 paf
15646:
15647: * INSTALL: --without-iconv recommended [it crashes on some systems
15648: [tested on elik]] moreover, it's not needed there [parser
15649: registers charsets itself]
15650:
15651: * INSTALL: --without-iconv recommended [it crashes on some systems
15652: [tested on elik]]
15653:
15654: * operators.txt, src/include/pa_globals.h,
15655: src/include/pa_request.h, src/main/pa_globals.C,
15656: src/main/pa_request.C: $response:download
15657:
15658: * src/classes/mail.C: 'to' check bugfix [now checked only on ms
15659: compiler [win32]].
15660:
15661: 2002-12-18 paf
15662:
15663: * src/classes/xdoc.C: doc->URL on xdoc.load set correctly now
15664:
15665: 2002-12-17 paf
15666:
15667: * src/targets/cgi/parser3.C: merged die&iis changes
15668:
15669: * src/targets/cgi/parser3.C: 1. on win32 in die: abort() reverted
15670: to exit(1) 2. more flexible iilegal call check
15671:
15672: 2002-12-16 paf
15673:
15674: * ltmain.sh: some automakes silly insist on having this handy
15675:
15676: * src/main/untaint.C: filespec russian small 'r' changed to latin
15677: 'p' bug fix
15678:
15679: 2002-12-15 paf
15680:
15681: * src/main/untaint.C: filespec russian small 'r' changed to latin
15682: 'p'
15683:
15684: * configure.in, src/include/pa_config_auto.h.in,
15685: src/main/compile.C, src/main/pa_common.C: merged small changes
15686: from branch 6 to HEAD
15687:
15688: * src/main/compile.C: removed warning
15689:
15690: * src/main/pa_common.C: ftruncate having checked
15691:
15692: * configure.in, src/include/pa_version.h: new version
15693:
15694: 2002-12-14 paf
15695:
15696: * src/classes/table.C: removed unnecessary code
15697:
15698: * src/sql/pa_sql_driver.h: exception type fixed
15699:
15700: 2002-12-09 paf
15701:
15702: * src/types/pa_vvoid.h: $void.store[now] error
15703:
15704: * src/targets/cgi/parser3.C: ::die now tries to write core dump
15705:
15706: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: ::die now
15707: tries to write core dump
15708:
15709: * src/targets/cgi/parser3.C: ::die now tries to write core dump
15710:
15711: * src/: classes/hash.C, classes/string.C, classes/table.C,
15712: classes/void.C, main/pa_sql_driver_manager.C,
15713: sql/pa_sql_driver.h: changed exception handling mech in sql
15714: handlers #2
15715:
15716: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: changed
15717: exception handling mech in sql handlers
15718:
15719: * src/sql/pa_sql_driver.h: changed exception handling mech in sql
15720: handlers
15721:
15722: * src/: classes/hash.C, classes/string.C, classes/table.C,
15723: classes/void.C, main/pa_sql_driver_manager.C,
15724: sql/pa_sql_driver.h: changed exception handling mech in sql
15725: handlers
15726:
1.116 moko 15727: * configure.in: removed configure.in:AC_LIBTOOL, it caused automake
15728: to write makefile which used libtool to install things, which is
15729: not needed
1.95 moko 15730:
15731: 2002-12-06 paf
15732:
15733: * operators.txt, src/main/compile.tab.C, src/types/pa_vhash.h:
15734: $hash.fields -- pseudo field to make 'hash' more like 'table'
15735:
15736: 2002-12-05 paf
15737:
15738: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp
15739: cc/bcc OK now
15740:
15741: * src/main/untaint.C: mail header closed properly
15742:
15743: * src/: main/pa_common.C, main/untaint.C, types/pa_vmail.C: mail
15744: header ',' allowed. still bugs in smtp [only one receiptient
15745: works, cc, bcc ignored now, and MAILED ;)]
15746:
15747: [strncpy killed, memnchr used]
15748:
15749: * src/main/pa_table.C: table-copy now current=0
15750:
15751: * src/main/: pa_array.C, pa_table.C: wow! found/fixed bug in
15752: lowlevel proc
15753:
15754: * src/targets/cgi/parser3.C: more checks on
15755: http://domain/parser.cgi start [maybe some getenv returns "",
15756: checked that now
15757:
15758: * src/targets/cgi/parser3.C: more checks on
15759: http://domain/parser.cgi start [maybe some getenv returns "",
15760: checked that now
15761:
15762: * src/targets/cgi/parser3.C: error logging made unbuffered [so that
15763: out-of-mem errors reached log]
15764:
15765: * src/: classes/mail.C, targets/cgi/parser3.C, types/pa_vmail.C:
15766: mail:send MIME-Version default
15767:
15768: * src/main/main.dsp: pa_version included into main.dsp
15769:
15770: 2002-12-04 paf
15771:
15772: * src/types/pa_vform.C: $form:field string value cut by premature 0
15773:
15774: * parser3.dsw, src/main/compile.tab.C, src/main/main.dsp:
15775: lib/libltdl -> lib/ltdl Win32 changes. s
15776:
15777: * src/classes/classes.awk: more strict *.C$
15778:
15779: * gnu.dsp: restored
15780:
1.116 moko 15781: * configure.in, gnu.dsp, src/lib/Makefile.am,
15782: src/lib/ltdl/Makefile.am, src/lib/ltdl/README,
15783: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
15784: src/lib/ltdl/config.h, src/lib/ltdl/config.sub,
15785: src/lib/ltdl/config_auto.h.in, src/lib/ltdl/config_fixed.h,
15786: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
15787: src/lib/ltdl/install-sh, src/lib/ltdl/libltdl.dsp,
15788: src/lib/ltdl/ltdl.c, src/lib/ltdl/ltdl.h: src/lib/ltdl/Makefile
15789: now created with /configure, not ltdl/configure, so it does have
15790: no problems with automake. ltdl/configure
15791: AC_OUTPUT(Makefile<<removed)
1.95 moko 15792:
15793: 2002-12-02 paf
15794:
15795: * operators.txt: removed outdated status:db
15796:
15797: * ChangeLog, src/classes/mail.C, src/include/pa_common.h,
15798: src/main/pa_common.C, src/main/pa_request.C,
15799: src/types/pa_vcookie.C, src/types/pa_vmail.C: http header lang of
15800: tainted parts becomes http-header
15801:
15802: 2002-11-29 paf
15803:
15804: * src/classes/date.C, src/classes/image.C, operators.txt: exif
15805: dates now objects of type date
15806:
15807: * src/classes/image.C: file.seek removed [it were used in image.C
15808: only, and for parser user this means that jpeg image has bad
15809: size in fragment's header] now used image.format
15810:
15811: * src/: include/pa_common.h, main/pa_common.C,
15812: types/pa_vresponse.C, types/pa_vresponse.h: http:// param values
15813: now handled exactly like $response:header values. e.g. can be
15814: hash [can have subattributes] & contain date values.
15815:
15816: * src/main/pa_common.C: http:// param values lang forced URI
15817:
15818: * src/main/pa_common.C: http:// tainted partes now %xx
15819:
15820: 2002-11-28 paf
15821:
15822: * operators.txt: http.timeout
15823:
15824: * src/classes/image.C: ^image.length now counts interchar space.
15825: plus space after last char
15826:
15827: * src/main/pa_string.C: PCRE_DOLLAR_ENDONLY
15828:
15829: * src/classes/image.C: ^image.font width measurer now scans full
15830: height [were -1]
15831:
15832: * configure.in: stopped double libltdl/Makefile generation
15833:
15834: * src/classes/image.C: ^image.text now outputs one pixel HIGHER
15835: chars [one top horizontal line of 1pixel height were missing]
15836:
15837: * src/classes/op.C: ^cache bug fixed. stupid compiler allowed
15838: 'false' to go into (Hash *) parameter
15839:
15840: 2002-11-27 paf
15841:
15842: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
15843: types/pa_vmail.C: response:body[file] if file nows it's name now
15844: returns content-disposition: >>attachment<<
15845:
15846: * src/classes/image.C: ^image.font << bad font file-size now
15847: properly reported
15848:
15849: 2002-11-26 paf
15850:
15851: * src/main/pa_request.C: fixed lang in reponse header
15852:
15853: * src/main/pa_common.C: utf8 prefix ignored @read text
15854:
15855: * operators.txt, src/main/pa_common.C: http:// response status!=200
15856: made exception: http.status with source=bad status#
15857:
15858: 2002-11-25 paf
15859:
15860: * configure.in, src/classes/image.C,
15861: src/include/pa_config_auto.h.in,
15862: src/include/pa_config_includes.h, src/main/Makefile.am,
1.116 moko 15863: src/main/pa_common.C, src/main/pa_globals.C: http:// and image
15864: const void related probs fixed
1.95 moko 15865:
15866: * operators.txt, src/main/pa_common.C: http fields now UPPERCASE
15867:
15868: $file[^file::load[http://there]] $file.SERVER
15869:
15870: * src/: classes/file.C, classes/image.C, classes/xdoc.C,
15871: include/pa_common.h, main/pa_common.C, main/pa_request.C: checked
15872: http options [invalid onces now reported] made default
15873: user-agent: paf
15874:
15875: * operators.txt, src/classes/file.C, src/classes/table.C,
15876: src/classes/xdoc.C, src/include/pa_common.h,
15877: src/include/pa_globals.h, src/main/pa_common.C,
15878: src/main/pa_globals.C, src/main/pa_request.C,
15879: src/types/pa_vfile.C, src/types/pa_vfile.h: table/xdoc/file::load
15880: now understand http:// prefix and additional params, sample:
15881: $rates[^xdoc::load[http://www.cbr.ru/scripts/XML_daily.asp?date_req=02/03/2002;
15882: $.USER-AGENT[parser3] ]]
15883:
15884: 2002-11-22 paf
15885:
15886: * src/classes/image.C, src/include/pa_globals.h,
15887: src/main/execute.C, src/main/pa_globals.C, src/types/pa_vimage.C,
15888: src/types/pa_vimage.h, operators.txt: $image.exif support
15889: $image.exif.DateTime & co
15890:
15891: 2002-11-21 paf
15892:
15893: * src/main/: pa_exec.C, untaint.C: cstr(UL_UNSPECIFIED) [not
15894: _PASS_APPENDED)
15895:
15896: * src/classes/image.C: jpeg size measure fixed: were badly skipping
15897: EXIF information [were big block and it's size were considered
15898: negative :(]
15899:
15900: * operators.txt, src/classes/image.C, src/include/pa_common.h,
15901: src/main/pa_common.C, src/types/pa_vmail.C: image.measure
15902: internals rewritten. no there's reader.seek, and all's ready for
15903: EXIF extraction [now we fail to measure files with EXIF info]
15904:
15905: * src/main/pa_common.C: O_TRUNCATE killed, ftruncate used instead:
15906: O_TRUNC truncates even exclusevely write-locked file [thanks to
15907: Igor Milyakov <virtan@rotabanner.com> for discovering]
15908:
15909: 2002-11-20 paf
15910:
15911: * src/targets/cgi/parser3.C: logging @signal += query_string
15912:
15913: * configure.in, src/include/pa_config_auto.h.in,
15914: src/include/pa_config_includes.h, src/targets/cgi/parser3.C:
15915: comment
15916:
15917: * src/targets/cgi/parser3.C: SIGNALS overriden @ main top
15918:
15919: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
15920: targets/cgi/parser3.C: SIGUSR1 >> writes to error_log uri of
15921: currently processed document SIGPIPE >> interrupts request
15922: processing [exception = DB rollback]
15923:
15924: * src/main/pa_exec.C: comment
15925:
15926: * src/main/pa_exec.C: pa_exec: data written only if size>0
15927:
15928: * operators.txt, src/classes/file.C: ^file::exec/cgi[file;$.stdin[]
15929: << disable HTTP-POST repassing
15930:
15931: * src/: include/pa_config_fixed.h, main/pa_common.C,
15932: main/pa_exec.C, targets/cgi/parser3.C: ^file:exec/cgi [pa_exec]
15933: pipe read errors now checked
15934:
15935: 2002-11-19 paf
15936:
15937: * src/targets/cgi/parser3.C: removed #ifdef WIN32 around check of
15938: CGI: Illegal call
15939:
15940: 2002-11-01 paf
15941:
15942: * src/main/execute.C: comment
15943:
15944: 2002-10-31 paf
15945:
15946: * src/main/execute.C: found out why, checked that for now. todo:
15947: find out a way for that user could do that
15948:
15949: * src/types/pa_vstateless_object.h: object put replaces static
15950: parent if any
15951:
15952: * src/types/pa_vobject.C: object put replaces static parent if any
15953:
15954: * src/: classes/form.C, classes/mail.C, classes/op.C,
15955: classes/xnode.h, main/compile.tab.C, main/execute.C,
15956: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
15957: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
15958: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
15959: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
15960: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
15961: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
15962: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
15963: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
15964: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
15965: types/pa_vstateless_object.h, types/pa_vstatus.C,
15966: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
15967: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
15968: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
15969: types/pa_wwrapper.h: static fix merged
15970:
15971: * src/: main/compile.tab.C, types/pa_vobject.C: killed
15972: $virtual_fields in dynamic, but one can reach derived
15973: static[class] variable from base
15974:
15975: * src/: classes/op.C, types/pa_value.h, types/pa_vmethod_frame.h,
15976: types/pa_vobject.C, types/pa_vobject.h,
15977: types/pa_vstateless_class.C, types/pa_vstateless_class.h: fixed
15978: statics, left $virtual_fields in dynamic
15979:
15980: * src/types/: pa_vobject.C, pa_vstateless_class.C: realized that
15981: one can't remember derivates in base class: there's so many of
15982: them. also there can be no virtual method calls in static
15983: classes
15984:
15985: * src/: classes/form.C, classes/mail.C, classes/op.C,
15986: classes/xnode.h, main/execute.C, main/pa_request.C,
15987: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
15988: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
15989: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
15990: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
15991: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
15992: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
15993: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
15994: types/pa_vresponse.C, types/pa_vresponse.h,
15995: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
15996: types/pa_vstateless_object.h, types/pa_vstatus.C,
15997: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
15998: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
15999: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
16000: types/pa_wwrapper.h: static call $self fixed
16001:
16002: * src/main/execute.C: comment
16003:
16004: * src/: classes/op.C, types/pa_value.h, types/pa_vobject.h:
16005: ^process[$caller.self]{...} now compiles to last derived object
16006: part of that 'self'
16007:
16008: 2002-10-29 paf
16009:
16010: * src/targets/isapi/parser3isapi.C: comment on 404 bad status
16011: re-passing [iis to blame]
16012:
16013: * src/classes/string.C: changed string.save to pass current sql
16014: connection to cstr thus one can ^connect[some server]{
16015: $s[insert into table x (x) values (^taint[sql]{value})]
16016: ^s.save[some.sql] } and he'd get in some.sql file code with
16017: properly escaped. [tried in mssql->mysql export->import of
16018: binary data]
16019:
16020: 2002-10-25 paf
16021:
16022: * src/types/pa_vresponse.C: case insensitive response user fields
16023: get/put
16024:
16025: * src/: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
16026: types/pa_vresponse.C: saving for maybe-future
16027:
16028: 2002-10-23 paf
16029:
16030: * operators.txt, src/classes/table.C: ^table.hash{code}...
16031: ^table.hash(expr)...
16032:
16033: * src/types/pa_vmail.C: email whitespace trimBoth-ed
16034:
16035: 2002-10-22 paf
16036:
16037: * src/types/: pa_vform.C, pa_vform.h: removed needless
16038: VForm::Append...(...Value)
16039:
16040: * src/main/execute.C: $.name outside of $name[...] checked
16041:
16042: * src/main/: compile.tab.C, compile.y: lexer changed to fix
16043: ^call[]^#HH bug [that situation yelded no EON, which whas wrong]
16044:
16045: 2002-10-21 paf
16046:
16047: * operators.txt, src/types/pa_vform.C, src/types/pa_vform.h:
16048: $form:qtail $form:imap.x/y
16049:
16050: * operators.txt, src/types/pa_vform.C: $form:nameless =
16051: "?value&...", "...&value&...", "...&value"
16052:
16053: * operators.txt, src/types/pa_vform.C: $form:image-map
16054:
16055: * operators.txt, src/classes/file.C: /some/page.html:
16056: ^file:fullpath[a.gif] => /some/a.gif
16057:
16058: 2002-10-17 paf
16059:
16060: * src/main/: compile.tab.C, compile.y: operators precedence changed
16061: a little: logical not and bitwise negation precedence made
16062: highest, << and >> bitshits precedence made equal [were << higher
16063: than >>]
16064:
16065: * src/classes/op.C: exception handling fixed [were bad with
16066: contexts]
16067:
16068: 2002-10-16 paf
16069:
16070: * src/: classes/op.C, include/pa_request.h, main/execute.C,
16071: main/pa_request.C: Request::self considered equal to
16072: VMethodFrame::self, and removed, Request::get_self() mapped to
16073: VMethodFrame.self()
16074:
16075: * src/: classes/op.C, main/pa_request.C: VMainClass now has name =
16076: $hash in open field now gives old good error meesage
16077:
16078: 2002-10-15 paf
16079:
16080: * src/types/pa_vjunction.h: ^if(def $junction){was true}{now false}
16081: use ^if($junction is junction){was and now true}
16082:
16083: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
16084: include/pa_pool.h, main/pa_charset.C, main/pa_pool.C,
16085: types/pa_vxnode.C: xml->parser strings now have origin, which
16086: points to place where value left xml library and came to parser:
16087: place of dom field extraction/call
16088:
16089: * src/: classes/op.C, include/pa_opcode.h, include/pa_request.h,
16090: main/compile.tab.C, main/compile.y, main/execute.C,
16091: types/pa_vmethod_frame.h: removed last pieces of old code
16092: allowing $junction.xxx at compile time
16093:
16094: * ChangeLog, src/classes/op.C, src/main/compile.tab.C,
16095: src/main/compile.y, src/types/pa_vmethod_frame.h: process[self]
16096: objects also considered [were only classes]
16097:
16098: * ChangeLog, src/classes/op.C, src/include/pa_request.h,
16099: src/types/pa_vmethod_frame.h: ^process[CLASS]{body} now executed
16100: with CLASS self. [ (request&method_frame).self temporarily
16101: changed ]
16102:
16103: * src/classes/: hash.C, op.C: method_frame now always changed, with
16104: no exception to native calls. for&foreach changed to use
16105: method_frame.caller for their var's name context
16106:
16107: * src/: main/execute.C, targets/cgi/parser3.C,
16108: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
16109: compiling to system classes disabled
16110:
16111: * operators.txt, src/classes/op.C:
16112: ^process[$caller.CLASS]{code-string} added
16113:
16114: * operators.txt, src/classes/op.C, src/main/compile.tab.C,
16115: src/main/compile.y, src/main/execute.C, src/main/pa_request.C,
16116: src/types/Makefile.am, src/types/pa_vjunction.C,
16117: src/types/pa_vjunction.h, src/types/pa_vmethod_frame.h,
16118: src/types/types.dsp: removed $junction.get $junction.set[]
16119: introducing $caller
16120:
16121: * src/types/pa_value.h: removed outdated comments. doxygen would
16122: find them lower by inheritance tree
16123:
16124: * src/types/pa_vjunction.C: ident
16125:
16126: 2002-10-14 paf
16127:
16128: * src/classes/op.C: process compiles to code's class class
16129:
16130: * src/: classes/form.C, classes/mail.C, classes/op.C,
16131: include/pa_request.h, main/compile.C, main/compile.tab.C,
16132: main/compile.y, main/execute.C, main/pa_request.C,
16133: types/pa_vstateless_class.h: operators now main-class-methods
16134:
16135: * src/: classes/op.C, include/pa_request.h: ^try{^call{}} now has
16136: better stack trace [has "call" & co there]
16137:
16138: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
16139: operators @auto now executed in MAIN context
16140:
16141: * src/main/execute.C: operator execution context now = MAIN, not
16142: closest stack frame
16143:
16144: @touchit[] $i[after]
16145:
16146: ----t.html $i[before] << local ^touchit[] $i << now 'before',
16147: were 'after'
16148:
16149: ---t.html $i[before] << notlocal [main] ^touchit[] $i << now
16150: 'after'
16151:
16152: * src/main/execute.C: comment
16153:
16154: * src/types/: pa_vclass.C, pa_vobject.h, pa_vstateless_class.C,
16155: pa_vstateless_class.h: $form:CLASS resurrected [wes killed in
16156: action]
16157:
16158: * src/types/pa_vxnode.C: misreplace fixed
16159:
16160: * configure, configure.in, src/include/pa_config_auto.h.in,
16161: src/types/pa_vstatus.C, operators.txt:
16162: $status:rusage.tv_secs/usecs introduced
16163:
16164: 2002-10-09 paf
16165:
16166: * src/classes/: double.C, int.C, string.C: ^string.int[] now failes
16167: on empty string [or uses (default)]
16168:
16169: 2002-10-08 paf
16170:
16171: * src/main/untaint.C: mail header quoted printable changed after
16172: RFC reread
16173:
16174: * operators.txt: plan on ^if(method
16175:
16176: * src/types/pa_vxnode.C: misreplace
16177:
16178: 2002-09-24 paf
16179:
1.116 moko 16180: * src/targets/cgi/Makefile.am: LIBS were bad name in .am
1.95 moko 16181:
16182: * src/types/pa_vmail.C: HAVE_TIMEZONE & co now checked and
16183: mailreceive would compile on freebsd now
16184:
16185: * src/include/pa_config_fixed.h, src/types/pa_vmail.C, acconfig.h,
16186: configure, configure.in, src/include/pa_config_auto.h.in,
1.116 moko 16187: src/targets/cgi/Makefile.am: HAVE_TIMEZONE & co now checked and
16188: mailreceive would compile on freebsd now
1.95 moko 16189:
16190: * src/: classes/file.C, main/untaint.C: 1. file spec language
16191: changed: now there are only few chars are untainted: * ? ' " < >
16192: | and, on unix, : \ ~ [russian letters and SPACES now enabled,
16193: one should use ^untaint[uri]{...} now]
16194:
16195: 2. $list[^file:list[dir]] now returns simply tainted names in
16196: $list.name, not tainted as filespec
16197:
16198: @russianindex[] #dir with files with russian-lang names
16199: $where[dir]
16200:
16201: $dir[^file:list[$where;\.txt^$]] ^dir.menu{ <a
16202: href=$where/^untaint[uri]{$dir.name}>$dir.name</a><br> }
16203:
16204: 2002-09-23 paf
16205:
16206: * src/types/pa_vdouble.h: double->int round added
16207:
16208: * src/classes/date.C: date bug fix, now
16209: round(floatDays*secondsPerDay)
16210:
16211: * src/classes/date.C: date bug fix, now
16212: round(floatDays*secondsPerDay)
16213:
16214: 2002-09-20 paf
16215:
16216: * src/main/execute.C: code junction calls disabled [before: code
16217: was compiled in such a way, that there were no code-junctions in
16218: OP_CALL]
16219:
16220: this now error: @badjunctioncall[] ^badjunctioncallinside{code}
16221:
16222: @badjunctioncallinside[code] ^code[]
16223:
16224: * src/main/: compile.tab.C, compile.y: changed grammer on junction
16225: expanding to include ^junction.method
16226:
16227: * src/main/pa_common.C: -d "DIR/" now true
16228:
16229: * src/classes/xdoc.C: xdoc::create[name] now sets $request:charset
16230: as internal xdoc encoding, and after decoding attributes set by
16231: dom functions now encoded OK, not as digital entities
16232:
16233: * src/classes/xdoc.C: empty transform result, being taken as file
16234: now returns empty file, not raises stupid error about "stat-ed
16235: file"
16236:
16237: * src/types/pa_vhash.h: hash.foreach modification of existing keys
16238: allowed
16239:
16240: * src/types/types.dsp: introducing $junction.get/put(1) one can
16241: write iterators now:
16242:
16243: ^user-foreach[key;value]{$key=$value<br>}
16244:
16245: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
16246: $code.value($i*2) $code }
16247:
16248: * src/main/compile_tools.h: mistype
16249:
1.116 moko 16250: * src/targets/cgi/Makefile.am: binaries now depend on makefiles,
16251: thus taking linking options configure changes into account [were:
16252: ignoring]
1.95 moko 16253:
16254: * src/types/: pa_vjunction.C, Makefile.am: introducing
16255: $junction.get/put(1) one can write iterators now:
16256:
16257: ^user-foreach[key;value]{$key=$value<br>}
16258:
16259: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
16260: $code.value($i*2) $code }
16261:
16262: * src/: include/pa_opcode.h, include/pa_request.h,
16263: main/compile.tab.C, main/compile.y, main/execute.C,
16264: main/main.dsp, targets/cgi/parser3.dsp, types/pa_vjunction.h:
16265: introducing $junction.get/put(1) one can write iterators now:
16266:
16267: ^user-foreach[key;value]{$key=$value<br>}
16268:
16269: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
16270: $code.value($i*2) $code }
16271:
16272: 2002-09-19 paf
16273:
1.116 moko 16274: * Makefile.am: new: make commit
1.95 moko 16275:
16276: * aclocal.m4: forced to be older
16277:
16278: 2002-09-18 paf
16279:
16280: * parser3.dsw, src/include/pa_opcode.h, src/main/compile.tab.C,
16281: src/main/compile.y, src/main/execute.C: << >> int shifts
16282:
16283: * src/: include/pa_common.h, include/pa_request.h,
16284: main/pa_common.C, main/pa_request.C: auto.p exists but unreadable
16285: - now this - fatal error
16286:
16287: * src/classes/file.C: ^file::exec/cgi $.stdin[can be file now] so
16288: that one can pass binary data there
16289:
16290: * src/: classes/date.C, classes/double.C, classes/file.C,
16291: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
16292: classes/op.C, classes/response.C, classes/string.C,
16293: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
16294: include/pa_request.h: pa_request contexts made privated, plus
16295: get_{self/method_frame} to read. Request_context_saver used in
16296: ^try to save flang too. [were not saved]
16297:
16298: * src/types/pa_vresponse.C: header value chains joined before
16299: output, this should help $.subject[$var $var] from being
16300: converted to subject: ?koi8-r?Q?...?= ?koi8-r?Q?...?=
16301:
16302: 2002-09-17 paf
16303:
16304: * src/: main/execute.C, types/pa_value.h, types/pa_vmethod_frame.h:
16305: removed changes, operators executed with calling self. lots of
16306: code with ^include code relies on defined/defining self variables
16307:
16308: $a[1] ^include[print_a.p] print_a.p: $a
16309:
16310: ^include[set_a.p] a=$a set_a.p: $a[1]
16311:
16312: * src/: classes/op.C, main/execute.C, main/pa_request.C,
16313: types/pa_value.C, types/pa_value.h, types/pa_vmethod_frame.h,
16314: types/pa_vstateless_class.h: operators now executed with MAIN
16315: self. it's for ^include sake, too strong a change
16316:
16317: * src/classes/op.C: made place for ^process to compile it's code to
16318: in case of no self
16319:
16320: * src/main/execute.C: found ancient param to Junction, removed.
16321: allowed passing self to native_code_operators [for ^process to
16322: work, she needs self]
16323:
16324: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
16325: types/pa_vstateless_class.h: found ancient param to Junction,
16326: removed. allowed passing self to native_code_operators [for
16327: ^process to work, she needs self]
16328:
16329: * src/: main/execute.C, main/pa_request.C, types/pa_value.C,
16330: types/pa_value.h, types/pa_vmethod_frame.h,
16331: types/pa_vstateless_class.h: allowed Request.self to be 0,
16332: checked that in VMethodFrame get/put and $self.
16333:
16334: * src/classes/: table.C, xdoc.C: table::sql options table::create
16335: copy options options checked, wrong option now fatal error
16336:
16337: * src/main/pa_string.C: string.replace fixed [were missing words on
16338: pieces boundaries]
16339:
16340: * bin/auto.p.dist.in: strange \n
16341:
16342: * configure, configure.in: .so now detected [can be .sl on hpux,
16343: .dll on cygwin, .so in other cases)
16344:
1.116 moko 16345: * configure, configure.in, bin/auto.p.dist.in: .so now detected
16346: [can be .sl on hpux, .dll on cygwin, .so in other cases)
1.95 moko 16347:
16348: * operators.txt, src/classes/hash.C, src/classes/table.C,
16349: src/include/pa_globals.h, src/main/pa_globals.C: table.sql
16350: hash::sql flag to allow duplicate keys [$.distinct(1/0)] first
16351: record taken [were last]
16352:
16353: * src/: classes/hash.C, classes/table.C,
16354: include/pa_sql_connection.h: table.sql hash::sql duplicate keys
16355: now errors
16356:
16357: * src/classes/hash.C: foreach delims bug fixed [were ,2,3]
16358:
16359: * src/classes/: op.C, table.C: menu/for delims bug fixed [were
16360: ,2,3]
16361:
16362: 2002-09-16 paf
16363:
16364: * src/classes/file.C: file::cgi line ends can be both unix & dos.
16365: and they can be unix [\n\n] on win when 'use CGI' used, it causes
16366: stdout to be binary. now detected closest header break.
16367:
16368: * src/: main/untaint.C, types/pa_vmail.C: mail:send closing ?= now
16369: closed right
16370:
16371: 2002-09-13 paf
16372:
16373: * operators.txt, src/main/compile.tab.C, src/main/compile.y,
16374: src/main/compile_tools.h: (expression #comment)
16375:
16376: (multiline expression #comment line2 #comment )
16377:
16378: (expression #comment with (brackets) comment) << OK
16379:
16380: * operators.txt, src/main/compile.tab.C, src/main/compile.y: !|
16381: bitwise !|| numerical xor now [preparing for expression
16382: #comments]
16383:
16384: * src/main/: compile.tab.C, compile.y: @method[$name] now parse
16385: error
16386:
16387: * src/: include/pa_config_fixed.h, main/pa_socks.C: HAVE_WINSOCK_H
16388: cheched in pa_socks.C
16389:
1.116 moko 16390: * configure, configure.in, src/include/pa_config_auto.h.in:
16391: HAVE_WINSOCK_H created in configure.in
1.95 moko 16392:
16393: * src/: main/compile.tab.C, main/compile.y, types/pa_vresponse.C:
16394: cookie date now clean [were mistakenly tainted & that worked bad
16395: with opera -- 'happily' that worked OK with msie]
16396:
16397: 2002-09-12 paf
16398:
16399: * src/types/: pa_vclass.C, pa_vmail.C, pa_vobject.C: VObject &
16400: VClass get_element now first looks to fields, next to methods &
16401: co todo: the rest reason: more speed
16402:
16403: * src/main/untaint.C: quoted printable encoding stops before
16404: \s*<...>$
16405:
16406: * src/main/untaint.C: quoted printable ' ' now =20 and encoding
16407: stops before <...>$
16408:
16409: 2002-09-11 paf
16410:
16411: * src/: main/pa_charset.C, targets/cgi/parser3.dsp: while fixing (
16412: xmlCharEncodingInput/OutputFunc callbacks returned bad value )
16413: forgot to check users of those funcs. not all were using that
16414: return value convention
16415:
16416: * src/lib/pcre/ibm-1254.ucm, etc/parser3.charsets/windows-1254.cfg:
16417: windows-1254 added
16418:
16419: 2002-09-10 paf
16420:
16421: * src/: classes/op.C, main/execute.C, types/pa_wcontext.h:
16422: VCodeFrame parent param were specified badly
16423:
16424: * src/: main/execute.C, types/pa_value.h, types/pa_wwrapper.h:
16425: WWrapper which used in constructing objects(second param to sql
16426: method) ^...sql{}[$.default{code}] now has parent, wich helps
16427: code in hash to survivi
16428:
16429: * src/: include/pa_request.h, main/execute.C: removed redundant
16430: param to execute [stack said 'thanks']
16431:
16432: * src/: classes/op.C, main/execute.C, types/pa_value.C,
16433: types/pa_value.h, types/pa_vcode_frame.h,
16434: types/pa_vmethod_frame.h, types/pa_wcontext.C,
16435: types/pa_wcontext.h, types/pa_wwrapper.h: moved junction kill
16436: responsibility to wcontext
16437:
16438: * src/classes/file.C: decided not to log exec's with stderr, that
16439: could be warnings, and it's up to scritper to log/show them
16440:
16441: * src/: classes/double.C, main/execute.C: double:sql badly called
16442: write_assign_lang, not write_no_lang, thus doing unnecessary
16443: double/string converstion, which were loosing time&precesion
16444:
16445: * src/: main/pa_charset.C, types/pa_vmail.C:
16446: xmlCharEncodingInput/OutputFunc callbacks returned bad value in
16447: case of unfinished in buffer processing, causing accidental
16448: transcode stop [in case that source enc != utf-8 & there is
16449: incomplete utf-8 sequence at the end of 16000block iside of
16450: libxml lib] tfm readed & code updated
16451:
16452: 2002-09-04 paf
16453:
16454: * configure: makes with sjlj
16455:
16456: * INSTALL, src/include/pa_config_fixed.h,
16457: src/include/pa_sql_connection.h,
16458: src/main/pa_sql_driver_manager.C: -with-sjlj-exceptions define
16459: checked. on win32 it made default
16460:
16461: * src/include/pa_config_auto.h.in: sjlj define
16462:
16463: * configure, configure.in: introducing --with-sjlj-exceptions [hpux
16464: can not work with longjump/throw pair, and one must switch that
16465: on there. todo: detect that automatically]
16466:
16467: * src/types/pa_vxnode.C: removed too strong checks of
16468: xnode.elements. now, for instance, if element does not have any
16469: attributes, $xnode.attributes is void, not error
16470:
16471: 2002-09-02 paf
16472:
16473: * operators.txt, src/main/execute.C, src/targets/cgi/parser3.dsp:
16474: removed double_result, didn't help
16475:
16476: * src/main/execute.C: double_result made to move that var away from
16477: hungry g++ optimizer (-O2), before: it were optimized and
16478: comparison operators worked badly
16479:
16480: * src/types/pa_vdate.h: removed debug
16481:
1.116 moko 16482: * Makefile.am, src/types/pa_vdate.h: happy now only install-exec
1.95 moko 16483:
16484: * src/main/execute.C: fixed numeric < & co so that thay now use
16485: c=a-b, c OPERATOR 0. this works fine on solaris/intel for still
16486: unknown reason.
16487:
16488: 2002-08-29 paf
16489:
16490: * parser3.dsw, src/classes/classes.dsp, src/classes/hash.C,
16491: src/classes/op.C, src/classes/string.C, src/include/pa_request.h,
16492: src/lib/md5/md5.dsp, src/main/execute.C, src/main/main.dsp,
16493: src/main/pa_request.C, src/targets/cgi/parser3.dsp,
16494: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vmail.C,
16495: src/types/pa_vmethod_frame.h, src/types/pa_wcontext.h,
16496: src/types/types.dsp: junction_cleaner moved to auto VMethodFrame
16497: [called less frequent, allowed to remove ugly
16498: Junction.change_context-s from many places, switch,
16499: mail:send..html{}, ..] request.root renamed to method_frame [more
16500: easyreading] ancient {...PUSH/POPs...} changed to stack vars
16501: [speed up]
16502:
16503: 2002-08-28 paf
16504:
16505: * src/types/pa_vcookie.C: $cookie:name[&] $cookie:name << now
16506: tainted
16507:
16508: * src/types/pa_vcookie.C: fixed cookie delete when
16509: $cookie:name[$.value[]]
16510:
16511: * operators.txt, src/classes/string.C:
16512: ^string.split[delim[;options]]
16513:
16514: 2002-08-27 paf
16515:
1.116 moko 16516: * etc/parser3.charsets/Makefile.am: merged from 3.0.0005
1.95 moko 16517:
16518: * operators.txt, src/main/compile.tab.C, src/main/compile.y: # now
16519: delimiter
16520:
16521: * INSTALL: recommended latest gmime 1.0.5
16522:
16523: 2002-08-26 paf
16524:
16525: * configure, configure.in: apache13/hook added to make dist.
16526:
16527: 2002-08-23 paf
16528:
16529: * src/: include/pa_common.h, main/pa_common.C,
16530: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: when auto.p
16531: beside binary [cgi, isapi] not accessible [due to bad rights or
16532: whatever] it's error now
16533:
16534: 2002-08-21 paf
16535:
1.116 moko 16536: * Makefile.am: can use: make happy equals to make update install
1.95 moko 16537:
16538: * src/main/: compile.tab.C, compile.y, compile_tools.C,
16539: compile_tools.h: "BASE:" "BASE::" syntax allowed, means "base
16540: class". compiled as if here they named base class
16541:
16542: * src/main/pa_string.C: fixed bad language bug, [were wrong string
16543: cloning constructor]
16544:
16545: * src/: main/execute.C, types/pa_vobject.h: fixed virtual calls
16546:
16547: * bin/auto.p.dist.in, src/targets/cgi/parser3.C,
16548: src/types/pa_vfile.C, src/types/pa_vmail.C:
16549: $mail.received.file.value.content-type fixed
16550:
16551: 2002-08-20 paf
16552:
16553: * src/classes/file.C: fixed language of file:file result
16554:
16555: * operators.txt, src/classes/void.C: ^void.pos[...] = -1 merged
16556: from 3.0.0005
16557:
16558: * operators.txt, src/classes/void.C: ^void.pos[...] = -1
16559:
16560: * operators.txt, src/classes/void.C: ^void.length[] = 0 merged from
16561: 3.0.0005
16562:
16563: * src/classes/void.C, operators.txt: ^void.length[] = 0
16564:
16565: 2002-08-19 paf
16566:
16567: * src/classes/xdoc.C: xdoc getElementsByTagName, ...NS overriden,
16568: work now
16569:
16570: * src/: classes/xnode.C, types/pa_vxdoc.C: xdoc.fields fixed [were
16571: error in xnode, which were not catched in xdoc]
16572:
16573: * src/: include/pa_stylesheet_connection.h, main/pa_globals.C:
16574: prepared: // validate each document after load/create (?)
16575: //xmlDoValidityCheckingDefaultValue = 1;
16576:
16577: 2002-08-15 paf
16578:
16579: * src/classes/classes.h: write to static var caused useless
16580: Exception, introduced Methoded::put_element wich consumes those
16581:
16582: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
16583: src/types/pa_vcookie.C, src/types/pa_vdate.h,
16584: src/types/pa_vresponse.C, src/types/pa_vresponse.h:
16585: $response:field[date] $response:field[$.xxx[date]]
16586:
16587: * src/: classes/hash.C, classes/string.C, classes/table.C,
16588: classes/void.C, include/pa_sql_connection.h: fixed source of
16589: ^hash::sql{bad}
16590:
16591: * operators.txt: $request:body unprecessed POST request body
16592:
16593: * src/types/pa_vrequest.C: $request:body unprecessed POST request
16594:
16595: * src/types/: pa_value.h, pa_vdate.h, pa_vrequest.C, pa_vxdoc.C,
16596: pa_vxnode.C: few barks: bark("%s field not found", 0, &aname)
16597:
16598: * operators.txt, src/classes/form.C, src/include/pa_pool.h,
16599: src/include/pa_request.h, src/main/pa_pool.C,
16600: src/types/pa_vform.C, src/types/pa_vform.h: planning/preparing_to
16601: $request:body r.post_data now const
16602:
16603: * src/: classes/image.C, classes/op.C, classes/xdoc.C,
16604: classes/xnode.C, main/execute.C, types/pa_value.h,
16605: types/pa_vhash.h, types/pa_vobject.C, types/pa_vobject.h,
16606: types/pa_vtable.h: instead of type() checking everywhere used
16607: Value.as now user descendants can be used in params.
16608:
16609: VObject::as_*, is_defined now taken from bases. xtable(table)
16610: ^if($xtable) now OK
16611:
16612: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
16613: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
16614: types/pa_vxdoc.C, types/pa_vxdoc.h: is->as
16615:
16616: 2002-08-14 paf
16617:
16618: * src/: classes/xnode.h, main/execute.C, targets/cgi/parser3.dsp,
16619: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
16620: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
16621: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
16622: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
16623: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
16624: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
16625: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
16626: types/pa_vresponse.C, types/pa_vresponse.h,
16627: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16628: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
16629: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
16630: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
16631: types/pa_vxnode.h, types/pa_wwrapper.h: is now works with VObject
16632: & VClass
16633:
16634: * src/types/pa_vmail.C: mail: turned off utf8 to source transcoding
16635:
16636: * src/targets/cgi/: fixopt.C, fixopt.h, parser3.C, Makefile.am:
16637: removed fixopt stupidity. on stupid linux use cd /document/root
16638: ../cgi/parser3 script
16639:
16640: * src/targets/cgi/fixopt.C: fixopt now preprocesses command line
16641: params, splitting them by space, excluding argv[0], argv[argc-1]
16642:
16643: * src/targets/cgi/: Makefile.am, parser3.C, parser3.dsp, fixopt.C,
16644: fixopt.h: fixopt now preprocesses command line params, splitting
16645: them by space, excluding argv[0], argv[argc-1]
16646:
16647: * src/targets/cgi/parser3.C: -f config file
16648:
16649: * src/targets/cgi/parser3.C: fixed .log file dir
16650:
16651: 2002-08-13 paf
16652:
16653: * src/types/pa_vobject.C: allow override parent variables, useful
16654: for form descendants [in vobject too, were in vclass]
16655:
16656: * src/types/pa_vclass.C: allow override parent variables, useful
16657: for form descendants
16658:
16659: * src/types/pa_vclass.C: checked: form[vclass]fields can be
16660: overwritten in derived(table)
16661:
16662: * src/: classes/form.C, classes/mail.C, classes/op.C,
16663: classes/xnode.h, include/pa_request.h, main/execute.C,
16664: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
16665: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
16666: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
16667: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
16668: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
16669: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
16670: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
16671: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
16672: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16673: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
16674: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
16675: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
16676: types/pa_vxnode.h, types/pa_wwrapper.h: introduced
16677: Value::get_element(..., bool looking_down) [needed to exclude
16678: endless recoursion]
16679:
16680: * src/types/: pa_vclass.C, pa_vobject.C: reorganized modules todo:
16681: fix bug with put endless recoursion todo: check 'as'
16682:
16683: * src/types/: Makefile.am, pa_vclass.h, pa_vobject.h, types.dsp:
16684: reorganized modules todo: fix bug with put endless recoursion
16685: todo: check 'as'
16686:
16687: * src/types/pa_vobject.h: checked: table fields can be overwritten
16688: in derived(table)
16689:
16690: * src/types/pa_vobject.h: derived classes can have fields of their
16691: own now
16692:
16693: * src/: classes/table.C, types/pa_vtable.C, types/pa_vtable.h:
16694: fixed error message on using non-created table
16695:
16696: * src/: classes/form.C, classes/hash.C, classes/mail.C,
16697: classes/op.C, classes/xnode.h, include/pa_request.h,
16698: main/compile.C, main/compile.tab.C, main/execute.C,
16699: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
16700: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
16701: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
16702: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
16703: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmail.C,
16704: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
16705: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
16706: types/pa_vresponse.C, types/pa_vresponse.h,
16707: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16708: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
16709: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
16710: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
16711: types/pa_vxnode.h, types/pa_wwrapper.h: VObject.get/out now
16712: looking down/up tree todo: fix error message on non-constructed
16713: parents
16714:
16715: 2002-08-12 paf
16716:
16717: * src/types/: pa_vstateless_class.h, pa_vstateless_object.h: table
16718: derived OK
16719:
16720: * src/main/execute.C: ^base:create[] dynamic call rewritten todo:
16721: thorough testing
16722:
16723: * src/: main/compile.tab.C, main/compile.y, main/execute.C,
16724: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
16725: types/pa_vobject.h, types/pa_vstateless_class.h,
16726: types/pa_vstateless_object.h, types/pa_wcontext.h,
16727: types/pa_valiased.C, types/pa_valiased.h, types/Makefile.am:
16728: ^base:create[] dynamic call rewritten todo: thorough testing
16729:
16730: * src/types/: pa_value.h, pa_vclass.h, pa_vobject.h: VObject ctor
16731: now instantates base class, remembers it and saves child in
16732: parent VObject.get_class now returns last child = downward
16733: virtual calls OK
16734:
16735: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
16736: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
16737: types/pa_vimage.h, types/pa_vint.h, types/pa_vmethod_frame.h,
16738: types/pa_vobject.h, types/pa_vresponse.h,
16739: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16740: types/pa_vstring.h, types/pa_vtable.h, types/pa_vxdoc.h,
16741: types/pa_vxnode.h, types/pa_wcontext.h, types/types.dsp: killed
16742: VAliased [redundant], moved $CLASS to VObject only [parser class
16743: instance]
16744:
16745: * bin/auto.p.dist.in: more like in dist on parser.ru
16746:
16747: * bin/auto.p.dist.in: fixed sendmail default comment
16748:
16749: * src/main/pa_request.C: $response:body[file] content-type check
16750: fixed [were bad when content-type is hash]
16751:
16752: 2002-08-09 paf
16753:
16754: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
16755: types/pa_vobject.h, types/pa_vxdoc.h: started as()
16756:
16757: 2002-08-08 paf
16758:
16759: * operators.txt, src/classes/date.C, src/include/pa_globals.h,
16760: src/main/pa_globals.C: year column in month calendar [week year]
16761:
16762: * src/main/execute.C: error reporting on object writes to MAIN
16763: improved [were ruind with fixing $obj[^if(1){$obj}] ]
16764:
16765: * operators.txt, src/types/pa_vdate.h: $date.yearday
16766: $date.daylightsaving
16767:
16768: * src/: classes/mail.C, types/pa_vmail.C: in letter texts one can
16769: use tainted data now. only she must specify the language.
16770:
16771: ^mail:send[ $.from[paf@mail.design.ru]
16772: $.to[paf@mail.design.ru] $.subject[^taint[uri][ìîñêâà]=2]
16773: $.text[^taint[uri][ìîñêâà]=] ]
16774:
16775: * src/: classes/file.C, classes/op.C, types/pa_vfile.C: ^process
16776: now prints more precise origin
16777:
16778: * src/include/pa_string.h: String::first_char now not fails on
16779: empty strings ^if(-f '') now ok and in 3 other places.
16780:
16781: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
16782: String::first_char now not fails on empty strings ^if(-f '') now
16783: ok and in 3 other places.
16784:
16785: 2002-08-07 paf
16786:
16787: * src/: classes/string.C, main/pa_string.C: ^string.mid(0;bad)
16788: fixed
16789:
16790: * src/main/pa_string.C: ^string.mid(0;bad) fixed
16791:
16792: * src/: main/execute.C, types/pa_vcode_frame.h,
16793: types/pa_vmethod_frame.h, types/pa_wcontext.C,
16794: types/pa_wcontext.h, types/pa_wwrapper.h: vcodeframe were
16795: mistakenly not completely transparent to object writes.
16796: $hash[^if(1){$hash}] now works
16797:
16798: * operators.txt, src/classes/op.C: ^cache...{...^cache<<to past...}
16799: now erasing cache file [there were bad check on that]
16800:
16801: * src/: classes/classes.dsp, classes/table.C,
16802: lib/pcre/pcre_parser_ctype.dsp, main/pa_array.C, types/types.dsp:
16803: all Debug dirs in .dsp now named 'Debug'
16804:
1.116 moko 16805: * etc/parser3.charsets/Makefile.am: all included into dist
1.95 moko 16806:
16807: * operators.txt, src/classes/mail.C: exception_type email.send
16808:
16809: * operators.txt, src/types/pa_vmail.C: exception_type email.format
16810:
16811: * src/types/pa_vmail.C: mail:send empty email checked
16812:
16813: 2002-08-06 paf
16814:
16815: * operators.txt, src/classes/table.C, src/include/pa_array.h,
16816: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
16817: ^table::create[$source;$.options] ^table::join[$source;$.options]
16818:
16819: * operators.txt, src/classes/hash.C, src/classes/string.C,
16820: src/classes/table.C: sql options can be string now ^xxx:sql{...}[
16821: # $.default() }
16822:
16823: * src/classes/file.C: $f[file::cgi] $f.UPPER case fields
16824:
16825: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
16826: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h:
16827: $file.content-type [instead of .mime-type] now works for
16828: file::stat also
16829:
16830: * src/main/pa_request.C: case insensitive mime_type_of
16831:
16832: * bin/auto.p.dist.in: jpeg
16833:
16834: 2002-08-05 paf
16835:
16836: * src/types/pa_vxnode.C: xnode.childNodes now 0... [were 1...]
16837:
16838: * src/types/pa_vmail.C: file buffer relocated to parser heap
16839:
16840: * operators.txt: comment on date:calendar week column
16841:
16842: * src/main/pa_common.C: write checked
16843:
16844: * src/main/: pa_common.C: write checked
16845:
16846: * src/classes/date.C: +1 buf size for stupid snprintfs
16847:
16848: * src/: classes/date.C, include/pa_globals.h, main/pa_globals.C:
16849: month calendar week column [ISO 8601 Week Numbers]
16850:
16851: 2002-08-02 paf
16852:
16853: * src/: include/pa_config_fixed.h, main/pa_string.C,
16854: targets/cgi/getopt.c, targets/cgi/parser3.C: removed #define
16855: DEBUG*
16856:
16857: * configure, configure.in, src/include/pa_version.h: release
16858: 3_0_0005
16859:
16860: * bin/auto.p.dist.in: unhandled_exception comments
16861:
16862: * src/types/: pa_vclass.h, pa_vform.C, pa_vobject.h: opera
16863: multipart post fixed
16864:
16865: * operators.txt, src/main/pa_request.C, src/types/pa_vform.C:
16866: response transcoded source->client only when text/* or simple
16867: onoverridden $response:body
16868:
16869: 2002-08-01 paf
16870:
16871: * src/: classes/classes.C, classes/classes.h, classes/date.C,
16872: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
16873: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
16874: classes/op.C, classes/response.C, classes/string.C,
16875: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
16876: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
16877: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
16878: include/pa_config_fixed.h, include/pa_dictionary.h,
16879: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
16880: include/pa_globals.h, include/pa_hash.h, include/pa_opcode.h,
16881: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
16882: include/pa_socks.h, include/pa_sql_connection.h,
16883: include/pa_sql_driver_manager.h, include/pa_stack.h,
16884: include/pa_string.h, include/pa_stylesheet_connection.h,
16885: include/pa_stylesheet_manager.h, include/pa_table.h,
16886: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
16887: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
16888: lib/pcre/pcre_parser_ctype.c, main/compile.C, main/compile.tab.C,
16889: main/compile_tools.C, main/compile_tools.h, main/execute.C,
16890: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
16891: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
16892: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
16893: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
16894: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
16895: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
16896: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
16897: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
16898: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
16899: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
16900: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
16901: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.C,
16902: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.h,
16903: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
16904: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
16905: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
16906: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
16907: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
16908: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
16909: types/pa_vmethod_frame.h, types/pa_vobject.h,
16910: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
16911: types/pa_vresponse.h, types/pa_vstateless_class.C,
16912: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16913: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
16914: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
16915: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
16916: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
1.119 moko 16917: types/pa_wcontext.h, types/pa_wwrapper.h: Date: now
1.95 moko 16918:
16919: * src/: classes/classes.C, classes/classes.dsp, classes/classes.h,
16920: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
16921: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
16922: classes/math.C, classes/op.C, classes/response.C,
16923: classes/string.C, classes/table.C, classes/void.C,
16924: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
16925: include/pa_array.h, include/pa_cache_managers.h,
16926: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
16927: include/pa_config_fixed.h, include/pa_config_includes.h,
16928: include/pa_dictionary.h, include/pa_dir.h,
16929: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
16930: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
16931: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
16932: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
16933: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16934: include/pa_stack.h, include/pa_string.h,
16935: include/pa_stylesheet_connection.h,
16936: include/pa_stylesheet_manager.h, include/pa_table.h,
16937: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
16938: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, main/compile.C,
16939: main/compile_tools.C, main/compile_tools.h, main/execute.C,
16940: main/main.dsp, main/pa_array.C, main/pa_cache_managers.C,
16941: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
16942: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
16943: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
16944: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
16945: main/pa_sql_driver_manager.C, main/pa_string.C,
16946: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
16947: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
16948: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
16949: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
16950: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
16951: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
16952: targets/isapi/pool_storage.h, types/pa_valiased.C,
16953: types/pa_valiased.h, types/pa_value.C, types/pa_value.h,
16954: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
16955: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
16956: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
16957: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
16958: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
16959: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
16960: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
16961: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
16962: types/pa_vresponse.C, types/pa_vresponse.h,
16963: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
16964: types/pa_vstateless_object.h, types/pa_vstatus.C,
16965: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
16966: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
16967: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
16968: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
16969: types/pa_wwrapper.h, types/types.dsp, Makefile.am,
16970: classes/Makefile.am, main/Makefile.am, targets/cgi/Makefile.am,
16971: types/Makefile.am: ident.C* removed
16972:
16973: * operators.txt, src/classes/file.C, src/main/pa_request.C:
16974: file:find[/can/do/this/now.txt]
16975:
16976: * src/targets/cgi/parser3.C: usage to stdout now
16977:
16978: 2002-07-31 paf
16979:
16980: * src/types/pa_vmail.C: mail: errors-to: now default "postmaster"
16981:
16982: * src/: classes/mail.C, types/pa_vmail.C: mail: errors-to: now
16983: default "postmaster"
16984:
16985: * src/: classes/mail.C, types/pa_vmail.C: mail from/to now must be.
16986: -f postmaster now default sendmail key word "postmaster"
16987: replaced to $.from
16988:
16989: 2002-07-30 paf
16990:
1.116 moko 16991: * configure, configure.in, src/targets/cgi/pa_config_paths.h.in,
16992: src/targets/cgi/parser3.C: removed pa_config_paths.h
1.95 moko 16993:
16994: * src/main/pa_charset.C: comment
16995:
16996: * src/main/pa_charset.C: UTF-8 to 1byte charset convert, no char in
16997: table, &#decimal;
16998:
16999: * src/main/pa_request.C: comment
17000:
17001: * etc/parser3.charsets/windows-1251.cfg: section sign [russian
17002: paragraf]
17003:
17004: 2002-07-11 paf
17005:
17006: * src/main/pa_exec.C: build command line badly added params twice
17007: [and first time without ' ']. double wrong. fixed.
17008:
17009: * src/main/pa_exec.C: invalid .exe caused error message with params
17010: wich parser did not provide = reported badly. fixed that.
17011:
17012: * src/classes/mail.C: $MAIL[ # xxx ]
17013:
17014: now ok
17015:
17016: * operators.txt: plan: sql detailed exception
17017:
17018: 2002-07-01 paf
17019:
17020: * src/: classes/form.C, main/pa_request.C: @conf bug fixed
17021: [MForm.configure_admin were called when request.main_class ==0
17022:
17023: * src/classes/form.C: 10*0x400*400 bug fix [4M not 10M]
17024:
17025: * src/classes/form.C: content_length type fix
17026:
17027: 2002-06-30 paf
17028:
17029: * src/classes/mail.C: merged from 4
17030:
17031: * src/classes/mail.C: restored $MAIL
17032:
17033: 2002-06-28 paf
17034:
17035: * configure, configure.in: removed paths.h
17036:
1.116 moko 17037: * configure, src/include/pa_version.h,
1.95 moko 17038: src/targets/cgi/pa_config_paths.h.in: lates changes from 4 build
17039: merged, makes updated
17040:
17041: * ChangeLog, configure, operators.txt, src/classes/xdoc.C,
17042: src/include/pa_charset.h, src/include/pa_config_fixed.h,
17043: src/include/pa_pool.h, src/include/pa_version.h,
17044: src/main/pa_charset.C, src/main/pa_pool.C,
17045: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
17046: src/types/pa_vmail.C: merged latest updates to head
17047:
17048: 2002-06-27 paf
17049:
17050: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: post-build
17051: not error now
17052:
17053: * operators.txt, src/classes/xdoc.C, src/include/pa_charset.h,
17054: src/include/pa_config_fixed.h, src/include/pa_pool.h,
17055: src/main/pa_charset.C, src/main/pa_pool.C:
17056: ^xdoc::create[[uri]]... base uri for document being created,
17057: imports and other relative file names would be relative to this
17058: uri default uri=path_translated
17059:
17060: * src/classes/xdoc.C: xsltParseStylesheetDoc bug workaround
17061:
17062: 2002-06-26 paf
17063:
17064: * configure, configure.in, src/include/pa_version.h:
17065: release_3_0_0004
17066:
17067: * src/main/pa_string.C: blank string '', ' <whitespace>' considered
17068: 0 now
17069:
17070: * src/targets/cgi/parser3.C: /cgi-bin/parser empty filename checked
17071:
17072: 2002-06-25 paf
17073:
17074: * src/main/pa_string.C: emtpy string, or string of whitespaces
17075: considered bad number now
17076:
17077: * operators.txt, src/classes/xdoc.C: ^xdoc.transform[xdoc <<can be
17078: now
17079:
17080: * operators.txt, src/classes/string.C: ^string.normalize [old
17081: name: optimize
17082:
17083: * configure, configure.in, src/include/pa_config_auto.h.in: crypt
17084: library configured
17085:
17086: * src/main/pa_request.C: configure_admin forced if no @conf
17087:
17088: * operators.txt, bin/auto.p.dist.in, src/classes/math.C,
17089: src/types/pa_vmail.C: ^math:crypt updated to generate random salt
17090: when needed and to call system crypt() if not $apr1$ prefix
17091:
17092: 2002-06-24 paf
17093:
17094: * INSTALL: --with-static/shared-mailreceive described
17095:
17096: * src/include/pa_config_fixed.h: ssize_t fixed
17097:
1.116 moko 17098: * configure, configure.in, src/include/pa_config_auto.h.in,
17099: src/targets/cgi/Makefile.am, src/types/Makefile.am,
1.95 moko 17100: src/types/pa_vmail.C: $mail:received makes update
17101:
17102: * src/: include/pa_config_fixed.h, types/pa_vmail.C: #ifdef
17103: WITH_MAILRECEIVE
17104:
17105: * src/targets/cgi/parser3.C: #ifdef WITH_MAILRECEIVE
17106:
17107: * src/targets/cgi/: getopt.c, getopt.h: introducing parser -m
17108: option, for $mail:receive
17109:
17110: * src/types/: pa_vmail.C, pa_vmail.h: uue to separate file
17111: introducting $message:received ^mail:send rewritten with backward
17112: comp
17113:
17114: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
17115: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
17116: types/types.dsp: win32xml win32mailreceive pseudomodules paths
17117: now
17118:
17119: * operators.txt, src/classes/mail.C, src/include/Makefile.am,
17120: src/include/pa_charset.h, src/include/pa_config_fixed.h,
17121: src/include/pa_request.h, src/include/pa_string.h,
17122: src/include/pa_uue.h, src/main/Makefile.am, src/main/main.dsp,
17123: src/main/pa_globals.C, src/main/pa_request.C,
17124: src/main/pa_string.C, src/main/pa_uue.C,
17125: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.C,
17126: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
17127: src/types/pa_vform.C, src/types/pa_vform.h, src/types/types.dsp:
17128: uue to separate file introducting $message:received ^mail:send
17129: rewritten with backward comp
17130:
17131: 2002-06-21 paf
17132:
1.116 moko 17133: * src/lib/: Makefile.am, md5/pa_md5.h: lib restructure apache .am &
17134: co changes
1.95 moko 17135:
1.116 moko 17136: * configure, configure.in, src/lib/md5/Makefile.am,
17137: src/lib/md5/pa_md5c.c, src/targets/cgi/Makefile.am: lib
17138: restructure .in and .am files appropriate changes
1.95 moko 17139:
17140: * src/lib/md5/: md5.dsp, pa_md5.h, pa_md5c.c: moved libltdl and
17141: pcre to libs/ added libs/md5 which is linked to non-apache
17142: targets ^math:crypt[password;$apr1$salt]
17143:
17144: * INSTALL, configure.in, operators.txt, parser3.dsw,
17145: src/Makefile.am, src/classes/Makefile.am,
17146: src/classes/classes.dsp, src/classes/math.C,
17147: src/lib/md5/Makefile.am, src/lib/pcre/LICENCE,
1.116 moko 17148: src/lib/pcre/Makefile.am, src/lib/pcre/README,
17149: src/lib/pcre/Tech.Notes, src/lib/pcre/dftables.c,
17150: src/lib/pcre/get.c, src/lib/pcre/ibm-1250.ucm,
17151: src/lib/pcre/ibm-1251.ucm, src/lib/pcre/ibm-1257.ucm,
17152: src/lib/pcre/internal.h, src/lib/pcre/maketables.c,
17153: src/lib/pcre/pcre-2_08.tar.gz, src/lib/pcre/pcre.3,
17154: src/lib/pcre/pcre.3.html, src/lib/pcre/pcre.3.txt,
17155: src/lib/pcre/pcre.c, src/lib/pcre/pcre.dsp, src/lib/pcre/pcre.h,
1.95 moko 17156: src/lib/pcre/pcre_dftables.dsp, src/lib/pcre/pcre_parser_ctype.c,
17157: src/lib/pcre/pcre_parser_ctype.dsp,
17158: src/lib/pcre/ruspart_win2koi.pl, src/lib/pcre/study.c,
17159: src/lib/pcre/win-koi.tab, src/main/Makefile.am,
17160: src/main/compile.tab.C, src/main/main.dsp,
17161: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.dsp,
17162: src/targets/isapi/parser3isapi.dsp, src/types/Makefile.am,
17163: src/types/types.dsp, src/lib/Makefile.am: moved libltdl and pcre
17164: to libs/ added libs/md5 which is linked to non-apache targets
17165: ^math:crypt[password;$apr1$salt]
17166:
17167: 2002-06-20 paf
17168:
17169: * INSTALL, configure, configure.in, operators.txt, bin/Makefile.am,
1.116 moko 17170: bin/auto.p.dist.in, src/classes/file.C, src/classes/op.C,
17171: src/doc/doxygen.cfg, src/include/pa_globals.h,
1.95 moko 17172: src/include/pa_request.h, src/main/execute.C,
17173: src/main/pa_request.C, src/targets/cgi/parser3.C,
17174: src/targets/isapi/parser3isapi.C, src/types/pa_vmethod_frame.h:
17175: marged latest HEAD updates, mainly file:justname&co &
17176: @auto/conf[filespec
17177:
17178: * operators.txt, src/classes/file.C:
17179: !^file:dirname[/a/some.tar.gz]=/a
17180: !^file:dirname[/a/b/]=/a
17181: !^file:basename[/a/some.tar.gz]=some.tar.gz
17182: !^file:justname[/a/some.tar.gz]=some.tar
17183: !^file:justext[/a/some.tar.gz]=gz
17184:
17185: * src/: classes/op.C, include/pa_request.h, main/execute.C,
17186: main/pa_request.C, types/pa_vmethod_frame.h: introducing
17187: @conf/auto[filespec]
17188:
17189: * bin/auto.p.dist.in: <noindex>
17190:
1.116 moko 17191: * configure: parser3.conf renamed to auto.p autoconf changes
1.95 moko 17192:
17193: * INSTALL, configure.in, operators.txt, bin/Makefile.am,
17194: bin/auto.p.dist.in, src/doc/doxygen.cfg,
17195: src/include/pa_globals.h, src/targets/cgi/parser3.C,
17196: src/targets/isapi/parser3isapi.C: parser3.conf renamed to auto.p
17197:
17198: 2002-06-18 paf
17199:
17200: * configure, configure.in, src/include/pa_version.h: version to
17201: configure.in
17202:
17203: * INSTALL: reflected .conf.dist dir change
17204:
1.116 moko 17205: * Makefile.am, configure, configure.in, bin/Makefile.am,
17206: etc/parser3.charsets/Makefile.am: parser3.conf.dist moved to bin,
1.95 moko 17207: .in & *.am updated
17208:
17209: * src/classes/file.C: strncasecmp
17210:
17211: * src/classes/file.C: strcasecmp
17212:
1.116 moko 17213: * bin/Makefile.am, etc/Makefile.am: bin/parser3.conf.dist [moved
17214: from etc
1.95 moko 17215:
17216: * src/classes/file.C: ^file::exec[script;$.bad error case
17217: insensitive check now
17218:
17219: * src/classes/file.C: ^file::exec[script;$.bad now error, not skip
17220:
17221: * configure, configure.in, src/include/pa_pool.h,
17222: src/include/pa_types.h: pack configure.in detection simplified.
17223: figured out that gcc on sparc not that stupid as thought
17224: previously: on sparc: when it sees packed class it modifies it's
17225: field-access-code to byte operations [stb, ldub] instead of 4byte
17226: operations [st, lduh] so packed must be all parts of packed
17227: class, i.e. it's parents&fields(classes). for now it's only
17228: String that packed and what was wrong is that it's parent -
17229: Pooled, were not packed. fixed that.
17230:
17231: 2002-06-14 paf
17232:
17233: * operators.txt: more precise xml-to-text options
17234:
17235: * operators.txt, src/types/pa_vxnode.C: xnode
17236: attribute_node.name/value xnode pi.node.data
17237:
17238: 2002-06-12 paf
17239:
1.116 moko 17240: * configure, configure.in, src/targets/cgi/Makefile.am,
17241: src/targets/cgi/parser3.C: removed root conf define creation
1.95 moko 17242:
17243: * INSTALL, configure.in, operators.txt, etc/Makefile.am,
17244: src/include/pa_globals.h, src/include/pa_request.h,
17245: src/main/compile.tab.C, src/main/pa_globals.C,
17246: src/main/pa_request.C, src/targets/cgi/parser3.C,
17247: src/targets/isapi/parser3isapi.C: parser3.conf now one and only
17248:
17249: * src/classes/mail.C: sendmail -ti [default now]
17250:
17251: * src/: classes/mail.C, main/pa_request.C: $MAIL $CHARSETS allowed
17252: to be strings. for convinient #ing
17253:
17254: * src/: include/pa_globals.h, include/pa_request.h, main/execute.C,
17255: main/pa_globals.C, main/pa_request.C: @rootconf [were @conf]
17256:
17257: * src/: include/pa_globals.h, include/pa_request.h, main/main.dsp,
17258: main/pa_globals.C, main/pa_request.C: @conf
17259:
17260: 2002-06-11 paf
17261:
17262: * src/classes/file.C: check simplified
17263:
17264: * src/: classes/file.C, targets/cgi/parser3.dsp,
17265: targets/isapi/parser3isapi.C: suexec env keys filter plus CGI_ as
17266: valid prefix
17267:
17268: * src/: classes/file.C, include/pa_request.h, include/pa_sapi.h,
17269: targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
17270: file::exec/cgi to pass HTTP_ vars introducing SAPI::environment
17271:
17272: 2002-06-10 paf
17273:
17274: * operators.txt, src/classes/op.C, src/include/pa_common.h,
17275: src/main/pa_common.C: lock failures reported now
17276:
17277: * src/main/compile_tools.C: ^if(" 1 "){y} bug fixed optimization
17278: string->double @ compile time were not-enough-checking...
17279:
17280: * src/main/: compile.tab.C, pa_string.C: whitespace after number in
17281: autoconvert now ignored
17282:
17283: * src/types/: pa_vform.C, pa_vform.h: $form: not determined yet
17284: check
17285:
17286: * src/classes/mail.C: mail netscape attachment name fixed. todo:
17287: $response:body content-type:name
17288:
17289: * configure, configure.in: hpux check, nsl link, no socket
17290:
17291: * operators.txt: old merge conflict removed
17292:
17293: * configure, configure.in: pack even address access on sparc&co
17294: arch checked in configure
17295:
17296: * configure, src/include/pa_version.h: makes
17297:
17298: * configure, configure.in, src/include/pa_version.h: makes
17299:
17300: * src/main/untaint.C: (bug#2) mail subject got always prepended
17301: with charset even when all letters were 7bit one
17302:
17303: * src/main/pa_common.C: merged fixed -d (bug)
17304:
17305: * src/main/pa_common.C: fixed -d (bug)
17306:
17307: 2002-06-03 paf
17308:
17309: * ChangeLog, operators.txt, etc/parser3.charsets/windows-1251.cfg,
17310: src/classes/classes.dsp, src/main/compile.tab.C,
17311: src/main/main.dsp, src/main/pa_globals.C,
17312: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
17313: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: fixed
17314: .dsp-s along with reorganized cvs modules dirs structure
17315:
17316: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
17317: main/pa_globals.C, targets/cgi/parser3.dsp,
17318: targets/isapi/parser3isapi.dsp, types/types.dsp: reorganized cvs
17319: modules
17320:
17321: 2002-05-28 paf
17322:
17323: * src/targets/cgi/parser3.C: info.uri now ""
17324:
17325: 2002-05-17 paf
17326:
17327: * src/classes/: table.C: ^table.save << checked empty
17328: pre/match/post columns
17329:
17330: 2002-05-16 paf
17331:
17332: * src/classes/image.C: image::measure can png now
17333:
17334: 2002-05-15 paf
17335:
17336: * operators.txt, src/classes/date.C: ^date::create[%H:%M[:%S]]
17337: added
17338:
17339: * etc/parser3.charsets/windows-1251.cfg: 0x forgot, fixed
17340:
17341: * operators.txt, src/classes/date.C: ^date::create[%Y[-%m[-%d[
17342: %H[:%M[:%S]]]]]] [-%m now
17343:
17344: 2002-05-14 paf
17345:
17346: * etc/parser3.charsets/: windows-1251.cfg: added 3 quotes
17347:
17348: 2002-05-07 paf
17349:
17350: * ChangeLog, src/classes/classes.dsp, src/classes/op.C,
17351: src/include/pa_globals.h, src/include/pa_request.h,
17352: src/include/pa_table.h, src/main/compile.tab.C,
17353: src/main/compile.y, src/main/main.dsp, src/main/pa_globals.C,
17354: src/main/pa_request.C, src/main/pa_table.C,
17355: src/targets/isapi/pa_pool.C, src/targets/isapi/parser3isapi.C,
17356: src/targets/isapi/parser3isapi.dsp,
17357: src/targets/isapi/pool_storage.h, src/types/types.dsp: Table
17358: name2number field now &. main_method_name now on Request pool
17359: rather on global_pool [Junction+VJunction created on same pool as
17360: name = were created on global pool, causing mem leaks]
17361:
17362: * src/: classes/classes.dsp, classes/op.C, include/pa_globals.h,
17363: include/pa_request.h, include/pa_table.h, main/compile.tab.C,
17364: main/compile.y, main/main.dsp, main/pa_globals.C,
17365: main/pa_request.C, main/pa_table.C, targets/isapi/pa_pool.C,
17366: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
17367: targets/isapi/pool_storage.h, types/types.dsp: Table name2number
17368: field now &. main_method_name now on Request pool rather on
17369: global_pool [Junction+VJunction created on same pool as name =
17370: were created on global pool, causing mem leaks]
17371:
17372: 2002-05-06 paf
17373:
17374: * src/: main/pa_globals.C, targets/cgi/parser3.C,
17375: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
17376: 100*40 bytes per request memory leak [nonpool malloc in globals]
17377:
17378: * src/: main/pa_globals.C, targets/cgi/parser3.C,
17379: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
17380: 100*40 bytes per request memory leak [nonpool malloc in globals]
17381:
17382: 2002-04-30 paf
17383:
17384: * configure, src/include/pa_version.h: version now not b
17385:
17386: * src/targets/cgi/parser3.C: request.uri now never 0
17387:
17388: 2002-04-29 paf
17389:
17390: * configure.in: removed b
17391:
17392: * src/: classes/op.C, include/pa_exception.h, main/pa_request.C:
17393: Exception::comment/type checked in (), no there's no empty
17394: type/comment by default
17395:
17396: * ChangeLog, src/doc/ClassExample1.dox, src/doc/ClassExample3.dox,
17397: src/doc/aliased.dox, src/doc/methoded.dox, src/doc/string.dox,
17398: src/doc/value.dox, src/include/pa_exception.h,
17399: src/main/pa_request.C, src/targets/cgi/parser3.C: merged from
17400: 0001
17401:
17402: 2002-04-26 paf
17403:
17404: * src/: doc/doxygen.cfg, targets/cgi/parser3.dsp: doxygen dot image
17405: size reduced
17406:
17407: 2002-04-25 paf
17408:
17409: * src/targets/cgi/: parser3.C: setenv in .htaccess when cgi is not
17410: under that dir got REDIRECT_ prefix before HTTP_PARSER_x_CONFIG,
17411: now that took into account
17412:
17413: * operators.txt, src/classes/date.C: ^date::create[2002-12-33
17414: 01:03:04]
17415:
17416: * ChangeLog, operators.txt, src/classes/date.C:
17417: ^date::create[2002-12-33 01:03:04]
17418:
17419: * ChangeLog: updated changelog
17420:
17421: * src/classes/table.C: removed restriction on column count to
17422: ^table.hash to work, now must be >0 [were >1]
17423:
17424: 2002-04-24 paf
17425:
17426: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
17427: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
17428: targets/isapi/parser3isapi.dsp, types/types.dsp: MSVC profile
17429: targets
17430:
17431: 2002-04-23 paf
17432:
17433: * operators.txt, src/classes/string.C:
17434: int/double/string:sql{}[$.default{code}] fixed [were barking:
17435: "junction used outside of context"]
17436:
17437: 2002-04-22 paf
17438:
17439: * types.txt, src/classes/string.C, src/include/pa_string.h,
17440: src/main/pa_string.C, src/types/pa_vstring.C,
17441: src/types/pa_vstring.h: ^string.optimize[]
17442:
17443: * src/: include/pa_globals.h, include/pa_table.h,
17444: main/pa_globals.C, main/pa_string.C, main/pa_table.C: fixed match
17445: table template
17446:
17447: * src/classes/: string.C: optimize removed from string
17448: .left/right/pos
17449:
17450: * src/main/execute.C: rolled back to
17451: before_killing_userjunction_contexts
17452:
17453: * src/main/execute.C: user junctions context killed
17454:
17455: * src/main/execute.C: junctions to local contexts got
17456: cleanized&checked later
17457:
17458: 2002-04-19 paf
17459:
17460: * src/: classes/string.C, include/pa_request.h,
17461: include/pa_string.h, main/pa_request.C, main/pa_string.C,
17462: types/pa_vstring.C, types/pa_vstring.h: string now optimized
17463: prior to .left .right .mid .pos .match when that is profitable,
17464: and always before .replace when $ORIGINS(1) optimization disabled
17465: economy from not wasting mem on lots of strings which occur by
17466: lots of String:mid calls to get parts of source string between
17467: found_occurances
17468:
17469: * src/classes/file.C: ovector now local economy: 16 bytes per
17470: ^file:list
17471:
17472: * src/: include/pa_globals.h, include/pa_table.h,
17473: main/pa_globals.C, main/pa_string.C: String::match table columns
17474: globalized, not created @ each ^match anymore economy:
17475: sizeof(Array)+space on 3+x cells=24+ bytes per ^match
17476:
17477: * src/: classes/op.C, classes/string.C, types/pa_value.h: VTable
17478: removed from each String::match replace iteration, and made
17479: stacked sizeof(VTable)=12bytes economy on each replace code
17480:
17481: * src/doc/footer.htm: 2001,
17482:
17483: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
17484: string.match[]['] option enables generation of $match.prematch
17485: .match .postmatch columns
17486:
17487: * src/main/pa_string.C: String::match options analized without
17488: cstr-ing them now
17489:
17490: * src/doc/: doxygen.cfg, footer.htm, html2chm.cmd, postbuild.txt,
17491: sources2html.cmd, view_chm.cmd, view_html.cmd, chmhelper.pl:
17492: config updated to doxygen 1.2.15, created helper which fixes
17493: minor bugs in chm project files & htm tree. changed extension to
17494: .htm
17495:
17496: 2002-04-18 paf
17497:
17498: * src/doc/doxygen.cfg: .chi generation disabled
17499:
17500: * src/: classes/classes.h, classes/xdoc.C, classes/xnode.C,
17501: classes/xnode.h, types/pa_vxdoc.C: xdoc(xnode) now fully -
17502: fields&methods
17503:
17504: * src/: classes/classes.h, classes/hash.C, types/pa_value.h,
17505: types/pa_vbool.h, types/pa_vcookie.h, types/pa_vdate.h,
17506: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.h,
17507: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
17508: types/pa_vjunction.h, types/pa_vobject.h, types/pa_vrequest.h,
17509: types/pa_vresponse.h, types/pa_vstateless_class.h,
17510: types/pa_vstateless_object.h, types/pa_vstatus.h,
17511: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h,
17512: types/pa_vxdoc.h, types/pa_vxnode.h: fclass_real lowered from
17513: VStateless_class to VObject
17514:
17515: * src/: main/pa_request.C, types/pa_valiased.h,
17516: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17517: types/pa_vstring.h: VStateless_string_object speicalized light
17518: version of VStateless_object
17519:
17520: * src/classes/op.C: ^throw comment param made optional
17521:
17522: * src/types/: pa_valiased.C, pa_valiased.h, pa_vclass.h,
17523: pa_vobject.h, pa_wcontext.C: VAliased get/set alias now virtual
17524: and implemented down in VClass, fclass_alias removed,
17525:
17526: * src/types/pa_value.C: forced to cut that from .h because of
17527: VStateless_class usage [undefined in .h]
17528:
17529: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
17530: main/compile_tools.C, main/compile_tools.h, main/execute.C,
17531: main/pa_request.C, types/pa_vmethod_frame.h: OP_GET_METHOD_FRAME
17532: merged with OP_CALL, VCodeFrame move to stack [no more heap waste
17533: on each CALL]
17534:
17535: * src/: classes/classes.h, classes/date.C, classes/double.C,
17536: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
17537: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
17538: classes/response.C, classes/string.C, classes/table.C,
17539: classes/void.C, classes/xnode.C, include/pa_globals.h,
17540: include/pa_request.h, main/execute.C, main/pa_globals.C,
17541: main/pa_request.C, types/Makefile.am, types/pa_value.h,
17542: types/pa_vdouble.h, types/pa_vform.C, types/pa_vhash.h,
17543: types/pa_vint.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
17544: types/pa_vstateless_class.h, types/pa_wcontext.C,
17545: types/pa_wcontext.h, types/pa_wwrapper.h, types/types.dsp:
17546: removed Value::fname
17547:
17548: 2002-04-17 paf
17549:
17550: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
17551: doc/ClassExample3.dox, doc/compiler.dox, doc/module.dox,
17552: doc/pooled.dox, doc/string.dox, doc/targets.dox,
17553: include/pa_pool.h, include/pa_types.h: dox updated to current
17554: state, PTHROW freshen to throw & co
17555:
17556: * src/types/pa_vhash.h: vstring wrong parent fixed
17557:
17558: * src/classes/op.C: taint local result var bug fixed
17559:
17560: 2002-04-16 paf
17561:
17562: * asm.txt, form.txt, lang.txt, sql.txt: removed outdated. see in
17563: Attic asm.txt as most interesting
17564:
17565: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: removed
17566: check, preventing content-length: 0 from appearing
17567:
17568: * src/main/execute.C: $result in @main now taken into account as in
17569: usual functions
17570:
17571: * src/: doc/postbuild.txt, main/execute.C: $result in @postprocess
17572: & @unhandled_exception now taken into account as in usual
17573: functions
17574:
17575: * src/doc/postbuild.txt: instructions on post .html build
17576:
17577: * src/doc/: doxygen.cfg, html2chm.cmd: .chm file only now, no .chi
17578:
17579: * src/: classes/file.C, main/pa_exec.C: stderr of execs mark as
17580: tainted
17581:
17582: * src/main/pa_request.C: uri in error log
17583:
17584: * src/: classes/date.C, main/compile.tab.C, targets/cgi/parser3.C:
17585: cheched date:create(days) param for validity [later were assumed
17586: valid and crashed on invalid onces]
17587:
17588: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
17589: main/execute.C, targets/cgi/parser3.C: OP_CALL -> OP_CALL__WRITE
17590: and used that for removing VString wrapper
17591:
17592: * src/classes/op.C: exception2vhash file now tainted
17593:
17594: * src/classes/op.C: _process pseudo origin copied from local var to
17595: heap
17596:
17597: * src/classes/op.C: extra check on empty file in origin in _execute
17598:
17599: 2002-04-15 paf
17600:
17601: * src/: main/execute.C, types/pa_value.h: fixed name update
17602:
17603: * src/classes/: file.C, op.C, table.C: finished dual write_xxx_lang
17604: functions
17605:
17606: * src/: classes/file.C, classes/hash.C, classes/op.C,
17607: include/pa_request.h, main/execute.C, types/pa_wcontext.h:
17608: started dual write_xxx_lang functions, if checked & works
17609:
17610: * src/: classes/date.C, classes/file.C, classes/mail.C,
17611: classes/string.C, classes/xnode.C, include/pa_request.h,
17612: types/pa_value.h, types/pa_wcontext.h: removed absolutely
17613: unnecessary VString shells
17614:
17615: * src/main/execute.C: CodeFrame soul fixed [mistakenly killed by
17616: prev changes]
17617:
17618: * src/: classes/image.C, classes/op.C, classes/string.C,
17619: classes/table.C, include/pa_request.h, main/execute.C,
17620: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
17621: StringOrValue wcontext result, now ready for dual writes
17622:
17623: * src/targets/cgi/parser3.C: ctime sometimes can be just "",
17624: checked that
17625:
17626: * src/main/: compile.tab.C, compile.y, compile_tools.C,
17627: compile_tools.h, execute.C: OP_GET_ELEMENT+OP_GET_ELEMENT__WRITE
17628: changed to OP_WRITE_VALUE in var get cases
17629:
17630: * src/: classes/op.C, include/pa_globals.h, include/pa_opcode.h,
17631: include/pa_request.h, main/compile.tab.C, main/compile.y,
17632: main/compile_tools.C, main/compile_tools.h, main/execute.C,
17633: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C:
17634: switch in hash constructor fixed [were problems with using of
17635: stacked wwrapper after it's death]
17636:
17637: 2002-04-12 paf
17638:
17639: * operators.txt, src/classes/table.C: table.select(expression) 0
17640:
17641: 2002-04-11 paf
17642:
17643: * src/: classes/string.C, include/pa_request.h, main/execute.C:
17644: Request::process_internal codeFrame & wwrapper stacked [not
17645: wasting heap anymore]
17646:
17647: 2002-04-10 paf
17648:
17649: * src/: classes/double.C, classes/file.C, classes/hash.C,
17650: classes/image.C, classes/int.C, classes/math.C, classes/op.C,
17651: classes/string.C, classes/table.C, classes/void.C,
17652: classes/xdoc.C, include/pa_request.h, main/execute.C,
17653: main/pa_string.C: killed Request::process() wrapping
17654: VString(String) in case we need only String
17655:
17656: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
17657: killed 8 bytes from String.head
17658:
17659: 2002-04-09 paf
17660:
17661: * src/: main/compile.tab.C, targets/cgi/parser3.C,
17662: targets/isapi/parser3isapi.C: removed { char *a; { /*sub
17663: local*/char b[...]; a=b; situations
17664:
17665: * operators.txt, src/classes/xdoc.C: xslt params made literal
17666:
17667: * src/classes/xdoc.C: xslt params fixed
17668:
17669: * src/: main/pa_common.C, targets/cgi/parser3.C,
17670: types/pa_vdouble.h, types/pa_vint.h: int/double get_string now
17671: not pool.malloc(MAX_NUMBER) but really neaded
17672:
17673: * operators.txt, src/classes/double.C, src/classes/int.C:
17674: int/double.int/double(default)
17675:
17676: 2002-04-04 paf
17677:
17678: * src/: include/pa_string.h, main/pa_string.C: fixed string.replace
17679: [when reconstructing pieces were split by
17680: max_integral(piece.size), thus some strings to replace happen to
17681: be split into two = not replaced)
17682:
17683: * src/targets/cgi/: parser3.C, parser3.dsp: document root in
17684: standalone version = current dir
17685:
17686: * src/targets/cgi/parser3.C: document root in standalone version =
17687: current dir
17688:
17689: 2002-04-03 paf
17690:
17691: * configure, configure.in: more checks on nonexistent charset
17692:
1.116 moko 17693: * INSTALL, configure, configure.in: root config configure options
1.95 moko 17694:
17695: 2002-04-02 paf
17696:
17697: * src/main/compile.C: parser.compile [exception name more like in
17698: doc]
17699:
17700: 2002-04-01 paf
17701:
17702: * src/: classes/mail.C, include/pa_string.h, main/untaint.C,
17703: targets/isapi/parser3isapi.dsp: mail subject encoding taken from
17704: .content-type.charset, not .charset
17705:
17706: 2002-03-29 paf
17707:
17708: * etc/parser3.charsets/koi8-r.cfg: koi8-r += ukranian letters
17709:
17710: * operators.txt, src/classes/date.C: ^date::create now may not
17711: supply day, default 1. checked 29.03 -> 29.02 roll on non 366
17712: days' year. | 31.05->31.04 roll
17713:
17714: 2002-03-28 paf
17715:
17716: * operators.txt, src/classes/date.C, src/classes/op.C,
17717: src/include/pa_globals.h, src/include/pa_hash.h,
17718: src/main/pa_globals.C, src/types/pa_vdate.h: ^cache[file][date]{
17719: ^cache(seconds) ^cache[date] }
17720:
17721: * src/classes/: xdoc.C, xnode.C, xnode.h: removed redundant pool
17722: param
17723:
17724: 2002-03-27 paf
17725:
17726: * operators.txt, src/classes/date.C, src/classes/double.C,
17727: src/classes/file.C, src/classes/form.C, src/classes/hash.C,
17728: src/classes/image.C, src/classes/int.C, src/classes/mail.C,
17729: src/classes/math.C, src/classes/op.C, src/classes/string.C,
17730: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
17731: src/classes/xnode.C, src/include/pa_exception.h,
17732: src/include/pa_request.h, src/include/pa_stylesheet_connection.h,
17733: src/main/compile.C, src/main/compile_tools.C, src/main/execute.C,
17734: src/main/pa_array.C, src/main/pa_charset.C,
17735: src/main/pa_charsets.C, src/main/pa_common.C,
17736: src/main/pa_dictionary.C, src/main/pa_exception.C,
17737: src/main/pa_exec.C, src/main/pa_pool.C, src/main/pa_request.C,
17738: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
17739: src/main/pa_string.C, src/main/pa_table.C, src/main/untaint.C,
17740: src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
17741: src/types/pa_value.h, src/types/pa_vcookie.C,
17742: src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vhash.h,
17743: src/types/pa_vmethod_frame.h, src/types/pa_vstatus.C,
17744: src/types/pa_vtable.C, src/types/pa_vxdoc.h,
17745: src/types/pa_vxnode.h, src/types/pa_wcontext.C,
17746: src/types/pa_wwrapper.h: assigned exception types
17747:
17748: * operators.txt, src/classes/op.C, src/include/pa_config_fixed.h,
17749: src/include/pa_request.h, src/main/execute.C,
17750: src/main/pa_request.C: decided agains resetting exception_trace,
17751: just changed name
17752:
17753: 2002-03-26 paf
17754:
17755: * src/: include/pa_common.h, main/pa_exec.C: windows exec chdir
17756: fixed
17757:
17758: * src/classes/op.C: forced language of $source field of exception
17759: to 'tainted', so that sql-langed-frags could be outputed outside
17760: of connect
17761:
17762: * operators.txt: removed date.roll limit of +-1 offset
17763:
17764: * src/classes/date.C: removed date.roll limit of +-1 offset
17765:
17766: * operators.txt, src/classes/date.C: fixed date roll on
17767: daylightsaving days mktime took into account tm_isdst flag, which
17768: remained from BEFORE roll, but should have been reset
17769:
17770: 2002-03-25 paf
17771:
17772: * operators.txt, src/targets/cgi/parser3.C:
17773: http_site_config_filespec
17774:
17775: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
17776: main/pa_exec.C: f(!forced_allow) to allow --with-sendmail to work
17777: with any/both --disable-foreign-group-files --disable-execs
17778:
17779: * INSTALL: "--with=sendmail=COMMAND" comment
17780:
17781: * INSTALL, configure, configure.in, src/classes/mail.C,
17782: src/include/pa_config_auto.h.in, src/main/pa_exec.C,
1.116 moko 17783: src/targets/cgi/Makefile.am: --disable-foreign-group-files now
17784: disables execs also. introducing --sendmail
1.95 moko 17785:
17786: * operators.txt: pgsql options comment
17787:
17788: * INSTALL: comment on --disable-link-stdcpp
17789:
1.116 moko 17790: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
17791: libstdc++ link skipping configure option
1.95 moko 17792:
17793: * src/: classes/op.C, include/pa_sql_connection.h: sql connection
17794: with error were put to cache with 'marked_to_rollback' flag, all
17795: consequent even OK requests rolled back
17796:
17797: 2002-03-22 paf
17798:
17799: * src/main/pa_exec.C: createprocess nowindow flag check on readfile
17800: false return
17801:
17802: * operators.txt: few comments on sets
17803:
17804: 2002-03-18 paf
17805:
17806: * operators.txt, src/classes/op.C, src/include/pa_exception.h,
17807: src/include/pa_globals.h, src/include/pa_request.h,
17808: src/include/pa_stack.h, src/main/pa_globals.C,
17809: src/main/pa_request.C: introducing ^try
17810:
17811: * src/: main/pa_charset.C, targets/isapi/pa_threads.C,
17812: types/pa_vdouble.h: removed some tested @tests
17813:
17814: 2002-03-15 paf
17815:
17816: * operators.txt, src/classes/table.C: ^table.locate(logical expr)
17817:
17818: 2002-03-13 paf
17819:
17820: * src/main/pa_exception.C: checked not-pooled malloc
17821:
17822: 2002-03-11 paf
17823:
17824: * INSTALL, configure, configure.in,
17825: src/include/pa_config_auto.h.in: --disable-foreign-group-files
17826:
17827: * src/main/pa_common.C: --disable-foreign-group-files
17828:
17829: * INSTALL: --disable-execs
17830:
17831: * src/main/pa_exec.C: --disable-execs
17832:
17833: * configure, configure.in, src/include/pa_config_auto.h.in:
17834: --disable-execs
17835:
17836: * src/: include/pa_config_fixed.h, main/pa_exec.C: --disable-execs
17837:
17838: * src/types/pa_vfile.C: $file.text now 0A linebreaks,
17839: file::exec/cgi linebreaks "0D0A" changed to 0A onces
17840:
17841: 2002-03-05 paf
17842:
17843: * operators.txt, src/classes/date.C: date week calendar columns
17844: named
17845:
17846: * operators.txt, src/classes/date.C: date week calendar columns
17847: named
17848:
17849: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: iis5 now
17850: requires headers to be terminated with \r\n manually [refuses to
17851: separate header/body itself]
17852:
17853: * src/: main/pa_globals.C, targets/cgi/parser3.C,
17854: targets/isapi/parser3isapi.C: isapi site config beside .dll
17855:
17856: 2002-03-04 paf
17857:
17858: * src/: classes/op.C, types/pa_vfile.C: process body now evaluated
17859: in PASS language
17860:
17861: * src/: classes/op.C, include/pa_string.h, main/pa_string.C: string
17862: deserialize checks on broken file
17863:
17864: * src/targets/isapi/: pa_threads.C, parser3isapi.C,
17865: parser3isapi.dsp: isapi updated
17866:
17867: 2002-03-01 paf
17868:
17869: * src/main/pa_exec.C: execle -> execve, now argc OK
17870:
17871: 2002-02-28 paf
17872:
17873: * src/main/untaint.C: removed some debug comments
17874:
17875: * src/main/pa_charsets.C: when placing charset to cache using
17876: global name now [were request]
17877:
17878: * configure, configure.in: apache module updated
17879:
17880: * src/main/pa_string.C: origin by first piece preferred before last
17881: piece
17882:
17883: 2002-02-27 paf
17884:
17885: * src/main/pa_charset.C: size_t
17886:
17887: * INSTALL: shared/static-xml with-pathlink
17888:
17889: * operators.txt: SMTP comment
17890:
17891: 2002-02-26 paf
17892:
17893: * src/main/pa_exec.C: more precise names for vars, cosmetic
17894:
17895: * src/classes/xnode.C: in some situation, xpath query returned
17896: result with type NODESET, but empty nodeset member field, checked
17897: that
17898:
17899: 2002-02-22 paf
17900:
17901: * INSTALL: without-zlib comment
17902:
17903: * etc/parser3.charsets/windows-1251.cfg: °
17904:
17905: * configure, configure.in: glib###.a detection fixed
17906:
17907: * INSTALL: hashfile removed from INSTALL
17908:
1.116 moko 17909: * Makefile.am: make update
1.95 moko 17910:
17911: * src/main/pa_string.C: string iterators fixed again, so were
17912: String::join_chain
17913:
17914: * src/main/pa_string.C: string iterators fixed again, so were
17915: String::join_chain
17916:
17917: * src/: include/pa_string.h, main/pa_string.C: string iterators
17918: fixed again, so were String::join_chain
17919:
17920: * src/types/pa_vcookie.C: cookie "expires=0" = "session"
17921:
17922: * operators.txt, src/types/pa_vcookie.C: cookie "expires=0" =
17923: "session"
17924:
1.116 moko 17925: * configure, configure.in, src/include/pa_config_auto.h.in:
17926: --with-shared-xml --with-static-xml
1.95 moko 17927:
17928: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
17929: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
17930: types/types.dsp: *.dsp: removed refereces to win32db & ancient
17931: xalan&xml
17932:
17933: * acconfig.h: acconfig move in cvs[from src/libltdl to /]
17934:
17935: * operators.txt, src/classes/classes.dsp, src/main/main.dsp,
17936: src/types/types.dsp: removed hashfile support from sources for
17937: now
17938:
1.116 moko 17939: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 17940: src/classes/hashfile.C, src/include/Makefile.am,
1.116 moko 17941: src/include/pa_config_auto.h.in, src/include/pa_db_connection.h,
17942: src/include/pa_db_manager.h, src/include/pa_db_table.h,
17943: src/main/Makefile.am, src/main/pa_db_connection.C,
1.95 moko 17944: src/main/pa_db_manager.C, src/main/pa_db_table.C,
1.116 moko 17945: src/main/pa_globals.C, src/targets/cgi/Makefile.am,
17946: src/types/Makefile.am, src/types/pa_vhashfile.C,
17947: src/types/pa_vhashfile.h: removed hashfile support for now
1.95 moko 17948:
17949: 2002-02-21 paf
17950:
17951: * src/main/untaint.C: removed debug code, activated commented-for
17952: debug parts
17953:
1.116 moko 17954: * Makefile.am: make cvsupdate
1.95 moko 17955:
17956: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
17957: main/untaint.C: STRING_*FOREACH_ROW changed to stop at
17958: append_row, not at link zero now string to string appending works
17959:
17960: 2002-02-20 paf
17961:
17962: * src/: include/pa_string.h, main/execute.C, main/untaint.C,
17963: targets/cgi/pa_pool.C, targets/cgi/parser3.C: //#define
17964: DEBUG_STRING_APPENDS_VS_EXPANDS
17965:
17966: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
17967: economy: 22%
17968:
17969: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
17970: space uptimized: string::link_row removed
17971:
17972: * src/: include/pa_string.h, include/pa_stylesheet_connection.h,
17973: main/pa_db_manager.C, main/pa_dictionary.C, main/pa_string.C,
17974: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
17975: types/pa_vstring.h: speed uptimized: string::is_empty
17976:
17977: * operators.txt, src/include/pa_common.h,
17978: src/include/pa_config_fixed.h, src/include/pa_string.h,
17979: src/include/pa_types.h, src/main/compile.tab.C,
17980: src/main/execute.C, src/main/pa_string.C, src/main/untaint.C,
17981: src/targets/cgi/pa_pool.C, src/targets/cgi/parser3.C: strign to
17982: string append optimiziation idea and estimates
17983:
17984: 2002-02-19 paf
17985:
17986: * src/classes/math.C: not used directly [but erroreously reported
17987: that 'is', thus registering twice&other probs]
17988:
17989: * src/classes/: xdoc.C, xnode.C: getElementsByTagName and *NS moved
17990: to node [element]
17991:
17992: * src/main/compile.C: without string_origins parse error
17993: file+line+col possible
17994:
17995: * src/main/: compile.C: without string_origins not worked
17996:
17997: 2002-02-18 paf
17998:
17999: * src/types/pa_vdouble.h: since we have in_expression removed that
18000: trick i've installed into double::as_string
18001:
18002: * src/main/pa_globals.C: extern "C" was removed too fast
18003:
18004: * src/: include/pa_opcode.h, include/pa_request.h,
18005: main/compile.tab.C, main/compile.y, main/execute.C,
18006: types/pa_wcontext.h: in_expression aimed to solve old problem
18007: with string/nonstring values, now in expressions double/int
18008: values are passed as-is, without stupid tostring/fromstring
18009: conversions
18010:
18011: * src/main/: main.dsp, pa_globals.C: removed unneded #ifdef
18012: __cplusplus } #endif
18013:
18014: * src/main/compile.tab.C: bison env set so one could compile
18015: without cygwin installed
18016:
18017: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
18018: targets/cgi/parser3.dsp, types/types.dsp: win32xml now contains
18019: gnome xml libs parser .dsp-s changed accordingly
18020:
18021: * operators.txt, src/targets/cgi/parser3.C: PARSER_ROOT_CONFIG
18022:
18023: * operators.txt, src/classes/date.C: date::create [were date::set,
18024: with backward comp
18025:
18026: * src/classes/math.C: math:random range check fixed
18027:
18028: * src/main/: compile.tab.C, compile.y: integer division stops name
18029:
18030: * INSTALL: local install comment
18031:
1.116 moko 18032: * ltconfig, ltmain.sh: removed libtool subpart files
1.95 moko 18033:
1.116 moko 18034: * acinclude.m4, aclocal.m4, configure, configure.in,
18035: src/include/pa_config_auto.h.in,
18036: src/include/pa_config_includes.h, src/targets/cgi/Makefile.am,
18037: src/targets/cgi/parser3.C: removed libtool usage from build mech
1.95 moko 18038:
18039: * operators.txt: \ comment
18040:
18041: 2002-02-13 paf
18042:
18043: * src/include/pa_config_includes.h: sys/time time both included
18044: now. vaguely remember confilicts on this on some system [not on
18045: six|ablv] so when would see them again would think up proper
18046: check
18047:
1.116 moko 18048: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
18049: --with-glib-config CXXLINK=$(CC) for targets/cgi/parser3
1.95 moko 18050:
18051: * src/main/pa_common.C: truncation never occured when writing files
18052: on unix [since i've changed cache mech] fix
18053:
18054: * src/main/pa_common.C: strnchr: sanity check added
18055:
18056: * etc/parser3.charsets/windows-1257.cfg: id added
18057:
18058: * etc/parser3.charsets/windows-1257.cfg, src/targets/cgi/parser3.C:
18059: baltic charset file generated, in generation script ispunct check
18060: added
18061:
18062: 2002-02-08 paf
18063:
1.116 moko 18064: * src/: include/Makefile.am, sql/Makefile.am,
18065: targets/isapi/Makefile.am: forgotten makes
1.95 moko 18066:
18067: * src/types/: pa_vcookie.C: VCookie::fill_fields one check
18068: forgotten
18069:
18070: * src/types/pa_vcookie.C: VCookie::fill_fields one check forgotten
18071:
18072: * INSTALL, README: install&others updated
18073:
18074: * AUTHORS, COPYING, ChangeLog, INSTALL: install&others updated
18075:
1.116 moko 18076: * Makefile.am, configure, configure.in,
18077: etc/parser3.charsets/Makefile.am, src/Makefile.am,
18078: src/classes/Makefile.am, src/main/Makefile.am,
18079: src/main/pa_status_provider.C, src/targets/Makefile.am,
18080: src/targets/cgi/Makefile.am, src/types/Makefile.am: 'make dist'
18081: works
1.95 moko 18082:
18083: * src/: classes/classes.C, classes/classes.h, classes/date.C,
18084: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
18085: classes/hashfile.C, classes/int.C, classes/mail.C,
18086: classes/math.C, classes/op.C, classes/response.C,
18087: classes/string.C, classes/table.C, classes/void.C,
18088: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
18089: include/pa_array.h, include/pa_cache_managers.h,
18090: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
18091: include/pa_config_fixed.h, include/pa_config_includes.h,
18092: include/pa_db_connection.h, include/pa_db_manager.h,
18093: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
18094: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
18095: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
18096: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
18097: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
18098: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
18099: include/pa_stack.h, include/pa_string.h,
18100: include/pa_stylesheet_connection.h,
18101: include/pa_stylesheet_manager.h, include/pa_table.h,
18102: include/pa_threads.h, include/pa_types.h, main/compile.C,
18103: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18104: main/pa_array.C, main/pa_cache_managers.C, main/pa_charsets.C,
18105: main/pa_db_connection.C, main/pa_db_manager.C,
18106: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
18107: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
18108: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
18109: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
18110: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
18111: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
18112: targets/cgi/pa_threads.C, targets/cgi/pool_storage.h,
18113: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
18114: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
18115: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
18116: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
18117: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
18118: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.h,
18119: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.h,
18120: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
18121: types/pa_vmethod_frame.h, types/pa_vobject.h,
18122: types/pa_vrequest.h, types/pa_vresponse.h,
18123: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
18124: types/pa_vstateless_object.h, types/pa_vstatus.C,
18125: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
18126: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
18127: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h,
18128: classes/image.C, main/pa_common.C, main/pa_exec.C,
18129: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
18130: types/pa_vfile.C, types/pa_vform.C, types/pa_vhashfile.C,
18131: types/pa_vimage.C, types/pa_vrequest.C, types/pa_vresponse.C,
18132: types/pa_vstring.C, types/pa_vtable.C, types/pa_vxdoc.C,
18133: types/pa_vxnode.C, main/pa_charset.C: name spelling
18134:
18135: * src/: classes/classes.C, classes/classes.h, classes/date.C,
18136: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
18137: classes/hashfile.C, classes/image.C, classes/int.C,
18138: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
18139: classes/string.C, classes/table.C, classes/void.C,
18140: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
18141: include/pa_array.h, include/pa_cache_managers.h,
18142: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
18143: include/pa_config_fixed.h, include/pa_config_includes.h,
18144: include/pa_db_connection.h, include/pa_db_manager.h,
18145: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
18146: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
18147: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
18148: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
18149: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
18150: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
18151: include/pa_stack.h, include/pa_string.h,
18152: include/pa_stylesheet_connection.h,
18153: include/pa_stylesheet_manager.h, include/pa_table.h,
18154: include/pa_threads.h, include/pa_types.h, main/compile.C,
18155: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
18156: main/execute.C, main/pa_array.C, main/pa_cache_managers.C,
18157: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
18158: main/pa_db_connection.C, main/pa_db_manager.C,
18159: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
18160: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
18161: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
18162: main/pa_socks.C, main/pa_sql_driver_manager.C,
18163: main/pa_status_provider.C, main/pa_string.C,
18164: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
18165: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
18166: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
18167: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
18168: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
18169: targets/isapi/pool_storage.h, types/pa_valiased.C,
18170: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
18171: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
18172: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
18173: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
18174: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
18175: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
18176: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
18177: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
18178: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
18179: types/pa_vresponse.h, types/pa_vstateless_class.C,
18180: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18181: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
18182: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
18183: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
18184: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
18185: types/pa_wcontext.h, types/pa_wwrapper.h: 2002
18186:
18187: 2002-02-07 paf
18188:
18189: * src/main/pa_socks.C: swapped headers to avoid compiler warnings
18190:
1.116 moko 18191: * configure, configure.in, src/include/pa_config_auto.h.in,
18192: src/main/pa_common.C, src/main/pa_socks.C: compiled under cygwin
18193: added yet another locking function: fcntl
1.95 moko 18194:
18195: * config.sub: on cygwin configure passes it with strange i1586
18196: const, hacked it to mean i586
18197:
18198: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
18199: disabled $if reference due to conflicts with local variables
18200:
18201: * operators.txt, src/classes/xdoc.C, src/include/pa_config_fixed.h:
18202: xdoc::set obsolete now, now xdoc::create, with both sences
18203:
18204: * operators.txt, src/classes/table.C, src/include/pa_array.h,
18205: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
18206: table::create now // 'set' name obsolete now table clone.
18207:
18208: * operators.txt, src/classes/string.C,
18209: src/include/pa_config_fixed.h, src/main/compile.tab.C:
18210: ^int/double/string.format now can be called with normal []
18211: brackets, not stupid {} as it were implemented for some strange
18212: reason. retaining backward compatibility due to some
18213: already-implemented servers
18214:
18215: * src/: include/pa_array.h, main/compile.C, main/compile.tab.C,
18216: main/compile.y, main/compile_tools.C, main/compile_tools.h:
18217: operators now detected by check at name_without_curly_rdive_read
18218: rule whether diving code constists only of
18219: OP_VALUE+string+OP_GET_ELEMENT. and last op code substituted
18220: with OP_GET_ELEMENT_OR_OPERATOR to form
18221: OP_VALUE+string+OP_GET_ELEMENT_OR_OPERATOR. code
18222:
18223: 2002-02-06 paf
18224:
18225: * configure, configure.in: prefix expanded, grr
18226:
18227: * operators.txt, src/classes/mail.C: mail:send config changed
18228:
18229: 2002-02-05 paf
18230:
18231: * operators.txt: regex options commented
18232:
18233: * src/main/: pa_exec.C: argv0 now correct
18234:
18235: * src/types/pa_vstatus.C: status:rusage 3
18236:
18237: * src/types/pa_vstatus.C: status:rusage 2
18238:
18239: * operators.txt: status:rusage described int operators
18240:
18241: * src/types/pa_vstatus.C: status:rusage 1
18242:
18243: * configure.in, src/types/Makefile.am, src/types/pa_vstatus.h,
18244: src/types/types.dsp: status:rusage
18245:
18246: * configure.in, operators.txt, src/classes/file.C,
18247: src/classes/op.C, src/include/pa_common.h,
18248: src/include/pa_config_includes.h, src/main/compile.tab.C,
18249: src/main/pa_common.C: rewritten ^cache to use
18250: non-blocking-exclusive-caches
18251:
18252: * src/main/pa_common.C: text file read mode on win32 adjusted
18253: [speed impact. was off for debugging purpose, but forgotten
18254: afterwards]
18255:
18256: 2002-02-01 paf
18257:
18258: * src/classes/op.C: file_write does EX lock after create, while
18259: file_read does SH after open, so there's a moment after create
18260: but before EX lock when read can sneak into, and read
18261: just-created-for-writing-and-not-yet-locked file, added a check
18262: for that in ^cache...read
18263:
18264: 2002-01-31 paf
18265:
18266: * src/main/: compile.y, compile.tab.C: disabled operator call after
18267: ^xxx:
18268:
18269: * src/main/: compile.tab.C, execute.C: made operators lookup first
18270: in ^xxx situation. so that one could not do $if[1] ^if[xxx]
18271:
18272: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.C,
18273: main/compile.tab.C, main/compile.y, main/compile_tools.C,
18274: main/compile_tools.h, main/execute.C, types/pa_wcontext.h:
18275: operators check 6.1 rewritten. now check is done at compile time
18276:
18277: * src/main/execute.C: operators check 5 floated up old error of
18278: staying in 'entered class/object' state after $a($a..) it
18279: prevented operators from being called thereafter
18280:
18281: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
18282: main/execute.C: operators check 4 floated up old error of staying
18283: in 'entered object' state after ^a.a(a) it prevented operators
18284: from being called thereafter
18285:
18286: * src/main/execute.C: operators check 3 floated up old error of
18287: staying in 'entered class' state after $a:a(a) it prevented
18288: operators from being called thereafter
18289:
18290: * src/: main/execute.C, types/pa_wcontext.h: operators check 2
18291: floated up old error of staying in 'entered class' state after
18292: $a:a[a] it prevented operators from being called thereafter
18293:
18294: * src/main/execute.C: operators check, thay mistakenly seen in
18295: $class:operator $object.operators contexts
18296:
18297: * src/: classes/xdoc.C, targets/cgi/parser3.dsp: now compiles under
18298: win32
18299:
1.116 moko 18300: * INSTALL, configure, configure.in, ident.awk, etc/Makefile.am,
18301: src/classes/Makefile.am, src/main/Makefile.am,
18302: src/targets/cgi/Makefile.am,
1.95 moko 18303: src/targets/cgi/pa_config_paths.h.in, src/targets/cgi/parser3.C,
1.116 moko 18304: src/types/Makefile.am: lowered indent.awk back to src/
1.95 moko 18305:
1.116 moko 18306: * AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, NEWS, README,
18307: acinclude.m4, aclocal.m4, asm.txt, config.guess, config.sub,
18308: configure, configure.in, form.txt, ident.awk, install-sh,
18309: lang.txt, ltconfig, ltmain.sh, missing, mkinstalldirs,
18310: operators.txt, parser3.dsw, sql.txt, types.txt, etc/Makefile.am,
1.95 moko 18311: etc/parser3.charsets/Makefile.am,
18312: etc/parser3.charsets/koi8-r.cfg,
18313: etc/parser3.charsets/windows-1250.cfg,
18314: etc/parser3.charsets/windows-1251.cfg, src/Makefile.am,
1.116 moko 18315: src/classes/Makefile.am, src/include/pa_config_auto.h.in,
18316: src/main/Makefile.am, src/targets/cgi/Makefile.am,
18317: src/targets/cgi/parser3.C, src/types/Makefile.am: moved etc&www
18318: out of src, moved configure&co out of src added windows-1250.cfg
1.95 moko 18319: straightened installation scripts procedure made
18320: targets/cgi/parser3.C be dependant on ./configure --sysconfdir
18321: change
18322:
18323: 2002-01-30 paf
18324:
18325: * src/classes/xdoc.C: acconfig.h changed [comments before #undefs
18326: removed] those comments were a mistake, and prevented libltdl
18327: from function properly
18328:
18329: 2002-01-29 paf
18330:
1.116 moko 18331: * src/: Makefile.am, classes/Makefile.am: removed libltdl/libtool
18332: creation [modified acinclude.m4 which were creating int into just
18333: assignment LIBTOOL=../libtool] added default system
18334: config&charsetts prepared 'make install', now it installs
18335: targets/cgi/parser3 into bin directory etc/parser3.conf &
18336: etc/parser3.charsets/* into $sysconfdir and
1.95 moko 18337: $sysconfdir/parser3.charsets respectively
18338:
18339: * src/: classes/xdoc.C, include/pa_charset.h, include/pa_globals.h,
18340: main/pa_globals.C: few forgotten ifdef XML added
18341:
18342: 2002-01-28 paf
18343:
1.116 moko 18344: * src/: classes/Makefile.am, targets/cgi/Makefile.am: xalan-patch
1.95 moko 18345: removed
18346:
18347: * src/main/pa_exception.C: dom|generic error output fix
18348:
18349: * src/classes/xnode.C: xdoc.importNode 3 [check err]
18350:
18351: * src/classes/xnode.C: xdoc.importNode 2 [mistype err]
18352:
18353: * src/: classes/xnode.C, types/pa_vxdoc.h: xdoc.importNode 1
18354: [fixed as_node helper func to accept docs]
18355:
18356: * src/: classes/xdoc.C, classes/xnode.h, main/pa_exception.C:
18357: xdoc.importNode 0
18358:
18359: * src/classes/xdoc.C: xdoc::set now untaints OK
18360:
18361: 2002-01-25 paf
18362:
18363: * src/main/: compile.tab.C, compile.y: #comment before @ after
18364: @SPECIAL now works OK
18365:
18366: * src/main/: pa_exec.C: unix: exec now does chdir to script dir
18367:
18368: * src/main/pa_exec.C: max arg count now 10, and proper message on
18369: violation that added
18370:
18371: * src/classes/hash.C: unified hash::sql, now
18372: ^hash::sql{query}[[$.limit(2) $.offset(4)]]
18373:
18374: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
18375: ^file:lock[filename]{code}
18376:
18377: * src/: classes/file.C, classes/op.C, classes/string.C,
18378: classes/table.C, classes/xdoc.C, include/pa_common.h,
18379: main/pa_common.C, types/pa_vfile.h: removed redundant pool param
18380: to some pa_common funcs
18381:
18382: * src/: include/pa_charset.h, main/pa_globals.C:
18383: http://localhost/abc -> $ENV{DOCUMENT_ROOT}/abc | ./abc
18384:
18385: * src/: include/pa_charset.h, main/pa_charset.C,
18386: include/pa_config_fixed.h, main/compile.tab.C: typedef XMLCh...
18387: not stupid illegal define
18388:
18389: 2002-01-24 paf
18390:
18391: * src/include/pa_version.h: changed version number
18392:
18393: * src/: classes/hashfile.C, include/pa_db_table.h,
18394: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
18395: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18396: main/pa_db_connection.C, main/pa_db_table.C,
18397: types/pa_vhashfile.C, types/pa_vhashfile.h: merged from r17 -
18398: hashfile without logfiles
18399:
18400: * src/: classes/hashfile.C, include/pa_db_table.h,
18401: main/compile.tab.C, main/pa_db_connection.C, main/pa_db_table.C,
18402: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile: removed use
18403: of transactions [libdb removed DB_INIT_LOCK, DB_INIT_LOG,
18404: DB_INIT_TXN init bits, thus got rid of huge log files, which
18405: cluttered disk without huge need]
18406:
18407: * src/classes/: xdoc.C, xnode.C, xnode.h: gdome_xml_doc_get_xmlDoc
18408: handy macro, which is strangly abscent in dome lib
18409:
18410: * src/classes/xdoc.C: xsltSaveResultTo checked <0 response
18411:
18412: * src/classes/xdoc.C: checked empty response
18413:
18414: * src/classes/xnode.C: xdoc.select fixed context node [were always
18415: /, not self node]
18416:
18417: * src/classes/xnode.C: xnode.select returns array always now, in
18418: case 'nothing found' returns empty array
18419:
18420: * src/classes/xnode.C: xpath nodes select bug [0] instead of [i],
18421: be more tender with ctrl/c/v
18422:
18423: 2002-01-23 paf
18424:
18425: * src/: classes/xdoc.C, main/pa_globals.C: xdoc::load/set entities
18426: substituted. // 2. when dom tree with entites goes under
18427: transform text nodes // got [erroreosly] cut on first
18428: entity occurance
18429:
18430: * src/types/pa_vdouble.h: double prec. todo: get rid of
18431: twice-converting
18432:
18433: * src/types/pa_vdouble.h: %.20E now float format when %g produced
18434: 'e' in output this is for regretful twice-converting here:
18435: $a(double value) when they write double falue they convert it to
18436: string first, thus %g were losing precesion.
18437:
18438: todo: think up some way to remove double->string string->double
18439: twice-converting
18440:
18441: * src/: classes/xdoc.C, main/pa_globals.C, types/pa_vdouble.h:
18442: %.20E now default float format this is for regretful
18443: twice-converting here: $a(double value) when they write double
18444: falue they convert it to string first, thus %g were losing
18445: precesion.
18446:
18447: todo: think up some way to remove double->string string->double
18448: twice-converting
18449:
18450: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
18451: main/pa_globals.C: xmlSubstituteEntitiesDefault(1) now global,
18452: reasons in comment inside
18453:
18454: * src/main/pa_globals.C: xslt linked dynamically. [mistekenly were
18455: statically linked]
18456:
18457: * src/: include/pa_exception.h, main/compile.tab.C,
18458: main/pa_exception.C: removed exception va_list constructor. 1.
18459: not needed anymore 2. there were a conflict[causing errors]
18460: between ctor(, va_list) ctor(, ...) compiler[both msvc and gcc]
18461: never detected an ambiguilty here, compiling ctor(, "hello") into
18462: ctor(, va_list) which, of course, caused gpf
18463:
18464: * src/main/pa_globals.C: removed debug xslt messages
18465:
18466: 2002-01-22 paf
18467:
18468: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
18469: main/pa_globals.C: xsl stylesheet load: parsed entities, this
18470: helps compiling stylesheet properly. example: this refused to
18471: work, <b>«<xsl:value-of select="@title"
18472: />»</b> stranly worked only this way:
18473: <b>«<xsl:value-of select="@title" />»</b>
18474:
18475: docs says "set it to 1", never going into details, so I decided
18476: to try NOT to do that
18477:
18478: * src/classes/table.C: join behaived badly in case named tables
18479: structure mismatched: 0 strings sneaked into dest failing
18480: afterwards. replaced them with empty strings
18481:
18482: 2002-01-21 paf
18483:
18484: * src/main/pa_charset.C: checked empty transcoders in
18485: transcode_cstr|buf
18486:
18487: * src/classes/xdoc.C: xdoc::load error source = filespec
18488:
18489: * src/classes/xdoc.C: transform error source now
18490: stylesheet_filespec
18491:
1.116 moko 18492: * src/: classes/xdoc.C, classes/xnode.C,
1.95 moko 18493: include/pa_stylesheet_connection.h, main/pa_charset.C,
18494: main/pa_globals.C, main/pa_sql_driver_manager.C,
1.116 moko 18495: main/pa_stylesheet_manager.C, targets/cgi/Makefile.am: autoconf
18496: gnome
1.95 moko 18497:
18498: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
18499: include/pa_globals.h, include/pa_stylesheet_connection.h,
18500: main/pa_exception.C, main/pa_globals.C, targets/cgi/pa_threads.C:
18501: xslt generic error 1
18502:
18503: * src/: include/pa_stylesheet_connection.h, main/pa_exception.C:
18504: xml generic message 1
18505:
18506: * src/classes/table.C: ^table::load empty lines or #comments before
18507: headline
18508:
18509: * src/: include/pa_array.h, include/pa_globals.h,
18510: include/pa_request.h, include/pa_threads.h, main/pa_array.C,
18511: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
18512: targets/cgi/pa_threads.C, targets/isapi/pa_threads.C: xml generic
18513: errors 0
18514:
18515: 2002-01-16 paf
18516:
18517: * src/: classes/hash.C, classes/op.C, classes/string.C,
18518: classes/table.C, classes/void.C, classes/xdoc.C,
18519: include/pa_db_connection.h, include/pa_request.h,
18520: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
18521: include/pa_stylesheet_connection.h,
18522: include/pa_stylesheet_manager.h, main/pa_request.C,
18523: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
18524: targets/cgi/pool_storage.h: auto closers to sql_connection,
18525: stylesheet_connection auto destroyers to remaining gnome objects
18526:
18527: * src/classes/xdoc.C: few comments
18528:
18529: 2002-01-15 paf
18530:
18531: * src/classes/xdoc.C: xdoc file save string
18532:
18533: ready. todo: error handling
18534:
18535: * src/classes/xdoc.C: xdoc save rewritten using
18536: xmlAllocOutputBuffer less mallocs, more reallocs. less fragmented
18537: result
18538:
18539: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C:
18540: started output options parsing
18541:
18542: 2002-01-14 paf
18543:
18544: * src/classes/xdoc.C: method
18545:
18546: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
18547: include/pa_pool.h, include/pa_stylesheet_connection.h,
18548: main/main.dsp, main/pa_charset.C, main/pa_globals.C,
18549: main/pa_pool.C, main/pa_stylesheet_manager.C, types/pa_vxdoc.h:
18550: xslt transform0. TODO: use output options handle errors
18551:
18552: * src/classes/: xdoc.C, xnode.C: ^xdoc.file
18553:
18554: 2002-01-11 paf
18555:
18556: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
18557: main/compile_tools.C, main/compile_tools.h, main/execute.C:
18558: partial logical && || evaluation
18559:
18560: * src/classes/xnode.C: xpath selectNodes
18561:
18562: * src/: classes/xnode.C, include/pa_charset.h: xpath selectNode 3:
18563: string/number/bool
18564:
18565: * src/classes/xnode.C: xpath selectNode 2
18566:
18567: * src/: classes/xnode.C, include/pa_charset.h, main/pa_charset.C:
18568: xpath selectNode 1
18569:
18570: 2002-01-10 paf
18571:
18572: * src/classes/xnode.C: xpath selectNode -100 [just written]
18573:
18574: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
18575: include/pa_exception.h, include/pa_pool.h, main/pa_charset.C,
18576: main/pa_pool.C: GdomeDOMString_auto_ptr c++ wrapper [calls
18577: refcounter]
18578:
18579: 2001-12-29 paf
18580:
18581: * src/: classes/xdoc.C, include/pa_exception.h, main/pa_charset.C,
18582: main/pa_exception.C, main/pa_globals.C: xdoc ^set ^string with
18583: glib works 0
18584:
18585: 2001-12-28 paf
18586:
18587: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C,
18588: main/pa_exception.C: started glib transcoders
18589:
18590: * src/main/pa_globals.C: renamed gdome to libgdome.dll
18591:
18592: * src/: classes/classes.dsp, classes/mail.C, classes/xdoc.C,
18593: classes/xnode.C, classes/xnode.h, include/pa_exception.h,
18594: include/pa_globals.h, main/compile.tab.C, main/main.dsp,
18595: main/pa_charset.C, main/pa_dir.C, main/pa_exception.C,
18596: main/pa_exec.C, main/pa_globals.C, main/pa_socks.C,
18597: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vxdoc.C,
18598: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: gnome
18599: libs just compiled in. no refcounting no xpath no xslt yet
18600:
18601: 2001-12-27 paf
18602:
18603: * src/: include/pa_charset.h, include/pa_common.h,
18604: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
18605: main/main.dsp, main/pa_charset.C, main/pa_charsets.C,
18606: main/pa_globals.C, main/pa_pool.C, targets/cgi/parser3.C,
18607: targets/cgi/parser3.dsp, types/pa_vxdoc.C, types/pa_vxdoc.h,
18608: types/pa_vxnode.C, types/pa_vxnode.h, types/types.dsp: going away
18609: from xalan&xerces, started the process. globals [initialization
18610: pool [charset update charset [transcodings vxnode vxdoc [DOM
18611: calls
18612:
18613: * src/classes/Makefile.am: going away from xalan&xerces, not needed
18614: anymore
18615:
18616: 2001-12-26 paf
18617:
18618: * src/: include/pa_charset.h, include/pa_charsets.h,
18619: main/pa_charset.C, main/pa_charsets.C, main/pa_request.C: charset
18620: key globalized [bug]
18621:
18622: 2001-12-25 paf
18623:
18624: * src/: classes/mail.C, classes/table.C, include/pa_string.h,
18625: main/pa_string.C: table set & append changed splitting languages,
18626: separators now can be clean AND as-is same to mail command line
18627: $MAIN:MAIL.progX arguments
18628:
18629: 2001-12-24 paf
18630:
18631: * src/classes/mail.C: one parted text messages - no multipart
18632: mime-type anymore. for convinient if $.attach-ments
18633:
18634: * src/: classes/hashfile.C, classes/op.C, main/pa_db_table.C,
18635: main/pa_string.C: read from cache size check updated
18636:
18637: * src/main/: pa_string.C: String::join_chain another ugly bug :(
18638:
18639: 2001-12-21 paf
18640:
18641: * src/classes/date.C: date:sql-string now returns localtime
18642:
18643: * src/main/pa_request.C: $result in @main actually not working, to
18644: hell with it for now
18645:
18646: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
18647: types/pa_vmethod_frame.h, types/pa_wcontext.h: $result in @main
18648: @postprocess @exception
18649:
18650: * src/main/execute.C: junction evaluation canceled - endless
18651: recursion detected
18652:
18653: 2001-12-19 paf
18654:
18655: * src/main/pa_charset.C: charset->charset transcoding via unicode
18656: intermediate
18657:
18658: * src/main/pa_request.C: CLASS_PATH now / = DOCUMENT_ROOT
18659:
18660: * src/classes/hashfile.C: ^hashfile.open DB_HOME now relative
18661:
18662: * src/classes/op.C: ^cache keypath now relative
18663:
18664: * src/classes/mail.C: changed weighting prior to sort
18665:
18666: * src/: classes/mail.C, include/pa_config_fixed.h: to/from 0 check
18667: were missing
18668:
18669: 2001-12-17 paf
18670:
18671: * src/main/pa_charset.C: ifndef XML were bad type
18672:
18673: * src/: include/pa_db_table.h, main/pa_db_table.C: db_table used
18674: outdated unset services_pool
18675:
18676: * src/: classes/mail.C, include/pa_charsets.h, include/pa_string.h,
18677: main/pa_charsets.C, main/untaint.C, types/pa_vrequest.C,
18678: types/pa_vresponse.C: ^mail:send[ $.charset[zzz] addded
18679:
18680: * src/main/untaint.C: allowed space in filespec
18681:
18682: * src/main/pa_charset.C: empty bufs transcode [forgot check :(]
18683:
18684: * src/classes/image.C: no govno
18685:
18686: * src/classes/image.C: govno
18687:
18688: 2001-12-16 paf
18689:
18690: * src/include/: pa_charset.h, pa_charsets.h: forgot to add
18691:
18692: * src/: main/Makefile.am, main/pa_charset.C, types/Makefile.am:
18693: charset_connection&manager replaced by charset&charsets
18694:
18695: * src/main/pa_charset.C: name_cstr 0
18696:
18697: * src/main/untaint.C: uri lang now knows about client/source
18698: charsets
18699:
18700: * src/: classes/file.C, classes/math.C, classes/op.C,
18701: classes/string.C, classes/table.C, classes/xdoc.C,
18702: include/pa_array.h, include/pa_cache_managers.h,
18703: include/pa_charset_connection.h, include/pa_charset_manager.h,
18704: include/pa_common.h, include/pa_db_connection.h,
18705: include/pa_db_manager.h, include/pa_db_table.h,
18706: include/pa_dictionary.h, include/pa_exception.h,
18707: include/pa_exec.h, include/pa_globals.h, include/pa_hash.h,
18708: include/pa_opcode.h, include/pa_pool.h, include/pa_request.h,
18709: include/pa_sapi.h, include/pa_socks.h,
18710: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
18711: include/pa_string.h, include/pa_stylesheet_connection.h,
18712: include/pa_stylesheet_manager.h, include/pa_table.h,
18713: include/pa_transcoder.h, main/compile_tools.h, main/main.dsp,
18714: main/pa_charset.C, main/pa_charset_connection.C,
18715: main/pa_charset_manager.C, main/pa_charsets.C, main/pa_globals.C,
18716: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
18717: main/pa_transcoder.C, main/untaint.C, types/pa_vfile.C,
18718: types/pa_vform.C, types/pa_vform.h, types/pa_vrequest.C,
18719: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
18720: types/types.dsp: introducing Charset
18721:
18722: 2001-12-14 paf
18723:
18724: * src/: include/pa_request.h, include/pa_transcoder.h,
18725: main/pa_request.C, main/pa_transcoder.C, types/pa_vform.C,
18726: types/pa_vform.h: transcodeToUTF8[were FromUTF8] for forms todo:
18727: uri lang
18728:
18729: * src/main/pa_transcoder.C: transcodeToUTF8, now form&uri lang
18730:
18731: * src/targets/cgi/Makefile.am: -I../../pcre to .am
18732:
18733: * src/: include/pa_globals.h, main/pa_globals.C: removed unused
18734: defalts_name global
18735:
18736: * src/: include/pa_charset_connection.h, include/pa_pool.h,
18737: include/pa_request.h, main/main.dsp,
18738: main/pa_charset_connection.C, main/pa_charset_manager.C,
18739: main/pa_request.C, types/Makefile.am, types/pa_vrequest.C,
18740: types/pa_vrequest.h, types/pa_vresponse.h, types/types.dsp,
18741: include/pa_transcoder.h, main/pa_transcoder.C, main/Makefile.am:
18742: changed charset model. now important: $request:charset
18743: $response:charset while $response:content-type.charset become
18744: unimportant [informational]
18745:
18746: 2001-12-13 paf
18747:
18748: * src/targets/: cgi/pa_pool.C, isapi/pa_pool.C: EOL@EOF
18749:
18750: * src/classes/xdoc.C: rewritten auto_ptr part other way2, because
18751: of stupid gcc 2.96 /usr/include/g++-3/memory:40: candidates are:
18752: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with
18753: _Tp = FormatterListener] /usr/include/g++-3/memory:48:
18754: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &)
18755: [with _Tp1 = FormatterListener, _Tp = FormatterListener]
18756:
18757: * src/: classes/xdoc.C, main/pa_sql_driver_manager.C: rewritten
18758: auto_ptr part other way, because of stupid gcc 2.96
18759: /usr/include/g++-3/memory:40: candidates are: auto_ptr<_Tp>
18760: &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with _Tp =
18761: FormatterListener] /usr/include/g++-3/memory:48:
18762: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &) [with
18763: _Tp1 = FormatterListener, _Tp = FormatterListener]
18764:
18765: * src/classes/xdoc.C: removed extra inc
18766:
18767: * src/targets/cgi/: pa_pool.C, parser3.C: msvc heap debugging flag
18768:
18769: * src/include/pa_types.h: msvc head debugging flag
18770:
18771: * src/classes/xdoc.C: freed up listener
18772:
18773: * src/classes/string.C: change msg '... code is not code'
18774:
18775: * src/: main/pa_db_connection.C, main/pa_db_manager.C,
18776: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
18777: targets/cgi/pool_storage.h: couple cache expiratiors were wrong
18778: [past/future prob]
18779:
18780: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
18781: include/pa_config_fixed.h, include/pa_db_manager.h,
18782: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
18783: main/pa_cache_managers.C, main/pa_globals.C: ~Cache_managers
18784:
18785: * src/: include/pa_config_fixed.h, main/pa_common.C,
18786: main/pa_string.C: removed signed mismatch warnings
18787:
18788: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: removed
18789: 'expires' from header outputs
18790:
18791: * src/main/pa_string.C: string::recustruct erroreusly used outdated
18792: row ptr
18793:
18794: * src/classes/file.C: file::cgi bug, request_method were passed to
18795: SERVER_PROTOCOL but SERVER_PROTOCOL were forgotten
18796:
18797: * src/classes/xdoc.C: lang list updated
18798:
18799: 2001-12-10 paf
18800:
18801: * src/classes/math.C: ^math:random(n) now yields[0;n) not [0;n]
18802:
18803: * src/main/untaint.C: FILE_SPEC untainting changed so that one can
18804: erase files like that, knowing their full name introducing //
18805: theoretical problem with, for instance, "_2B" and "." fragments,
18806: // they would yield the same // because
18807: need_file_encode('_')=false // but we need to delete such files
18808: somehow, getting names from ^index
18809:
18810: * src/main/pa_string.C: ^string.replace bug fixed [bad
18811: string::join_chank break]
18812:
18813: 2001-12-07 paf
18814:
18815: * src/: classes/hashfile.C, classes/op.C, classes/table.C,
18816: include/pa_common.h, include/pa_config_auto.h.in,
18817: include/pa_config_fixed.h, include/pa_config_includes.h,
18818: include/pa_db_table.h, include/pa_request.h, main/pa_common.C,
18819: main/pa_db_table.C, main/pa_request.C, main/pa_string.C,
18820: types/pa_vhashfile.C: merged from r14_simple_cache
18821:
18822: * src/main/pa_string.C: stupid sparc architecture failed to access
18823: short at odd address 0x311f0 <deserialize__6StringUiPvUiPCc+16>:
18824: lduh [ %i2 + 1 ], %l0
18825:
18826: bus error, fixed that
18827:
18828: * src/main/pa_string.C: strange string deserialize bug on
18829: client[pmts], a bit shortened,
18830:
18831: * src/include/pa_config_auto.h.in: makes
18832:
18833: * src/: include/pa_common.h, include/pa_config_fixed.h,
18834: include/pa_config_includes.h, main/pa_common.C: exclusive lock
18835: file write shared lock file read
18836:
18837: * src/: classes/op.C, include/pa_common.h,
18838: include/pa_config_fixed.h, main/pa_common.C: ^cache operator
18839:
18840: 2001-12-06 paf
18841:
18842: * src/: classes/op.C, classes/table.C, include/pa_request.h,
18843: main/pa_request.C: #ifdef RESOURCES_DEBUG
18844:
18845: * src/: main/compile.tab.C, targets/cgi/parser3.C: removed debug
18846: info
18847:
18848: * src/classes/hashfile.C: removed transaction from ^cache
18849:
18850: 2001-12-05 paf
18851:
18852: * src/targets/cgi/: parser3.C: fatal error reporting fixed. in
18853: IIS5 there were a prob with illegal call check
18854:
18855: 2001-12-04 paf
18856:
18857: * src/: classes/op.C, classes/table.C, include/pa_request.h,
18858: main/pa_request.C: measures to log
18859:
18860: 2001-11-23 paf
18861:
18862: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
18863: main/pa_common.C, main/pa_db_table.C, main/pa_string.C,
18864: types/pa_vhashfile.C: merged from _0014, 1
18865:
18866: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
18867: main/pa_common.C, main/pa_db_table.C, types/pa_vhashfile.C:
18868: hashfile bugfix2 more wrong sizes. ^cache behaviour changed: if
18869: ^cache(33) would change
18870:
18871: 0660 bits in file_write & hashfile create
18872:
18873: * src/main/: pa_db_table.C, pa_string.C: cache bugfix [wrong types
18874: after pa_string optimization]
18875:
18876: 2001-11-22 paf
18877:
18878: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
18879: table.offset[whence]
18880:
18881: * src/classes/op.C: process cstr(,connection)
18882:
18883: * src/classes/op.C: process now gets its body on current language,
18884: not as-is
18885:
18886: * src/main/untaint.C: ORIGINS mode removed UHTML
18887:
18888: * src/main/untaint.C: ORIGINS mode was bad - forgot about optimize
18889: bit
18890:
1.116 moko 18891: * src/classes/xdoc.C: cached xslt [removed nocache forcing]
1.95 moko 18892:
18893: 2001-11-21 paf
18894:
18895: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h:
18896: <xsl:output output options made identical to xsl:output
18897: attributes exclusion: cdata-section-elements what xalan can do
18898: but that not used now: it can escape and remove CDATA sections
18899:
18900: * src/: main/untaint.C, targets/cgi/parser3.C: optimized \r
18901: produced by xslt
18902:
18903: * src/targets/cgi/parser3.C: removed debug cgi||1
18904:
18905: * src/main/: pa_string.C, untaint.C: cached some string::size() es
18906:
18907: * src/: classes/table.C, main/pa_string.C, main/untaint.C,
18908: targets/cgi/parser3.C: table.append bug fixed: forgot to switch
18909: default language for {code}, it happen to change it's language
18910: from CLEAN, so later refused to split by CLEAN \t
18911:
18912: 2001-11-20 paf
18913:
1.116 moko 18914: * src/: classes/Makefile.am, classes/table.C, main/Makefile.am,
18915: main/pa_exception.C, types/Makefile.am: moved ident.C & co to
1.95 moko 18916: bottom of dependeces, so that errors would popup quicklier, fixed
18917: line numbering in table::sql
18918:
18919: 2001-11-19 paf
18920:
18921: * src/: classes/op.C, include/pa_request.h, include/pa_string.h,
18922: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
18923: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
18924: targets/isapi/parser3isapi.C, types/pa_wcontext.C,
18925: types/pa_wcontext.h: UL_CLEAN pieces now inherit UL_OPTIMIZED_BIT
18926: at wcontext.write
18927:
1.116 moko 18928: * src/targets/: Makefile.am, cgi/parser3.C: #if _MSC_VER
1.95 moko 18929: _set_new_handler
18930:
1.116 moko 18931: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C:
18932: set_new_handler in apache&isapi
1.95 moko 18933:
18934: 2001-11-16 paf
18935:
18936: * src/targets/cgi/parser3.C: pool debug @ die
18937:
18938: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
18939: removed 8 bytes from String, 2 bytes from
18940: string::chunk::row::item
18941:
18942: * src/main/pa_string.C: removed 1+4 bytes from String
18943:
18944: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
18945: types/pa_vstring.C: removed 1+4 bytes from String
18946:
18947: * src/main/pa_pool.C: introducing estimating String::cstr_bufsize,
18948: 0
18949:
18950: * src/: include/pa_globals.h, include/pa_string.h,
18951: include/pa_types.h, main/pa_globals.C, main/pa_pool.C,
18952: main/pa_request.C, main/untaint.C, sql/pa_sql_driver.h,
18953: targets/cgi/parser3.C: introducing estimating
18954: String::cstr_bufsize, 0
18955:
18956: * src/: main/pa_pool.C, include/pa_pool.h: die in pool::fail
18957:
18958: * src/: targets/cgi/parser3.C, main/pa_pool.C: die in pool::fail
18959:
18960: * src/: main/execute.C, main/pa_pool.C, targets/cgi/parser3.C,
18961: include/pa_pool.h: die in pool::fail
18962:
18963: 2001-11-15 paf
18964:
18965: * src/: include/pa_exception.h, main/execute.C, main/main.dsp,
18966: main/pa_exception.C, targets/cgi/parser3.C: exception with
18967: dynamic buffer re-back now with counter
18968:
18969: * src/: include/pa_exception.h, main/pa_exception.C: exception with
18970: static buffer back
18971:
18972: * src/targets/cgi/parser3.C: std::
18973:
18974: * src/: classes/classes.awk, include/pa_config_auto.h.in,
18975: include/pa_config_includes.h: setnewhandler check
18976:
1.116 moko 18977: * src/include/pa_config_auto.h.in: makes
1.95 moko 18978:
18979: * src/targets/cgi/parser3.C: set_new_handler started
18980:
18981: 2001-11-14 paf
18982:
18983: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
18984: was wrong
18985:
18986: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
18987: was wrong
18988:
18989: * src/main/pa_request.C: z
18990:
18991: * src/: include/pa_common.h, main/pa_common.C: snprintf on buffer
18992: full returns win32 -1 solaris >buffer_size
18993:
18994: checked all that
18995:
18996: * src/classes/op.C: ^untaint{body} as-is default now
18997:
18998: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
18999: types/pa_vstateless_class.h, types/pa_vstateless_object.h: merged
19000: with no_bad_constructors_try
19001:
19002: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
19003: types/pa_vstateless_class.h, types/pa_vstateless_object.h: fixed
19004: this: $bred[^string::length[]] $bred[^response::clear[]]
19005: $bred[^int::int[]]
19006:
19007: now VObject creation moved into overriden
19008: VClass::create_new_value, thus 0 from create_new_value means that
19009: class has no ctors
19010:
19011: 2001-11-13 paf
19012:
19013: * src/classes/classes.C: returned accedently removed if in foreach
19014: callbacks [when hash no-0-restructure]
19015:
19016: 2001-11-12 paf
19017:
19018: * src/main/pa_pool.C: changed xdoc createXXX politics, now string
19019: passed as-is to method, xalan makes & into & itself
19020:
19021: * src/classes/date.C: date.roll parser2 alg used
19022:
19023: * src/: classes/classes.C, classes/hash.C, classes/xdoc.C,
19024: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
19025: main/pa_dictionary.C, main/pa_hash.C,
19026: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C: hash
19027: now does not containt 0 values. put 0 actullay removes. no check
19028: on 0 value in foreach now required
19029:
19030: 2001-11-11 paf
19031:
19032: * src/sql/pa_sql_driver.h: removed extra constructor, doc
19033:
19034: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: CRLF
19035:
19036: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql
19037: driver initialize not const
19038:
19039: 2001-11-10 paf
19040:
19041: * src/main/pa_exec.C: doc
19042:
19043: 2001-11-09 paf
19044:
19045: * src/classes/: string.C, xdoc.C: xdoc::set{code} now untaints
19046: param properly
19047:
19048: * src/classes/string.C: string.save now does untainting before
19049: saving
19050:
19051: * src/main/pa_common.C: line endings fixing fixed last piece[was
19052: still cstr oriented]
19053:
19054: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
19055: line endings fixing got rid of cstr, now must work ok with post
19056: multipart
19057:
19058: * src/types/pa_vform.C: line endings fixed at post / multipart /
19059: not file also now
19060:
19061: 2001-11-08 paf
19062:
19063: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
19064: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
19065: include/pa_stylesheet_manager.h, main/pa_charset_manager.C,
19066: main/pa_db_manager.C, main/pa_sql_driver_manager.C,
19067: main/pa_stylesheet_manager.C: restructured Cache manager to be
19068: simple parent, not second parent [gcc 2.96 strangly refused to
19069: call virtual from second parent]
19070:
1.116 moko 19071: * src/: include/pa_common.h, main/Makefile.am,
19072: targets/cgi/pa_pool.C: makes
1.95 moko 19073:
19074: * src/: include/pa_request.h, main/pa_request.C,
19075: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: apache
19076: 'status' class enabler
19077:
19078: <Location /parser-status.html> ParserStatusAllowed </Location>
19079:
19080: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
19081: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
19082: include/pa_stylesheet_manager.h, main/main.dsp,
19083: main/pa_cache_managers.C, main/pa_charset_manager.C,
19084: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
19085: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
19086: types/pa_vstatus.h: cache_managers, maybe-expiring every request
19087: todo: apache 'status' class enabler
19088:
19089: 2001-11-05 paf
19090:
19091: * src/main/: pa_db_connection.C, pa_db_manager.C: expiration from
19092: debug to normal
19093:
19094: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_request.C:
19095: hence i removed skipping 0 values in hash::for_each-es we need to
19096: check cleaned cache items manually. few more checks.
19097:
19098: expiring to 0 time was wrong, changed to 'now' time
19099:
19100: * src/targets/cgi/parser3.C: read can return 0, that means sort of
19101: sig_pipe on freebsd [moko's experiments]. checked that in cgi,
19102: on apache already done :)
19103:
19104: * src/main/: pa_db_connection.C, pa_db_manager.C: hence i removed
19105: skipping 0 values in hash::for_each-es we need to check cleaned
19106: cache items manually
19107:
19108: * src/main/: pa_db_connection.C, pa_db_table.C:
19109: parser_multithreaded check was wrong
19110:
19111: * src/: classes/classes.C, classes/classes.h, classes/date.C,
19112: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
19113: classes/hashfile.C, classes/image.C, classes/int.C,
19114: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
19115: classes/string.C, classes/table.C, classes/void.C,
19116: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
19117: include/pa_array.h, include/pa_charset_connection.h,
19118: include/pa_charset_manager.h, include/pa_common.h,
19119: include/pa_config_fixed.h, include/pa_config_includes.h,
19120: include/pa_db_connection.h, include/pa_db_manager.h,
19121: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
19122: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
19123: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
19124: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
19125: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
19126: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19127: include/pa_stack.h, include/pa_string.h,
19128: include/pa_stylesheet_connection.h,
19129: include/pa_stylesheet_manager.h, include/pa_table.h,
19130: include/pa_threads.h, include/pa_types.h, main/compile.C,
19131: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
19132: main/execute.C, main/pa_array.C, main/pa_charset_connection.C,
19133: main/pa_charset_manager.C, main/pa_common.C,
19134: main/pa_db_connection.C, main/pa_db_manager.C,
19135: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
19136: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
19137: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
19138: main/pa_socks.C, main/pa_sql_driver_manager.C,
19139: main/pa_status_provider.C, main/pa_string.C,
19140: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
19141: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
19142: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
19143: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
19144: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
19145: targets/isapi/pool_storage.h, types/pa_valiased.C,
19146: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
19147: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
19148: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
19149: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
19150: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
19151: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
19152: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
19153: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
19154: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
19155: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
19156: types/pa_vstateless_object.h, types/pa_vstatus.h,
19157: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.C,
19158: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
19159: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
19160: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
19161: $status:db fixed used not initialized in db_connection & db_table
19162:
19163: * src/: include/pa_charset_connection.h, main/pa_charset_manager.C:
19164: $status:charset
19165:
19166: * src/: classes/xdoc.C, include/pa_db_connection.h,
19167: include/pa_stylesheet_connection.h,
19168: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C,
19169: types/pa_vstatus.h: $status:stylesheet
19170:
19171: * src/: include/pa_charset_manager.h, include/pa_db_manager.h,
19172: include/pa_request.h, include/pa_sql_connection.h,
19173: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
19174: main/main.dsp, main/pa_charset_manager.C, main/pa_common.C,
19175: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
19176: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
19177: main/pa_stylesheet_manager.C, types/pa_vstatus.h,
19178: types/pa_vxnode.C, types/types.dsp: started status parser class
19179:
19180: 2001-11-01 paf
19181:
19182: * src/include/pa_config_auto.h.in: makes
19183:
19184: * src/main/pa_hash.C: removed old extra include
19185:
19186: * src/: classes/math.C, include/pa_common.h: HAVE_TRUNC HAVE_ROUND
19187: checks [for hp, there are such in math.h]
19188:
19189: * src/classes/op.C: ^for endless loop check strightened
19190:
19191: * src/: classes/hash.C, classes/op.C, main/execute.C: changed root
19192: behavior in native calls. it left unchanged, so ^for ^foreach &
19193: co can use r.root to write their i & key,value there
19194:
19195: * src/classes/op.C: detected for var storage bug, fixed.
19196: todo:foreach
19197:
19198: * src/: classes/hash.C, classes/xdoc.C, classes/xnode.C,
19199: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
19200: types/pa_vhash.h, types/pa_vxnode.C: hash locking disabled
19201: changing of hash inside of foreach
19202:
19203: * src/: classes/hash.C, classes/hashfile.C, types/pa_vhashfile.C:
19204: ^hashfile.foreach[key|value]{body}[[separator]|{separator}] prev
19205: were hash.foreach
19206:
19207: * src/: classes/hash.C, classes/op.C, types/pa_vmethod_frame.h,
19208: types/pa_vstring.C, types/pa_vstring.h:
19209: ^foreach[key|value]{body}[[separator]|{separator}]
19210:
19211: * src/: classes/hash.C, include/pa_hash.h, main/pa_hash.C,
19212: types/pa_vcookie.C: ^hash.delete[key]
19213:
19214: 2001-10-31 paf
19215:
19216: * src/main/: compile.C, pa_common.C: completely empty file now
19217: considered "read", not ignored [not perfect trick used]
19218:
19219: * src/main/pa_common.C: simplier common ifdefs
19220:
19221: * src/main/pa_common.C: typing bug in common - bad ifdeff
19222:
19223: * src/main/pa_db_connection.C: z
19224:
19225: * src/main/: pa_db_connection.C, pa_sql_driver_manager.C: //
19226: lockdetector flags
19227: dbenv.lk_detect=DB_LOCK_RANDOM;
19228:
19229: * src/main/pa_sql_driver_manager.C: hiding passwords and addresses
19230: from accidental show [imagine user forgot @exception]
19231:
19232: * src/classes/table.C: ^table.save[[nameless|+append;]path]
19233:
19234: * src/: classes/file.C, classes/image.C, classes/mail.C,
19235: classes/string.C, classes/xnode.C, include/pa_common.h,
19236: main/pa_common.C: ^string.save[[append;]path]
19237:
19238: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19239: main/execute.C: \ in expression: int divide 10/3=3
19240:
19241: * src/types/pa_vhashfile.h: hashfile ^delete to do something only
19242: inside of ^cache
19243:
19244: * src/: include/pa_threads.h, main/pa_db_connection.C,
19245: main/pa_db_table.C, targets/cgi/pa_threads.C,
19246: targets/isapi/pa_threads.C: libdb DB_THREAD flag only when really
19247: needed
19248:
19249: 2001-10-30 paf
19250:
19251: * src/: classes/classes.dsp, main/main.dsp,
19252: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
19253: types/types.dsp: enabled debug incremental compile
19254:
19255: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
19256: form post data line endings not reformatted now.
19257:
19258: * src/types/: pa_vform.C, pa_vform.h: AppendFormEntry length param
19259: now required [had bug when file= has no value]
19260:
19261: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_db_table.C,
19262: pa_exec.C, pa_request.C, pa_sql_driver_manager.C, pa_string.C:
19263: cstr(asis) default param removed
19264:
19265: * src/classes/xdoc.C: rolled back {} in xdoc.createTextNode for now
19266:
19267: * src/classes/xdoc.C: rolled back {} in xdoc.createElement for now
19268:
19269: * src/include/pa_dir.h: LOAD_DIR fixed
19270:
19271: * src/types/pa_vform.C: VForm::AppendFormEntry {length convention
19272: was broken} fix_line_breaks
19273:
19274: * src/include/: pa_config_fixed.h, pa_pragma_pack_begin.h,
19275: pa_pragma_pack_end.h, pa_string.h, pa_types.h: String & Origin
19276: packed with #pragma pack
19277:
1.116 moko 19278: * src/include/pa_config_auto.h.in: pragma detection
1.95 moko 19279:
19280: 2001-10-29 paf
19281:
19282: * src/types/pa_wcontext.h: bitfield syntax stricter
19283:
19284: * src/: classes/file.C, types/pa_vimage.C: image&file couple stack
19285: string hash.puts
19286:
19287: * src/include/pa_sql_connection.h: SQL_CONNECTION_FUNC_GUARDED name
19288:
19289: * src/include/pa_sql_connection.h: there were one wrong
19290: SQL_CONNECTION_FUNC_GUARDED [failed]
19291:
19292: * src/targets/isapi/pa_pool.C: added isapi&apache real_malloc debug
19293: param.someday either ifdef or remove it
19294:
19295: * src/targets/cgi/: pa_pool.C, parser3.C: removed debug defines
19296:
19297: * src/main/untaint.C: optimizing returned after debugging
19298:
19299: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
19300: main/untaint.C: memory hunging #pragma pack(1)
19301:
19302: 16 419 844 13 169 394
19303:
19304: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
19305: targets/cgi/pa_pool.C: String size_t replace to uint in proper
19306: places [todo:Array]
19307:
19308: * src/: main/execute.C, targets/cgi/pa_pool.C,
19309: targets/cgi/parser3.dsp, types/pa_wcontext.h,
19310: types/pa_wwrapper.h: debugging memory WContext flags to bits
19311:
19312: total 5 652 652/158731 total 5 469 332/158731
19313:
19314: * src/: include/pa_array.h, main/pa_array.C: debugging memory
19315: Array:: without cache in get/put now
19316:
19317: [Mon Oct 29 18:23:02 2001] total 5 796 092/158731 [Mon Oct 29
19318: 18:25:27 2001] total 5 652 652/158731
19319:
19320: * src/: include/pa_string.h, main/pa_string.C,
19321: targets/cgi/pa_pool.C: debugging memory String::fused_rows func
19322: now
19323:
19324: [Mon Oct 29 17:55:45 2001] total 5917436/158731 [Mon Oct 29
19325: 18:11:53 2001] total 5796092/158731
19326:
19327: * src/: classes/file.C, include/pa_hash.h, include/pa_string.h,
19328: main/pa_globals.C, targets/cgi/pa_pool.C: debugging memory hash
19329: key ref now
19330:
19331: [Mon Oct 29 16:01:17 2001] total 17050496/202647 [Mon Oct 29
19332: 17:11:17 2001] total 16867948/202658
19333:
19334: * src/: classes/file.C, classes/image.C, classes/string.C,
19335: classes/xdoc.C, include/pa_pool.h, include/pa_string.h,
19336: main/execute.C, main/pa_array.C, main/pa_common.C,
19337: main/pa_hash.C, main/pa_sql_driver_manager.C, main/pa_string.C,
19338: main/untaint.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C,
19339: types/pa_vcookie.C, types/pa_vstring.h: debuggging memory.
19340: string::as_int/double now usually uses stack, not heap [200K out
19341: of 17M :)] VString(String&) not copies reference [29M -> 17M]
19342:
19343: * src/main/pa_sql_driver_manager.C: ping to have services [old
19344: hiding bug]
19345:
19346: * src/Makefile.am: .am order
19347:
19348: * src/: include/pa_array.h, include/pa_charset_manager.h,
19349: include/pa_db_connection.h, include/pa_db_manager.h,
19350: include/pa_db_table.h, include/pa_hash.h, include/pa_request.h,
19351: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
19352: include/pa_threads.h, types/pa_valiased.h, types/pa_vhashfile.h,
19353: types/pa_vstateless_class.h, types/pa_wcontext.h: gcc 3.0.1
19354: required "friend class"
19355:
19356: ../include/pa_request.h:51: friend declaration requires
19357: class-key, i.e. `friend class Temp_lang'
19358:
19359: * src/: include/pa_exception.h, include/pa_sql_connection.h,
19360: main/pa_exception.C, main/pa_sql_driver_manager.C,
19361: sql/pa_sql_driver.h: sql driver impl changed in _throw part.
19362:
19363: the idea is to #1 jump to C++ some function to main body, where
19364: every function stack frame has exception unwind information and
19365: from there... #2 propagate_exception()
19366:
19367: 2001-10-28 paf
19368:
19369: * src/main/pa_db_connection.C: removed old consts
19370:
19371: * src/main/pa_db_connection.C: expire table [was accidently pasted
19372: with wrong type/cast]
19373:
19374: * src/main/: pa_db_connection.C, pa_db_table.C: exception
19375: translation
19376:
1.116 moko 19377: * src/: classes/Makefile.am, targets/cgi/Makefile.am: db makes.
1.95 moko 19378: remember to build DB2 with -fexceptions!!!
19379:
19380: * src/main/pa_db_table.C: DB_RMW defed
19381:
19382: * src/: include/pa_config_auto.h.in, include/pa_config_fixed.h,
19383: include/pa_db_connection.h, include/pa_db_manager.h,
19384: include/pa_db_table.h, main/pa_db_connection.C,
19385: main/pa_db_table.C: db2 on linux with DB 2.4.14: (6/2/98)
19386:
19387: 2001-10-27 paf
19388:
19389: * src/: classes/hashfile.C, include/pa_db_connection.h,
19390: include/pa_db_table.h, main/pa_db_connection.C,
19391: main/pa_db_manager.C, main/pa_db_table.C, main/pa_globals.C,
19392: types/pa_vhashfile.C: DB2 ifdefs
19393:
1.116 moko 19394: * src/: classes/Makefile.am, include/pa_config_fixed.h,
19395: main/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
1.95 moko 19396: makes with DB2
19397:
1.116 moko 19398: * src/: include/pa_config_auto.h.in, main/Makefile.am,
19399: types/Makefile.am: makes db
1.95 moko 19400:
19401: * src/: main/pa_globals.C, targets/cgi/parser3.dsp,
19402: targets/isapi/parser3isapi.dsp: vc projects libdb ifdefed into
19403: globals.C
19404:
19405: * src/: classes/hashfile.C, include/pa_db_connection.h,
19406: include/pa_db_table.h, main/pa_db_connection.C,
19407: main/pa_db_table.C: ^hashfile.clear[]
19408:
19409: * src/classes/classes.awk: no $ in var names
19410:
19411: * src/main/: pa_db_connection.C, pa_db_manager.C: db expiration
19412: connection&table [forgotten calls]
19413:
19414: 2001-10-26 paf
19415:
19416: * src/main/pa_db_connection.C: db checkpoints
19417:
19418: * src/: include/pa_db_connection.h, main/pa_db_connection.C: db
19419: checkpoints
19420:
19421: * src/classes/xdoc.C: xdoc createTextNode createElement UL_XML
19422: default. but entities still reparsed. todo: tothink
19423:
19424: * src/main/pa_db_connection.C: db recover mech 2
19425:
19426: * src/: classes/hashfile.C, include/pa_db_connection.h,
19427: include/pa_db_manager.h, include/pa_db_table.h,
19428: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
19429: main/pa_db_table.C, main/pa_hash.C, types/pa_vhashfile.C,
19430: types/pa_vhashfile.h: db connections & tables now cached at
19431: create time & multithreaded
19432:
19433: * src/: classes/xdoc.C, types/pa_vxdoc.h: transform2 for
19434: parsed_source
19435:
19436: * src/main/pa_db_connection.C: about to remove connection from
19437: vhashfile
19438:
19439: * src/: main/pa_db_table.C, classes/hashfile.C: db: child
19440: transaction commit/rollback responsibility left to parent [as it
19441: sould - else there were a bug with double free]
19442:
19443: * src/include/pa_db_table.h: db: child transaction commit/rollback
19444: responsibility left to parent [as it sould - else there were a
19445: bug with double free]
19446:
19447: 2001-10-25 paf
19448:
19449: * src/: classes/hashfile.C, include/pa_common.h,
19450: include/pa_db_connection.h, include/pa_db_manager.h,
19451: main/main.dsp, main/pa_db_connection.C, main/pa_db_manager.C,
19452: types/pa_vhashfile.C, types/pa_vhashfile.h,
19453: include/pa_db_table.h, main/pa_db_table.C: started db_home
19454: [multiple, cached] todo: autorecover [tried, but not succeded,
19455: yet]
19456:
19457: * src/include/pa_dir.h: ancient gpf on dir not found fixed
19458:
19459: * src/: include/pa_db_connection.h, main/pa_db_manager.C:
19460: transaction parent passed
19461:
19462: 2001-10-24 parser
19463:
1.116 moko 19464: * src/classes/Makefile.am: makes
1.95 moko 19465:
19466: * src/targets/: cgi/pool_storage.h, isapi/parser3isapi.C,
19467: isapi/pool_storage.h: pool_storage fixed
19468:
19469: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C,
19470: types/pa_vform.h: form fix_line_breaks
19471:
1.116 moko 19472: * src/targets/cgi/pool_storage.h: makes
1.95 moko 19473:
19474: * src/: classes/Makefile.am, targets/cgi/Makefile.am,
19475: targets/cgi/pool_storage.h: makes
19476:
19477: * src/sql/pa_sql_driver.h: version
19478:
19479: * src/: include/pa_common.h, main/Makefile.am, main/pa_common.C,
19480: types/pa_vform.C, types/pa_vform.h: .am
19481:
19482: * src/main/: pa_db_connection.C, pa_db_manager.C: hashfile setted
19483: this: DB_RMW Acquire write locks instead of read locks when doing
19484: the retrieval. Setting this flag may decrease the likelihood of
19485: deadlock during a read-modify-write cycle by immediately
19486: acquiring the write lock during the read part of the cycle so
19487: that another thread of control acquiring a read lock for the same
19488: item, in its own read-modify-write cycle, will not result in
19489: deadlock
19490:
19491: * src/targets/isapi/parser3isapi.dsp: doc
19492:
19493: * src/: classes/hashfile.C, types/pa_vhashfile.h: hashfile 1
19494:
19495: * src/: classes/hashfile.C, include/pa_request.h: hashfile.cache 0
19496:
19497: * src/: classes/hashfile.C, include/pa_db_connection.h,
19498: main/pa_db_connection.C: hashfile expired deleted from db when
19499: get & iterate
19500:
19501: * src/: main/pa_db_connection.C, types/pa_vhashfile.C: hashfile
19502: expiring 1
19503:
19504: * src/types/: pa_vhashfile.C, pa_vhashfile.h: hashfile expiring 0
19505:
19506: * src/: main/pa_db_connection.C, types/pa_vhashfile.C:
19507: db_connection not bothers with key when not returning expired
19508: data
19509:
19510: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
19511: types/pa_vhashfile.C: db_cursor constructor public now
19512:
19513: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
19514: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile data
19515: stamped, todo: put_element analize
19516:
19517: * src/: include/pa_db_connection.h, include/pa_string.h,
19518: main/pa_db_connection.C, main/pa_string.C: hashfile pieced
19519: serialize. todo stamp
19520:
19521: 2001-10-23 parser
19522:
19523: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
19524: classes/image.C, classes/mail.C, classes/response.C,
19525: classes/string.C, classes/table.C, classes/xdoc.C,
19526: include/pa_config_fixed.h, include/pa_db_connection.h,
19527: main/pa_common.C, main/pa_db_connection.C, main/pa_request.C,
19528: types/pa_value.h, types/pa_vcookie.C, types/pa_vhash.h,
19529: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vresponse.h,
19530: types/pa_vtable.C: ^hashfile.hash[]
19531:
19532: * src/: classes/hashfile.C, classes/xdoc.C,
19533: include/pa_config_fixed.h, main/pa_db_manager.C,
19534: main/pa_globals.C: ifdefs so it compiled without db
19535:
19536: * src/: classes/hashfile.C, include/pa_db_connection.h,
19537: include/pa_db_manager.h, main/pa_db_connection.C,
19538: main/pa_db_manager.C, types/pa_vhashfile.h:
19539: ^hashfile.transaction{code} ^hashfile:clear[filename]
19540: ^hashfile.delete[key]
19541:
19542: 2001-10-22 parser
19543:
19544: * src/targets/: cgi/pa_pool.C, cgi/parser3.C, cgi/parser3.dsp,
19545: cgi/pool_storage.h, isapi/pool_storage.h: cgi += pool cleanups
19546:
19547: * src/: classes/classes.dsp, classes/hashfile.C, classes/xdoc.C,
19548: classes/xnode.C, include/pa_charset_connection.h,
19549: include/pa_db_connection.h, include/pa_db_manager.h,
19550: include/pa_exception.h, include/pa_sapi.h,
19551: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19552: include/pa_stylesheet_connection.h,
19553: include/pa_stylesheet_manager.h,
19554: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
19555: main/pa_db_connection.C, main/pa_db_manager.C,
19556: main/pa_exception.C, main/pa_globals.C, main/pa_pool.C,
19557: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
19558: main/pa_xslt_stylesheet_manager.C, targets/cgi/parser3.C,
19559: targets/isapi/parser3isapi.C, types/pa_vhashfile.C,
19560: types/pa_vhashfile.h, types/pa_vxdoc.C, types/pa_vxnode.C,
19561: types/types.dsp: hashfile 0
19562:
19563: * src/types/pa_vhashfile.C: z
19564:
19565: * src/: classes/classes.dsp, classes/hashfile.C,
19566: include/pa_config_fixed.h, main/execute.C,
19567: targets/cgi/parser3.dsp, types/pa_vhashfile.C,
19568: types/pa_vhashfile.h, types/types.dsp: hashfile -100
19569:
19570: * src/targets/isapi/parser3isapi.C: SEH minor ifdef changes
19571:
19572: * src/: include/pa_exception.h, include/pa_request.h,
19573: main/execute.C, main/pa_exception.C, main/pa_request.C,
19574: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
19575: types/pa_vclass.h, types/pa_vobject.h: stack backtrace
19576:
19577: 2001-10-19 parser
19578:
19579: * src/include/pa_pool.h: header
19580:
19581: * src/main/pa_pool.C: auto compiled on gcc
19582:
19583: * src/classes/image.C: comment
19584:
1.116 moko 19585: * src/: include/pa_pool.h, main/pa_common.C: makes
1.95 moko 19586:
19587: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
19588: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
19589: types/pa_vxnode.h: xnode clone got freed
19590:
19591: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
19592: include/pa_types.h, main/pa_pool.C: first c++ exceptions result:
19593: can free up xalandomstring resulting from pool::transcode
19594:
19595: * src/: classes/Makefile.am, classes/xdoc.C, classes/xnode.C,
19596: include/pa_config_fixed.h, include/pa_exception.h,
19597: include/pa_stylesheet_connection.h, main/pa_charset_connection.C,
19598: main/pa_exception.C, main/pa_pool.C, types/pa_vxdoc.C,
19599: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: switched
19600: to c++ exceptions 1xml configure fixed to exclude xalan-patch
19601: from non-xml compile
19602:
19603: * src/main/pa_request.C: pool:: context - get_context
19604:
19605: * src/: classes/classes.h, classes/date.C, classes/double.C,
19606: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
19607: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
19608: classes/string.C, classes/table.C, classes/void.C,
19609: include/pa_config_fixed.h, include/pa_exception.h,
19610: include/pa_pool.h, include/pa_request.h, include/pa_types.h,
19611: main/compile.C, main/compile_tools.C, main/execute.C,
19612: main/pa_array.C, main/pa_common.C, main/pa_dictionary.C,
19613: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
19614: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
19615: main/pa_string.C, main/pa_table.C, main/untaint.C,
19616: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
19617: types/pa_value.h, types/pa_vbool.h, types/pa_vdouble.h,
19618: types/pa_vfile.h, types/pa_vform.C, types/pa_vhash.h,
19619: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
19620: types/pa_vstateless_class.h, types/pa_vtable.C,
19621: types/pa_wcontext.C, types/pa_wwrapper.h: switched to c++
19622: exceptions 0
19623:
19624: * src/classes/classes.awk: $ removed
19625:
19626: 2001-10-18 parser
19627:
19628: * src/types/pa_vcookie.C: cookie:CLASS
19629:
19630: * src/main/main.dsp: project
19631:
19632: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C: vxdoc
19633: set_document & ctor question "who owns document" solved
19634:
19635: * src/: classes/xdoc.C, main/pa_pool.C: extra free removed
19636:
19637: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
19638: main/pa_pool.C: encoding in dom creating funcs
19639:
19640: * src/: classes/xdoc.C, types/pa_vxdoc.h: dom created by create can
19641: be transformed now
19642:
19643: * src/classes/xdoc.C: dom created by create can be transformed now
19644:
19645: * src/classes/xdoc.C: z
19646:
19647: * src/classes/xdoc.C: comment
19648:
19649: * src/: classes/xdoc.C, classes/xnode.C, main/compile.tab.C: xdoc
19650: create now uses XercesDocumentBridge, appendChild&co now works
19651:
19652: * src/include/pa_stylesheet_connection.h: prev stylesheet destroyed
19653: @ recompile
19654:
19655: * src/main/: compile.tab.C, compile.y, pa_request.C: ^: no colon in
19656: $origin @exception[
19657:
19658: * src/classes/: xdoc.C, xnode.C: xdoc::create[] now. and all dom
19659: tag names forced to XML lang
19660:
19661: * src/: classes/classes.dsp, classes/xdoc.C, types/types.dsp: fiew
19662: leechy-found bugs in code&doc fixed
19663:
19664: 2001-10-17 parser
19665:
19666: * src/: classes/classes.dsp, classes/string.C, main/pa_string.C,
19667: types/pa_vxnode.h, types/types.dsp: string::mid fixed, string.mid
19668: n functionality preserved
19669:
19670: * src/types/pa_vimage.h: removed unused vimage::save
19671:
19672: 2001-10-16 parser
19673:
19674: * src/: classes/string.C, main/pa_string.C: $string.mid(p[;n])
19675:
19676: * src/classes/: xnode.C: removed few dom returns & changed op.txt
19677:
19678: * src/types/: pa_vhash.h, pa_vtable.h: hash can be used as boolean
19679:
19680: * src/classes/image.C: image.copy tolerance
19681:
19682: * src/classes/image.C: ::CopyResampled made gd2beta+my hands, very
19683: ineffective, but works for small paleted image
19684:
19685: * src/types/pa_vimage.C: comment
19686:
19687: * src/classes/image.C: gd size/resize bugfix
19688:
19689: * src/: classes/classes.dsp, main/main.dsp,
19690: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
19691: types/types.dsp: ident >nul 2>&1
19692:
19693: * src/main/pa_common.C: \r\n -> \n DOS \r -> \n Macintosh on all
19694: systems
19695:
19696: * src/: classes/image.C, types/pa_vimage.h: ^image.copy[source](src
19697: x;src y;src w;src h;dst x;dst y[;dest w[;dest h]])
19698:
19699: 2001-10-15 parser
19700:
19701: * src/main/execute.C: z
19702:
19703: * src/classes/: xdoc.C: !::create{qualifiedName}
19704:
19705: * src/types/pa_vxnode.C: document_type_node.
19706: !readonly attribute DOMString name
19707: !notation_node.
19708: !readonly attribute DOMString publicId
19709: !readonly attribute DOMString systemId
19710:
1.116 moko 19711: * src/types/: pa_vcode_frame.h, pa_wcontext.C: code_frame fixed -
19712: ::write badly passed string too transparently [failed to
19713: intercept it]
1.95 moko 19714:
19715: * src/: classes/xdoc.C, classes/xnode.C, include/pa_config_fixed.h,
19716: include/pa_request.h, main/pa_sql_driver_manager.C,
19717: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
19718: types/pa_vxnode.h: DOM1 major addtion, only few
19719: attributes/methods left
19720:
19721: 2001-10-13 parser
19722:
19723: * src/: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
19724: targets/isapi/parser3isapi.C: isapi&cgi couple non-pooled mallocs
19725: in main handler
19726:
19727: * src/targets/isapi/pool_storage.h: isapi pool storage reverse
19728: cleanups & frees order
19729:
19730: * src/types/pa_vcode_frame.h: couple comments
19731:
19732: * src/: main/execute.C, types/pa_vcode_frame.h: vcodeframe made
19733: transparent enough to handle hash if creation&passing
19734:
19735: * src/: include/pa_config_fixed.h, main/execute.C,
19736: main/pa_exception.C: noticed that vcodeframe not transparent
19737: enough, would change now
19738:
19739: 2001-10-12 parser
19740:
19741: * src/targets/isapi/parser3isapi.C: xalan&xerces multithread bug
19742: fixed. initialization&free on each thread!
19743:
19744: * src/classes/: double.C, int.C, string.C: sql{}[$.default[({})]]
19745: handling changed: now type of default param analized always, not
19746: only at problem time, thus helping early problem spotting
19747:
19748: * src/: classes/classes.dsp, classes/xdoc.C, main/compile.tab.C,
19749: main/main.dsp, main/pa_globals.C, targets/cgi/parser3.C,
19750: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
19751: targets/isapi/parser3isapi.dsp, types/types.dsp: xalan&xerces
19752: multithread bug fixed. initialization&free on each thread!
19753:
19754: 2001-10-11 parser
19755:
19756: * src/classes/xnode.C: xnode.selectSingle now
19757:
19758: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
19759: include/pa_pool.h, include/pa_stylesheet_connection.h,
19760: main/pa_exception.C, main/pa_pool.C: moved xslt exceptions
19761: convertors out of Pool into Exception
19762:
19763: * src/main/pa_string.C: const
19764:
19765: * src/: include/pa_string.h, main/pa_string.C: restructured string:
19766: linked pieces of same language together prior to String::replace
19767:
19768: * src/classes/hash.C: !^hash.add[addme]
19769: !^hash.sub[subme]
19770: !^a.union[b] = new
19771: !^a.intersection[b] = new
19772: !^a.intersects[b] = bool
19773:
19774: * src/classes/hash.C: !^hash::append[append_from]
19775:
19776: * src/: classes/hash.C, types/pa_vhash.h:
19777: !^hash::create[[copy_from]]
19778:
19779: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
19780: include/pa_string.h, main/pa_globals.C, main/pa_string.C,
19781: main/untaint.C, types/pa_vvoid.h: untaint lang origins table
19782: fixed. got rid of empty_string, which caused errors - it hasnt
19783: exception but somebody[value.bark] tried to throw it on it's pool
19784:
1.116 moko 19785: * src/include/pa_config_auto.h.in: makes
1.95 moko 19786:
19787: 2001-10-10 parser
19788:
19789: * src/: classes/op.C, main/compile.tab.C: ^error[msg]
19790:
19791: * src/main/: compile.tab.C, compile.y: ^a[
19792:
19793: @next_method << now unclosed ] would be reported here
19794:
19795: * src/main/: compile.tab.C, compile.y: ^a[^b] more informative
19796: compile error
19797:
19798: 2001-10-09 parser
19799:
1.116 moko 19800: * src/: classes/Makefile.am, main/Makefile.am,
19801: targets/cgi/Makefile.am, types/Makefile.am: makes
1.95 moko 19802:
19803: * src/classes/Makefile.am: makes
19804:
19805: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: xml transform
19806: win32 errors intercepted [xalan transformer patched and
19807: incorporated]
19808:
19809: * src/: classes/classes.dsp, classes/xdoc.C,
19810: include/pa_stylesheet_connection.h, main/main.dsp,
19811: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
19812: types/pa_vxdoc.h, types/pa_vxnode.h, types/types.dsp: xalan
19813: patches starting
19814:
19815: * src/classes/: string.C, table.C: ^string.save[file]
19816:
19817: * src/classes/: date.C, table.C: calendar moved to date
19818:
19819: * src/classes/: op.C, table.C: table.hash[key field;value field(s)
19820: string/table] now
19821:
19822: * src/classes/: op.C, table.C: z
19823:
19824: * src/: classes/op.C, classes/table.C, types/pa_vfile.h,
19825: types/pa_vimage.h, types/pa_vjunction.h, types/pa_vxdoc.h,
19826: types/pa_vxnode.h: table:menu & op for delims made allowed not to
19827: be code [be string..]
19828:
19829: * src/classes/: double.C, file.C, image.C, int.C, op.C, string.C,
19830: table.C: lots of
19831: params->as_int/double/as_string/as_junction/as_no_junction
19832: messages added
19833:
19834: 2001-10-08 parser
19835:
19836: * src/: classes/date.C, classes/image.C, classes/string.C,
19837: classes/table.C, classes/void.C, include/pa_request.h:
19838: params->as_int/double message added
19839:
19840: * src/classes/image.C: image:circle [and round arc] uses Bresenham
19841:
19842: * src/: classes/image.C, types/pa_vcookie.C, types/pa_vimage.C:
19843: image:sector removed image:html internal "line-*" attribs
19844:
19845: * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
19846: types/pa_vcookie.C: cookie urlencoded [netscape doc reread]
19847:
19848: * src/types/pa_vcookie.C: removing cookie made more netscape-like
19849: way
19850:
19851: * src/: classes/file.C, classes/form.C, main/pa_common.C,
19852: main/untaint.C: header untainting to UL_HTTP_HEADER,
19853: UL_MAIL_HEADER made nonforced [only tainted pieces]
19854:
19855: * src/: include/pa_common.h, main/pa_common.C, main/untaint.C,
19856: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: remove_crlf
19857: @ SAPI::log
19858:
19859: * src/main/untaint.C: \r to ' ' in origins mode
19860:
19861: * src/classes/xdoc.C: xdoc:load exceptions intercepted [like in
19862: set]
19863:
19864: * src/: classes/xdoc.C, include/pa_config_fixed.h,
19865: main/compile.tab.C, types/pa_vxdoc.h: parsedSource produced by
19866: nonstandard liaison freed up
19867:
19868: 2001-10-07 parser
19869:
19870: * src/: include/pa_config_fixed.h, main/compile.tab.C: restored
19871: project
19872:
19873: 2001-10-05 parser
19874:
19875: * src/: classes/xdoc.C, include/pa_pool.h, main/main.dsp,
19876: main/pa_pool.C: changed xdoc:set to prevent SAXParseException
19877: from outputing to cerr. lots of "todos"
19878:
19879: * src/main/untaint.C: http_header tainting more gentle with
19880: enquoting now
19881:
19882: * src/: classes/xdoc.C, include/pa_dictionary.h, main/main.dsp,
19883: main/pa_dictionary.C, main/pa_string.C, types/pa_vxdoc.h: started
19884: xml errorhandler. fixed string.replace a little, read @test
19885:
19886: * src/main/pa_string.C: found replace bug - first_that_starts(char
19887: *) does not have limit, and looks further eos, fixing....
19888:
19889: * src/doc/: doxygen.cfg, html2chm.cmd, sources2html.cmd: paths
19890:
19891: * src/: classes/xdoc.C, main/compile.tab.C: xdoc.transform now
19892:
19893: * src/main/: pa_charset_connection.C: ctype another mem clear
19894: bugfix
19895:
1.116 moko 19896: * src/main/: compile.tab.C, compile.y: disabled ^literals in names
19897: $result[^[$p^]z] now works fine
1.95 moko 19898:
19899: * src/: include/pa_hash.h, main/pa_hash.C: Hash::size() calculated
19900: wrong. fixed it
19901:
19902: * src/main/pa_charset_connection.C: unicode zero pair at the beging
19903: of totable appered to be vital
19904:
19905: 2001-10-04 parser
19906:
19907: * src/classes/image.C: ^image.length[text]
19908:
19909: 2001-10-03 parser
19910:
19911: * src/main/pa_request.C: DEFAULT...charset was ignored when !XML
19912:
19913: * src/main/pa_request.C: restored pcre defaulting in request
19914: [mindlessly "optimized" yesterday] comment left
19915:
19916: 2001-10-02 parser
19917:
19918: * src/: main/pa_charset_manager.C,
19919: include/pa_stylesheet_connection.h: forgot non-xml pool.*charset
19920: needed
19921:
19922: * src/: include/pa_pool.h, main/pa_pool.C, types/pa_vresponse.h:
19923: forgot non-xml pool.*charset needed
19924:
19925: * src/classes/table.C: # config comments fixed
19926:
19927: * src/: classes/table.C, main/pa_charset_connection.C: table:load &
19928: charset_connection #comment now
19929:
19930: * src/: classes/classes.dsp, types/types.dsp: release projects
19931: options fixed to use release msvcrt lib
19932:
19933: * src/main/pa_charset_connection.C: pcre tables now const inside
19934: removed default - pcre handles that internally fixed bug on
19935: not-cleaning tables [previously was calloced, now member]
19936:
19937: * src/: include/pa_request.h, main/pa_charset_connection.C,
19938: main/pa_request.C, types/pa_vstring.h: pcre tables now const
19939: inside removed default - pcre handles that internally fixed bug
19940: on not-cleaning tables [previously was calloced, now member]
19941:
19942: * src/: include/pa_config_fixed.h, main/pa_charset_connection.C:
19943: tested charset reload on file change @ apache version = OK tested
19944: freeing up prev encoding on adding new = OK
19945:
19946: 2001-10-01 parser
19947:
19948: * src/main/pa_charset_connection.C: removed entitify external hack
19949: [internal installed]
19950:
1.116 moko 19951: * src/main/Makefile.am: makes+removed dtd
1.95 moko 19952:
19953: * src/: include/pa_charset_connection.h,
19954: include/pa_charset_manager.h,
19955: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
19956: main/pa_charset_connection.C, main/pa_charset_manager.C,
19957: main/pa_request.C: charset loading & caching mech 0
19958:
19959: * src/: include/pa_stylesheet_connection.h,
19960: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
19961: main/pa_globals.C, main/pa_request.C: would make charset loading
19962: & caching mech now
19963:
19964: 2001-09-30 parser
19965:
19966: * src/main/pa_request.C: forgot to fill toTable
19967:
19968: * src/: include/pa_config_fixed.h, main/pa_request.C: started
19969: hack_s_maximumCharacterValues to XALAN_HACK_DIGITAL_ENTITIES but
19970: failed on win32 for now..
19971:
19972: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
19973: now charsets table configuration variable is: CHARSETS
19974:
19975: * src/: classes/xdoc.C, include/pa_request.h, main/pa_request.C:
19976: ctype with unicode 1. todo: no П entities on output somehow
19977:
19978: * src/: classes/file.C, classes/op.C, classes/string.C,
19979: include/pa_request.h, main/pa_request.C: started ctype with
19980: unicode values
19981:
19982: 2001-09-28 parser
19983:
19984: * src/: main/pa_request.C, classes/mail.C, classes/op.C,
19985: classes/xdoc.C, include/pa_stylesheet_connection.h: letter body
19986: string passed AS-IS now
19987:
19988: * src/classes/: xdoc.C, xnode.C: xdoc addencoding works! invented a
19989: way of user-configuring... todo: implement
19990:
19991: 2001-09-27 parser
19992:
19993: * src/classes/table.C: table.sort changed to sort table itself
19994:
19995: * src/: classes/xdoc.C, targets/isapi/parser3isapi.dsp:
19996: X^.getElementsByTagName[tagname] = array of xnode
19997: X^.getElementsByTagNameNS[namespaceURI;localName] = array of
19998: nodes removed - regretfully not supported @ xalan. maybe someday
19999: would reimplement, if needed.
20000:
20001: win32build system: solved long waiting anti-non-started-apache
20002: problem
20003:
20004: * src/: classes/classes.dsp, classes/xdoc.C, main/main.dsp,
20005: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
20006: types/types.dsp: win32 ident make system so not to rebuild
20007: library [ident.C.new]
20008:
20009: 2001-09-26 parser
20010:
20011: * src/: classes/classes.dsp, classes/xdoc.C, classes/xnode.C,
20012: classes/xnode.h, include/pa_config_fixed.h, main/main.dsp,
20013: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
20014: types/pa_vxnode.C, types/types.dsp: z
20015:
20016: * src/classes/classes.C: forgot one non-xml check
20017:
1.116 moko 20018: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
20019: targets/cgi/Makefile.am, types/Makefile.am: makes with clases.awk
1.95 moko 20020:
20021: * src/targets/cgi/parser3.C: z
20022:
20023: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C,
20024: targets/isapi/parser3isapi.C: #ifdef SMTP
20025:
20026: * src/: classes/classes.dsp, classes/dnode.C, classes/dnode.h,
20027: classes/dom.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
20028: main/compile.tab.C, types/pa_vdnode.C, types/pa_vdnode.h,
20029: types/pa_vdom.C, types/pa_vdom.h, types/pa_vxdoc.C,
20030: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
20031: types/types.dsp: xdoc&xnode now
20032:
20033: * src/: classes/classes.C, classes/classes.awk,
20034: classes/classes.dsp, classes/classes.h, classes/date.C,
20035: classes/dnode.C, classes/dnode.h, classes/dom.C,
20036: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
20037: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
20038: classes/op.C, classes/response.C, classes/string.C,
20039: classes/table.C, classes/void.C, include/pa_array.h,
20040: include/pa_common.h, include/pa_config_fixed.h,
20041: include/pa_config_includes.h, include/pa_dictionary.h,
20042: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
20043: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
20044: include/pa_socks.h, include/pa_sql_connection.h,
20045: include/pa_sql_driver_manager.h, include/pa_stack.h,
20046: include/pa_string.h, include/pa_stylesheet_connection.h,
20047: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
20048: include/pa_xslt_stylesheet_manager.h, main/compile.C,
20049: main/compile.y, main/compile_tools.C, main/compile_tools.h,
20050: main/execute.C, main/main.dsp, main/pa_array.C, main/pa_common.C,
20051: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
20052: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
20053: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
20054: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
20055: main/pa_xslt_stylesheet_manager.C, main/untaint.C,
20056: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
20057: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
20058: targets/cgi/parser3.dsp, targets/isapi/pa_pool.C,
20059: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
20060: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h,
20061: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
20062: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
20063: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
20064: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vdom.C,
20065: types/pa_vdom.h, types/pa_vdouble.h, types/pa_venv.h,
20066: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
20067: types/pa_vform.h, types/pa_vimage.C, types/pa_vimage.h,
20068: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
20069: types/pa_vmethod_frame.h, types/pa_vobject.h,
20070: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
20071: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
20072: types/pa_vstateless_object.h, types/pa_vstring.C,
20073: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
20074: types/pa_vvoid.h, types/pa_wcontext.C, types/pa_wcontext.h,
20075: types/pa_wwrapper.h, types/types.dsp: added ident.awk and
20076: main.dsp splitted to main+classes+types along to .am
20077:
20078: * src/classes/Makefile.am: removed useless var
20079:
20080: * src/: classes/classes.cmd, main/main.dsp,
20081: targets/cgi/parser3.dsp: moved classes.inc generation on win32 to
20082: main.dsp
20083:
20084: 2001-09-25 parser
20085:
20086: * src/include/pa_config_auto.h.in: xml on linux[elik] works! no
20087: 1251 though, todo ICU
20088:
1.116 moko 20089: * src/: Makefile.am, classes/Makefile.am, classes/dom.C,
1.95 moko 20090: include/pa_stylesheet_connection.h, main/Makefile.am,
1.116 moko 20091: main/pa_pool.C, targets/cgi/Makefile.am, types/Makefile.am,
20092: types/pa_vdom.h: xml configure makes
1.95 moko 20093:
20094: 2001-09-24 parser
20095:
1.116 moko 20096: * src/: classes/Makefile.am, include/pa_config_auto.h.in,
20097: types/Makefile.am: makes
1.95 moko 20098:
1.116 moko 20099: * src/targets/cgi/Makefile.am: makefiles
1.95 moko 20100:
20101: * src/: Makefile.am, targets/Makefile.am, targets/cgi/pa_pool.C:
20102: started unix makes update
20103:
20104: * src/: Makefile.am, main/Makefile.am, targets/cgi/Makefile.am:
20105: started unix makes update
20106:
20107: * src/types/: pa_vdnode.C, pa_vvoid.h, pa_vtable.C: z
20108:
20109: * src/types/pa_value.h: z
20110:
20111: * src/types/: pa_vhash.h, pa_vtable.h, pa_vclass.h: fixed small
20112: bugs with usinge hash/table in expressions
20113:
20114: * src/types/: pa_vfile.h, pa_vimage.h, pa_vstring.h: fiew wrong
20115: resolved conflicts fixed [const]
20116:
20117: * src/: classes/classes.cmd, classes/image.C, classes/op.C,
20118: classes/table.C, include/pa_request.h, include/pa_sapi.h,
20119: main/compile.C, main/compile.tab.C, main/compile.y,
20120: main/compile_tools.h, main/main.dsp, main/pa_common.C,
20121: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
20122: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vbool.h,
20123: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vform.C,
20124: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
20125: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h: merged3
20126: with before_xml [merge2 actually didn't happen - i've created
20127: tags on wrong branch. so this merge is in fact re-merge]
20128:
20129: 2001-09-21 parser
20130:
20131: * src/: main/main.dsp, targets/cgi/parser3.dsp,
20132: targets/isapi/parser3isapi.dsp: updated project files [/ sadly
20133: produced "" in make file and sadly wrong interpreted on load]
20134:
1.116 moko 20135: * src/: classes/classes.h, classes/hash.C, classes/op.C,
20136: classes/table.C, doc/doxygen.cfg, include/pa_common.h,
20137: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
20138: include/pa_sql_driver_manager.h, include/pa_string.h,
20139: main/compile.tab.C, main/main.dsp, main/pa_common.C,
20140: main/pa_exec.C, main/pa_globals.C, targets/cgi/parser3.dsp,
20141: targets/isapi/parser3isapi.dsp: merged with before_xml
1.95 moko 20142:
20143: * src/: classes/classes.C, classes/date.C, classes/dnode.C,
20144: classes/dom.C, classes/file.C, classes/form.C, classes/int.C,
20145: classes/mail.C, doc/doxygen.cfg, include/pa_config_fixed.h,
20146: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
20147: main/pa_pool.C, main/pa_request.C,
20148: main/pa_xslt_stylesheet_manager.C, targets/cgi/pa_pool.C,
20149: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
20150: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
20151: targets/isapi/parser3isapi.dsp, types/pa_valiased.C,
20152: types/pa_vcookie.C, types/pa_vdnode.C, types/pa_vdom.C,
20153: types/pa_vfile.C, types/pa_vform.C, types/pa_vimage.C,
20154: types/pa_vrequest.C, types/pa_vresponse.h,
20155: types/pa_vstateless_class.C, types/pa_vstring.C,
20156: types/pa_vtable.C, types/pa_wcontext.C: zillions of #ifdef XML
20157: created new projects for sql drivers [planning to remove sql
20158: drivers from main cvs project] first, will join latest changes
20159:
20160: * src/classes/: dom.C: defaulted dom writing methods encoding to
20161: pool.get_charset
20162:
20163: * src/classes/dom.C: defaulted dom writing methods encoding to
20164: pool.get_charset
20165:
20166: * src/include/pa_pool.h: defaulted dom writing methods encoding to
20167: pool.get_charset
20168:
20169: * src/: classes/dom.C, include/pa_pool.h, main/pa_pool.C,
20170: types/pa_vdnode.C, types/pa_vresponse.h: defaulted dom writing
20171: methods encoding to pool.get_charset
20172:
20173: * src/: include/pa_pool.h, main/pa_pool.C: checked whether
20174: transcoder were created right "unsupported encoding" message.
20175: not @ set time, but @ use time, so until xml output functions
20176: .string, .file, .save used - no encoding name check occur
20177:
20178: reduced transcode buffer size to 60 fixed pool cleanup - no
20179: registration needed, pools are officially destructured
20180:
20181: 2001-09-20 parser
20182:
20183: * src/classes/image.C: 20K preload on jpg measure [image::measure]
20184:
20185: * src/main/: pa_pool.C, pa_request.C: Pool::transcode defaults from
20186: $MAIN:DEFAULTS.content-type[$.charset[here]]
20187:
20188: * src/: classes/dnode.C, classes/dom.C,
20189: include/pa_config_includes.h, include/pa_globals.h,
20190: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
20191: main/pa_pool.C, targets/cgi/parser3.dsp,
20192: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
20193: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vresponse.h:
20194: Pool::transcode 0
20195:
20196: * src/classes/dom.C: dom. string save file moved output xml options
20197: to last param and made it optional
20198:
20199: * src/types/pa_vdnode.C: !$elementnode.attributes = hash of
20200: dnodes
20201: !$attributenode.specified = boolean
20202: true if the attribute received its value explicitly
20203: in the XML document,
20204: or if a value was assigned programatically with the
20205: setValue function.
20206: false if the attribute value came from the default value
20207: declared in the document's DTD.
20208: !$pinode.target = target of this processing instruction
20209: XML defines this as being the first token following the
20210: markup
20211: that begins the processing instruction.
20212: XPath:
20213: !^node.select[xpath/query/expression] = hash of 0->node0
20214: 1->node1
20215: !^node.select-single[xpath/query/expression] = first node if
20216: any
20217:
20218: * src/types/: pa_value.h, pa_vbool.h, pa_vdate.h, pa_vdouble.h,
20219: pa_vhash.h, pa_vint.h, pa_vstring.h, pa_vtable.h, pa_vvoid.h:
20220: some 'const's added
20221:
20222: * src/types/: pa_vhash.h, pa_vtable.h: table/hash can be used in
20223: expression context now, there value = size and boolean value
20224: size!=0
20225:
20226: * src/types/: pa_vhash.h, pa_vstring.h, pa_vtable.h: table/hash
20227: can be used in expression context now, there value = size and
20228: boolean value size!=0
20229:
20230: * src/: classes/dnode.C, classes/dom.C, targets/cgi/parser3.dsp,
20231: types/pa_vstring.h: dnode .file .string .save moved back to dom
20232: due to strange xalan bug
20233:
20234: 2001-09-18 parser
20235:
20236: * src/: classes/dnode.C, classes/dom.C, classes/hash.C,
20237: classes/image.C, classes/op.C, classes/table.C,
20238: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
20239: include/pa_sql_driver_manager.h, main/compile.C,
20240: main/compile.tab.C, main/compile.y, main/compile_tools.h,
20241: main/execute.C, main/pa_common.C, main/pa_request.C,
20242: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
20243: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
20244: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vform.C,
20245: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
20246: types/pa_vimage.h, types/pa_vtable.h: merged latest bugfixes from
20247: before_xml branch ^if(def $hash) now true only when
20248: ^hash:_count[]!=0 moved .string .save .file from dom to dnode
20249:
20250: * src/: classes/op.C, main/execute.C: operators self changed to
20251: root ^for variable context changed to self
20252:
20253: * src/types/: pa_vdnode.C, pa_vdom.h, pa_vhash.h, pa_vtable.h: dom,
20254: dnode 1
20255:
20256: * src/: classes/dnode.C, classes/dnode.h, main/main.dsp,
20257: types/pa_vdnode.C, types/pa_vdnode.h: dom, dnode 0
20258:
20259: * src/: classes/image.C, main/pa_string.C, main/pa_table.C: image:
20260: poly* fixed
20261:
20262: 2001-09-17 parser
20263:
20264: * src/: classes/dom.C, main/main.dsp, main/pa_globals.C,
20265: types/pa_vdom.h: started dnode+dom
20266:
20267: dnode DOM methods: $node.name $node.value
20268: ...others...
20269:
20270: ^node.xpath[/rates/USD] = hash
20271: $hash[
20272: $.0[node0]
20273: $.1[node1]
20274: ]
20275:
20276: * src/: classes/image.C, types/pa_vimage.C: $image.line-style now
20277: applies to all linear primitives
20278:
20279: * src/: classes/classes.h, classes/dom.C, classes/hash.C,
20280: include/pa_stylesheet_connection.h, main/main.dsp,
20281: targets/cgi/pa_pool.C, types/pa_vdom.h, types/pa_vfile.h,
20282: types/pa_vimage.h: started dnode DOM: $node.name
20283: $node.value ...others... ^node.xpath[/rates/USD] = hash
20284: dom(dnode)
20285:
20286: * src/: classes/hash.C, main/compile.C, main/compile.tab.C,
20287: main/compile.y, main/compile_tools.h, main/execute.C,
20288: targets/cgi/parser3.C: expressions unary+ ^hash.count[] bugfix:
20289: in expression compound($aa.zz.xx) names now can have minus '-' in
20290: name after '.'
20291:
20292: 2001-09-15 parser
20293:
20294: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
20295: image: $line-width ^line(...)[**** style]
20296:
20297: * src/: classes/dom.C, targets/isapi/parser3isapi.C,
20298: targets/isapi/pool_storage.h, types/pa_vdom.h: fixed bug in isapi
20299: pool_storage - cleanups first, allocations second. apache wisely
20300: does just like that
20301:
20302: * src/targets/isapi/: parser3isapi.C, pool_storage.h: pool_storage
20303: rewritten using template, no bugs now
20304:
20305: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/pa_pool.C,
20306: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
20307: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h:
20308: poorly started isapi pool_storage, would rewrite using template
20309: now
20310:
20311: * src/: classes/dom.C, classes/image.C, include/pa_pool.h,
20312: include/pa_stylesheet_connection.h, main/main.dsp,
20313: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
20314: targets/isapi/pool_storage.h, types/pa_vdom.C, types/pa_vdom.h:
20315: xalan objects freed up [introducing Pool::register_cleanup]
20316:
20317: * src/: doc/doxygen.cfg, include/pa_sapi.h, types/pa_vdom.h:
20318: comments
20319:
20320: 2001-09-14 parser
20321:
20322: * src/main/: pa_sql_driver_manager.C, pa_xslt_stylesheet_manager.C:
20323: z
20324:
20325: * src/: classes/dom.C, classes/file.C, classes/image.C,
20326: classes/mail.C, include/pa_common.h,
20327: include/pa_sql_driver_manager.h, include/pa_string.h,
20328: include/pa_stylesheet_connection.h,
20329: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
20330: main/pa_common.C, main/pa_exec.C, main/pa_globals.C,
20331: main/pa_sql_driver_manager.C, main/pa_xslt_stylesheet_manager.C,
20332: main/untaint.C, types/pa_vfile.C: dom.xslt stylesheet
20333: compiled&cached
20334:
20335: 2001-09-13 parser
20336:
20337: * src/: classes/dom.C, classes/file.C, classes/image.C,
20338: types/pa_vfile.C, types/pa_vfile.h: ^dom.file[] charset
20339:
20340: * src/classes/dom.C: dom:file content-type(.method)
20341:
20342: * src/: include/pa_common.h, include/pa_globals.h,
20343: main/pa_common.C, main/pa_request.C: $MAIN:CLASS_PATH now can be
20344: string now more informative error messages
20345:
20346: * src/: include/pa_globals.h, include/pa_request.h,
20347: main/pa_request.C, targets/cgi/parser3.C,
20348: targets/isapi/parser3isapi.C: ParserRootConfig .../parser3.conf
20349: ParserSiteConfig .../parser3.conf
20350:
20351: cgi&isapi looks for {configure|c:\windows}/parser3.conf
20352:
20353: 2001-09-12 parser
20354:
20355: * src/: classes/op.C, include/pa_sql_driver_manager.h,
20356: main/pa_sql_driver_manager.C: ^connect[] ^connect[aaa] more
20357: precise error reporting: "connection string must start with
20358: protocol://" now
20359:
20360: * src/main/compile.tab.C: fixed - subname code parts actually []
20361: braced
20362:
20363: * src/main/: compile.y, compile_tools.h: name.[part].xxx syntax
20364: lexer on LS_USER level did [] matching without setting nestage,
20365: introduced special LS_NAME_SQUARE_PART state
20366:
20367: 2001-09-11 parser
20368:
20369: * src/: classes/dom.C, include/pa_string.h, main/pa_globals.C,
20370: main/untaint.C: ^dom:set{<some>xml</some>} default language XML
20371: languages+=xml
20372:
20373: * src/: classes/dom.C, types/pa_vdom.h: ^dom:set[<some>xml</some>]
20374:
20375: * src/classes/dom.C: ^dom:save/string/file[output options] output
20376: options: $.method[xml|html|text] detection fixed
20377:
20378: * src/types/pa_vdom.h: messages
20379:
20380: * src/classes/dom.C: ^dom:save/string/file[output options] output
20381: options: $.method[xml|html|text] detection fixed
20382:
20383: 2001-09-10 parser
20384:
20385: * src/classes/dom.C: ^dom:save/string/file[output options] output
20386: options: $.method[xml|html|text] $.encoding[windows-1251|...]
20387:
20388: * src/classes/dom.C: ^dom.xslt[stylesheet filename][params hash
20389: added]
20390:
20391: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
20392: ^dom.xslt[stylesheet filename] 0
20393:
20394: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
20395: ^dom.xslt[stylesheet filename] -1 doc is lying
20396:
20397: * src/classes/dom.C: ^dom.file[encoding] = file
20398:
20399: * src/classes/: dom.C: ^dom.string[encoding] 1
20400: ^dom.save[encoding;filename]
20401:
20402: * src/classes/dom.C: ^dom.string[] 0
20403:
20404: * src/classes/dom.C: ^dom.save[b.xml] 1:error handling
20405:
20406: * src/: classes/dom.C, main/main.dsp, types/pa_vform.C,
20407: types/pa_vform.h: ^dom.save[b.xml] 0
20408:
20409: 2001-09-08 parser
20410:
20411: * src/types/pa_vform.C: $form:tables.name.field
20412:
20413: 2001-09-07 parser
20414:
20415: * src/classes/table.C: table:empty removed, superceded by ^if(def
20416: $table)...
20417:
20418: * src/targets/cgi/parser3.C: z
20419:
20420: * src/main/pa_string.C: $a[] ^if($a){y;n} is 'n' now [conversion
20421: from '' to int/double is 0]
20422:
20423: * src/: classes/dom.C, types/pa_value.h, types/pa_vtable.h: (def
20424: $table) is false when table is empty
20425:
20426: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
20427: !$form:tables $atable[$form:tables.a]
20428: ^atable.menu{a=$atable.element}[,]
20429:
20430: * src/: targets/cgi/parser3.dsp, types/pa_vform.C,
20431: types/pa_vform.h, types/pa_vhash.h: !$form:fields
20432:
1.116 moko 20433: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 20434: types/pa_vdom.h, types/pa_vform.C: merged with successful start
20435: of dom
20436:
20437: * src/: include/pa_hash.h, main/pa_hash.C, types/pa_vfile.h,
20438: types/pa_vform.C, types/pa_vform.h: z
20439:
20440: * src/: main/pa_exception.C, types/pa_vform.C: getting FIRST form
20441: element [not last]
20442:
1.116 moko 20443: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 20444: types/pa_vdom.h: introducing dom. dom:load[a.xml]
20445:
20446: 2001-09-06 parser
20447:
20448: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
20449: table with one column 'element' and two rows: 1 and 2
20450:
20451: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
20452: table with one column 'element' and two rows: 1 and 2
20453:
20454: * src/: classes/void.C, main/pa_string.C, main/pa_table.C: fixed up
20455: bad int/double conversions, and now $form:nonexistent.int(88)
20456: would return 88
20457:
20458: * src/: classes/hash.C, include/pa_globals.h, main/pa_globals.C,
20459: types/pa_vhash.h: now there's special hash key '_default'
20460: [instead of ^_default method] $hash[ $.a[1] $.b[2]
20461: $._default[xx] ] $hash.c
20462:
20463: * src/main/: compile.tab.C, compile.y: ^if(0){}{ ^if(1){}^; } bug
20464: fixed [thanks, fif], ^; were treated there non-literally
20465:
20466: * src/doc/doxygen.cfg: merged new default options from 1.2.10
20467: doxygen
20468:
20469: * src/: classes/image.C, classes/op.C, classes/string.C,
20470: classes/table.C, doc/doxygen.cfg, targets/isapi/parser3isapi.C,
20471: types/pa_vtable.C: few #ifndef DOXYGEN
20472:
20473: 2001-09-05 parser
20474:
20475: * src/classes/: string.C, table.C: sql options can be void [same as
20476: image:html the other day]
20477:
20478: * src/targets/cgi/Makefile.am: .am undo
20479:
20480: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
20481: targets/cgi/parser3.C: #define STRINGIZE(name) #name does not
20482: macro expantion on param, simply qoutes whatever passed, undone
20483:
20484: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
20485: targets/cgi/Makefile.am, targets/cgi/parser3.C: #define
20486: STRINGIZE(name) #name invented
20487:
20488: * src/: classes/op.C, include/pa_sql_driver_manager.h,
20489: main/pa_sql_driver_manager.C: #define MAIN_SQL_NAME "SQL" #define
20490: MAIN_SQL_DRIVERS_NAME "drivers"
20491:
20492: moved to be availible to all users
20493:
20494: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h:
20495: SQL_DRIVER_CREATE_FUNC_NAME
20496:
20497: * src/classes/mail.C: MAIN:MAIL check fixed
20498:
20499: 2001-09-04 parser
20500:
20501: * src/classes/image.C: image.html now can accept void params
20502:
20503: * src/targets/isapi/parser3isapi.C: z
20504:
20505: * src/targets/cgi/parser3.C: full_file_spec bug
20506:
20507: * src/targets/cgi/parser3.C: getenvcheck
20508:
20509: * src/targets/cgi/parser3.C: zz
20510:
20511: * src/targets/cgi/parser3.C: zzz
20512:
20513: * src/classes/date.C: date
20514:
20515: * src/classes/date.C: date:sql-string is now without ''
20516:
1.116 moko 20517: * src/: include/pa_config_auto.h.in, targets/cgi/Makefile.am,
1.95 moko 20518: targets/cgi/parser3.C: configure --sysconfdir=sysadmin-controlled
20519: auto.p location for targets/cgi/parser3, default[/usr/local/etc]
20520:
1.116 moko 20521: * src/include/pa_config_auto.h.in: makes
1.95 moko 20522:
20523: 2001-09-03 parser
20524:
20525: * src/targets/cgi/parser3.C: /configure cgi SYSCONFDIR
20526:
20527: 2001-09-01 parser
20528:
20529: * src/classes/image.C: letter_spacing
20530:
20531: * src/classes/image.C: image: font params changed
20532:
20533: * src/classes/image.C: image: as_int as_string used
20534:
20535: * src/types/pa_vmethod_frame.h: $result[] now gets properly
20536: analized
20537:
20538: 2001-08-31 parser
20539:
20540: * src/targets/cgi/parser3.C: z
20541:
1.116 moko 20542: * src/: include/pa_dir.h, targets/cgi/parser3.C: compiled under
20543: cygwin
1.95 moko 20544:
20545: * src/classes/void.C: void:int/double += (default)
20546:
20547: * src/classes/image.C: image:font added space param image:font
20548: changed charwidth alg, added kerning const[for now]
20549:
20550: * src/classes/: string.C, table.C: string:int/double (defaults)
20551:
20552: 2001-08-29 parser
20553:
20554: * src/main/pa_exception.C: exception redundant debug info
20555:
20556: 2001-08-28 parser
20557:
20558: * src/classes/image.C: image error msgs
20559:
20560: * src/classes/image.C: image: gifsize little endian
20561:
20562: * src/doc/doxygen.cfg: doxygen conf removed some garbage from under
20563: doxygeneration
20564:
20565: * src/: classes/Makefile.am, main/Makefile.am,
20566: targets/cgi/Makefile.am, types/Makefile.am: .am-s
20567:
20568: * src/: include/pa_dictionary.h, main/pa_dictionary.C,
20569: main/pa_sql_driver_manager.C: NO_STRING_ORIGIN check3
20570:
20571: * src/main/compile.C: NO_STRING_ORIGIN check2
20572:
20573: * src/classes/table.C: NO_STRING_ORIGIN check
20574:
20575: * src/include/pa_dictionary.h: gcc: ../include/pa_dictionary.h:19:
20576: storage class specifiers invalid in friend function declarations
20577:
20578: * src/: classes/op.C, main/compile.tab.C, main/pa_dir.C,
20579: main/untaint.C, targets/cgi/parser3.C,
20580: targets/isapi/parser3isapi.C: strncpy forced with zero ending in
20581: case of limit
20582:
20583: * src/: classes/file.C, main/pa_common.C: file:move
20584: autocreate/remove dest/src dir
20585:
20586: * src/: classes/string.C, include/pa_dictionary.h,
20587: include/pa_string.h, main/pa_dictionary.C, main/pa_string.C,
20588: main/untaint.C: pa_directory speeded up. moved zero 'from' check
20589: to directory constructor. string:replace
20590:
20591: 2001-08-27 parser
20592:
20593: * src/classes/image.C: fixed jpgsize alg
20594:
20595: * src/classes/image.C: fixed jpgsize alg
20596:
20597: * src/main/pa_exception.C: z
20598:
20599: * src/main/pa_common.C: removed debug info from pa_common
20600:
20601: * src/: main/pa_request.C, targets/cgi/parser3.C: parser3 test.html
20602: [auto.p from current dir loading]
20603:
1.116 moko 20604: * src/: main/pa_common.C, main/pa_exception.C,
20605: main/pa_sql_driver_manager.C, targets/cgi/Makefile.am: configure
20606: for solaris -lsocket
1.95 moko 20607:
20608: 2001-08-24 parser
20609:
20610: * src/targets/cgi/parser3.C: not cgi extra \n 3
20611:
20612: * src/targets/cgi/parser3.C: not cgi extra \n 2
20613:
20614: * src/targets/cgi/parser3.C: not cgi extra \n
20615:
20616: * src/main/pa_sql_driver_manager.C: z
20617:
20618: * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C:
20619: sql* removed services from disconnect - cross-request ideological
20620: probs.
20621:
20622: * src/sql/pa_sql_driver.h: sql* removed services from disconnect -
20623: cross-request ideological probs. oracle - fixed bug: cs
20624: allocated on request.pool and got freed before disconnect
20625:
20626: * src/classes/: file.C, form.C, mail.C, table.C: fiew non-pool
20627: mallocs fixed
20628:
20629: 2001-08-23 parser
20630:
20631: * src/classes/file.C: minor bug in file:save fixed
20632:
20633: * src/main/pa_sql_driver_manager.C: oracle: dlink
20634:
20635: 2001-08-22 parser
20636:
20637: * src/: classes/file.C, main/compile.tab.C, types/pa_vfile.C,
20638: types/pa_vfile.h: file:load|save[text|binary;
20639:
20640: * src/main/: compile.tab.C, compile.y: ^method[]^[^] literals []
20641:
20642: 2001-08-21 parser
20643:
20644: * src/classes/: file.C, table.C: ^file:list
20645:
20646: 2001-08-20 parser
20647:
20648: * src/: main/compile.tab.C, main/compile.y,
20649: main/pa_sql_driver_manager.C, types/pa_value.h, types/pa_vbool.h,
20650: types/pa_vdouble.h, types/pa_vint.h: $var(123) ^var.inc[]
20651: recousively caused problems: inc incremeted 123 literal!! fixed
20652:
20653: 2001-08-10 parser
20654:
20655: * src/main/: compile.tab.C, compile.y: [codes] name part syntax now
20656:
20657: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
20658: added
20659:
20660: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
20661: added
20662:
20663: * src/classes/table.C: table:sort restored [it was bad test :(]
20664:
20665: * src/types/: pa_value.h, pa_vstring.h: string now def only when ne
20666: ''
20667:
20668: * src/main/: pa_request.C: wanted to make const int
20669: MAX_EXECUTE_SECONDS=1;
20670:
20671: but couldnt, set_callback_and_alarm appeared to be not exported
20672: :(
20673:
20674: * src/main/pa_string.C: string.match hanged on. there were a hang
20675: check but it weren't wise enough
20676:
20677: @parse[dateString][tmp]
20678: $tmp[^dateString.match[(\d\d\d\d-)?(\d\d-)?][g]] $tmp.1 $tmp.2
20679: #end
20680:
20681: @main[] ^parse[2001-02-03]
20682:
20683: * src/classes/: table.C: table:sort now default desc
20684:
20685: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
20686: table.sort now creates new sorted table
20687:
20688: 2001-08-09 parser
20689:
20690: * src/main/pa_string.C: $a[010] now ^if($a==10){true} were octal
20691:
20692: * src/classes/hash.C: hash:_default now [was hash:default]
20693:
20694: * src/classes/op.C: case without switch check added
20695:
20696: * src/types/pa_vcookie.C: cookie name&value origins added, more
20697: precise $ORIGINS(1)
20698:
20699: * src/main/Makefile.am: .am
20700:
20701: * src/classes/void.C: void: int double copy/paste from int: bug
20702: fixed
20703:
20704: * src/classes/void.C: void: int double copy/paste from int: bug
20705: fixed
20706:
20707: 2001-08-07 parser
20708:
20709: * src/: classes/double.C, classes/int.C, classes/string.C,
20710: classes/table.C, include/pa_globals.h, main/pa_globals.C:
20711: !^int/double:sql{query}[[$.limit(2) $.offset(4) $.default(0)]]
20712: string, table
20713:
20714: * src/: classes/math.C, main/pa_request.C: math:random fixed. win32
20715: srand made working
20716:
20717: 2001-08-06 parser
20718:
20719: * src/: classes/mail.C, classes/op.C, include/pa_array.h,
20720: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
20721: main/compile.tab.C, main/compile.y, main/pa_array.C,
20722: main/pa_dictionary.C, main/pa_exec.C, main/pa_globals.C,
20723: main/pa_hash.C, main/pa_request.C, main/pa_string.C: class_path
20724:
20725: * src/main/pa_exec.C: exec win32 real filename
20726:
20727: * src/classes/file.C: exec stderr out
20728:
20729: * src/classes/hash.C: hash:keys renamed to hash:_keys :(
20730:
20731: 2001-08-03 parser
20732:
20733: * src/: classes/table.C, types/pa_vtable.h: vtable.locks killed
20734:
20735: 2001-08-02 parser
20736:
20737: * src/: classes/string.C, classes/table.C, include/pa_array.h,
20738: main/execute.C, main/pa_exec.C: introducing Array_iter
20739:
20740: * src/main/execute.C: detected quick_get recursion bug. changed to
20741: get@execute, but needs array iterator, separate from array to
20742: avoid it & use caching
20743:
20744: * src/main/: pa_dictionary.C, pa_globals.C: memset dictionary minor
20745: bug fixed
20746:
20747: * src/: classes/classes.h, classes/op.C, include/pa_globals.h,
20748: main/execute.C, main/pa_globals.C: found another multithread bug
20749: in op.C (last, last global var killed) :)
20750:
20751: 2001-08-01 parser
20752:
20753: * src/: include/pa_dictionary.h, include/pa_globals.h,
20754: include/pa_string.h, main/main.dsp, main/pa_dictionary.C,
20755: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
20756: main/untaint.C: speeded up typo-html replacements. introducing
20757: Dictionary with first-char caching
20758:
20759: 2001-07-31 parser
20760:
20761: * src/types/Makefile.am: pa_vtable.C added to .am
20762:
20763: * src/main/compile.tab.C: added, so that could be compiled even on
20764: non-bison-enabled platforms
20765:
20766: 2001-07-28 parser
20767:
20768: * src/classes/table.C: table:hash always produces hash, when can't
20769: - empty
20770:
20771: * src/main/: compile.y, untaint.C: bug fix @ untaint when \r
20772: skipped \n
20773:
20774: 2001-07-27 parser
20775:
20776: * src/classes/: double.C, int.C, string.C: provided meaningful msg
20777: on int/double/string :sql without result and default
20778:
20779: 2001-07-26 parser
20780:
20781: * src/classes/op.C: fixed bad multithread bug with strangly global
20782: OP
20783:
20784: * src/main/compile.y: $man[$.age[zzz]] 0
20785:
20786: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: hash
20787: creation syntax problem persists. restored $: for a while.
20788: thinking of $man[$.age[zzz]] syntax now
20789:
20790: * src/: classes/double.C, classes/int.C, classes/string.C,
20791: include/pa_opcode.h, main/compile.C, main/compile.y,
20792: main/compile_tools.h, main/execute.C, types/pa_vcode_frame.h,
20793: types/pa_vmethod_frame.h, types/pa_wcontext.h,
20794: types/pa_wwrapper.h: fixing :: realization #1
20795:
20796: * src/: include/pa_opcode.h, main/compile.C, main/compile.y,
20797: main/compile_tools.h, main/execute.C, main/pa_request.C,
20798: types/pa_vmethod_frame.h: introducing :: this is constructor call
20799: prefix. ordinary : remains for static accesses
20800:
20801: 2001-07-25 parser
20802:
20803: * src/types/pa_vtable.C: table: get_element order changeed. now: 1.
20804: fields 2. methods 3. columns
20805:
20806: * src/types/: pa_vdouble.h, pa_vint.h: odbc: no result queries;
20807: quote. optimized double&int tostring-s
20808:
20809: * src/main/: compile.C, compile.y, compile_tools.h: allowed
20810: whitespace before first method decl
20811:
20812: * src/classes/table.C: allowed nontable result in table:sql,
20813: results in empty table
20814:
20815: * src/main/: compile.C, compile.y, compile_tools.h: allowed empty
20816: lines before first method decl
20817:
20818: * src/: classes/table.C, main/main.dsp, types/pa_vtable.C,
20819: types/pa_vtable.h: ^table.record[] now $table.fields
20820:
20821: * src/main/compile.y: $var[] is now empty string, not void
20822:
20823: * src/main/: compile.y, execute.C: $var[] is now empty string, not
20824: void
20825:
20826: * src/: classes/string.C, include/pa_globals.h, main/execute.C,
20827: main/pa_globals.C: match replace code context moved to implicit
20828: $match context
20829:
20830: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
20831: main/compile_tools.h, main/execute.C: with killed, code storage
20832: introduced with former 'with' syntax
20833:
20834: 2001-07-24 parser
20835:
20836: * src/: main/compile.C, main/execute.C, main/pa_string.C,
20837: types/pa_value.h: first get_element, next get operator
20838:
20839: * src/main/compile.y: removed @end handling
20840:
20841: * src/main/: compile.C, compile.y: @end handling method2
20842:
20843: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
20844: file:move
20845:
20846: * src/main/pa_common.C: file_read close @ eof when imgsize bug
20847: fixed
20848:
20849: 2001-07-23 parser
20850:
20851: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql odbc
20852: driver
20853:
20854: * src/classes/hash.C: changed sql driver query interface
20855:
20856: * src/: classes/hash.C, classes/string.C, classes/table.C,
20857: classes/void.C, include/pa_sql_connection.h, sql/pa_sql_driver.h:
20858: changed sql driver query interface
20859:
20860: 2001-07-20 parser
20861:
20862: * src/types/pa_vrequest.C: X!$browser:type
20863:
20864: * src/: classes/file.C, classes/string.C, include/pa_string.h,
20865: main/execute.C, main/pa_string.C, types/pa_valiased.C,
20866: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.h,
20867: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vfile.h,
20868: types/pa_vform.h, types/pa_vhash.h, types/pa_vmath.h,
20869: types/pa_vobject.h, types/pa_vrequest.C,
20870: types/pa_vstateless_class.h, types/pa_vstateless_object.h: only
20871: ^class:method dynamic calls allowed. ^BASE.method call disabled.
20872: BASE element globally removed
20873:
20874: 2001-07-18 parser
20875:
20876: * src/classes/file.C: file:exec/cgi msg
20877:
20878: * src/classes/file.C: $file:exit-code renamed to 'status'
20879:
20880: * src/: classes/file.C, main/pa_exec.C: file:exec
20881:
1.116 moko 20882: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
20883: targets/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
20884: removed $id from *.in *.am
1.95 moko 20885:
20886: * src/main/: pa_request.C, untaint.C: ORIGINS langs name
20887: abbrevations
20888:
20889: * src/: classes/date.C, classes/mail.C, classes/math.C,
20890: classes/string.C, classes/table.C, include/pa_globals.h,
20891: include/pa_string.h, main/execute.C, main/pa_globals.C,
20892: main/pa_request.C, main/pa_string.C, main/untaint.C,
20893: types/pa_value.h, types/pa_vdouble.h, types/pa_vfile.h,
20894: types/pa_vint.h, types/pa_vstring.C, types/pa_vstring.h:
20895: $ORIGINS(1) output tracing mode
20896:
20897: 2001-07-13 parser
20898:
20899: * src/: classes/double.C, classes/int.C, classes/string.C,
20900: include/pa_request.h, main/execute.C, main/pa_request.C:
20901: auto.p[@auto], /news/auto.p[no @auto], so that initializing
20902: second would not call first @auto
20903:
20904: * src/main/: execute.C, pa_request.C: order of MAIN parents was
20905: wrong, fixed
20906:
20907: 2001-07-12 parser
20908:
20909: * src/types/pa_value.h: pa_value.putelement modification of system
20910: classes prevented
20911:
20912: 2001-07-11 parser
20913:
20914: * src/: classes/string.C, doc/sources2html.cmd: lr split now yelds
20915: table $piece
20916:
20917: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
20918: types/pa_vstateless_class.h: $file created by file:state +=
20919: .atime .mtime .ctime +found&fixed bug with exceptions on
20920: get_junction-created objects [they were on wrong pool]
20921:
20922: 2001-07-09 parser
20923:
20924: * src/main/untaint.C: qp wrong name
20925:
20926: * src/: classes/date.C, classes/string.C, classes/table.C,
20927: main/compile.y: date format 0
20928:
20929: 2001-07-07 parser
20930:
20931: * src/: classes/date.C, classes/table.C, include/pa_common.h,
20932: include/pa_string.h, main/pa_common.C, types/pa_vdate.h: date
20933: roll table calendar
20934:
20935: * src/: classes/Makefile.am, classes/date.C, classes/file.C,
20936: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
20937: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
20938: include/pa_request.h, main/main.dsp, types/pa_value.h,
20939: types/pa_vdate.h, types/pa_wcontext.C: date now set $fields roll
20940: string. todo: sql, calendar
20941:
20942: 2001-07-06 parser
20943:
20944: * src/: classes/math.C, include/pa_request.h, main/execute.C,
20945: main/main.dsp, main/pa_request.C, types/pa_vmath.h: math 0
20946:
20947: 2001-07-03 parser
20948:
20949: * src/: classes/Makefile.am, classes/math.C, classes/op.C,
20950: classes/random.C, main/main.dsp: class random renamed to math,
20951: operators became methods
20952:
20953: * src/classes/op.C: pow sqrt
20954:
20955: * src/: classes/op.C, main/execute.C: sin asin cos acos tan atan
20956:
20957: 2001-07-02 parser
20958:
20959: * src/classes/table.C: ^table.columns column renamed from 'name' to
20960: 'column'
20961:
20962: * src/classes/hash.C: ^hash.keys[]
20963:
20964: * src/: classes/table.C, main/pa_table.C: ^table:columns[]
20965:
20966: * src/main/: compile.y, compile_tools.h: in expressions now allowed
20967: 'strings'
20968:
20969: 2001-06-29 parser
20970:
20971: * src/main/: execute.C: /0 %0 checkes ver 2
20972:
20973: * src/main/execute.C: /0 %0 checke
20974:
20975: * src/classes/Makefile.am: nothing - void
20976:
20977: * src/classes/table.C: empty strings @ sql
20978:
20979: 2001-06-28 parser
20980:
20981: * src/: classes/double.C, classes/file.C, classes/form.C,
20982: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
20983: classes/op.C, classes/random.C, classes/response.C,
20984: classes/string.C, classes/table.C, classes/void.C,
20985: main/compile.C, main/compile_tools.C, main/execute.C,
20986: main/pa_array.C, main/pa_common.C, main/pa_dir.C,
20987: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
20988: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
20989: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
20990: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
20991: targets/isapi/parser3isapi.C, main/compile.y: */ static const
20992: char *RCSId="$Id: double.C,v 1.31 2001/06/28 07:41:59 parser Exp
20993: $";
20994:
20995: * src/: classes/double.C, classes/file.C, classes/form.C,
20996: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
20997: classes/op.C, classes/random.C, classes/response.C,
20998: classes/string.C, classes/table.C, classes/void.C,
20999: main/compile.C, main/compile.y, main/compile_tools.C,
21000: main/execute.C, main/pa_array.C, main/pa_common.C, main/pa_dir.C,
21001: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
21002: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
21003: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
21004: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
1.119 moko 21005: targets/isapi/parser3isapi.C: static char *RCSId="Id";
1.95 moko 21006:
21007: * src/main/: compile.y, compile_tools.h: $:name: == ${name}:
21008: $class:name: == ${class:name}:
21009:
21010: * src/classes/string.C: exactly one
21011:
21012: 2001-06-27 parser
21013:
21014: * src/: classes/nothing.C, classes/void.C, types/pa_vnothing.h,
21015: types/pa_vvoid.h: nothing renamed to void
21016:
21017: * src/classes/op.C: ^switch ^case
21018:
21019: * src/main/compile.y: nothing renamed to void
21020:
21021: * src/: classes/hash.C, classes/table.C, main/compile.y,
21022: main/execute.C, main/main.dsp, main/pa_request.C,
21023: targets/cgi/pa_pool.C, types/pa_value.h, types/pa_vcode_frame.h,
21024: types/pa_vmethod_frame.h, types/pa_vtable.h: nothing renamed to
21025: void
21026:
21027: * src/main/compile.y: lexer: $zzzz^zzzz were name part
21028:
21029: 2001-05-28 parser
21030:
21031: * src/doc/html2chm.cmd: removed >a
21032:
21033: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: release
21034: project options [some bugs]
21035:
21036: * src/doc/sources2html.cmd: z
21037:
21038: * src/: classes/classes.C, main/compile.C, main/compile.y,
21039: main/execute.C: operators are not in root class again
21040:
21041: 2001-05-24 parser
21042:
21043: * src/targets/cgi/parser3.dsp: project file
21044:
21045: * src/: classes/op.C, main/pa_request.C, targets/cgi/parser3.C:
21046: ^log ^exp
21047:
21048: * src/: main/pa_request.C, targets/cgi/parser3.C: // no _
21049: conversions in @exception[params]
21050:
21051: * src/main/pa_request.C: // no _ conversions in @exception[params]
21052:
21053: 2001-05-23 parser
21054:
21055: * src/main/pa_string.C: string cmp bug
21056:
21057: * src/classes/: mail.C, op.C: rem max 1000
21058:
21059: * src/: classes/op.C, main/compile.y: allow one empty line before
21060: LS_DEF_NAME
21061:
21062: 2001-05-22 parser
21063:
21064: * src/classes/op.C: if params code-required
21065:
21066: 2001-05-21 parser
21067:
21068: * src/types/pa_vstring.C: eoleof
21069:
21070: * src/classes/Makefile.am: .AM
21071:
21072: * src/classes/nothing.C: resultless ^sql moved to nothing:
21073:
21074: * src/classes/: nothing.C, op.C: 'unknown' renamed to 'nothing'
21075:
21076: * src/: classes/double.C, classes/nothing.C, classes/string.C,
21077: classes/unknown.C, main/main.dsp, types/pa_vnothing.h,
21078: types/pa_vunknown.h, classes/hash.C, main/compile.y,
21079: main/execute.C, targets/cgi/pa_pool.C, types/pa_vcode_frame.h,
21080: types/pa_vmethod_frame.h, types/pa_vtable.h, classes/table.C,
21081: main/pa_request.C, types/pa_value.h: 'unknown' renamed to
21082: 'nothing'
21083:
21084: * src/types/: pa_vstring.C, pa_vstring.h: removed unnecessary
21085: vstring::set_string
21086:
21087: * src/classes/: double.C, int.C, string.C: int,double;sql
21088:
21089: * src/: classes/hash.C, classes/int.C, classes/string.C,
21090: classes/table.C, include/pa_string.h, main/pa_string.C,
21091: types/pa_vstring.C, types/pa_vstring.h: started int:sql
21092:
21093: * src/: classes/classes.C, classes/hash.C, classes/op.C,
21094: classes/table.C, main/compile.C, main/compile.y, main/execute.C:
21095: hash:sql moved to main trunc. operators.txt updated
21096:
21097: * src/classes/: hash.C, op.C, table.C: hash:sql
21098:
21099: * src/classes/op.C: z
21100:
21101: * src/: main/compile.C, classes/classes.C: 1
21102:
21103: * src/: classes/classes.C, main/compile.C, main/compile.y,
21104: main/execute.C: 0
21105:
21106: * src/main/execute.C: z
21107:
21108: * src/targets/cgi/parser3.C: z
21109:
21110: * src/targets/cgi/parser3.C: argv can be just "parser3". made
21111: site_auto_path "." in that case
21112:
21113: * src/targets/cgi/: parser3.C: z
21114:
21115: * src/main/pa_request.C: .am
21116:
21117: * src/: main/pa_request.C, targets/cgi/parser3.C:
21118: pcre_tables=pcre_default_tables;
21119:
21120: 2001-05-19 parser
21121:
21122: * src/main/pa_string.C: z
21123:
21124: * src/: include/pa_string.h, main/untaint.C, targets/cgi/pa_pool.C:
21125: introducing String::cstr_bufsize, returns just size+1 for as_is
21126: target.
21127:
21128: * src/: main/untaint.C, targets/cgi/pa_pool.C,
21129: targets/cgi/parser3.C: fixed bug in pre html untaint, wrong size
21130: used, 4* mem wasted
21131:
21132: * src/classes/string.C: root context in match replace body now
21133: unchanged
21134:
21135: * src/types/pa_value.h: parameter # 1 based
21136:
21137: * src/main/pa_common.C: common: actual filename '%s'
21138:
21139: * src/classes/string.C: z
21140:
21141: * src/classes/Makefile.am: classes/.am
21142:
21143: * src/classes/: Makefile.am: classes/.am
21144:
21145: * src/: classes/Makefile.am, main/pa_sql_driver_manager.C,
21146: targets/cgi/pa_pool.C: classes/.am
21147:
21148: 2001-05-18 parser
21149:
1.116 moko 21150: * src/: include/pa_config_auto.h.in, targets/cgi/pa_pool.C: .am
21151: pa_threads.C ins
1.95 moko 21152:
21153: * src/targets/cgi/Makefile.am: .am pa_threads.C added
21154:
21155: 2001-05-17 parser
21156:
21157: * src/: classes/string.C, include/pa_config_fixed.h,
21158: include/pa_config_includes.h, main/compile.y,
21159: main/compile_tools.h, main/execute.C, main/pa_array.C,
21160: main/pa_common.C, main/pa_dir.C, main/pa_hash.C, main/pa_pool.C,
21161: main/untaint.C, types/pa_vcookie.C, types/pa_vfile.C,
21162: types/pa_vform.C: #include "pa_config_includes.h" removed from
21163: most .C
21164:
21165: * src/doc/html2chm.cmd: z
21166:
21167: * src/doc/: chm.cmd, doxygen.cmd, html2chm.cmd, sources2html.cmd,
21168: view.cmd, view_chm.cmd, view_html.cmd: doc cmds
21169:
21170: * src/main/pa_sql_driver_manager.C: moved expiration to
21171: get_connection_from_cache
21172:
21173: * src/main/pa_sql_driver_manager.C: cache expiration bf
21174:
21175: * src/: classes/classes.h, include/pa_sql_connection.h,
21176: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C:
21177: cache expiration[use SQL_Driver::disconnect]
21178:
21179: * src/main/pa_table.C: table.locate current restored on "not found"
21180:
21181: * src/: main/execute.C, types/pa_vmethod_frame.h: endless recursion
21182: line no
21183:
21184: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
21185: ANTI_ENDLESS_EXECUTE_RECOURSION
21186:
21187: * src/: classes/op.C, include/pa_sql_connection.h,
21188: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C,
21189: sql/pa_sql_driver.h: fixed problem at last: 2connections own
21190: 1driver and set_services fight for driver::fservices. before fix
21191:
21192: * src/: classes/op.C, include/pa_config_fixed.h,
21193: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
21194: main/pa_sql_driver_manager.C: found problem at last: 2connections
21195: own 1driver and set_services fight for driver::fservices. before
21196: fix
21197:
21198: * src/: include/pa_config_fixed.h, include/pa_threads.h,
21199: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
21200: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.dsp: added
21201: pa_threads.C
21202:
21203: * src/include/pa_threads.h: removed targets/parser
21204:
21205: * src/include/: pa_array.h, pa_common.h, pa_config_fixed.h,
21206: pa_config_includes.h, pa_exception.h, pa_exec.h, pa_globals.h,
21207: pa_hash.h, pa_opcode.h, pa_pool.h, pa_request.h, pa_sapi.h,
21208: pa_socks.h, pa_sql_connection.h, pa_stack.h, pa_string.h,
21209: pa_table.h, pa_threads.h: #include "pa_config_includes.h" in all
21210: headers
21211:
21212: * src/: classes/image.C, include/pa_sql_driver_manager.h,
21213: main/pa_sql_driver_manager.C, main/pa_string.C: wrong includes
21214: order prevented sqlmanager to see MULTYTHREAD define
21215:
21216: * src/: include/pa_config_fixed.h, include/pa_threads.h,
21217: main/pa_sql_driver_manager.C: SYNCHRONIZED moved closer to caches
21218: put/gets
21219:
21220: * src/: include/pa_hash.h, main/execute.C: removed /*SYNCHRONIZED*/
21221: from hash.h
21222:
21223: * src/: classes/op.C, include/pa_sql_connection.h,
21224: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: connection
21225: from cache ->set_services(&services);
21226:
21227: 2001-05-16 parser
21228:
21229: * src/targets/cgi/parser3.C: z
21230:
21231: * src/: include/pa_pool.h, targets/cgi/pa_pool.C: removed pool
21232: debug, #ifdefed some. would debug later, on more precise sample
21233: than stupid: @main[] $name[$z[]] ^for[i](0;10000-2){ $tail[9994]
21234: $name.$tail[$tail!] $name.$tail } ok3
21235:
21236: * src/: include/pa_array.h, main/pa_array.C, targets/cgi/parser3.C:
21237: removed array debug. before vstring rebasing
21238:
21239: * src/: include/pa_array.h, include/pa_string.h, main/execute.C,
21240: main/pa_array.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C:
21241: array debugged; adjusted
21242:
21243: * src/main/: pa_sql_driver_manager.C, pa_string.C:
21244: SQL_Driver_manager line no for connect/charset errors
21245:
21246: 2001-05-15 parser
21247:
21248: * src/: include/pa_array.h, include/pa_string.h, main/pa_array.C,
21249: main/pa_string.C: string+array made linear grows
21250:
21251: * src/: include/pa_string.h, main/pa_string.C,
21252: targets/cgi/pa_pool.C, targets/cgi/parser3.C: think that all must
21253: grow lineary, not exponentialy
21254:
21255: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C,
21256: targets/cgi/pa_pool.C, targets/cgi/parser3.C: string fixed bug
21257: with fullchunk cmps
21258:
21259: * src/targets/cgi/: pa_pool.C, parser3.C: main loss here: 5673321/
21260: 70041= 81
21261:
21262: * src/: include/pa_string.h, targets/cgi/pa_pool.C,
21263: targets/cgi/parser3.C: detected huge mem allocation: size/times
21264: malloc 27809390/368771, calloc 3232/83. would test now
21265:
21266: * src/: classes/random.C, main/compile.y, main/execute.C,
21267: main/pa_request.C, types/pa_value.h, types/pa_vmethod_frame.h:
21268: numbered params had wrong name - for instance: bad error message
21269: in ^for[] bad body type. fixed
21270:
21271: 2001-05-14 parser
21272:
21273: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
21274: main/untaint.C: ^string.upper|lower[]
21275:
21276: 2001-05-11 parser
21277:
21278: * src/: classes/double.C, classes/image.C, classes/op.C,
21279: classes/string.C, classes/table.C, classes/unknown.C,
21280: main/execute.C, types/pa_value.h, types/pa_vbool.h,
21281: types/pa_vdouble.h, types/pa_vint.h, types/pa_vstring.h,
21282: types/pa_vunknown.h: op: MAX_LOOPS as_int
21283:
21284: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: fixed some
21285: .dsp for win32tools
21286:
21287: 2001-05-11 paf
21288:
21289: * src/: classes/classes.cmd, classes/gawk.exe, classes/ls.exe,
21290: main/bison.exe, targets/isapi/KILL.EXE, targets/isapi/PSTAT.EXE,
21291: targets/isapi/istart.cmd, targets/isapi/istop.cmd,
21292: targets/isapi/kill.pl: moved win32 helpers to /win32tools
21293:
21294: 2001-05-10 paf
21295:
21296: * src/include/: pa_common.h, pa_config_includes.h: inline undefed
21297: for C++, that's all
21298:
1.116 moko 21299: * src/include/: pa_config_auto.h.in, pa_config_fixed.h,
21300: pa_config_includes.h: inline wonders
1.95 moko 21301:
21302: * src/: classes/Makefile.am, classes/hash.C, doc/doxygen.cfg,
21303: doc/doxygen.cmd: hash.C added
21304:
21305: * src/: main/pa_request.C, types/pa_vrequest.C: op configured
21306:
21307: * src/main/compile.y: @end grammar: allowed zero strings in control
21308: menthod
21309:
21310: * src/types/: pa_value.h, pa_vclass.h, pa_vstateless_class.h,
21311: pa_vstateless_object.h: changed priority: field before method
21312: lookup in vclass & vobject
21313:
21314: * src/: doc/doxygen.cmd, main/compile.y, types/pa_vobject.h:
21315: grammar: priorities changes [lowerd && prior] vobject: now first
21316: fields, next methods
21317:
21318: 2001-05-08 paf
21319:
21320: * src/main/pa_table.C: table columnname2item on nameless ignored
21321: bark=false. fixed
21322:
21323: * src/: classes/table.C, types/pa_value.h, types/pa_vhash.h,
21324: types/pa_vmethod_frame.h: hash:default works at last!
21325:
21326: * src/: classes/mail.C, classes/table.C, doc/doxygen.cmd,
21327: main/main.dsp, types/pa_vhash.h, types/pa_vstateless_class.h:
21328: hash:default
21329:
21330: * src/classes/table.C: z
21331:
21332: * src/classes/table.C: table:hash always hash of hash now
21333:
21334: * src/classes/table.C: table:empty return bool now
21335:
21336: * src/: classes/table.C, doc/chm.cmd, include/pa_array.h,
21337: include/pa_table.h, main/pa_table.C, types/pa_value.h,
21338: types/pa_vtable.h: table:hash
21339:
21340: * src/classes/table.C: table:record have name
21341:
21342: * src/: classes/op.C, types/pa_vtable.h: allowed $table.2342734
21343: returns vunknown
21344:
21345: * src/classes/: double.C, int.C, op.C, string.C:
21346: int,double,string:int[] double[] string:length[] results now have
21347: hames
21348:
21349: * src/: classes/op.C, classes/table.C, main/main.dsp,
21350: types/pa_vtable.h: removed table:find. table:locate and op:eval
21351: now return bool
21352:
21353: * src/: doc/chm.cmd, main/execute.C, types/pa_value.h: wrong pool
21354: in method checkparams again. fixed
21355:
21356: 2001-05-07 paf
21357:
21358: * src/doc/chm.cmd: cmd
21359:
21360: * src/: classes/image.C, classes/mail.C, classes/string.C,
21361: doc/chm.cmd, include/pa_table.h, main/pa_table.C,
21362: types/pa_value.h: method reported errors on wrong pool
21363:
21364: * src/main/execute.C: ^var[^class:var.method[]] is not constructor
21365: now
21366:
21367: * src/: doc/ClassExample2.dox, doc/aliased.dox, doc/chm.cmd,
21368: include/code.h, include/pa_opcode.h, main/compile.C,
21369: main/compile_tools.h, main/execute.C, types/pa_value.h,
21370: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
21371: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
21372: types/pa_vfile.h, types/pa_vform.h, types/pa_vhash.h,
21373: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
21374: types/pa_vmethod_frame.h, types/pa_vobject.h,
21375: types/pa_vrequest.h, types/pa_vresponse.h,
21376: types/pa_vstateless_class.h, types/pa_vstring.h,
21377: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
21378: types/pa_wwrapper.h: pa_code.h
21379:
21380: * src/doc/: chm.cmd, doxygen.cmd, view.cmd: dox cmd
21381:
21382: * src/: classes/string.C, classes/table.C, doc/ClassExample1.dox,
21383: doc/ClassExample2.dox, doc/ClassExample3.dox, doc/aliased.dox,
21384: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
21385: doc/doxygen.cmd, doc/executor.dox, doc/index.dox,
21386: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
21387: doc/string.dox, doc/targets.dox, doc/value.dox, include/code.h,
21388: include/pa_hash.h, include/pa_string.h, main/pa_request.C,
21389: main/pa_sql_driver_manager.C, types/pa_vjunction.h,
21390: types/pa_vtable.h: dox, split by not clean parts also
21391:
21392: * src/: include/pa_table.h, main/pa_table.C, types/pa_value.h,
21393: types/pa_vtable.h: table: fields, then methods. so to enable
21394: 'dir' fields & co. more
21395:
21396: * src/types/: pa_value.h, pa_vtable.h: table: fields, then methods.
21397: so to enable 'dir' fields & co.
21398:
21399: * src/main/compile.y: grammar: @end
21400:
21401: 2001-05-04 paf
21402:
21403: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
21404: doc/ClassExample3.dox, main/execute.C: dox: example1 updated
21405:
21406: * src/: classes/classes.h, classes/double.C, classes/file.C,
21407: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
21408: classes/op.C, classes/random.C, classes/response.C,
21409: classes/string.C, classes/table.C, classes/unknown.C,
21410: doc/doxygen.cfg, doc/index.dox, main/pa_string.C: removed m-
21411: method dox
21412:
21413: 2001-05-03 paf
21414:
21415: * src/: classes/classes.h, classes/double.C, doc/aliased.dox,
21416: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
21417: doc/doxygen.txt, doc/executor.dox, doc/index.dox,
21418: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
21419: doc/string.dox, doc/targets.dox, doc/value.dox,
21420: main/pa_request.C: dox splitted .dox files and added some
21421:
21422: * src/: classes/Makefile.am, doc/doxygen.txt: classes/am
21423:
21424: 2001-05-02 paf
21425:
21426: * src/classes/: image.C, table.C: table:dir result are not tainted
21427: by file_name language now
21428:
21429: 2001-04-28 paf
21430:
21431: * src/classes/classes.inc: removed classes.inc
21432:
21433: * src/: classes/classes.inc, main/Makefile.am: removed pa_methoded
21434: from .am
21435:
21436: * src/classes/classes.awk: skipped classes in .awk
21437:
21438: * src/: classes/Makefile.am, classes/classes.C, classes/classes.h,
21439: classes/classes.inc, classes/double.C, classes/file.C,
21440: classes/form.C, classes/int.C, classes/op.C, classes/response.C,
21441: classes/string.C, classes/table.C, classes/unknown.C,
21442: include/pa_methoded.h, main/main.dsp, main/pa_methoded.C,
21443: targets/cgi/parser3.C, types/pa_vdouble.h, types/pa_vfile.h,
21444: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h: renamed
21445: pa_methoded back to classes/classes.h
21446:
21447: * src/: classes/Makefile.am, main/main.dsp: classes/Makefile.am
21448:
21449: * src/: classes/Makefile.am, classes/classes.awk,
21450: classes/classes.cmd, classes/classes.inc, classes/gawk.exe,
21451: classes/ls.exe, main/bison.exe: classes.inc autogenerator
21452:
21453: * src/: classes/classes.C, classes/classes.h, classes/double.C,
21454: classes/file.C, classes/form.C, classes/int.C, classes/op.C,
21455: classes/response.C, classes/string.C, classes/table.C,
21456: classes/unknown.C, include/pa_methoded.h, main/Makefile.am,
21457: main/main.dsp, main/pa_methoded.C, targets/cgi/parser3.C,
21458: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vform.h,
21459: types/pa_vimage.h, types/pa_vint.h: classes/classes renamet to
21460: include|main/pa_methoded
21461:
21462: * src/: include/pa_string.h, main/pa_globals.C, main/untaint.C,
21463: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: z
21464:
21465: * src/: classes/form.C, include/pa_globals.h, main/pa_globals.C:
21466: moved some configured data to request::classes_conf moved some
21467: string crations from globals to M... [works]
21468:
21469: * src/: classes/form.C, classes/mail.C, classes/op.C,
21470: include/pa_globals.h, include/pa_request.h, main/pa_globals.C,
21471: main/pa_request.C: moved some configured data to
21472: request::classes_conf moved some string crations from globals to
21473: M...
21474:
21475: * src/: classes/form.C, include/pa_request.h, main/pa_request.C:
21476: about to move configured data to special request hash
21477:
21478: * src/: classes/classes.C, classes/classes.h, classes/file.C,
21479: classes/form.C, classes/mail.C, include/pa_request.h,
21480: main/pa_request.C: configure started
21481:
21482: * src/: main/execute.C, types/pa_wcontext.h: Methoded reorganized
21483: 2. todo: methoded-configure
21484:
21485: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
21486: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
21487: classes/_random.h, classes/_response.h, classes/_string.h,
21488: classes/_table.h, classes/_unknown.h, classes/classes.inc,
21489: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
21490: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
21491: classes/random.C, classes/response.C, classes/string.C,
21492: classes/table.C, classes/unknown.C, include/pa_globals.h,
21493: include/pa_request.h, main/compile.y, main/execute.C,
21494: main/main.dsp, main/pa_globals.C, main/pa_request.C,
21495: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
21496: types/pa_value.h, types/pa_vcookie.h, types/pa_vdouble.h,
21497: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.C,
21498: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
21499: types/pa_vrequest.h, types/pa_vresponse.h,
21500: types/pa_vstateless_class.h, types/pa_vstring.h,
21501: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
21502: classes/classes.C, classes/classes.h: Methoded reorganized. todo:
21503: methoded-configure
21504:
21505: * src/: classes/file.C, classes/table.C, main/compile.y,
21506: main/execute.C, main/pa_request.C, targets/cgi/parser3.C,
21507: types/pa_vtable.h, types/pa_wcontext.h: removed ^a.menu{$name}
21508: ability. now $a{^menu{$name}} or ^a.menu{$a.name}
21509:
21510: * src/: classes/_string.h, classes/classes.C, classes/classes.h,
21511: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
21512: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
21513: classes/random.C, classes/response.C, classes/string.C,
21514: classes/table.C, classes/unknown.C, include/pa_request.h,
21515: main/compile.y, main/execute.C, main/pa_globals.C,
21516: main/pa_request.C, types/pa_value.h, types/pa_vdouble.h,
21517: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
21518: types/pa_vimage.h, types/pa_vint.h, types/pa_vresponse.h,
21519: types/pa_vstring.h, types/pa_vtable.h, types/pa_vunknown.h:
21520: beautifying just compiled. todo: debug, configure
21521:
21522: 2001-04-27 paf
21523:
21524: * src/: classes/file.C, classes/image.C, classes/table.C,
21525: main/execute.C, main/pa_request.C, types/pa_vstateless_class.h:
21526: beautifying -99
21527:
21528: * src/: classes/_double.h, classes/_form.h, classes/_int.h,
21529: classes/_response.h, classes/_unknown.h, classes/classes.C,
21530: classes/classes.h, classes/double.C, classes/file.C,
21531: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
21532: classes/op.C, classes/random.C, classes/response.C,
21533: classes/string.C, include/pa_globals.h, main/main.dsp,
21534: main/pa_globals.C, types/pa_vdouble.h, types/pa_vfile.h,
21535: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
21536: types/pa_vresponse.h, types/pa_vstring.h, types/pa_vtable.h,
21537: types/pa_vunknown.h: beautifying -100
21538:
21539: * src/main/compile.y: serge@ found @CLASS bug. fixed
21540:
21541: * src/: classes/_file.h, classes/_image.h, classes/_mail.h,
21542: classes/_op.h, classes/_random.h, classes/_table.h,
21543: classes/file.C, classes/image.C, classes/int.C, classes/mail.C,
21544: classes/op.C, classes/random.C, classes/response.C,
21545: classes/string.C, classes/table.C, classes/unknown.C,
21546: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
21547: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
21548: types/pa_vcookie.h, types/pa_venv.h, types/pa_vrequest.h: started
21549: beautifying
21550:
21551: 2001-04-26 paf
21552:
21553: * src/: main/pa_request.C, types/pa_vfile.h: code documentation ++
21554:
21555: * src/: doc/doxygen.cfg, include/pa_socks.h, main/pa_socks.C: code
21556: documentation ++
21557:
21558: * src/: classes/_exec.h, doc/doxygen.cfg,
21559: include/pa_config_fixed.h, include/pa_config_includes.h,
21560: targets/cgi/pa_pool.C: code documentation ++
21561:
21562: * src/: classes/_image.h, classes/op.C, classes/random.C,
21563: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
21564: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
21565: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.C,
21566: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
21567: types/pa_vmethod_frame.h, types/pa_vobject.h,
21568: types/pa_vrequest.C, types/pa_vrequest.h,
21569: types/pa_vstateless_class.C, types/pa_vstateless_object.h,
21570: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.h,
21571: types/pa_vunknown.h, types/pa_wcontext.C, types/pa_wwrapper.h:
21572: code documentation ++
21573:
21574: * src/: classes/image.C, classes/mail.C, classes/string.C,
21575: classes/table.C, doc/doxygen.cfg, doc/doxygen.txt,
21576: include/pa_array.h, include/pa_dir.h, include/pa_string.h,
21577: main/compile_tools.h, main/pa_common.C, sql/pa_sql_driver.h,
21578: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
21579: types/pa_vhash.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
21580: types/pa_vobject.h, types/pa_vstateless_class.h,
21581: types/pa_wcontext.h, types/pa_wwrapper.h: code documentation ++
21582:
21583: * src/main/: pa_request.C, pa_string.C: z
21584:
21585: * src/: include/pa_common.h, include/pa_types.h,
21586: main/pa_sql_driver_manager.C: module [and, guess, isapi]
21587: connection caching fixed. request-pooled-url were stored into
21588: global connectioncache
21589:
21590: 2001-04-25 paf
21591:
21592: * src/: doc/doxygen.cfg, doc/doxygen.txt,
21593: targets/isapi/parser3isapi.C: started doc / [doxygen.txt]
21594:
21595: * src/: include/code.h, include/pa_common.h, main/compile.y,
21596: main/execute.C, main/pa_common.C: -d
21597:
21598: * src/: classes/file.C, main/pa_exec.C, targets/cgi/parser3.C:
21599: illegal call check a bit improved, but still under iis no mapping
21600: of dir with parser allowed!
21601:
21602: 2001-04-24 paf
21603:
21604: * src/targets/Makefile.am: apache module lib .am
21605:
21606: * src/main/pa_exec.C: windows32 buildCommand
21607:
21608: 2001-04-23 paf
21609:
21610: * src/targets/cgi/Makefile.am: win32 conditional
21611:
21612: * src/targets/cgi/Makefile.am: win32 conditional
21613:
21614: * src/targets/cgi/Makefile.am: liblink
21615:
21616: * src/: include/pa_array.h, main/pa_array.C, types/pa_vfile.h:
21617: vfile fields return type
21618:
21619: * src/types/pa_vfile.h: vfile fields return type
21620:
21621: * src/include/pa_config_auto.h.in: .h.in
21622:
21623: * src/: classes/Makefile, main/Makefile, targets/cgi/Makefile,
21624: types/Makefile: makefiles removed
21625:
21626: * src/: classes/Makefile, main/Makefile, main/pa_string.C,
21627: targets/cgi/Makefile, types/Makefile: configure.in + makefiles
21628:
21629: * src/main/pa_string.C: tested OK /// @test really @b test: s x m
21630: [tested: i & g ]
21631:
21632: * src/: classes/random.C, targets/cgi/parser3.C: redo failed ///
21633: @test noticed series in isapi, check how initialize_random_class
21634: is called! [must be called only once]
21635:
21636: * src/main/execute.C: operators first! so that ^table.menu{^rem{}}
21637: would not be 'unknown column'
21638:
21639: * src/: classes/table.C, types/pa_vform.C, types/pa_vtable.h: ///
21640: @test $a.menu{ $a[123] } and $a.menu{^table:set[]...}
21641:
21642: * src/: main/pa_request.C, targets/cgi/parser3.C: /// @test with
21643: commandline start "parser3 a.html" so that ^load[a.cfg] worked!
21644: [now doesnt]
21645:
21646: * src/targets/cgi/parser3.C: cgi cmdline ver
21647:
21648: * src/targets/cgi/parser3.C: cgi /// @test disable
21649: /cgi-bin/parser3/auto.p
21650:
21651: * src/main/untaint.C: untaint without charset
21652:
21653: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
21654: main/pa_common.C: common: file_write /// @test mkdirs
21655: file_delete rmdirs
21656:
21657: * src/main/untaint.C: mail header only once to =?
21658:
21659: * src/: classes/image.C, classes/mail.C, include/pa_globals.h,
21660: include/pa_string.h, main/pa_exec.C, main/pa_request.C,
21661: main/untaint.C: untaint - @test optimize whitespaces for
21662: all but 'html'
21663:
21664: * src/: classes/mail.C, include/pa_hash.h, include/pa_string.h,
21665: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
21666: main/untaint.C: untaint - @test mail-header
21667:
21668: 2001-04-20 paf
21669:
21670: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
21671: include/pa_request.h, include/pa_string.h, main/compile.y,
21672: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
21673: targets/cgi/parser3.C: $MAIN:LOCALE
21674:
21675: * src/main/untaint.C: z
21676:
21677: * src/: main/untaint.C, targets/cgi/parser3.C: fixed header "a/a"
21678:
21679: 2001-04-19 paf
21680:
21681: * src/main/compile_tools.h: $a$b bugfix
21682:
21683: * src/targets/cgi/parser3.C: z
21684:
21685: * src/classes/file.C: z
21686:
21687: * src/: classes/file.C, include/pa_common.h, types/pa_vcookie.C:
21688: done: header to $fields. waits for header '\' tricks
21689:
21690: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
21691: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vcookie.C:
21692: changed urlencode here and in untaint.C to HTTP standard's " and
21693: \" mech
21694:
21695: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: fixed
21696: http://alx/~paf/ doesnt load /auto.p
21697:
21698: 2001-04-18 paf
21699:
21700: * src/main/pa_request.C: 1
21701:
21702: * src/: main/Makefile.am, main/main.dsp, targets/cgi/Makefile.am:
21703: linux @alx
21704:
21705: 2001-04-17 paf
21706:
21707: * src/: classes/file.C, classes/image.C, doc/doxygen.cfg,
21708: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
21709: sql/pa_sql_driver.h: SQL_Driver_services renamed. doxygen statics
21710: enabled
21711:
21712: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
21713: classes/_exec.h, classes/_file.h, classes/_form.h,
21714: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
21715: classes/_random.h, classes/_response.h, classes/_string.h,
21716: classes/_table.h, classes/_unknown.h, classes/file.C,
21717: classes/image.C, classes/mail.C, classes/op.C, classes/random.C,
21718: include/pa_config_fixed.h, include/pa_config_includes.h,
21719: include/pa_hash.h, include/pa_sql_driver_manager.h,
21720: include/pa_version.h, main/Makefile.am, main/compile.y,
21721: main/pa_common.C, main/pa_exec.C, main/pa_socks.C,
21722: main/pa_sql_driver_manager.C, sql/Makefile.am,
21723: sql/pa_sql_driver.h, targets/cgi/Makefile.am,
21724: targets/cgi/parser3.C, types/Makefile.am, types/pa_vcookie.C,
21725: types/pa_vform.C, types/pa_vimage.h: exec @jav
21726:
21727: * src/: include/pa_sql_driver_manager.h,
21728: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
21729: types/pa_vimage.h: sql driver interface now has initialize(client
21730: .so)
21731:
21732: 2001-04-16 paf
21733:
21734: * src/Makefile.am: compile2 cygwin
21735:
21736: * src/: include/pa_config_includes.h, main/pa_exec.C,
21737: main/pa_socks.C, targets/cgi/Makefile.am: compile1 cygwin
21738:
21739: * src/targets/cgi/Makefile.am: compile0 jav
21740:
21741: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
21742: classes/_exec.h, classes/_file.h, classes/_form.h,
21743: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
21744: classes/_random.h, classes/_response.h, classes/_string.h,
21745: classes/_table.h, classes/_unknown.h, classes/image.C,
21746: classes/mail.C, classes/op.C, classes/random.C,
21747: include/pa_config_fixed.h, include/pa_config_includes.h,
21748: include/pa_hash.h, include/pa_version.h, main/Makefile.am,
21749: main/compile.y, main/pa_common.C, main/pa_exec.C,
21750: sql/Makefile.am, targets/cgi/Makefile.am, targets/cgi/parser3.C,
21751: types/Makefile.am, types/pa_vcookie.C, types/pa_vform.C:
21752: compile-1
21753:
21754: 2001-04-15 paf
21755:
21756: * src/classes/op.C: z
21757:
21758: * src/classes/table.C: table:empty +=process
21759:
21760: * src/types/pa_value.h: MethodParams !junction
21761:
21762: * src/: classes/_string.h, classes/double.C, classes/file.C,
21763: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
21764: classes/random.C, classes/response.C, classes/string.C,
21765: classes/table.C, classes/unknown.C, main/pa_request.C:
21766: MethodParams everywhere
21767:
21768: * src/: classes/op.C, include/pa_request.h, types/pa_value.h,
21769: types/pa_vmethod_frame.h: MethodParams in op.C
21770:
21771: 2001-04-12 paf
21772:
21773: * src/: classes/image.C, types/pa_vimage.h: image:font :text
21774:
21775: * src/: classes/_unknown.h, classes/unknown.C,
21776: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
21777: types/pa_vunknown.h: ^unknown:int[]=0 double[]=0
21778:
21779: * src/: classes/image.C, main/pa_hash.C: hash bug fixed
21780:
21781: * src/classes/image.C: image:gif now does not have params
21782:
21783: * src/classes/image.C:
21784: image:line/fill/rectangle/bar/replace/polygon/polybar
21785:
21786: * src/: classes/image.C, classes/op.C, main/execute.C,
21787: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
21788: for var now written not to r.wcontext, but to r.root cleared
21789: "entered_object" state
21790:
21791: 2001-04-11 paf
21792:
21793: * src/classes/image.C: image:create image:load
21794:
21795: * src/: classes/image.C, main/main.dsp: gd with mem write + image
21796: just compiled
21797:
21798: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
21799: todo: gif without file
21800:
21801: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
21802: started porting to Pooled descendant
21803:
21804: * src/: classes/image.C, main/execute.C, main/main.dsp,
21805: main/pa_request.C, types/pa_vcframe.h, types/pa_vcode_frame.h,
21806: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
21807: types/pa_vmframe.h: libimaging dead end: pil parses header in .py
21808:
21809: * src/: classes/image.C, include/pa_globals.h, main/main.dsp,
21810: main/pa_globals.C, types/pa_vimage.C, types/pa_vimage.h: gd dead
21811: end. switching to python imaging lib
21812:
21813: * src/main/main.dsp: gd+smtp made separate libs
21814:
21815: * src/: include/pa_globals.h, include/pa_string.h,
21816: main/pa_common.C, main/pa_request.C, main/untaint.C,
21817: types/pa_vfile.C, types/pa_vstring.C: fixed vstring:as_vfile
21818: length
21819:
21820: * src/: classes/mail.C, classes/op.C, targets/cgi/parser3.C,
21821: types/pa_value.h, types/pa_vfile.C, types/pa_vfile.h,
21822: types/pa_vform.C, types/pa_vstring.C, types/pa_vstring.h: forced
21823: UL_FILE_NAME of posted file name
21824:
21825: * src/: classes/image.C, main/pa_request.C, types/pa_vform.C: fixed
21826: post [broke when moved post read to core]
21827:
21828: 2001-04-10 paf
21829:
21830: * src/classes/image.C: image:html done
21831:
21832: * src/: classes/image.C, types/pa_vimage.C: jpg measure bugs fixed
21833:
21834: * src/classes/image.C: z
21835:
21836: * src/: classes/_image.h, classes/image.C, types/pa_vimage.C: image
21837: forgotten!
21838:
21839: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
21840: main/pa_request.C, main/pa_string.C, main/untaint.C,
21841: types/pa_vimage.h: image:measure -90
21842:
21843: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
21844: classes/_int.h, classes/_mail.h, classes/_op.h,
21845: classes/_random.h, classes/_response.h, classes/_string.h,
21846: classes/_table.h, classes/file.C, classes/mail.C,
21847: include/pa_common.h, include/pa_globals.h, main/execute.C,
21848: main/main.dsp, main/pa_common.C, main/pa_globals.C,
21849: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vfile.C,
21850: types/pa_vfile.h, types/pa_vhash.h, types/pa_vimage.h,
21851: types/pa_vresponse.h, types/pa_vstring.h: image:measure -100 just
21852: compiled
21853:
21854: * src/classes/mail.C: minor bug with unclear from/to
21855:
21856: * src/classes/mail.C: sendmail unix skipping defaults
21857:
21858: * src/: classes/mail.C, include/pa_common.h, main/pa_common.C:
21859: sendmail unix added defaults
21860:
21861: * src/classes/mail.C: unix sendmail compiled. todo:testing
21862:
21863: * src/: classes/mail.C, main/pa_globals.C: smtp some consts
21864:
21865: 2001-04-09 paf
21866:
21867: * src/: classes/file.C, include/pa_exec.h, include/pa_sapi.h,
21868: main/main.dsp, main/pa_exec.C, targets/cgi/parser3.C,
21869: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
21870: targets/isapi/parser3isapi.dsp: all targets exec
21871:
21872: * src/: include/pa_sapi.h, include/pa_string.h,
21873: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
21874: targets/isapi/parser3isapi.dsp: sapi exec dead end. badly parsed
21875: args in apache:util.script
21876:
21877: * src/include/pa_string.h: written but not tested exec with env for
21878: unix
21879:
21880: * src/: classes/file.C, main/main.dsp, main/pa_request.C,
21881: targets/cgi/parser3.C: exec win32 env
21882:
21883: * src/: classes/file.C, include/pa_hash.h, main/pa_hash.C: exec env
21884: 0
21885:
21886: * src/: classes/exec.C, classes/file.C, include/pa_globals.h,
21887: main/execute.C, main/main.dsp, main/pa_globals.C,
21888: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h,
21889: types/pa_vform.C, types/pa_vstring.C: exec4. todo env
21890:
21891: * src/: classes/exec.C, include/pa_common.h, main/pa_common.C,
21892: main/untaint.C: exec3. decided exec:cgi to move to file:cgi
21893:
21894: * src/: classes/_exec.h, main/execute.C, main/pa_globals.C,
21895: main/pa_request.C, types/pa_vcookie.C, types/pa_vfile.C: exec -2
21896:
21897: * src/: classes/_exec.h, classes/exec.C, include/pa_common.h,
21898: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
21899: main/pa_common.C, main/pa_request.C, main/pa_string.C,
21900: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
21901: targets/isapi/parser3isapi.C, types/pa_vform.C, types/pa_vform.h:
21902: exec class just compiled. moved post read to request core
21903:
21904: * src/: classes/_op.h, include/pa_dir.h, include/pa_globals.h,
21905: include/pa_sapi.h, main/main.dsp, main/pa_dir.C,
21906: main/pa_globals.C, targets/cgi/parser3.C,
21907: targets/cgi/parser3.dsp: problems with ^exec:cgi post data. they
21908: are already read by vform
21909:
21910: 2001-04-08 paf
21911:
21912: * src/: classes/file.C, classes/mail.C, classes/string.C,
21913: include/pa_request.h, include/pa_string.h, main/pa_request.C:
21914: uuencode. string<<
21915:
21916: 2001-04-07 paf
21917:
21918: * src/classes/mail.C: z
21919:
21920: * src/classes/mail.C: z
21921:
21922: * src/classes/mail.C: ^mail[$attach
21923:
21924: * src/classes/mail.C: ^attach dead end
21925:
21926: * src/: include/pa_socks.h, main/main.dsp, main/pa_socks.C,
21927: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
21928: targets/isapi/parser3isapi.C: mail:send 1
21929:
21930: * src/: classes/mail.C, main/pa_request.C: z
21931:
21932: * src/: classes/mail.C, include/pa_globals.h, include/pa_request.h,
21933: main/main.dsp, main/pa_globals.C, main/pa_request.C: smtp just
21934: compiled
21935:
21936: * src/classes/mail.C: +=
21937:
21938: * src/: classes/mail.C, include/pa_string.h: mail:send -1 text
21939: prepared
21940:
21941: * src/: classes/_mail.h, classes/mail.C, include/pa_common.h,
21942: include/pa_globals.h, include/pa_string.h, main/main.dsp,
21943: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
21944: main/untaint.C, types/pa_vcookie.C: mail:send -10 just compiled
21945:
21946: 2001-04-06 paf
21947:
21948: * src/: classes/table.C, include/pa_globals.h, main/pa_globals.C,
21949: main/pa_string.C: table:dir 1
21950:
21951: * src/: classes/table.C, include/pa_dir.h, main/execute.C,
21952: main/main.dsp, main/pa_dir.C: table:dir 0 [without regexp]
21953:
21954: * src/: classes/_op.h, classes/_root.h, classes/op.C,
21955: classes/root.C, include/pa_globals.h, include/pa_request.h,
21956: main/compile.C, main/execute.C, main/main.dsp, main/pa_globals.C,
21957: main/pa_request.C: renamed 'root' to 'op'
21958:
21959: * src/classes/: _op.h, op.C: renamed from 'root'
21960:
21961: * src/types/pa_valiased.C: another root inherititance skipped
21962:
21963: * src/main/: compile.C, compile.y, execute.C: operators are now not
21964: root methods of parent class. just 'ROOT' class
21965:
21966: * src/: classes/random.C, classes/table.C, main/pa_globals.C:
21967: @office
21968:
21969: * src/: main/pa_request.C, sql/pa_sql_driver.h: mysql limit
21970:
21971: 2001-04-05 paf
21972:
21973: * src/: main/execute.C, main/pa_request.C, main/pa_string.C,
21974: types/pa_value.h, types/pa_vmframe.h, types/pa_wcontext.h:
21975: constructor flag dropped at get_method_frame and remembered into
21976: method_frame
21977:
21978: * src/: classes/file.C, classes/root.C, classes/string.C,
21979: classes/table.C, main/pa_request.C: junction to code&expression
21980: in errors
21981:
21982: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
21983: main/pa_string.C, targets/isapi/parser3isapi.dsp:
21984: $LOCALE:ctype[Russian_Russia.1251]
21985:
21986: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
21987: include/pa_hash.h, include/pa_string.h, main/pa_hash.C,
21988: main/pa_table.C: hash now not thread-safe.
21989:
21990: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
21991: main/untaint.C: z
21992:
21993: * src/: classes/random.C, classes/root.C, classes/table.C,
21994: include/pa_sql_connection.h, include/pa_string.h, main/execute.C,
21995: main/pa_sql_driver_manager.C, main/pa_string.C, main/untaint.C,
21996: sql/pa_sql_driver.h, types/pa_vmframe.h, types/pa_wcontext.C,
21997: types/pa_wcontext.h: sql quote. string untaint UL_SQL
21998:
21999: * src/: classes/table.C, include/pa_sql_connection.h,
22000: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql ping
22001:
22002: * src/classes/table.C: select * from hren error contains statement
22003:
22004: * src/: classes/table.C, include/pa_sql_connection.h,
22005: include/pa_types.h, main/pa_sql_driver_manager.C, main/untaint.C,
22006: sql/pa_sql_driver.h, targets/cgi/parser3.dsp: mysql 0
22007:
22008: * src/: classes/root.C, include/pa_sql_connection.h,
22009: include/pa_sql_driver.h, main/main.dsp,
22010: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql driver
22011: services for conv memory & error reporting
22012:
22013: 2001-04-04 paf
22014:
22015: * src/doc/doxygen.cfg: z
22016:
22017: * src/include/pa_sql_driver.h: mysql connect
22018:
22019: * src/include/pa_sql_driver.h: mysql info
22020:
22021: * src/: classes/root.C, include/pa_sql_driver.h,
22022: include/pa_sql_driver_manager.h, main/main.dsp,
22023: main/pa_sql_driver_manager.C: more manager&connection&driver
22024:
22025: * src/sql/Makefile.am: forgot to add mysql client
22026:
22027: * src/: include/pa_sql_driver.h, include/pa_sql_driver_manager.h,
22028: main/pa_sql_driver_manager.C: connect&sql -1000 just compiled
22029: [forgot to add libltdl, added]
22030:
22031: * src/: Makefile.am, classes/root.C, classes/string.C,
22032: classes/table.C, include/pa_globals.h, include/pa_hash.h,
22033: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
22034: include/pa_string.h, include/pa_table.h, main/main.dsp,
22035: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
22036: main/pa_string.C, main/pa_table.C, main/untaint.C: connect&sql
22037: -1000 just compiled
22038:
22039: * src/: classes/random.C, classes/root.C, classes/table.C,
22040: include/pa_globals.h, include/pa_pool.h, include/pa_request.h,
22041: main/pa_request.C, types/pa_vclass.h: sql frame -10
22042:
22043: 2001-04-03 paf
22044:
22045: * src/types/pa_vform.C: z
22046:
22047: * src/: classes/string.C, types/pa_vform.C: string:match replace
22048: assigned lang
22049:
22050: * src/: classes/string.C, main/compile.y: grammar: fixed to allow
22051: {}[]< empty []
22052:
22053: * src/: classes/file.C, classes/string.C, classes/table.C,
22054: include/pa_string.h, main/pa_common.C, main/pa_string.C,
22055: main/untaint.C: string:match replace 2. string.cstr(forced lang)
22056:
22057: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
22058: string:match replace strange matches
22059:
22060: * src/classes/string.C: string:match replace 0
22061:
22062: * src/: classes/string.C, main/pa_string.C: string:match replace
22063: prepared 2
22064:
22065: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
22066: string:match replace prepared
22067:
22068: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
22069: string:match replace -11
22070:
22071: * src/: classes/string.C, include/pa_globals.h,
22072: include/pa_string.h, include/pa_threads.h, main/pa_globals.C,
22073: main/pa_string.C, targets/isapi/parser3isapi.dsp: string:match 0
22074:
22075: * src/: classes/string.C, include/pa_globals.h,
22076: include/pa_string.h, main/main.dsp, main/pa_globals.C,
22077: main/pa_string.C: string:match [search] -1 just compiled
22078:
22079: * src/types/pa_vstring.C: z
22080:
22081: * src/: classes/double.C, classes/file.C, classes/form.C,
22082: classes/int.C, classes/response.C, classes/root.C,
22083: classes/string.C, classes/table.C, include/pa_string.h,
22084: main/pa_string.C: string:match -10 [frame]
22085:
22086: * src/: classes/file.C, main/compile_tools.C, main/pa_common.C,
22087: main/pa_request.C: z
22088:
22089: * src/: main/pa_common.C, main/untaint.C, targets/cgi/parser3.C,
22090: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h:
22091: todo/tests
22092:
22093: * src/include/pa_common.h: z
22094:
22095: * src/: include/pa_globals.h, include/pa_hash.h, main/pa_globals.C,
22096: main/pa_request.C, targets/cgi/parser3.C,
22097: targets/isapi/parser3isapi.C, types/pa_vfile.C:
22098: content-disposition
22099:
22100: * src/: include/pa_common.h, include/pa_globals.h,
22101: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
22102: targets/isapi/parser3isapi.C, types/pa_value.h: main:post-process
22103:
22104: * src/: include/pa_common.h, include/pa_request.h,
22105: include/pa_sapi.h, main/main.dsp, main/pa_common.C,
22106: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
22107: types/pa_vfile.C, types/pa_vfile.h, types/pa_vstring.h: vfile in
22108: response:body
22109:
22110: * src/classes/table.C: table:append now uses string::split
22111:
22112: * src/classes/table.C: z
22113:
22114: * src/: classes/file.C, classes/root.C, classes/string.C,
22115: classes/table.C, doc/doxygen.cmd, doc/doxygen.txt,
22116: doc/generate.cmd, include/pa_array.h, include/pa_request.h,
22117: include/pa_string.h, main/execute.C, main/pa_string.C,
22118: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C:
22119: string::pos & cmp & piece bugs fixed. string::split new
22120: table:load separated from set table:set implemented with clean \n
22121: \t searches
22122:
22123: 2001-04-02 paf
22124:
22125: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
22126: types/pa_valiased.C, types/pa_valiased.h, types/pa_vdouble.h,
22127: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
22128: types/pa_vstring.h, types/pa_vtable.h: string::pos. about to use
22129: it in table:set/load
22130:
22131: * src/: classes/table.C, include/pa_array.h, include/pa_string.h,
22132: include/pa_table.h, main/execute.C, types/pa_value.h: table:join
22133:
22134: * src/classes/random.C: random:generate 1
22135:
22136: * src/: classes/_random.h, classes/random.C, include/pa_globals.h,
22137: main/main.dsp, main/pa_globals.C, main/pa_request.C,
22138: types/pa_value.h: random:generate
22139:
22140: 2001-03-30 paf
22141:
22142: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
22143: todo: table flip and append. string::pos
22144:
22145: * src/: classes/double.C, classes/file.C, classes/int.C,
22146: classes/response.C, classes/root.C, classes/string.C,
22147: classes/table.C, main/compile.y, main/execute.C,
22148: types/pa_value.h, types/pa_vstateless_class.C,
22149: types/pa_vstateless_class.h: static|dynamic|any method
22150: registration
22151:
22152: * src/: classes/file.C, classes/table.C, include/pa_table.h,
22153: main/pa_table.C, types/pa_vstring.h, types/pa_wwrapper.h:
22154: table:flip
22155:
22156: 2001-03-29 paf
22157:
22158: * src/classes/string.C: string:xsplit forgot that they must result
22159: in 1 row N column [not vice versa]
22160:
22161: * src/classes/string.C: z
22162:
22163: * src/classes/string.C: string: rsplit
22164:
22165: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
22166: string: lsplit
22167:
22168: * src/: classes/string.C, include/pa_string.h, main/execute.C,
22169: main/pa_array.C, main/pa_string.C, types/pa_vtable.h: string:
22170: lsplit -1
22171:
22172: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
22173: string: pos
22174:
22175: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
22176: string: pos -1
22177:
22178: * src/: classes/string.C, classes/table.C, include/pa_string.h,
22179: main/compile.y, main/pa_request.C, main/pa_string.C,
22180: main/untaint.C: string: left right mid
22181:
22182: * src/: classes/string.C, main/compile.y, main/compile_tools.C,
22183: main/compile_tools.h, main/main.dsp, types/pa_value.h,
22184: types/pa_vstring.h, types/pa_vunknown.h: empty params allowed. []
22185: and [;] are different now.
22186:
22187: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
22188: main/untaint.C: pool.request undone
22189:
22190: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
22191: main/untaint.C: pool.request
22192:
22193: 2001-03-28 paf
22194:
22195: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
22196: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
22197: types/pa_value.h, types/pa_vrequest.C, types/pa_vunknown.h:
22198: $request:browser [.type .version]; unknown.get_double now = 0.
22199:
22200: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
22201: include/pa_table.h, main/pa_globals.C, main/pa_request.C,
22202: main/pa_table.C, types/pa_vfile.C, types/pa_vfile.h,
22203: types/pa_vform.C: file:load autodetection of mime-type by
22204: user-file-name
22205:
22206: * src/: classes/file.C, main/execute.C, main/pa_common.C,
22207: main/untaint.C, targets/cgi/parser3.C, types/pa_vfile.C,
22208: types/pa_vfile.h, types/pa_vform.C: file:load 1. tainted
22209:
22210: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
22211: types/pa_vfile.C, types/pa_vfile.h: started file:load. wrong
22212: write. must be self.set
22213:
22214: * src/: classes/file.C, classes/root.C, classes/table.C,
22215: include/pa_table.h, main/pa_table.C: table:locate1, file:test
22216:
22217: * src/: classes/table.C, include/pa_array.h, include/pa_hash.h,
22218: include/pa_table.h, main/pa_array.C, main/pa_table.C,
22219: types/pa_vtable.h: table:locate just compiled
22220:
22221: 2001-03-27 paf
22222:
22223: * src/main/: execute.C, pa_common.C: fixed r/w context of
22224: code-params2, fixed ntfs hardlink slow dir update
22225:
22226: * src/: main/execute.C, types/pa_value.h, types/pa_vmframe.h,
22227: types/pa_wcontext.h: fixed r/w context of code-params
22228:
22229: * src/: classes/table.C, main/execute.C: about to change junction
22230: rcontext!!
22231:
22232: * src/: classes/double.C, classes/int.C, classes/root.C,
22233: classes/string.C, classes/table.C, main/compile_tools.C,
22234: main/execute.C, main/pa_request.C, main/untaint.C,
22235: types/pa_value.h, types/pa_vbool.h, types/pa_vcookie.C,
22236: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
22237: types/pa_vmframe.h, types/pa_vstring.h, types/pa_vtable.h,
22238: types/pa_vunknown.h: sort 0
22239:
22240: * src/types/: pa_valiased.C, pa_valiased.h, pa_vdouble.h,
22241: pa_vfile.h, pa_vint.h, pa_vresponse.h, pa_vstring.h, pa_vtable.h:
22242: renamed to are_static_calls_disabled
22243:
22244: * src/: classes/table.C, main/pa_common.C, main/pa_request.C,
22245: targets/cgi/parser3.C, types/pa_value.h, types/pa_vbool.h,
22246: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
22247: types/pa_vstring.h, types/pa_vunknown.h: continue on sort
22248:
22249: * src/main/compile.y: fixed minor bug in @mn[][] ...^{
22250:
22251: * src/: classes/table.C, include/pa_common.h, main/compile.y:
22252: started table:sort fixed minor bug in #...^{
22253:
22254: * src/: classes/table.C, include/pa_common.h, main/compile.y,
22255: main/execute.C, main/pa_common.C, main/pa_table.C: table:save
22256: decided to have as it were. stepped back. grammar: added 'in'
22257: 'is' 'lt'&co follow-space check
22258:
22259: 2001-03-26 paf
22260:
22261: * src/: classes/file.C, classes/root.C, classes/table.C,
22262: include/pa_common.h, include/pa_globals.h, include/pa_table.h,
22263: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
22264: main/pa_table.C: moved ::save to pa_table. disabled @auto
22265: invocation in ^process
22266:
22267: * src/main/compile.y: grammar: [] 0params [;] 2 params (was 0)
22268:
22269: * src/: classes/table.C, include/pa_array.h, include/pa_table.h,
22270: main/pa_array.C: table:record
22271:
22272: * src/: main/untaint.C, targets/cgi/parser3.C,
22273: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
22274: targets/isapi/pool_storage.h, types/pa_valiased.h,
22275: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.h,
22276: types/pa_vint.h, types/pa_vresponse.h, types/pa_vstring.h,
22277: types/pa_vtable.h: z
22278:
22279: * src/: include/pa_pool.h, main/execute.C, types/pa_valiased.C,
22280: types/pa_valiased.h, types/pa_value.h, types/pa_vdouble.h,
22281: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
22282: types/pa_vstring.h, types/pa_vtable.h: disabled $a(123)
22283: $b[$a.CLASS] ^b.inc[123] shit. allowed no checks in native
22284: method realisations on 'self' validity - they now can simply
22285: assume that 'self' is V{Proper} .
22286:
22287: 2001-03-25 paf
22288:
22289: * src/main/untaint.C: z
22290:
22291: * src/main/: pa_request.C, untaint.C: moved default typo-table to
22292: lowlevel - it initialization could be skipped if failed in @auto.
22293: so that exception report would use some table
22294:
22295: * src/main/pa_request.C: table empty lines ignored. system-default
22296: content type assigned in output:result [can fail in main:auto and
22297: skipped normal defaults extraction]
22298:
22299: * src/: include/pa_string.h, main/compile.y: #comment fixed minor
22300: bug
22301:
22302: * src/main/: pa_globals.C, untaint.C: html-typo - moved all
22303: processing to table [except preliminary \r\n \r \n replacements
22304: to "\n"]
22305:
22306: * src/: classes/table.C, main/untaint.C: html-typo - decided to
22307: move all the processing to table
22308:
22309: * src/: classes/table.C, include/pa_table.h, main/pa_globals.C,
22310: main/pa_table.C, main/untaint.C: returned table originating.
22311: useful for reporting typo table problems origin. think would be
22312: useful somewhere else
22313:
22314: * src/main/untaint.C: typo \r \r\n \n properly handled
22315:
22316: * src/: classes/table.C, include/pa_globals.h, include/pa_string.h,
22317: include/pa_table.h, main/compile.y, main/compile_tools.C,
22318: main/compile_tools.h, main/pa_globals.C, main/pa_request.C,
22319: main/pa_string.C, main/pa_table.C, main/untaint.C,
22320: types/pa_vcookie.h: typo & typo-default
22321:
22322: 2001-03-24 paf
22323:
22324: * src/main/pa_common.C: z
22325:
22326: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
22327: targets/cgi/parser3.C: html-typo 2
22328:
22329: * src/: doc/doxygen.cfg, doc/doxygen.txt, doc/generate.cmd,
22330: doc/view.cmd, include/pa_array.h, include/pa_globals.h,
22331: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
22332: main/execute.C, main/pa_array.C, main/pa_globals.C,
22333: main/pa_request.C, main/pa_string.C, main/untaint.C,
22334: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
22335: types/pa_value.h, types/pa_vtable.h: html-typo 0 html-typo 1.
22336: noticed double default content-type prob. run cgi.cmd tomorrow
22337: first html-typo sample. detected << problem: they become ltlt too
22338: fast
22339:
22340: * src/main/compile.y: z
22341:
22342: * src/main/: compile.y, compile_tools.h: #comment
22343:
22344: * src/: classes/file.C, classes/root.C, classes/table.C,
22345: include/pa_common.h, include/pa_request.h, main/compile.y,
22346: main/pa_common.C, main/pa_request.C, main/pa_string.C,
22347: targets/isapi/parser3isapi.C, types/pa_vfile.h: file_read
22348: stringified
22349:
22350: * src/types/pa_valiased.C: decided to String-ify file_read
22351:
22352: * src/targets/: cgi/parser3.C, isapi/nt_log_events.mc,
22353: isapi/parser3isapi.dsp: cgi: sapi::log
22354:
22355: * src/: include/pa_sapi.h, main/pa_common.C, main/pa_request.C,
22356: targets/cgi/parser3.C, targets/isapi/nt_log_events.mc,
22357: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp: nt
22358: error log experiments failed - cgi under iis got no access to
22359: log. registereventsource simply failed with 5(illegal call) code,
22360: while worked OK as standalone executable. isapi: used
22361: HSE_APPEND_LOG_PARAMETER feature
22362:
22363: * src/: include/pa_common.h, include/pa_globals.h,
22364: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
22365: targets/isapi/parser3isapi.C: fixed default content-type
22366: allocation storage
22367:
22368: * src/: include/pa_globals.h, include/pa_request.h,
22369: main/pa_globals.C, main/pa_request.C: z
22370:
22371: * src/: include/pa_array.h, include/pa_hash.h,
22372: include/pa_request.h, main/compile.y, main/pa_array.C,
22373: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
22374: types/pa_vcookie.C: cyclic uses ignored. defaulted default
22375: content-type
22376:
22377: * src/main/: compile.y, execute.C, main.dsp: @CLASS equals @BASE.
22378: sanity
22379:
22380: * src/: main/pa_globals.C, types/pa_vclass.C, types/pa_vclass.h,
22381: types/pa_vstateless_class.C, types/pa_vstateless_class.h: thrown
22382: away freeze mech. no danger now for you can't do
22383: ^request:process[@new-method[] body] trick anymore. still
22384: remains $some_instance.process[@new-method[] possibility] but
22385: would leave it as a feature. see index for sample
22386:
22387: * src/: include/pa_common.h, main/pa_common.C,
22388: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: auto.p
22389: monkey every target
22390:
22391: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
22392: targets/cgi/parser3.C, targets/isapi/pool_storage.h,
22393: types/pa_vform.C, types/pa_vform.h: auto.p monkey
22394:
22395: 2001-03-23 paf
22396:
22397: * src/: include/pa_pool.h, main/pa_request.C,
22398: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
22399: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
22400: targets/isapi/pool_storage.h: isapi: dumb pool storage
22401:
22402: * src/targets/isapi/pa_pool.C: decided to continue with extension
22403:
22404: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: isapi: think
22405: it would be better to rewrite as filter then to deal with pool
22406:
22407: * src/: main/main.dsp, targets/isapi/parser3isapi.C: isapi: docroot
22408: now like in cgi, not from APPL_PHYSICAL_PATH
22409:
22410: * src/: classes/root.C, classes/table.C, include/pa_common.h,
22411: include/pa_config_fixed.h, include/pa_config_includes.h,
22412: include/pa_string.h, include/pa_threads.h, include/pa_types.h,
22413: include/pa_version.h, main/compile.y, main/execute.C,
22414: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
22415: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
22416: main/untaint.C, targets/cgi/parser3.C,
22417: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vform.C:
22418: cgi: reinvent document_root and request_uri under iis. autoconf
22419: updated. introducing ap_config_includes
22420:
22421: * src/targets/cgi/parser3.C: cgi: reinvent document_root under iis
22422:
22423: * src/targets/cgi/parser3.C: cgi: only one pool now
22424:
22425: * src/: include/pa_globals.h, include/pa_sapi.h, main/main.dsp,
22426: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
22427: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
22428: types/pa_venv.h, types/pa_vform.C: sapi made object
22429:
22430: * src/: include/pa_globals.h, main/pa_request.C,
22431: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
22432: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
22433: types/pa_venv.h, types/pa_vform.C: all: sapi beauty
22434:
22435: * src/: main/pa_request.C, targets/cgi/parser3.C,
22436: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
22437: isapi minor env beauty
22438:
22439: * src/: main/pa_request.C, targets/cgi/parser3.C,
22440: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
22441: isapi document_root 0
22442:
22443: 2001-03-22 paf
22444:
22445: * src/targets/isapi/parser3isapi.C: isapi keep-alive
22446:
22447: * src/targets/: cgi/vform_fields_fill.C, cgi/vform_fields_fill.h,
22448: isapi/parser3isapi.C: z
22449:
22450: * src/: include/pa_pool.h, main/pa_request.C,
22451: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: isapi 1
22452:
22453: * src/targets/isapi/: KILL.EXE, PSTAT.EXE, istart.cmd, istop.cmd,
22454: kill.pl: isapi added utils
22455:
22456: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/parser3.C,
22457: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
22458: types/pa_vform.C: isapi 0
22459:
22460: * src/: include/pa_pool.h, targets/cgi/pa_pool.C,
22461: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
22462: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
22463: targets/isapi/parser3isapi.def, targets/isapi/parser3isapi.dsp:
22464: started isapi
22465:
22466: * src/: include/pa_globals.h, main/pa_common.C, main/pa_request.C:
22467: some comments
22468:
22469: * src/: include/pa_globals.h, include/pa_request.h,
22470: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
22471: targets/cgi/parser3.C, types/pa_vcookie.C: config of auto.p path:
22472: parser_root_auto_path parser_site_auto_path
22473:
22474: * src/types/pa_vcookie.C: cookie attr decoded
22475:
22476: 2001-03-21 paf
22477:
22478: * src/targets/cgi/parser3.C: z
22479:
22480: * src/include/pa_globals.h: post. todo: config of auto.p path
22481:
22482: * src/: include/pa_globals.h, targets/cgi/parser3.C,
22483: types/pa_venv.h: in cookie & env. todo:post
22484:
22485: * src/: Makefile.am, classes/Makefile.am, classes/file.C,
22486: classes/root.C, classes/table.C, include/pa_array.h,
22487: include/pa_common.h, include/pa_globals.h, include/pa_pool.h,
22488: include/pa_request.h, include/pa_string.h, main/Makefile.am,
22489: main/compile.y, main/execute.C, main/main.dsp, main/pa_common.C,
22490: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
22491: main/pa_table.C, main/untaint.C, targets/Makefile.am,
22492: targets/cgi/Makefile.am, targets/cgi/parser3.C,
22493: targets/cgi/parser3.dsp, types/Makefile.am, types/pa_vcookie.C,
22494: types/pa_vform.C, types/pa_vstring.h, types/pa_wwrapper.h:
22495: shifted apache branch on main trunc
22496:
22497: * src/: include/pa_common.h, include/pa_globals.h,
22498: include/pa_pool.h, include/pa_request.h, main/main.dsp,
22499: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.dsp,
22500: types/pa_vcookie.C, types/pa_vform.C, types/pa_vstring.h:
22501: starting mod_parser3
22502:
22503: * src/targets/cgi/parser3.C: starting mod_parser3
22504:
22505: 2001-03-20 paf
22506:
22507: * src/: main/pa_common.C, targets/cgi/Makefile.am,
22508: targets/cgi/parser3.C: automake compiled and works. todo:make
22509: win32 ifdefs work and add ifdef unistd
22510:
22511: * src/: classes/table.C, include/pa_common.h, include/pa_request.h,
22512: main/Makefile.am, main/pa_common.C, main/pa_request.C,
22513: main/pa_table.C, targets/cgi/Makefile.am, targets/cgi/parser3.C:
22514: z
22515:
22516: * src/: include/pa_request.h, main/Makefile.am, main/compile.y,
22517: main/execute.C, main/pa_common.C, types/Makefile.am: removing
22518: locking
22519:
22520: * src/: classes/Makefile.am, types/Makefile.am: z
22521:
22522: * src/: Makefile.am, classes/file.C, classes/root.C,
22523: classes/table.C, include/pa_array.h, include/pa_request.h,
22524: include/pa_string.h, main/Makefile.am, main/execute.C,
22525: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
22526: main/pa_string.C, main/untaint.C, targets/Makefile.am,
22527: targets/cgi/Makefile.am, targets/cgi/parser3.C,
22528: types/pa_vcookie.C, types/pa_wwrapper.h: String::UL_
22529:
22530: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
22531: main/pa_request.C, types/pa_vfile.h: ^table:save
22532:
22533: * src/: classes/file.C, classes/table.C, include/pa_array.h,
22534: include/pa_common.h, include/pa_request.h, include/pa_string.h,
22535: include/pa_table.h, include/pa_threads.h, main/pa_globals.C,
22536: main/untaint.C, types/pa_valiased.h, types/pa_value.h,
22537: types/pa_vform.h: z
22538:
22539: * src/include/pa_string.h: z
22540:
22541: * src/: classes/_request.h, classes/request.C, main/main.dsp,
22542: main/pa_globals.C, types/pa_value.h, types/pa_vform.h,
22543: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
22544: :Value
22545:
22546: * src/: classes/_request.h, classes/request.C, main/pa_globals.C,
22547: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
22548: :VStateless_object
22549:
22550: * src/: classes/_response.h, classes/response.C, main/pa_globals.C,
22551: types/pa_vform.h, types/pa_vresponse.h: VResponse moved to
22552: :VStateless_object
22553:
22554: * src/: main/main.dsp, targets/cgi/parser3.dsp,
22555: types/pa_valiased.C, types/pa_vform.h: commented VForm
22556:
22557: * src/: targets/cgi/pa_vform.C, types/pa_valiased.C,
22558: types/pa_valiased.h, types/pa_value.h,
22559: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
22560: types/pa_vstateless_object.h: moved common get_element part from
22561: stateless object&class into VAliased
22562:
22563: * src/: classes/_env.h, classes/_table.h, classes/env.C,
22564: classes/table.C, main/execute.C, main/main.dsp,
22565: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
22566: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.h: VEnv is
22567: now :Value
22568:
22569: * src/: classes/_cookie.h, classes/_table.h, classes/cookie.C,
22570: main/execute.C, main/main.dsp, main/pa_globals.C,
22571: types/pa_vcookie.C, types/pa_vcookie.h: VCookie is now :Value
22572:
22573: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstateless_object.h: vfile
22574: doxx
22575:
22576: * src/: classes/_file.h, classes/file.C, include/pa_types.h,
22577: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
22578: types/pa_valiased.h, types/pa_vfile.C, types/pa_vfile.h,
22579: types/pa_vstateless_class.h, types/pa_vstateless_object.h: \ to /
22580: and ^file:save
22581:
22582: 2001-03-19 paf
22583:
22584: * src/types/pa_vfile.C: z
22585:
22586: * src/: classes/file.C, classes/request.C, classes/table.C,
22587: include/pa_string.h, main/main.dsp, main/pa_pool.C,
22588: main/pa_request.C, main/untaint.C, types/pa_value.h,
22589: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C: file 1
22590:
22591: * src/: classes/table.C, include/pa_common.h, include/pa_globals.h,
22592: include/pa_string.h, include/pa_table.h, main/main.dsp,
22593: main/pa_common.C, main/pa_globals.C, types/pa_value.h,
22594: types/pa_vcookie.h, types/pa_venv.h, types/pa_vform.C,
22595: types/pa_vform.h, types/pa_vrequest.h, types/pa_vtable.h,
22596: classes/_file.h, classes/file.C, types/pa_vfile.C,
22597: types/pa_vfile.h: file class just compiled
22598:
22599: * src/: classes/table.C, include/pa_pool.h, include/pa_request.h,
22600: include/pa_table.h, include/pa_types.h, main/execute.C,
22601: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
22602: types/pa_vclass.h, types/pa_vform.C, types/pa_vstateless_class.h,
22603: types/pa_vstateless_object.h: ^table:set{default level: TABLE}
22604:
22605: * src/include/pa_pool.h: z
22606:
22607: * src/: include/pa_hash.h, include/pa_types.h, main/pa_common.C,
22608: main/pa_hash.C, main/pa_request.C, types/pa_vcookie.C: renamed
22609: Hash::Value to Val so to doxygen would finlly stop confusing
22610: those Value-s
22611:
22612: * src/: include/code.h, include/pa_array.h, include/pa_common.h,
22613: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
22614: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
22615: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
22616: include/pa_types.h, main/compile.C, main/compile.y,
22617: main/compile_tools.C, main/compile_tools.h, main/execute.C,
22618: main/pa_array.C, main/pa_common.C, main/pa_exception.C,
22619: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
22620: main/pa_request.C, main/pa_string.C, main/pa_table.C,
22621: main/untaint.C, types/pa_valiased.h, types/pa_value.h: z
22622:
22623: * src/types/: pa_valiased.h, pa_vbool.h: doc: Value and it's
22624: derivates somehow unlinked. don't know why yet
22625:
22626: * src/: include/code.h, include/pa_array.h, include/pa_pool.h,
22627: include/pa_string.h, include/pa_threads.h, main/compile.C,
22628: main/compile.y, main/compile_tools.C, main/compile_tools.h,
22629: main/execute.C, main/pa_array.C, main/pa_common.C,
22630: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
22631: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
22632: main/pa_table.C, main/untaint.C, types/pa_value.h: auto @brief
22633:
22634: * src/: classes/root.C, classes/table.C, main/pa_exception.C,
22635: main/pa_request.C, targets/cgi/parser3.C, types/pa_vbool.h,
22636: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdouble.h,
22637: types/pa_venv.h, types/pa_vform.h, types/pa_vint.h,
22638: types/pa_vrequest.h: doc: detected Value derivates prob
22639:
22640: * src/include/pa_globals.h: z
22641:
22642: * src/: classes/_request.h, classes/request.C, include/code.h,
22643: include/pa_array.h, include/pa_common.h, include/pa_exception.h,
22644: include/pa_globals.h, include/pa_hash.h, include/pa_pool.h,
22645: include/pa_request.h, include/pa_stack.h, include/pa_string.h,
22646: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
22647: main/execute.C, main/pa_pool.C, main/pa_request.C,
22648: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
22649: types/pa_value.h, types/pa_vform.C: doxygen include/, Value
22650:
22651: 2001-03-18 paf
22652:
22653: * src/: classes/cookie.C, types/pa_vcookie.C, types/pa_vcookie.h:
22654: cookie: allowed access to hash-assigned
22655:
22656: * src/targets/cgi/parser3.C: z
22657:
22658: * src/: classes/_cookie.h, classes/cookie.C, include/pa_common.h,
22659: include/pa_globals.h, include/pa_request.h, include/pa_string.h,
22660: include/pa_types.h, main/main.dsp, main/pa_common.C,
22661: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
22662: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
22663: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
22664: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
22665: types/pa_vunknown.h: cookie class
22666:
22667: * src/main/pa_request.C: zero length output allowed
22668:
22669: * src/: classes/response.C, main/pa_request.C, types/pa_value.h,
22670: types/pa_vhash.h, types/pa_vresponse.h: ^response:clear[]
22671:
22672: * src/: classes/root.C, main/pa_request.C: taint forgotten forced
22673: lang switch
22674:
22675: * src/: classes/root.C, include/pa_globals.h, include/pa_string.h,
22676: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
22677: types/pa_value.h, types/pa_vhash.h:
22678: $defautl[$content-type[$value[text/html] $charset[windows-1251]]
22679:
22680: * src/main/execute.C: z
22681:
22682: * src/: classes/root.C, main/pa_request.C, main/untaint.C,
22683: targets/cgi/parser3.C: taint[uri
22684:
22685: * src/: classes/request.C, classes/response.C, classes/root.C,
22686: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
22687: include/pa_string.h, main/pa_common.C, main/pa_globals.C,
22688: main/pa_request.C, targets/cgi/parser3.C: ^taint 0
22689:
22690: * src/: classes/root.C, classes/string.C, include/pa_string.h,
22691: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
22692: types/pa_vdouble.h, types/pa_vform.C, types/pa_vint.h,
22693: types/pa_vstateless_class.C: convinient string(pool, char *src,
22694: bool tainted) ctor
22695:
22696: * src/: include/pa_hash.h, include/pa_request.h,
22697: include/pa_string.h, main/pa_globals.C, main/pa_hash.C,
22698: main/pa_request.C, main/pa_string.C, main/untaint.C,
22699: targets/cgi/parser3.C: proper @exceptions params tainting
22700:
22701: * src/: include/pa_hash.h, main/pa_hash.C, targets/cgi/parser3.C:
22702: response fields to header
22703:
22704: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
22705: z
22706:
22707: * src/: classes/_response.h, classes/response.C,
22708: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
22709: main/compile.C, main/compile.y, main/execute.C, main/main.dsp,
22710: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
22711: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_value.h,
22712: types/pa_vhash.h, types/pa_vrequest.h, types/pa_vresponse.h:
22713: $response: 0 request::core exception rethrow
22714:
22715: 2001-03-16 paf
22716:
22717: * src/: main/execute.C, main/main.dsp, types/pa_value.h,
22718: types/pa_vrequest.h: native method' class call with less params
22719: then needed error reporting
22720:
22721: * src/: classes/_request.h, classes/request.C,
22722: include/pa_globals.h, include/pa_request.h, main/execute.C,
22723: main/main.dsp, main/pa_globals.C, main/pa_request.C,
22724: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vrequest.C,
22725: types/pa_vrequest.h: $request : query :uri
22726:
22727: * src/: include/pa_globals.h, main/execute.C, main/pa_globals.C,
22728: types/pa_value.h, types/pa_vcframe.h, types/pa_vmframe.h,
22729: types/pa_wcontext.h: $result
22730:
22731: * src/: main/execute.C, types/pa_vmframe.h: if(in "/news/")
22732:
22733: * src/: classes/double.C, include/code.h, main/compile.y,
22734: main/compile_tools.C, main/compile_tools.h, main/execute.C: ()
22735: and {} param wcontext conflict fixed by OP_EXPR_CODE__STORE_PARAM
22736:
22737: * src/: include/code.h, include/pa_hash.h, include/pa_request.h,
22738: main/compile.y, main/execute.C, types/pa_value.h,
22739: types/pa_vhash.h, types/pa_vstring.h, types/pa_vtable.h,
22740: types/pa_wcontext.C, types/pa_wcontext.h: see () and {} param
22741: wcontext conflict
22742:
22743: * src/: main/execute.C, types/pa_value.h,
22744: types/pa_vstateless_object.h, types/pa_vstring.h: disabled
22745: $string.field
22746:
22747: 2001-03-15 paf
22748:
22749: * src/main/pa_request.C: news sample
22750:
22751: * src/: main/compile.y, main/execute.C, main/pa_request.C,
22752: targets/cgi/parser3.C, types/pa_vstring.h: @exception
22753:
22754: * src/main/: compile.y, execute.C: z
22755:
22756: * src/: main/compile.y, main/pa_request.C, targets/cgi/parser3.C,
22757: types/pa_vstring.h: pre-pre-pre-beta cgi under win32 apache pre
22758: pre pre works
22759:
22760: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
22761: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vform.h: vform
22762: fillfields just compiled
22763:
22764: 2001-03-14 paf
22765:
22766: * src/: include/pa_request.h, main/pa_request.C,
22767: targets/cgi/parser3.C: z
22768:
22769: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
22770: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h,
22771: types/pa_vstring.h: limits -1
22772:
22773: * src/: include/pa_globals.h, include/pa_request.h,
22774: include/pa_types.h, main/main.dsp, main/pa_globals.C,
22775: main/pa_request.C, targets/cgi/parser3.C,
22776: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h:
22777: request_info -1
22778:
22779: * src/: include/pa_globals.h, main/pa_globals.C,
22780: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
22781: targets/cgi/vform_fields_fill.C, targets/cgi/vform_fields_fill.h:
22782: vform_fields_fill
22783:
22784: * src/targets/cgi/parser3.C: # if MSVC
22785:
22786: * src/: include/pa_common.h, include/pa_types.h, main/pa_request.C,
22787: targets/cgi/parser3.C: PATH_DELIMITER_CHAR
22788:
22789: * src/targets/cgi/parser3.C: z
22790:
22791: * src/: include/core.h, include/pa_globals.h, include/pa_pool.h,
22792: include/pa_string.h, include/pa_types.h, main/compile.y,
22793: main/core.C, main/main.dsp, main/pa_globals.C, main/pa_request.C,
22794: targets/cgi/pa_vform.C, targets/cgi/parser3.C,
22795: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vform.h,
22796: types/pa_vunknown.h: global handler, exceptions in parser3
22797:
22798: 2001-03-13 paf
22799:
22800: * src/: classes/form.C, main/compile.y, main/core.C,
22801: types/pa_value.h, types/pa_vclass.h, types/pa_venv.h,
22802: types/pa_vform.h, types/pa_vstateless_class.C,
22803: types/pa_vstateless_class.h: form:fields removed. use $form.CLASS
22804: instead
22805:
22806: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
22807: main/core.C, main/execute.C, main/main.dsp, main/pa_request.C,
22808: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vform.h:
22809: started cgi target
22810:
22811: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
22812: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C:
22813: before error show with parser
22814:
22815: * src/: classes/_form.h, classes/form.C, include/core.h,
22816: include/pa_request.h, main/core.C, main/pa_request.C,
22817: targets/cgi/parser3.C, targets/cgi/parser3.dsp: z
22818:
22819: * src/targets/cgi/: parser.dsp, parser3.dsp: z
22820:
22821: * src/targets/cgi/: Makefile.am, pa_pool.C, pa_vform.C, parser.dsp,
22822: parser3.C: renamed targets/ parser to cgi
22823:
22824: * src/: classes/double.C, classes/env.C, classes/int.C,
22825: classes/root.C, classes/string.C, classes/table.C,
22826: include/pa_request.h, types/pa_vhash.h: z
22827:
22828: * src/: classes/_env.h, classes/env.C, classes/root.C,
22829: include/core.h, include/pa_pool.h, include/pa_request.h,
22830: main/compile.C, main/compile.y, main/core.C, main/main.dsp,
22831: main/pa_common.C, main/pa_request.C, types/pa_value.h,
22832: types/pa_venv.h, types/pa_vstateless_class.h: started $form:
22833: [historical moment :)]
22834:
22835: * src/: include/code.h, include/pa_string.h, main/compile.y,
22836: main/execute.C, main/pa_string.C: 'value is type' expr operator
22837:
22838: * src/types/pa_venv.h: $ENV 1
22839:
22840: * src/main/execute.C: z
22841:
22842: * src/: main/execute.C, types/pa_value.h, types/pa_venv.h: for
22843: future methods of ENV constructor if
22844:
22845: * src/: include/pa_request.h, types/pa_venv.h: $ENV 0.1 stateless
22846: class
22847:
22848: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
22849: classes/_root.h, classes/_string.h, classes/_table.h,
22850: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
22851: classes/string.C, classes/table.C, include/pa_request.h,
22852: main/compile.C, main/compile_tools.h, main/core.C,
22853: main/execute.C, main/main.dsp, main/pa_request.C,
22854: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
22855: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
22856: types/pa_vobject.h, types/pa_vstateless_class.C,
22857: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
22858: types/pa_wcontext.h: $ENV: re 0, stateless classes
22859:
22860: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
22861: classes/_root.h, classes/_string.h, classes/_table.h,
22862: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
22863: classes/string.C, classes/table.C, include/pa_request.h,
22864: main/compile.C, main/compile_tools.h, main/core.C,
22865: main/execute.C, main/main.dsp, main/pa_request.C,
22866: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
22867: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
22868: types/pa_vobject.h, types/pa_vstateless_class.C,
22869: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
22870: types/pa_wcontext.h: $ENV: re 0, stateless classes
22871:
22872: * src/: include/pa_request.h, main/compile.C, main/execute.C,
22873: main/pa_request.C, types/pa_value.h, types/pa_vmframe.h: fixed
22874: yesterdays bad decision on execute_static_method
22875:
22876: * src/: classes/table.C, include/pa_types.h, main/pa_request.C: z
22877:
22878: * src/: classes/double.C, classes/int.C, classes/root.C,
22879: types/pa_vdouble.h, types/pa_vint.h: Int,Double dec mul div mod
22880:
22881: * src/main/pa_request.C: z
22882:
22883: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
22884: include/pa_pool.h: skipped_restructure_exceptions_dead_end
22885:
22886: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
22887: include/pa_pool.h, main/pa_request.C:
22888: restructure_exceptions_dead_end
22889:
22890: * src/: classes/root.C, main/compile.y: ^if required junctions.
22891: allowed ; inside {} to break params
22892:
22893: * src/classes/root.C: ^eval
22894:
22895: * src/: classes/_string.h, classes/double.C, classes/int.C,
22896: classes/string.C, main/execute.C, types/pa_wcontext.h: int doube
22897: string ^format
22898:
22899: * src/: main/execute.C, types/pa_wcontext.h: constructing flag not
22900: 'bad' but not 'enough'
22901:
22902: * src/: classes/double.C, classes/root.C, classes/table.C,
22903: include/pa_common.h, include/pa_types.h, main/compile.y,
22904: main/pa_common.C, main/pa_request.C, main/untaint.C,
22905: types/pa_vdouble.h, types/pa_vint.h, types/pa_vtable.h,
22906: types/pa_wwrapper.h: think constructing flag as is is bad
22907:
22908: * src/: classes/double.C, classes/int.C, classes/root.C,
22909: classes/string.C, classes/table.C, main/core.C, main/execute.C,
22910: types/pa_vint.h: ^for
22911:
22912: 2001-03-12 paf
22913:
22914: * src/classes/table.C: table ^empty
22915:
22916: * src/: classes/table.C, include/pa_table.h: table ^menu
22917:
22918: * src/: classes/root.C, classes/table.C, types/pa_vtable.h: table
22919: ^offset ^line ^count
22920:
22921: * src/classes/root.C: ^round() ^floor() ^ceiling()
22922: ^abs() ^sign()
22923:
22924: * src/classes/: root.C, table.C: ^use
22925:
22926: * src/: classes/root.C, classes/table.C, include/pa_request.h,
22927: main/compile.y, main/core.C, main/execute.C, types/pa_vclass.h,
22928: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
22929: ^while. switched off wcontext.constructing after write(value) or
22930: auto-vhash-constructing
22931:
22932: * src/: classes/root.C, classes/table.C, include/pa_request.h,
22933: main/pa_request.C: fail_if_junction_ helper func
22934:
22935: * src/: classes/root.C, classes/table.C, include/pa_common.h,
22936: include/pa_request.h, main/execute.C, main/main.dsp,
22937: main/pa_common.C, main/pa_request.C: ^process error point by
22938: actual method_name, not source. ^load
22939:
22940: * src/types/pa_vtable.h: table: no, better with string in cells...
22941:
22942: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C,
22943: classes/_table.h, classes/table.C, main/untaint.C: z
22944:
22945: * src/: classes/root.C, include/pa_common.h, include/pa_string.h,
22946: include/pa_table.h, main/core.C, main/execute.C,
22947: main/pa_common.C, main/pa_request.C, main/pa_table.C,
22948: types/pa_value.h: table:set 0
22949:
22950: * src/: classes/root.C, include/core.h, include/pa_array.h,
22951: include/pa_request.h, include/pa_table.h, main/core.C,
22952: main/main.dsp, main/pa_request.C, main/pa_table.C,
22953: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
22954: types/pa_vdouble.h, types/pa_vint.h, types/pa_vmframe.h,
22955: types/pa_vstring.h: freeze, ^table:create[] -1
22956:
22957: * src/: classes/root.C, types/pa_value.h: z
22958:
22959: * src/: classes/root.C, main/execute.C, types/pa_vclass.h: used
22960: get_method in couple places optimizing them
22961:
22962: * src/classes/root.C: z
22963:
22964: * src/: classes/root.C, types/pa_vclass.h: process temp main
22965: zeroing
22966:
22967: * src/: classes/double.C, classes/int.C, classes/root.C,
22968: classes/string.C, include/pa_common.h, include/pa_request.h,
22969: include/pa_string.h, include/pa_types.h, main/compile.C,
22970: main/compile.y, main/compile_tools.h, main/execute.C,
22971: main/pa_common.C, main/pa_request.C, types/pa_value.h,
22972: types/pa_vmframe.h: ^process. actual names to store param and
22973: check_actual_numbered_params for better place diagnostics
22974:
22975: * src/: classes/root.C, main/execute.C, main/main.dsp: setname for
22976: method-junctions bug fixed
22977:
22978: * src/types/: pa_vdouble.h, pa_vint.h, pa_vobject.h,
22979: pa_vstateless_object.h, pa_vstring.h: stateless_object
22980:
22981: 2001-03-11 paf
22982:
22983: * src/: main/main.dsp, types/pa_value.h, types/pa_vdouble.h,
22984: types/pa_vint.h, types/pa_vobject.h, types/pa_vstring.h: VString
22985: VDouble VInt base now VObject_base - without fields
22986:
22987: * src/: classes/root.C, include/core.h, main/core.C: z
22988:
22989: * src/: classes/double.C, classes/int.C, classes/root.C,
22990: classes/string.C, include/core.h, include/pa_hash.h,
22991: include/pa_pool.h, include/pa_request.h, include/pa_string.h,
22992: main/compile.C, main/core.C, main/pa_request.C: ^untaint 0
22993:
22994: * src/: classes/double.C, classes/int.C, classes/root.C,
22995: include/pa_request.h, main/execute.C: intercept_string
22996:
22997: * src/: classes/double.C, classes/int.C, classes/root.C,
22998: types/pa_vclass.C, types/pa_vclass.h: add_native_method helper
22999:
23000: * src/: classes/double.C, classes/int.C, include/pa_request.h:
23001: ^inc-s(expr)
23002:
23003: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
23004: classes/_root.h, classes/_string.h, classes/double.C,
23005: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
23006: include/code.h, include/core.h, include/pa_array.h,
23007: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
23008: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
23009: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
23010: include/pa_types.h, main/compile.C, main/compile.y,
23011: main/compile_tools.C, main/compile_tools.h, main/core.C,
23012: main/execute.C, main/pa_array.C, main/pa_common.C,
23013: main/pa_exception.C, main/pa_hash.C, main/pa_pool.C,
23014: main/pa_request.C, main/pa_string.C, main/pa_table.C,
23015: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
23016: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
23017: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
23018: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
23019: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
23020: types/pa_wcontext.h, types/pa_wwrapper.h: headers updated
23021:
23022: * src/: main/pa_request.C, types/pa_vhash.h: z
23023:
23024: * src/: include/core.h, include/pa_request.h, main/core.C,
23025: main/main.dsp, main/pa_request.C: renamed AUTO: to MAIN:
23026:
23027: * src/: include/pa_valiased.h, include/pa_value.h,
23028: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
23029: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
23030: include/pa_vjunction.h, include/pa_vmframe.h,
23031: include/pa_vobject.h, include/pa_vstring.h,
23032: include/pa_vunknown.h, include/pa_wcontext.h,
23033: include/pa_wwrapper.h, main/compile.y, main/core.C,
23034: main/main.dsp, main/pa_cframe.C, main/pa_request.C,
23035: main/pa_value.C, main/pa_vclass.C, main/pa_wcontext.C,
23036: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
23037: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
23038: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
23039: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
23040: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
23041: types/pa_wcontext.h, types/pa_wwrapper.h: splitted types from
23042: include/
23043:
23044: 2001-03-10 paf
23045:
23046: * src/: include/core.h, include/pa_request.h, main/core.C,
23047: main/pa_request.C: run+auto=run
23048:
23049: * src/: classes/root.C, include/pa_request.h: minor if junction bug
23050:
23051: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
23052: classes/_root.h, classes/_string.h, classes/double.C,
23053: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
23054: include/code.h, include/core.h, include/pa_array.h,
23055: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
23056: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
23057: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
23058: include/pa_types.h, include/pa_valiased.h, include/pa_value.h,
23059: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
23060: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
23061: include/pa_vjunction.h, include/pa_vmframe.h,
23062: include/pa_vobject.h, include/pa_vstring.h,
23063: include/pa_vunknown.h, include/pa_wcontext.h,
23064: include/pa_wwrapper.h, main/compile.C, main/compile.y,
23065: main/compile_tools.C, main/compile_tools.h, main/core.C,
23066: main/execute.C, main/pa_array.C, main/pa_cframe.C,
23067: main/pa_common.C, main/pa_exception.C, main/pa_hash.C,
23068: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
23069: main/pa_table.C, main/pa_value.C, main/pa_vclass.C,
23070: main/pa_wcontext.C: sources header
23071:
23072: * src/main/pa_request.C: auto..
23073:
23074: * src/: include/pa_request.h, main/compile.C, main/compile.y,
23075: main/pa_request.C: auto tree0
23076:
23077: * src/: include/core.h, include/pa_request.h, main/compile.y,
23078: main/core.C, main/pa_request.C: names to core.C
23079:
23080: * src/: include/core.h, include/pa_common.h, include/pa_pool.h,
23081: include/pa_request.h, main/core.C, main/execute.C,
23082: main/pa_common.C, main/pa_request.C: root auto.p loaded
23083:
23084: * src/: include/code.h, include/pa_request.h, include/pa_vint.h,
23085: include/pa_vjunction.h, include/pa_vstring.h, main/compile.y,
23086: main/compile_tools.C, main/compile_tools.h, main/execute.C:
23087: optimized from OP_STRING+OP_WRITE to OP_STRING__WRITE
23088:
23089: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
23090: @auto[] realised. auto.p scan togo
23091:
23092: * src/: include/pa_request.h, main/execute.C: autocalc
23093: code-junctions result now have names
23094:
23095: * src/: classes/double.C, classes/int.C, classes/root.C,
23096: classes/string.C, include/pa_request.h, include/pa_string.h,
23097: include/pa_wcontext.h, main/compile.y, main/execute.C,
23098: main/pa_string.C, main/pa_wcontext.C: tainting 0
23099:
23100: * src/classes/env.C: env:file/line
23101:
23102: * src/: include/core.h, include/pa_array.h, include/pa_hash.h,
23103: include/pa_request.h, include/pa_value.h, include/pa_vcframe.h,
23104: include/pa_vdouble.h, include/pa_vint.h, include/pa_vstring.h,
23105: include/pa_vunknown.h, include/pa_wcontext.h, main/compile.y,
23106: main/compile_tools.C, main/compile_tools.h, main/core.C,
23107: main/execute.C, main/main.dsp, main/pa_cframe.C,
23108: main/pa_request.C, main/pa_wcontext.C: const fight finished
23109:
23110: * src/include/pa_vclass.h: const fight to go
23111:
23112: * src/: classes/_env.h, classes/env.C, classes/root.C,
23113: include/pa_request.h, include/pa_vclass.h, main/core.C,
23114: main/main.dsp: env0
23115:
23116: * src/: classes/_double.h, classes/_int.h, classes/_root.h,
23117: classes/_string.h, classes/double.C, classes/int.C,
23118: classes/root.C, classes/string.C, include/pa_request.h,
23119: include/pa_string.h, include/pa_types.h, include/pa_vcframe.h,
23120: include/pa_wcontext.h, main/core.C, main/main.dsp,
23121: main/pa_cframe.C, main/pa_string.C, main/pa_vclass.C,
23122: main/pa_wcontext.C: ^lang prepare0
23123:
23124: 2001-03-09 paf
23125:
23126: * src/: include/pa_vmframe.h, main/compile.C, main/execute.C: expr
23127: construct proper naming
23128:
23129: * src/: classes/_double.h, classes/_int.h, classes/_string.h,
23130: classes/double.C, classes/int.C, classes/root.C,
23131: classes/string.C, include/code.h, include/pa_value.h,
23132: include/pa_vbool.h, include/pa_vdouble.h, include/pa_vint.h,
23133: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
23134: main/compile.y, main/compile_tools.C, main/core.C,
23135: main/execute.C, main/main.dsp: Int and Double classes with ^int[]
23136: and ^double[]. fixed expr type
23137:
23138: * src/: classes/root.C, include/pa_request.h, main/execute.C:
23139: ^string.length[]
23140:
23141: 2001-03-08 paf
23142:
23143: * src/include/pa_vmframe.h: fixed forgotten method_frame my check
23144:
23145: * src/: include/pa_vclass.h, include/pa_vstring.h,
23146: include/pa_wcontext.h, main/compile.y, main/core.C,
23147: main/execute.C, main/main.dsp: dead end: vstring can't be
23148: derivated from vobject
23149:
23150: * src/: include/pa_vclass.h, include/pa_vhash.h,
23151: include/pa_vobject.h, include/pa_vstring.h, main/main.dsp: z
23152:
23153: * src/include/: pa_vclass.h, pa_vhash.h, pa_vobject.h: removes some
23154: remained clone conseqs
23155:
23156: * src/main/pa_vclass.C: that were ok... [vclass were out of vcs]
23157:
23158: * src/main/pa_vclass.C: wow! vclass were out of vcs
23159:
23160: * src/: include/pa_bool.h, include/pa_double.h, include/pa_value.h,
23161: include/pa_vbool.h, include/pa_vclass.h, include/pa_vdouble.h,
23162: include/pa_vhash.h, include/pa_vjunction.h, include/pa_vmframe.h,
23163: include/pa_vobject.h, include/pa_vstring.h,
23164: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
23165: main/execute.C: withoud cloning. didn't need it actually, params
23166: got passed from out unnamed ewpool
23167:
23168: * src/: include/pa_vdouble.h, include/pa_vhash.h,
23169: include/pa_vjunction.h, include/pa_vobject.h,
23170: include/pa_vunknown.h, main/compile.y: cloning dead end
23171:
23172: * src/: include/pa_bool.h, include/pa_double.h,
23173: include/pa_valiased.h, include/pa_value.h, include/pa_vbool.h,
23174: include/pa_vclass.h, include/pa_vdouble.h, include/pa_vhash.h,
23175: include/pa_vjunction.h, include/pa_vmframe.h,
23176: include/pa_vobject.h, include/pa_vstring.h,
23177: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
23178: main/execute.C, main/main.dsp, main/pa_value.C: value.cloning so
23179: to give params proper names
23180:
23181: * src/main/pa_wcontext.C: z
23182:
23183: * src/: include/pa_vmframe.h, main/execute.C: added names to
23184: unknown values in get_element and unfilled params. removed wrong
23185: name change in get_element
23186:
23187: * src/main/execute.C: z
23188:
23189: * src/main/execute.C: fixed problems calling operators in
23190: constructors
23191:
23192: * src/: classes/root.C, include/pa_stack.h, main/execute.C:
23193: detected problems calling operators in constructors
23194:
23195: * src/: classes/root.C, include/pa_request.h, main/execute.C:
23196: autocalc def to string
23197:
23198: * src/: classes/root.C, include/pa_request.h, include/pa_value.h,
23199: include/pa_vbool.h, include/pa_wwrapper.h, main/execute.C: ^if 0
23200:
23201: * src/classes/root.C: added root.c
23202:
23203: * src/: include/pa_request.h, include/pa_value.h,
23204: include/pa_vcframe.h, include/pa_vmframe.h,
23205: include/pa_wcontext.h, main/compile.C, main/compile.y,
23206: main/core.C, main/execute.C, main/pa_cframe.C,
23207: main/pa_wcontext.C: 'if' just compiled
23208:
23209: * src/: include/pa_vbool.h, include/pa_vdouble.h,
23210: include/pa_vjunction.h, include/pa_vmframe.h,
23211: include/pa_vstring.h, include/pa_wcontext.h, main/execute.C,
23212: main/pa_wcontext.C: z
23213:
23214: * src/: include/pa_value.h, include/pa_vmframe.h, main/compile.y,
23215: main/core.C, main/execute.C, main/main.dsp: z. detected probs
23216: with parameter names in operator methods
23217:
23218: * src/main/compile.y: minor renamings in .y
23219:
23220: * src/: include/pa_request.h, main/compile.C, main/compile.y,
23221: main/core.C, main/main.dsp: introducing ROOT_CLASS. it's default
23222: @BASE. changed 'RUN' assignment mech
23223:
23224: * src/main/execute.C: z
23225:
23226: * src/: include/code.h, main/compile.y, main/compile_tools.C,
23227: main/compile_tools.h, main/execute.C: made class: dynamic, not
23228: static. so to enable runtime ^use
23229:
23230: * src/main/compile.y: minor grammar bug with OP_CODE__STORE_PARAM
23231:
23232: * src/: include/code.h, main/compile.y, main/compile_tools.C,
23233: main/execute.C: joined 2 into one OP_CODE__STORE_PARAM
23234:
23235: * src/main/execute.C: root root in code-junction
23236:
23237: 2001-03-07 paf
23238:
23239: * src/include/: pa_value.h, pa_vclass.h, pa_vhash.h, pa_vmframe.h,
23240: pa_vobject.h, pa_wwrapper.h: const in Value.get_element
23241:
23242: * src/: include/pa_stack.h, include/pa_value.h,
23243: include/pa_vclass.h, include/pa_vhash.h, include/pa_vmframe.h,
23244: include/pa_vobject.h, include/pa_wwrapper.h, main/execute.C:
23245: fixed rwcontext of {} params up
23246:
23247: * src/main/: compile.y, compile_tools.h: ^func(params)
23248:
23249: * src/main/compile.y: .y priorities syntax shaped up a bit
23250:
23251: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vhash.h,
23252: include/pa_vunknown.h, main/compile.y, main/execute.C,
23253: main/pa_hash.C: expr def in -f
23254:
23255: * src/main/: compile.y, execute.C: expr calls
23256:
23257: * src/main/: compile.y, execute.C, pa_string.C: bug in string.cmp
23258: fixed
23259:
23260: * src/main/compile.y: expr quoted code
23261:
23262: * src/main/: compile.y, execute.C: expr whitespace solved. added ""
23263: support0
23264:
23265: * src/main/compile.y: expr string comparisons 0
23266:
23267: * src/: include/pa_string.h, main/compile.y, main/execute.C,
23268: main/pa_string.C: just compiled lt&co
23269:
23270: * src/main/execute.C: ^var.menu{$field} problem detected. that
23271: $field not a $var.field
23272:
23273: 2001-03-06 paf
23274:
23275: * src/main/compile.y: .y expr visible-shorter
23276:
23277: * src/: include/code.h, main/compile.y, main/execute.C: 1 problems
23278: with skipping whitespace in yylex fixed 2 xors: # bitwise ##
23279: logical
23280:
23281: * src/: include/pa_vstring.h, main/compile.y: problems with
23282: skipping whitespace in yylex
23283:
23284: * src/include/pa_vbool.h: forgot this
23285:
23286: * src/: include/code.h, main/compile.y, main/execute.C: without
23287: string ops in expressions 0
23288:
23289: * src/: include/pa_value.h, include/pa_vdouble.h,
23290: include/pa_vstring.h, include/pa_vunknown.h, main/compile.y,
23291: main/execute.C, main/main.dsp: !~
23292:
23293: * src/: include/pa_vcframe.h, include/pa_vclass.h,
23294: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vjunction.h,
23295: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
23296: include/pa_vunknown.h, include/pa_wcontext.h,
23297: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
23298: main/compile_tools.h, main/execute.C: +-*/
23299:
23300: * src/: include/pa_vdouble.h, main/compile.y, main/compile_tools.C,
23301: main/compile_tools.h: grammar-1.1 $a(z) $a=0
23302:
23303: * src/: include/pa_value.h, include/pa_vdouble.h, main/compile.y,
23304: main/execute.C: expr grammar-1 2*2=4.000000 :)
23305:
23306: * src/main/compile.y: expr grammar-1
23307:
23308: * src/main/compile.y: expr lexx1
23309:
23310: * src/main/: compile.y, execute.C, main.dsp: z
23311:
23312: * src/: include/code.h, include/pa_valiased.h, include/pa_value.h,
23313: include/pa_vdouble.h, include/pa_vstring.h, main/compile.y,
23314: main/execute.C: expr lex0 exec-1
23315:
23316: * src/: include/code.h, main/compile.y, main/compile_tools.h: g
23317:
23318: 2001-02-26 paf
23319:
23320: * src/main/compile.y: max_string in yyerror bug fix
23321:
23322: 2001-02-25 paf
23323:
23324: * src/: include/pa_value.h, include/pa_vmframe.h,
23325: include/pa_wcontext.h, main/execute.C: VAliased3
23326:
23327: * src/include/: pa_value.h, pa_vmframe.h: VAliased2
23328:
23329: * src/main/execute.C: VAliased1
23330:
23331: * src/: include/pa_request.h, include/pa_value.h,
23332: include/pa_vmframe.h, include/pa_wcontext.h, main/execute.C:
23333: VAliased0
23334:
23335: * src/: include/pa_pool.h, include/pa_request.h,
23336: include/pa_value.h, include/pa_vclass.h, include/pa_vmframe.h,
23337: include/pa_vobject.h, main/core.C, main/execute.C, main/main.dsp:
23338: VAliased just compiled
23339:
23340: * src/: include/pa_pool.h, include/pa_value.h, include/pa_vclass.h,
23341: include/pa_vobject.h, main/execute.C: alias dead end
23342:
23343: * src/: include/pa_value.h, include/pa_vclass.h,
23344: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
23345: main/main.dsp: no not get fields into interm VFielded class.
23346: fields & staticfields 1
23347:
23348: * src/: include/pa_vcframe.h, include/pa_vmframe.h,
23349: include/pa_vobject.h, include/pa_wcontext.h,
23350: include/pa_wwrapper.h, main/core.C, main/execute.C,
23351: main/main.dsp: would now get fields into interm VFielded class
23352:
23353: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
23354: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
23355: include/pa_wcontext.h, main/compile.y, main/core.C,
23356: main/execute.C, main/main.dsp, main/pa_hash.C, main/pa_value.C,
23357: main/pa_wcontext.C: virtuals2
23358:
23359: * src/main/compile.y: : 1
23360:
23361: * src/main/compile.y: rethought to $class:static.field.subfield
23362:
23363: * src/: include/pa_vclass.h, main/compile.y, main/execute.C:
23364: $class:element
23365:
23366: * src/: include/pa_value.h, include/pa_vmframe.h,
23367: include/pa_wwrapper.h, main/compile.y, main/execute.C,
23368: main/pa_wcontext.C: before execute class calls rewrite
23369:
23370: * src/: include/pa_request.h, main/compile.C, main/core.C: default
23371: name RUN, also alias
23372:
23373: * src/main/compile.y: escaping bug
23374:
23375: * src/: include/pa_request.h, include/pa_value.h,
23376: include/pa_vobject.h, main/compile.y, main/compile_tools.h,
23377: main/core.C, main/execute.C, main/pa_common.C: vobject1
23378:
23379: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
23380: include/pa_vmframe.h, include/pa_vobject.h,
23381: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
23382: main/compile_tools.h, main/execute.C: ^class:method() just
23383: compiled
23384:
23385: 2001-02-24 paf
23386:
23387: * src/main/main.dsp: no bison -d
23388:
23389: * src/main/: compile.y, compile_tools.h: use0 line no on 'undef
23390: class' err msg wrong
23391:
23392: * src/main/compile.y: z
23393:
23394: * src/main/: compile.y, core.C: yylex need some @special lines adj
23395:
23396: * src/: include/pa_request.h, include/pa_vclass.h, main/compile.C,
23397: main/compile.y, main/compile_tools.h, main/core.C: modules0
23398:
23399: * src/: include/pa_vclass.h, main/core.C: z
23400:
23401: * src/: include/pa_value.h, include/pa_vclass.h,
23402: include/pa_vobject.h, main/main.dsp: vobject00
23403:
23404: * src/main/pa_array.C: minor bug in expanding very small arrays.
23405: 60% from 1 were 0
23406:
23407: * src/: include/pa_value.h, include/pa_wcontext.h,
23408: include/pa_wwrapper.h, main/execute.C, main/pa_value.C: it works
23409: as bad as you've named it: wcontext.value() was not a perfect
23410: idea
23411:
23412: * src/main/execute.C: codeframe1
23413:
23414: * src/: include/pa_value.h, include/pa_vcframe.h,
23415: include/pa_vclass.h, include/pa_vframe.h, include/pa_vhash.h,
23416: include/pa_vjunction.h, include/pa_vmframe.h,
23417: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
23418: main/main.dsp, main/pa_cframe.C, main/pa_wcontext.C: codeframe
23419: just compiled
23420:
23421: * src/: include/pa_vframe.h, main/compile.y: found junction
23422: ideology @: ^x{$a()) must construct current wcontext element, so
23423: smart wcontext handling needed
23424:
23425: * src/main/compile.y: fixed grammar bugs in constructor/params
23426: klinch
23427:
23428: * src/main/: compile.y, execute.C: fixed empty constructor
23429: optimized empty case. failed on calls - produced empty string
23430: param
23431:
23432: * src/main/compile.y: fixed last \n macrotemplate strip bug
23433:
23434: * src/: include/code.h, include/pa_request.h, include/pa_value.h,
23435: include/pa_vclass.h, include/pa_vframe.h, main/compile.y,
23436: main/compile_tools.C, main/compile_tools.h, main/core.C,
23437: main/execute.C: code junctions0. something wrong with last \n
23438: macrotemplate strip
23439:
23440: * src/: include/pa_value.h, main/compile.C, main/core.C,
23441: main/pa_value.C: minor error reporting format beautifyings
23442:
23443: * src/: include/pa_value.h, include/pa_vclass.h,
23444: include/pa_vframe.h, main/core.C, main/execute.C,
23445: main/pa_value.C: get_method RIP. junctions everywhere. call with
23446: junctions0
23447:
23448: 2001-02-23 paf
23449:
23450: * src/include/: pa_value.h, pa_vclass.h, pa_vframe.h,
23451: pa_wwrapper.h: lara came, can't work, sorry :(
23452:
23453: * src/main/: compile.y, execute.C, main.dsp: rethought some. before
23454: junction
23455:
23456: * src/: include/pa_vframe.h, include/pa_vunknown.h,
23457: include/pa_wcontext.h, include/pa_wwrapper.h, main/core.C,
23458: main/execute.C, main/main.dsp, main/pa_value.C: call0
23459:
23460: * src/: include/pa_hash.h, include/pa_value.h,
23461: include/pa_wcontext.h, main/core.C, main/execute.C,
23462: main/main.dsp, main/pa_hash.C: started call. store param, vframe
23463: done
23464:
23465: * src/include/pa_wcontext.h: z
23466:
23467: * src/main/: compile.y, compile_tools.C, compile_tools.h: fixed
23468: wrong grammar in complex constructor case
23469:
23470: * src/main/: compile.y, execute.C: empty constructor bug fixed
23471:
23472: * src/main/execute.C: with result rwpool
23473:
23474: * src/: include/pa_value.h, main/core.C, main/execute.C,
23475: main/main.dsp: value named
23476:
23477: * src/: include/pa_value.h, include/pa_vstring.h, main/execute.C:
23478: strign 2 value in 2 places in execute
23479:
23480: * src/: include/pa_value.h, include/pa_wcontext.h, main/compile.y,
23481: main/execute.C, main/main.dsp, main/pa_array.C: auto VHash on
23482: wcontext.put_element when wcontext fvalue==0
23483:
23484: 2001-02-22 paf
23485:
23486: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
23487: include/pa_vhash.h, include/pa_vstring.h, include/pa_wcontext.h,
23488: main/execute.C, main/main.dsp: auto VHash in pa.th.cre.at.e
23489:
23490: * src/: include/pa_wcontext.h, main/compile.y, main/execute.C:
23491: erroreos checkout
23492:
23493: * src/: include/pa_request.h, main/compile.y: $self.put(val)
23494:
23495: * src/: include/pa_array.h, main/compile.y, main/compile_tools.C,
23496: main/compile_tools.h, main/pa_array.C: $self.get
23497:
23498: * src/main/: compile.C, compile.y, compile_tools.C: z
23499:
23500: * src/main/compile.y: $: wasn't finished - $:sdf(sdf) troubled a
23501: bit. finished now.
23502:
23503: * src/main/compile.y: $: finished
23504:
23505: * src/main/: compile.C, compile.y, execute.C: started : with $a.$:f
23506:
23507: * src/: include/code.h, main/compile_tools.C, main/compile_tools.h,
23508: main/execute.C: OP_STRING better then some xxx _VALUE
23509:
23510: * src/: include/code.h, include/pa_vstring.h, main/compile.y,
23511: main/compile_tools.C, main/compile_tools.h, main/execute.C:
23512: string to vstring it .y all
23513:
23514: * src/: include/pa_request.h, include/pa_stack.h,
23515: include/pa_wcontext.h, main/execute.C: z about to vstring it .y
23516: all
23517:
23518: * src/main/: compile.C, core.C, execute.C, pa_string.C: more
23519: precise parse error line:col
23520:
23521: * src/: include/pa_pool.h, include/pa_vclass.h, main/core.C,
23522: main/pa_hash.C, main/pa_pool.C: TRY...
23523:
23524: * src/: include/pa_exception.h, include/pa_pool.h,
23525: include/pa_request.h, include/pa_value.h, include/pa_wcontext.h,
23526: main/compile.C, main/compile.y, main/compile_tools.C,
23527: main/core.C, main/pa_array.C, main/pa_exception.C,
23528: main/pa_hash.C, main/pa_pool.C, main/pa_string.C,
23529: main/pa_table.C: removed exception from request
23530:
23531: * src/: include/pa_vstring.h, main/compile.C, main/core.C: added
23532: some forgotten
23533:
23534: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
23535: include/pa_wcontext.h, main/compile.y, main/compile_tools.C,
23536: main/compile_tools.h, main/execute.C, main/main.dsp: iiieeyys!
23537: get/put simple vars to VClass works0
23538:
23539: * src/: include/pa_array.h, include/pa_wcontext.h,
23540: main/pa_string.C: in process, but found that exceptions are too
23541: global
23542:
23543: * src/: include/code.h, include/pa_string.h, include/pa_value.h,
23544: include/pa_vclass.h, include/pa_wcontext.h, main/compile.y,
23545: main/execute.C, main/pa_string.C: write_value write_string 0 it
23546: seems wcontext must write strings regardles of fvalue!=0
23547:
23548: 2001-02-21 paf
23549:
23550: * src/main/execute.C: tired :)
23551:
23552: * src/main/: compile.C, compile.y, execute.C: store0
23553:
23554: * src/: include/compile.h, include/execute.h, include/pa_array.h,
23555: include/pa_request.h, include/pa_stack.h, include/pa_vclass.h,
23556: include/pa_wcontext.h, main/compile.C, main/compile.y,
23557: main/execute.C, main/main.dsp, main/pa_array.C,
23558: main/pa_request.C: get put -1 [just compiled]
23559:
23560: * src/: include/core.h, include/pa_context.h, include/pa_request.h,
23561: include/pa_vclass.h, include/pa_wcontext.h, main/core.C,
23562: main/main.dsp, main/pa_request.C: request core methods0
23563:
23564: * src/: include/compile.h, include/pa_array.h, main/compile.C,
23565: main/compile.y, main/execute.C: MAIN_METHOD_NAME ready to write
23566: execute
23567:
23568: * src/: include/pa_exception.h, include/pa_value.h, main/compile.C,
23569: main/compile.y, main/compile_tools.C, main/compile_tools.h: .y
23570: methods and one_big_piece. now compile returns array<method*>
23571:
23572: * src/main/compile.y: more straightforward yylex[end]
23573:
23574: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
23575: string.operator==(char*)
23576:
23577: * src/: include/execute.h, include/pa_array.h, include/pa_value.h,
23578: main/execute.C, main/pa_array.C: after array.const get wonders
23579:
23580: * src/include/: compile.h, pa_context.h, pa_hash.h, pa_request.h,
23581: pa_string.h, pa_value.h: struck with const array.gets
23582:
23583: * src/main/: execute.C: z
23584:
23585: * src/main/: compile.y, execute.C: z
23586:
23587: * src/main/: compile.C, compile.y, compile_tools.h: error
23588: processing in eval & yyerror so it wouldn't cause memleaks.
23589:
23590: * src/main/: compile.C, compile.y: failed to add absolute precies
23591: parse error positions. leaving RIGHTMOST position as
23592: @file[line:col]
23593:
23594: * src/: include/compile.h, main/compile.C, main/compile.y,
23595: main/compile_tools.h: line numbers needed. would add them to .y
23596: now internally. externally it's not as precise as needed
23597:
23598: * src/: include/code.h, include/pa_types.h, main/compile.C,
23599: main/compile.y, main/compile_tools.C, main/compile_tools.h,
23600: main/execute.C, main/main.dsp: .y to c++ hierarchy output fix.
23601: compiler works ok
23602:
23603: 2001-02-20 paf
23604:
23605: * src/main/: compile.C, compile.y, compile_tools.C,
23606: compile_tools.h, execute.C, main.dsp: nestage probs, eof yylex
23607: not perfect
23608:
23609: * src/: include/code.h, include/compile.h, include/execute.h,
23610: include/pa_array.h, include/pa_common.h, include/pa_pool.h,
23611: include/pa_string.h, include/pa_table.h, include/pa_types.h,
23612: main/compile.C, main/compile.y, main/compile_tools.C,
23613: main/compile_tools.h, main/core.C, main/execute.C, main/main.dsp,
23614: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
23615: main/pa_string.C, main/pa_table.C: bison[yacc] first time
23616: compiled. execute=dump for now
23617:
23618: * src/main/core.C: core rewrite using yacc investigations now will
23619: be compile[yacc]/execute[opcodes]
23620:
23621: 2001-02-15 paf
23622:
23623: * src/: include/pa_value.h, main/core.C: maybe a-la yacc those ifs
23624: rewrite as turing machine? for it seems it would be it's too many
23625: ifs with this syntax now
23626:
23627: 2001-02-14 paf
23628:
23629: * src/main/core.C: get_params 1
23630:
23631: * src/main/core.C: get_params figured ^menu[UNEVALUATED unthinked
23632: :( ]
23633:
23634: * src/main/core.C: varios breaks
23635:
23636: * src/main/core.C: get names 3
23637:
23638: * src/main/core.C: get names 2
23639:
23640: * src/main/core.C: get names 1
23641:
23642: * src/: include/pa_string.h, main/core.C, main/pa_string.C: get
23643: names 0
23644:
23645: * src/: include/pa_value.h, main/core.C, main/pa_string.C: process
23646: text repassing2 operator static vars
23647:
23648: * src/: include/pa_context.h, include/pa_string.h, main/core.C,
23649: main/pa_string.C: process text repassing
23650:
23651: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
23652: module:calls changes
23653:
23654: 2001-02-13 paf
23655:
23656: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
23657: ^class:calls[] started
23658:
23659: * src/: include/pa_value.h, main/core.C: z
23660:
23661: * src/main/core.C: operators : and self. prefixes
23662:
23663: * src/main/core.C: z
23664:
23665: * src/: include/pa_string.h, main/pa_string.C: String_iterator
23666: tested
23667:
23668: * src/: include/pa_string.h, main/pa_string.C: String_iterator
23669: optimized
23670:
23671: * src/main/pa_string.C: String_iterator::skip_to optimized a bit.
23672: would change privates to better support optimization
23673:
23674: * src/: include/pa_string.h, main/pa_string.C:
23675: String_iterator::skip_to todo:optimize
23676:
23677: 2001-02-12 paf
23678:
23679: * src/: include/pa_string.h, main/core.C, main/pa_string.C: started
23680: String_iterator
23681:
23682: * src/: include/pa_context.h, include/pa_value.h, main/core.C: some
23683: comments
23684:
23685: * src/: include/pa_context.h, include/pa_value.h, main/core.C: get
23686: self/methodref joined
23687:
23688: 2001-02-11 paf
23689:
23690: * src/: include/pa_context.h, include/pa_value.h, main/core.C,
23691: main/main.dsp: core started. core.C, context&value .h
23692:
23693: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
23694: include/pa_string.h, main/main.dsp, main/pa_array.C,
23695: main/pa_hash.C, main/pa_pool.C, main/pa_string.C: :pooled
23696:
23697: 2001-01-30 paf
23698:
23699: * src/: Makefile.am, main/Makefile.am, targets/Makefile.am: .am
23700: comments
23701:
23702: * src/: include/pa_pool.h, main/Makefile.am, main/main.dsp,
23703: main/pa_pool.C: moved pa_pool.C to be target specific
23704:
23705: * src/: include/pa_exception.h, include/pa_pool.h,
23706: include/pa_table.h, main/pa_exception.C, main/pa_table.C: minor *
23707: to & changes
23708:
23709: * src/: include/pa_exception.h, include/pa_pool.h,
23710: include/pa_request.h, include/pa_table.h, main/pa_array.C,
23711: main/pa_exception.C, main/pa_pool.C, main/pa_table.C: error
23712: re-associated. that's much better even removed 'die' necessety
23713:
23714: * src/: include/pa_error.h, include/pa_exception.h,
23715: include/pa_pool.h, include/pa_request.h, main/main.dsp,
23716: main/pa_error.C, main/pa_exception.C, main/pa_pool.C,
23717: targets/Makefile.am: lowered targets/parser into subdir, added
23718: parser_Pool(Pool) failed to add. would think..
23719:
23720: * src/: include/pa_error.h, include/pa_hash.h, include/pa_string.h,
23721: include/pa_table.h, main/pa_error.C, main/pa_hash.C,
23722: main/pa_string.C, main/pa_table.C: Table more like C++ style
23723: hence lots of 'const'
23724:
23725: * src/: include/pa_error.h, include/pa_request.h,
23726: include/pa_string.h, include/pa_table.h, main/pa_error.C,
23727: main/pa_table.C: Error fixed
23728:
23729: 2001-01-29 paf
23730:
23731: * src/: include/pa_array.h, include/pa_common.h,
23732: include/pa_error.h, include/pa_hash.h, include/pa_pool.h,
23733: include/pa_request.h, include/pa_string.h, include/pa_table.h,
23734: main/Makefile.am, main/pa_array.C, main/pa_common.C,
23735: main/pa_error.C, main/pa_hash.C, main/pa_table.C: added forgotten
23736:
23737: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
23738: include/pa_string.h, include/pa_table.h, include/pa_types.h,
23739: main/Makefile.am, main/main.dsp, main/pa_array.C, main/pa_hash.C,
23740: main/pa_string.C, main/pa_table.C: Request Error Table
23741:
23742: * src/: include/pa_pool.h, main/pa_array.C: tested - decision "no
23743: templates"
23744:
23745: * src/: include/pa_array.h, include/pa_pool.h, main/Makefile.am,
23746: main/main.dsp, main/pa_array.C: templates failed no template
23747: specializations [VC6], no library auto instantation [VC6, GNU c++
23748: 2.95.2-6 from latest cygwin]
23749:
23750: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
23751: include/pa_string.h, include/pa_table.h, include/pa_types.h,
23752: main/main.dsp, main/pa_array.C, main/pa_string.C,
23753: main/pa_table.C: Table started would test template Array now
23754:
23755: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
23756: String originating
23757:
23758: * src/: include/pa_hash.h, include/pa_pool.h, include/pa_threads.h,
23759: main/pa_hash.C: made local Hash-es not thread safe=quicker by
23760: SYNCHRONIZED(thread_safe)
23761:
23762: * src/include/: pa_array.h, pa_hash.h, pa_string.h: moved .h public
23763: parts to top
23764:
23765: * src/: include/pa_hash.h, include/pa_threads.h, main/pa_hash.C,
23766: main/pa_threads.C: decided on one global_mutex, like PHP as I can
23767: see: needed only in global Hash now, made Hash:: put/get
23768: SYNCHRONIZED
23769:
23770: * src/: include/pa_hash.h, include/pa_threads.h, main/main.dsp,
23771: main/pa_threads.C: added pa_threads
23772:
23773: Mutex
23774:
23775: * src/include/pa_hash.h: some comments
23776:
23777: * src/: main/pa_array.C, include/pa_array.h, include/pa_pool.h:
23778: Array& operator += (Array& src)
23779:
23780: * src/main/pa_array.C: expand not convinient, would rewrite
23781:
23782: * src/: include/pa_array.h, main/pa_array.C: Array::operator +=
23783: (Array& src)
23784:
23785: rethought, would change now
23786:
23787: 2001-01-27 paf
23788:
23789: * src/: include/pa_array.h, main/pa_array.C: array [] with chunk
23790: caching
23791:
23792: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
23793: include/pa_string.h, main/pa_array.C, main/pa_string.C: array
23794: cache rethought to chunk caching
23795:
23796: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
23797: include/pa_string.h, main/main.dsp, main/pa_array.C,
23798: main/pa_hash.C, main/pa_string.C: Array 0
23799:
23800: * src/main/pa_string.C: String::operator ==
23801:
23802: * src/main/pa_hash.C: String(&String)
23803:
23804: * src/main/pa_hash.C: added pa_hash.C [forgotten]
23805:
23806: * src/: include/pa_hash.h, include/pa_string.h, include/pa_types.h,
23807: main/main.dsp, main/pa_string.C: uint, and added pa_types &
23808: pa_hash[forgotten]
23809:
23810: 2001-01-26 paf
23811:
23812: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
23813: removed templates [vc++ suxx]
23814:
23815: * src/: include/pa_pool.h, include/pa_string.h, main/main.dsp,
23816: main/pa_pool.C, main/pa_string.C: templates in VC++ suxx.
23817:
23818: * src/include/: pa_pool.h, pa_string.h: pa_pool split
23819:
1.119 moko 23820: * src/main/: main.dsp, pa_string.C: Id check
1.95 moko 23821:
1.119 moko 23822: * src/: main/pa_pool.C, main/pa_string.C, include/pa_pool.h: Id
1.95 moko 23823: check
23824:
23825: * src/: include/pa_pool.h, main/pa_string.C: String prealloc &
23826: dynamic row_count
23827:
23828: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
23829: main/main.dsp, main/pa_pool.C, main/pa_string.C,
23830: targets/Makefile.am: Initial revision
23831:
23832: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
23833: main/main.dsp, main/pa_pool.C, main/pa_string.C,
23834: targets/Makefile.am: creating parser3 module
23835:
E-mail: