Annotation of parser3/ChangeLog, revision 1.129
1.129 ! moko 1: 2019-12-09 moko
! 2:
! 3: * src/include/pa_config_fixed.h: warning war
! 4:
1.128 moko 5: 2019-12-08 moko
6:
7: * src/main/main.vcproj: compile.y - ExcludedFromBuild, as we
8: process grammar under Unix.
9:
10: 2019-12-07 moko
11:
12: * tests/389.html: For Windows XP. :)
13:
14: * tests/388-sql.html: Windows compatibility added
15:
16: 2019-12-06 moko
17:
18: * src/targets/cgi/parser3.C: warning war
19:
20: * src/main/pa_string.C: + COMPILE_ASSERT(sizeof(String::Languages)
21: == sizeof(CORD)) to avoid aligning bugs in future
22:
23: * src/: include/pa_config_fixed.h, main/pa_globals.C: simplified to
24: XML_STATIC
25:
26: * src/include/pa_request.h: StackItem() not required
27:
28: * src/include/pa_stack.h: warning war
29:
30: * src/include/pa_config_includes.h: GCC warning silenced
31:
32: * src/include/pa_memory.h: warning war: the program should also
33: define 'void operator delete [](void*, std::size_t)'
34: [-Wsized-deallocation]
35:
36: * src/types/: pa_vregex.h, pa_vtable.h: warning war
37:
38: * src/classes/string.C: not reqired cast removed
39:
40: * src/classes/string.C: not reqired cast removed
41:
42: 2019-12-05 moko
43:
44: * src/lib/sdbm/pa_file_io.C: warning war
45:
46: * src/include/pa_string.h: bugfix for Windows x64: enum Language ->
47: enum Language : size_t - required for VS2015+ to make
48: sizeof(Languages::opt) == sizeof(CORD), will be 16 byte under x64
49: without it (related to feature #1198)
50:
51: 2019-12-04 moko
52:
53: * src/main/pa_base64.C: unsigned char -> uchar
54:
55: * src/main/: main.vcproj, pa_globals.C: libpcre now linked same way
56: as other libs
57:
58: * src/include/pa_version.h: +amd64
59:
60: 2019-12-03 moko
61:
62: * src/: classes/classes.vcproj, types/types.vcproj: sync debug with
63: release
64:
65: * src/include/pa_config_includes.h: warning war
66:
67: * src/classes/image.C: warning war
68:
69: * src/main/pa_globals.C: x64 libs support
70:
71: * src/include/pa_config_includes.h: warning war
72:
73: * src/types/pa_method.h: warning war
74:
1.127 moko 75: 2019-11-28 moko
76:
77: * src/classes/math.C: vs2003 compatibility + warning war
78:
79: * buildall: libxslt-1.1.29 -> libxslt-1.1.34, libxml2-2.9.4 ->
80: libxml2-2.9.9 (related to feature #1136)
81:
82: * src/classes/xdoc.C: xmlHashScanner declaration changed, using
83: typecast for more compatibility (related to feature #1136)
84:
85: * buildall: --direct-download option added, gc-7.6.2 -> gc-8.0.4 +
86: libatomic no longer required, pcre-8.40 -> pcre-8.43 (related to
87: feature #1136)
88:
89: 2019-11-26 moko
90:
91: * src/main/: compile_tools.C, compile_tools.h: invalid assert
92: removed (it was failing in $$var case), condition added
93:
1.126 moko 94: 2019-11-25 moko
95:
96: * tests/: 397.html, 399.html, results/141.processed,
97: results/399.processed: base64 options tested
98:
99: * src/: classes/math.C, main/pa_http.C: base64 options used
100:
101: * src/main/pa_base64.C: base64 encode rewritten, base64 options
102: implemented (feature #986)
103:
104: * src/main/pa_cache_managers.C: whitespace
105:
106: * tests/: 397.html, 399.html, results/399.processed: tests for
107: ^base64 encode options added (related to feature #986)
108:
109: * src/: classes/file.C, include/pa_base64.h, main/pa_base64.C:
110: pa_base64_encode(file) removed - more memory, but faster and less
111: code (related fo feature #986)
112:
113: 2019-11-24 moko
114:
115: * tests/: 155.html, results/155.processed: limit and offset in
116: ^table::load[] now supported, thus test added
117:
118: * src/: classes/file.C, classes/table.C, include/pa_common.h,
119: main/pa_common.C: optimization: offset and limit options parsing
120: moved inside file_load.
121:
122: 2019-11-23 moko
123:
124: * src/: classes/file.C, classes/op.C, include/pa_common.h,
125: main/pa_common.C, main/pa_request.C, types/pa_vform.C:
126: optimization: file_read replaced with simplified file_read_binary
127:
128: * src/: classes/op.C, main/pa_common.C, main/pa_request.C,
129: types/pa_vform.C: whitespace
130:
131: * src/: include/pa_common.h, main/pa_common.C: never used params
132: removed
133:
134: 2019-11-21 moko
135:
136: * tests/: 193.html, results/193.processed, results/389.processed:
137: test results updated as now base64 does not discard tail without
138: padding (related to feature #986)
139:
140: 2019-11-20 moko
141:
142: * src/: classes/file.C, classes/string.C, include/pa_base64.h,
143: main/pa_base64.C: optimization: void pa_base64_decode -> size_t
144: pa_base64_decode (related to feature #986)
145:
146: * tests/398.html: tests for base64 decode added (related to feature
147: #986)
148:
149: * src/main/pa_base64.C: base64_decode rewritten - padding option
150: support, padding inside base 64 supported (related to feature
151: #096)
152:
153: 2019-11-19 moko
154:
155: * src/include/pa_memory.h: CHECK_DELETE_USAGE tested to work under
156: FreeBSD 12
157:
1.125 moko 158: 2019-11-16 moko
159:
160: * src/main/pa_base64.C: base64_decode converted to C++, url-safe
161: support added, step support removed (related to #986)
162:
163: 2019-11-15 moko
164:
165: * src/classes/math.C: using log since log2 is not present on
166: FreeBSD < 8.4 (related to feature #1177)
167:
168: * src/: include/pa_base64.h, main/pa_base64.C: whitespace,
169: pa_base64_size extracted and used for files as well (related to
170: feature 986)
171:
172: 2019-11-14 moko
173:
174: * tests/: 397.html, results/397.processed: + content check
175:
176: * tests/: 141.html, results/141.processed: make test resuls more
177: readable
178:
179: * tests/: 397.html, results/193.processed, results/397.processed:
180: test results updated after \x00 character was disabled in
181: math:convert string mode (related to feature #1177)
182:
183: * src/classes/: math.C, string.C: \\x00 character disabled while
184: converting to string (as in base64, related to feature #1177)
185:
186: * src/classes/file.C: more correct arguments separation
187:
188: * src/: classes/file.C, classes/math.C, classes/string.C,
189: include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
190: main/pa_http.C, types/pa_vfile.C, types/pa_vmail.C: base64
191: options added, but not yet implemented (related to feature #986)
192:
193: * src/classes/math.C: whitespace
194:
195: 2019-11-13 moko
196:
197: * tests/: 397.html, results/397.processed: +tainting test (related
198: to feature #1177)
199:
200: * src/classes/math.C: as we now produce not only digits, result
201: should be tainted (related to feature #1177)
202:
203: * src/main/pa_base64.C: whitespace
204:
205: * src/: include/Makefile.am, main/Makefile.am, main/main.vcproj,
206: include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
207: main/pa_common.C: pa_base64.h and pa_base64.C added, base64
208: implementation moved from pa_common.h and pa_common.C
209:
210: 2019-11-12 moko
211:
212: * tests/: 275.html, results/275.processed: out of range test fixed,
213: as ^math:convert now supports arbitrary precision
214:
215: 2019-11-11 moko
216:
217: * tests/results/389.processed: uctualized error message
218:
219: * tests/: 389.html, 397.html, results/397.processed: tests for
220: ^math:convert added (related to feature #1177)
221:
222: * src/classes/math.C: ^math:convert now supports arbitrary
223: precision, alphabet support added (implements feature #1177)
224:
1.124 moko 225: 2019-11-06 moko
226:
227: * tests/: 181.html, results/181.processed: entities usage added,
228: more entites load tests (related to bug #842 discussion)
229:
230: 2019-11-05 moko
231:
232: * src/main/pa_xml_io.C: bugfix: no more extra http://localhost/
233: call from xmlFileOpen if http://localhost/<file> was not found
234: (related to bug #842)
235:
236: * src/main/pa_xml_io.C: rename
237:
238: * src/main/pa_xml_io.C: +MemoryStream constructor
239:
240: * src/main/pa_xml_io.C: whitespace
241:
1.123 moko 242: 2019-10-31 moko
243:
244: * src/classes/xdoc.C: XML_PARSE_OPTIONS (XML_PARSE_DTDLOAD |
245: XML_PARSE_NOENT) added to fix entities load, (related to feature
246: #1181)
247:
1.122 moko 248: 2019-10-25 moko
249:
250: * tests/: 388-sql.html, results/388-sql.processed: more multiple
251: queries tests
252:
253: 2019-10-24 moko
254:
255: * tests/: 388-sql.html, results/388-sql.processed: support for
256: pgsql driver test
257:
258: * tests/: 388-sql.html, results/388-sql.processed:
259: multi_statements=1 now tested, mysql test now supported
260: (connection must be specified in [parser3] section in .my.cnf)
261: related to issues #1195 and #1194
262:
1.121 moko 263: 2019-09-11 moko
264:
265: * src/classes/int.C: whitespace
266:
267: * tests/: 388-sql.html, results/388-sql.processed: +duplicate key
268: exception test
269:
270: * tests/results/388-sql.processed: sql queries now shown (related
271: to feature #1196)
272:
273: * src/sql/pa_sql_driver.h: to keep new SQL drivers more compatible
274: with old parser versions.
275:
276: * src/: classes/file.C, classes/hash.C, classes/string.C,
277: classes/table.C, classes/void.C, include/pa_sql_connection.h,
278: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: Show query
279: instead of connect string in query_event_handlers exceptions
280: (implements feature #1196)
281:
1.120 moko 282: 2019-09-06 moko
283:
284: * tests/388-sql.html: mysql compat
285:
286: * src/: classes/hash.C, classes/string.C, classes/table.C,
287: classes/void.C, include/pa_common.h, main/pa_common.C: cleanup:
288: sql_ variables declaration moved to pa_common.h
289:
1.116 moko 290: 2019-01-15 moko
291:
292: * src/classes/curl.C: ^curl:info[] - OrderedHashString used, items
293: logically sorted
294:
295: 2018-12-27 moko
296:
297: * src/include/pa_config_includes.h: warning war:
298: -Wdeprecated-register added for C++ 17
299:
300: 2018-10-15 moko
301:
302: * configure.ac: FreeBSD 11.2 can be build with ./configure
303: --with-gc=/usr/local/lib/ --with-pcre=/usr/local/
304: --with-xml=/usr/local/
305:
306: 2018-09-24 moko
307:
308: * tests/: 396.html, 396.tiff, results/396.processed: test for
309: ^image::measure[] now supports tiff added (related to feature
310: #1188)
311:
312: * src/classes/image.C: ^image::measure[] now supports tiff
313: (implements feature #1188)
314:
315: 2018-09-20 moko
316:
317: * tests/: 395.bmp, 395.html, results/395.processed: test for bmp
318: files measure added (related to ticket #1188)
319:
320: * src/classes/image.C: measure of bmp files implemented (related to
321: ticket #1188)
322:
323: 2018-09-18 moko
324:
325: * tests/: 394-curl.html, results/394-curl.processed,
326: results/auto.p: test for bug #1187 (max_file_size check for head
327: requests) added
328:
329: 2018-08-24 moko
330:
331: * src/classes/curl.C: CURLOPT_NOBODY value used to check if
332: response content-length check is required (fixes bug #1187)
333:
334: 2018-05-11 moko
335:
336: * tests/: 157.html, results/157.processed: test for ^file:copy[..;
337: $.append(bool) ] option added (related to feature #919)
338:
339: * src/classes/file.C: ^file:copy[..; $.append(bool) ] option added
340: from misha@ patch (implements feature #919)
341:
342: 2018-03-22 moko
343:
344: * src/main/pa_request.C: $response:download[ $.file[file.namef] ]
345: worked rather slow (about 1mb/sec) with 10kb buffer, replaced it
346: with 128kb buffer. Now works at least 12 times faster. :) May be
347: Windows-only problem.
348:
349: * src/lib/cord/cord.vcproj: Profile * complete cleanup (VS 2003
350: build fix)
351:
352: 2018-02-03 moko
353:
354: * src/main/execute.C: removes irrelevant lines from exception stack
355: trace when exceptions occurs in assigment (fixes bug #1165)
356:
357: * tests/: 393.html, results/393.processed: test for behavour after
358: "Property can not be created, already exists field with that
359: name" exception removed (related to feature #1183)
360:
361: * src/types/pa_vclass.C: "Property can not be created, already
362: exists field with that name" exception removed (implements
363: feature #1183)
364:
365: 2018-01-19 moko
366:
367: * src/classes/string.C: whitespace
368:
369: * src/classes/string.C: whitespace
370:
371: * tests/: 392.html, results/392.processed: test for
372: ^regex::create[$regex] added (related to feature #1135)
373:
374: * src/: classes/regex.C, types/pa_vregex.C, types/pa_vregex.h:
375: ^regex::create[$regex] added (implements feature #1135)
376:
377: * src/types/: pa_vclass.C, pa_vclass.h: CLASS_GETTER_UNPROTECTED
378: commented define added (related to feature #1157)
379:
380: 2018-01-17 moko
381:
382: * buildall: gc 7.6.0 -> 7.6.2 (related to feature #1136)
383:
384: 2018-01-15 moko
385:
386: * tests/: 390.html, results/390.processed: real path replaced by
387: stub
388:
389: * tests/: 391.html, results/391.processed: test for feature #1181
390: (XML_PARSE_HUGE exception) added
391:
392: 2018-01-11 moko
393:
394: * bin/auto.p.dist.in: sqlite3 -> libsqlite3
395:
396: * src/classes/xdoc.C: xmlReadMemory/xmlReadFile now used with
397: XML_PARSE_HUGE option passed by default (implements feature
398: #1181)
399:
400: * src/classes/string.C: whitespace
401:
402: 2017-12-10 moko
403:
404: * tests/: 389.html, 390.html, results/389.processed,
405: results/390.processed: image code coverage tests added (related
406: to feature #1125)
407:
408: 2017-12-08 moko
409:
410: * tests/: 346-curl.html, 388-sql.html, 389.html,
411: results/346-curl.processed, results/388-sql.processed,
412: results/389.processed: more code coverage tests
413:
414: * tests/: 264.html, results/264.processed: code coverage for
415: ^file::exec[]
416:
417: 2017-12-07 moko
418:
419: * tests/: 174.html, 388-sql.html, 389.html,
420: results/388-sql.processed, results/389.processed,
421: results/174.processed: more coverage tests
422:
423: * src/classes/math.C: exception text actualized
424:
425: 2017-12-06 moko
426:
427: * tests/388-sql.html: $SQL can be here
428:
429: * tests/results/auto.p: $SQL not required here
430:
431: * tests/: 388-sql.html, 389.html, Makefile,
432: results/388-sql.processed, results/389.processed, results/auto.p:
433: code coverage tests for sql (using sqlite) and int/double/bool
434: added (related to feature #1125)
435:
436: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
437: lib/json/json.vcproj, lib/md5/md5.vcproj,
438: lib/memcached/memcached.vcproj, lib/punycode/punycode.vcproj,
439: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
440: targets/apache/ApacheModuleParser3Core.vcproj,
441: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
442: types/types.vcproj: gc\include no longer required
443:
444: * src/lib/: cord/cord.vcproj, gd/gd.vcproj: gc\include no longer
445: required
446:
447: * src/: classes/Makefile.am, classes/table.C,
448: include/pa_config_includes.h, include/pa_string.h,
449: lib/cord/Makefile.am, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
450: lib/gd/Makefile.am, lib/json/Makefile.am, lib/sdbm/Makefile.am,
451: lib/smtp/Makefile.am, main/Makefile.am, main/untaint.C,
452: targets/apache/Makefile.am, targets/cgi/Makefile.am,
453: types/Makefile.am: to be sure that our version of gc.h/cord.h is
454: used, we now include it directly
455:
456: 2017-12-04 moko
457:
458: * src/lib/: gd/gd.vcproj, md5/md5.vcproj,
459: memcached/memcached.vcproj, punycode/punycode.vcproj,
460: sdbm/sdbm.vcproj, smtp/smtp.vcproj: includes unified, gc added
461: where required
462:
463: * src/: classes/memory.C, include/pa_config_includes.h: GC_DEBUG
464: now can be used to trace memory allocations
465:
466: * src/: classes/table.C, include/pa_config_includes.h,
467: include/pa_memory.h, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
468: main/pa_globals.C: PA_DEBUG_DISABLE_GC works again, pa_gc_*
469: method removes, libcord also can work without libgc
470:
471: * src/classes/json.C: pa_gc_malloc_atomic should not be used
472:
473: 2017-11-29 moko
474:
475: * src/classes/curl.C: no exception if some of ^curl:info[] elements
476: are not present (related to feature #1173)
477:
478: * tests/346-curl.html: test updated to test curl content-length bug
479: (related to feature #1173)
480:
481: * tests/results/346-curl.processed: more test for content-length
482: curl bug (related to feature #1173)
483:
484: * tests/results/346-curl.processed: test results updated after
485: #1173 implemented
486:
487: 2017-11-28 moko
488:
489: * src/classes/curl.C: another libcurl Content-length bug walkaround
490: (related to feature #1173)
491:
492: 2017-11-27 moko
493:
494: * src/: classes/curl.C, lib/curl/curl.h: ^curl:options
495: $.http_version[version string] added (implements feature #1173),
496: CURLOPT_POSTFIELDSIZE is set to 0 now only for old versions,
497: where $post(true) bug existed.
498:
499: 2017-11-18 moko
500:
501: * src/include/pa_memory.h: warning war (related to feature #1170)
502:
503: * src/include/pa_pool.h: RedHat 7.3 compatibility fixed (related to
504: feature #1170)
505:
506: 2017-11-17 moko
507:
508: * src/include/pa_memory.h: CHECK_DELETE_USAGE define added as
509: std::basic_stringstream used in ^table.csv-string[] is compatible
510: with delete usage check only under Debian 9 (related to feature
511: #1170)
512:
513: 2017-11-16 moko
514:
515: * src/: classes/curl.C, classes/hash.C, classes/json.C,
516: classes/table.C, classes/xdoc.C, include/pa_config_includes.h,
517: include/pa_hash.h, include/pa_memory.h, include/pa_pool.h,
518: main/pa_charset.C, main/pa_memory.C, main/pa_xml_io.C,
519: sql/pa_sql_driver.h, types/pa_value.h, types/pa_vmemcached.C,
520: types/pa_vxdoc.h: regular new/delete no longer used in our code,
521: stubs defend from accidental use (implements feature #1170)
522:
523: 2017-06-24 moko
524:
525: * configure.ac: minor fix: thanks to alx@
526:
1.115 moko 527: 2017-05-29 moko
528:
529: * src/types/pa_vmail.C: mail headers are now correctly truncated -
530: MAX_CHARS_IN_HEADER_LINE value fixed, mail_header_utf8_substring
531: added to avoid cutting of UTF-8 chars (fixed bug #123)
532:
533: * src/main/untaint.C: as in case of <space>=?UTF-8?Q?= space is
534: ignored, =?UTF-8?Q?= should start in case of leading space
535: (related to bug #123)
536:
537: * buildall: echo -n -> printf for OS X. :)
538:
539: 2017-05-25 moko
540:
541: * tests/: 288.html, results/288.processed: test updated afted
542: setting $o.prop without setter exception removed (related to
543: feature #1157)
544:
545: * src/types/pa_vclass.C: no more "this property has no setter
546: method" when setting $o.prop without setter (implements feature
547: #1157)
548:
549: * buildall: echo \c -> echo -n for FreeBSD
550:
551: * configure, configure.ac, src/include/pa_config_auto.h.in,
552: src/types/pa_vdouble.h: isfinite now checked in configure
553:
554: * compile, config.guess, config.sub, depcomp, install-sh, missing:
555: upgraded to automake 1.15
556:
557: 2017-05-23 moko
558:
559: * src/types/pa_vdouble.h: finite returned where isfinite not
560: defined
561:
562: 2017-05-22 moko
563:
564: * buildall: gc-7.6.0 USE_LIBC_PRIVATES allready defined warning war
565:
566: * buildall: extern CFLAGS setting support
567:
568: * src/types/pa_vdouble.h: warning war: finine() -> isfinite() 4OSX
569:
570: * buildall: http -> https
571:
572: * buildall: gc-7.2f -> gc-7.6.0
573:
574: 2017-05-20 moko
575:
576: * buildall: https, pcre, xml, xslt updated to current versions
577: (related to feature #1136)
578:
579: 2017-05-19 moko
580:
581: * tests/097.html: after parser.ru moved to https
582:
583: 2017-05-17 moko
584:
585: * tests/results/: 175.processed, 372.processed: tests resuls
586: updated after lintian spelling typos fixed (related to bug #1156)
587:
588: * src/: classes/file.C, classes/hash.C, classes/reflection.C,
589: classes/string.C, classes/table.C, main/pa_charset.C,
590: main/pa_common.C, main/pa_http.C, types/pa_vimage.h,
591: types/pa_vmail.C, types/pa_vxdoc.h: fixed spelling typos from
592: lintian reported by Sergey B Kirpichev (fixes bug #1156)
593:
594: * tests/results/096.processed: +XMP
595:
596: * tests/: 096.html, 096_dir/188.jpg: ^image::measure[] $.exif(true)
597: $.xmp(true) options tested (test for feature #1154)
598:
599: * src/classes/image.C: ^image:measure[] options $.exif(false)
600: $.xmp(false) $.xmp-charset[UTF-8] implemened. exif no longer
601: fetched by default! (implements feature #1154)
602:
603: 2017-05-16 moko
604:
605: * tests/: 256.html, results/256.processed: ^json:string[$image] now
606: allowed (related to feature #1154)
607:
608: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
609: initial XMP implementation - without options and transcode
610: (related to feature #1154)
611:
612: 2017-05-12 moko
613:
614: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
615: image: exif moved to ffields, skipped in ^image.html[] where
616: iterators now used (preparation for feature #1154)
617:
618: 2017-05-05 moko
619:
620: * tests/: 387.html, 387_dir/A.p, 387_dir/B.p,
621: results/387.processed: test for circular class inheritance check
622: added (related to bug #1150)
623:
624: * src/types/pa_vstateless_class.C: circular class inheritance check
625: added (fixes endless add_derived bug #1150)
626:
627: 2017-05-04 moko
628:
629: * tests/: 386.html, results/386.processed: test for
630: $table.value(number) added (related to feature #1152)
631:
632: * src/types/pa_vtable.C: table put_element: column value must be
633: string - > column value must be string compatible to allow
634: $t.value(1) (implements feature #1152)
635:
636: 2017-05-03 moko
637:
638: * src/main/pa_request.C: $use[$method] is not possible, reverting
639: (related to feature #1151)
640:
641: * tests/: 386.html, 386.p, results/386.processed: $use[$method] is
642: not possible, removing test (related to feature #1151)
643:
644: * src/: main/pa_request.C, types/pa_vstateless_class.h:
645: get_element_method added and used to allow $use[$method] and
646: $autouse[$method] (implements feature 1151)
647:
648: * tests/: 386.html, 386.p, results/386.processed: test for @use in
649: variable added (related to feature #1151)
650:
651: * tests/results/226.processed: actualized after ^try-catch used
652:
653: * tests/: 226.html, 385.html, results/385.processed: test for
654: @autouse in variable added
655:
656: * configure.ac, src/include/pa_version.h: 3.4.5 -> 3.4.6b
657:
1.114 moko 658: 2017-02-27 moko
659:
660: * configure.ac, src/include/pa_version.h: 3.4.5rc -> 3.4.5
661:
1.113 moko 662: 2017-02-20 moko
663:
664: * operators.txt: actualization + beauty
665:
666: 2017-02-16 moko
667:
668: * tests/: 384.html, results/384.processed: test for
669: ^reflection:mixin[; $.name[] ] option added (related to feature
670: #1089)
671:
672: * tests/: 384.html, results/384.processed: test for
673: ^reflection:mixin[] added (related to feature #1089)
674:
675: * src/types/pa_value.h: warning war: virtual ~Value() added
676:
1.112 moko 677: 2017-02-15 moko
678:
679: * src/include/pa_hash.h: compilation without HASH_CODE_CACHING
680: fixed
681:
682: * tests/: 320.html, results/320.processed: $.reverse(true/false)
683: test added (related to feature #1069)
684:
685: * src/: classes/reflection.C, types/pa_vstateless_class.h:
686: compilation without HASH_ORDER fixed
687:
688: * src/: classes/reflection.C, include/pa_hash.h:
689: $.reverse(true/false) added to ^reflection:methods[] (related to
690: feature #1069)
691:
692: 2017-02-14 moko
693:
694: * tests/: 152.html, results/152.processed: test for $._default hash
695: added (related to bug #1131)
696:
697: * tests/: 277.html, results/277.processed: test for hash with only
698: $._default is now defined (related to bug #1131)
699:
700: * src/types/pa_vhash.h: hash with only $._default is now defined
701: (fixed bug #1131)
702:
703: 2017-02-13 moko
704:
705: * tests/cat-windows.sh: cat-windows added (cygwin required)
706:
707: * tests/: 171.html, 264.html, 286.html, 370.html,
708: results/320.processed, results/375.processed, results/auto.p:
709: cat-windows.sh support added
710:
711: * tests/375.html: Windows support
712:
713: * tests/270.html: documented
714:
715: * tests/: 270.html, run_parser.cmd: bugfix: PATH_INFO has slashes
716: (not backslashes) even under Windows (broke test 270)
717:
718: 2017-02-12 moko
719:
720: * tests/: descript.ion, todo.txt: cleanup
721:
722: 2017-02-09 moko
723:
724: * tests/: 253.html, 255.html, 275.html, 347-curl.html,
725: run_tests.cmd: Windows compatibility
726:
727: * tests/make_tests.cmd: removed as test can't be passed - TZ is set
728: incorrectly (GMT) if parser is called from cygwin
729:
1.111 moko 730: 2017-02-08 moko
731:
1.112 moko 732: * operators.txt: actualization 15% completed
733:
734: * operators.txt: cp1251 -> utf-8
735:
736: * NEWS, README: minor update
737:
738: * src/include/pa_config_includes.h: warning war continues
739:
740: * src/: include/pa_config_includes.h, include/pa_memory.h,
741: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
742: targets/isapi/parser3isapi.C, types/pa_vdouble.h: warning war:
743: gcc 6.x issues fixed
744:
1.111 moko 745: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
746: classes/classes.h, classes/curl.C, classes/date.C,
747: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
748: classes/hashfile.C, classes/image.C, classes/inet.C,
749: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
750: classes/memcached.C, classes/memory.C, classes/op.C,
751: classes/reflection.C, classes/regex.C, classes/response.C,
752: classes/string.C, classes/table.C, classes/void.C,
753: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
754: include/pa_array.h, include/pa_cache_managers.h,
755: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
756: include/pa_config_fixed.h, include/pa_config_includes.h,
757: include/pa_dictionary.h, include/pa_dir.h,
758: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
759: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
760: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
761: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
762: include/pa_request_charsets.h, include/pa_request_info.h,
763: include/pa_sapi.h, include/pa_socks.h,
764: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
765: include/pa_stack.h, include/pa_string.h,
766: include/pa_stylesheet_connection.h,
767: include/pa_stylesheet_manager.h, include/pa_symbols.h,
768: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
769: include/pa_uue.h, include/pa_xml_exception.h,
770: include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
771: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
772: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
773: lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
774: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
775: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
776: main/compile.tab.C, main/compile.y, main/compile_tools.C,
777: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
778: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
779: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
780: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
781: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
782: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
783: main/pa_string.C, main/pa_stylesheet_connection.C,
784: main/pa_stylesheet_manager.C, main/pa_symbols.C, main/pa_table.C,
785: main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
786: main/untaint.C, sql/pa_sql_driver.h,
787: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
788: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
789: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
790: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
791: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
792: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
793: types/pa_vcaller_wrapper.h, types/pa_vclass.C, types/pa_vclass.h,
794: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
795: types/pa_vcookie.h, types/pa_vdate.C, types/pa_vdate.h,
796: types/pa_vdouble.h, types/pa_venv.C, types/pa_venv.h,
797: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
798: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
799: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
800: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
801: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
802: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemcached.C,
803: types/pa_vmemcached.h, types/pa_vmemory.h,
804: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
805: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
806: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
807: types/pa_vresponse.C, types/pa_vresponse.h,
808: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
809: types/pa_vstateless_object.h, types/pa_vstatus.C,
810: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
811: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
812: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
813: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
814: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year:
815: 2015->2017
816:
1.110 moko 817: 2017-02-07 moko
818:
819: * configure.ac, src/include/pa_version.h: 3.4.5b -> 3.4.5rc
820:
821: 2017-02-06 moko
822:
823: * src/main/pa_common.C: minor fixes, whitespace
824:
825: * src/: classes/curl.C, classes/file.C, classes/image.C,
826: include/pa_common.h, include/pa_dir.h, main/pa_common.C,
827: main/pa_dir.C, main/pa_exec.C: wchar filenames API under Windows
828: now used (implements feature #1081)
829:
830: * src/: types/pa_vcookie.C, main/pa_charset.C: cleanup
831:
832: 2017-02-01 moko
833:
834: * src/include/pa_request.h: cleanup
835:
836: 2017-01-30 moko
837:
838: * src/main/pa_request.C: file_lock_wait_limit -> lock_wait_timeout
839:
840: 2017-01-29 moko
841:
842: * tests/: 383.html, results/383.processed: test for
843: ^reflection:stack[] added (related to feature #1052)
844:
845: * src/classes/reflection.C: else added
846:
847: * src/: include/pa_os.h, main/pa_os.C, main/pa_request.C:
848: $.max_file_lock_wait added (implements feature #1128)
849:
850: 2017-01-28 moko
851:
852: * tests/: 379-curl.html, results/379-curl.processed: curl empty
853: body and other cases tests added (related to featue #1014)
854:
855: * src/classes/curl.C: bug if response is empty fixed (related to
856: feature #1014)
857:
858: 2017-01-27 moko
859:
860: * src/: classes/json.C, classes/reflection.C, include/pa_request.h,
861: main/execute.C, types/pa_vmethod_frame.h: ^reflection:stack[]
862: added (implements feature #1052)
863:
864: 2017-01-25 moko
865:
866: * tests/: 382.html, results/382.processed: @GET_DEFAULT returning
867: method test added
868:
869: 2017-01-23 moko
870:
871: * src/classes/reflection.C: optimization: options->get replaced by
872: hash iterator
873:
874: * tests/: 381.html, results/381.processed: now -> fixed date
875:
876: * src/main/pa_request.C: warning war
877:
878: * src/targets/cgi/parser3.vcproj: Stack size increased from 2Mb to
879: 5Mb (fixes bug #1058)
880:
881: * src/classes/curl.C: warning war
882:
883: * tests/: 381.html, results/381.processed: tests for ^json:string
884: $.one-line(true) option added (related to feature #1124)
885:
886: * src/: classes/json.C, types/pa_value.h: $json-string
887: $.one-line(true|false) options is now supported (implements
888: feature #1124)
889:
890: * tests/: 380.html, results/380.processed: test for modified
891: $.max_file_size added (related to bug #1014)
892:
893: * tests/: 379.html, results/auto.p: tests for rewritten http file
894: load added (related to bug #1014)
895:
896: * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
897: main/pa_common.C, main/pa_http.C: check_file_size added and used
898: in curl / file load from disk and http, http file load rewritten
899: (related to bug #1014)
900:
901: 2017-01-18 moko
902:
903: * tests/: 378.html, results/378.processed: tests for ^result[]
904: added (related to feature #66)
905:
906: * src/: classes/op.C, include/pa_request.h: ^return[] can't be
907: Method::CO_WITHOUT_FRAME as frame still added in expression
908: (related to feature #66)
909:
910: 2017-01-17 moko
911:
912: * tests/: 377.html, results/377.processed: test for different
913: combinations of breaks in body and delimiter (related to bug
914: #1077)
915:
916: * tests/: 376.html, results/376.processed: many ^break[] tests
917: added (related to bug #1077)
918:
919: * src/types/pa_vmethod_frame.C: "break is not allowed in expression
920: passed to native method" exception added to avoid bugs due to
921: WRITE_EXPR_RESULT skipped and native methods execution continues
922: after ^break[] (related to bug #1077)
923:
924: 2017-01-14 moko
925:
926: * tests/: 330.html, results/330.processed: test results updated
927: after ^break[] bugs where fixed (related to bug #1077)
928:
929: * tests/: 329.html, results/329.processed: test results updated
930: after ^break[] bugs where fixed (related to bug #1077)
931:
932: * tests/results/320.processed: ^return[] added
933:
934: 2017-01-13 moko
935:
936: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
937: classes/table.C, include/pa_request.h, main/execute.C,
938: main/pa_request.C, targets/cgi/parser3.C,
939: types/pa_vmethod_frame.C: Request::SKIP_INTERRUPTED,
940: Request::SKIP_RETURN added and implemented, Request::SKIP_* now
941: checked after each possible process/execute call (fixes bug
942: #1077)
943:
944: 2016-12-29 moko
945:
946: * src/main/pa_common.C: warning war
947:
948: * src/: classes/math.C, include/pa_random.h, include/pa_request.h,
949: include/pa_types.h, main/pa_request.C, main/pa_string.C:
950: pa_file_size_limit added, ^math:random fixed for upper limit and
951: limits more then 0x7FFFFFFF, limits now declared in pa_types.h
952: (related to feature #1014)
953:
954: * src/: classes/curl.C, classes/file.C, include/pa_common.h,
955: main/pa_common.C, main/pa_dir.C, main/pa_exec.C: stat -> pa_stat
956: (related to feature #1014)
957:
958: 2016-12-28 moko
959:
960: * src/: classes/file.C, main/pa_request.C, main/pa_string.C: VS2003
961: warning war
962:
963: 2016-12-26 moko
964:
965: * tests/: 341.html, results/341.processed: test for
966: ^table.hash[id;;$.type[string]] added (related to feature #1057)
967:
968: * src/classes/table.C: ^table.hash[id;;$.type[string]] support fix
969: (related to feature #1057)
970:
971: * src/types/pa_vdate.C: warning war continues...
972:
973: * src/: classes/date.C, classes/image.C, classes/table.C,
974: include/pa_config_includes.h, types/pa_vfile.C: warning war
975:
976: * src/lib/gd/gifio.C: warning war / cleanup
977:
978: * src/lib/json/pa_json.C: warning war
979:
980: * src/classes/hash.C: warning war
981:
982: * src/types/pa_vfile.C: warning war
983:
984: * src/: classes/hash.C, include/pa_common.h, types/pa_vcookie.C:
985: -Wall warning war continues
986:
987: * configure.ac: --with-build-warnings actualized
988:
989: 2016-12-25 moko
990:
991: * src/main/pa_exec.C: -wAll warning war
992:
993: * src/: types/pa_vform.C, types/pa_vrequest.C, main/pa_common.C:
994: -wAll warning war
995:
996: * src/: include/pa_common.h, include/pa_sapi.h,
997: types/pa_junction.h, types/pa_method.h, types/pa_value.h,
998: types/pa_vdate.C, types/pa_vstateless_class.h, types/pa_vxdoc.h:
999: -wAll warning war
1000:
1001: 2016-12-23 moko
1002:
1003: * src/lib/ltdl/Makefile.am: extra dist added
1004:
1005: * tests/results/344.processed: test result updated after $file.text
1006: prefetched in ^hash::create[$file] (related to feature #1075)
1007:
1008: * src/types/: pa_vfile.C, pa_vfile.h: $file.text prefetched in
1009: ^hash::create[$file] (related to feature #1075)
1010:
1011: 2016-12-22 moko
1012:
1013: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
1014: main/pa_request.C, main/pa_stylesheet_connection.C,
1015: types/pa_vfile.C: file_stat now return 64-bit size (implements
1016: #1014 under 32-bit unix versions)
1017:
1018: 2016-12-21 moko
1019:
1020: * tests/: 375.html, results/375.processed: test for exec returning
1021: stated file added (related to feature #1119)
1022:
1023: * src/classes/file.C: load should not return file with null body
1024: (fixes bug #1119)
1025:
1026: 2016-12-14 moko
1027:
1028: * tests/: 374.html, results/374.processed: test for $method.name
1029: added (related to feature #1117) plus method returning junction
1030: test
1031:
1032: 2016-12-13 moko
1033:
1034: * src/: include/pa_symbols.h, main/pa_symbols.C,
1035: types/pa_vjunction.C, types/pa_vjunction.h: $method.name added
1036: (implements feature #1117)
1037:
1038: * src/: types/pa_vform.C, include/pa_request_info.h: now only GET,
1039: HEAD and TRACE can't have body (implements feature #1116)
1040:
1041: 2016-12-09 moko
1042:
1043: * tests/: 373.html, results/373.processed: tests for
1044: ^reflection:tainting added (related to feature #1098)
1045:
1046: * src/classes/reflection.C: ^reflection:tainting arguments order
1047: change (related to feature #1098)
1048:
1049: 2016-12-06 moko
1050:
1051: * src/: classes/reflection.C, include/pa_string.h,
1052: main/pa_string.C: ^reflection:tainting[$string] added (implements
1053: feature #1098)
1054:
1055: 2016-12-05 moko
1056:
1057: * src/types/pa_vdouble.h: negative zero (-0) now converted to 0
1058: (fixes bug #1114)
1059:
1060: 2016-12-04 moko
1061:
1062: * tests/: 206.html, results/206.processed: negative zero (0/-1)
1063: check added
1064:
1065: 2016-12-03 moko
1066:
1067: * tests/: 346-curl.html, results/346-curl.processed: test modified
1068: to test value.as_hash() usage
1069:
1070: * src/classes/curl.C: value.as_hash() used for correct hash
1071: processing
1072:
1073: * src/classes/reflection.C: exceptions texts fixes
1074:
1075: 2016-12-02 moko
1076:
1077: * tests/: 372.html, results/372.processed: tests for
1078: ^reflection:create[ $.class[name] $.constructor[name]
1079: $.arguments[ $.1[param1] $.2[param2] ... ] ] added (related to
1080: feature #1094)
1081:
1082: * src/types/pa_vmethod_frame.h: comment added: params should be
1083: declared outside of *_FRAME_ACTION as MethodParams destructor
1084: will be called in ~VNativeMethodFrame
1085:
1086: * src/classes/reflection.C: ^reflection:create[ $.arguments[ ... ]
1087: ] minor fix
1088:
1089: * src/: classes/reflection.C, types/pa_value.C, types/pa_value.h,
1090: types/pa_vmethod_frame.C: ^reflection:create[ $.class[name]
1091: $.constructor[name] $.arguments[ $.1[param1] $.2[param2] ... ] ]
1092: now supported (implements feature #1094) value::as_hash added
1093: (and should be used everywhere)
1094:
1095: * src/classes/reflection.C: cleanup
1096:
1097: 2016-12-01 moko
1098:
1099: * tests/: 356.html, results/356.processed: test for method
1100: junctions class name added to the resulting hash added (related
1101: to feature #1068)
1102:
1103: * src/classes/reflection.C: for method junctions class name added
1104: to the resulting hash (related to feature #1068)
1105:
1106: 2016-11-30 moko
1107:
1108: * src/types/: pa_vhashfile.C, pa_vhashfile.h: file_name included in
1109: exception (related to bug #1113)
1110:
1111: * src/types/pa_vhashfile.C: whitespace
1112:
1113: * src/main/pa_os.C: errno now returned as it should (fixes bug
1114: #1113)
1115:
1116: * tests/results/: 175.processed, 192.processed, 224.processed,
1117: 229.processed, 239.processed, 244.processed, 246.processed,
1118: 314.processed, 352.processed: tests results updated after method
1119: call exceptions improved as method now keeps its name
1120:
1121: * src/: classes/reflection.C, main/execute.C, types/pa_value.C,
1122: types/pa_vmethod_frame.h: method call exceptions improved as
1123: method now keeps its name
1124:
1125: * tests/: 224.html, 239.html, results/224.processed,
1126: results/239.processed: tests and tests results updated after
1127: Request::construct exception changed
1128:
1129: * src/: classes/reflection.C, main/execute.C: Request::construct
1130: exception optimized
1131:
1132: * tests/: 371.html, results/371.processed: test for
1133: WWrapper.get_element call in $.name.key[value] code added
1134: (related to feature #1091)
1135:
1136: * src/types/pa_wwrapper.h: WWrapper.get_element returned, as used
1137: in $.name.key[value] code (related to feature #1091)
1138:
1139: 2016-11-29 moko
1140:
1141: * src/classes/op.C: VS warning war
1142:
1143: * src/types/: pa_vmethod_frame.h, pa_wcontext.h: VS warning war:
1144: C4239: nonstandard extension used : 'return' : conversion from
1145: 'Value' to 'Value &' (related to feature #1020)
1146:
1147: * src/: main/execute.C, types/pa_vmethod_frame.h,
1148: types/pa_wcontext.h: VS warning war: C4239: nonstandard extension
1149: used : 'return' : conversion from 'Value' to 'Value &' (related
1150: to feature #1020)
1151:
1152: * src/main/execute.C: VS warning war
1153:
1154: * src/targets/cgi/parser3.C: VS compatibility fix
1155:
1156: * src/include/pa_request.h: VS warning war
1157:
1158: * tests/: 370.html, results/370.processed: test for ^file::exec[
1159: ... $.stdin[$binary_file] ] added (related to bug #1044)
1160:
1161: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
1162: include/pa_string.h, main/pa_exec.C: pa_exec now supports
1163: $.stdin[$binary_file] (fixes bug #1044)
1164:
1165: 2016-11-28 moko
1166:
1167: * src/main/pa_exec.C: whitespace
1168:
1169: * src/main/pa_request.C: whitespace
1170:
1171: * tests/: 369.html, results/369.processed: test for
1172: $response:status usage added (related to feature #1099)
1173:
1174: * src/targets/cgi/parser3.C: HTTP response code used as exit status
1175: if < 100 (implements feature #1099)
1176:
1177: * src/targets/cgi/parser3.C: whitespace
1178:
1179: * src/targets/cgi/parser3.C: whitespace
1180:
1181: * tests/: 368.html, results/368.processed: test updated after
1182: ^reflection:filename[$method] added (related to feature #1053)
1183:
1184: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
1185: main/compile.y, main/execute.C, main/pa_request.C,
1186: types/pa_vclass.h: filename -> filespec,
1187: ^reflection:filename[$method] added (related to feature #1053)
1188:
1189: 2016-11-27 moko
1190:
1191: * tests/: 368.html, results/368.processed: test for
1192: reflection:filename[$class or object] added (related to feature
1193: #1053)
1194:
1195: * src/: classes/reflection.C, main/compile.y, types/pa_vclass.h,
1196: types/pa_vstateless_class.h: ^reflection:filename[$class or
1197: object] added (implements feature #1053)
1198:
1199: 2016-11-26 moko
1200:
1201: * src/: include/pa_request_info.h,
1202: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
1203: remove_absolute_uri -> strip_absolute_uri
1204:
1205: 2016-11-25 moko
1206:
1207: * src/: include/pa_request_info.h,
1208: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
1209: request_info.remove_absolute_uri added to remove possible
1210: http://site.name/ from $request:uri (implements feature #1112)
1211:
1212: 2016-11-24 moko
1213:
1214: * tests/: 367-curl.html, results/367-curl.processed: test for
1215: previous request headers clearing after redirect added (related
1216: to bug #1109)
1217:
1218: * src/: classes/curl.C, include/pa_array.h, include/pa_http.h:
1219: response headers from previous requests are now cleared, only
1220: last request headers are collected (fixes bug #1109)
1221:
1222: * tests/results/: 266.processed, 321.processed, 356.processed:
1223: tests results updated as method name now added to the resulting
1224: hash for new syntax only (Imp1 compatimility fixed, related to
1225: feature #1068)
1226:
1227: * src/classes/reflection.C: method name now added to the resulting
1228: hash for new syntax only (Imp1 compatimility fixed, related to
1229: feature #1068)
1230:
1231: * tests/results/366.processed: test for native and parser
1232: implementation of ^use[] logic (related to feature #1074)
1233:
1234: * tests/: 366.html, 366_dir/test-duplicate.p, 366_dir/test.p: test
1235: for native and parser implementation of ^use[] logic (related to
1236: feature #1074)
1237:
1238: 2016-11-23 moko
1239:
1240: * src/: classes/op.C, include/pa_request.h, main/compile.y,
1241: main/pa_request.C: @USE file now implemented as ^use[file;
1242: $.origin[origin_file] ] (implements feature #1074)
1243:
1.109 moko 1244: 2016-11-21 moko
1245:
1.110 moko 1246: * tests/: 365.html, results/365.processed: test for $caller bugs in
1247: 3.4.4 and $caller.method now tested (related to feature #1110)
1248:
1249: * tests/: 364.html, results/364.processed: $caller usage in
1250: different contexts now tested (related to feature #1110)
1251:
1252: * src/types/types.vcproj: +pa_vcaller_wrapper.h
1253:
1254: * src/types/Makefile.am: pa_vcaller_wrapper.h added
1255:
1.109 moko 1256: * src/: include/pa_symbols.h, main/pa_symbols.C, types/pa_method.h,
1257: types/pa_vcaller_wrapper.h, types/pa_vmethod_frame.C,
1258: types/pa_vmethod_frame.h: redesign: VCallerWrapper added and
1259: used (implements feature #1110)
1260:
1261: 2016-11-20 moko
1262:
1263: * src/types/pa_vdouble.h: whitespace
1264:
1265: 2016-11-11 moko
1266:
1267: * tests/: 363.html, results/363.processed: more tests for feature
1268: #1091 (how parser methods work in expression context)
1269:
1270: * src/: include/pa_request.h, types/pa_vmethod_frame.h: in
1271: expressions strings are now written as strings, not values by
1272: write_as_string (related to feature #1091)
1273:
1274: * src/classes/op.C: to make more correct behavour in expression
1275: context
1276:
1277: 2016-11-07 moko
1278:
1279: * tests/: 362.html, results/362.processed: test for
1280: xsltParseStylesheetDoc caching as xsl modification after it added
1281: (related to bug #1108)
1282:
1283: * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltParseStylesheetDoc
1284: result now cached as xdoc is modified after it (fixes bug #1108)
1285:
1286: 2016-11-06 moko
1287:
1288: * src/types/pa_vxdoc.h: whitespace
1289:
1290: 2016-11-05 moko
1291:
1292: * src/types/pa_vmethod_frame.h: cleanup
1293:
1294: 2016-11-03 moko
1295:
1296: * tests/results/244.processed: more correct exception after method
1297: frames separation
1298:
1299: * src/types/pa_vmethod_frame.h: minor optimizaion
1300:
1301: * src/types/pa_method.h: optimization: params_count added
1302:
1303: * src/: classes/json.C, classes/op.C, classes/reflection.C,
1304: include/pa_request.h, main/execute.C, main/pa_request.C,
1305: types/pa_value.C, types/pa_vmethod_frame.C,
1306: types/pa_vmethod_frame.h, types/pa_vobject.C: Optimization:
1307: VMethodFrame now divided into VNativeMethodFrame,
1308: VParserMethodFrame, VLocalParserMethodFrame; METHOD_FRAME_ACTION,
1309: EXPRESSION_FRAME_ACTION, CONSTRUCTOR_FRAME_ACTION defines added
1310: and used (related to feature #1104)
1311:
1312: 2016-11-02 moko
1313:
1314: * src/: classes/bool.C, classes/curl.C, classes/date.C,
1315: classes/double.C, classes/file.C, classes/hash.C,
1316: classes/hashfile.C, classes/image.C, classes/inet.C,
1317: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
1318: classes/memcached.C, classes/op.C, classes/reflection.C,
1319: classes/regex.C, classes/string.C, classes/table.C,
1320: classes/xdoc.C, classes/xnode.C, include/pa_request.h,
1321: main/execute.C: cleanup: r.write_pass_lang, r.write_no_lang ->
1322: r.write (implements feature #1091)
1323:
1324: * src/main/execute.C: cleanup (related to feature #1104)
1325:
1326: * src/: include/pa_request.h, main/execute.C,
1327: types/pa_vmethod_frame.h, types/pa_wcontext.h: VExpressionFrame
1328: added, in_expression removed (implements feature #1104)
1329:
1330: 2016-10-31 moko
1331:
1332: * src/types/pa_value.C: whitespace
1333:
1334: 2016-10-28 moko
1335:
1336: * tests/results/244.processed: updated after error reporting fixed
1337: in pa_wcontext.C
1338:
1339: * src/types/pa_wcontext.C: error reporting fixed
1340:
1341: * src/types/pa_wcontext.h: whitespace
1342:
1343: * src/classes/image.C: not fully readed entries are no longer
1344: processed (fixes bug #1106)
1345:
1346: 2016-10-26 moko
1347:
1348: * src/classes/image.C: whitespace
1349:
1350: * src/: include/pa_request.h, include/pa_string.h, main/untaint.C,
1351: types/pa_vmail.C, types/pa_vmethod_frame.h, types/pa_wcontext.h,
1352: types/pa_wwrapper.h: optimization: L_PASS_APPENDED removed as no
1353: longer required (related to feature #1091)
1354:
1355: * tests/results/: 264.processed, 350.processed: test results update
1356: reverted (whitespace optimization) after write_no_lang removed :)
1357: (related to feature #1091)
1358:
1359: * src/: classes/file.C, classes/hash.C, classes/op.C,
1360: classes/string.C, classes/table.C, classes/void.C,
1361: classes/xdoc.C, include/pa_request.h, main/pa_xml_io.C,
1362: types/pa_vmail.C: Temp_lang removed, write_no_lang now almost
1363: equal write_pass_lang (related to feature #1091)
1364:
1365: * tests/results/: 264.processed, 350.processed: test results
1366: updated (whitespace optimization) after write_assign_lang removed
1367: (related to feature #1091)
1368:
1369: * tests/: 361.html, results/361.processed: test for non-string
1370: ^untaint added (related to feature #1091)
1371:
1372: * src/: classes/curl.C, classes/date.C, classes/file.C,
1373: classes/hash.C, classes/op.C, classes/string.C,
1374: include/pa_request.h, main/execute.C: optimization:
1375: write_assign_lang removed as not required (first part of feature
1376: #1091 implementation)
1377:
1.108 moko 1378: 2016-10-12 moko
1379:
1380: * tests/: 360.html, results/360.processed: more test code (related
1381: to feature #1104)
1382:
1383: * src/: classes/op.C, classes/reflection.C, include/pa_opcode.h,
1384: include/pa_request.h, main/compile.y, main/execute.C: opcode
1385: OP_PREPARE_TO_EXPRESSION removed as not required, optimized
1386: WContext is next task (implements feature #1104)
1387:
1388: * src/types/pa_method.h: more detailed comment for CO_WITHOUT_FRAME
1389: / CO_WITHOUT_WCONTEXT
1390:
1391: * tests/: 360.html, results/360.processed: test for in expression
1392: state (related to feature #1104)
1393:
1394: 2016-10-11 moko
1395:
1396: * src/main/execute.C: compilation without OPTIMIZE_CALL fixed
1397:
1398: * src/classes/op.C: default value removed from initializer
1399:
1400: * src/types/pa_vmemcached.C: FreeBSD 11 warning war
1401:
1402: * src/types/pa_vmethod_frame.h: FreeBSD 11 warning war
1403:
1404: 2016-10-10 moko
1405:
1406: * tests/results/auto.p: test updated adter $RECOURSION_LIMIT,
1407: $LOOP_LIMIT -> $LIMITS[ $.max_recoursion, $.max_loop ] (related
1408: to feature #42)
1409:
1410: * src/main/pa_request.C: $RECOURSION_LIMIT, $LOOP_LIMIT ->
1411: $LIMITS[ $.max_recoursion, $.max_loop ] (related to feature #42)
1412:
1413: 2016-10-08 moko
1414:
1415: * src/classes/double.C: whitespace
1416:
1417: 2016-10-07 moko
1418:
1419: * src/types/pa_vmethod_frame.h: reorder
1420:
1421: 2016-10-06 moko
1422:
1423: * src/classes/date.C: typo
1424:
1425: * src/types/pa_vmethod_frame.h: whitespace + cleanup
1426:
1427: * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
1428: classes/op.C, classes/reflection.C, types/pa_vmethod_frame.C,
1429: types/pa_vmethod_frame.h: params.get now returns Value&, not
1430: Value*
1431:
1432: * src/types/pa_vmethod_frame.C: params.get should return Value&.
1433:
1434: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: get_as
1435: removed; first as_* code rewrite
1436:
1437: 2016-10-05 moko
1438:
1439: * src/include/pa_request.h: whitespace
1440:
1441: * tests/: 359.html, results/359.processed: test for VCodeFrame and
1442: intercept_string added (related to feature #1097)
1443:
1444: * src/: classes/image.C, classes/op.C, classes/table.C,
1445: include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
1446: optimization: intercept_string removed (implements feature #1097)
1447:
1448: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: whitespace
1449:
1450: * src/types/: pa_vcode_frame.h, pa_wwrapper.h: get_element removed
1451: from VCodeFrame and WWrapper as not required
1452:
1453: 2016-10-04 moko
1454:
1455: * src/: classes/curl.C, classes/date.C, classes/double.C,
1456: classes/file.C, classes/hash.C, classes/image.C, classes/inet.C,
1457: classes/int.C, classes/json.C, classes/op.C,
1458: classes/reflection.C, classes/string.C, classes/table.C,
1459: include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
1460: proces_to_value -> process after StringOrValue removed (related
1461: to feature #1020)
1462:
1463: * src/classes/form.C: whitespace
1464:
1465: * src/main/execute.C: VALUE__GET_BASE_CLASS added to opcode_names
1466:
1467: * tests/: 357.html, 358.html, results/357.processed,
1468: results/358.processed, results/auto.p: test for @conf
1469: $RECOURSION_LIMIT and $LOOP_LIMIT added (related to feature #42)
1470:
1471: 2016-10-03 moko
1472:
1473: * src/: classes/op.C, include/pa_request.h, main/pa_request.C,
1474: types/pa_vtable.C: @conf $RECOURSION_LIMIT and $LOOP_LIMIT now
1475: supported (implements feature #42)
1476:
1477: * src/types/pa_vregex.h: no reason for VRegex to be
1478: is_evaluated_expr
1479:
1480: * src/classes/curl.C: CURL_OPT(CURL_INT, SSLVERSION) added
1481: (implements feature #1095)
1482:
1483: 2016-10-01 moko
1484:
1485: * src/classes/reflection.C: $.overwrite in ^reflection:mixin is now
1486: false by default (related to feature #1089)
1487:
1488: 2016-09-30 moko
1489:
1490: * src/types/pa_wcontext.h: cleanup
1491:
1492: 2016-09-29 moko
1493:
1494: * src/main/execute.C: whitespace
1495:
1496: * src/include/pa_request.h: whitespace
1497:
1498: * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
1499: classes/op.C, classes/table.C, include/pa_request.h,
1500: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.h,
1501: types/pa_vobject.C, types/pa_wcontext.h: optimization:
1502: StringOrValue removed as it just slows down and adds complexity
1503: (implements feature #1020)
1504:
1505: 2016-09-28 moko
1506:
1507: * tests/: 356.html, results/266.processed, results/321.processed,
1508: results/356.processed: tests updated after name was added to
1509: method_info hash, test for ^reflection:method_info[junction]
1510: added (related to feature #1068)
1511:
1512: * src/classes/reflection.C: ^reflection:method_info[junction] now
1513: supported, method name added to the resulting hash (implements
1514: feature #1068)
1515:
1516: * tests/: 276.html, results/276.processed: more tests for
1517: ^reflection:delete[]
1518:
1519: * src/classes/reflection.C: fixed bug then ^reflection:delete
1520: didn't work on class and could damage native objects (like file)
1521:
1522: 2016-09-26 moko
1523:
1524: * tests/: 345.html, 346-curl.html, 347-curl.html, 348.html,
1525: results/345.processed, results/346-curl.processed,
1526: results/347-curl.processed, results/348.processed: numbers added
1527: to simplify diff analysis
1528:
1529: * tests/: 352.html, results/352.processed: test result updated as
1530: method name used
1531:
1532: * src/classes/reflection.C: method name used
1533:
1534: * src/types/: pa_method.h, pa_vstateless_class.C: method now keeps
1535: its name
1536:
1537: * src/types/pa_method.h: whitespace
1538:
1539: * src/classes/reflection.C: both method and field with one name can
1540: exist.
1541:
1542: * src/classes/reflection.C: ^reflection:mixin added (implements
1543: feature #1089)
1544:
1545: * tests/: 355.html, results/355.processed: property appears in
1546: derived class if added in base test added
1547:
1548: * src/types/pa_vstateless_class.h: get_method declaration +
1549: whitespace
1550:
1551: * tests/: 354.html, results/354.processed: nice test from method
1552: and property with one name in class added
1553:
1554: 2016-09-23 moko
1555:
1556: * src/classes/reflection.C: ^reflection:method usage documented
1557:
1558: 2016-09-22 moko
1559:
1560: * src/: classes/classes.vcproj, types/types.vcproj: we need RTTI as
1561: we use 'dynamic_cast' on polymorphic type 'Value'. Without it
1562: compile warning and GPF occures on VS2003 (related to feature
1563: #1087)
1564:
1565: * tests/: 350.html, results/350.processed: test added for
1566: $.encloser[] support in ^table::create (related to feature #11)
1567:
1568: * src/classes/table.C: another minor fix (related to feature #11)
1569:
1.107 moko 1570: 2016-09-21 moko
1571:
1572: * src/include/pa_config_fixed.h: vs2015 compilation fixes
1573:
1574: * src/: classes/curl.C, classes/file.C, classes/hash.C,
1575: classes/json.C, classes/string.C, classes/table.C,
1576: classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
1577: main/pa_common.C, main/pa_http.C, main/pa_request.C,
1578: main/pa_sql_driver_manager.C, types/pa_vfile.C, types/pa_vmail.C,
1579: types/pa_vrequest.C, types/pa_vresponse.C: charsets ->
1580: pa_charsets, vs2015 warning war
1581:
1582: * src/classes/table.C: vs2015 warning war
1583:
1584: * src/types/pa_vdate.C: vs2015 warning war
1585:
1586: * src/main/: pa_common.C, pa_globals.C: vs2015 compilation fixes
1587:
1588: * src/targets/cgi/parser3.vcproj: wsock32 -> ws2_32.lib (winsock 1
1589: -> winsock 2) for vs2015 compatibility (getaddrinfo functions)
1590:
1591: * src/main/pa_common.C: vs2015 compilation fixes
1592:
1593: * src/: include/pa_common.h, lib/smtp/smtp.C, main/pa_common.C:
1594: vs2015 compilation fixes
1595:
1596: * src/main/pa_charset.C: vs2015 warning war
1597:
1598: * src/: classes/file.C, types/pa_wwrapper.h: vs2015 warning war
1599:
1600: * src/main/pa_charset.C: vs2015 warning war
1601:
1602: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: vs2015 warning war
1603:
1604: * src/types/pa_vdate.C: vs2015 compilation fix
1605:
1606: * src/: include/pa_memory.h, main/pa_memory.C: VS2015 warning war
1607:
1608: * src/: lib/json/pa_json.C, classes/mail.C, classes/string.C:
1609: VS2015 compilation fixes
1610:
1611: * src/classes/table.C: minor fix (related to feature #11)
1612:
1613: * tests/results/282.processed: no longer skipping extra enclosers
1614: (related to feature #11)
1615:
1616: * src/classes/table.C: minor fix + no longer skipping extra
1617: enclosers (related to feature #11)
1618:
1619: * src/classes/table.C: minor optimization (related to feature #11)
1620:
1621: * src/classes/table.C: minor fix and optimization (related to
1622: feature #11)
1623:
1624: 2016-09-20 moko
1625:
1626: * tests/: 353.html, results/353.processed: test for
1627: PC.cclass->is_vars_local() check in one_big_piece in ^process[]
1628: added (related to bug #1090)
1629:
1630: * src/main/compile.y: PC.cclass->is_vars_local() check added for
1631: one_big_piece (fixes bug #1090)
1632:
1633: * tests/: 229.html, results/229.processed: code coverage tests
1634:
1635: * src/classes/op.C: bugfix: no more GPF if ^process[$context] (no
1636: body) was called
1637:
1638: * src/classes/op.C: whitespace
1639:
1640: * tests/: 323.html, results/323.processed: test for code junction
1641: should not be returned by ^reflection:class, ^reflection:base
1642:
1643: * src/classes/reflection.C: bugfix: code junction should not be
1644: returned by ^reflection:class, ^reflection:base
1645:
1646: * tests/: 323.html, 352.html, results/352.processed: no more
1647: exception for ^reflection:method[class;no-such-method] (related
1648: to feature #1087)
1649:
1650: * src/classes/reflection.C:
1651: ^reflection:method[class;no-such-method] : exception -> void
1652: (related to feature #1087)
1653:
1654: * src/include/pa_request.h: request::write_value added to allow
1655: write value without convertion (related to issue #1091)
1656:
1657: 2016-09-19 moko
1658:
1659: * src/main/pa_random.C: windows build fix
1660:
1661: * src/types/pa_vhash.h: warning war
1662:
1663: 2016-09-14 moko
1664:
1665: * tests/: 352.html, 552.html, results/352.processed,
1666: results/552.processed: test for ^reflection:method[] extension
1667: added (related to feature #1087)
1668:
1669: * tests/: 552.html, results/552.processed: test for
1670: ^reflection:method[] extension added (related to feature #1087)
1671:
1672: * src/classes/reflection.C: compatibility issue fixed, VClass
1673: dynamic_cast check added (related to feature #1087)
1674:
1675: * tests/: 351.html, results/351.processed: test for @auto[]
1676: inheritance bug diring ^process[] added (related to bug #1088)
1677:
1678: * src/: classes/op.C, main/pa_request.C,
1679: types/pa_vstateless_class.C: set_method now checks for @auto[] to
1680: disable it inheritance during ^process (fixes bug #1088)
1681:
1682: * src/classes/reflection.C: ^reflection:method[$class:method;$self]
1683: added (implements feature #1087)
1684:
1685: 2016-09-13 moko
1686:
1687: * tests/: 349.html, results/auto.p: test for objects prototyping
1688: added and $OBJECT-PROTOTYPE(false) is used for old tests (related
1689: to feature #1086)
1690:
1691: * src/: main/pa_request.C, types/pa_vclass.C, types/pa_vclass.h,
1692: types/pa_vobject.C: objects now are not class instances, but have
1693: class as prototype, can be overridden by $OBJECT-PROTOTYPE(false)
1694: in @conf (implements feature #1086)
1695:
1696: 2016-09-08 moko
1697:
1698: * src/: classes/file.C, classes/mail.C, classes/string.C,
1699: classes/table.C, main/pa_http.C, main/pa_string.C,
1700: include/pa_string.h: cleanup: string::split limit argument
1701: removed as no longer required, pos_after no longer reference
1702: (related to feature #11)
1703:
1704: * src/classes/table.C, tests/results/348.processed: now exception
1705: is rised when invalid option is passed to ^table::create[]
1706:
1707: * tests/: 282.cfg, 282.html, results/282.processed: more code
1708: coverage tests
1709:
1710: * tests/: 348.html, results/348.processed: code coverage tests
1711: added
1712:
1713: * tests/: 348.html, results/348.processed: generic ^table::create[]
1714: tests
1715:
1716: * tests/: 035.html, results/035.processed, results/272.processed:
1717: tests updated after $.encloser[] support for ^table::create
1718: implementation (related to feature #11)
1719:
1720: * src/classes/table.C: $.encloser[] support for ^table::create
1721: finally added (implements feature #11)
1722:
1723: 2016-09-07 moko
1724:
1725: * src/include/pa_string.h: added StringSplitHelper as friend
1726: (related to feature #11)
1727:
1728: * src/include/pa_string.h: body and langs now protected, not
1729: private to allow inheritance (related to feature #11)
1730:
1731: * src/classes/table.C: lsplit optimized before cloning for
1732: ^table::create with $.encloser[] (related to feature #11)
1733:
1734: * src/classes/table.C: optimizaion: TableControlChars.separators
1735: added and used (related to feature #11)
1736:
1737: * src/classes/table.C: spelling:
1738:
1739: TableSeparators -> TableControlChars column -> separator
1740: separators -> control_chars
1741:
1742: 2016-09-06 moko
1743:
1744: * src/main/pa_string.C: whitespace
1745:
1746: * src/main/pa_string.C: whitespace
1747:
1748: 2016-09-01 moko
1749:
1750: * tests/: 347-curl.html, results/347-curl.processed: to make tests
1751: results OS-independent
1752:
1753: * src/: include/pa_http.h, main/pa_http.C: typo bugfix for clang
1754: compiler (related to feature #1042)
1755:
1756: 2016-08-15 moko
1757:
1758: * src/include/pa_string.h: whitespace
1759:
1760: * src/classes/table.C: whitespace
1761:
1.106 moko 1762: 2016-08-05 moko
1763:
1764: * tests/: 344.html, results/344.processed: test for
1765: ^hash::create[$file] added (related to feature #1075)
1766:
1767: * src/types/: pa_vfile.h, pa_vmail.C: ^hash::create[$file] now
1768: supported (implements feature #1075)
1769:
1770: 2016-08-04 moko
1771:
1772: * tests/: 341.html, results/341.processed: more code coverage tests
1773:
1774: * tests/: 346-curl.html, results/346-curl.processed: more code
1775: coverage tests for curl
1776:
1777: * tests/: 346-curl.html, results/346-curl.processed: more code
1778: coverage tests for curl
1779:
1780: * tests/: 223-curl.html, 223.html, results/223-curl.processed,
1781: results/223.processed: code coverage tests: $.form[ $.table[] ]
1782: test added
1783:
1784: * tests/: 223-curl.html, results/223-curl.processed: more code
1785: coverage tests for curl
1786:
1787: 2016-08-03 moko
1788:
1789: * src/classes/curl.C: dlink(curl_library) now called not once, but
1790: until it will be loaded, allowing to find existing library.
1791:
1792: * tests/: 346-curl.html, 347-curl.html, results/346-curl.processed,
1793: results/347-curl.processed: more code coverage tests for curl
1794:
1795: * tests/: 339-curl.html, 339.html, 346-curl.html, Makefile,
1796: results/339-curl.processed, results/346-curl.processed: curl
1797: functionality tests
1798:
1799: 2016-08-02 moko
1800:
1801: * tests/: 339.html, results/339.processed: test for tables in
1802: ^file:load[] and ^curl:load[] (commented) added (related to
1803: feature #1042)
1804:
1805: * tests/: 345.html, results/345.processed: code coverage tests for
1806: file class
1807:
1808: * tests/: 344.html, results/344.processed: code coverage tests
1809:
1810: * tests/: 344.html, results/344.processed: mdate removed from
1811: output
1812:
1813: * src/classes/file.C: minor bugfix: is_text should be taked from
1814: fcontent.is_text_mode() if not set (related to feature #1061)
1815:
1816: * tests/: 344.html, results/344.processed: more tests
1817:
1818: * tests/: 343.html, 344.html, results/343.processed,
1819: results/344.processed: tests for ^file::create[ $.from-charset
1820: and $.to-charset ] (related to feature #1061)
1821:
1822: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
1823: aset_text_mode argument optimized
1824:
1825: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
1826: checkBOM now used in detect_binary_content (related to feature
1827: #1061)
1828:
1829: * src/main/pa_request.C: load_charset no longer required to_upper
1830:
1831: * src/types/pa_vfile.C: bugfix: ^file::create[$text_file;...] now
1832: preserves original file mode (if no $.mode specified)
1833:
1834: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
1835: ^file::create now supports $.from-charset[] and $.to-charset
1836: options (implements feature #1061), automatic transcode is done
1837: if text file is created from binary file and charset is detected.
1838:
1839: 2016-07-30 moko
1840:
1841: * src/classes/table.C: ^t.hash[..;] now supported (related to
1842: feature #1057)
1843:
1844: * tests/: 341.html, results/341.processed: test for ^t.hash[..;]
1845: added (related to feature #1057)
1846:
1847: * tests/: 286.html, results/286.processed: code tests coverage
1848:
1849: 2016-07-29 moko
1850:
1851: * src/classes/table.C: table size should be checked inside menu and
1852: foreach (related to feature #858)
1853:
1854: * src/: classes/curl.C, classes/file.C, classes/string.C,
1855: classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
1856: main/pa_common.C, main/pa_http.C, main/pa_sql_driver_manager.C,
1857: types/pa_vmail.C, types/pa_vrequest.C, types/pa_vresponse.C:
1858: charsets.get now does str_upper inside (related to feature #1061)
1859:
1860: * tests/: 342.html, results/342.processed: more code coverage tests
1861:
1862: * tests/: 342.html, outputs/342.processed: table menu code coverage
1863: + foreach test added (related to feature #858)
1864:
1865: * tests/: 341.html, results/341.processed: tests for
1866: ^table.hash[]{code} added + code coverage tests (related to
1867: feature #1057)
1868:
1869: * src/: include/pa_common.h, classes/table.C: ^table.hash[]{code as
1870: value} support (implements feature #1057)
1871:
1872: * src/classes/table.C: whitespace
1873:
1874: 2016-07-28 moko
1875:
1876: * src/: classes/curl.C, types/pa_vfile.C: curl now saves filename
1877: from URL, if not specified query string removed from url-based
1878: filenames in ^curl:load[] and ^file::load[] (related to feature
1879: #1042)
1880:
1881: 2016-07-27 moko
1882:
1883: * tests/: 340.html, results/340.processed: test for
1884: transcode_text_result=false added (related to issue #1042)
1885:
1886: 2016-07-26 moko
1887:
1888: * src/types/pa_vfile.C: file name should not be empty (if file path
1889: is folder and ends with /) (related to feature #1042)
1890:
1891: * src/main/pa_http.C: whitespace optimizaion
1892:
1893: * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
1894: main/pa_common.C, main/pa_http.C: ^curl:load[] now support
1895: multiple headers, ^file::load supports headers transcoding
1896: (implements feature #1042)
1897:
1898: 2016-07-25 moko
1899:
1900: * src/include/pa_common.h: PA_DEFAULT added
1901:
1902: 2016-07-22 moko
1903:
1904: * tests/: 338.html, results/338.processed: test for
1905: $date.field(value) added (related to feature #1066)
1906:
1907: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
1908: $date.field(value) now supported for y/m/d/h/m/s (implements
1909: feature #1066)
1910:
1.105 moko 1911: 2016-07-21 moko
1912:
1913: * src/: classes/file.C, classes/image.C, include/pa_common.h,
1914: main/pa_common.C: pa_common.h: File_read_action: fname, as_text
1915: arguments removed; image.C - absolute path shown in exception
1916: (implements feature #1071)
1917:
1918: * tests/: 235.html, results/235.processed: test and test result
1919: updated after static boundary in mail and Errors-To: mail header
1920: removed (related to feature #1047)
1921:
1922: * src/: classes/math.C, include/pa_random.h, main/pa_http.C,
1923: main/pa_random.C, types/pa_vmail.C: get_uuid_boundary() added and
1924: used, static boundary in mail removed, Errors-To: mail header
1925: removed (implements feature #1047)
1926:
1927: 2016-07-20 moko
1928:
1929: * src/: classes/reflection.C, types/pa_vstateless_class.h:
1930: equest.classes(): Value -> VStateless_class, part 3 (related to
1931: issue #1051)
1932:
1933: * src/: classes/reflection.C, include/pa_request.h, main/execute.C:
1934: request.classes(): Value -> VStateless_class, part 2 (related to
1935: issue #1051)
1936:
1937: * tests/results/: 224.processed, 323.processed: classes without
1938: methods should not be methoded (related to issue #1051)
1939:
1940: * src/: classes/reflection.C, include/pa_request.h, main/compile.y,
1941: main/compile_tools.h, main/pa_request.C: request.classes(): Value
1942: -> VStateless_class, part 1 (related to issue #1051)
1943:
1944: * tests/: 337.html, results/337.processed: test for
1945: ^reflection:fields_reference[] and VHashReference class added
1946: (related to feature #1072)
1947:
1948: * src/: classes/hash.C, classes/json.C, classes/reflection.C,
1949: types/pa_value.h, types/pa_vhash.h, types/pa_vobject.h: VHashBase
1950: and VHashReference added, allowing ^reflection:fields_reference[]
1951: implementation (closes feature #1072)
1952:
1953: 2016-07-19 moko
1954:
1955: * tests/: 323.html, results/323.processed: we want to see
1956: "methoded"
1957:
1958: * tests/: 336.html, results/336.processed: test for $BASE:property
1959: and ^BASE:method (OP_VALUE__GET_BASE_CLASS) added (related to bug
1960: #1059)
1961:
1962: * src/: include/pa_opcode.h, main/compile.y, main/execute.C,
1963: types/pa_vstateless_class.h, types/pa_wcontext.h: no more
1964: somebody_entered_some_class, $BASE:property works again,
1965: ^BASE:method[] bugs fixed (fixes bug #1059)
1966:
1967: 2016-07-14 moko
1968:
1969: * tests/: 335.html, results/335.processed: test for feature #1055
1970: added
1971:
1972: * src/classes/hash.C: bugfix: $._default was not copied if empty
1973: feature: ^hash.contains[_default] added (implements feature
1974: #1055)
1975:
1976: 2016-07-13 moko
1977:
1978: * src/classes/reflection.C: bugfix: ^reflection:def[class;name]
1979: should not call @autouse (http://www.parser.ru/forum/?id=83480)
1980:
1981: 2016-07-05 moko
1982:
1983: * src/classes/hash.C: Optimization: HashStringValue::Iterator used
1984: in ^hash.foreach (related to feature #1073)
1985:
1986: 2016-07-04 moko
1987:
1988: * tests/: 134.html, 281.html, results/134.processed,
1989: results/281.processed: tests updated after hash blocking removed
1990: (related to feature #1073)
1991:
1992: * src/: classes/hash.C, include/pa_hash.h, types/pa_vhash.h: hash
1993: no longer blocks on change during foreach (implements feature
1994: #1073)
1995:
1996: 2016-06-17 moko
1997:
1998: * tests/: 330.html, results/330.processed: try exception source
1999: test added (related to bug in #1062)
2000:
2001: * tests/: 334.html, results/334.processed: Exception stack trace
2002: test added (related to bug in $1062)
2003:
2004: * src/classes/op.C: Exception trace now correctly restored and
2005: errors reported (related to bug #1062)
2006:
1.104 moko 2007: 2016-05-25 moko
2008:
2009: * src/main/compile.y: minor cleanup + beauty
2010:
2011: 2016-05-24 moko
2012:
2013: * tests/: 333.html, results/333.processed: more exceptions testing
2014:
2015: * tests/: 332.html, results/332.processed: test for FIELDS_SYMBOL,
2016: _DEFAULT_SYMBOL, CALLER_SYMBOL, SELF_SYMBOL added (related to
2017: features #1056, #1026)
2018:
2019: * src/: classes/json.C, include/pa_symbols.h, main/pa_symbols.C,
2020: types/pa_vhash.C, types/pa_vhash.h, types/pa_vtable.C,
2021: types/pa_vtable.h: FIELDS_SYMBOL, _DEFAULT_SYMBOL added and used
2022: (implements feature #1056)
2023:
2024: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
2025: main/execute.C, main/pa_symbols.C, types/pa_vjunction.C,
2026: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
2027: CLASS_SYMBOL, CLASS_NAME_SYMBOL added and used (related to
2028: feature #1026)
2029:
2030: * src/: classes/reflection.C, include/pa_symbols.h, main/compile.y,
2031: main/compile_tools.C, main/compile_tools.h, main/pa_symbols.C,
2032: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: Symbols now
2033: have *_SYMBOL naming convention. STATIC_SYMBOL, DYNAMIC_SYMBOL,
2034: LOCALS_SYMBOL, PARTIAL_SYMBOL, REM_SYMBOL where added (related to
2035: feature #1026)
2036:
2037: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
2038: main/pa_globals.C, main/pa_symbols.C, types/pa_vmethod_frame.C,
2039: types/pa_vmethod_frame.h, types/pa_vstateless_class.C:
2040: SYMBOLS_CACHING define implemented (related to feature #1026)
2041:
2042: * src/main/main.vcproj: + ps_symbols
2043:
2044: * src/: include/Makefile.am, include/pa_string.h,
2045: include/pa_symbols.h, main/Makefile.am, main/compile.tab.C,
2046: main/compile.y, main/compile_tools.C, main/pa_symbols.C,
2047: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
2048: types/pa_vstateless_class.C: initial implementation for symbols
2049: cache (related to feature #1026)
2050:
2051: * src/: include/pa_common.h, main/pa_http.C: minor cleanup
2052:
2053: * src/main/pa_globals.C: minor cleanup
2054:
2055: 2016-05-19 moko
2056:
2057: * src/types/pa_vhash.h: minor optimization: ^hash.fields[] removed
2058: (related to feature #1046)
2059:
2060: * tests/: 331.html, results/331.processed: test for
2061: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE removal added
2062: (related to feature #1051)
2063:
2064: * src/main/compile.y:
2065: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE error removed
2066: (implements feature #1054)
2067:
2068: 2016-05-18 moko
2069:
2070: * src/types/pa_vtable.C, tests/results/324.processed: no more
2071: "column not found" exception for ^table.no-such-method[] (related
2072: to feature #1046)
2073:
2074: * tests/: 261.html, results/261.processed: test added and updated
2075: after feature #1046 implementation
2076:
2077: * src/: classes/string.C, types/pa_value.C, types/pa_vstring.h,
2078: types/pa_vvoid.h: $string.anything works for whitespace strings,
2079: ^string.contains added for hash compatibility, $string.method no
2080: longer returns stting method (implements feature #1046)
2081:
2082: 2016-05-12 moko
2083:
2084: * src/classes/curl.C: content-type response header no longer
2085: ignored (fixes issue #1045)
2086:
2087: * tests/: 330.html, results/330.processed: test for incomplete
2088: finally execution when break occures added (related to issue
2089: #1077)
2090:
2091: * src/classes/op.C: bugfix: Request::skip reset is called before
2092: executing catch and finally code (fixes issue #1062)
2093:
2094: 2016-05-11 moko
2095:
2096: * tests/: 329.html, results/329.processed: test for invalid
2097: ^break[] behavour added (bug #1077)
2098:
2099: * src/classes/op.C: try_catch code cleanup (related to bug #1062)
2100:
2101: 2016-04-24 moko
2102:
2103: * src/types/pa_vstateless_class.h: warning war
2104:
2105: 2016-04-17 moko
2106:
2107: * tests/: 328.html, results/328.processed: test for
2108: ^break(condition) and ^continue(condition) (related to feature
2109: #1063)
2110:
2111: * src/classes/op.C: ^break(condition) and ^continue(condition)
2112: implemented (feature #1063)
2113:
2114: 2016-04-12 moko
2115:
2116: * tests/results/280.processed: ordered hash now used for class
2117: methods and properties (test results updated for feature #1069)
2118:
2119: * src/classes/: xdoc.C, xnode.C: xnode_class initialization moved
2120: to xdoc.C as under FreeBSD it was inited after and inheritance
2121: failed (related to issue #1051)
2122:
2123: * tests/: 320.html, results/320.processed: xdoc and xnode methods
2124: are printed to check inheritance (related to feature #1051)
2125:
1.103 moko 2126: 2016-04-09 moko
2127:
2128: * tests/results/320.processed: ordered hash now used for class
2129: methods and properties (test results updated for feature #1069)
2130:
2131: * src/types/pa_vstateless_class.h: ordered hash now used for class
2132: methods and properties (implements feature #1069)
2133:
2134: * src/types/: pa_vconsole.h, pa_vcookie.C, pa_venv.C,
2135: pa_vrequest.C, pa_vstatus.C: minor optimization: #ifndef
2136: OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL returned (related to
2137: feature #1051)
2138:
2139: 2016-04-07 moko
2140:
2141: * src/main/execute.C: returned Value in .CLASS case for VJunction
2142: (related to feature #1051)
2143:
2144: * src/types/: pa_vjunction.C, pa_vmethod_frame.C,
2145: pa_vmethod_frame.h, pa_vstateless_class.C, pa_vstateless_class.h:
2146: string constants deduplication (related to feature #1051)
2147:
2148: * tests/results/224.processed: test result updated (related to
2149: feature #1051)
2150:
2151: * src/: main/execute.C, types/pa_vconsole.h, types/pa_vcookie.C,
2152: types/pa_vcookie.h, types/pa_venv.C, types/pa_venv.h,
2153: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vstatus.C,
2154: types/pa_vstatus.h: classes hash now contains only
2155: VStateless_class derived objects, .CLASS is also allways
2156: VStateless_class derived object (related to feature #1051).
2157:
2158: 2016-04-06 moko
2159:
2160: * tests/results/323.processed: test result updated after feature
2161: #1051 implementation
2162:
2163: * src/: classes/classes.h, classes/op.C, classes/response.C,
2164: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
2165: main/pa_request.C, types/pa_vclass.h, types/pa_vform.C,
2166: types/pa_vmail.C, types/pa_vmath.C, types/pa_vmemory.h,
2167: types/pa_vresponse.C, types/pa_vresponse.h,
2168: types/pa_vstateless_class.h: base -> methoded_donor for static
2169: classes, type() moved from VStateless_class to VClass and
2170: Methoded (implements feature #1051)
2171:
2172: 2016-04-04 moko
2173:
2174: * src/: classes/classes.C, include/pa_request.h, main/pa_request.C:
2175: beauty: put_class added (related to feature #1051)
2176:
2177: 2016-04-01 moko
2178:
2179: * tests/results/: 175.processed, 192.processed, 224.processed,
2180: 229.processed, 244.processed, 246.processed, 316.processed: test
2181: results updated as class.type() removed from error messages, only
2182: type() left (related to feature #1051)
2183:
2184: * src/: classes/classes.C, classes/classes.h, classes/mail.C,
2185: classes/op.C, classes/reflection.C, main/compile.y,
2186: main/compile_tools.h, main/execute.C, main/pa_request.C,
2187: types/pa_value.C, types/pa_vclass.C, types/pa_vclass.h,
2188: types/pa_vmethod_frame.h, types/pa_vobject.h,
2189: types/pa_vstateless_class.h, types/pa_wcontext.C: name() removed
2190: from VStateless_class, type() is used instead (related to feature
2191: #1051)
2192:
2193: * src/classes/mail.C: old logic restored.
2194:
2195: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
2196: classes/classes.h, classes/curl.C, classes/date.C,
2197: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
2198: classes/hashfile.C, classes/image.C, classes/inet.C,
2199: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
2200: classes/memcached.C, classes/memory.C, classes/reflection.C,
2201: classes/regex.C, classes/response.C, classes/string.C,
2202: classes/table.C, classes/xdoc.C, classes/xnode.C,
2203: types/pa_vform.C, types/pa_vmail.C, types/pa_vmath.C,
2204: types/pa_vmemory.h: optimizaion: *_base_class removed (related to
2205: feature #1051)
2206:
2207: 2016-03-30 moko
2208:
2209: * tests/: 327.html, results/224.processed, results/327.processed:
2210: test for TZ specification in ^date::create[], TZ is kept during
2211: ^date::create[$dt] (related to feature #1048)
2212:
2213: * src/: classes/date.C, types/pa_vdate.h: TZ can be specified in
2214: ^date::create[], TZ is kept during ^date::create[$dt] (implements
2215: feature #1048)
2216:
2217: 2016-03-29 moko
2218:
2219: * tests/: 315.html, results/315.processed: test for timezone format
2220: +HHmm added (related to feature #1065)
2221:
2222: * src/classes/date.C: timezone format +HHmm now supported
2223: (implements feature #1065)
2224:
2225: 2016-03-28 moko
2226:
2227: * tests/: 202.html, results/131.processed, results/202.processed,
2228: results/224.processed, results/256.processed,
2229: results/315.processed: test results updated after %.2d now
2230: default for hours offset in iso-string (was %2d), test for
2231: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
2232: added (related to feature #1065)
2233:
2234: 2016-03-27 moko
2235:
2236: * src/types/pa_vdate.C: '+' sign for zero offset (related to
2237: feature #1065)
2238:
2239: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
2240: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
2241: added (implements feature #1065)
2242:
2243: 2016-03-24 moko
2244:
2245: * tests/: 202.html, results/202.processed: test $date.week added
2246: (related to bug #1067)
2247:
2248: * src/types/: pa_vdate.C, pa_vdate.h: fix for $date.week changed
2249: date (fix for bug #1067)
2250:
2251: 2016-03-10 moko
2252:
2253: * configure.ac, src/include/pa_version.h: 3.4.4 -> 3.4.5b
2254:
1.102 moko 2255: 2015-12-07 moko
2256:
2257: * tests/: 326.html, results/326.processed: test for .CLASS &
2258: .CLASS_NAME optimization added (related to feature #844)
2259:
2260: 2015-11-17 moko
2261:
2262: * tests/: 323.html, results/323.processed: order added
2263:
2264: * tests/: 325.html, results/325.processed: double range test added
2265: (related to bug #1049)
2266:
2267: 2015-11-16 moko
2268:
2269: * src/: classes/string.C, types/pa_vdouble.h: finite(double) check
2270: added to disallow NaN and Infinity (fixes bug #1049)
2271:
2272: 2015-11-11 moko
2273:
2274: * tests/324.html: parser 3.4.3 execution support added (related to
2275: feature #1017)
2276:
2277: * tests/: 324.html, results/324.processed: test for
2278: GET_ELEMENT4CALL feature added (feature #1017)
2279:
1.101 moko 2280: 2015-10-29 moko
2281:
2282: * operators.txt: updated for 3.4.4
2283:
2284: * configure.ac, src/include/pa_version.h: 3.4.4rc -> 3.4.4
2285:
2286: * src/main/pa_exec.C: get_exit_status implemented for Windows
2287: (related to bug #1043)
2288:
2289: 2015-10-28 moko
2290:
2291: * src/main/pa_exec.C: Windows bugfix: $.stdin[] no longer cause
2292: hangup during ^file::exec (fixes bug #1043)
2293:
1.100 moko 2294: 2015-10-27 moko
2295:
2296: * src/main/pa_memory.C: pa_fail_alloc added for GC_abort in Windows
2297:
1.99 moko 2298: 2015-10-26 moko
2299:
1.100 moko 2300: * tests/322.html, src/classes/reflection.C: arguments reorder
2301: (related to issue #1041)
2302:
2303: * src/: classes/classes.awk, main/helpers/simple_folding.pl:
2304: Copyright year updated
2305:
1.99 moko 2306: * src/: classes/bool.C, classes/classes.C, classes/classes.h,
2307: classes/curl.C, classes/date.C, classes/double.C, classes/file.C,
2308: classes/form.C, classes/hash.C, classes/hashfile.C,
2309: classes/image.C, classes/inet.C, classes/int.C, classes/json.C,
2310: classes/mail.C, classes/math.C, classes/memcached.C,
2311: classes/memory.C, classes/op.C, classes/reflection.C,
2312: classes/regex.C, classes/response.C, classes/string.C,
2313: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
2314: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
2315: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
2316: include/pa_config_fixed.h, include/pa_config_includes.h,
2317: include/pa_dictionary.h, include/pa_dir.h,
2318: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
2319: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
2320: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
2321: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
2322: include/pa_request_charsets.h, include/pa_request_info.h,
2323: include/pa_sapi.h, include/pa_socks.h,
2324: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
2325: include/pa_stack.h, include/pa_string.h,
2326: include/pa_stylesheet_connection.h,
2327: include/pa_stylesheet_manager.h, include/pa_table.h,
2328: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
2329: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
2330: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
2331: lib/md5/pa_md5c.c, lib/memcached/pa_memcached.C,
2332: lib/memcached/pa_memcached.h, lib/sdbm/pa_file_io.C,
2333: lib/sdbm/pa_strings.C, lib/smtp/comms.C, lib/smtp/smtp.C,
2334: lib/smtp/smtp.h, main/compile.C, main/compile.tab.C,
2335: main/compile.y, main/compile_tools.C, main/compile_tools.h,
2336: main/execute.C, main/pa_cache_managers.C, main/pa_charset.C,
2337: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
2338: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
2339: main/pa_globals.C, main/pa_http.C, main/pa_memory.C,
2340: main/pa_os.C, main/pa_pool.C, main/pa_random.C,
2341: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
2342: main/pa_string.C, main/pa_stylesheet_connection.C,
2343: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
2344: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
2345: sql/pa_sql_driver.h, targets/apache/mod_parser3.c,
2346: targets/apache/mod_parser3_core.C, targets/apache/pa_httpd.h,
2347: targets/apache/pa_threads.C, targets/cgi/pa_threads.C,
2348: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
2349: targets/isapi/parser3isapi.C, types/pa_junction.h,
2350: types/pa_method.h, types/pa_property.h, types/pa_value.C,
2351: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
2352: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
2353: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.C,
2354: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
2355: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
2356: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
2357: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
2358: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
2359: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
2360: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
2361: types/pa_vmemcached.C, types/pa_vmemcached.h, types/pa_vmemory.h,
2362: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
2363: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
2364: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
2365: types/pa_vresponse.C, types/pa_vresponse.h,
2366: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
2367: types/pa_vstateless_object.h, types/pa_vstatus.C,
2368: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
2369: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
2370: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
2371: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
2372: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
2373:
2374: * src/targets/cgi/parser3.C: year updated
2375:
2376: * src/classes/reflection.C: VS2003 compatibility fixed (related to
2377: issue #1041)
2378:
2379: * tests/: 323.html, results/323.processed: test for base classes
2380: added
2381:
2382: * tests/: 261.html, results/261.processed: updated after better
2383: error reporting done for $string.key exception
2384:
2385: * src/types/pa_vstring.h: better error report for $string.key
2386: exception
2387:
2388: * src/types/: pa_vobject.C, pa_vobject.h: VObject::get_element
2389: copied as VObject::get_element4call to remove extra virtual call
2390:
2391: * tests/: 322.html, results/322.processed: test for
2392: ^reflection:is[] added (related to feature #1041)
2393:
2394: * src/classes/reflection.C: ^reflection:is empty value is void
2395: (related to feature #1041)
2396:
2397: * src/classes/reflection.C:
2398: ^reflection:is[class_name|code|method;[context;]element_name]
2399: added (implements feature #1041)
2400:
2401: 2015-10-24 moko
2402:
2403: * configure.ac, src/include/pa_version.h: 3.4.4b -> 3.4.4rc
2404:
1.98 moko 2405: 2015-10-22 moko
2406:
2407: * tests/: 321.html, results/321.processed: test for
2408: ^reflection:method_info[] file detection added
2409:
2410: * tests/: 320.html, results/320.processed: test for
2411: ^reflection:class_by_name[class_name] added (related to feature
2412: #993)
2413:
2414: * src/classes/reflection.C: ^reflection:class_by_name[class_name]
2415: added (implements feature #993)
2416:
2417: * src/main/execute.C: GET_ELEMENT4CALL added to get_method_filename
2418: (related to feature #1017)
2419:
2420: * tests/: 319.html, results/319.processed: ^throw[] stacktrace test
2421: added (related to issue #1039)
2422:
2423: * src/main/pa_request.C: ^throw origin fixed (related to feature
2424: #1039)
2425:
2426: * src/types/pa_vcookie.C: bugfix: expires_sec should not be called
2427: for VDate
2428:
2429: * tests/results/182.processed: updated after feature #1038
2430: implemented
2431:
2432: * tests/: 318.html, 182_dir/a6.p, results/318.processed: test for
2433: compile-time exception origin added (test for feature #1039)
2434:
2435: * src/: include/pa_request.h, main/compile.C, main/compile.y,
2436: main/pa_request.C: exception unification: compile-time exceptions
2437: now have origin, @USE origins also tracked (implements feature
2438: #1039)
2439:
2440: 2015-10-20 moko
2441:
2442: * src/main/pa_request.C: cleanup
2443:
2444: 2015-10-15 moko
2445:
2446: * src/types/pa_vtable.C: defines fixed (related to feature #1017)
2447:
2448: * src/: classes/hash.C, include/pa_opcode.h, types/pa_vhash.h,
2449: types/pa_vtable.C: new feature: no more $table.method and
2450: $hash.method, aliases for _at, _count, _key (related to feature
2451: #1017)
2452:
1.97 moko 2453: 2015-10-14 moko
2454:
1.98 moko 2455: * tests/: 317.html, results/317.processed: test for
2456: ^string.unescape[] added (related to feature #120)
2457:
1.97 moko 2458: * buildall: reverted libxml 2.9.2 -> 2.9.1 due to "ID already
2459: defined" bug (described in issue #1036)
2460:
2461: * tests/: 247.html, results/247.processed: test for checkBOM added
2462: (test for bug #1037)
2463:
2464: * src/: include/pa_charsets.h, main/pa_charsets.C,
2465: main/pa_common.C, main/pa_http.C: checkBOM detects charset if
2466: it's not enforced, skips BOM signature if it complies charset
2467: (fixes bug #1037)
2468:
2469: 2015-10-13 moko
2470:
2471: * src/targets/cgi/parser3.vcproj: disabling buggy incremental
2472: linking
2473:
2474: * src/classes/inet.C: vs2003 compilation fix
2475:
2476: * src/classes/math.C: warning war
2477:
2478: * src/lib/punycode/pa_punycode.c: warning war
2479:
2480: 2015-10-12 moko
2481:
2482: * src/lib/punycode/pa_punycode.c: warning war
2483:
2484: * parser3.sln: moved parser3 first, to make it default startup
2485: project
2486:
2487: * buildall: parser "mirror" now used for external libs sources
2488: (implements feature #1036)
2489:
2490: * buildall: most external libs are updated to their current
2491: versions (related to feature #1036)
2492:
2493: * src/classes/image.C: more tags added
2494:
2495: * src/: include/pa_memory.h, types/pa_vdate.C: warning war
2496:
2497: 2015-10-11 moko
2498:
2499: * src/classes/curl.C: minor optimization (related to feature #1035)
2500:
2501: 2015-10-09 moko
2502:
2503: * src/classes/curl.C: pa_strdup added for strings from curl
2504: (related to feature #1035)
2505:
2506: * src/main/pa_string.C: mini fix: RedHat 7.2 does not have
2507: ULLONG_MAX definition
2508:
2509: * src/classes/curl.C: ^curl:info[name]/^curl:info[] added
2510: (implements feature #1035)
2511:
2512: * src/main/pa_charset.C: String::Body(String::C) used
2513:
2514: * src/main/pa_charset.C: exceptions unified
2515:
2516: * src/: include/pa_charset.h, main/pa_charset.C: declarations
2517: unified
2518:
2519: * src/: classes/file.C, classes/image.C, classes/mail.C,
2520: classes/op.C, classes/xdoc.C, classes/xnode.C,
2521: include/pa_string.h, main/pa_request.C, main/pa_string.C,
2522: types/pa_vimage.C, types/pa_vmath.C, types/pa_vstatus.C,
2523: types/pa_vxdoc.C: explicit String::Body(char) calls removed;
2524: String::Body(String::C) constructor added (related to bug #957)
2525:
2526: * src/classes/file.C: minor optimization
2527:
2528: * src/include/pa_hash.h: hash.get(char*) added, to minimize
2529: Cord(char*) autocreation (related to bug #957)
2530:
2531: * src/: classes/string.C, main/untaint.C: minor optimizations
2532:
2533: * src/: classes/json.C, classes/reflection.C, include/pa_string.h:
2534: String(char*, Lang, length) removed, String(C(), Lang) used
2535: instead (related to bug #957)
2536:
2537: 2015-10-08 moko
2538:
2539: * src/: classes/file.C, include/pa_string.h, lib/cord/cordbscs.c,
2540: lib/cord/include/cord.h, main/pa_http.C, main/pa_string.C,
2541: main/untaint.C: Now char * is converted to CORD only using
2542: AS_CORD() to check for empty cord bug (fixes bug #957)
2543:
2544: * src/include/pa_hash.h: fixed compilation without
2545: HASH_CODE_CACHING
2546:
2547: * src/classes/string.C:
2548: ^string:unescape[js|uri;escaped;$.charset[...]] added (implements
2549: feature #120)
2550:
2551: * src/main/pa_common.C: reduce js flags checks count (related to
2552: feature #120)
2553:
1.96 moko 2554: 2015-10-07 moko
2555:
2556: * tests/: 275.html, results/275.processed: test modified after
2557: unsigned long long int support implemented (feature #1034)
2558:
2559: * src/: classes/math.C, include/pa_string.h, main/pa_string.C:
2560: pa_atoul added for unsigned long long int support
2561:
2562: 2015-10-06 moko
2563:
2564: * src/types/pa_vdate.C: INT_MAX used
2565:
2566: 2015-10-03 moko
2567:
2568: * tests/: 302.html, results/302.processed: test for bug #1023
2569: (\u2028, \u2029 escaping) added
2570:
2571: * src/main/untaint.C: \u2028, \u2029 are now escaped in
2572: json:string[] (fixes bug #1023)
2573:
2574: 2015-09-29 moko
2575:
2576: * tests/305.html: try-catch added for OS without ipv6 support
2577:
2578: * src/lib/json/pa_json.C: more unique prefixes for Solaris
2579: compilation
2580:
2581: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.y,
2582: main/execute.C, types/pa_value.h, types/pa_vhash.h,
2583: types/pa_vtable.C, types/pa_vtable.h: get_element4call
2584: implemented to distinguish ^hash.method from $hash.field
2585: (implements feature #1017)
2586:
2587: * src/lib/punycode/pa_punycode.c: warning war
2588:
2589: * src/include/pa_config_includes.h: warning war
2590:
2591: * src/include/pa_config_includes.h: pragma warning actualized a bit
2592:
2593: * src/include/pa_config_includes.h: warning war
2594:
2595: * src/include/pa_hash.h: clang compilation fix
2596:
2597: 2015-09-27 moko
2598:
2599: * src/main/compile.tab.C: Bison 3 is now default
2600:
2601: * src/main/: compile.C, compile.y: Bison 3 compatibility fixed
2602:
2603: 2015-09-25 moko
2604:
2605: * src/: classes/hash.C, include/pa_hash.h: parser now compiles and
2606: works with undefined HASH_ORDER (related to feature #196)
2607:
2608: 2015-09-24 moko
2609:
2610: * tests/: 027.html, results/027.processed: test modified to test
2611: ^hash.sort (feature #196)
2612:
2613: * src/: classes/hash.C, include/pa_hash.h:
2614: ^hash.sort[key;value]{string-key-maker}|(numeric-key-maker)[[asc|desc]]
2615: added (implements feature #196)
2616:
2617: * tests/: 316.html, results/316.processed: Added test for bug #1025
2618: (exception handling in non-cached ^cache), plus for "it does not
2619: have logical value" and "$exception.handled value must be either
2620: boolean or string 'cache'" exceptions.
2621:
2622: * src/classes/op.C: ^cache: exceptions now handled in non-cached
2623: code (fixes bug #1025)
2624:
1.95 moko 2625: 2015-09-23 moko
2626:
2627: * src/classes/table.C: warning war
2628:
2629: * src/: classes/math.C, types/pa_vcookie.C: warning war
2630:
2631: * src/classes/file.C: warning war
2632:
2633: * src/: include/pa_table.h, main/pa_table.C: warning war
2634:
2635: * src/: main/pa_request.C, classes/date.C: warning war
2636:
2637: * src/: types/pa_vdate.C, classes/op.C: warning war
2638:
2639: * tests/: 122.html, results/122.processed: win sync: to remove
2640: differences with OS that doesn't keep timezone change history
2641:
2642: * src/types/pa_vdate.C: tzset() should be called in Windows after
2643: TZ change (related to feature #36)
2644:
2645: * tests/: 075.html, results/075.processed: win sync: to remove
2646: differences with OS that doesn't keep timezone change history
2647:
2648: * tests/: 315.html, results/315.processed: win sync: to remove
2649: differences with OS that doesn't keep timezone change history
2650:
2651: * tests/: 256.html, results/256.processed: win sync: to remove
2652: differences with OS that doesn't keep timezone change history
2653:
2654: * tests/: 124.html, results/124.processed: win results sync: to
2655: avoid hitting time change hole.
2656:
2657: * src/types/pa_vdate.C: static returned. :)
2658:
2659: 2015-09-22 moko
2660:
2661: * src/types/pa_vdate.C: FreeBSD 10 GPF fix (related to feature #36)
2662:
2663: * tests/results/131.processed: more tests for feature #1032
2664:
2665: * src/classes/date.C: minor fix related to feature #1032
2666:
2667: * operators.txt: ISO date creation documented (related to feature
2668: #1032)
2669:
2670: * operators.txt: iso-string documented (related to feature #1032)
2671:
2672: * tests/: 315.html, results/315.processed: more tests added
2673: (related to feature #1032)
2674:
2675: * tests/: 131.html, results/131.processed: date range checks
2676: updated (related to feature #36)
2677:
2678: * tests/: 315.html, results/057.processed, results/315.processed:
2679: test added for ISO date support (related to issue #315)
2680:
2681: * src/classes/date.C: more readable exceptions in date creation
2682: (related to ticket #1032)
2683:
2684: 2015-09-18 moko
2685:
2686: * tests/: 202.html, results/202.processed: ^date.iso-string[] check
2687: added (related to issue #1032)
2688:
2689: * tests/results/256.processed, src/classes/json.C: iso-string
2690: documented (related to issue #1032)
2691:
2692: * tests/: 256.html, results/256.processed: ISO date check added
2693: (related to issue #1032)
2694:
2695: * tests/: 057.html, results/057.processed, results/224.processed:
2696: tests results updated after ISO date support implemented (related
2697: to feature #1032)
2698:
2699: * src/: classes/date.C, classes/image.C, types/pa_value.h,
2700: types/pa_vdate.C, types/pa_vdate.h: ISO 8601 dates support added,
2701: ^date::create[string] constructor formalized, ^date.iso-string[]
2702: added (implements feature #1032)
2703:
2704: 2015-09-05 moko
2705:
2706: * operators.txt: actualized
2707:
2708: * operators.txt: date changes documented (related to ticket #36)
2709:
2710: 2015-09-04 moko
2711:
2712: * src/types/pa_vdate.C: warning war
2713:
2714: * src/: classes/op.C, types/pa_vhashfile.C: warning war
2715:
2716: 2015-09-03 moko
2717:
2718: * tests/results/096.processed: test result updated for 0..9999 year
2719: date range support (related to feature #36)
2720:
2721: * tests/: 314.html, results/314.processed: test for
2722: ^string:base64[], ^string:idna[], ^string:js-escape[] (related to
2723: bug #1031)
2724:
2725: * src/classes/string.C: Static calls fixed for ^string:base64[],
2726: ^string:idna[], ^string:js-escape[] (closes bug #1031)
2727:
1.116 moko 2728: * Makefile.am, acsite.m4, configure.ac, configure.in: Warning war:
2729: configure.in -> configure.ac
1.95 moko 2730:
1.116 moko 2731: * configure, configure.in, src/include/pa_config_auto.h.in: more
2732: correct timezone check for FreeBSD Warning war: configure.in ->
2733: configure.ac
1.95 moko 2734:
2735: * configure, configure.in, src/classes/Makefile.am,
1.116 moko 2736: src/include/pa_config_auto.h.in, src/lib/cord/Makefile.am,
2737: src/lib/gd/Makefile.am, src/lib/json/Makefile.am,
2738: src/lib/memcached/Makefile.am, src/lib/pcre/Makefile.am,
2739: src/lib/sdbm/Makefile.am, src/lib/smtp/Makefile.am,
2740: src/main/Makefile.am, src/targets/apache/Makefile.am,
2741: src/targets/cgi/Makefile.am, src/types/Makefile.am: INCLUDES ->
1.95 moko 2742: AM_CPPFLAGS (warning war) PA_DATE64 (0..9999 year date range)
2743: check added
2744:
2745: * src/types/pa_vdate.C: FreeBSD fixes + more robust code
2746:
2747: * tests/results/: 124.processed, 224.processed: test resuls updated
2748: for new date implementation (related to feature #36)
2749:
2750: * src/: classes/date.C, classes/image.C, include/pa_common.h,
2751: main/pa_common.C, types/pa_value.C, types/pa_vdate.C,
2752: types/pa_vdate.h: new double date implementation with internal
2753: support for extended 0..9999 year range, default timezone support
2754: (related to feature #36)
2755:
2756: 2015-08-28 moko
2757:
2758: * src/types/pa_vmail.C: fixed $mail:received.date calculations
2759: (fixes bug #1030)
2760:
2761: 2015-08-21 moko
2762:
2763: * src/classes/inet.C: snprintf size "bug" commented
2764:
2765: * src/main/pa_common.C: snprintf comments updated
2766:
2767: 2015-08-16 moko
2768:
2769: * src/types/: pa_vdate.C, pa_vdate.h: logic moved to pa_vdate.C
2770:
2771: 2015-08-11 moko
2772:
2773: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
2774: types/pa_vclass.C, types/pa_vobject.C: hash_json_string argument
2775: can be null (fixes bug #1029)
2776:
2777: 2015-08-06 moko
2778:
1.116 moko 2779: * src/types/: Makefile.am, pa_vdate.C, pa_vdate.h, types.vcproj:
2780: pa_vdate.C added
1.95 moko 2781:
2782: 2015-08-05 moko
2783:
2784: * tests/: 313.html, results/313.processed: test for
2785: ^table.count[columns] and ^table.flip[] with nameless tables
2786: (feature #1003)
2787:
2788: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
2789: max_cell added, now ^table.count[columns] and ^table.flip[] works
2790: correctly for nameless tables (implements feature #1003)
2791:
2792: 2015-08-03 moko
2793:
2794: * tests/312.html: test for ^table.append[$hash] and
2795: ^table.insert[$hash] added (related to feature #1028)
2796:
2797: * src/classes/table.C: ^table.append[$hash] and
2798: ^table.insert[$hash] now supported (implements feature #1028)
2799:
2800: * tests/: 312.html, results/312.processed: test row copy in
2801: ^table.hash[; $.type[table] ] added (related to feature #1016)
2802:
2803: * src/classes/table.C: row copy now created in ^table.hash[;
2804: $.type[table] ] (related to feature #1016)
2805:
2806: 2015-07-29 moko
2807:
2808: * tests/: 312.html, results/312.processed: test for ^table.delete[]
2809: added (related to feature #1016)
2810:
2811: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
2812: ^table.delete[] added to delete current row (related to feature
2813: 1016)
2814:
2815: 2015-07-28 moko
2816:
2817: * tests/: 312.html, results/312.processed: test for
2818: $table.column[value] and ^table.insert{row} (related to feature
2819: #1016)
2820:
2821: * src/: classes/table.C, include/pa_table.h, main/pa_table.C,
2822: types/pa_vtable.C, types/pa_vtable.h: $table.column[value] and
2823: ^table.insert{row} are now implemented (feature #1016)
2824:
2825: * src/include/pa_array.h: Optimization: bool reverse removed from
2826: append(), insert() added, memmove arguments order in remove()
2827: fixed (related to feature #1016)
2828:
2829: 2015-07-23 moko
2830:
2831: * src/classes/json.C: tainted json and empty json exception added
2832: (implements feature #1015)
2833:
2834: * tests/: 311.html, results/311.processed: empty json and tainted
2835: json exception test added (related to issue #1015)
2836:
2837: 2015-07-22 moko
2838:
2839: * tests/: 311.html, results/311.processed: test for UTF-8
2840: processing added
2841:
2842: * tests/: 311.html, results/311.processed: test for
2843: json_exception_with_source added (related to issue #394)
2844:
2845: * src/classes/json.C: json_exception_with_source added (implements
2846: feature #394)
2847:
2848: 2015-06-29 moko
2849:
2850: * src/: classes/file.C, include/pa_dir.h, main/pa_dir.C:
2851: directories are now correctly determined if _d_type == DT_UNKNOWN
2852: (closes bug #1027)
2853:
2854: 2015-06-10 moko
2855:
2856: * src/types/pa_vxnode.h: extern "C" not requred and causes build
2857: error if libxml has LIBXML_ICU_ENABLED.
2858:
2859: 2015-06-04 moko
2860:
2861: * tests/099.html: ups, reverting
2862:
2863: * tests/: 099.html, 309.html, 310.html, results/309.processed,
2864: results/310.processed: tests for $response:body[ $.file[] ] and
2865: $response:last-modified added
2866:
2867: * src/main/pa_request.C: last-modified check fixed
2868:
2869: 2015-06-03 moko
2870:
2871: * tests/: 204.html, 205.html, 293.html, results/204.processed,
2872: results/205.processed, results/293.processed: $response:headers
2873: logging added (tests for feature #1007)
2874:
2875: * src/: include/pa_common.h, include/pa_request.h,
2876: main/pa_request.C, types/pa_vmail.C, types/pa_vresponse.C:
2877: $response:headers are now in uppercase (closes feature #1007)
2878:
2879: 2015-06-02 moko
2880:
2881: * src/: include/pa_memory.h, classes/math.C: some of -pedantic
2882: build errors reverted for clang compatibility
2883:
2884: 2015-06-01 moko
2885:
2886: * src/include/pa_memory.h: -pedantic build errors fixed
2887:
2888: * src/classes/math.C: -pedantic build error fixed
2889:
2890: * src/classes/table.C: USE_STRINGSTREAM moved to the correct place
2891:
2892: 2015-05-31 moko
2893:
2894: * src/classes/table.C: USE_STRINGSTREAM optimized
2895:
2896: * src/: classes/file.C, classes/math.C, include/pa_opcode.h,
2897: include/pa_string.h, lib/json/pa_json.h, main/compile_tools.h,
2898: main/pa_charset.C, main/pa_globals.C, main/pa_string.C,
2899: types/pa_vmail.C, types/pa_vmethod_frame.C, types/pa_vregex.C,
2900: types/pa_vxnode.h: warning war (-pedantic flag)
2901:
2902: 2015-05-28 moko
2903:
2904: * tests/: 308.html, results/308.processed: test for
2905: ^table::create[$t;], etc work added (related to bug #975)
2906:
2907: * src/classes/table.C: check_option_param removed,
2908: ^table::create[$t;], etc now works (fixes bug #975)
2909:
2910: 2015-05-27 moko
2911:
2912: * src/main/pa_request.C: Invalid response filename in gcc 4.9.2
2913: (Debian jessie) fixed (closes issue #1024)
2914:
2915: * tests/Makefile: sort added as in Debian jessie list become
2916: unsorted
2917:
2918: 2015-05-18 moko
2919:
2920: * tests/: 201.html, results/201.processed: test for
2921: ^string.trim[what] feature #1022
2922:
2923: * src/classes/string.C: ^string.trim[what] now supported,
2924: implements feature #1022
2925:
2926: 2015-05-17 moko
2927:
2928: * tests/results/185.processed: test result updated as feature #1021
2929: implemented (left/right accept negative parameter)
2930:
2931: * src/classes/string.C: left/right now accept negative parameter
2932: (implements feature #1021)
2933:
2934: 2015-05-08 moko
2935:
2936: * src/classes/math.C: isalnum -> pa_isalnum
2937:
2938: * src/main/execute.C: optimization in getter-junction processing
2939: (related to issue #997)
2940:
2941: 2015-05-07 moko
2942:
2943: * tests/: 307.html, results/307.processed: test for issue #997
2944: added
2945:
2946: * src/main/execute.C: process_getter result now checked if junction
2947: returned (closes issue #997)
2948:
2949: * tests/: 305.html, results/305.processed: sort added to ignore
2950: different order
2951:
2952: * src/types/pa_vxnode.C: & now untainted in $node.nodeValue
2953: assignment (closes issue #994)
2954:
2955: * tests/: 306.html, results/306.processed: test for issue #994
2956: added
2957:
2958: * tests/: 303.html, results/303.processed: two more errors tested
2959:
2960: 2015-05-06 moko
2961:
2962: * tests/: 305.html, results/305.processed: test for name2ip &
2963: ip2name added (related to feature #992)
2964:
2965: * tests/: 303.html, 304.html, results/303.processed,
2966: results/304.processed: tests for idna conversion added (related
2967: to issue #849)
2968:
2969: 2015-05-02 moko
2970:
2971: * src/classes/inet.C: ^inet:ip2name[] and ^inet:name2ip[]
2972: implemented
2973:
2974: 2015-04-30 moko
2975:
2976: * src/main/pa_http.C: idna_host added, related to issue #849
2977:
2978: * src/main/pa_http.C: set_addr corrected, pa_idna_encode call added
2979: (related to issue #849)
2980:
2981: 2015-04-24 moko
2982:
2983: * src/types/pa_vjunction.C: warning war
2984:
2985: * src/lib/punycode/: pa_idna.h, pa_punycode.h: code style
2986: unification
2987:
2988: * src/lib/punycode/pa_idna.c: warning war
2989:
2990: 2015-04-22 moko
2991:
2992: * src/main/main.vcproj: punycode include path added
2993:
2994: * src/lib/punycode/pa_idna.c: windows compile error fixed
2995:
2996: * src/lib/punycode/pa_idna.c: warning war
2997:
2998: * parser3.sln, src/lib/punycode/punycode.vcproj: punycode windows
2999: project file added
3000:
3001: * src/lib/punycode/pa_convert_utf.c: debug compilation fix
3002:
3003: * src/include/pa_memory.h: warning war
3004:
3005: * src/: classes/string.C, include/pa_common.h, main/pa_common.C:
3006: ^string:idna[xn--...], ^string.idna[] - idna conversion support
3007: implemented (related to feature #849)
3008:
3009: * configure.in, src/main/Makefile.am,
3010: src/targets/apache/Makefile.am, src/targets/cgi/Makefile.am:
3011: libpunycode added in Unix
3012:
3013: 2015-04-21 moko
3014:
3015: * configure.in: large files support
3016:
3017: 2015-04-15 moko
3018:
3019: * src/lib/punycode/: Makefile.am, pa_convert_utf.c,
3020: pa_convert_utf.h, pa_idna.c, pa_idna.h, pa_punycode.c,
3021: pa_punycode.h: initial version for punycode/idna support library
3022: (ticket #849)
3023:
3024: 2015-04-08 moko
3025:
3026: * src/: classes/curl.C, classes/date.C, classes/file.C,
3027: classes/image.C, classes/mail.C, classes/reflection.C,
3028: classes/string.C, classes/xnode.C, include/pa_request.h,
3029: include/pa_string.h, include/pa_stylesheet_connection.h,
3030: main/compile.y, main/compile_tools.h, main/execute.C,
3031: main/pa_common.C, main/pa_request.C, main/pa_string.C,
3032: main/pa_xml_io.C, main/untaint.C, types/pa_vclass.C,
3033: types/pa_vcookie.C, types/pa_vfile.C, types/pa_vform.C,
3034: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
3035: types/pa_wwrapper.h, main/compile.tab.C: removed most of the
3036: clang compiler warnings (closes issue #1018)
3037:
3038: * src/include/pa_string.h: String::Body comparation operators with
3039: char * added (related to issue #958)
3040:
3041: 2015-04-07 moko
3042:
3043: * src/main/compile.tab.C: YYMALLOC/YYFREE defined to
3044: pa_malloc/pa_free to remove system malloc/free usage (related to
3045: issue #1018)
3046:
3047: * src/: classes/table.C, classes/xdoc.C, doc/memory.dox,
3048: include/pa_hash.h, include/pa_memory.h, lib/gd/gif.C,
3049: lib/gd/gif.h, lib/smtp/smtp.C, main/compile.y, main/pa_charset.C,
3050: main/pa_http.C, main/pa_request.C, main/pa_string.C,
3051: main/pa_xml_io.C, targets/apache/mod_parser3_core.C,
3052: types/pa_vconsole.h, types/pa_vdouble.h, types/pa_vfile.C,
3053: types/pa_vform.C, types/pa_vint.h: new(UseGC) replaced with new,
3054: malloc/strdup/free replaced with pa_ version and checks for
3055: accidental use of non-pa_ version added (related to issue #1018)
3056:
3057: 2015-04-03 moko
3058:
3059: * buildall: pcre-8.33 -> pcre-8.36
3060:
3061: * src/: main/compile.y, classes/form.C, classes/mail.C,
3062: classes/op.C, classes/string.C, main/compile.tab.C,
3063: main/compile_tools.C, main/pa_http.C, main/pa_request.C,
3064: main/pa_sql_driver_manager.C, types/pa_vfile.C,
3065: types/pa_vhashfile.C: C++11 compilation errors fixed (related to
3066: ticket #958)
3067:
3068: * src/: classes/file.C, include/pa_common.h, include/pa_sapi.h,
3069: main/pa_common.C, main/pa_http.C, main/pa_request.C,
3070: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
3071: targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_vform.C,
3072: types/pa_vform.h, types/pa_vrequest.C, types/pa_vrequest.h:
3073: $request:headers, $request:method added (implements feature
3074: #1007)
3075:
3076: 2015-03-17 misha
3077:
3078: * tests/302.html: - test for
3079: ^json:string[...;$._default[method-name]]
3080:
3081: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
3082: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C: - if
3083: option $._default[method-name] is specified in ^json:string[], a
3084: method with specified name will be called for classes/objects
3085: serialization ( new feature: #982 )
3086:
3087: 2015-03-16 misha
3088:
3089: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
3090: main/compile_tools.h, main/execute.C, types/pa_vconsole.h,
3091: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.C,
3092: types/pa_venv.h, types/pa_vform.C, types/pa_vform.h,
3093: types/pa_vhashfile.h, types/pa_vjunction.C, types/pa_vjunction.h,
3094: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
3095: types/pa_vmemory.h, types/pa_vmethod_frame.C,
3096: types/pa_vmethod_frame.h, types/pa_vregex.C, types/pa_vrequest.C,
3097: types/pa_vrequest.h, types/pa_vstateless_class.C,
3098: types/pa_vstateless_class.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
3099: types/pa_vxnode.C, types/pa_vxnode.h: - $var.CLASS &
3100: $var.CLASS_NAME now have special opcodes. This can be switched
3101: off by commenting #define OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL
3102: on pa_opcode.h ( new feature: #844 )
3103:
3104: 2015-03-15 misha
3105:
3106: * tests/075.html: - test for $response:header[]
3107:
3108: * src/types/pa_vresponse.C: - $response:header[] deletes header
3109: that was set earlie ( new feature: #1001 )
3110:
3111: 2015-03-12 misha
3112:
3113: * tests/246.html: - more tests for ^hash._at[]
3114:
3115: * src/: classes/hash.C, include/pa_hash.h: - ^õýø._at[...] now
3116: accepts second param [key|value|hash] ( new feature: #1012 )
3117:
3118: 2015-03-09 moko
3119:
3120: * src/types/pa_vmail.C: exception for everything but
3121: $mail:received, closes issue #1011
3122:
3123: 2015-02-20 moko
3124:
3125: * tests/: 275.html, results/275.processed: hex detection in
3126: pa_atoui fix test (closes issue #1010)
3127:
3128: * src/main/pa_string.C: hex detection in pa_atoui fixed (closes
3129: issue #1010)
3130:
3131: 2015-02-17 moko
3132:
3133: * src/types/pa_vmail.C: closes issue #1009 - mail content should be
3134: tainted.
3135:
3136: 2015-02-03 misha
3137:
3138: * tests/301.html: - test for ^json:string($double) causes
3139: exception. bugfix: #1008
3140:
3141: * src/classes/json.C: - ^json:string($double) causes exception.
3142: bugfix: #1008
3143:
3144: * tests/014.html: - updated for work with ^hash.delete[]
3145:
3146: 2015-01-12 misha
3147:
3148: * src/: classes/form.C, include/pa_common.h,
3149: include/pa_request_info.h, main/pa_common.C, types/pa_vform.C,
3150: types/pa_vform.h: - supports body with PUT method as well ( new
3151: feature: #1006 )
3152:
3153: * src/classes/file.C: - warnings war
3154:
3155: 2015-01-11 misha
3156:
3157: * tests/300.html: - test for ^hash.delete[] is added
3158:
3159: * src/classes/hash.C: - ^hash.delete[] clear all hash ( new
3160: feature: #989 ) - tiny optimization in intersects
3161:
3162: 2015-01-06 moko
3163:
3164: * src/types/pa_vmail.C: file names transcode added, to and cc added
3165: with transcode, attachments detection fixed
3166:
3167: * src/main/pa_request.C: filling mail received after cgi/auto.p
3168: load to allow charset switch (related to issue #996)
3169:
3170: 2014-12-31 moko
3171:
3172: * src/types/pa_vmail.C: from and subject now transcoded if not
3173: UTF-8 source charset (fixes issue 996)
3174:
3175: * src/main/pa_exception.C: fixed string from stack bug (closes
3176: issue #1000)
3177:
3178: 2014-12-11 misha
3179:
3180: * src/types/pa_vhashfile.C: - check if key is not empty before
3181: access ( bug fix: #1005 )
3182:
3183: 2014-11-13 misha
3184:
3185: * src/main/compile.y: - PC.append does not reset to false while
3186: creating a new class. bugfix: #990
3187:
3188: * tests/299.html: - test for creation class after working with
3189: partial class (create+append)
3190:
3191: * src/types/pa_vobject.C: - @GET[def] always returns true. bugfix:
3192: #995
3193:
3194: * tests/232.html: - test for @get[def] added
3195:
3196: 2014-10-12 moko
3197:
3198: * src/lib/pcre/pcre_internal.vcproj: correct path
3199:
3200: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
3201: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
3202: lib/pcre/pcre_internal.vcproj, main/main.vcproj,
3203: targets/apache/ApacheModuleParser3.vcproj,
3204: targets/apache/ApacheModuleParser3Core.vcproj,
3205: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
3206: types/types.vcproj: project GUID inserted in *.vcproj for correct
3207: conversion in newer VS versions
3208:
3209: * parser3.sln, src/lib/pcre/pcre_internal.vcproj:
3210: pcre_internal.vcproj added
3211:
3212: 2014-08-28 moko
3213:
3214: * src/lib/pcre/: Makefile.am, pa_pcre_chartables.c,
3215: pa_pcre_internal.h, pa_pcre_valid_utf8.c: _pcre_default_tables
3216: and pcre_valid_utf are copied to parser3 code (fixes issue #991)
3217:
3218: 2014-06-30 misha
3219:
3220: * tests/298.html: - tests for ^reflection:def[class;className]
3221: added
3222:
3223: * src/classes/reflection.C: - ^reflection:def[class;className]
3224: added ( new feature: #918 )
3225:
3226: 2014-06-29 misha
3227:
3228: * src/classes/table.C: - ^table::create[unsupported data] -
3229: exception comment changed to "body must be table or code" ( bug
3230: fix: #951 )
3231:
3232: * tests/: 261.html, results/261.processed: - tests for
3233: ^json:string[...;$.void[null|string]] added
3234:
3235: * src/: classes/json.C, types/pa_value.h, types/pa_vvoid.h: - new
3236: option $.void[string|null] added to ^json:string[...] ( new
3237: feature: #952 )
3238:
3239: 2014-06-28 moko
3240:
3241: * src/classes/curl.C: $.charset now processed before other curl
3242: options (closes issue #980)
3243:
3244: 2014-05-23 misha
3245:
3246: * src/classes/json.C: - bug fix: #987
3247:
3248: 2014-05-04 misha
3249:
3250: * tests/: 253.html, 253_json.txt: - test for
3251: ^json:parse[$.int(false)] is added
3252:
3253: * src/classes/json.C: - To ^json:parse[] added option $.int(bool,
3254: default true). The option is similar to $.double(bool) but for
3255: integers.
3256:
3257: 2014-05-01 moko
3258:
3259: * src/classes/file.C: "PARSER_VERSION" -> PARSER_VERSION ( bugfix:
3260: #12 )
3261:
3262: 2014-04-16 moko
3263:
3264: * src/main/pa_http.C: response-charset option should finally work
3265: now (fix for issue #867)
3266:
3267: * src/main/pa_http.C: response-charset option should work now (fix
3268: for issue #867)
3269:
3270: 2014-03-07 moko
3271:
3272: * buildall: libgc moved
3273:
3274: * buildall: libgc moved
3275:
3276: 2013-12-29 moko
3277:
3278: * src/classes/string.C: ^string:js-unescape result now tainted,
3279: closes issue #966
3280:
3281: * tests/: 186.html, results/186.processed: ^string:js-unescape
3282: result now tainted, issue #966
3283:
3284: 2013-12-03 moko
3285:
3286: * src/: classes/memcached.C, types/pa_vmemcached.C,
3287: types/pa_vmemcached.h: memcached open $.skip-connect(true|false)
3288: option was added for http://www.parser.ru/forum/?id=79343
3289:
3290: * src/classes/file.C: bugfix for
3291: http://www.parser.ru/forum/?id=79337
3292:
3293: 2013-11-05 moko
3294:
3295: * configure.in, src/include/pa_version.h: 3.4.3 -> 3.4.4b
3296:
3297: * src/main/pa_globals.C: spelling fixed
3298:
3299: 2013-10-29 moko
3300:
3301: * src/lib/json/json.vcproj: json.c -> pa_json.C
3302:
3303: * src/lib/json/pa_json.C: C++ compatibility addes, related to issue
3304: #892
3305:
3306: * src/: classes/json.C, lib/json/Makefile.am, lib/json/json.c,
3307: lib/json/json.h, lib/json/pa_json.C: json.c -> pa_json.C (for
3308: exceptions to be thrown thougth json library), related to issue
3309: #892
3310:
3311: * src/main/pa_charset.C: avoid compilation bug in Debian 6.0.8 x32,
3312: related to issue #896
3313:
3314: 2013-10-24 moko
3315:
3316: * configure.in, src/include/pa_version.h: 3.4.3rc -> 3.4.3
3317:
3318: 2013-10-23 moko
3319:
3320: * README: actualization
3321:
3322: 2013-10-22 moko
3323:
3324: * src/targets/apache/mod_parser3.c: Adopted apache 2.4
3325: compatibility patch from Sergey Kirpichev
3326:
3327: * tests/: 297.html, results/297.processed: non-working getter fix
3328: test for issue #948
3329:
3330: * src/: include/pa_request.h, main/pa_request.C: Now getter is not
3331: called when saving value of $match variable in ^string.match[] to
3332: increase compatibility (related to issue #948).
3333:
3334: * src/: include/pa_request.h, targets/cgi/parser3.C: minor header
3335: usage optimization
3336:
3337: 2013-10-21 moko
3338:
3339: * tests/: 182.html, results/182.processed: local path removed for
3340: compatibility
3341:
3342: * tests/: 244.html, 253.html, 254.html, 275.html, 281.html,
3343: results/244.processed, results/253.processed,
3344: results/254.processed, results/275.processed,
3345: results/281.processed: try_catch -> try-catch
3346:
3347: * tests/: 288.html, 294.html, 296.html, results/288.processed,
3348: results/294.processed, results/296.processed: try_catch ->
3349: try-catch
3350:
3351: 2013-10-20 moko
3352:
3353: * tests/: 296.html, results/296.processed: test for xsl exception
3354: for issue #938 added.
3355:
3356: * src/: include/pa_xml_exception.h,
3357: main/pa_stylesheet_connection.C: forgotten to be replaced
3358: XmlException is now replaced (once again closes issue #938)
3359:
3360: 2013-10-19 misha
3361:
3362: * bin/auto.p.dist.in: - more mime-types are added
3363:
3364: 2013-10-18 moko
3365:
3366: * buildall: disable clock_gettime detection to avoid librt linking
3367: (which in turn depends on libpthread), related to issue #943
3368:
3369: 2013-10-18 misha
3370:
3371: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
3372: lib/smtp/smtp.vcproj, main/main.vcproj,
3373: targets/apache/ApacheModuleParser3Core.vcproj,
3374: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
3375: types/types.vcproj: - new locations for libxml2 includes where
3376: added to vcproj files
3377:
3378: 2013-10-18 moko
3379:
3380: * src/classes/: hashfile.C, op.C: hopefully last part of issue #948
3381: fix
3382:
3383: * tests/: 295.html, results/295.processed: test for issue #948
3384: updated
3385:
3386: * src/classes/table.C: hopefully last lost part for issue #948 fix.
3387: :)
3388:
3389: * tests/: 295.html, results/295.processed: test for issue #948
3390: added
3391:
3392: * src/: classes/hash.C, classes/string.C, classes/table.C,
3393: include/pa_request.h, types/pa_method.h: for getters and setters
3394: to be executed request.put_element should be called, not
3395: context.put_element (fixes issue #948)
3396:
3397: 2013-10-17 moko
3398:
3399: * src/classes/xdoc.C: libxml 2.9.1 compatibility with define
3400: LIBXML2_NEW_BUFFER check (closes issue #943)
3401:
3402: * buildall: libxml 2.9.1 build is broken --without-reader.
3403:
3404: 2013-10-16 moko
3405:
3406: * configure.in, src/include/pa_version.h: 3.4.3b -> 3.4.3rc
3407:
3408: * tests/: 294.html, results/294.processed: test for issue #938
3409:
3410: * src/: classes/xdoc.C, classes/xnode.C,
3411: include/pa_xml_exception.h, main/pa_xml_exception.C: XmlException
3412: now calls fixUTF8 if source charset is UTF-8 (closes issue #938)
3413:
3414: * buildall: pcre-8.30 -> pcre-8.33 libxml2-2.8.0 -> libxml2-2.9.1
3415: libxslt-1.1.26 -> libxslt-1.1.28
3416:
3417: * src/: include/pa_charset.h, lib/pcre/pa_pcre_internal.h,
3418: main/pa_charset.C: fixUTF8 method added to replace invalid UTF-8
3419: to '?', related to issue #938
3420:
3421: 2013-10-15 moko
3422:
3423: * src/: include/pa_common.h, main/pa_charset.C, main/pa_common.C,
3424: main/untaint.C: json chars 0x01-0x1F now are escaped as \u00XX,
3425: minor optimizations (closes issue #896)
3426:
3427: * tests/results/: 292.processed, 293.processed: results updated to
3428: comply with issue #896
3429:
3430: * tests/: 292.html, 293.html, results/292.processed,
3431: results/293.processed: tests for json escaping
3432:
3433: 2013-10-14 moko
3434:
3435: * src/: include/pa_common.h, main/pa_common.C: minor rearrangements
3436: and cleanup, code moved from .h to .C, no changes in code
3437:
3438: 2013-10-12 moko
3439:
3440: * tests/results/119.processed: updated test result commited
3441:
3442: * tests/: 291.html, results/291.processed: test for issue #894
3443: added
3444:
3445: * src/types/pa_wcontext.h: base methods call support function
3446: get_somebody_entered_some_class should not be true forever, as
3447: wcontext can have many get_elements calls (fixes issue #894)
3448:
3449: 2013-10-11 moko
3450:
3451: * tests/: 290.html, results/290.processed: test for junction GPF
3452: issue #942 added
3453:
3454: * src/types/pa_vmethod_frame.h: GPF if method junctions is passed
3455: to native method fixed (closes issue #942)
3456:
3457: * tests/: 158.html, results/158.processed: test for csv-string[]
3458: added
3459:
3460: * src/classes/table.C: minor fixes for table.csv-string[] (closes
3461: feature #907)
3462:
3463: * src/classes/table.C: ^table.csv-string[] from misha@ (implements
3464: feature #907)
3465:
3466: 2013-10-09 moko
3467:
3468: * src/: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
3469: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
3470: types/pa_vstateless_class.C: GET_default, SET_default now works
3471: properly not only in objects, but in classes as well (closes
3472: issue #903)
3473:
3474: * tests/: 289.html, results/289.processed: GET/SET_default now
3475: works in classes, not only objects, test case added, related to
3476: issue #903
3477:
3478: * tests/: 288.html, results/288.processed: test for endless
3479: recursion bug added (related to issue #903)
3480:
3481: 2013-10-05 moko
3482:
3483: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
3484: classes/table.C, main/execute.C, types/pa_method.h,
3485: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
3486: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
3487: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
3488: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmemcached.C,
3489: types/pa_vmemcached.h, types/pa_vmethod_frame.h,
3490: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
3491: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
3492: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
3493: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
3494: optimization: put_element no longer has "bool areplace" argument,
3495: related to issue #903
3496:
3497: 2013-10-03 moko
3498:
3499: * tests/results/182.processed: result for $.replace(false) test
3500: commited
3501:
3502: * src/classes/date.C: ^date::create(number) processed correctly
3503: (fixes issue #901)
3504:
3505: * src/classes/image.C: as_no_junction removed, as param can be
3506: expression (closes issue #931)
3507:
3508: * tests/233.html: test for issue #931 added
3509:
3510: 2013-10-02 moko
3511:
3512: * tests/: 182.html, 182_dir/a5.p: test for $.replace(true)
3513: modified, test for $.replace(false) added
3514:
3515: * src/main/compile_tools.h: forgotten class replace returned. :)
3516:
3517: 2013-09-30 moko
3518:
3519: * tests/: 141.html, results/141.processed: md5 tainting test added
3520:
3521: * src/: classes/op.C, include/pa_request.h, main/compile.y,
3522: main/compile_tools.h, main/pa_request.C: allow_class_replace
3523: implemented; $.replace option added to ^process and ^use
3524:
3525: 2013-08-27 moko
3526:
3527: * src/classes/: file.C, json.C, math.C, string.C, xdoc.C:
3528: cstr_to_string_body_untaint should be called with charsets for
3529: possible uri language and connection for possible sql language.
3530: related to issue #857
3531:
3532: * buildall: and -> or fixed
3533:
3534: 2013-08-26 moko
3535:
3536: * buildall: prepare_ functions logic changed to support
3537: gc-7.2d.tar.gz extracting to gc-7.2 directory
3538:
3539: 2013-08-23 moko
3540:
3541: * src/include/pa_config_fixed.h: gc and xml libs are now linked
3542: statically
3543:
3544: 2013-08-22 moko
3545:
3546: * src/classes/string.C: String::Empty used (related to issue #912)
3547: append_know_length removed (related to old GPF bug)
3548:
3549: 2013-08-21 moko
3550:
3551: * src/classes/math.C: untaint(L_AS_IS) added for md5 and sha1
3552:
3553: * src/classes/math.C: ^math:digest[...;$file] support added
3554: (related to ticket #857
3555:
3556: * tests/: 141.html, results/141.processed: ^math:digest[...;$file]
3557: implemented
3558:
3559: * src/types/pa_vhashfile.h: warning war
3560:
3561: * src/: classes/json.C, classes/op.C, include/pa_hash.h,
3562: include/pa_request.h, main/pa_request.C, types/pa_value.h:
3563: anti_endless_json_string_recoursion removed from request;
3564: json_string_recoursion added to json_options; $.indent[indent
3565: value] now supported and passed within recoursion closes feature
3566: #937
3567:
3568: * tests/: 287.html, results/287.processed: test for feature #937
3569:
3570: 2013-07-31 moko
3571:
3572: * src/lib/json/: json.c, pa_json.C: STATE__X -> STATE_XX for cygwin
3573: compilation having #define _S
3574:
3575: * src/main/pa_globals.C: cleanup
3576:
3577: 2013-07-30 moko
3578:
3579: * src/: classes/table.C, include/pa_common.h, main/pa_charset.C,
3580: main/pa_common.C: vs2003 warning war
3581:
3582: * src/lib/json/: json.c, pa_json.C: vs2003 warning war
3583:
3584: * src/lib/json/: json.c, pa_json.C: vs2003 compilation fix
3585:
3586: * src/lib/md5/pa_sha2.c: warning war
3587:
3588: 2013-07-29 moko
3589:
3590: * src/lib/json/: json.c, json.h, pa_json.C, pa_json.h: some libjson
3591: patches from github
3592:
3593: * src/: classes/bool.C, classes/double.C, classes/int.C,
3594: classes/memcached.C, include/pa_config_includes.h,
3595: types/pa_vfile.C, types/pa_vfile.h: warning war
3596:
3597: * src/lib/json/json.vcproj: C++ -> C
3598:
3599: * src/lib/json/: json.c, pa_json.C: C++ warning revert
3600:
3601: * src/lib/json/: json.c, pa_json.C: windows compatibility
3602:
3603: * src/lib/json/: json.c, pa_json.C: windows compatibility
3604:
3605: * src/lib/json/: json.c, pa_json.C: warning war
3606:
3607: * src/lib/json/: json.c, pa_json.C: win32 compilation issues fixes
3608:
3609: * src/include/pa_config_fixed.h: uint16_t added
3610:
3611: * configure.in: uint16_t check added
3612:
3613: * src/: classes/json.C, lib/json/JSON_parser.C,
1.116 moko 3614: lib/json/JSON_parser.h, lib/json/Makefile.am, lib/json/json.c,
3615: lib/json/json.h, lib/json/json.vcproj, lib/json/pa_json.C,
3616: lib/json/pa_json.h: JSON_parser with non-free licence is replaced
3617: with similar GPL licenced libjson (fixes issue #892)
1.95 moko 3618:
3619: 2013-07-25 moko
3620:
3621: * parser3.sln: dependencies added
3622:
3623: * parser3.sln, src/targets/apache/ApacheModuleParser3.vcproj,
3624: src/targets/apache/ApacheModuleParser3Core.vcproj: win32 apache
3625: module support
3626:
3627: * src/targets/apache/mod_parser3_core.C: win32 cleanup
3628:
3629: * src/targets/apache/mod_parser3.c: win32 apache 2.2 module
3630:
3631: 2013-07-23 moko
3632:
3633: * src/: include/pa_memory.h, main/pa_memory.C: non-working
3634: PA_DEBUG_GC_MEMORY removed
3635:
3636: * src/: main/pa_globals.C, targets/cgi/parser3.C:
3637: PA_DEBUG_DISABLE_GC compilation fix
3638:
3639: * src/: classes/op.C, classes/table.C, include/pa_request.h,
3640: main/pa_request.C: outdated RESOURCES_DEBUG removed
3641:
3642: * src/: main/pa_os.C, targets/cgi/parser3.C: headers cleanup,
3643: garbage cleanup
3644:
3645: * src/main/pa_common.C: warning war
3646:
3647: * src/: include/pa_http.h, main/pa_http.C: headers cleanup
3648:
3649: * src/: include/pa_common.h, main/pa_common.C: WIN32 -> _MSC_VER,
3650: minor cleanup
3651:
3652: * src/: include/pa_dir.h, main/pa_dir.C: loaddir under cygwin now
3653: uses cygwin, not WIN32 implementation
3654:
3655: * src/main/pa_exec.C: WIN32 -> _MSC_VER, under cygwin unix exec is
3656: able to exec shell scripts
3657:
3658: * src/classes/math.C: ifdef WIN32 cleanup
3659:
3660: * src/types/pa_vmemcached.C: LT_MODULE_EXT used
3661:
3662: * bin/auto.p.dist.in: libpq.so -> libpq.
3663:
3664: * src/classes/curl.C: LT_MODULE_EXT used
3665:
3666: * src/include/pa_config_fixed.h: LT_MODULE_EXT defined
3667:
3668: 2013-07-22 moko
3669:
3670: * src/include/: pa_config_fixed.h, pa_config_includes.h: win32
3671: includes fix
3672:
3673: * src/: main/pa_common.C, targets/cgi/parser3.C: includes cleanup
3674:
3675: * configure.in, src/include/pa_config_includes.h,
3676: src/lib/smtp/comms.C, src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
3677: src/main/pa_exec.C: includes cleanup
3678:
3679: * src/targets/cgi/parser3.C: 2012->2013
3680:
3681: * src/include/pa_version.h: 3.4.2 -> 3.4.3b
3682:
3683: * configure.in, src/include/pa_config_includes.h,
3684: src/include/pa_http.h, src/lib/json/JSON_parser.h,
3685: src/main/pa_random.C, src/main/pa_socks.C,
3686: src/types/pa_vstatus.C: cygwin support cleanup
3687:
3688: * configure.in: dirent.h check added
3689:
3690: * src/: include/pa_config_includes.h, include/pa_dir.h,
3691: main/pa_dir.C: includes cleanup, dirent.h check added filePath
3692: not copied
3693:
3694: 2013-07-21 moko
3695:
3696: * src/lib/cord/cord.vcproj: unused cordprnt.c removed
3697:
3698: * src/targets/cgi/: Makefile.am, getopt.c, getopt.h,
3699: parser3.vcproj: unused getopt.h / getopt.c removed
3700:
3701: * operators.txt, src/classes/file.C, tests/022.html,
3702: tests/results/022.processed: ^file:list[path][$.filter[regexp]
3703: $.stat(true)] usage commented
3704:
3705: * configure.in, src/classes/file.C, src/include/pa_dir.h,
3706: src/main/pa_dir.C: ^file:list[] now has dir column and when
3707: $.stat(true) it has size/*date columns modified patch from misha@
3708: that closes issue #914.
3709:
3710: * src/: include/pa_config_includes.h, main/pa_globals.C:
3711: PA_RELEASE_ASSERTS removed
3712:
3713: * src/lib/md5/pa_md5c.c: minor cleanup
3714:
3715: * src/lib/json/: JSON_parser.C, JSON_parser.h: headers cleanup,
3716: localeconv()->decimal_point usage remoed (related to issue #934)
3717:
3718: * src/lib/cord/: Makefile.am, cordprnt.c, include/cord.h: unused
3719: cordprnt.c removed
3720:
3721: * src/lib/sdbm/: sdbm.c, sdbm_pair.c, pa-include/pa_apr.h,
3722: pa-include/pa_errno.h, pa-include/pa_file_io.h,
3723: pa-include/pa_strings.h: includes cleanup
3724:
3725: * src/lib/md5/pa_md5c.c: headers cleanup
3726:
3727: 2013-07-20 moko
3728:
3729: * src/lib/cord/: cordbscs.c, cordprnt.c, cordxtra.c: includes
3730: cleanup
3731:
3732: 2013-07-19 moko
3733:
3734: * src/classes/math.C: extern "C" added for crypt
3735:
3736: 2013-07-18 moko
3737:
3738: * src/classes/math.C: fix redhat7.2 build
3739:
3740: 2013-07-17 moko
3741:
3742: * configure.in, src/include/pa_config_includes.h,
3743: src/include/pa_config_fixed.h: headers actualized (inttypes.h
3744: added for uint8/32/64_t)
3745:
3746: * src/lib/md5/: pa_md5.h, pa_md5c.c, pa_sha2.c, pa_sha2.h:
3747: pa_config_includes.h used for uint32/64_t
3748:
3749: 2013-07-16 moko
3750:
3751: * src/: include/pa_string.h, main/pa_string.C, types/pa_vform.C,
3752: types/pa_vform.h, types/pa_vobject.C, types/pa_vobject.h: warning
3753: war
3754:
3755: * src/main/compile.tab.C: compile.y was updated
3756:
3757: * src/main/compile.y: warning war
3758:
3759: * src/: include/pa_exception.h, main/pa_exception.C,
3760: main/pa_xml_exception.C: warning war
3761:
3762: * src/: include/pa_common.h, main/pa_common.C: warning war
3763:
3764: * configure.in: beauty :)
3765:
3766: * tests/: 141.html, results/141.processed: sha256/512 added
3767:
3768: 2013-07-13 moko
3769:
3770: * src/lib/md5/md5.vcproj: sha2 added
3771:
3772: * src/: lib/md5/pa_sha2.c, lib/md5/pa_sha2.h, lib/md5/Makefile.am,
3773: classes/math.C: sha2 support (sha256/sha512 digest)
3774:
3775: 2013-07-08 moko
3776:
3777: * src/classes/image.C: directory read or other read problem message
3778: fixed (related to issue #933)
3779:
3780: 2013-07-07 moko
3781:
3782: * bin/auto.p.dist.in: windows-1251 commented to remove auto.p
3783: dependense from $charsetsdir directory existance and content (and
3784: UTF-8 is default allready)
3785:
3786: * AUTHORS: + misha + moko. :)
3787:
3788: 2013-07-06 moko
3789:
3790: * src/: classes/curl.C, include/pa_globals.h,
3791: include/pa_sql_driver_manager.h, lib/memcached/pa_memcached.C,
3792: main/pa_globals.C, main/pa_sql_driver_manager.C: pa_dlinit added
3793: for lt_dlinit to be called once and lt_dlexit called at right
3794: place (related to issue #925)
3795:
3796: 2013-07-04 moko
3797:
3798: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstring.C:
3799: VString::as_vfile now uses vfile.set_binary_string to avoid
3800: content-type to be set, as it brokes badly designed logic in
3801: response output. This hopefully finishes issue #928.
3802:
3803: * tests/results/: 256.processed, 286.processed: file now displayed
3804: as name, size, mode, content-type
3805:
3806: * src/main/pa_common.C: read error now reported cottectly (fixes
3807: issue #933
3808:
3809: 2013-06-28 moko
3810:
3811: * tests/: 286.html, results/286.processed: test extended
3812:
3813: * tests/: 286.html, results/286.processed: Test for issue #928
3814: added. it tests default content-type change.
3815:
3816: * src/types/pa_vfile.C: closes issue #928 - default content-type
3817: now updated
3818:
3819: 2013-06-25 moko
3820:
3821: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h: default
3822: content-type for text/binary files without name added;
3823: ^file::create[$f;...] options now works properly and $f
3824: properties are default (fixes issue #928)
3825:
3826: 2013-05-16 misha
3827:
3828: * src/include/pa_opcode.h: - define for OBJECT_POOL optimisation is
3829: added
3830:
3831: * src/main/pa_table.C: - a tiny memory optimisation while creating
3832: table if specified limit is bigger than source rows count
3833:
3834: * src/classes/table.C: - ^table.foreach[k;v]{code}[separator] is
3835: added ( new feature: #858 )
3836:
3837: 2013-04-29 moko
3838:
3839: * src/classes/curl.C: CURL_IPRESOLVE_V4 now set by default,
3840: $.ipresolve(0|1|2) added (closes issue #891)
3841:
3842: * src/lib/curl/curl.h: CURL_IPRESOLVE added
3843:
3844: 2013-04-24 moko
3845:
3846: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
3847: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
3848: types/pa_vmemcached.h: ^memcache.release[] added, calls
3849: memcached_quit (refs #893)
3850:
3851: 2013-04-22 moko
3852:
3853: * src/: include/pa_string.h, main/pa_common.C: no more double
3854: slashes in file path (fixes bug #872)
3855:
3856: * src/: classes/curl.C, lib/curl/curl.h: minor fixes related to
3857: CURLOPT_ENCODING renamed into CURLOPT_ACCEPT_ENCODING (issue
3858: #739)
3859:
3860: * tests/results/266.processed: $.max_params added (feature #915)
3861:
3862: * src/: include/pa_common.h, main/pa_http.C: response-charset
3863: option added to file::load (closes issue #867)
3864:
3865: 2013-04-20 misha
3866:
3867: * src/classes/curl.C: - forgotten CURL_ACCEPT_ENCODING option is
3868: commited
3869:
3870: 2013-03-15 misha
3871:
3872: * src/classes/: hash.C, table.C: - Optimisation: do not create
3873: multiple empty strings while ::sql. uae String::Empty instead
3874:
3875: 2013-03-14 misha
3876:
3877: * src/classes/reflection.C: - for user classes
3878: ^reflection:method_info[] returns $.max_params and $.extra_param
3879: with $.call_type if they available ( new feature: #915 )
3880:
3881: * src/classes/file.C: - ^file:delete[] now supports an option
3882: $.exception(false) that suppress any exception while deleting
3883: file ( new feature: #916 )
3884:
3885: * src/classes/curl.C: - parsing cookies after curl:load now should
3886: work :)
3887:
3888: 2013-03-12 misha
3889:
3890: * src/types/pa_vfile.C: - if specified file_name is empty string
3891: set default name for the file
3892:
3893: 2013-03-11 misha
3894:
3895: * src/classes/curl.C: - after $f[^curl:load[...]] the cookies are
3896: also available in $f.cookies
3897:
3898: * src/: include/pa_http.h, main/pa_http.C: - parsing cookies is
3899: moved to a separate method
3900:
3901: 2013-03-10 moko
3902:
3903: * src/include/pa_config_fixed.h: typedef unsigned int uint32_t
3904: added
3905:
3906: * src/lib/memcached/pa_memcached.h: typedef unsigned int uint32_t
3907: removed (declared by autoconf)
3908:
3909: * configure.in: AC_TYPE_SSIZE_T, AC_TYPE_UINT32_T added for
3910: uint32_t define
3911:
3912: 2013-03-10 misha
3913:
3914: * src/classes/file.C: ^file:delete and ^file:move now support
3915: option $.keep-empty-dirs(true) ( new feature: #884 )
3916:
3917: * src/: include/pa_common.h, main/pa_common.C: - option for keeping
3918: empty dirs is added
3919:
3920: 2013-03-10 moko
3921:
3922: * src/classes/: bool.C, double.C, int.C: default can be present,
3923: but default check removed from ^int/double/bool.int/double/bool
3924: for string.int/double/bool compatibility (related to issue #913)
3925:
3926: * src/classes/string.C: ^string.int/dobule/bool no longer
3927: internally throws exception if default is present (closes issue
3928: #913)
3929:
3930: 2013-03-09 misha
3931:
3932: * src/types/: pa_vhash.h, pa_vregex.h, pa_vtable.h: - tiny
3933: optimisations ( #845 )
3934:
3935: * src/types/pa_venv.C: - added $env:fields ( new feature: #906 )
3936:
3937: 2013-03-08 moko
3938:
3939: * src/main/pa_http.C: GPF on ^cookies:save fixed, $file.cookies now
3940: creates correct table (fixes issue #910)
3941:
3942: * src/classes/op.C: r.connection() -> r.connection(false) to allow
3943: use outside of 'connect' operator (fixes issue #911)
3944:
3945: * tests/results/: 096.processed, 122.processed: test results
3946: updated as doubles now printed with 15 significant digits, not 5
3947: (fixes issue #882)
3948:
3949: * src/types/pa_vdouble.h: %.15g now used to format doubles instead
3950: of broken has_frac() ? "%g": "%.0f" logic (fixes issue #882)
3951:
3952: 2013-02-21 moko
3953:
3954: * src/classes/table.C: _locate_name_value does not check arguments
3955: count, so we check it in advance (fixes issue #905)
3956:
3957: 2012-10-23 moko
3958:
3959: * buildall: old shell for and echo compatibility (for six)
3960:
3961: 2012-10-19 moko
3962:
3963: * buildall: --strip added --disable-safe-mode listed in usage
3964:
3965: 2012-10-17 misha
3966:
3967: * src/classes/op.C: - apply-taint should not throw "outside
3968: connect" exception with sql lang now
3969:
3970: 2012-10-17 moko
3971:
3972: * src/main/pa_request.C: bugfix: safe mode should be inited for
3973: each request (for apache module)
3974:
3975: 2012-09-26 moko
3976:
3977: * src/doc/doxygen.cfg: png -> svg
3978:
3979: 2012-09-25 moko
3980:
3981: * tests/: 141.html, results/141.processed: md5 hmac added, long key
3982: test added
3983:
3984: * src/classes/math.C: HMAC for MD5 added, bugfix for tempdigest
3985: double use when key is long
3986:
3987: 2012-09-16 moko
3988:
3989: * src/classes/math.C: Format -> Method Encode -> Format
3990:
3991: * tests/: 141.html, results/141.processed: math:digest hmac test
3992: added
3993:
3994: 2012-09-14 moko
3995:
3996: * src/classes/math.C: SHA1ReadDigest added and used in ^sha1.
3997: ^digest[sha1|md5;data; $.encode[base64|hex] $.hmac[key]] basic
3998: implementation added
3999:
4000: 2012-09-12 moko
4001:
4002: * src/doc/: doxygen.cfg, footer.htm, index.dox, string.dox,
4003: targets.dox: doxygen.cfg and footer.htm updated for doxygen 1.7.3
4004: targets.dox and string.dox slightly actualized
4005:
4006: 2012-08-31 moko
4007:
4008: * ChangeLog: now generated with patched cvs2cl.pl
4009:
4010: 2012-07-29 moko
4011:
4012: * tests/285.html, src/main/execute.C, tests/results/285.processed:
4013: result should be pushed after VMethodFrame destructor is called,
4014: as it deletes junctions from stack params (fixes issue #868)
4015:
4016: 2012-07-23 moko
4017:
4018: * INSTALL, README: buildall script usage documented, other outdated
4019: info updated.
4020:
4021: * buildall-with-xml, buildall-without-xml: replaced by buildall
4022:
4023: 2012-07-21 moko
4024:
4025: * buildall: glib does not compile when threads are disabled...
4026:
4027: * src/types/pa_vmail.C: g_assertion fixes for empty input
4028:
4029: * src/types/pa_vmail.C: yet another fix (strange GPF on object
4030: unref, can't unref nested objects)
4031:
4032: * src/types/pa_vmail.C: another check added
4033:
4034: 2012-07-19 moko
4035:
4036: * buildall: usage added
4037:
4038: * buildall: new buildall script that unites buildall-with-xml,
4039: buildall-without-xml, --with-apache and --with-mailreceive
4040:
4041: * configure.in: support for static gmime and dynamic glib linking.
4042: fixes for FreeBSD
4043:
4044: 2012-07-17 moko
4045:
4046: * configure.in: --with-mailreceive replaced
4047: --with-static-mailreceive and --with-shared-mailreceive pathlink
4048: removed
4049:
4050: 2012-07-16 moko
4051:
4052: * src/types/pa_vmail.C: updated to work gmime 2.6, headers now
4053: capitalized, content now decoded and text content converted to
4054: $request:charset. all properties are accessed by functions, this
4055: ready for dynamic load.
4056:
4057: 2012-06-28 moko
4058:
1.116 moko 4059: * src/targets/apache/Makefile.am: fix for apache cflags for Linux
4060: 32 bit
1.95 moko 4061:
4062: 2012-06-27 moko
4063:
4064: * buildall-with-xml, buildall-without-xml: fetch requires -p for
4065: passive ftp
4066:
4067: * src/lib/ltdl/ltdl.vcproj: release build fixed
4068:
4069: * configure.in: 3.4.2 RC -> 3.4.2
4070:
4071: 2012-06-22 moko
4072:
4073: * src/types/pa_vfile.C: returned empty mode to stated files (issue
4074: #815)
4075:
4076: * tests/: 284.html, results/284.processed: output options test
4077: (feature #265)
4078:
4079: 2012-06-22 misha
4080:
4081: * tests/215.html: - little changes
4082:
4083: 2012-06-21 moko
4084:
4085: * src/: classes/json.C, classes/xdoc.C, types/pa_vxdoc.C,
4086: types/pa_vxdoc.h: output_options returned and used (bugfix for
4087: feature #265)
4088:
4089: * buildall-with-xml, buildall-without-xml: --with-match-limit=10000
4090: breaks long .*, default 10M restored. (issue #216)
4091:
4092: * tests/: 283.html, results/283.processed: test for issue #815
4093: added
4094:
4095: * src/types/: pa_vfile.C, pa_vstring.C: bugfix: ^#0D not altered
4096: again, cstrm not required.
4097:
4098: * src/lib/ltdl/: argz.c, ltdl.c, libltdl/lt__glibc.h: fixes for
4099: Win32 and broken FreeBSD (issue #45)
4100:
4101: * src/lib/ltdl/ltdl.vcproj: preopen.c and config.h removed
4102:
4103: * src/main/pa_string.C: warnings war
4104:
4105: * src/: classes/mail.C, include/pa_dir.h, include/pa_http.h,
4106: lib/json/JSON_parser.h, lib/smtp/smtp.h, main/pa_random.C,
4107: main/pa_socks.C, targets/apache/pa_threads.C,
4108: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
4109: types/pa_vstatus.C: compilation under cygwin fixed
4110:
4111: 2012-06-19 moko
4112:
4113: * src/lib/ltdl/: config_fixed.h, ltdl.vcproj: compilation under
4114: Windows fixed
4115:
4116: * parser3.sln: removed antique pcre_ctype
4117:
4118: * src/include/pa_config_fixed.h: required for INT_MAX / UINT_MAX
4119:
4120: * src/include/pa_config_fixed.h: undefined reference to
4121: __imp__pcre_* fix for Windows
4122:
4123: * src/: include/pa_charset.h, lib/pcre/Makefile.am,
1.116 moko 4124: lib/pcre/pa_pcre_internal.h, lib/pcre/pcre_internal.h:
4125: pcre_internal.h -> pa_pcre_internal.h for Windows compatibility
4126: (win32/pcre has own copy of pcre_internal.h _pcre_default_tables
4127: define fixed
1.95 moko 4128:
4129: 2012-06-18 moko
4130:
4131: * src/classes/memcached.C: flush -> clear
4132:
4133: * src/classes/memcached.C: memcached does not support quotes even
4134: in server name
4135:
4136: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
4137: lib/memcached/pa_memcached.h, types/pa_vmemcached.C: version()
4138: called on open to check servers existance. $.key(true) syntax
4139: now supported
4140:
4141: 2012-06-17 moko
4142:
4143: * src/include/: pa_config_fixed.h, pa_config_includes.h: old stuff
4144: cleanup
4145:
4146: * src/classes/table.C, tests/282.cfg, tests/282.html,
4147: tests/results/282.processed: encloser at the EOF bug fixed,
4148: incorrectly enclosed data now processed more logicaly (fixes
4149: #339)
4150:
4151: 2012-06-15 moko
4152:
4153: * buildall-without-xml: sync with buildall-with-xml
4154:
4155: * buildall-with-xml: download auto-detected between fetch and curl
4156:
4157: * configure.in: --with-gc and --with-pcre now also processed
4158: correctly
4159:
1.116 moko 4160: * aclocal.m4, configure, src/include/pa_config_auto.h.in: now
4161: aclocal -I src/lib/ltdl/m4/ && autoheader && automake && autoconf
4162: should be run on rol1 using automake / aclocal (GNU automake)
4163: 1.11.1 autoconf (GNU Autoconf) 2.68
1.95 moko 4164:
4165: * configure.in: new PARSER_VERSION logic
4166:
4167: * src/include/pa_version.h: new pa_version.h logic
4168:
4169: * src/: classes/curl.C, classes/file.C, classes/image.C,
4170: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
4171: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C:
4172: feols_normalized -> fis_text_content set_binary added
4173:
4174: * src/targets/cgi/parser3.C: gcc compilation warnings fixed
4175:
4176: 2012-06-15 misha
4177:
4178: * src/: classes/curl.C, classes/file.C, classes/image.C,
4179: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
4180: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C: -
4181: ^file::create[text;content] EOLs in content now is normalized. (
4182: new feature: #815 )
4183:
4184: 2012-06-15 moko
4185:
4186: * configure.in: --disable-version-update added to disable version
4187: update with host information (for debian package) whitespace
4188: optimized
4189:
4190: * configure.in: version changed to 3.4.2 RC no-pic added for
4191: libtool
4192:
4193: * src/include/pa_version.h: Nice pa_version.h default. Please keep
4194: it.
4195:
4196: 2012-06-14 moko
4197:
4198: * src/classes/hash.C, src/types/pa_vhash.h, tests/281.html,
4199: tests/results/281.processed: "hash flocked" error removed for
4200: safe operations like ^h._count[] ( new feature: #335 )
4201:
1.116 moko 4202: * src/targets/apache/Makefile.am: libmod_parser3 -> mod_parser3
1.95 moko 4203:
4204: * buildall-with-xml, buildall-without-xml: --with-static -> --with
4205:
4206: * configure.in: --with-static/shared xml replaced with --with-xml,
4207: xml compilation check added
4208:
4209: * configure.in: --with-static/shared-gc, --with-static-pcre are
4210: replaced with --with-gc and --with-pcre test for pcre linking
4211: added
4212:
4213: 2012-06-13 moko
4214:
4215: * configure.in: apxs2 check optimized
4216:
4217: * src/targets/cgi/Makefile.am: preserve-dup-deps requires .a, not
4218: .la, includes optimized
4219:
4220: * buildall-with-xml: --with-pic looks better for -fPIC
4221:
4222: * configure.in: switched to convenience library in static linking
4223:
4224: * src/targets/apache/Makefile.am: switched to convenience library
4225: usage to avoid libtool warnings
4226:
4227: * src/lib/: cord/Makefile.am, gd/Makefile.am, json/Makefile.am,
4228: md5/Makefile.am, memcached/Makefile.am, sdbm/Makefile.am,
4229: smtp/Makefile.am: switched to convenience library usage
4230:
4231: * src/sql/Makefile.am: pa_sql_driver.h should be in includes
4232:
4233: * src/targets/apache/Makefile.am: updated for libtool usage
4234:
4235: * bin/auto.p.dist.in: .cfg removed from charset names.
4236:
4237: * buildall-without-xml: --with-included-ltdl added
4238:
4239: * buildall-without-xml: sync with buildall-with-xml
4240:
4241: * buildall-with-xml: --with-included-ltdl added $cflags added for
4242: -fPIC for x64 $download added for wget success check added
4243:
4244: * buildall-without-xml: --with-dynamic-stdcpp removed
4245:
4246: * configure.in: disable-static returned
4247:
4248: * src/targets/cgi/Makefile.am: Automake 1.9 does not support
4249: LIBTOOLFLAGS
4250:
4251: 2012-06-12 moko
4252:
4253: * configure.in, src/targets/cgi/Makefile.am: disable-static not
4254: compatible with LIBTOOLFLAGS for unknown reasons
4255:
4256: * buildall-with-xml: --with-dynamic-stdcpp removed
4257:
4258: * configure.in: static/dynamic -lstdc++ linking option removed
4259: apxs2 check added
4260:
4261: * src/targets/cgi/Makefile.am: static/dynamic -lstdc++ linking
4262: option removed
4263:
4264: 2012-06-10 moko
4265:
4266: * src/targets/cgi/Makefile.am: --preserve-dup-deps libtool option
4267: added
4268:
4269: * src/targets/cgi/pp3.cmd: old PAF stuff
4270:
1.116 moko 4271: * Makefile.am: ACLOCAL_AMFLAGS = -I src/lib/ltdl/m4 added and some
4272: beauty
1.95 moko 4273:
4274: * depcomp: from libtool 2.4.2
4275:
4276: * configure.in: ltdl directory removed, it has correct Makefile.in
4277:
4278: 2012-06-09 moko
4279:
1.116 moko 4280: * Makefile.am, aclocal.m4, config.guess, config.sub, configure,
4281: install-sh, ltmain.sh, missing, src/include/pa_config_auto.h.in:
1.95 moko 4282: autogenerated files updated after libtool update
4283:
1.116 moko 4284: * src/lib/ltdl/: COPYING.LIB, Makefile.am, README, acinclude.m4,
4285: aclocal.m4, argz.c, argz_.h, config-h.in, config.h,
1.95 moko 4286: config_auto.h.in, config_fixed.h, configure, configure.ac,
4287: configure.in, lt__alloc.c, lt__dirent.c, lt__strl.c,
4288: lt_dlloader.c, lt_error.c, ltdl.c, ltdl.h, slist.c,
4289: config/compile, config/config.guess, config/config.sub,
4290: config/depcomp, config/install-sh, config/ltmain.sh,
4291: config/missing, libltdl/lt__alloc.h, libltdl/lt__dirent.h,
4292: libltdl/lt__glibc.h, libltdl/lt__private.h, libltdl/lt__strl.h,
4293: libltdl/lt_dlloader.h, libltdl/lt_error.h, libltdl/lt_system.h,
4294: libltdl/slist.h, loaders/dld_link.c, loaders/dlopen.c,
4295: loaders/dyld.c, loaders/load_add_on.c, loaders/loadlibrary.c,
4296: loaders/preopen.c, loaders/shl_load.c, m4/argz.m4, m4/libtool.m4,
4297: m4/ltdl.m4, m4/ltoptions.m4, m4/ltsugar.m4, m4/ltversion.m4,
4298: m4/lt~obsolete.m4: libtool updated to version 2.4.2
4299:
4300: * configure.in: preparation for new libtool
4301:
4302: * configure.in: Some beauty added :)
4303:
4304: * src/targets/apache/Makefile.am: := -> =
4305:
4306: * src/lib/pcre/: Makefile.am, config.h: config.h removed once
4307: again. :)
4308:
4309: * src/include/pa_config_includes.h, configure.in: limits.h added,
4310: previously was taken from pcre_internal.h. :)
4311:
4312: * src/lib/pcre/Makefile.am: config.h returned
4313:
4314: * src/lib/pcre/config.h: still need this. :)
4315:
4316: * src/lib/pcre/pcre_internal.h: extracts from real pcre_internal.h
4317:
4318: * configure.in: --with-charsets removed; --with-mysql-client & co
4319: removed
4320:
4321: * buildall-with-xml, buildall-without-xml: pcre_internal.h extracts
4322: now in parser tree, no need to copy
4323:
4324: * src/lib/pcre/: Makefile.am, config.h, ibm-1250.ucm, ibm-1251.ucm,
4325: ibm-1254.ucm, ibm-1257.ucm, pcre_parser_ctype.c,
4326: pcre_parser_ctype.vcproj, ruspart_win2koi.pl, win-koi.tab:
4327: debian/patches/101_pcre.patch - local copy of pcre_internal.h
4328: extracts now used old trash removed
4329:
4330: * bin/auto.p.dist.in: all charsets are listed, utf-8 by default,
4331: rare charsets/drivers are commented, sql driver quessing removed
4332: (debian/patches/103_auto_p.patch)
4333:
4334: * etc/parser3.charsets/Makefile.am: charsets now in share
4335: (debian/patches/104_automake.patch) + all charsets are copied
4336:
4337: * buildall-with-xml, buildall-without-xml: curl option removed +
4338: extra arguments now supported
4339:
4340: 2012-06-08 misha
4341:
4342: * src/classes/table.C: - one params.as_hash usage was rolled back:
4343: the 2nd option in ^table.hash[] could be hash or table so
4344: .as_hash will throw an exception when table option is specified
4345:
4346: * src/: classes/curl.C, classes/file.C, classes/hash.C,
4347: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
4348: classes/table.C, classes/void.C, classes/xdoc.C,
4349: include/pa_exception.h, types/pa_vmethod_frame.C,
4350: types/pa_vmethod_frame.h: - MethodParams::as_hash is optimized
4351: and improved (whitespaces are allowed as empty options) -
4352: MethodParams::as_table is added - above methods are used for
4353: parsing methods' options ( new feature: #9 )
4354:
4355: * src/types/: pa_vclass.C, pa_vclass.h: - method get_hash is added
4356: to vclass. now class fields can be accessible as a hash:
4357: $h[^hash::create[$asd:CLASS]]
4358:
4359: * src/types/: pa_vhash.h, pa_vhashfile.h: - vhash and vhashfile now
4360: have get_fields method so their fields can be accessed with
4361: ^reflection:fields[...] & ^reflection:field[...]
4362:
4363: 2012-06-06 misha
4364:
4365: * tests/280.html: - tests for
4366: ^reflection:method[obj-or-class;method],
4367: ^reflection:field[obj-or-class;field] and
4368: ^reflection:fields[obj-or-class] are added
4369:
4370: 2012-06-05 misha
4371:
4372: * src/classes/reflection.C: - ^reflection:method[class or
4373: object;method name] and ^reflection:field[class or object;field
4374: name] are added
4375:
4376: * src/types/pa_vstateless_class.C: - Method::get_vjunction method
4377: is used
4378:
4379: * src/types/pa_method.h: - Method::as_vjunction method is added
4380:
4381: 2012-06-05 moko
4382:
1.116 moko 4383: * src/targets/Makefile.am: cgi now build with apache module
1.95 moko 4384:
4385: * src/classes/memcached.C: flish ttl fixed
4386:
4387: 2012-06-04 moko
4388:
4389: * src/classes/json.C, src/classes/op.C, tests/279.html,
4390: tests/results/279.processed: ^json:parse[] now supports $.taint
4391: option (new feature #833)
4392:
4393: 2012-06-04 misha
4394:
4395: * src/: include/pa_common.h, main/pa_common.C, types/pa_vcookie.C:
4396: - search_stop method was moved from pa_vcookie.C to pa_common.C
4397:
4398: 2012-06-03 misha
4399:
4400: * src/main/pa_http.C: - ^file:load[...;http://...] - all received
4401: cookies are parced and stored into $.cookies ( new feature: #31 )
4402:
4403: 2012-05-30 misha
4404:
4405: * tests/: 182_dir/a3.p, 182_dir/a4.p, 182.html: - test for adding
4406: incomplete class into a scope while @USE is found
4407:
4408: * src/main/compile.y: - add incomplete class into a scope while
4409: @USE and @CLASS instructions are found ( bugfix: #838 )
4410:
4411: 2012-05-30 moko
4412:
4413: * src/types/pa_vclass.C, tests/278.html,
4414: tests/results/278.processed: removed "property has no getter
4415: method" exception when GET_DEFAULT present (fixes #269)
4416:
4417: * src/classes/json.C, tests/277.html: ^json:string[], $.default ->
4418: $._default
4419:
4420: 2012-05-29 moko
4421:
4422: * src/types/pa_vvoid.h: $STRICT-VARS(true) implemented to check
4423: uninitialized values usage (new feature: #154)
4424:
4425: 2012-05-28 moko
4426:
4427: * tests/277.html, src/classes/json.C, src/classes/reflection.C,
4428: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
4429: src/types/pa_vdate.h, src/types/pa_vdouble.h,
4430: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vint.h,
4431: src/types/pa_vobject.C, src/types/pa_vobject.h,
4432: src/types/pa_vstring.h, src/types/pa_vtable.C,
4433: tests/results/277.processed, src/types/pa_vtable.h,
4434: src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h:
4435: ^json:string[$o; $.default[$method]] implemented for VObject (new
4436: feature #803)
4437:
4438: * src/classes/json.C, src/lib/json/JSON_parser.h, tests/277.html,
4439: tests/results/277.processed: json numbers are now treated as
4440: double ( new feature: #834 )
4441:
4442: * src/: classes/math.C, include/pa_string.h, main/pa_charset.C,
4443: main/pa_string.C, types/pa_vdouble.h, types/pa_vint.h: pa_atoui
4444: added for out of range checks, zero division in vint/vdouble
4445: check added ( fixes #832 )
4446:
4447: * tests/: 275.html, results/275.processed: tests for pa_atoui added
4448: ( fixes #832 )
4449:
4450: 2012-05-28 misha
4451:
4452: * buildall-with-xml: - --without-lzma option is added to libxml2
4453: configure
4454:
4455: * tests/256.html: - test for ^json:string[-file-;$.file[stat]] is
4456: added - tests for unsupported values for options $.file, $.table
4457: and $.date are added
4458:
4459: * src/: classes/json.C, types/pa_value.h: - ^json:string[...] now
4460: accepts "stat" $.file[] option's value in addition to existed
4461: "text" and "base64" ( new feature: #835 )
4462:
4463: * tests/276.html: - test for
4464: ^reflection:delete[$object-or-class;field-name]
4465:
4466: * src/classes/reflection.C: -
4467: ^reflection:delete[$object-or-class;field-name] is added ( new
4468: feature: #268 )
4469:
4470: 2012-05-27 misha
4471:
4472: * buildall-with-xml: - libxml2 2.7.8 => 2.8.0
4473:
4474: 2012-05-24 misha
4475:
4476: * src/include/pa_common.h: - method lastposafter was removed
4477:
4478: * src/classes/file.C: - use strrpbrk & rskipchars instead of
4479: lastposafter - ^file:dirname[] & Co proper handle windows file
4480: paths ( bug fix: #783 ) - ^file:dirname[] & ^file:basename[] now
4481: work as *nix commands
4482:
4483: * src/main/pa_request.C: - use strrpbrk instead of lastposafter
4484:
4485: * src/: include/pa_string.h, main/pa_string.C: - strrpbrk &
4486: rskipchars were added
4487:
4488: * tests/270.html: - more tests for ^file:find[]
4489:
4490: * tests/065.html: - more tests for ^file:dirname[] & Co
4491:
4492: * src/include/pa_version.h: - must be "win32" here. it is
4493: auto-generated on *nix
4494:
4495: 2012-05-24 moko
4496:
4497: * src/classes/math.C: ^math:convert[] now supports uint32 and
4498: throws overflow exception ( new feature: #830 )
4499:
4500: * tests/: 275.html, results/275.processed: test for ^math:convert[]
4501: uint32 support and overflow added ( new feature: #830 )
4502:
4503: 2012-05-23 moko
4504:
4505: * src/: classes/table.C, types/pa_value.h, types/pa_vbool.h,
4506: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
4507: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
4508: types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
4509: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
4510: types/pa_vregex.h, types/pa_vstateless_class.C,
4511: types/pa_vstateless_class.h, types/pa_vstring.h,
4512: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
4513: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: bool
4514: "return string as-is" removed from as_expr_result. ( new feature:
4515: #831 )
4516:
4517: * tests/results/244.processed: test changed after bug #782 fix
4518: commited
4519:
4520: * tests/results/229.processed: test results for bug #782 commited
4521:
4522: * tests/: 254.html, results/254.processed: uid now just compared,
4523: not printed. :)
4524:
4525: 2012-05-20 moko
4526:
4527: * src/classes/reflection.C: ^reflection:uid[$object] added ( new
4528: feature: #341 )
4529:
4530: * tests/: 254.html, results/254.processed: test for
4531: ^reflection:uid[] added
4532:
4533: * tests/: 254.html, results/254.processed: test for
4534: ^reflection:uid[$obj] added
4535:
4536: 2012-05-17 misha
4537:
4538: * src/main/untaint.C: - do not replace ' char by _26 while
4539: exploding filespec-tainting ( new feature: #829 )
4540:
4541: 2012-05-12 moko
4542:
4543: * src/types/pa_vvoid.h: is_string now also checked, but get_* -
4544: not.
4545:
4546: 2012-05-08 moko
4547:
4548: * src/types/pa_vmethod_frame.h: bug #782 fixed
4549:
4550: * tests/229.html: test for bug #782
4551:
4552: * tests/results/259.processed, src/main/pa_request.C,
4553: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
4554: src/types/pa_vstring.h, src/types/pa_vvoid.C,
4555: src/types/pa_vvoid.h: feature #154 - first empty param now
4556: string; defined locals are empty strings; $STRICT-VARS(true)
4557: added
4558:
4559: 2012-04-27 moko
4560:
1.116 moko 4561: * src/targets/apache/Makefile.am:
1.95 moko 4562: ../../lib/memcached/libmemcached.a added
4563:
4564: 2012-04-27 misha
4565:
4566: * buildall-with-xml, buildall-without-xml: - prce 8.12 => pcre 8.30
4567: ( #827 )
4568:
4569: 2012-04-25 moko
4570:
4571: * src/: classes/json.C, classes/memcached.C,
4572: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
4573: types/pa_vmemcached.C, types/pa_vmemcached.h: memcached_add
4574: implemented.
4575:
4576: * src/classes/curl.C: stderr -> f_stderr for Windows compatibility
4577:
4578: 2012-04-23 moko
4579:
4580: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
4581: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
4582: types/pa_vmemcached.h: open allows options hash for new
4583: memcached(options) function
4584:
4585: * src/classes/curl.C: check_safe_mode added, stderr now rewritten,
4586: not appended
4587:
4588: 2012-04-21 moko
4589:
4590: * src/classes/curl.C: '' added. :)
4591:
4592: * src/classes/classes.vcproj: new curl.h location
4593:
4594: * src/classes/curl.C: verbose output redirection from stderr to
4595: file curl option added
4596:
4597: 2012-04-20 moko
4598:
4599: * src/: classes/curl.C, lib/curl/curl.h: lib/curl/curl.h now
4600: contains what we need from curl, #ifdef HAVE_CURL removed
4601:
1.116 moko 4602: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 4603: src/include/pa_config_auto.h.in, src/include/pa_version.h,
1.116 moko 4604: src/lib/Makefile.am, src/lib/curl/Makefile.am,
4605: src/lib/curl/curl.h: curl.h header now in src/lib/curl, not
1.95 moko 4606: configure option
4607:
4608: 2012-04-19 moko
4609:
4610: * src/: classes/double.C, classes/inet.C, classes/int.C,
4611: classes/string.C, lib/gc/include/gc_allocator.h,
4612: types/pa_vform.C: PVS-Studio detected errors fixes, unused
4613: options from sql_result_string removed. (closes issue #468)
4614:
4615: * src/types/pa_vmemcached.C: empty string fix
4616:
4617: * src/types/: pa_value.C, pa_value.h, pa_vmemcached.C,
4618: pa_vstring.C, pa_vstring.h: serialization helpers moved to
4619: pa_vmemcached.C
4620:
4621: 2012-04-18 moko
4622:
4623: * src/targets/apache/mod_parser3.c: "Parser3 module requires
4624: apache2-mpm-prefork" error displayed in threaded mpm.
4625:
4626: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
4627: pa_setup_module_cells delayed to avoid GPF on init with php5-xsl
4628: installed (issue #354)
4629:
4630: 2012-04-16 moko
4631:
4632: * src/types/pa_vmemcached.C: call to memcached_result_create and
4633: memcached_result_free removed
4634:
4635: 2012-04-14 moko
4636:
4637: * src/lib/memcached/pa_memcached.h: uint32_t for Windows defined
4638:
4639: * src/types/pa_vmemcached.C: check_key added and used
4640:
4641: 2012-04-13 moko
4642:
4643: * src/: include/pa_string.h, types/pa_value.C, types/pa_value.h,
4644: types/pa_vmemcached.C, types/pa_vstring.C, types/pa_vstring.h:
4645: Serialization_data now added and used, VString now serialized
4646: with languages into memcached.
4647:
4648: 2012-03-28 moko
4649:
4650: * src/: types/pa_vmemcached.C, lib/memcached/pa_memcached.C,
4651: lib/memcached/pa_memcached.h: result lengths added
4652:
4653: 2012-03-27 moko
4654:
4655: * src/types/pa_vmemcached.C: strdup added
4656:
4657: 2012-03-24 moko
4658:
4659: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
4660: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
4661: types/pa_vmemcached.h: memcached: mget, flush, fttl added
4662:
4663: 2012-03-20 moko
4664:
1.116 moko 4665: * configure, configure.in: Makefiles.in updated for memcached
1.95 moko 4666:
4667: * src/targets/cgi/Makefile.am: cleanup
4668:
4669: * src/: types/Makefile.am, types/pa_vmemcached.C,
4670: types/pa_vmemcached.h, targets/cgi/Makefile.am: memcached initial
4671:
4672: * src/: classes/Makefile.am, classes/memcached.C,
4673: lib/memcached/Makefile.am, lib/memcached/constants.h,
4674: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
4675: lib/memcached/types.h, lib/Makefile.am: memcached initial
4676:
4677: 2012-03-16 moko
4678:
4679: * src/main/execute.C: ident now works under Linux + ident displays
4680: filenames (closes issue #818)
4681:
1.116 moko 4682: * src/types/: Makefile.am, pa_vmethod_frame_global.h,
1.95 moko 4683: pa_vmethod_frame_local.h: cleanup: pa_vmethod_frame_global.h
4684: pa_vmethod_frame_local.h removed
4685:
4686: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
4687: classes/classes.h, classes/curl.C, classes/date.C,
4688: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
4689: classes/hashfile.C, classes/image.C, classes/inet.C,
4690: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
4691: classes/memory.C, classes/op.C, classes/reflection.C,
4692: classes/regex.C, classes/response.C, classes/string.C,
4693: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
4694: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
4695: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
4696: include/pa_config_fixed.h, include/pa_config_includes.h,
4697: include/pa_dictionary.h, include/pa_dir.h,
4698: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
4699: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
4700: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
4701: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
4702: include/pa_request_charsets.h, include/pa_request_info.h,
4703: include/pa_sapi.h, include/pa_socks.h,
4704: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
4705: include/pa_stack.h, include/pa_string.h,
4706: include/pa_stylesheet_connection.h,
4707: include/pa_stylesheet_manager.h, include/pa_table.h,
4708: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
4709: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
4710: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
4711: lib/md5/pa_md5c.c, lib/pcre/pcre_parser_ctype.c,
4712: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
4713: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
4714: main/compile.tab.C, main/compile.y, main/compile_tools.C,
4715: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
4716: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
4717: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
4718: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
4719: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
4720: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
4721: main/pa_string.C, main/pa_stylesheet_connection.C,
4722: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
4723: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
4724: main/helpers/simple_folding.pl, sql/pa_sql_driver.h,
4725: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
4726: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
4727: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
4728: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
4729: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
4730: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
4731: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
4732: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
4733: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
4734: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
4735: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
4736: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
4737: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
4738: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
4739: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
4740: types/pa_vmemory.h, types/pa_vmethod_frame.C,
4741: types/pa_vmethod_frame.h, types/pa_vmethod_frame_global.h,
4742: types/pa_vmethod_frame_local.h, types/pa_vobject.C,
4743: types/pa_vobject.h, types/pa_vregex.C, types/pa_vregex.h,
4744: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
4745: types/pa_vresponse.h, types/pa_vstateless_class.C,
4746: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
4747: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
4748: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
4749: types/pa_vvoid.C, types/pa_vvoid.h, types/pa_vxdoc.C,
4750: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
4751: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
4752: ident now works under Linux + ident displays filenames (closes
4753: issue #818) Copyright updated
4754:
4755: 2012-03-13 moko
4756:
4757: * src/main/pa_string.C: compilation fix for feature #741
4758:
4759: 2012-03-09 misha
4760:
4761: * tests/193.html: - tests for ^string:base64[encoded] are updated
4762:
4763: * src/main/pa_common.C: - ^string:base64[encoded;$.strict(true)]
4764: now detects invalid base64 chars in the middle of encoded stricg
4765: ( new feature: #55 )
4766:
4767: * src/include/pa_exception.h: - new exception type for base64
4768: decoding is added
4769:
4770: 2012-03-06 misha
4771:
4772: * tests/274.html: - tests for ^date::today[] and
4773: ^date.sql-string[datetime|date|time] are added
4774:
4775: * src/classes/date.C: - constructor ^date::today[] is added ( new
4776: feature: #811 ) - ^date.sql-string[] now can accept one param --
4777: strings "datetime", "date" or "time" - comments tidying up
4778:
4779: * src/types/pa_vdate.h: - get_sql_string now can print datetime,
4780: date and time
4781:
4782: 2012-03-03 misha
4783:
4784: * tests/193.html: - tests for
4785: ^string:base64[encoded;$.strict(true)] are added
4786:
4787: * tests/results/auto.p: - try-catch operator is added
4788:
4789: * src/: classes/file.C, classes/string.C, include/pa_common.h,
4790: main/pa_common.C: - $.strict(true|false) option is added to
4791: base64 decode methods ( new feature: #55 )
4792:
4793: * src/main/pa_common.C: - base64 decode memory usage was decreased
4794: ( new feature: #819 )
4795:
4796: 2012-02-28 moko
4797:
4798: * src/classes/hash.C: ident test
4799:
4800: 2012-02-27 misha
4801:
4802: * src/classes/file.C: - PARSER_VaRSION => PARSER_VeRSION
4803:
4804: 2012-01-08 misha
4805:
4806: * tests/273.html: - tests for ^string.replace[from;to] are added
4807:
4808: * src/: classes/string.C, include/pa_dictionary.h,
4809: main/pa_dictionary.C, main/pa_string.C: -
4810: ^string.replace[from;to] is added ( new feature: #741 ) -
4811: ^string.replace[one subst here] is slightly optimized
4812:
4813: 2011-12-07 misha
4814:
4815: * src/classes/table.C: - $t[^table::create{$empty}] now creates
4816: named table with one empty column ( bugfix: #63 )
4817:
4818: 2011-11-30 misha
4819:
4820: * src/classes/json.C: - it's possible to set user's method for
4821: parsing arrays: ^json:parse[...;$.array[$hook]] ( new feature:
4822: #763 )
4823:
4824: * tests/272.html: - test for ^json:parse[...;$.array[$hook]]
4825:
4826: 2011-11-23 misha
4827:
4828: * src/: classes/curl.C, classes/file.C, classes/image.C,
4829: classes/table.C, classes/xdoc.C, types/pa_vfile.C,
4830: types/pa_vfile.h, types/pa_vform.C: - constructor
4831: ^file::create[mode;filename;content[;options]] now accepts binary
4832: mode and file-content - new constructor's format:
4833: ^file::create[string-or-file-content[;$.name[filename]
4834: $.mode[text|binary] $.content-type[...] $.charset[...]]] ( new
4835: feature: #65 )
4836:
4837: * src/: include/pa_request.h, main/pa_request.C: - new method
4838: mime_type_of(const String*) is added
4839:
4840: * src/include/pa_exception.h: - new exception constant
4841: FILE_NAME_MUST_BE_SPECIFIED is added
4842:
4843: * src/classes/table.C: - bug with negative offset transformed into
4844: a feature. it means pointing to a row from the end of the table (
4845: new feature: #810 )
4846:
4847: 2011-11-19 misha
4848:
4849: * src/classes/table.C: - íåñêîëüêî signed/unsigned warnings óáðàíû
4850: â ìåòîäå _select ( new feature: #810 )
4851:
4852: * src/types/pa_vxdoc.C: - checkout if $.encoding and $.charset
4853: options were specified together is simplified
4854:
4855: 2011-11-12 misha
4856:
4857: * src/main/pa_request.C: - forgotten fix for escaping filename in
4858: HTTP content-disposition header (a part of bug #361 )
4859:
4860: * src/classes/json.C: - ^json:string[$.class_name[jmethod]] now
4861: checks for ancestors' classes as well ( new feature: #456 )
4862:
4863: * src/classes/op.C: - exceptions for ^break[] and ^continue[]
4864: "without cycle" now have types "parser.break" and
4865: "parser.continue" instead of "parser.runtime" ( new feature: #799
4866: )
4867:
4868: 2011-11-11 misha
4869:
4870: * tests/results/: 099.processed, 100.processed, 205.processed,
4871: 237.processed: - since bug #361 was fixed the content of filename
4872: in HTTP headers is quoted
4873:
4874: * tests/results/270.processed: - result for test 270
4875:
4876: * tests/: 065.html, results/065.processed: - more tests for
4877: ^file:basename[] & Co were added
4878:
4879: * tests/270_dir/: 270.txt, subdir/270.txt: - stuff for 270.html
4880:
4881: * tests/270.html: - tests for ^file:find[] are added
4882:
4883: * src/types/pa_vxdoc.C: - now it's possible to specify encoding
4884: using option $.charset. option $.engoding is still supported but
4885: these options can not be specified together
4886:
4887: * src/classes/xdoc.C: - charset.isUTF8 is used instead of
4888: comparation charset name with string "UTF-8" ( bugfix: #759 )
4889:
4890: 2011-10-11 misha
4891:
4892: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h: - new
4893: option was added: ^xdoc.file[$.name[èìÿ ôàéëà]] (new feature:
4894: #622)
4895:
4896: 2011-09-30 misha
4897:
4898: * src/types/pa_vrequest.C: - saving empty $request:post-body causes
4899: exception "saving stat-ed file" ( bugfix: #395 )
4900:
4901: 2011-05-30 misha
4902:
4903: * src/classes/string.C: - fixed bug which was added with
4904: params.as_hash into string:sql
4905:
4906: 2011-05-29 misha
4907:
4908: * src/types/pa_value.C: - filename in content-disposition header
4909: must be quoted ( bugfix: #361 )
4910:
4911: 2011-05-27 misha
4912:
4913: * src/classes/: image.C, xdoc.C: - $.mode must be set for newly
4914: created file
4915:
4916: * src/classes/: hash.C, mail.C: - little tunning with get_hash
4917: usage
4918:
4919: * src/include/pa_exception.h: - one more string for exception was
4920: added
4921:
4922: 2011-05-25 misha
4923:
4924: * tests/269.html: - tests for checking input params in some dom
4925: methods
4926:
4927: * src/classes/: xdoc.C, xnode.C: - validation of some input params
4928: was added. it isn't possible not wo create xdoc with invalid
4929: tagName. ( bugfix: #160 )
4930:
4931: * src/include/: pa_exception.h, pa_xml_exception.h: - exception's
4932: string "data must be string" was mover from pa_exception.h to
4933: pa_xml_exception.h
4934:
4935: * src/classes/: xnode.C, xnode.h: - methods as_xmlqname,
4936: as_xmlncname, as_xmlname and as_xmlnsuri were added
4937:
4938: * src/main/pa_xml_exception.C: - XmlException accepts more options
4939:
4940: * src/include/pa_xml_exception.h: - XmlException accepts more
4941: options - XML-related exception's strings were added
4942:
4943: * src/: classes/xdoc.C, types/pa_vxdoc.h: - code cleanup (unused
4944: output_options were removed)
4945:
4946: 2011-05-19 misha
4947:
4948: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
4949: params.as_hash is used more while parsing methods hash-options
4950:
4951: 2011-05-18 misha
4952:
4953: * operators.txt: - info about json-serialization of xdoc was added
4954:
4955: * tests/256.html: - tests for json-serialization xdoc were added
4956:
4957: * src/types/pa_vxdoc.C: - ups. I've forgot about "method" :)
4958:
4959: * src/: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
4960: classes/json.C, classes/xdoc.C: - now json:string can serialize
4961: xdoc-objects. options (the same as ^xdoc.string[]) could be
4962: specified in $.xdoc[] ( new feature: #265 )
4963:
4964: 2011-05-15 misha
4965:
4966: * tests/268.html: - tests for ^table.count[with options] were added
4967:
4968: * src/classes/table.C: - method ^table.count[] now can accept
4969: options ( new feature: #93 ): ^table.count[column] returns number
4970: of columns for named table; ^table.count[cells] returns number of
4971: cells in the current row; ^table.count[] & ^table.count[rows]
4972: return number of rows in a table.
4973:
4974: * tests/267.html: - test for checking switch/case in boolean mode
4975: was added
4976:
4977: * src/classes/op.C: - if switch's or case's value is bool, they are
4978: compared as bool values, not as double values: new feature: #351
4979:
4980: 2011-05-06 misha
4981:
4982: * tests/242.html: - EOL before EOF was added
4983:
4984: * tests/169.html: - tests for splitting empty string and void were
4985: added
4986:
4987: * src/main/pa_string.C: - fix of fix (^empty_string.split[...]
4988: returned table with one empty cell)
4989:
4990: 2011-04-03 misha
4991:
4992: * src/include/pa_version.h, configure.in: - version in head was
4993: changed to 3.4.2b
4994:
4995: 2011-03-30 misha
4996:
4997: * src/types/pa_vregex.C: - \w & Co now contain unicode properties
4998: as well ( new feature #294 )
4999:
5000: 2011-03-29 misha
5001:
5002: * buildall-with-xml, buildall-without-xml: - PCRE stack usage is
5003: limited to approx. 6 MB. previous limits were too big for real
5004: life. bugfix: #216
5005:
5006: 2011-03-04 moko
5007:
5008: * etc/parser3.charsets/cp866.cfg: Conforms to
5009: http://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP866.TXT
5010:
5011: * etc/parser3.charsets/cp866.cfg: cp866 initial version from
5012: vlalek@
5013:
5014: 2011-02-22 misha
5015:
5016: * src/include/pa_charset.h, operators.txt: - some methods mustn't
5017: be under #ifdef XML or parser can't be compiled without xml
5018: support
5019:
5020: 2011-02-21 misha
5021:
1.116 moko 5022: * src/targets/apache/: Makefile.am: - mention
1.95 moko 5023: ApacheModuleParser3.vcproj was removed
5024:
5025: * src/types/pa_vjunction.C: - EOL before EOF was added (warning
5026: removed)
5027:
5028: 2011-02-20 misha
5029:
5030: * tests/: 266.html, 266.p: - tests for checking $.inherited and
5031: $.overridden in ^reflection:method_info[...] were added
5032:
5033: * src/classes/reflection.C: - beautifying result of
5034: ^reflection:method_info[] ($.overridden/inherited)
5035:
5036: 2011-02-18 misha
5037:
5038: * src/main/: pa_charset.C, pa_http.C, untaint.C: - use pa_isalpha
5039: and pa_isalnum instead of isalpha and isalnum - bug with
5040: redundand quoting lowercased latin chars while building email
5041: body was fixed
5042:
5043: * src/include/pa_common.h: - pa_isalpha and ps_isalnum methods were
5044: added (they check for latin chars only)
5045:
5046: 2011-02-16 misha
5047:
5048: * src/main/pa_charset.C: - bugfix: in some cases the calculating
5049: string size for transcoding gave too small value (should ever
5050: look for availability char in dest charset inspite of the char
5051: size)
5052:
5053: 2011-02-04 moko
5054:
5055: * tests/223.html: header values now not url-encoded (issue #195)
5056:
5057: 2011-02-01 misha
5058:
5059: * buildall-with-xml, buildall-without-xml: - 8.10 => 8.12
5060:
5061: 2011-01-31 misha
5062:
5063: * src/main/pa_request.C: - throw exception if param file_name in
5064: use_file is empty
5065:
5066: 2011-01-08 moko
5067:
5068: * src/classes/curl.C: compilations errors fixed
5069:
5070: 2010-12-29 moko
5071:
5072: * tests/: 265.html, results/265.processed: test for issue #200
5073: added
5074:
5075: * src/main/pa_string.C: empty regex result check added (fixes issue
5076: #200)
5077:
5078: * src/main/pa_http.C: pa_http_safe_header_name corrected a bit
5079:
5080: * tests/results/223.processed: header values now not url-encoded
5081: (issue #195)
5082:
5083: * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
5084: main/untaint.C: L_HTTP_HEADER now used in http headers values,
5085: pa_http_safe_header_name added for headers names (fixes bug #195)
5086:
5087: 2010-12-18 misha
5088:
5089: * src/: types/types.vcproj, classes/classes.vcproj: - arp-include
5090: => pa-include
5091:
5092: 2010-11-28 moko
5093:
5094: * src/lib/sdbm/sdbm.vcproj: apr -> pa (.vcproj)
5095:
5096: * src/lib/sdbm/: pa_strings.C, sdbm.c, pa-include/pa_strings.h: apr
5097: -> pa
5098:
5099: * configure.in: apr -> pa
5100:
5101: * src/types/: pa_vhashfile.C, pa_vhashfile.h: apr -> pa
5102:
5103: * src/: lib/sdbm/pa-include/Makefile.am, lib/sdbm/Makefile.am,
5104: classes/Makefile.am, types/Makefile.am: apr -> pa
5105:
5106: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C,
5107: pa_file_io.C, pa_strings.C, sdbm.c, sdbm_hash.c, sdbm_lock.c,
5108: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h,
5109: pa-include/pa_apr.h, pa-include/pa_errno.h,
5110: pa-include/pa_file_info.h, pa-include/pa_file_io.h,
5111: pa-include/pa_sdbm.h, pa-include/pa_strings.h: apr -> pa (apache2
5112: module apr name conflict resolved)
5113:
5114: 2010-11-27 misha
5115:
5116: * buildall-with-xml, buildall-without-xml: - typo fixed: libz2 ->
5117: libbz2
5118:
5119: 2010-11-26 misha
5120:
5121: * src/: types/pa_vregex.C, classes/hash.C, classes/table.C: -
5122: warnings removed
5123:
5124: 2010-11-25 moko
5125:
5126: * operators.txt: $.indent(true)
5127:
5128: * operators.txt: another bugfix. :)
5129:
5130: * operators.txt: bugfix. :)
5131:
5132: * buildall-with-xml: libxml2-2.7.8 + with-apache
5133:
5134: 2010-11-24 moko
5135:
1.116 moko 5136: * configure: apxs support
1.95 moko 5137:
5138: * configure.in: apxs support -Bstatic gc removed for OS X
5139:
5140: * src/targets/: Makefile.am, apache/Makefile.am: apxs support
5141:
5142: * src/main/: pa_globals.C, pa_xml_io.C: the rest converted to
5143: THREAD_LOCAL usage
5144:
5145: * src/: classes/curl.C, include/pa_config_includes.h,
5146: main/pa_globals.C: THREAD_LOCAL defined and used
5147:
5148: 2010-11-23 moko
5149:
5150: * src/: classes/op.C, main/pa_os.C: microseconds, not milliseconds
5151: should be passed to pa_sleep, and only fractional part (bugfix:
5152: #188)
5153:
5154: * src/targets/apache/mod_parser3.c: 1.3 compatibility
5155:
5156: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
5157: GC_dont_gc=1, as in cgi version
5158:
5159: * src/targets/apache/mod_parser3.c: warning war
5160:
5161: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
5162: pa_httpd.h: version removed, some trash removed
5163:
5164: * src/targets/apache/mod_parser3.c: version removed (we don't want
5165: to show it), warning war
5166:
5167: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
5168: pa_httpd.h: parser_status_allowed removed + merge config
5169: functions removed (override is the default) + beauty
5170:
5171: * src/: include/pa_request.h, main/pa_request.C,
5172: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: option to
5173: hide $status used in apache module removed
5174:
5175: 2010-11-18 moko
5176:
5177: * operators.txt: $.table[compact] added for ^json:string[]
5178:
5179: 2010-11-16 moko
5180:
5181: * src/targets/apache/mod_parser3.c: some cleanup done
5182:
5183: * src/main/untaint.C: bugfix: first, second String::Body argument
5184: is hashcode; second, info.fragment_begin is original, not
5185: resulting length
5186:
5187: * src/classes/file.C: new feature: $.stdin now untainted
5188:
5189: * tests/results/264.processed: new feature: $.stdin[] now untainted
5190:
5191: * tests/cat.sh: new feature: stdin arg to test $.stdin[value]
5192:
5193: * src/classes/op.C: ^apply-taint[] method added
5194:
5195: * tests/: 264.html, results/264.processed: ^apply-taint[] test
5196: added; $.stdin untaint test added
5197:
5198: 2010-11-15 moko
5199:
5200: * src/targets/apache/mod_parser3.c: outdated MODULE_MAGIC_NUMBER
5201: removed
5202:
5203: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
5204: pa_httpd.h: 2x2 calculated under apache2. :)
5205:
5206: 2010-11-13 moko
5207:
5208: * src/targets/apache/mod_parser3.c: initial changes to build module
5209: with apache 2.x includes
5210:
5211: * src/targets/apache/: Makefile.am, mod_parser3.c,
5212: mod_parser3_core.C, pa_httpd.h, pa_threads.C: initial commit for
5213: united apache 1.3 / apache 2.x DSO module
5214:
5215: 2010-11-09 moko
5216:
5217: * src/types/pa_method.h: check added to dissallow @method[name;*]
5218: syntax
5219:
5220: * tests/: 263.html, results/263.processed: test from method[*args]
5221: added
5222:
5223: * src/types/: pa_method.h, pa_vmethod_frame.h: closes #26: variable
5224: number of params can now be passed to a method declared with *arg
5225:
5226: 2010-11-06 moko
5227:
5228: * src/classes/table.C: formating fixed. :)
5229:
5230: * src/classes/table.C: closes #4: ^table.select now supports
5231: $.limit(), $.offset, $.reverse() options
5232:
5233: * tests/: 262.html, results/262.processed: test for ^table:select
5234: with options added (feature #4)
5235:
5236: * src/include/pa_array.h: remove function added
5237:
5238: * src/types/: pa_vhash.C, pa_vhash.h: avoiding temporal String
5239: object in get_element/put_element, using static one.
5240:
5241: 2010-11-04 moko
5242:
5243: * src/types/pa_vregex.C: closes #6: exeption now thrown if invalid
5244: options is passed
5245:
5246: * tests/: 256.html, results/256.processed: $.table[compact] feature
5247: now tested; k and p in handler now tested.
5248:
5249: * src/types/: pa_value.h, pa_vtable.C, pa_vtable.h: fixes #153,
5250: $.table[compact] feature added
5251:
5252: * src/classes/json.C: key is now passed to handler in
5253: value_json_string; ^json:string result now process tainting
5254: inside and returns clean string, related to issue #153
5255:
5256: * src/main/untaint.C: bugfix: charset can be null (in
5257: ^string:save[] as example), thus check is added
5258:
5259: 2010-10-31 moko
5260:
5261: * src/classes/string.C: error message changed (fixes issue #149)
5262:
5263: 2010-10-29 moko
5264:
5265: * src/main/pa_http.C: ":port" is now added to "Host:" header if
5266: port is not default (fixes issue #155); exception on invalid port
5267: added.
5268:
5269: * src/main/untaint.C: '*' is now not urlencoded to allow header
5270: "Accept: */*" to be passed
5271:
5272: 2010-10-28 moko
5273:
5274: * src/classes/curl.C: bugfix: detect_charset() was throwing
5275: exception on unknown charset even if response_charset was
5276: specified
5277:
5278: 2010-10-27 moko
5279:
5280: * src/classes/string.C: ^string.append removed for void
5281: compatibility
5282:
5283: 2010-10-26 moko
5284:
5285: * src/classes/json.C: libjson supports array at top level, we too
5286: (GPF fixed)
5287:
5288: 2010-10-25 moko
5289:
5290: * tests/: 253.html, results/253.processed: libjson supports array
5291: at top level, parser now supports it as well.
5292:
5293: * tests/261.html, tests/results/261.processed,
5294: src/types/pa_vstring.h: empty string is now void compatible
5295: (allows $empty.key)
5296:
5297: 2010-10-22 misha
5298:
5299: * src/types/pa_vcookie.C: - fix for session cookie (was introduced
5300: while adding additional expires checkout)
5301:
5302: * tests/030.html: - test for session cookie was added
5303:
5304: 2010-10-21 moko
5305:
5306: * src/: classes/string.C, classes/void.C, main/execute.C,
5307: types/pa_vvoid.C, types/pa_vvoid.h: void now inherited from
5308: string (feature #111)
5309:
5310: * tests/: 261.html, results/261.processed: checks void from string
5311: inheritance (feature #111)
5312:
5313: * src/classes/: bool.C, classes.h, curl.C, date.C, double.C,
5314: file.C, hash.C, hashfile.C, image.C, inet.C, int.C, json.C,
5315: reflection.C, regex.C, string.C, table.C, void.C: used_directly()
5316: now true by default
5317:
5318: 2010-10-17 moko
5319:
5320: * src/: include/pa_string.h, main/pa_http.C, main/untaint.C: files
5321: upload now uses binary blocks instead of L_FILE_POST tainting.
5322: (bugfix: #128)
5323:
5324: * tests/: 223.html, results/223.processed: binary file upload test
5325: added, GPF (issue #128) also checked in this test
5326:
5327: 2010-10-13 misha
5328:
5329: * tests/260.html: - test for math:convert
5330:
5331: * src/classes/math.C: - error in math:convert was fixed
5332:
5333: * operators.txt: - info about
5334: ^math:convert[number](from-base;to-base) was added
5335:
5336: * src/classes/math.C: - method
5337: ^math:convert[number](from-base;to-base) for converting number
5338: represention from one base to another was added ( new feature:
5339: #23 )
5340:
5341: 2010-10-13 moko
5342:
5343: * src/main/compile.tab.C: [] now is empty string, not void
5344:
5345: * src/main/compile.y: [] now is empty string, not void
5346:
5347: * src/types/pa_vvoid.h: void now passed as parameter
5348:
5349: * tests/: 259.html, results/259.processed: to test difference
5350: between void and empty string (see ticket #111)
5351:
5352: * tests/results/152.processed: $sEmpty[] is now empty string, not
5353: void
5354:
5355: * tests/256.html: $s[$void] is no longer empty string
5356:
5357: * tests/254.html: empty string is no longer void
5358:
5359: 2010-10-12 misha
5360:
5361: * src/types/pa_vcookie.C: - check if $.expires value can be
5362: converted to date during cookies set up ( bugfix: #104 )
5363:
5364: * tests/041.html: - more tests for ^table.locate were added
5365:
5366: * src/classes/table.C: - ^table.locate[field;value;options] didn't
5367: work ( bugfix: #129 ) - exception comment for incorrect options
5368: ^table.locate[field;value;options] was fixed
5369:
5370: 2010-10-10 moko
5371:
5372: * src/: classes/reflection.C, main/execute.C: constructor returning
5373: another object feature returned
5374:
5375: * tests/results/258.processed: test result updated as constructor
5376: returning another object feature returned
5377:
5378: * tests/: 258.html, results/258.processed: test for constructor
5379: returning another object
5380:
5381: 2010-10-08 misha
5382:
5383: * tests/257.html: - whitespaces after @METACOMMANDS and their
5384: options shouldn't cause exceptions any longer
5385:
5386: 2010-10-06 moko
5387:
5388: * src/classes/: hash.C, table.C: length from sql server is now
5389: ignored, as sql string can contain 0x00 inside (bugfix: #119)
5390:
5391: 2010-10-02 misha
5392:
5393: * operators.txt: - the X mark was removed from ^cache[file]. it is
5394: usable to delete cache file.
5395:
5396: 2010-10-02 moko
5397:
5398: * tests/: 253.html, results/253.processed: hook_key added for key
5399: checking
5400:
5401: * src/classes/json.C: null key bug fixed
5402:
5403: 2010-09-29 misha
5404:
5405: * tests/: 256.html, 256.txt: - tests for ^json:string[] were added
5406:
5407: 2010-09-25 moko
5408:
5409: * src/classes/json.C: small fixed
5410:
5411: * tests/results/: 253.processed, 255.processed: just updated
5412:
5413: * tests/: 253.html, 253_json.txt, 255.html, results/253.processed,
5414: results/255.processed: charset transcode test added for
5415: json:parse
5416:
5417: 2010-09-24 moko
5418:
5419: * src/types/pa_value.h: warning war :)
5420:
5421: * src/: classes/json.C, include/pa_request.h, types/pa_value.h,
5422: types/pa_vfile.C, types/pa_vtable.C: $.indent implemented for
5423: ^json:string
5424:
5425: 2010-09-22 moko
5426:
5427: * src/main/pa_charset.C: parser charset tables declare only
5428: white-space before 0x20, thus adding the missing chars
5429:
5430: * etc/parser3.charsets/: koi8-r.cfg, koi8-u.cfg: updated to conform
5431: to http://unicode.org/Public/MAPPINGS/VENDORS/
5432:
5433: 2010-09-21 misha
5434:
5435: * src/main/compile.y: - some semicolons were added (VS2010 don't
5436: want to compile grammar if they are absent)
5437:
5438: * tests/: make_tests.cmd, run_tests.cmd: - path tools is changed
5439:
5440: * src/classes/classes.vcproj: - pathes to ls and gawk are changed
5441:
5442: * src/main/main.vcproj: - path to bison is changed
5443:
5444: 2010-09-21 moko
5445:
1.116 moko 5446: * etc/parser3.charsets/: windows-1250.cfg, windows-1251.cfg,
5447: windows-1254.cfg, windows-1257.cfg, x-mac-cyrillic.cfg: updated
5448: to conform to http://unicode.org/Public/MAPPINGS/VENDORS/
1.95 moko 5449:
5450: 2010-09-20 misha
5451:
5452: * src/types/pa_vtable.C: - add EOLs while json-serializing table
5453:
5454: * src/classes/json.C: - add EOL while json-serializing hash
5455:
5456: * src/lib/json/JSON_parser.C: - 'ES' replaced by 'ESC' because some
5457: compilers don't like 'ES'.
5458:
5459: 2010-09-17 misha
5460:
5461: * operators.txt: - info about json class was added
5462:
5463: * src/classes/json.C: - ^json:string[object]
5464:
5465: * src/: include/pa_request.h, main/pa_request.C: - stuff for
5466: preventing infinite recursion while executing json:string was
5467: added
5468:
5469: * src/include/pa_string.h: - method append_quoted was added
5470:
5471: * src/types/: pa_value.C, pa_value.h, pa_vbool.h, pa_vdate.h,
5472: pa_vdouble.h, pa_vfile.C, pa_vfile.h, pa_vint.h, pa_vstring.h,
5473: pa_vtable.C, pa_vtable.h, pa_vvoid.h: - method get_json_string
5474: was added to Value & Co
5475:
5476: * src/classes/date.C: - methods get_gmt_string and get_sql_string
5477: were used
5478:
5479: * src/types/pa_vdate.h: - methods get_gmt_string and get_sql_string
5480: were added
5481:
5482: 2010-09-10 moko
5483:
5484: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
5485: die_or_abort (backport from 3.4.1)
5486:
5487: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
5488: die_or_abort (bugfix: #106)
5489:
5490: 2010-09-09 moko
5491:
5492: * src/classes/json.C: warning war. :)
5493:
5494: 2010-09-08 misha
5495:
5496: * src/lib/json/Makefile.am: - additional include directories were
5497: added (for pa_memory.h and gc.h)
5498:
5499: * src/lib/json/json.vcproj: - JSON_parser.c => JSON_parser.C -
5500: compile as C++ instead default - additional include directory was
5501: added (for gc.h)
5502:
5503: * src/types/pa_vform.C: - little code reformating
5504:
5505: * src/classes/file.C: - $.content-type option now can be specified
5506: in ^file::create ( new feature: #102 )
5507:
5508: 2010-09-08 moko
5509:
5510: * src/lib/json/: JSON_parser.C, JSON_parser.h: json lib now uses
5511: pa_malloc/pa_free
5512:
5513: 2010-09-07 moko
5514:
5515: * tests/results/254.processed: VStateless_class:put_element
5516: exception was fixed
5517:
5518: * src/types/: pa_value.h, pa_vstateless_class.h: now
5519: VStateless_class:put_element barks self.type, not this.type
5520: (bugfix: #105)
5521:
5522: 2010-09-06 moko
5523:
5524: * src/classes/reflection.C: bugfix: new String() is required for
5525: exception handling
5526:
5527: * tests/: 254.html, results/254.processed: test modified
5528:
5529: 2010-09-05 moko
5530:
5531: * tests/: 254.html, results/254.processed: ^reflection:copy test
5532: added
5533:
5534: * src/: classes/reflection.C, include/pa_request.h:
5535: ^reflection:copy implemented (new feature: #100)
5536:
5537: 2010-09-03 moko
5538:
5539: * src/lib/json/JSON_parser.C: c++ compatiblity
5540:
5541: * tests/: 253.html, 253_json.txt, results/253.processed: $.distinct
5542: option testing added
5543:
5544: 2010-09-02 moko
5545:
5546: * src/classes/json.C: $.distinct[first|last|all] added
5547:
5548: 2010-09-01 moko
5549:
5550: * tests/results/253.processed: json test result
5551:
5552: * tests/: 253.html, 253_json.txt: json test added
5553:
5554: * src/classes/json.C: json.C update to actual version + hash key
5555: creation bugfix
5556:
5557: 2010-08-31 misha
5558:
5559: * src/lib/json/JSON_parser.C, src/lib/json/JSON_parser.h,
5560: src/lib/json/Makefile.am, src/lib/json/json.vcproj,
5561: src/lib/Makefile.am, src/classes/Makefile.am,
5562: src/classes/classes.vcproj, src/classes/json.C, parser3.sln: -
5563: json library was added
5564:
5565: 2010-08-30 moko
5566:
5567: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
5568: types/pa_vobject.C: cosmetic optimization in
5569: request:execute_method usage
5570:
5571: * src/: include/pa_charset.h, main/pa_charset.C: small
5572: optimization, just to decrease number of lines. :)
5573:
5574: 2010-08-27 misha
5575:
5576: * src/classes/op.C: - taint[json] was added
5577:
5578: * tests/: 250.html, 251.html, 252.html: - tests for taint[json]
5579: were added
5580:
5581: * src/main/pa_exec.C: - warning fix was rolled back.
5582:
5583: * src/: main/pa_charset.C, main/untaint.C, include/pa_charset.h,
5584: include/pa_string.h: - taint[json] was added - escaping was
5585: slightly modified
5586:
5587: 2010-08-25 misha
5588:
5589: * src/classes/file.C: - typo in file:sql exception was fixed
5590:
5591: * src/main/pa_exec.C: - warning about declared and not used
5592: variable forced_allow was removed
5593:
5594: 2010-08-14 misha
5595:
5596: * src/classes/hash.C: - two warnings about signed/unsigned mismatch
5597: were removed
5598:
5599: 2010-08-11 moko
5600:
5601: * tests/: 249.html, results/249.processed: default setter and
5602: anti-recursive default getter test added
5603:
5604: * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
5605: types/pa_value.h, types/pa_vclass.C, types/pa_vobject.C,
5606: types/pa_vobject.h, types/pa_vstateless_class.C,
5607: types/pa_vstateless_class.h: default setter support +
5608: anti-recursive default getter support ( new feature: #13 )
5609:
5610: * src/include/pa_hash.h: optimization: threshold member removed
5611: from hash, reducing sizeof(hash)
5612:
5613: 2010-08-10 misha
5614:
5615: * tests/196.html: - junction-method was added to the test
5616:
5617: * tests/248.html: - ups. typo :)
5618:
5619: * tests/248.html: - test for checking .match with 4 params
5620:
5621: * tests/: 247.html, 247_utf8.txt, 247_utf8_bom.txt,
5622: 247_windows1251.txt: - test for "transcode file from utf-8 to
5623: $request:charset during loading if the BOM code is detected"
5624:
5625: * src/main/: pa_common.C, pa_http.C: - transcode file from utf-8 to
5626: $request:charset during loading if the BOM code is detected ( new
5627: feature: #98 )
5628:
5629: 2010-08-05 misha
5630:
5631: * src/classes/image.C: - ^image.replace now can accept only 2
5632: params. in this case the whole image is affected ( new feature:
5633: #95 )
5634:
5635: 2010-08-04 misha
5636:
5637: * tests/246.html: - test tor ^hash._at[] was added
5638:
5639: * src/classes/hash.C: - ^hash._at[first|last|[-]N] ( new feature:
5640: #53 )
5641:
5642: * src/include/pa_hash.h: - methods for accessing the first and the
5643: last values of ordered hash were added (first_value and
5644: last_value)
5645:
5646: * src/classes/file.C: - now ^file::base64 accepts up to 4 params
5647: (similar to others file's methods):
5648: ^file::base64[mode;user-file-name;encoded;options] ( new feature:
5649: #68 )
5650:
5651: * src/types/pa_vmethod_frame.h: - helper method as_hash was added
5652:
5653: 2010-08-01 moko
5654:
5655: * src/classes/op.C: to correctly process $result[] in code, called
5656: from ^process
5657:
5658: * tests/245.html: $result in ^process[] test added
5659:
5660: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
5661: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.C,
5662: types/pa_vmethod_frame.h, types/pa_vobject.C: optimization:
5663: VMethodFrame(junction, caller) replaced with VMethodFrame(method,
5664: caller, self) op_call(VMethodFrame &frame, bool constructing)
5665: removed, construct(class,method) added
5666:
5667: * tests/results/: 192.processed, 244.processed: request::construct
5668: added
5669:
5670: * tests/: 244.html, 245.html, results/244.processed,
5671: results/245.processed: object creation exceptions and ^process
5672: tests added
5673:
5674: 2010-07-28 misha
5675:
5676: * tests/make_tests.cmd: - win32 EOLs
5677:
5678: * tests/: run_parser.cmd, run_tests.cmd: - cmd files for executing
5679: tests on Win32 were added (The system timezone should be GMT+3)
5680:
5681: 2010-07-26 misha
5682:
5683: * tests/: 212.html, results/212.processed: - sizes were removed
5684: mecause they could be different on different OSs
5685:
5686: * tests/065.html: - make it "win32 friendly"
5687:
5688: 2010-07-25 misha
5689:
5690: * src/main/compile.y: - all EOLs between methods are removed during
5691: compilation ( new feature: #47 )
5692:
5693: * tests/results/149.processed: - prepare tests to trim trailing
5694: methods' EOLs
5695:
5696: * tests/149.html: - prepare tests to trim trailing methods' EOLs
5697:
5698: * tests/: results/006.processed, results/014.processed, 006.html,
5699: 014.html, 022.html: - prepare tests to trim trailing methods'
5700: EOLs
5701:
5702: * tests/: 059.html, 071.html, 149.html, results/059.processed,
5703: results/071.processed, results/022.processed: - prepare tests to
5704: trim trailing methods' EOLs
5705:
5706: * tests/: results/073.processed, results/109.processed,
5707: results/142.processed, results/144.processed,
5708: results/149.processed, 073.html, 096.html, 109.html, 142.html,
5709: 144.html: - prepare tests to trim trailing methods' EOLs
5710:
5711: * tests/: 096.html, 107.html, 109.html, 142.html, 144.html,
5712: 149.html, 152.html, results/096.processed, results/107.processed,
5713: results/109.processed, results/142.processed,
5714: results/144.processed: - prepare tests to trim trailing methods'
5715: EOLs
5716:
5717: 2010-07-24 moko
5718:
5719: * tests/results/: 156.processed, 224.processed: fix for #54 changed
5720: the hash order in this test
5721:
5722: * tests/014.html: to check hash order, hash no is longer sorted
5723: before print
5724:
5725: * src/include/pa_hash.h: hash copy constructor now keeps order
5726: (bugfix: #54)
5727:
5728: 2010-07-23 moko
5729:
5730: * tests/results/224.processed: @auto[] is no longer inherited
5731:
5732: * src/types/pa_vstateless_class.C, tests/227.html,
5733: tests/results/227.processed: @auto[] is no longer inherited
5734: (bugfix: #57)
5735:
5736: 2010-07-22 misha
5737:
5738: * src/classes/table.C: - don't skip comment lines during
5739: table::load if encloser or separator is set as '#' ( new feature:
5740: #30 )
5741:
5742: * src/targets/cgi/parser3.C: - don't run as cgi if
5743: env:PARSER_VERSION was set for preventing infinite loot ( bugfix:
5744: #12 )
5745:
5746: * src/classes/file.C: - set PARSER_VARSION env before external
5747: script executing
5748:
5749: 2010-07-13 misha
5750:
5751: * tests/058.html: - test for suppressing @border was added - test
5752: for user attribute was added
5753:
5754: * tests/results/186.processed: unescaping from \uXXXX
5755:
5756: * tests/186.html: unescaping from \uXXXX
5757:
5758: * tests/: 239.html, results/239.processed: method call type
5759:
5760: * src/types/: pa_vjunction.C, pa_vjunction.h: - bugfix: #90 :
5761: $junction_method.CLASS_NAME (+CLASS)
5762:
5763: 2010-07-07 misha
5764:
5765: * buildall-with-xml, buildall-without-xml: - moving to pcre 8.10 on
5766: *nix
5767:
5768: 2010-07-05 misha
5769:
5770: * src/: classes/curl.C, classes/file.C, classes/hash.C,
5771: classes/image.C, classes/op.C, classes/string.C, classes/table.C,
5772: classes/void.C, main/pa_common.C, main/pa_http.C: - exception
5773: comment strings "options must be hash", "options must be hash,
5774: not code" and "called with invalid option" were replaced by
5775: constatns - exception comment string "invalid option passed" was
5776: replaced by "called with invalid option" (now in different
5777: methods are the same exception comment string)
5778:
5779: * src/include/pa_exception.h: - more exception strings were defined
5780:
5781: * src/: main/compile.y, main/compile_tools.C, main/compile_tools.h,
5782: types/pa_vstateless_class.h: - now we can define possible
5783: method's call type ( new feature: #5 ) 1.
5784: @OPTIONS\nstatic|dynamic (no option == any) -- for all classe's
5785: methods 2. @static:method[params] (only static keyword could be
5786: used here) -- for specified methods
5787:
5788: * src/main/pa_common.C: - junction points should not be deleted on
5789: win32 during dirs cleanup ( bugfix: #83 ) - optimisation in dirs
5790: cleanup
5791:
5792: 2010-07-03 misha
5793:
5794: * tests/: 158.html, 160.html, 161.html, 162.html, 163.html,
5795: results/158.processed, results/160.processed,
5796: results/161.processed, results/162.processed,
5797: results/163.processed: - prepare tests to trim trailing methods'
5798: EOLs
5799:
5800: * tests/results/169.processed: - prepare tests to trim trailing
5801: methods' EOLs
5802:
5803: * tests/results/: 168.processed, 169.processed: - prepare tests to
5804: trim trailing methods' EOLs
5805:
5806: * tests/: results/170.processed, results/167.processed,
5807: results/168.processed, results/169.processed, 167.html, 168.html,
5808: 169.html: - prepare tests to trim trailing methods' EOLs
5809:
5810: * tests/: results/170.processed, results/171.processed,
5811: results/172.processed, results/173.processed,
5812: results/174.processed, results/175.processed, 170.html, 171.html,
5813: 172.html, 173.html, 174.html, 175.html: - prepare tests to trim
5814: trailing methods' EOLs
5815:
5816: * tests/: results/176.processed, results/180.processed,
5817: results/184.processed, results/185.processed,
5818: results/191.processed, results/192.processed,
5819: results/196.processed, results/197.processed,
5820: results/198.processed, 176.html, 180.html, 184.html, 185.html,
5821: 191.html, 192.html, 196.html, 197.html, 198.html: - prepare tests
5822: to trim trailing methods' EOLs
5823:
5824: * tests/: 199.html, 208.html, 209.html, 213.html, 214.html,
5825: results/199.processed, results/208.processed,
5826: results/209.processed, results/213.processed,
5827: results/214.processed: - prepare tests to trim trailing methods'
5828: EOLs
5829:
5830: 2010-06-29 misha
5831:
5832: * tests/: 220.html, 218.html, results/218.processed,
5833: results/215.processed, results/217.processed, 215.html, 217.html:
5834: - prepare tests to trim trailing methods' EOLs
5835:
5836: * tests/: results/224.processed, 224.html, 223.html,
5837: results/223.processed, results/220.processed: - prepare tests to
5838: trim trailing methods' EOLs
5839:
5840: * tests/results/: 226.processed, 230.processed: - prepare tests to
5841: trim trailing methods' EOLs
5842:
5843: * tests/: 229.html, results/229.processed: - prepare tests to trim
5844: trailing methods' EOLs
5845:
5846: * tests/: 232.html, 235.html, results/232.processed,
5847: results/235.processed, 226.html, 227.html, 228.html, 230.html,
5848: results/226.processed, results/227.processed,
5849: results/228.processed, results/230.processed: - prepare tests to
5850: trim trailing methods' EOLs
5851:
5852: 2010-06-16 moko
5853:
5854: * tests/: 229.html, results/229.processed: elseif now supported in
5855: ^if
5856:
5857: * src/classes/op.C: new feature: #56 elseif now supported in ^if
5858:
5859: 2010-06-03 misha
5860:
5861: * src/main/pa_common.C: - bugfix #74 -- memmove should be used
5862: instead of memcopy for overlaped regions
5863:
5864: 2010-05-25 misha
5865:
5866: * src/main/pa_common.C: - wanring about unused vars was removed
5867:
5868: * src/: include/pa_request.h, main/execute.C, main/pa_request.C: -
5869: get_method_filename was moved to execute.C
5870:
5871: 2010-05-23 misha
5872:
5873: * src/main/pa_request.C: - more accurate detection of method's file
5874:
5875: 2010-05-22 misha
5876:
5877: * src/classes/reflection.C: - bugfix: core during detection of
5878: .file if filespec isn't detected successfully
5879:
5880: 2010-05-20 misha
5881:
5882: * src/main/pa_request.C: - fix in get_method_filename
5883:
5884: * src/include/pa_request.h: - new feature: #24 -- searching
5885: included file in @USE/^use is changed. if its filespec doesn't
5886: start from '/' it will be searched in caller file directory
5887:
5888: * src/classes/reflection.C: - ^reflection:method_info returns file
5889: where the method is defined
5890:
5891: * src/: include/pa_request.h, main/compile.y, main/pa_request.C,
5892: classes/op.C: - new feature: #24 -- searching included file in
5893: @USE/^use is changed. if its filespec doesn't start from '/' it
5894: will be searched in caller file directory
5895:
5896: * src/: classes/file.C, include/pa_common.h: - method lastposafter
5897: is moved to pa_common.h
5898:
5899: 2010-05-18 misha
5900:
5901: * src/: main/pa_common.C, include/pa_common.h, classes/string.C,
5902: types/pa_vcookie.C: new feature: #71 ^string:js-unescape and
5903: cookie parser decode \uXXXX as well as %uXXXX
5904:
5905: 2010-05-17 misha
5906:
5907: * src/classes/curl.C: beauty: - unused param is removed in method
5908: _curl_version_action - some spaces were removed or replaced by
5909: tabs
5910:
5911: * src/classes/table.C: - bugfix: #72 core with empty value during
5912: ^table.hash[...;name_of_the_last_column][$.type[string]]
5913:
5914: 2010-05-16 misha
5915:
5916: * src/classes/curl.C: new: #61 more curl options were added
5917: (contributed by Sumo)
5918:
5919: 2010-04-29 pretender
5920:
5921: * src/main/pa_string.C: fixes #63 Split result from empty string
5922: now empty string.
5923:
5924: * src/types/pa_vtable.C: bugfix: #35 All empty table cells are now
5925: string type.
5926:
5927: 2010-04-28 pretender
5928:
5929: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
5930: main/execute.C: bugfix: #59 OPTIMIZE_BYTECODE_GET_CLASS
5931: macrodefinition removed
5932:
5933: 2010-04-19 pretender
5934:
5935: * src/main/execute.C: fixes #60 Stacktrace now contains info for
5936: OP_CONSTRUCT_OBJECT and OP_GET_CLASS
5937:
5938: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
5939: fixes #64 Now file.missing exception generates in unsafe mode to.
5940:
5941: * src/classes/file.C: fixes #48 Now not throw "not save environment
5942: variable" exception in grpunlim version.
5943:
5944: 2010-04-05 misha
5945:
5946: * src/classes/string.C: - new feature: 4th param was added to
5947: match. if specified its value is returned in case of nothing was
5948: found
5949:
5950: 2010-04-01 misha
5951:
5952: * src/main/pa_request.C: - bugfix: on *nix URIs like /a/b/// caused
5953: multiple execution of /a/b/auto.p
5954:
5955: 2010-03-19 misha
5956:
5957: * src/main/execute.C: - core in $table1.$table2 was fixed
5958:
5959: * src/targets/cgi/parser3.C: - core in sigpipe was fixed
5960:
5961: 2010-01-27 misha
5962:
5963: * src/main/pa_common.C: - bugfix: there are no excaption.type if
5964: trying to open file by path /existing-file/non-exixting-file
5965:
5966: 2010-01-26 misha
5967:
5968: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:post-body
5969: was added (returns file)
5970:
5971: 2009-12-22 misha
5972:
5973: * src/classes/curl.C: - method 'option' was renamed to 'options' -
5974: now parser doesn't have class curl if it was built without it
5975:
5976: 2009-12-15 misha
5977:
5978: * configure.in: - little cheat with curl include dir was added
5979:
5980: 2009-12-05 misha
5981:
5982: * src/classes/curl.C: - some fixes
5983:
5984: 2009-12-04 misha
5985:
5986: * src/include/pa_config_fixed.h, src/classes/classes.vcproj,
5987: src/classes/curl.C, src/classes/file.C, src/classes/Makefile.am,
5988: buildall-with-xml, buildall-without-xml, configure.in: - curl
5989: class was added
5990:
5991: * src/include/pa_hash.h: - hash-iterator was added
5992:
5993: * buildall-with-xml, buildall-without-xml: - option --passive-ftp
5994: was added to pcre
5995:
5996: 2009-11-27 misha
5997:
5998: * src/classes/image.C: - don't add @border attribute to output of
5999: ^image.html[] if it was specified by user with empty value
6000:
6001: * src/types/pa_vxdoc.C: - bugfix: core if xdoc doesn't have the
6002: root element and we are trying to access .documentElement
6003:
6004: 2009-11-11 misha
6005:
6006: * src/classes/table.C: - in ^table.flip[] look at number of columns
6007: instead of number of items in first row for named tables
6008:
6009: 2009-11-10 misha
6010:
6011: * operators.txt: - info about hash-options in ^file::create was
6012: added
6013:
6014: * tests/237.html: - test for ^file::create[...;$.charset[...]] was
6015: added
6016:
6017: 2009-11-09 misha
6018:
6019: * buildall-with-xml: - moving to libxml 2.7.6
6020:
6021: * tests/236.html: - tests for comparations cords with functions
6022: were added
6023:
6024: * src/include/pa_string.h: - optimisation: cacheing of cstr was
6025: added
6026:
6027: * src/main/pa_http.C: - little optimisation
6028:
6029: * src/: classes/table.C, lib/gc/include/gc_allocator.h: - bugfix:
6030: GPF mallocs + stringstream (table.save)
6031:
6032: * src/classes/file.C: - file::create now accepts 4th param: options
6033: with $.charset
6034:
6035: * src/lib/cord/: cordxtra.c, include/private/cord_pos.h: - fixed
6036: bug in cord (comparation cords with functions was buggy)
6037:
6038: 2009-11-06 misha
6039:
6040: * src/main/pa_string.C: - bugfix: calculation string.length
6041: sometimes was buggy
6042:
6043: * src/classes/string.C: - bugfix: Temp_value_element wasn't
6044: destroyed if exception occured during match/replace
6045:
6046: * src/: main/pa_charset.C, include/pa_charset.h: - method
6047: lengthUTF8Char was added
6048:
6049: * src/classes/op.C: - clean tainting lang was added for user's
6050: usage
6051:
6052: * src/lib/cord/: cordbscs.c, cordxtra.c: - some rare GPF were
6053: fixed: checkouts are required after GC_MALLOC
6054:
6055: * src/types/pa_vregex.C: - check UTF8 only during 1st iteration
6056:
6057: * operators.txt: - actually, there is no ^untaint[xml] in
6058: file::create
6059:
6060: 2009-10-15 misha
6061:
6062: * tests/: 235.html, 235_attach.txt: - tests for preparing email
6063: were added
6064:
6065: * tests/234.html: - more tests for checking ^taint[uri] escaping
6066: were added
6067:
6068: * src/: include/pa_string.h, main/pa_charset.C, main/pa_http.C,
6069: main/pa_request.C, main/untaint.C, types/pa_vmail.C: - little
6070: hacking: for dealing with transcoding+^taint[uri]
6071: transcode_and_untaint was replaced by untaint_and_transcode
6072:
6073: 2009-10-13 misha
6074:
6075: * tests/: 121.html, results/121.processed: - test transcoding +
6076: url-escaping now
6077:
6078: * tests/results/auto.p: - more helpers' methods were added
6079:
6080: * src/main/pa_globals.C: - die instead of abort
6081:
6082: 2009-10-06 misha
6083:
6084: * src/main/pa_common.C: - don't allocate memory during
6085: capitalization if input string is already capitalized
6086:
6087: * src/targets/isapi/parser3isapi.C: - pass pre-capitalized headers
6088:
6089: * src/targets/cgi/parser3.C: - pass pre-capitalized headers - don't
6090: use format function because it calls malloc
6091:
6092: * src/include/pa_common.h: - more capitalized headers were added
6093:
6094: * src/main/pa_common.C: - in safe mode clear executable bits during
6095: file writing
6096:
6097: 2009-10-05 misha
6098:
6099: * src/main/pa_charset.C: - use iterators in pa_charset.C itself
6100:
6101: 2009-10-03 misha
6102:
6103: * src/: types/pa_vimage.h, classes/image.C: - ^img.font[],
6104: ^img.text[] & ^img.length[] can work in utf-8 now
6105:
6106: * src/: include/pa_charset.h, main/pa_charset.C: - class
6107: UTF8_string_iterator was added
6108:
6109: * src/classes/image.C: - respect utf-8 when calculate alphabet
6110: length
6111:
6112: * src/classes/mail.C: - check from before get message.cstr
6113:
6114: 2009-10-02 misha
6115:
6116: * tests/233.html: - test for image.font, image.length, image.text
6117: with text in utf-8 were added
6118:
6119: * src/main/pa_common.C: - use pa_malloc_atomic instead of new
6120:
6121: * buildall-with-xml, buildall-without-xml: - comment about gc
6122: version for freebsd 4 was added
6123:
6124: 2009-10-01 misha
6125:
6126: * src/main/pa_exec.C: - bugfix: allocate a bit more (for
6127: terminator) - read_pipe were slightly optimized
6128:
6129: 2009-09-28 misha
6130:
6131: * src/main/: pa_common.C, pa_uue.C: - some magic numbers were
6132: removed
6133:
6134: * src/types/pa_vmail.C: - forgot about space after ':'
6135:
6136: * src/types/pa_vmail.C: - escape filenames while preparing mail
6137: body - small simplifications
6138:
6139: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode now has
6140: inout params like pa_base64
6141:
6142: * src/: types/pa_vmail.C, types/pa_vmail.h, classes/mail.C: - new
6143: option $.debug-print(1) was added to mail:send - changes for
6144: using uue_encode which uses less memory
6145:
6146: * src/main/pa_common.C: - pa_base64_encode uses less memory now
6147:
6148: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode reduces less
6149: memory now
6150:
6151: 2009-09-26 misha
6152:
6153: * src/types/pa_vmail.C: - default encoding now is base64
6154:
6155: * buildall-with-xml: - moving to libxml 2.7.5 and libxslt 1.1.26
6156:
6157: 2009-09-25 misha
6158:
6159: * src/types/pa_vmail.C: - capitalization of headers was added to
6160: sending mail as well
6161:
6162: * buildall-with-xml: - catalog package was removed from libxml
6163:
6164: * src/main/pa_xml_io.C: - fix in removing file:// protocol for
6165: win32 absolute path
6166:
6167: * src/include/pa_common.h: - one more capitalized header was added
6168:
6169: 2009-09-22 misha
6170:
6171: * INSTALL: - comment about building just httpd binary while
6172: building apache module was added
6173:
6174: 2009-09-21 misha
6175:
6176: * buildall-with-xml: - moving to the latest versions of xml libs:
6177: libxml 2.7.4 and libxslt 1.1.25
6178:
6179: 2009-09-19 misha
6180:
6181: * tests/231.html: - test for encoding cookie in win-1251
6182:
6183: 2009-09-18 misha
6184:
6185: * tests/: 224.html, 224.p: - tests for ^reflection:fields[class or
6186: object] were added
6187:
6188: * operators.txt: - info about method ^reflection:fields[class or
6189: object] was added
6190:
6191: * src/classes/reflection.C: - method ^reflection:fields[class or
6192: object] was added
6193:
6194: * src/types/: pa_value.h, pa_vclass.C, pa_vclass.h, pa_vobject.h: -
6195: methods get_fields were added
6196:
6197: * tests/232.html: - tests for @GET[name]
6198:
6199: * src/classes/table.C: - some changes in handling hash-options for
6200: creare, join and locate
6201:
6202: * src/types/: pa_vobject.C, pa_vobject.h: - @GET[] now could be
6203: defined with option: the type of requested value
6204:
6205: 2009-09-17 misha
6206:
6207: * tests/212.html: - tests for .pattern and .options were added
6208:
6209: * src/types/: pa_vregex.C, pa_vregex.h: - $regex.pattern and
6210: $regex.options were added
6211:
6212: 2009-09-11 misha
6213:
6214: * tests/: 223.html, 223_utf8.txt, 223_win1251.txt: - test was
6215: rewrited. it checks not just one case of sending cookies during
6216: file::load[http], but also sending headers and fields (including
6217: files)
6218:
6219: 2009-09-10 misha
6220:
6221: * src/main/untaint.C: - workaround in file-spec lang for old Macs
6222: was removed => now parser can open files with Russian 'r' in
6223: filename
6224:
6225: * src/main/untaint.C: - bugfix: client charset whould be analized
6226: while escaping cookies but now source charset
6227:
6228: * src/main/pa_http.C: - bugfix: the values of http headers didn't
6229: ^tainted[uri] so it was possible to make request with incorrect
6230: http header
6231:
6232: * src/main/pa_http.C: - capitalization of http headers during
6233: file::load[http was slightly changes - bugfix: all headers which
6234: parser sends during file::load[http should be transcoded and only
6235: then escaped
6236:
6237: * src/main/untaint.C: - a bit more comments were added
6238:
6239: * src/classes/: file.C, string.C: - types where changes (minus 2
6240: warnings)
6241:
6242: * src/include/pa_common.h: - 2 capitalized strings for making http
6243: headers during file::load[http were added
6244:
6245: 2009-09-08 misha
6246:
6247: * operators.txt: - changes in file.save and string.save were added
6248:
6249: * tests/: 230.html, 230.txt: - tests for checking options in
6250: file.save and string.save were added
6251:
6252: * src/main/pa_request.C: - http headers names, which are passed to
6253: SAPI::add_header_attribute are lowercased now (it'll be
6254: capitalized in that method)
6255:
6256: * src/: types/pa_vfile.C, types/pa_vfile.h, classes/file.C,
6257: classes/string.C: - file_write accepts Request_charsets and asked
6258: charset and cound transcode content before writing - string.save
6259: and file.save have option $.charset now
6260:
6261: * src/: include/pa_common.h, main/pa_common.C, classes/table.C,
6262: classes/xdoc.C: - file_write accepts Request_charsets and asked
6263: charset and cound transcode content before writing
6264:
6265: * src/include/pa_exception.h: - new exception comment string was
6266: defined
6267:
6268: 2009-09-07 misha
6269:
6270: * src/main/compile.y: - grammar $name\ name stops now for regex
6271: sub-pattern\s
6272:
6273: 2009-09-04 misha
6274:
6275: * src/main/pa_http.C: - capitalization of http headers during
6276: file::load[http was implemented
6277:
6278: 2009-09-03 misha
6279:
6280: * src/: main/pa_common.C, main/pa_http.C, main/pa_request.C,
6281: include/pa_common.h, include/pa_sapi.h, types/pa_vcookie.C,
6282: types/pa_vmail.C, targets/cgi/parser3.C,
6283: targets/isapi/parser3isapi.C: - back to storing response http
6284: headers in lowercase - capitalize them during output
6285:
6286: 2009-08-31 misha
6287:
6288: * src/classes/table.C: - allow call with any brackets (it could be
6289: useful in methods with explict result declaration)
6290:
6291: * src/classes/table.C: - bugfix: ^table.sort{...} doesn't work
6292: correctly if $request:charset==koi8-r
6293:
6294: 2009-08-30 misha
6295:
6296: * src/: include/pa_common.h, main/pa_request.C: - http headers were
6297: changed: content-type => Content-type and so on
6298:
6299: * src/classes/file.C, src/include/pa_common.h,
6300: src/include/pa_request.h, src/main/pa_http.C,
6301: src/main/pa_request.C, src/types/pa_vcookie.C,
6302: src/types/pa_vmail.C, src/targets/cgi/parser3.C,
6303: src/targets/isapi/parser3isapi.C, tests/results/001.processed,
6304: tests/results/002.processed, tests/results/003.processed,
6305: tests/results/004.processed, tests/results/005.processed,
6306: tests/results/006.processed, tests/results/007.processed,
6307: tests/results/008.processed, tests/results/009.processed,
6308: tests/results/010.processed, tests/results/011.processed,
6309: tests/results/012.processed, tests/results/013.processed,
6310: tests/results/014.processed, tests/results/015.processed,
6311: tests/results/016.processed, tests/results/017.processed,
6312: tests/results/018.processed, tests/results/019.processed,
6313: tests/results/020.processed, tests/results/021.processed,
6314: tests/results/022.processed, tests/results/023.processed,
6315: tests/results/024.processed, tests/results/025.processed,
6316: tests/results/026.processed, tests/results/027.processed,
6317: tests/results/028.processed, tests/results/029.processed,
6318: tests/results/030.processed, tests/results/031.processed,
6319: tests/results/032.processed, tests/results/033.processed,
6320: tests/results/034.processed, tests/results/035.processed,
6321: tests/results/036.processed, tests/results/037.processed,
6322: tests/results/038.processed, tests/results/039.processed,
6323: tests/results/040.processed, tests/results/041.processed,
6324: tests/results/042.processed, tests/results/043.processed,
6325: tests/results/044.processed, tests/results/045.processed,
6326: tests/results/046.processed, tests/results/047.processed,
6327: tests/results/048.processed, tests/results/049.processed,
6328: tests/results/050.processed, tests/results/051.processed,
6329: tests/results/052.processed, tests/results/053.processed,
6330: tests/results/054.processed, tests/results/055.processed,
6331: tests/results/056.processed, tests/results/057.processed,
6332: tests/results/058.processed, tests/results/059.processed,
6333: tests/results/060.processed, tests/results/061.processed,
6334: tests/results/062.processed, tests/results/063.processed,
6335: tests/results/064.processed, tests/results/065.processed,
6336: tests/results/066.processed, tests/results/067.processed,
6337: tests/results/068.processed, tests/results/069.processed,
6338: tests/results/070.processed, tests/results/071.processed,
6339: tests/results/072.processed, tests/results/073.processed,
6340: tests/results/074.processed, tests/results/075.processed,
6341: tests/results/076.processed, tests/results/077.processed,
6342: tests/results/078.processed, tests/results/079.processed,
6343: tests/results/080.processed, tests/results/081.processed,
6344: tests/results/082.processed, tests/results/083.processed,
6345: tests/results/084.processed, tests/results/085.processed,
6346: tests/results/086.processed, tests/results/087.processed,
6347: tests/results/088.processed, tests/results/089.processed,
6348: tests/results/090.processed, tests/results/091.processed,
6349: tests/results/092.processed, tests/results/093.processed,
6350: tests/results/094.processed, tests/results/095.processed,
6351: tests/results/096.processed, tests/results/097.processed,
6352: tests/results/098.processed, tests/results/099.processed,
6353: tests/results/100.processed, tests/results/101.processed,
6354: tests/results/102.processed, tests/results/103.processed,
6355: tests/results/104.processed, tests/results/105.processed,
6356: tests/results/106.processed, tests/results/107.processed,
6357: tests/results/108.processed, tests/results/109.processed,
6358: tests/results/110.processed, tests/results/111.processed,
6359: tests/results/112.processed, tests/results/113.processed,
6360: tests/results/114.processed, tests/results/115.processed,
6361: tests/results/116.processed, tests/results/117.processed,
6362: tests/results/118.processed, tests/results/119.processed,
6363: tests/results/120.processed, tests/results/121.processed,
6364: tests/results/122.processed, tests/results/123.processed,
6365: tests/results/124.processed, tests/results/125.processed,
6366: tests/results/126.processed, tests/results/127.processed,
6367: tests/results/128.processed, tests/results/129.processed,
6368: tests/results/130.processed, tests/results/131.processed,
6369: tests/results/132.processed, tests/results/133.processed,
6370: tests/results/134.processed, tests/results/135.processed,
6371: tests/results/136.processed, tests/results/138.processed,
6372: tests/results/139.processed, tests/results/140.processed,
6373: tests/results/141.processed, tests/results/142.processed,
6374: tests/results/143.processed, tests/results/144.processed,
6375: tests/results/145.processed, tests/results/146.processed,
6376: tests/results/147.processed, tests/results/148.processed,
6377: tests/results/149.processed, tests/results/150.processed,
6378: tests/results/151.processed, tests/results/152.processed,
6379: tests/results/153.processed, tests/results/154.processed,
6380: tests/results/155.processed, tests/results/156.processed,
6381: tests/results/157.processed, tests/results/158.processed,
6382: tests/results/159.processed, tests/results/160.processed,
6383: tests/results/161.processed, tests/results/162.processed,
6384: tests/results/163.processed, tests/results/164.processed,
6385: tests/results/165.processed, tests/results/166.processed,
6386: tests/results/167.processed, tests/results/168.processed,
6387: tests/results/169.processed, tests/results/170.processed,
6388: tests/results/171.processed, tests/results/172.processed,
6389: tests/results/173.processed, tests/results/174.processed,
6390: tests/results/175.processed, tests/results/176.processed,
6391: tests/results/177.processed, tests/results/178.processed,
6392: tests/results/179.processed, tests/results/180.processed,
6393: tests/results/181.processed, tests/results/182.processed,
6394: tests/results/183.processed, tests/results/184.processed,
6395: tests/results/185.processed, tests/results/186.processed,
6396: tests/results/187.processed, tests/results/188.processed,
6397: tests/results/189.processed, tests/results/190.processed,
6398: tests/results/191.processed, tests/results/192.processed,
6399: tests/results/193.processed, tests/results/194.processed,
6400: tests/results/195.processed, tests/results/196.processed,
6401: tests/results/197.processed, tests/results/198.processed,
6402: tests/results/199.processed, tests/results/200.processed,
6403: tests/results/201.processed, tests/results/202.processed,
6404: tests/results/203.processed, tests/results/204.processed,
6405: tests/results/205.processed, tests/results/206.processed,
6406: tests/results/207.processed, tests/results/208.processed,
6407: tests/results/209.processed, tests/results/210.processed,
6408: tests/results/211.processed, tests/results/212.processed,
6409: tests/results/213.processed, tests/results/214.processed,
6410: tests/results/215.processed, tests/results/216.processed,
6411: tests/results/217.processed, tests/results/218.processed,
6412: tests/results/219.processed, tests/results/220.processed,
6413: tests/results/221.processed, tests/results/222.processed,
6414: tests/results/223.processed, tests/results/224.processed,
6415: tests/results/225.processed, tests/results/226.processed,
6416: tests/results/227.processed, tests/results/228.processed,
6417: tests/results/229.processed: - http headers were changed:
6418: content-type => Content-type and so on
6419:
6420: 2009-08-27 misha
6421:
6422: * src/: main/pa_random.C, include/pa_random.h,
6423: targets/cgi/parser3.C: - year was updated :)
6424:
6425: 2009-08-26 misha
6426:
6427: * tests/: 224.html, 224.p: - test for creating of parser object
6428: using constructor without params - little bugfix in test
6429:
6430: * src/main/compile_tools.h: - bugfix: should't call autouse while
6431: checking existed class while processing partial option
6432:
6433: * src/classes/reflection.C: - bugfix: core when creating object
6434: with reflection and constructor doesn't have params
6435:
6436: 2009-08-24 misha
6437:
6438: * tests/229.html: - tests for checking the number of parameters
6439: were added
6440:
6441: * src/types/: pa_value.C, pa_vmethod_frame.h: - bugfix: the actual
6442: number of method's parameters wasn't checked correctly (the bug
6443: was introduced in 3.4.0)
6444:
6445: 2009-08-22 misha
6446:
6447: * src/main/pa_http.C: - ^file::load[http://...;$.body[]] : $.body
6448: transcoded, but tainted pieces are escaped only when
6449: content-type==url-encoding
6450:
6451: * tests/228.html: - test for checking
6452: ^file::load[http://...;$.body[]]
6453:
6454: * src/types/: pa_vform.C, pa_vform.h: - bugfix: attempt to detect
6455: post charset was too early (charsets is empty at this moment)
6456:
6457: 2009-08-21 misha
6458:
6459: * src/: include/pa_string.h, main/pa_http.C, main/pa_request.C,
6460: main/untaint.C: - some fixes with transcode+untaint
6461:
6462: 2009-08-15 misha
6463:
6464: * src/main/pa_exec.C: - number of argv in file::exec/cgi on unix
6465: was increaced to 100 (was 50)
6466:
6467: * tests/227.html: - test for checking overriding properties in
6468: static classes was added
6469:
6470: * tests/: 226.html, 226.p: - test for @autoload[] was added
6471:
6472: * src/: include/pa_request.h, main/compile.y, main/compile_tools.h,
6473: main/execute.C, main/pa_request.C, classes/reflection.C: -
6474: autouse was implemented
6475:
6476: 2009-08-14 misha
6477:
6478: * src/classes/reflection.C: - outdated checkout was removed
6479:
6480: * src/classes/reflection.C: - optimization - method ^dynamical was
6481: added.
6482:
6483: * src/: types/pa_value.h, types/pa_vmethod_frame.h,
6484: types/pa_vstateless_class.h, main/execute.C: - optimization
6485:
6486: * src/types/pa_vclass.C: - exception if base on sytem class
6487:
6488: 2009-08-12 misha
6489:
6490: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
6491: pa_vstateless_class.h: - little optimisation
6492:
6493: 2009-08-11 misha
6494:
6495: * tests/224.html: - method_params => method_info - checking for
6496: $.inherited
6497:
6498: * src/classes/reflection.C, operators.txt: - method method_params
6499: was renamed to method_info and now it returns class name, if
6500: method was defined in ancestor
6501:
6502: * tests/225.html: - tests for cheching properties in hierarhical
6503: classes were added
6504:
6505: * src/: types/pa_property.h, types/pa_vclass.C, types/pa_vclass.h,
6506: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
6507: main/compile.y, main/execute.C, classes/classes.C: - problems
6508: with properties in new classes implementation were fixed
6509:
6510: 2009-08-10 misha
6511:
6512: * src/main/execute.C: - now constructor shouldn't be defined in
6513: class. it could be defined in parent.
6514:
6515: 2009-08-09 misha
6516:
6517: * src/classes/reflection.C: - ^reflection:methods doesn't return
6518: base's methods
6519:
6520: 2009-08-08 misha
6521:
6522: * src/: classes/classes.h, classes/date.C, classes/file.C,
6523: classes/form.C, classes/hash.C, classes/hashfile.C,
6524: classes/image.C, classes/mail.C, classes/op.C,
6525: classes/reflection.C, classes/regex.C, classes/string.C,
6526: classes/table.C, classes/xdoc.C, classes/xnode.C,
6527: classes/xnode.h, include/pa_hash.h, main/execute.C,
6528: main/pa_http.C, main/pa_request.C, targets/cgi/parser3.C,
6529: types/pa_method.h, types/pa_property.h, types/pa_value.C,
6530: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
6531: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
6532: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.C,
6533: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
6534: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
6535: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
6536: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
6537: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.h,
6538: types/pa_vobject.C, types/pa_vobject.h, types/pa_vproperty.C,
6539: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
6540: types/pa_vresponse.C, types/pa_vresponse.h,
6541: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
6542: types/pa_vstateless_object.h, types/pa_vstatus.C,
6543: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
6544: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
6545: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
6546: types/pa_wwrapper.h, types/types.vcproj: - new classes
6547: implementation
6548:
6549: * buildall-with-xml, buildall-without-xml: - gc has a bug if
6550: USE_MUNMAP is used. so it is disabled as a workaround.
6551:
6552: 2009-08-05 misha
6553:
6554: * src/: main/pa_common.C, include/pa_common.h: - not needed
6555: parameter was removed
6556:
6557: * src/main/pa_http.C: - bugfix: error was during detecting
6558: content-type of file which was loaded by http
6559:
6560: 2009-08-01 misha
6561:
6562: * src/main/execute.C, src/main/compile.y, src/include/pa_opcode.h,
6563: src/types/pa_wcontext.h, src/types/pa_wwrapper.h, INSTALL: -
6564: OPTIMIZE_BYTECODE_CONSTRUCT_OBJECT and OPTIMIZE_CONSTRUCT_OBJECT
6565: can't be disabled with defines any longer
6566:
6567: 2009-07-29 misha
6568:
6569: * src/classes/reflection.C, tests/results/224.processed: - for
6570: native methods with any call type now returned empty call_type
6571: value
6572:
6573: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
6574: classes/table.C, include/pa_hash.h, include/pa_request.h,
6575: main/pa_request.C: - break in cycles was optimized
6576:
6577: * INSTALL: - more defines were described
6578:
6579: 2009-07-28 misha
6580:
6581: * operators.txt: - some changes in information about reflection
6582: class
6583:
6584: * tests/: 224.html, 224.p: - tests for reflection class
6585:
6586: * src/classes/reflection.C: - some bugs were fixed, method classes
6587: was added, refactoring
6588:
6589: 2009-07-26 misha
6590:
6591: * src/classes/classes.vcproj: - reflection class wass added to
6592: project
6593:
6594: * operators.txt: - information about reflection class was added
6595:
6596: * src/classes/reflection.C: - class was redesigned
6597:
6598: 2009-07-24 misha
6599:
6600: * src/classes/: Makefile.am, reflection.C: - class reflection was
6601: added
6602:
6603: * src/types/pa_vstateless_class.h: - method for reflection method's
6604: in classes was added
6605:
6606: 2009-07-22 misha
6607:
6608: * src/main/compile_tools.h: - bugfix: $object.$var was
6609: over-optimized. it failed if $object1.$object2.field
6610:
6611: 2009-07-16 misha
6612:
6613: * src/: lib/cord/cordbscs.c, lib/cord/cordprnt.c,
6614: lib/cord/cordxtra.c, lib/cord/include/cord.h,
6615: include/pa_string.h, main/pa_string.C: - optimization: CORD_str,
6616: CORD_to_const_char_star, CORD_to_char_star and CORD_substr have
6617: one more arg: length of cord
6618:
6619: 2009-07-15 misha
6620:
6621: * src/main/pa_http.C: - bugfix: $.cookies' values should be force
6622: tainted in ^file::load[http://...;$.cookies[]]
6623:
6624: * src/classes/: op.C, regex.C, string.C: - new string with
6625: exception was used
6626:
6627: * src/include/pa_exception.h: - new string with exception was added
6628:
6629: * tests/223.html: - test for checking cookie-encoding during
6630: ^file::load[http was added
6631:
6632: * tests/: 221.html, 222.html: - tests for checking type of
6633: $table.fields.field were added
6634:
6635: * src/types/pa_vtable.C: - not used var decl was removed
6636:
6637: * src/include/pa_string.h: - use cached string length in Body::mid.
6638: it improves speed of match with brackets in pattern
6639:
6640: * src/lib/cord/include/cord.h: - make CORD_substr_checked available
6641: outside
6642:
6643: 2009-07-14 misha
6644:
6645: * src/types/pa_vtable.C: - $table.fields.a return string even if
6646: column is empty (sometime returned void) - $table.fields was
6647: added for nameless tables
6648:
6649: * src/targets/cgi/getopt.c: - one warning resolved
6650:
6651: * src/main/pa_string.C: - potentian bug fixed
6652:
6653: * src/classes/op.C: - small optimization in taint/untaint
6654:
6655: 2009-07-13 misha
6656:
6657: * tests/156.html: - test for $cookie[...$.httponly(false)...] was
6658: added
6659:
6660: * src/types/pa_value.C: - bugfix: $cookie[...$.httponly(false)...]
6661: souldn't add the attribut to output
6662:
6663: 2009-07-11 misha
6664:
6665: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
6666: stack size was increaced to 2MB (default=1MB)
6667:
6668: 2009-07-08 misha
6669:
6670: * src/main/pa_string.C: - link to UTF-8 description was added
6671:
6672: * src/include/pa_hash.h: - hash keeps element's order in more
6673: places (ex: ._keys[])
6674:
6675: * tests/220.html: - test for checking order of elements in hash in
6676: foreach was added
6677:
6678: * tests/172.html: - small changes in printing hash
6679:
6680: * tests/129.html: - small changes in printing hash
6681:
6682: * src/: include/pa_common.h, include/pa_hash.h,
6683: include/pa_request.h, types/pa_value.h, types/pa_vmethod_frame.C,
6684: types/pa_vmethod_frame.h: - hash now keeps order of elements
6685:
6686: * tests/014.html: - small changes in printing hash
6687:
6688: 2009-07-07 misha
6689:
6690: * src/classes/op.C: - new taint language "parser-code" was added
6691:
6692: * tests/219.html: - test for auto untaint parser code in process
6693: was added
6694:
6695: * src/classes/op.C: - tainted pieces in body of process are
6696: auto-untainted now: ^ -> ^^, $ -> ^$ etc.
6697:
6698: * src/: include/pa_string.h, main/untaint.C: - new language
6699: L_PARSER_CODE for auto-untaint in process was added
6700:
6701: * src/: classes/file.C, classes/hash.C, classes/image.C,
6702: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
6703: classes/xdoc.C, include/pa_string.h, main/pa_charset.C,
6704: main/pa_http.C, main/pa_request.C, main/pa_xml_io.C,
6705: main/untaint.C, types/pa_value.h, types/pa_vhash.h,
6706: types/pa_vmail.C, types/pa_vobject.h, types/pa_vstring.h: - some
6707: code cleanup
6708:
6709: 2009-07-06 misha
6710:
6711: * src/classes/: file.C, hash.C, image.C, mail.C, op.C, string.C,
6712: table.C, void.C, xdoc.C: - cstr(params) and cstrm(params) were
6713: deleted. taint_cstr[m] and untaint_cstr[m] should be used
6714:
6715: * src/types/: pa_vcookie.C, pa_vhash.h, pa_vhashfile.C,
6716: pa_vimage.C, pa_vmail.C, pa_vobject.h, pa_vregex.C,
6717: pa_vrequest.C, pa_vstring.h, pa_vvoid.h: - cstr(params) and
6718: cstrm(params) were deleted. taint_cstr[m] and untaint_cstr[m]
6719: should be used
6720:
6721: * src/main/: pa_charset.C, pa_common.C, pa_exec.C, pa_http.C,
6722: pa_request.C, pa_sql_driver_manager.C, pa_xml_io.C: -
6723: cstr(params) and cstrm(params) were deleted. taint_cstr[m] and
6724: untaint_cstr[m] should be used
6725:
6726: * src/include/pa_string.h: - cstr(params) and cstrm(params) were
6727: deleted. taint_cstr[m] and untaint_cstr[m] should be used
6728:
6729: * tests/218.html: - test for checking automatic file-spec-taint was
6730: added
6731:
6732: * src/: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vmail.C,
6733: types/pa_vregex.C, types/pa_vrequest.C, types/pa_vstring.C,
6734: classes/file.C, classes/hash.C, classes/image.C,
6735: classes/string.C, classes/table.C, classes/void.C,
6736: classes/xdoc.C: - optimizations and simplification of
6737: string.cstr(...)
6738:
6739: * src/: include/pa_string.h, main/untaint.C, main/pa_common.C,
6740: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C:
6741: - optimizations and simplification of string.cstr(...)
6742:
6743: 2009-07-04 misha
6744:
6745: * tests/217.html: - test for recursion detection was added
6746:
6747: * src/: types/types.vcproj, main/main.vcproj,
6748: classes/classes.vcproj, targets/cgi/parser3.vcproj,
6749: targets/isapi/parser3isapi.vcproj: - RuntimeTypeInfo was removed
6750: from .vcproj
6751:
6752: * src/types/pa_wwrapper.h: - dynamic_cast was removed
6753:
6754: * tests/: 195.html, 195_utf8.txt, 195_windows1251.txt: - tests for
6755: uploading files and case-insensitive http-method were added
6756:
6757: * tests/: 216.html, 216_dir/1, 216_dir/2.txt: - test for checking
6758: tainted pattern in ^file:list[] was added
6759:
6760: 2009-07-03 misha
6761:
6762: * src/: classes/classes.vcproj, main/main.vcproj,
6763: types/types.vcproj, targets/cgi/parser3.vcproj,
6764: targets/isapi/parser3isapi.vcproj: - enable runtime info (needed
6765: for dynamic_cast) - little options changes
6766:
6767: * src/main/pa_http.C: - file::load[http works now with uploading
6768: files _and_ changing $.charset
6769:
6770: 2009-06-29 misha
6771:
6772: * src/types/pa_vregex.C: - ^untaint[regex][] for all tainted data
6773: while creating pattern
6774:
6775: 2009-06-25 misha
6776:
6777: * src/classes/image.C, operators.txt: - options' names for
6778: ^image.font were changed to $.space, $.width and $spacing -
6779: default space width now == gif's width
6780:
6781: 2009-06-24 misha
6782:
6783: * tests/215.html: - tests for $file.mode were added
6784:
6785: * operators.txt: - added info about $file.mode and changes in
6786: ^image.font[
6787:
6788: * src/: types/pa_vimage.h, classes/image.C: ^image.font - third
6789: param now could be omited - third param now could be hash (with
6790: all widths options: $.space-width, $.letter-width) - it's
6791: possible to specify tracking ($.letter-space)
6792:
6793: * src/classes/file.C: - file objects now could have mode field
6794: (text|binary)
6795:
6796: * src/types/: pa_vfile.C, pa_vfile.h: - method set_method was added
6797:
6798: 2009-06-23 misha
6799:
6800: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
6801: trim can work with utf-8 chars now
6802:
6803: 2009-06-20 misha
6804:
6805: * src/: classes/hash.C, main/pa_string.C: - string length cacheing
6806: was implemented
6807:
6808: * src/classes/table.C: - string length cacheing was implemented
6809:
6810: * src/include/pa_string.h: - string length cacheing was implemented
6811:
6812: 2009-06-17 misha
6813:
6814: * src/main/execute.C: - value param was removed from
6815: WContext::WContext
6816:
6817: * src/types/: pa_vcode_frame.h, pa_vmethod_frame.C, pa_wcontext.h,
6818: pa_wwrapper.h: - value param was removed from WContext::WContext
6819: - field wcontext was removed from VCodeFrame (using fparent
6820: instead)
6821:
6822: * tests/214.html: - test with hash copying
6823:
6824: 2009-06-16 misha
6825:
6826: * tests/: 062.html, results/062.processed: - evaluation hardcoded
6827: strings doesn't work in expression anymore
6828:
6829: * src/main/execute.C: - less calls for get_constructing() - little
6830: refactoring
6831:
6832: * src/: types/pa_wcontext.h, types/pa_wwrapper.h,
6833: include/pa_request.h: - less calls for get_constructing()
6834:
6835: * src/classes/: hash.C, hashfile.C: - fixed bug which was
6836: introduced with OPTIMIZE_SINGLE_STRING optimization
6837:
6838: 2009-06-14 misha
6839:
6840: * src/: classes/date.C, classes/file.C, classes/hash.C,
6841: classes/hashfile.C, classes/image.C, classes/regex.C,
6842: classes/table.C, classes/xdoc.C, classes/xnode.h,
6843: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
6844: types/pa_vstateless_class.h, main/execute.C: - create object for
6845: storing object's fields only for parser objects
6846:
6847: 2009-06-13 misha
6848:
6849: * buildall-with-xml, buildall-without-xml: - new option was added
6850: for building GC (it slightly reduces memory usage)
6851:
6852: * src/types/: pa_wcontext.h, pa_wwrapper.h: - optimization of
6853: single string write
6854:
6855: * src/main/execute.C: - bytecode optimization of ^class:constructor
6856: - optimization of single string write
6857:
6858: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.h:
6859: - bytecode optimization of ^class:constructor
6860:
6861: 2009-06-09 misha
6862:
6863: * src/targets/cgi/parser3.C: - type size_t was changed to int in
6864: main (better compatibility)
6865:
6866: 2009-06-08 misha
6867:
6868: * src/main/compile.y: - I've forgot to commit it :(
6869:
6870: 2009-06-07 misha
6871:
6872: * src/include/pa_opcode.h: - more optimizations for WITH_SELF,
6873: WITH_READ and WITH_ROOT
6874:
6875: * src/main/: compile.y, compile_tools.C, compile_tools.h,
6876: execute.C: - more optimizations for WITH_SELF, WITH_READ and
6877: WITH_ROOT - little refactoring
6878:
6879: 2009-06-06 misha
6880:
6881: * tests/213.html: - tests for 3rd match string-param were added
6882:
6883: * src/classes/string.C: - 3rd match param could be string now
6884:
6885: * src/main/: compile.y, compile_tools.h: - much more bytecode's
6886: sequences optimized to WITH_SELF__VALUE__GET_ELEMENT and
6887: GET_OBJECT_ELEMENT
6888:
6889: 2009-06-05 misha
6890:
6891: * src/main/pa_http.C: - bugfix: content-length was not calculated
6892: if $.body was specified
6893:
6894: 2009-06-04 misha
6895:
6896: * src/classes/op.C: - optimizing write_assign_lang in connect
6897:
6898: * src/classes/op.C: - optimizing write_assign_lang in taint/untaint
6899:
6900: * src/main/execute.C: - little refactoring - optimizing
6901: write_assign_lang in taint/untaint
6902:
6903: * src/include/pa_opcode.h: - little refactoring
6904:
6905: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
6906: main/compile_tools.h, main/execute.C: - optimizations for
6907: $self.field, ^self.method, $self.field[...] and $self.field(...)
6908: were added
6909:
6910: 2009-06-03 misha
6911:
6912: * src/types/pa_venv.C: - pa_strdup was replaced by strdup
6913:
6914: 2009-06-02 misha
6915:
6916: * src/: main/compile.y, main/compile_tools.h, main/execute.C,
6917: include/pa_opcode.h: - refactoring in last optimizations
6918: ($a[...], $a(...), $.a[...], $.a(...)). a bit less optimizations
6919: now but code is much easy and it is ready for further
6920: improvements.
6921:
6922: 2009-05-27 misha
6923:
6924: * src/: types/pa_junction.h, types/pa_vjunction.C,
6925: types/pa_vjunction.h, types/pa_vmethod_frame.h, main/execute.C: -
6926: changed in destructing junctions
6927:
6928: * src/main/: pa_charset.C, pa_string.C: - more safe creation on
6929: String:Body
6930:
6931: 2009-05-26 misha
6932:
6933: * src/: main/pa_common.C, main/pa_http.C, include/pa_common.h: -
6934: one method detect_charset was deleted - bug was fixed in this
6935: method (error while detecting charset in content_type withot last
6936: ';')
6937:
6938: * src/types/: pa_vform.C, pa_vform.h: - detect post charset only
6939: once
6940:
6941: 2009-05-25 misha
6942:
6943: * src/classes/file.C: - bugfix: file::exec didn't work after
6944: optimizing of helper_length
6945:
6946: 2009-05-24 misha
6947:
6948: * src/main/compile_tools.h: - $a[$b.c] and $a[$b.$c] optimisations
6949: were added - little refactoring
6950:
6951: * src/main/execute.C: - core while printing in debug log
6952: non-printable values was fixed - $a[$b.c] and $a[$b.$c]
6953: optimisations were added
6954:
6955: * src/include/pa_opcode.h: - new opcodes for $a[$b.c] and $a[$b.$c]
6956: were added
6957:
6958: 2009-05-23 misha
6959:
6960: * src/: lib/cord/cordbscs.c, lib/cord/cordxtra.c,
6961: lib/cord/include/cord.h, include/pa_string.h, main/untaint.C: -
6962: CORD_cat optimization
6963:
6964: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C:
6965: - call constr optimisation under separate define now
6966:
6967: * src/main/: compile_tools.h, execute.C: - bugfix: $a[] $b[$a] --
6968: in $b should be string, not void
6969:
6970: * src/main/compile.y: - little fix for rem-cut optimisation
6971:
6972: * src/: include/pa_opcode.h, main/compile_tools.C,
6973: main/compile_tools.h, main/execute.C: - optimisations for
6974: $a[^b[...]], $.a[^b[...]], $a(^b[...]) and $.a(^b[...])
6975:
6976: * INSTALL: - description of some #defined were added
6977:
6978: * src/types/: pa_vfile.C, pa_vfile.h: - fill .'text' field only
6979: before 1st access (memory usage is reduced if don't access to
6980: .text field)
6981:
6982: * src/include/pa_array.h: - array grows step now not static (it
6983: reduces numbers of reallocs)
6984:
6985: 2009-05-20 misha
6986:
6987: * src/include/pa_opcode.h: - bytecode optimization for $a(1),
6988: $.b(2), $c[d] and $.e[f] was added
6989:
6990: * src/main/: compile.y, compile_tools.C, compile_tools.h,
6991: execute.C: - bytecode optimization for $a(1), $.b(2), $c[d] and
6992: $.e[f] was added
6993:
6994: * src/main/execute.C: - debug printing moved in defines
6995:
6996: * src/main/: compile.y, compile_tools.C, compile_tools.h: - bugfix
6997: and little refactoring for OP_GET_OBJECT_ELEMENT +
6998: OP_GET_OBJECT_VAR_ELEMENT optimisation
6999:
7000: 2009-05-19 misha
7001:
7002: * src/main/: compile.y, compile_tools.C, compile_tools.h,
7003: execute.C: - $a.$b & ^a.$b bytecode optimisation
7004:
7005: * src/include/pa_opcode.h: - new opcodes were added (for $a.$b &
7006: ^a.$b optimisation)
7007:
7008: * src/main/compile.y: - compiler now generate new opcodes:
7009: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE for $a.b and
7010: ^a.b - compiler now cut off ^rem{ with all content ; any number
7011: of params }
7012:
7013: * src/main/execute.C: - code for handle new opcodes
7014: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE was added
7015:
7016: * src/main/: compile_tools.C, compile_tools.h: - new parameter was
7017: added for LA2V and LA2S
7018:
7019: * src/include/pa_opcode.h: - new defines which can be used for
7020: disable some bytecode optimisation and new opcodes were added
7021:
7022: 2009-05-17 misha
7023:
7024: * src/lib/cord/cordxtra.c: - bugfix.
7025:
7026: * tests/212.html: - .size[] and .study_size[] were added to tests
7027:
7028: * operators.txt: - info about regex class was added
7029:
7030: * tests/212.html: - tests for regex class were added
7031:
7032: 2009-05-16 misha
7033:
7034: * buildall-with-xml, buildall-without-xml: - moving from gc6.8 to
7035: gc7.1
7036:
7037: * tests/022.html: - test for ^file:list[path;] (empty second param)
7038: was added
7039:
7040: * src/classes/file.C: - bugfix: ^file:list[path;] [empty second
7041: param) should work
7042:
7043: 2009-05-15 misha
7044:
7045: * src/classes/table.C: - automatically disable stringstream usage
7046: on freebsd4
7047:
7048: * src/lib/cord/cordxtra.c: - var decl should be at the beginning of
7049: scope
7050:
7051: * tests/211.html: - test with different types of access to hash was
7052: added
7053:
7054: * tests/210.html: - test which checks for loosing tainting in
7055: hash's keys was added
7056:
7057: * tests/208.html: - some parser work added. or stime == 0 %-)
7058:
7059: * src/lib/cord/cordbscs.c: - little hack was added to cord
7060:
7061: * src/lib/cord/cordxtra.c: - cacheing of cord chars was added
7062:
7063: * src/include/pa_version.h, configure.in: - moko have made a lot of
7064: optimisations for increacing version number more dramatically :)
7065:
7066: * src/classes/date.C: - little refactoring: use constructor which
7067: accepts formated string
7068:
7069: * src/: include/pa_string.h, main/pa_string.C: - String constructor
7070: which can print formatted string was added
7071:
7072: 2009-05-14 misha
7073:
7074: * src/include/pa_string.h: - type was fixed
7075:
7076: * src/: classes/hashfile.C, classes/op.C,
7077: include/pa_cache_managers.h, include/pa_charset.h,
7078: include/pa_charsets.h, include/pa_common.h, include/pa_hash.h,
7079: include/pa_request.h, include/pa_sql_driver_manager.h,
7080: include/pa_string.h, include/pa_stylesheet_manager.h,
7081: include/pa_table.h, include/pa_xml_io.h, main/pa_charset.C,
7082: main/pa_charsets.C, main/pa_string.C,
7083: main/pa_stylesheet_connection.C, types/pa_value.h,
7084: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
7085: types/pa_vobject.C, types/pa_vstateless_class.C,
7086: types/pa_vstateless_class.h: - hash_code caching was implemented
7087: (seaches should be faster now)
7088:
7089: * src/: classes/file.C, classes/hash.C, classes/image.C,
7090: classes/string.C, classes/table.C, include/pa_string.h,
7091: main/pa_charset.C, main/pa_http.C, main/pa_request.C,
7092: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_venv.C,
7093: types/pa_vform.C, types/pa_vhashfile.C, types/pa_vregex.C,
7094: types/pa_vrequest.C: - String constructors don't have that stupid
7095: true/false param which means 'tainted'. they accept lang instead.
7096:
7097: * src/types/pa_vmethod_frame.h: - bugfix: taint/untaint didn't work
7098: with OPTIMIZE_RESULT
7099:
7100: * src/types/: pa_method.h, pa_vstateless_class.C: - less warnings
7101: wher OPTIMIZE_RESULT and OPTIMIZE_CALL not defined
7102:
7103: 2009-05-13 misha
7104:
7105: * src/: types/pa_method.h, types/pa_vcookie.C, types/pa_vdouble.h,
7106: types/pa_venv.C, types/pa_vhashfile.C, types/pa_vint.h,
7107: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
7108: types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
7109: types/pa_vstateless_class.C, main/execute.C, main/pa_charset.C,
7110: main/pa_common.C, main/pa_request.C, main/pa_string.C,
7111: include/pa_string.h, classes/date.C, classes/file.C,
7112: classes/hash.C, classes/image.C, classes/string.C,
7113: classes/table.C, classes/xdoc.C: - result optimisation -
7114: helper_length parameter removed from string constructors
7115:
7116: 2009-05-11 misha
7117:
7118: * tests/209.html: - tests for ^hash::create[hash] were added
7119:
7120: * tests/208.html: - tests for $status:rusage, $status:memory,
7121: ^memory:compact[] were added
7122:
7123: * tests/207.html: -tests for abs, sign, trunc, frac, exp, log,
7124: log10 were added
7125:
7126: * tests/206.html: - test for try with finally was added
7127:
7128: 2009-05-10 misha
7129:
7130: * tests/205.html: - test for ^file::create[...] was added
7131:
7132: * tests/204.html: - test for ^response:clear[] was added
7133:
7134: * tests/038.html: - tests for trigonometric functions were added
7135:
7136: * tests/014.html: - tests for ^hash.containts and ^hash.delete were
7137: added - more tests for .add, .sub, .union, .intersects and
7138: .intersections
7139:
7140: * tests/065.html: - test for ^file:dirname was added
7141:
7142: * tests/030.html: - test for $cookie:fields was added
7143:
7144: * tests/203.html: - test for ^h._keys[column name] was added
7145:
7146: * tests/201.html: - tests for .trim were added
7147:
7148: * tests/202.html: - tests for last-day,
7149: date:calendar[type](YYYY;MM;DD) were added
7150:
7151: * tests/200.html: - tests for .sort(), .sort{}, .flip[] and
7152: .offset[type](N) were added
7153:
7154: * tests/185.html: - more tests for .left(N), .right(N), .min(N;M)
7155: and .pos[c](N) were added
7156:
7157: * tests/141.html: - test for math:sha1 was added
7158:
7159: * tests/063.html: - tests for .mod(N), .inc[] & .dec[] were added
7160:
7161: 2009-05-09 misha
7162:
7163: * src/main/compile.y: - rollback
7164:
7165: 2009-05-05 misha
7166:
7167: * src/main/pa_exec.C: - little optimisation: somewhere length() was
7168: replaced by is_empty()
7169:
7170: * src/: include/pa_string.h, main/pa_charset.C: - little
7171: optimisation: somewhere length() was replaced by is_empty()
7172:
7173: * src/classes/table.C: - little optimisation: somewhere length()
7174: was replaced by is_empty()
7175:
7176: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
7177: classes/op.C, classes/table.C, main/pa_exception.C: - little
7178: optimisation: somewhere length() was replaced by is_empty()
7179:
7180: 2009-05-04 misha
7181:
7182: * src/: types/pa_method.h, types/pa_vstateless_class.C,
7183: types/pa_vstateless_class.h, main/execute.C,
7184: include/pa_request.h, classes/hash.C, classes/op.C,
7185: classes/table.C: - more optimisations were added: some operators
7186: don't switch write context anylonger
7187:
7188: 2009-05-01 misha
7189:
7190: * src/main/compile.y: - slightly more opcode optimisations for
7191: WITH_WRITE + VALUE + GET_ELEMENT -> OP_VALUE__GET_ELEMENT
7192:
7193: * src/main/execute.C: - simplifying process for getters
7194:
7195: 2009-04-30 misha
7196:
7197: * tests/: 198.html, 199.html: - new line fixes (should be 0x0A)
7198:
7199: * tests/results/199.processed: - test for checking $result into
7200: ^rem was added
7201:
7202: * tests/199.html: - test for checking $result into ^rem was added
7203:
7204: * tests/: 022.html, 096.html: - þsort after :list was asses (on
7205: some OS it returns list in different order)
7206:
7207: * src/: include/pa_array.h, include/pa_request.h,
7208: include/pa_stack.h, main/execute.C, types/pa_vmethod_frame.h: -
7209: changes in stack impl - get_element() optimisation: 3rd param
7210: removed - bugfix: problems with reading empty input param -
7211: defines SAVE_CONTEXT and RESTORE_CONTEXT were added and used
7212:
7213: * tests/results/198.processed: - test for reading empty local var
7214: was added
7215:
7216: * tests/198.html: - test for reading empty local var was added
7217:
7218: 2009-04-29 misha
7219:
7220: * src/main/compile.y: - bugfix: couldn't compile because
7221: OP_VALUE__GET_ELEMENT should be unde #ifdef
7222:
7223: * src/: include/pa_array.h, include/pa_opcode.h,
7224: include/pa_request.h, main/compile.y, main/execute.C,
7225: main/pa_request.C, types/pa_vmethod_frame.C,
7226: types/pa_vmethod_frame.h: - we can work without opcode
7227: OP_STORE_PARAM, so it was removed
7228:
7229: 2009-04-28 misha
7230:
7231: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: -
7232: op-codes optimisation: 1. VALUE+GET_CLASS=>VALUE_GET_CLASS 2.
7233: WITH_READ+VALUE+GET_ELEMENT=>VALUE__GET_ELEMENT (not all yet)
7234: 3. WITH_READ+VALUE+GET_ELEMENT__WRITE=>VALUE__GET_ELEMENT__WRITE
7235: 4.
7236: WITH_READ+VALUE+GET_ELEMENT_OR_OPERATOR=>VALUE__GET_ELEMENT_OR_OPERATOR
7237:
7238: * src/main/compile_tools.h: - new stuff for op-codes optimisation
7239:
7240: * src/: main/pa_string.C, classes/string.C: - !length() =>
7241: is_empty()
7242:
7243: 2009-04-27 misha
7244:
7245: * src/types/pa_vregex.h: - back explicit vars initialisation
7246:
7247: 2009-04-24 misha
7248:
7249: * src/classes/string.C: - ups. typo fixed
7250:
7251: * src/main/execute.C: - more replacements '*new VBool' to
7252: 'VBool::get' - checks for ^break[], ^continue[] and
7253: parser.interrupted were optimised
7254:
7255: * src/classes/string.C: - number of params.count() calls was
7256: slightly reduced
7257:
7258: 2009-04-23 misha
7259:
7260: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
7261: make it x64 friendly
7262:
7263: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
7264: parser is x64 friendly now
7265:
7266: 2009-04-22 misha
7267:
7268: * src/types/pa_vhashfile.C: - coder friendly exception about
7269: exceeding record size was added
7270:
7271: * src/classes/file.C: - use vregex object instead of direct calls
7272: methods from pcre lib
7273:
7274: * src/: classes/file.C, include/pa_string.h, main/pa_string.C,
7275: classes/string.C: - use vregex object instead of direct calls
7276: methods from pcre lib
7277:
7278: * src/: include/pa_common.h, main/pa_common.C: - method
7279: print_pcre_exec_error_text was moved to class vregex
7280:
7281: * src/classes/: Makefile.am, classes.vcproj, regex.C: - class regex
7282: was added
7283:
7284: * src/types/: Makefile.am, pa_vregex.C, pa_vregex.h, types.vcproj:
7285: - class vregex was added
7286:
7287: 2009-04-21 misha
7288:
7289: * buildall-with-xml, buildall-without-xml: - pcre 7.8 -> pcre 7.9
7290:
7291: * src/: types/pa_junction.h, types/pa_value.C,
7292: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_wcontext.C,
7293: types/pa_wcontext.h, main/execute.C, classes/op.C: -
7294: junction-optimisation (destructors)
7295:
7296: * src/include/pa_array.h: - free under if now
7297:
7298: 2009-04-19 misha
7299:
7300: * src/main/untaint.C: - ^taint[js] now escapes \x0D as well
7301:
7302: 2009-04-18 misha
7303:
7304: * src/include/pa_version.h:
7305: :q :
7306:
7307: CV:
7308: ----------------------------------------------------------------------
7309:
7310: * src/types/: pa_vjunction.h, pa_vstateless_class.C: - little
7311: refactoring
7312:
7313: * src/: include/pa_array.h, include/pa_hash.h,
7314: types/pa_vmethod_frame.h: - destructors under #ifdef now
7315:
7316: * src/include/pa_memory.h: - define for using destructors was added
7317:
7318: * src/: types/pa_method.h, types/pa_vstateless_class.C,
7319: main/execute.C: - some junctions will be cached now
7320:
7321: * src/include/pa_hash.h: - hash destructor frees pairs now
7322:
7323: * src/include/pa_array.h: - inline was added to destructor
7324:
7325: * src/types/pa_method.h: - comment was changed
7326:
7327: 2009-04-17 misha
7328:
7329: * src/: include/pa_array.h, include/pa_hash.h,
7330: types/pa_vmethod_frame.h: - destructors were added
7331:
7332: * src/types/: pa_method.h, pa_vmethod_frame.h: - write_to_result
7333: renamed to always_use_result
7334:
7335: * src/main/: compile.y, compile_tools.h: - rollback changes in
7336: compiler: full backward compatibility is better
7337:
7338: * src/types/pa_vmethod_frame.h: - set flag write_to_result if find
7339: result in var's hash
7340:
7341: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
7342: optimisation in method_frame
7343:
7344: * src/include/pa_array.h: - optimisation in array (allocate
7345: elements only when needed)
7346:
7347: * src/types/pa_vresponse.C: - check for $response:headers field
7348: before looking at custom fields
7349:
7350: * src/types/pa_vmethod_frame.h: - if flag write_to_result was set,
7351: not needed to check existance var with name 'result' in var's
7352: hash
7353:
7354: * src/main/compile.y: - compiler was changed: now it detects
7355: writings to $result and set flag writo_to_result in method
7356:
7357: * src/classes/string.C: - little optimisation: no needed to write
7358: number with lang
7359:
7360: * src/main/pa_charset.C: - methods readChar and skipChar which is
7361: used for read utf8-strings were renamed - is_escaped was renamed
7362: to isEscaped (to the same name convention)
7363:
7364: * src/: types/pa_method.h, main/compile_tools.h: - flag
7365: write_to_result added. compiler get this info from code.
7366:
7367: 2009-04-16 misha
7368:
7369: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: - create new
7370: String only before 1st write
7371:
7372: * src/include/pa_string.h: - not needed template removed
7373:
7374: * src/: types/pa_vbool.h, types/pa_vfile.h, types/pa_vimage.C,
7375: types/pa_vjunction.C, types/pa_vproperty.C,
7376: types/pa_vstateless_class.C, types/pa_vxdoc.C, types/pa_vxnode.C,
7377: main/pa_request.C, classes/bool.C, classes/double.C,
7378: classes/hash.C, classes/int.C, classes/string.C, classes/table.C,
7379: classes/void.C, classes/xnode.C: - bool optimisation (use only 2
7380: bool objects)
7381:
7382: 2009-04-15 misha
7383:
7384: * src/lib/cord/cordxtra.c: - more optimisation
7385:
7386: * src/: include/pa_string.h, main/untaint.C: - String::append
7387: optimisation
7388:
7389: * src/include/pa_hash.h: - get_by_hash_code added (it works faster
7390: then get and can sometime be used)
7391:
7392: * src/main/pa_string.C: - String::length optimisation
7393:
7394: * src/main/pa_charset.C: - rollback changeing readChar to skipChar.
7395: these methods read different strings
7396:
7397: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
7398: fresult_initial_void removed + some optimisation - if $result
7399: defined we don't write to context anymore
7400:
7401: * src/main/pa_charset.C: - readChar => skipChar (in this place we
7402: need just skip char)
7403:
7404: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
7405: types/pa_vrequest.C, types/pa_vtable.C, main/execute.C,
7406: classes/table.C: - VVoid::get() => new VVoid (one void-instance)
7407:
7408: * src/types/pa_vvoid.h: - added get() method for retreave one
7409: instance
7410:
7411: 2009-04-11 misha
7412:
7413: * tests/196.html: - tests for $cookie:CLASS_NAME & Co were added
7414:
7415: * tests/197.html: - test for parser://test in xml was added
7416:
7417: * src/classes/string.C: - small optimisation
7418:
7419: * src/types/: pa_venv.C, pa_venv.h, pa_vconsole.h: - small
7420: optimisation
7421:
7422: 2009-04-10 misha
7423:
7424: * buildall-with-xml, buildall-without-xml: - moving from pcre-7.7
7425: to pcre-7.8
7426:
7427: * src/types/pa_vclass.C: - normalizing todo-comments: '@todo' now
7428:
7429: * src/types/: pa_vcookie.C, pa_vcookie.h: - $cookie:CLASS_NAME was
7430: added
7431:
7432: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:CLASS and
7433: $request:CLASS_NAME were added
7434:
7435: * src/types/pa_vconsole.h: - $console:CLASS and $console:CLASS_NAME
7436: were added
7437:
7438: * src/types/: pa_venv.C, pa_venv.h: - $env:CLASS and
7439: $env:CLASS_NAME were added
7440:
7441: * src/types/: pa_vmail.C, pa_vdate.h: - normalizing todo-comments:
7442: '@todo' now
7443:
7444: * src/targets/cgi/parser3.C: - size_t -> int for calming down
7445: compirer
7446:
7447: * src/main/pa_string.C: - little code cleanup
7448:
7449: * src/main/pa_common.C: - describe one more UTF-8 related error
7450: during PCRE compile/execute
7451:
7452: * src/classes/: image.C, inet.C, string.C, xdoc.C, xnode.C: -
7453: normalizing todo-comments: '@todo' now
7454:
7455: * src/types/: pa_vmath.C, pa_vmath.h: - $math:E was added
7456:
7457: * src/main/pa_charset.C: - type changed for making compiler happy
7458:
7459: 2009-03-10 misha
7460:
7461: * src/targets/cgi/parser3.C: make g++ happy with the type of argc
7462: in main()
7463:
7464: 2009-02-01 misha
7465:
7466: * src/main/pa_http.C: - bugfix: double CRLF before the end of
7467: boundary
7468:
7469: 2009-01-25 misha
7470:
7471: * tests/: 194.html, 194_dir/194.p: - test for @GET[] was added
7472:
7473: * src/classes/file.C: - more changes for parsing different number
7474: of params for file::load
7475:
7476: * tests/193.html: - tests for exception while base64-decode binary
7477: to string was added
7478:
7479: * tests/192.html: - tests for file::load with different number of
7480: options
7481:
7482: * src/classes/math.C: - ups. forgot '+1'
7483:
7484: * src/: classes/table.C, classes/file.C, include/pa_common.h,
7485: include/pa_http.h, main/pa_xml_io.C, main/pa_common.C,
7486: main/pa_http.C: - ^file::load[...;http://...;] now can post files
7487: (new option $.encode[multipart-form/data] should be specified) -
7488: $.method[] option for file::load now is not case-sensitive
7489:
7490: * src/: include/pa_string.h, main/untaint.C: - for file post the
7491: new taint language L_FILE_POST was added
7492:
7493: * src/: include/pa_random.h, main/Makefile.am, main/pa_random.C,
7494: main/main.vcproj, classes/math.C, include/Makefile.am: - some
7495: stuff was moved to separate files
7496:
7497: 2009-01-23 misha
7498:
7499: * src/classes/math.C: - little optimisation in ^math:sha1[] -
7500: spaces to tabs were converted
7501:
7502: 2009-01-12 misha
7503:
7504: * src/main/pa_http.C: - value of $.method[] option force uppercased
7505: now
7506:
7507: * src/: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
7508: types/pa_vform.C, types/pa_vmail.C: - some constants changed
7509: their names
7510:
7511: * src/main/pa_common.C: - changes in formating
7512:
7513: * src/: classes/file.C, main/pa_http.C: - some constants changed
7514: their names
7515:
7516: * src/include/pa_http.h: - some spaces were converted to tabs
7517:
7518: * src/include/pa_common.h: - some constants changed their names
7519:
7520: * src/classes/file.C: - fixed 4-th paramether for file::load -
7521: little code rewriting
7522:
7523: * src/types/pa_vfile.C: - little code rewriting
7524:
7525: * src/: main/pa_common.C, main/pa_http.C, main/untaint.C,
7526: types/pa_value.h: - some formating changes
7527:
7528: * src/include/pa_common.h: - some formating spaces transformed to
7529: tabs
7530:
7531: * src/classes/string.C: - exception while base64-decode binary to a
7532: string
7533:
7534: 2009-01-11 misha
7535:
7536: * configure.in: - version changed to 3.3.1b
7537:
7538: 2008-09-05 misha
7539:
7540: * src/lib/pcre/Makefile.am: file Makefile.am was added on branch
7541: release_3_3_0 on 2008-09-05 10:59:35 +0000
7542:
7543: 2008-09-04 misha
7544:
7545: * tests/: 130.html, 131.html: - these exceptions not typeless
7546: anymore
7547:
7548: * src/classes/op.C: - exception with 'invalid taint language' not
7549: typeless anylonger
7550:
7551: * src/classes/image.C: - some exceptions while operations with
7552: image not typeless anymore
7553:
7554: * src/: types/pa_vhashfile.C, main/pa_common.C, classes/file.C,
7555: main/pa_exec.C, main/pa_http.C: - some exceptions while
7556: operations with files not typeless anymore
7557:
7558: * src/: classes/date.C, types/pa_value.C, types/pa_vcookie.C,
7559: types/pa_vdate.h: - exceptions while checking date range not
7560: typeless anymore
7561:
7562: * src/include/pa_exception.h: - exception type string for invalid
7563: date range was added
7564:
7565: 2008-09-03 misha
7566:
7567: * src/: classes/file.C, main/pa_string.C: - exception while pce
7568: operations not typeless anymore
7569:
7570: * src/include/pa_exception.h: - exception type for pce operations
7571: was added
7572:
7573: * tests/: 191.html, 191_a.p, 191_b.p: - tests for calling .CLASS
7574: and .CLASS_NAME insite classes
7575:
7576: * src/classes/table.C: - don't save table header whiile
7577: ^table.save[append;filename] if file exists
7578:
7579: 2008-09-02 misha
7580:
7581: * src/main/compile.y, src/main/compile_tools.h,
7582: src/types/pa_vstateless_class.h, src/main/compile.tab.C,
7583: tests/182_dir/a1.p, tests/182_dir/a2.p: - append option was
7584: renamed to partial and it login changed: we must mark class as
7585: partial for allow their modifications in future.
7586:
7587: 2008-08-29 misha
7588:
7589: * tests/results/022.processed: - testing taint[regex] in mask for
7590: file:list
7591:
7592: * tests/022.html: - testing taint[regex] in mask for file:list
7593:
7594: * tests/022_dir/b[b].txt: - file for testing taint[regex] in mask
7595: for file:list was added
7596:
7597: * src/classes/file.C: - bugfix: ^taint[regex][] didn't works in
7598: file:list
7599:
7600: 2008-08-26 misha
7601:
7602: * src/types/pa_vobject.C: - we must get .CLASS and .CLASS_NAME from
7603: last derived object
7604:
7605: * src/classes/image.C: - many strings "image.format" replaced by
7606: IMAGE_FORMAT constant string - handle GPS info while parse exif -
7607: understand some more exif tags
7608:
7609: * src/include/pa_exception.h: - string "image.format" was added
7610:
7611: 2008-08-21 misha
7612:
7613: * src/: main/pa_string.C, classes/file.C: - use method for print
7614: pcre_exec text error
7615:
7616: * src/main/pa_common.C: - method for print pcre_exec text error was
7617: added
7618:
7619: * src/include/pa_common.h: - method declaration for print pcre_exec
7620: text error was added
7621:
7622: 2008-08-19 misha
7623:
7624: * src/main/execute.C: - bugfix: opcodes must be in separate
7625: namespace while debug execution as well
7626:
7627: * tests/: 015.html, results/015.processed: - test for escaping some
7628: parser chars was added
7629:
7630: 2008-08-18 misha
7631:
7632: * tests/: 190.html, 190.p, results/190.processed: - test for
7633: $caller.self.field + default getter in one class was added
7634:
7635: * tests/: 189.html, results/189.processed: - test for
7636: ^date::create[date object]
7637:
7638: * tests/: 188.html, results/188.processed: - tests for match with
7639: UTF-8 strings
7640:
7641: * src/main/pa_string.C: - option 'U' (ungreedy) was added to
7642: ^string.match[]
7643:
7644: * ChangeLog: - parser 3.3.0 beta13
7645:
7646: 2008-08-15 misha
7647:
1.116 moko 7648: * src/lib/pcre/: LICENCE, Makefile.am, README, Tech.Notes, get.c,
7649: internal.h, pcre.3, pcre.3.html, pcre.3.txt, pcre.c, pcre.h,
7650: pcre.vcproj, study.c, maketables.c, pcre_dftables.vcproj,
7651: dftables.c: - old PCRE files removed
1.95 moko 7652:
7653: * src/lib/pcre/config.h: - configuration for PCRE library
7654:
7655: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
7656: use PCRE library from win32\pcre instead of parser3\src\lib\pcre
7657:
7658: * src/: classes/file.C, main/pa_string.C: - moved to new PCRE
7659: library and set flag UTF8 if $request:charset is UTF-8
7660:
7661: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_globals.C,
7662: include/pa_config_fixed.h: - moved to new PCRE library
7663:
7664: * src/: main/main.vcproj, types/types.vcproj,
7665: classes/classes.vcproj, lib/Makefile.am: - use PCRE library from
7666: win32\pcre instead of parser3\src\lib\pcre
7667:
7668: * src/: include/pa_opcode.h, include/pa_operation.h,
7669: main/compile.C, main/compile.y, main/compile_tools.C,
7670: main/compile_tools.h, main/execute.C, main/compile.tab.C: -
7671: opcodes were moved to separate namespace
7672:
7673: 2008-08-14 misha
7674:
7675: * src/types/pa_vstateless_class.C: - newline at the end missed
7676:
7677: * src/main/untaint.C: - char '-' also prefixed by '\' while regex
7678: tainting
7679:
7680: 2008-08-11 misha
7681:
7682: * tests/: 187.html, 187.p, results/187.processed: - tests for
7683: $caller.self, $caller.self.field and $caller.self.field[value]
7684: were added
7685:
7686: * src/types/pa_vmethod_frame.h: - still need to check 'self'
7687: runtime as well (for $caller.self)
7688:
7689: 2008-07-25 misha
7690:
7691: * tests/: 021.html, 032.html, 033.html, 047.html, 055.html,
7692: 059.html, 061.html, 064.html, 067.html, 068.html, 085.html,
7693: 086.html, 098.html, 109.html, 121.html: - set correct charsets in
7694: tests with international characters
7695:
7696: 2008-07-23 misha
7697:
7698: * src/main/pa_http.C: - escape $cookies as %uXXXX while
7699: file::load[...;http://
7700:
7701: * src/: main/pa_string.C, main/pa_globals.C, classes/file.C: - pcre
7702: now everywhere in separate namespace
7703:
7704: * src/types/pa_vmethod_frame.h: - looking for caller before looking
7705: for vars
7706:
7707: * src/main/: compile.y, compile.tab.C: - characters '@' and '#' now
7708: can be escaped by '^'
7709:
7710: 2008-07-22 misha
7711:
7712: * src/classes/string.C, tests/186.html: - names changes:
7713: escape=>js-escape, unescape=>js-unescape
7714:
7715: 2008-07-21 misha
7716:
7717: * tests/results/186.processed: - test for string escape/unescape
7718:
7719: * tests/186.html: - test for string escape/unescape
7720:
7721: * src/classes/string.C: - string has escape and unescape methods
7722: now
7723:
7724: * src/: include/pa_string.h, main/pa_string.C: - escape method was
7725: added
7726:
7727: * src/: include/pa_charset.h, main/pa_charset.C: - more escape
7728: method-layers added (with different params)
7729:
7730: 2008-07-18 misha
7731:
7732: * tests/results/185.processed: - test for ^str.pos[substr](offset)
7733: was added
7734:
7735: * tests/185.html: - test for ^str.pos[sub](offset) added
7736:
7737: * src/classes/string.C, src/classes/void.C, operators.txt: -
7738: ^string.pos[substr](offset) -- 2nd param accepted now
7739:
7740: * src/main/pa_string.C: - .pos works fine with offset for utf-8
7741: strings
7742:
7743: 2008-07-17 misha
7744:
7745: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
7746: helper length added for mid for small optimisation
7747:
7748: 2008-07-16 misha
7749:
7750: * tests/: 185.html, results/185.processed: - tests for
7751: length/left/right/mid/pos with utf-8 strings
7752:
7753: * src/classes/string.C: - left/right/mid/length/pos works fine for
7754: utf-8 strings
7755:
7756: * src/main/untaint.C: - comments removed
7757:
7758: * src/: include/pa_string.h, main/pa_string.C,
7759: include/pa_charset.h, main/pa_charset.C: - methods for working
7760: with pos/mid for strings in utf-8 were added
7761:
7762: 2008-07-15 misha
7763:
7764: * tests/: 184.html, results/184.processed: - test for case body as
7765: expression: $var(^switch(1){^case(1)(true)..})
7766:
7767: * src/classes/op.C: - case body can be expression now:
7768: $var(^switch(1){^case(1)(true)..})
7769:
7770: * tests/: results/183.processed, 183.html: - added test for testing
7771: new cookie encoding (%uXXXX)
7772:
7773: * src/main/untaint.C: - cookies outputs as %uXXXX now. while
7774: decoding for backward compatibility they decoded from %XX in
7775: request:charset too
7776:
7777: * src/: types/pa_vcookie.C, types/pa_vcookie.h, main/pa_request.C:
7778: - cookie class now decode cookies before first access after last
7779: request:charset changing (as form class).
7780:
7781: * src/main/pa_charset.C: - added method escape for escaping cookies
7782: as %uXXXX - before transcode calculate required space for dest
7783: string. it reduce mem usage for transcode
7784:
7785: * src/include/pa_charset.h: - added method escape for escaping
7786: cookies as %uXXXX
7787:
7788: * src/include/pa_string.h: - taint lang (internal) L_HTTP_COOKIE
7789: was added. will used for escaping cookies as %uXXXX
7790:
7791: * src/include/pa_common.h: - escape method has new option for skip
7792: converting '+' to a space char
7793:
7794: * src/main/: pa_common.C, pa_http.C: - skip BOM code before
7795: transcode - escape method has new option for skip converting '+'
7796: to a space char
7797:
7798: 2008-07-08 misha
7799:
7800: * src/classes/op.C: - bugfix in switch - case "stops" on 1st match
7801: (no UE if more then 1 case matches anylonger) - optimization:
7802: doing searching.as_string() || searching.as_double() only once
7803:
7804: 2008-07-04 misha
7805:
7806: * src/types/pa_vdate.h: - is_evaluated_expr returning true added so
7807: now ^date::create[date object] works
7808:
7809: * src/classes/string.C: - left and right added as aliases for start
7810: and end in ^string.trim[]
7811:
7812: 2008-07-03 misha
7813:
7814: * src/classes/file.C: - allow $.limit for file::sql as well
7815:
7816: * src/classes/file.C: - allow $.offset option for file::sql - force
7817: send limit=1 to query for use sql specifics authomatically
7818:
7819: * src/classes/: hash.C, string.C, table.C: - don't throw exception
7820: if $.limit value if empty. autoconvert it as everywere
7821:
7822: 2008-07-02 misha
7823:
7824: * configure.in: - time to change version number to 3.3.0 %-)
7825:
7826: * src/include/pa_version.h: - time to change version number to
7827: 3.3.0 %-)
7828:
7829: 2008-06-26 misha
7830:
7831: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
7832: $.limit(0) fixes
7833:
7834: * src/sql/pa_sql_driver.h: - new drivers API and new version (10.0)
7835: - $.limit(0) fixes
7836:
7837: * src/sql/pa_sql_driver.h: - SQL_NO_LIMIT added (preparations to
7838: new API)
7839:
7840: * src/: include/pa_sql_driver_manager.h,
7841: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
7842: classes/op.C: - document_root added
7843:
7844: * src/main/compile.tab.C: - error message was changed
7845:
7846: 2008-06-25 misha
7847:
7848: * src/main/compile.y: - error message was changed
7849:
7850: 2008-06-24 misha
7851:
7852: * tests/176_dir/: a.p, d.p: - @OPTION => @OPTIONS
7853:
7854: * tests/: 182.html, 182_dir/a1.p, 182_dir/a2.p, 182_dir/a3.p: -
7855: tests for @OPTIONS\nappend
7856:
7857: * tests/: 176.html, results/176.processed: - @OPTION => @OPTIONS
7858:
7859: * src/main/: compile.y, compile.tab.C: - stuff for @OPTIONS\nappend
7860:
7861: * src/main/compile_tools.h: - new methods for @OPTIONS\nappend
7862:
7863: * src/types/pa_vmethod_frame.h: - ALL_VARS_LOCAL_NAME moved fo
7864: compile.y
7865:
7866: 2008-06-17 misha
7867:
7868: * src/main/: compile.y, compile.tab.C: - bugfix in 'def'
7869: compilation: ^if(default){true. it's incorrect. must be
7870: exception}
7871:
7872: 2008-06-16 misha
7873:
7874: * tests/: 181.ent, 181.html, results/181.processed: - test for
7875: checking external reference loading with 'http://localhost'
7876: prefix while creating xdoc
7877:
7878: * tests/180.html: - use ^inet:ntoa[] and ^inet:aton[] instead of
7879: ^math:long2ip[] and ^math:ip2long[]
7880:
7881: * src/types/: pa_vobject.C, pa_vobject.h: - get_scalar_value method
7882: added which use scalar stateless class method when user object
7883: used in scalar context - use get_scalar_value when user object
7884: requested in scalar context
7885:
7886: * src/main/pa_common.C: - size must be int but not size_t or we
7887: can't compare with 0 sprintf result
7888:
7889: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
7890: main/execute.C, main/pa_request.C: - go back to one VMethodFrame
7891: with internal switch between local/global vars
7892:
7893: * src/types/pa_vclass.C: - register scalar if method @GET[] was
7894: specified
7895:
7896: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h,
7897: pa_vstateless_object.h: - stateless class and object now has
7898: private scalar field and getter/setter for working with it
7899:
7900: * src/classes/math.C: - methods math:long2ip & math:ip2long were
7901: moved to inet static class
7902:
7903: * src/classes/: classes.vcproj, inet.C, Makefile.am: - inet static
7904: class added (^inet:aton[IP], ^inet:ntoa(number))
7905:
7906: * tests/: 180.html, results/180.processed: - tests for
7907: ^math:long2ip(long) and ^math:ip2long[IP]
7908:
7909: * src/classes/math.C: - ^math:ip2long[IP] added
7910:
7911: 2008-06-11 misha
7912:
7913: * src/main/pa_xml_io.C: - use file_read_text again because of we
7914: need cut BOM code and remove DOS newline chars. but don't
7915: transcode it anyway.
7916:
7917: * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
7918: main/pa_http.C: - option for disable transcoding while file_read
7919: and file_read_text added
7920:
7921: 2008-06-10 misha
7922:
7923: * tests/: 179.html, 179.p, results/179.processed: - test for many
7924: classes in 1 file
7925:
7926: * src/main/: compile.C, compile_tools.h: - compile return list of
7927: classes now.
7928:
7929: * src/main/: compile.y, compile.tab.C: - compile return list of
7930: classes now. internals.
7931:
7932: * src/main/pa_request.C: - compile return list of classes now. try
7933: call @conf and @auto for each returned class
7934:
7935: * src/include/pa_request.h: - compile return list of classes now
7936:
7937: * src/types/pa_vstateless_class.h: - typedef ArrayClass added (for
7938: return list of classes when compile buf)
7939:
7940: 2008-06-07 misha
7941:
7942: * src/main/pa_request.C: - constructing VRequest object with 3rd
7943: param -- form
7944:
7945: * src/types/: pa_vrequest.C, pa_vrequest.h: - constructor acceps
7946: 3rd param: form. needed for get post_charset
7947:
7948: * src/types/: pa_vform.C, pa_vform.h: - VForm::get_post_charset()
7949: added
7950:
7951: * src/: include/pa_common.h, main/pa_common.C, main/pa_http.C,
7952: types/pa_vform.C, types/pa_vform.h: - some polish
7953:
7954: 2008-06-06 misha
7955:
7956: * src/types/: pa_vform.C, pa_vform.h: - if POST -- try detec
7957: charset and decode chars from it but not from response:charset
7958:
7959: * src/main/pa_http.C: - detect_charset moved out of here
7960:
7961: * src/: include/pa_common.h, main/pa_common.C: - more helpers
7962: methods moved here - unescape_chars accepn one charset now
7963:
7964: * src/main/pa_http.C: - new constants used - don't allow
7965: $.content-type in ^file::load[;http://;$.method[POST]] - add
7966: charset info while ^file::load[;http://;$.method[POST]] - option
7967: $.omit-post-charset(true) added to ^file::load[;http://] for
7968: disabling charset during post
7969:
7970: * src/types/pa_vform.C: - new constants used
7971:
7972: * src/include/pa_common.h: - some constants were added
7973:
7974: * src/: classes/form.C, types/pa_vform.C: - use StrStartFromNC
7975: instead of StrEqNc
7976:
7977: * src/main/pa_common.C: - new method for caseless search
7978: c-substring in c-string - use isxdigit instead of is_hex_digit
7979:
7980: * src/include/pa_common.h: - new method for caseless search
7981: c-substring in c-string
7982:
7983: 2008-06-05 misha
7984:
7985: * tests/results/178.processed: - test for testing default getter
7986:
7987: * tests/178.html: - test for testing default getter
7988:
7989: * tests/178_dir/: 178a.p, 178b.p, 178c.p, 178d.p, 178e.p: - classes
7990: for test for testing default getter
7991:
7992: * src/main/execute.C: - default getter soul
7993:
7994: * src/types/: pa_vobject.C, pa_vobject.h: - get default getter if
7995: requested objects' field not found
7996:
7997: * src/types/pa_vclass.C: - register default getter if defined - get
7998: default getter if requested field not found
7999:
8000: * src/types/pa_vstateless_object.h: - method get_default_getter was
8001: added
8002:
8003: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
8004: pointer to default getter and methods for get/set it were added
8005:
8006: * src/types/: pa_junction.h, pa_vjunction.h: - junction has
8007: auto_name field (for default getter)
8008:
8009: 2008-06-04 misha
8010:
8011: * src/main/pa_xml_io.C: - load external xml in binary mode (no
8012: transcoding, no cutting BOM code, no fixing line breaks) and get
8013: it to libxml "as is"
8014:
8015: 2008-06-03 misha
8016:
8017: * src/main/pa_common.C: - use store_Char instead of
8018: transcodeCharFromUTF8
8019:
8020: * src/: include/pa_charset.h, main/pa_charset.C: - method
8021: store_Char added, transcodeCharFromUTF8 -- removed
8022:
8023: 2008-06-02 misha
8024:
8025: * tests/: results/177.processed, 177.html: - test for checking
8026: .[acm]date after local ^file::load[] was added
8027:
8028: * tests/: results/176.processed, 176.html: - test for checking
8029: @OPTION\locals + @method[vars][locals] added
8030:
8031: * tests/results/auto.p: - CLASS_PATH specified for checking use
8032:
8033: 2008-05-30 misha
8034:
8035: * src/main/: compile.y, compile.tab.C: - changes in compiler:
8036: @OPTION\nlocals + @method[vars][;locals;] were added
8037:
8038: * src/main/execute.C: - code of OP_CALL and OP_CALL__WRITE was
8039: moved to separate method op_code - switch from VMethodFrame to
8040: VMethodFrameGlobal + VMethodFrameLocal
8041:
8042: * src/include/pa_request.h: - code of OP_CALL and OP_CALL__WRITE
8043: was moved to separate method op_code
8044:
8045: * src/main/pa_request.C: - use VMethodFrameGlobal instead of
8046: VMethodFrame now
8047:
8048: * src/types/pa_vstateless_class.h: - stateless class have bool flag
8049: all_vars_local as well
8050:
8051: * src/types/: pa_vmethod_frame.h, pa_vmethod_frame_global.h,
8052: pa_vmethod_frame_local.h, Makefile.am: - who children for
8053: VMethodFrame were added: one (global) works as VMethodFrame
8054: before and second (local) write all vars in self vars scope
8055:
8056: * src/types/pa_method.h: - method has bool flag all_vars_local now
8057:
8058: 2008-05-29 misha
8059:
8060: * tests/: 129.html, results/129.processed: - more tests for
8061: ^table.hash[]
8062:
8063: * src/classes/hash.C: - ^hash::sql has a new option:
8064: $.type[hash|string|table] as ^table.hash[] one.
8065:
8066: * src/classes/op.C: - ^try has 3rd param now: finally code which
8067: executed anyway after try or catch section
8068:
8069: 2008-05-27 misha
8070:
8071: * src/classes/table.C: - bugfix: ^table.hash[key][$.type[table]]
8072: must not fail if $.distinct(1) wasn't specified
8073:
8074: 2008-05-26 misha
8075:
8076: * src/classes/op.C: - allow ^throw[my type]
8077:
8078: 2008-05-22 misha
8079:
8080: * configure.in, configure: - version number updated to 3.2.4b
8081:
8082: * src/classes/: op.C, string.C: - trim format string before
8083: eval/format
8084:
8085: * tests/: results/175.processed, 175.html: - more tests for
8086: different format strings in .format[]
8087:
8088: * src/types/pa_vform.C: - while decoding get values decode %uXXXX
8089: as well (not only %XX)
8090:
8091: * src/main/pa_common.C: - unescape_chars can decode %uXXXX if
8092: charset specified - checks for format before print number
8093: (^d.format[>...<], ^eval($d)[>...<]) - formating with spaces
8094: (instead of tabs) removed
8095:
8096: * src/include/pa_common.h: - unescape_chars can decode %uXXXX if
8097: charset specified
8098:
8099: * src/: include/pa_charset.h, main/pa_charset.C: - method for get
8100: char in requested charset from utf code was added
8101:
8102: 2008-05-19 misha
8103:
8104: * tests/: 174.html, results/174.processed: - test for
8105: ^hashfile.cleanup[] added
8106:
8107: * src/classes/hashfile.C: - optimization: don't create any key or
8108: value variable if it's name weren't specified
8109: (^hf.foreach[;v]{...})
8110:
8111: 2008-05-16 misha
8112:
8113: * src/classes/hash.C: - optimization: don't create any key variable
8114: if variable name wasn't specified (^h.foreach[;v]{...})
8115:
8116: 2008-05-15 misha
8117:
8118: * src/classes/op.C: - small changes
8119:
8120: * src/classes/hashfile.C: - code reformating (as hash.foreach)
8121:
8122: * src/classes/hash.C: - calculate var_context once before foreach
8123:
8124: 2008-05-14 misha
8125:
8126: * src/classes/hashfile.C: - incorrect vars context calculation for
8127: ^hashfile.foreach[;]{} fixed
8128:
8129: * src/classes/: hash.C, table.C: - little optimisation
8130:
8131: * src/classes/file.C: - bugfix: double absolute path while loading
8132: file
8133:
8134: * tests/: 174.html, results/174.processed: - tests for hashfile
8135: were added
8136:
8137: * buildall-with-xml: - moving to libxslt 1.1.24
8138:
8139: 2008-04-30 misha
8140:
8141: * src/classes/file.C: - stat file while loading (local only) so
8142: .adate, .mdate and .cdate available without additional ::stat
8143:
8144: 2008-04-28 misha
8145:
8146: * src/classes/file.C: - $.name and $.content-type available for
8147: stated file
8148:
8149: 2008-04-14 misha
8150:
8151: * src/targets/cgi/parser3.C: - new year in copyright %-)
8152:
8153: * src/include/pa_version.h: - new version number in head
8154:
8155: 2008-04-10 misha
8156:
8157: * tests/: 080.html, results/080.processed: - cut '0' from
8158: exponential part because of on diff OS it differ (20 or 020 for
8159: ex)
8160:
8161: * tests/: 119.html, results/119.processed: - check for encoding
8162: while creating xdoc
8163:
8164: 2008-04-09 misha
8165:
8166: * buildall-with-xml: - move to libxml 2.6.32 and libxslt 1.1.23
8167:
8168: * src/main/pa_common.C: - comment added
8169:
8170: * src/classes/date.C: - little refactoring
8171:
8172: 2008-04-07 misha
8173:
8174: * src/classes/table.C: - use NO_STRINGSTREAM for switch to old
8175: style of ^table.save[]: prepare one big string and sabe it at
8176: once. it's safe on freebsd 4.x but use much more memory.
8177:
8178: * buildall-with-xml, buildall-without-xml: - option
8179: --disable-stringstream added (under comment. use it on freebsd
8180: 4.x)
8181:
8182: 2008-02-22 misha
8183:
8184: * src/main/pa_http.C: - exception if $.body[] and $.forms[]
8185: specified together in file::load[;http] - get back transcoding
8186: $.body[] in file::load[;http]
8187:
8188: 2008-02-21 misha
8189:
8190: * src/classes/date.C: - ^date.gmt-string[] was added
8191:
8192: * src/types/pa_value.C: - method for output date in RFC 822 format
8193: moved to pa_common.h
8194:
8195: * src/include/pa_common.h: - method for output date in RFC 822
8196: format moved here from pa_value.C
8197:
8198: * src/types/pa_vmail.C: - fixed core in sending mail with
8199: attachment in simple mode ($.file[file here]) introduced in 3.2.2
8200:
8201: 2008-02-20 misha
8202:
8203: * src/main/pa_http.C: - transcode $.headers before escaping into
8204: specified charset while ^file::load[...;http://...] (L_URI
8205: instead of L_HTTP_HEADER) - $.cookies param available in
8206: ^file::load[;http://...] now (but we don't parse set-cookies from
8207: response yet) (cookies not transcoded as common $cookies)
8208:
8209: 2008-02-19 misha
8210:
8211: * src/main/pa_request.C: - rollback: we mustn't force taint
8212: $response:field values because in this case
8213: $response:locateion[http://...] don't works.
8214:
8215: 2008-02-15 misha
8216:
8217: * src/classes/op.C: - little refactoring
8218:
8219: * src/main/pa_http.C: - taint names of $.headers for load[;http
8220:
8221: * src/main/pa_request.C: - force taint values of $response:field
8222:
8223: 2008-02-14 misha
8224:
8225: * src/main/pa_request.C: - $response:field transcoded to
8226: $response:charset before escaping now
8227:
8228: * src/main/pa_http.C: - some outdated comments removed
8229:
8230: * src/classes/date.C: - lastdat -> last-day
8231:
8232: * src/classes/date.C: - ^date:lastday(year;month) and
8233: ^date.lastday[] were added - little code refactoring - comments
8234: changes
8235:
8236: * tests/: 159.html, results/159.processed: - test for number of
8237: days in February
8238:
8239: * src/types/pa_value.C: - fixes in code formatting
8240:
8241: * src/classes/: file.C, op.C, table.C: - fixes in code formatting
8242: and comments
8243:
8244: 2008-02-13 misha
8245:
8246: * src/main/pa_common.C: - bugfix for february at leap year
8247:
8248: 2008-01-28 misha
8249:
8250: * tests/: 160.html, results/160.processed: - more test for cache
8251: added
8252:
8253: * src/classes/op.C: - bugfix: cache body executed twice if contains
8254: unhandled exception
8255:
8256: 2008-01-25 misha
8257:
8258: * src/lib/sdbm/sdbm.c: - use arp_malloc instead of malloc (fixed
8259: bug when hashfile became inavailable after memory:compact)
8260:
8261: * src/lib/sdbm/apr_strings.C: - +arp_malloc
8262:
8263: 2008-01-22 misha
8264:
8265: * src/classes/table.C: - little refactiring and exception texts
8266: changes in method ^table.hash[]
8267:
8268: * src/types/pa_vcookie.C: - link to cookie specification changed
8269:
8270: 2008-01-21 misha
8271:
8272: * tests/: 171.html, cat.sh, results/171.processed: - more tests for
8273: file::exec/cgi
8274:
8275: * src/classes/file.C: - bugfix: core while processing headers if
8276: executed cgi script don't return content
8277:
8278: 2008-01-18 misha
8279:
8280: * buildall-with-xml: - move to libxml2 version 2.6.31
8281:
8282: * src/include/pa_version.h, configure.in: - version number updated
8283: to '3.2.3b'
8284:
8285: 2007-12-28 misha
8286:
8287: * src/: classes/hash.C, include/pa_hash.h: - hash.contain =>
8288: hash.contains
8289:
8290: 2007-12-27 misha
8291:
8292: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
8293: src/lib/cord/cord.vcproj, src/lib/gd/gd.vcproj,
8294: src/lib/ltdl/ltdl.vcproj, src/lib/md5/md5.vcproj,
8295: src/lib/pcre/pcre.vcproj, src/lib/pcre/pcre_dftables.vcproj,
8296: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
8297: src/lib/smtp/smtp.vcproj, src/main/main.vcproj,
8298: src/targets/cgi/parser3.vcproj,
8299: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj: -
8300: back to VS2003 because of Apache 1.3 module can't work if it was
8301: built in VS 2005. with cgi all file so VS2003 project files can
8302: be easy converted to the new format.
8303:
8304: 2007-12-04 misha
8305:
8306: * src/types/pa_vcode_frame.h: - changes in comment
8307:
8308: 2007-11-29 misha
8309:
8310: * src/: types/pa_vcode_frame.h, main/execute.C: - code frame don't
8311: intercept strings any longer
8312:
8313: * tests/: 173.html, results/173.processed: - tests for
8314: $d[^date::now[]] $j{$d} $r[$j] -- must create date object in $r
8315: but not in main code frame
8316:
8317: * tests/: 172.html, results/172.processed: - more tests for pass
8318: objects from code frames
8319:
8320: 2007-11-27 misha
8321:
8322: * tests/: 152.html, results/152.processed: - tests for converting
8323: strings 'true'/'false' to bool were added
8324:
8325: * tests/152.html: - added checks for converting strings
8326: 'true'/'false' to bool
8327:
8328: * src/classes/string.C: - ^srting.bool[] now can convert to bool
8329: not only strings with numbers but with values 'true'/'false' as
8330: well
8331:
8332: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: - buffer size
8333: for parser3.log increased
8334:
8335: * src/main/pa_common.C: - remove_crlf optimize whitespaces now
8336:
8337: * src/include/pa_common.h: - remove_crlf return cstring size now
8338:
8339: * src/include/pa_types.h: - constant with buffer size for
8340: parser3.log added
8341:
8342: 2007-11-16 misha
8343:
8344: * tests/cat.sh: - script for tests for file::exec/cgi
8345:
8346: * tests/171.html: - tests for file::exec/cgi
8347:
8348: * tests/results/171.processed: - tests results for file::exec/cgi
8349:
8350: 2007-11-15 misha
8351:
8352: * src/main/pa_exec.C: - fixed incorrect exec code for unix
8353:
8354: * src/classes/file.C: - .body must be set before analyzing cgi
8355: headers
8356:
8357: * src/classes/file.C: - bugfix: we must transcode output fix EOLs
8358: only if exec/cgi return anything.
8359:
8360: 2007-11-14 misha
8361:
8362: * operators.txt: - info about new text|binary option for
8363: file::exec/cgi was added
8364:
8365: * src/: include/pa_exec.h, main/pa_exec.C, classes/file.C: -
8366: ^file:exec[[text|binary];script;...]
8367:
8368: * src/: include/pa_exception.h, classes/file.C, classes/image.C,
8369: classes/string.C, classes/table.C: - more text strings moved to
8370: the one place
8371:
8372: 2007-11-09 misha
8373:
8374: * src/types/pa_vrequest.C: - $request:argv must be taint
8375:
8376: * ChangeLog: - $request:argv [patch from Sumo]
8377:
8378: * operators.txt: - $request:argv
8379:
8380: * src/: include/pa_request_info.h, types/pa_vrequest.C,
8381: types/pa_vrequest.h, targets/cgi/parser3.C: - $request:argv
8382:
8383: 2007-10-25 misha
8384:
8385: * buildall-with-xml, buildall-without-xml: - options preparations
8386: for ./configure rewrited
8387:
8388: * src/main/: compile.tab.C, compile.y: - bug if parser.compile
8389: error occure in unhandled_exception finally fixed
8390:
8391: 2007-10-23 misha
8392:
8393: * tests/: 170.html, results/170.processed: - test for
8394: @method[][result]
8395:
8396: * operators.txt: - added info about node.prefix and
8397: node.namespaceURI
8398:
8399: * src/classes/xnode.C: - xmlHasProp used instead of xmlGetProp
8400:
8401: * src/types/pa_vxnode.C: - DOM2 fields namespaceURI and prefix were
8402: added for node and attribute
8403:
8404: 2007-10-22 misha
8405:
8406: * src/types/pa_vmail.C: - content-transfer-encoding: 8bit added
8407:
8408: * src/main/pa_request.C: - added const content-transfer-encoding
8409:
8410: * src/include/pa_request.h: - added const content-transfer-encoding
8411: - ups. constants must be in lowercase (for search)
8412:
8413: * src/types/pa_vmail.C: - more constants used -
8414: content-transfer-encoding: 8bit added
8415:
8416: * src/main/pa_uue.C: - content-transfer-encoding moved out of here
8417:
8418: * src/include/pa_request.h: - more constants
8419:
8420: * src/types/pa_vmail.C: - constant renamed - $.content-id don't
8421: ommit anymore if $.content-disposition was specified - little
8422: refactoring
8423:
8424: * src/: include/pa_request.h, main/pa_request.C: - constant renamed
8425:
8426: 2007-10-17 misha
8427:
8428: * operators.txt: - info about
8429: table::create[nameless]{data}[>options<] was added
8430:
8431: * src/main/: compile.tab.C, compile.y: - if error occure while
8432: compile method don't put this method in methods table anymore.
8433: in other case the parser coredumped if @unhandled_exception
8434: method can't be compiled because of parser.compile error.
8435:
8436: * src/main/execute.C: - little code reformating
8437:
8438: * src/main/pa_request.C: - little code reformating - comment
8439: changed
8440:
8441: 2007-10-16 misha
8442:
8443: * tests/: 035.html, results/035.processed: - tests
8444: table::create[]{}[options] added
8445:
8446: * src/classes/table.C: - table::create[]{} now accept 3rd param:
8447: options (only $.seperator[] yet)
8448:
8449: 2007-10-10 misha
8450:
8451: * src/classes/table.C: - some contstants moved to pa_common.h -
8452: some code changes
8453:
8454: 2007-10-02 misha
8455:
8456: * src/main/pa_uue.C: - memory usage during uuencode reduced more
8457: then three time as much. but base64 encoding method still use
8458: less memory anyway.
8459:
8460: 2007-09-17 misha
8461:
8462: * operators.txt: - added info about $cookie:fields
8463:
8464: * src/types/pa_vcookie.C: - $cookie:fields available now
8465:
8466: * src/classes/hash.C: - some stuff for use with .for_each moved to
8467: common
8468:
8469: * src/include/pa_common.h: - some stuff for use with .for_each
8470: moved here
8471:
8472: * src/types/: pa_venv.C, pa_venv.h: - some strings moved to #define
8473:
8474: 2007-09-14 misha
8475:
8476: * buildall-with-xml: - new xml libs again =)
8477:
8478: 2007-08-28 misha
8479:
8480: * operators.txt: - texts about ^table.columns[[column name]] and
8481: ^string.split[...][v][column name] were added
8482:
8483: * tests/: 168.html, 169.html, results/168.processed,
8484: results/169.processed: - tests for ^table.columns[[column name]]
8485: and ^string.split[...][v][column name] were added
8486:
8487: * src/classes/table.C: - new option ^table.columns[[column name]]
8488: was added
8489:
8490: * src/classes/string.C: - new option ^string.split[...;v;[column
8491: name]]
8492:
8493: * src/include/pa_exception.h: - error text message for
8494: ^hash._keys[], ^table.columns[] and ^string.split[]
8495:
8496: 2007-08-27 misha
8497:
8498: * src/main/untaint.C: - try to fix coredump on unix if print to
8499: body ^taint[sql][something] outside of connect
8500:
8501: * tests/: 167.html, results/167.processed: - test for ^taint[sql]
8502: outside of connect
8503:
8504: * buildall-with-xml, buildall-without-xml: - strip parser3 was
8505: added (commented by default)
8506:
8507: 2007-08-20 misha
8508:
8509: * operators.txt: - comment about new method ^node.hasAttributes[]
8510: was added
8511:
8512: * src/classes/: file.C, math.C, op.C, string.C, xdoc.C: - more
8513: duplicated exception text strings were removed
8514:
8515: * src/include/pa_exception.h: - more exception text strings moved
8516: here
8517:
8518: * src/classes/table.C: - some duplicate exceptions' text strings
8519: removed
8520:
8521: * src/classes/: file.C, hashfile.C, image.C, op.C, string.C,
8522: xdoc.C, xnode.C: - some duplicate exceptions' text strings
8523: removed
8524:
8525: * src/include/pa_exception.h: - some exception text strings movet
8526: to pa_exception
8527:
8528: * tests/: 149.html, results/149.processed: - test for
8529: ^xnode.hasAttributes[] was added - some code changes
8530:
8531: * src/classes/xnode.C: - DOM2 method ^xnode.hasAttributes[] was
8532: added
8533:
8534: 2007-08-17 misha
8535:
8536: * tests/: results/006.processed, results/059.processed, 006.html,
8537: 059.html: - more tests for match
8538:
8539: * tests/: 129.html, results/129.processed: - tests for
8540: ^table.hash[...][$.type[string|hash|table]] added
8541:
8542: * src/targets/cgi/parser3.C: - little syntax changes
8543:
8544: * src/: classes/math.C, targets/isapi/parser3isapi.C: - little
8545: syntax changes
8546:
8547: * src/targets/cgi/parser3.C, operators.txt: - annoying 'SIGPIPE'
8548: messages in parser3.log switched off by default. If someone
8549: really still need it: use $SIGPIPE(1)
8550:
8551: 2007-08-08 misha
8552:
8553: * buildall-with-xml, buildall-without-xml: - remove libs source
8554: files by default since now
8555:
8556: 2007-08-07 misha
8557:
8558: * buildall-without-xml: - some option syntax changes
8559:
8560: * buildall-with-xml: - compile libxml2 without http support - some
8561: option syntax changes
8562:
8563: * src/main/pa_xml_io.C: - will use parser file loader for xml needs
8564:
8565: 2007-08-06 misha
8566:
8567: * buildall-with-xml: - moved to libxml2-2.6.29 and libxslt-1.1.21
8568:
8569: * tests/: 160.html, results/160.processed: - cache test was
8570: rewrited
8571:
8572: 2007-07-06 misha
8573:
8574: * tests/: 153.html, results/153.processed: - added test for
8575: ^math:sha1[string]
8576:
8577: * src/types/pa_vform.C: - bugfix: uploaded file name wasn't
8578: transcoded
8579:
8580: * src/classes/math.C: - ^math:long2ip(long) and ^math:sha1[string]
8581: were added
8582:
8583: 2007-06-28 misha
8584:
8585: * etc/parser3.charsets/windows-1251.cfg: - removed duplicated and
8586: some incorrect chars
8587:
8588: 2007-06-19 misha
8589:
8590: * src/include/pa_hash.h: - methods generic_hash_code & hash_code
8591: were moved on top because of gcc 4 had a problems during
8592: building.
8593:
8594: 2007-06-18 misha
8595:
8596: * tests/results/019.processed: - new image commited
8597:
8598: 2007-06-09 misha
8599:
8600: * src/classes/: op.C, table.C: - in while and table.select method
8601: as_expression used now
8602:
8603: * src/types/pa_vmethod_frame.h: - method as_expression was added
8604:
8605: 2007-06-08 misha
8606:
8607: * tests/: 166.html, results/166.processed: - test for
8608: ^match[...][n]
8609:
8610: * tests/: 165.html, results/165.processed: - tests for loops
8611:
8612: * src/lib/cord/include/private/cord_pos.h: - back to origin value
8613: because of no speed/memory optimisation but some proglems with
8614: long cycles occure
8615:
8616: 2007-06-06 misha
8617:
8618: * src/classes/: op.C, table.C: - ^while(true){}, ^while(1){},
8619: ^table.select(true) and ^table.select(1) didn't works because of
8620: awaiting junction-param only. fixed.
8621:
8622: 2007-05-24 misha
8623:
8624: * src/: include/pa_os.h, main/pa_os.C: - 20 attempt to get lock
8625: with 0.5 secs interval
8626:
8627: * src/classes/op.C: - cache was rewrited. I hope it works with
8628: locking system now on unix
8629:
8630: * src/main/pa_os.C: - locks engines were rewrited: now we don't use
8631: system locks which wait till other threads release it but try get
8632: lock, if fail wait 1 sec and make 10 attempts.
8633:
8634: * src/include/pa_os.h: - consts for blocking locks + some comments
8635: were added
8636:
8637: * src/lib/sdbm/apr_file_io.C: - wait till lock released while
8638: opening files
8639:
8640: * src/classes/table.C: - changes in includes. if unclude <sstream>
8641: after our classes on unix it can't be build
8642:
8643: * src/types/pa_vhashfile.C: - not needed code removed
8644:
8645: 2007-05-23 misha
8646:
8647: * src/: classes/file.C, classes/op.C, main/pa_common.C,
8648: include/pa_common.h: - cosmetic changes
8649:
8650: 2007-05-18 misha
8651:
8652: * src/lib/cord/include/private/cord_pos.h: - rebalance tree not so
8653: often. it's give some speed increasing
8654:
8655: * tests/results/160.processed: - returned time corrected
8656:
8657: * tests/160.html: - time increased because on unix 1 mean nothing
8658: :(
8659:
8660: * operators.txt: - added info about ^hash.contain[key]
8661:
8662: * src/classes/hash.C: - added ^hash.contain[key]
8663:
8664: * src/include/pa_hash.h: - added method for checking key exists in
8665: hash
8666:
8667: 2007-05-07 misha
8668:
8669: * src/include/pa_string.h: - was compilation error during build on
8670: freebsd4
8671:
8672: 2007-05-03 misha
8673:
8674: * src/classes/table.C: - option $.type[hash|string|table] was added
8675: for ^table.hash[]
8676:
8677: * src/classes/file.C: - comment removed
8678:
8679: 2007-04-26 misha
8680:
8681: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - while ::open the
8682: real files doesn't opened in place anymore
8683:
8684: 2007-04-24 misha
8685:
8686: * src/classes/math.C: - I thought one more time and remove lg(N) :)
8687:
8688: * src/include/pa_exception.h: "static" removed
8689:
8690: 2007-04-23 misha
8691:
8692: * src/classes/math.C: ^math:lg(N) => ^math:log10(N)
8693:
8694: * src/classes/math.C: added: - ^math:ln(N) (the same as
8695: ^math:log(N)) - ^math:lg(N)
8696:
8697: * tests/: 097.html, results/097.processed: - charsets converstion
8698: during ^file::load[text;http://...] added
8699:
8700: * tests/: 164.html, results/164.processed: - check for set expires
8701: as a date
8702:
8703: * tests/: 164.html, results/164.processed: - test for hashfile
8704:
8705: * src/classes/hashfile.C: - little comment changes
8706:
8707: * src/types/pa_vhashfile.C: - don't open hashfile files until 1st
8708: access
8709:
8710: * src/: classes/date.C, classes/double.C, classes/file.C,
8711: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
8712: classes/mail.C, classes/math.C, classes/op.C, classes/string.C,
8713: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
8714: classes/xnode.h, include/pa_request.h, main/execute.C,
8715: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
8716: main/pa_dictionary.C, main/pa_exec.C, main/pa_http.C,
8717: main/pa_request.C, main/pa_sql_driver_manager.C, main/pa_table.C,
8718: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
8719: types/pa_vconsole.h, types/pa_vfile.h, types/pa_vhash.h,
8720: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmethod_frame.h,
8721: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
8722: types/pa_vtable.C, types/pa_vxdoc.h, types/pa_wcontext.C: -
8723: "parser.runtime" strings were removed
8724:
8725: * src/classes/hashfile.C: - with .clear[] called files_delete()
8726: now.
8727:
8728: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - .clear() removed.
8729:
8730: * src/include/pa_exception.h: - string constant with
8731: "parser.runtime" text was added
8732:
8733: 2007-04-20 misha
8734:
8735: * operators.txt: - some comments changing
8736:
8737: * operators.txt: - added info about .^hashfile.release[],
8738: ^hashfile.clenaup[] and new ^string.match[][>N-option<]
8739:
8740: * configure: =cheching for unsetenv
8741:
8742: * src/classes/hashfile.C: - ^hashfile.cleanup[],
8743: ^hashfile.release[] were added
8744:
8745: * src/: main/pa_string.C, include/pa_string.h, classes/string.C: -
8746: ^string.match[][] understand new option now: return number of
8747: matches but not table wit results
8748:
8749: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - hashfile can auto
8750: reopen now
8751:
8752: * src/classes/op.C: - bug. must be false
8753:
8754: * configure.in: - checking for unsetenv was added
8755:
8756: * src/types/pa_vform.C: - some comments
8757:
8758: 2007-04-18 misha
8759:
8760: * buildall-with-xml: moving to libxml2-2.6.28
8761:
8762: * buildall-with-xml, buildall-without-xml: added commented lines
8763: with --disable-safe-mode option
8764:
8765: * operators.txt: - info about $form:files
8766:
8767: 2007-04-17 misha
8768:
8769: * src/types/: pa_vform.C, pa_vform.h: - some code was modified -
8770: $form:files was added
8771:
8772: * tests/: 163.html, results/163.processed: removing auto format
8773:
8774: * src/types/pa_vdate.h: - start adding unsetenv("TZ");
8775:
8776: 2007-04-16 misha
8777:
8778: * tests/: 163.html, results/163.processed: - test for .int[],
8779: floor, round, ceiling and .format[]
8780:
8781: * src/classes/file.C: - little optimization for getting args in
8782: exec/cgi
8783:
8784: 2007-04-13 misha
8785:
8786: * src/classes/file.C: - arguments for file::exec/cgi can be
8787: specified now as s table with one column
8788:
8789: 2007-03-27 misha
8790:
8791: * tests/: 162.html, results/162.processed: - test for
8792: ^table.select(^condition[$t])
8793:
8794: * tests/results/auto.p: - load windows-1251 charset for some tests
8795:
8796: * tests/run_parser.sh: PARSER_CONFIG -> CGI_PARSER_CONFIG
8797:
8798: * tests/: results/161.processed, 161.html, 161_utf8.txt,
8799: 161_windows1251.txt: - added test for
8800: ^file::load[text;/local/file.txt;$.charset[...]]
8801:
8802: * tests/: results/013.processed, 013.html: - added test for
8803: checking $._default value while hash modifications
8804:
8805: * tests/: 160.html, results/160.processed: - add test for
8806: ^cache[key](secs){code}, ^cache[] and ^cache(0)
8807:
8808: 2007-03-22 misha
8809:
8810: * src/include/pa_common.h: - "charset" string defined for
8811: ^file::load[text;/local.txt] and ^table::load[/table.txt]
8812:
8813: * src/main/: pa_common.C, pa_http.C: - $.charset option for
8814: ^file::load[text;/local.txt] and ^table::load[/table.txt] was
8815: added - not needed transcodes were removed from
8816: ^file::load[...;http://...]
8817:
8818: * src/types/pa_vdate.h: - date.week was fixed - date.weekyear was
8819: added
8820:
8821: * src/classes/date.C: - date.week was fixed
8822:
8823: * operators.txt: - added info about date.weekyear
8824:
8825: * tests/: 159.html, results/159.processed: - tests for date.week
8826: and date.weekyear added
8827:
8828: 2007-03-15 misha
8829:
8830: * src/classes/table.C: - enclose column numbers for nameless tables
8831: as well
8832:
8833: 2007-03-14 misha
8834:
8835: * src/targets/cgi/parser3.C: - bugxif. failed when request cgi
8836:
8837: * src/classes/table.C: - table.save optimization: now required much
8838: less memory
8839:
8840: 2007-03-13 misha
8841:
8842: * tests/results/: 158.processed, 158.processes: - tests for
8843: table.save/table.load
8844:
8845: * tests/: 158.html, results/158.processes: - tests for
8846: table.save/table.load
8847:
8848: * buildall-with-xml: libxml2: --without-ftp --without-docbook
8849:
8850: * buildall-with-xml: - pattern needed now for building
8851:
8852: * tests/results/097.processed: - added test results for xdoc::load
8853: & xdoc::load[http://...]
8854:
8855: * tests/097.html: - added test for xdoc::load
8856:
8857: 2007-03-12 misha
8858:
8859: * tests/: 107.html, results/107.processed: - added test for xpath
8860: '//man'
8861:
8862: 2007-03-01 misha
8863:
8864: * tests/: 097.html, results/097.processed: - added test for
8865: creating xdoc from file
8866:
8867: * tests/: results/157.processed, 157.html: - added test for
8868: file:move
8869:
8870: 2007-02-28 misha
8871:
8872: * src/classes/xdoc.C: - another attempt
8873:
8874: * src/classes/xdoc.C: - roll back last changes for a while
8875:
8876: * src/classes/xdoc.C, operators.txt: - ^xdoc::create[$file] added.
8877:
8878: * src/classes/file.C: - under lock we create non-exist dir anyway
8879:
8880: * tests/results/099.processed: - ever send content-disposition to
8881: client with file
8882:
8883: * tests/157.html: + test for file:copy
8884:
8885: 2007-02-26 misha
8886:
8887: * src/classes/file.C: - some similar strings moved to #define
8888: instead of to be copy/pasted many times
8889:
8890: * src/types/pa_vfile.h: - class name string ("file") moved to
8891: #define
8892:
8893: 2007-02-20 misha
8894:
8895: * bin/auto.p.dist.in: - added lines for sqlite
8896:
8897: * configure.in: - added some strings for sqlite detection
8898:
8899: 2007-02-19 misha
8900:
8901: * operators.txt: - some comments changes
8902:
8903: * buildall-with-xml, buildall-without-xml: - some modifications
8904:
8905: 2007-02-17 misha
8906:
8907: * buildall-with-xml, buildall-without-xml: - moving to gc6.8
8908:
8909: * src/main/pa_request.C: - damn, i forgot to commit it while I
8910: change console behaviour
8911:
8912: 2007-02-12 misha
8913:
8914: * src/targets/cgi/parser3.C: - don't print headers if
8915: $console:line[data] was used during cgi execution.
8916:
8917: * src/types/pa_vconsole.h: - console class have bool flag now which
8918: marked as 'true' if class was used.
8919:
8920: * tests/: 152.html, results/152.processed: - more types was added
8921: to test 152
8922:
8923: * src/types/: pa_vimage.C, pa_vimage.h: - fixed bug added while
8924: adding 'bool' (^if($image){} caused exception)
8925:
8926: 2007-02-09 misha
8927:
8928: * tests/: 152.html, results/152.processed: - test alightly updated
8929:
8930: * tests/: 152.html, results/152.processed: - test rewrited
8931:
8932: * src/types/: pa_vxdoc.C, pa_vxdoc.h, pa_vxnode.C, pa_vxnode.h: -
8933: bugfix. I broke xdoc & xnode in expression
8934:
8935: 2007-02-08 misha
8936:
8937: * tests/: 152.html, results/152.processed: - add test for checking
8938: 'def' for void, string, bool, int & double
8939:
8940: 2007-02-07 misha
8941:
8942: * operators.txt: - ^file:base64[filespec] was added
8943:
8944: * tests/results/153.processed: - result test for
8945: ^file:base64[filespec] was updated
8946:
8947: * tests/153.html: - test for ^file:base64[filespec] was added
8948:
8949: * src/types/pa_vconsole.h: - little optimization
8950:
8951: * src/classes/file.C: - ^file:base64[filespec]
8952:
8953: * src/main/pa_common.C: - definitions for ^file:base64[filespec]
8954:
8955: * src/include/pa_common.h: - declarations for
8956: ^file:base64[filespec]
8957:
8958: * src/types/pa_vcookie.C: - little optimization
8959:
8960: 2007-02-06 misha
8961:
8962: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: - some chars
8963: were temporary commented
8964:
8965: * src/types/pa_vbool.h: - bugfix
8966:
8967: * tests/156.html: - added test for bool cookie
8968:
8969: * src/types/pa_vcookie.h: - not needed string "cookie" removed
8970:
8971: * tests/: 155.html, results/155.processed: - added test for check
8972: $.encloser[] option for table save/load
8973:
8974: * tests/: 153.html, 154.html, todo.txt: - two more tests added
8975:
8976: 2007-02-05 misha
8977:
8978: * tests/results/152.processed: - newline at the end was missed
8979:
8980: * tests/results/141.processed: - math:md5 must be lowercased
8981:
8982: * src/targets/cgi/parser3.C: - 2007 in help ;)
8983:
8984: 2007-02-03 misha
8985:
8986: * tests/results/: 150.processed, 151.processed, 152.processed: -
8987: test for bool added and some content length fixes
8988:
8989: * tests/152.html: - test for bool added
8990:
8991: * buildall-with-xml: - moved to libxml2-2.6.27 and libxslt-1.1.20
8992:
8993: * operators.txt: - info bool class was added
8994:
1.116 moko 8995: * src/: classes/Makefile.am, classes/bool.C,
1.95 moko 8996: classes/classes.vcproj, classes/double.C, classes/int.C,
8997: classes/string.C, classes/void.C, classes/xnode.C,
8998: include/pa_string.h, types/pa_vbool.h, types/pa_vclass.h,
8999: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
9000: types/pa_vjunction.h, types/pa_vproperty.C, types/pa_vproperty.h,
9001: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
9002: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h,
9003: types/types.vcproj: - bool class was added
9004:
9005: * src/main/pa_request.C: - fix
9006:
9007: 2007-01-18 misha
9008:
9009: * src/: main/pa_string.C, classes/string.C: - return table during
9010: ^string.match[][] even if no matched found.
9011:
9012: 2006-12-20 misha
9013:
9014: * src/types/: pa_method.h, pa_vfile.h: - some syntax changes [
9015: http://www.parser.ru/forum/?id=55598 ]
9016:
9017: 2006-12-19 misha
9018:
9019: * src/types/pa_vxdoc.C: - $xDoc is "xnode" == true now. more
9020: details: http://www.parser.ru/forum/?id=52359
9021:
9022: * src/main/pa_request.C: - always set content-disposition for
9023: $response:body[hash here]. more details:
9024: http://www.parser.ru/forum/?id=52130
9025:
9026: 2006-12-07 misha
9027:
9028: * operators.txt: - added info about bool params in cookie set
9029:
9030: * src/types/pa_vcookie.C: - bool param in cookies available now
9031: $cookie:name[ $.value[123] $.secure(true) $.httponly(true)
9032: ]
9033:
9034: * src/types/: pa_value.C, pa_value.h, pa_vbool.h: - is_bool method
9035: was added
9036:
9037: 2006-12-02 misha
9038:
9039: * src/classes/file.C: - file_block_read used instead of native read
9040:
9041: * src/main/pa_common.C: - added file_block_read with read error
9042: detection - file_block_read used instead of native read
9043:
9044: * src/include/pa_common.h: - added file_block_read declaration
9045:
9046: 2006-12-01 misha
9047:
9048: * operators.txt: - info about $var.CLASS_NAME was added
9049:
9050: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
9051: $var.CLASS_NAME added
9052:
9053: * operators.txt: - added info about ^file:copy[]
9054:
9055: * src/classes/file.C: - ^file:copy[from;fo] was added
9056:
9057: 2006-11-20 misha
9058:
9059: * src/classes/date.C: - bug fix :)
9060:
9061: 2006-11-17 misha
9062:
9063: * src/include/pa_common.h: - array in crc32 calculation was changed
9064: to static
9065:
9066: * src/main/pa_common.C: - little optimization in getMonthDays -
9067: small changes in crc32 calculation
9068:
9069: * src/classes/date.C: - not needed code was removed
9070:
9071: 2006-11-16 misha
9072:
9073: * src/types/pa_vmail.C: - fix missed brakes
9074:
9075: * src/types/pa_vmail.C: - mail:send now set content-type:
9076: multipart/related instead of multipart/mixed if file have
9077: $.content-id[]
9078:
9079: 2006-11-15 misha
9080:
9081: * src/types/pa_vdouble.h: abs -> fabs
9082:
9083: 2006-11-14 misha
9084:
9085: * operators.txt: - added info about ^file.md5[] and
9086: ^file:md5[file-name]
9087:
9088: * src/classes/file.C: - ^file.md5[] and ^file:md5[file-name] were
9089: added
9090:
9091: * src/main/pa_common.C: - CRC32_MAX_BUFFER_SIZE was renamed to
9092: FILE_BUFFER_SIZE
9093:
9094: * src/classes/math.C: - hex_string was moved to pa_common.h
9095:
9096: * src/include/pa_common.h: - hex_string was moved from math.C -
9097: CRC32_MAX_BUFFER_SIZE was renamed to FILE_BUFFER_SIZE
9098:
9099: * src/types/pa_vdouble.h: - incorrect frac detection with negative
9100: values was fixed
9101:
9102: 2006-11-13 misha
9103:
9104: * operators.txt: - added info about ^math:crc32[string],
9105: ^file:crc32[file-name] & ^file.crc32[]
9106:
9107: * src/classes/math.C: - added ^math:crc32[string]
9108:
9109: * src/classes/file.C: - some comments were changed - added
9110: ^file:crc32[file-name] and ^file.crc32[]
9111:
9112: * src/: include/pa_common.h, main/pa_common.C: - some functions for
9113: crc32 calculation added
9114:
9115: 2006-11-03 misha
9116:
9117: * src/include/pa_array.h: - not needed variable removed
9118:
9119: * tests/: 150.html, 151.html, results/150.processed,
9120: results/151.processed: - 2 tests were added
9121:
9122: * src/include/: pa_array.h, pa_table.h: - table.locate & table.join
9123: with $.reverse(1) were fixed
9124:
9125: * src/main/pa_http.C: - bug fix. now tainted data from $.form and
9126: query converted to $.charset during ^file::load[http://...]
9127:
9128: 2006-11-02 misha
9129:
9130: * src/include/pa_table.h: ups. forget '=' char
9131:
9132: * src/include/pa_table.h: - one more fix in
9133: .locate[...][$.reverse(1)]
9134:
9135: 2006-11-01 misha
9136:
9137: * src/classes/math.C: - bug fix, details:
9138: http://www.parser.ru/forum/?id=53360
9139:
9140: * src/include/pa_table.h: - bug fix during ^table.locate( condition
9141: false for all records )[$.reverse(1)]
9142:
9143: * src/main/pa_http.C: - second param for this mid method is length
9144: but not end_index so this method has error and can't detect
9145: charsets in next content-types: Content-type: text/html;
9146: charset="windows-1251" Content-type: text/html;
9147: charset="windows-1251"; Content-type: text/html;
9148: charset=windows-1251;
9149:
9150: only Content-type: text/html; charset=windows-1251 was fine
9151:
9152: 2006-10-31 misha
9153:
9154: * src/classes/file.C: - empty args in file::exec removed now
9155:
9156: 2006-09-11 misha
9157:
9158: * bin/auto.p.dist.in: - 2 errors were fixed - table::set was
9159: replaced to table::create - some changes in text/code formatting
9160:
9161: 2006-09-03 paf
9162:
9163: * src/classes/file.C: proper tainting of
9164: ^file::exec/cgi[script;env;COMMAND;LINE;PARAMS]
9165:
9166: 2006-06-09 paf
9167:
9168: * src/lib/pcre/pcre-2_08.tar.gz: one can easily find those
9169:
9170: * src/classes/table.C: formatting
9171:
9172: * src/classes/table.C: incorporated patch from misha: Sent:
9173: Thursday, June 08, 2006 12:38 PM Subject: parser3: patch for
9174: ignoring string options for ^table.save[]
9175:
9176: * src/classes/hash.C: incorporated patch from misha Sent:
9177: Wednesday, June 07, 2006 9:52 PM Subject: parser3: patch for
9178: $hash._default disappear while
9179:
9180: * operators.txt: ^mail:send[ $.file1[ $.value[file]
9181: $.format[!uue|!base64] << new base64 option. default uue ] ]
9182:
9183: * src/types/pa_vmail.C: misha: Sent: Wednesday, June 07, 2006 8:51
9184: PM Subject: patch for base64 in ^mail:send[] %-)
9185:
9186: 2006-04-09 paf
9187:
9188: * src/main/compile.tab.C: ` change compiled
9189:
9190: * gnu.vcproj, operators.txt, parser3.sln,
9191: src/classes/classes.vcproj, src/classes/file.C,
9192: src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
9193: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
9194: src/classes/xnode.C, src/include/pa_array.h,
9195: src/include/pa_config_fixed.h, src/include/pa_dir.h,
9196: src/include/pa_memory.h, src/include/pa_request.h,
9197: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
9198: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
9199: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
9200: src/lib/pcre/pcre_dftables.vcproj,
9201: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
9202: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
9203: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
9204: src/main/pa_cache_managers.C, src/main/pa_charset.C,
9205: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
9206: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
9207: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
9208: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
9209: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
9210: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
9211: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
9212: src/types/pa_value.h, src/types/pa_vcookie.C,
9213: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
9214: src/types/pa_vmail.C, src/types/pa_vresponse.C,
9215: src/types/pa_vstatus.C, src/types/types.vcproj,
9216: tests/descript.ion: + ^break[] ^continue[], in ^for, ^while,
9217: ^menu, ^hash/hashfile.foreach
9218:
9219: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
9220: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
9221: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
9222: src/classes/xnode.C, src/include/pa_array.h,
9223: src/include/pa_config_fixed.h, src/include/pa_dir.h,
9224: src/include/pa_memory.h, src/include/pa_request.h,
9225: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
9226: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
9227: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
9228: src/lib/pcre/pcre_dftables.vcproj,
9229: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
9230: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
9231: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
9232: src/main/pa_cache_managers.C, src/main/pa_charset.C,
9233: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
9234: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
9235: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
9236: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
9237: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
9238: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
9239: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
9240: src/types/pa_value.h, src/types/pa_vcookie.C,
9241: src/types/pa_vmail.C, src/types/pa_vresponse.C,
9242: src/types/pa_vstatus.C, src/types/types.vcproj,
9243: tests/descript.ion: ! switched to VS2005 (projects and
9244: object<info explicitly typed>.for_each(, info)) +
9245: $response:field[] setting void means removing + grammar $name`
9246: name stops now, for mysql `$field` + started ^break[]
9247: ^continue[], in ^for. TODO: to other iterators (while, menu,
9248: foreach) + all log messages += [uri=, method=, cl=]
9249:
9250: * buildall-with-xml: merged . ftp paths update
9251:
9252: * buildall-with-xml: . ftp paths update
9253:
9254: 2006-03-04 paf
9255:
9256: * src/main/: pa_string.C: merged from HEAD ! cache file curruption
9257: checks++ [thanks to Igor Zinkovsky for detailed report]
9258:
9259: * src/main/pa_string.C: ! cache file curruption checks++ [thanks to
9260: Igor Zinkovsky for detailed report]
9261:
9262: 2006-03-01 paf
9263:
9264: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
9265: \n to ' ' in
9266:
9267: 2006-02-18 paf
9268:
9269: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
9270: \n to ' ' in
9271:
9272: * src/main/untaint.C: ! mail:send << changed \r or \n to ' ' in
9273:
9274: 2006-02-03 paf
9275:
9276: * src/main/pa_common.C: merged from HEAD ! bugfix: decoding from
9277: base64
9278:
9279: * src/main/pa_common.C: ! bugfix: decoding from base64
9280:
9281: 2006-01-20 paf
9282:
9283: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
9284: economy fix
9285:
9286: * src/classes/: table.C: merged from HEAD ! bugfix
9287: ^table.save[$.encloser-s now handled properly
9288:
9289: * src/classes/table.C: ! bugfix ^table.save[$.encloser-s now
9290: handled properly
9291:
9292: 2006-01-19 paf
9293:
9294: * buildall-with-xml, buildall-without-xml: merged from HEAD !
9295: libgc:USE_MUNMAP activates merging of free memory blocks which
9296: helps a lot in our case: after transform we want
9297: CORD(main.result)->cstr[big malloc]->transcode[big malloc]
9298:
9299: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
9300: economy fix
9301:
9302: * buildall-with-xml, buildall-without-xml: ! libgc:USE_MUNMAP
9303: activates merging of free memory blocks which helps a lot in our
9304: case: after transform we want CORD(main.result)->cstr[big
9305: malloc]->transcode[big malloc]
9306:
9307: 2006-01-17 paf
9308:
9309: * src/types/pa_vhashfile.C: ! hashfile.foreach: counted pairs
9310: before reading them. got rid of reallocs = became quicker and
9311: less fragmentated
9312:
9313: 2005-12-29 paf
9314:
1.116 moko 9315: * INSTALL, Makefile.am, buildall-with-xml, buildall-without-xml,
9316: configure, configure.in, src/include/pa_version.h,
9317: src/lib/ltdl/Makefile.am, src/lib/ltdl/acconfig.h,
1.95 moko 9318: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
9319: src/lib/ltdl/config.sub, src/lib/ltdl/configure.in,
9320: src/lib/ltdl/install-sh, src/lib/ltdl/ltmain.sh,
9321: src/lib/ltdl/missing: . merged from 3.2.1
9322:
1.116 moko 9323: * Makefile.am, src/lib/ltdl/Makefile.am: . now site.m4 also
9324: packaged when 'make dist', so do configure companion files in
9325: src/lib/ltdl
9326:
9327: * src/lib/ltdl/: Makefile.am, acconfig.h, acinclude.m4,
9328: config.guess, config.sub, configure.in, install-sh, ltmain.sh,
9329: missing: . now config_auto.h is created with configure [were
9330: constant]
1.95 moko 9331:
9332: * INSTALL: . references to documentation and some clarification
9333:
9334: * buildall-with-xml, buildall-without-xml: . farawell doc
9335: indication
9336:
1.116 moko 9337: * Makefile.am: . dist+=buildall*
1.95 moko 9338:
9339: 2005-12-28 paf
9340:
9341: * configure: . 3.2.1
9342:
9343: * INSTALL, buildall-with-xml, buildall-without-xml: + started to
9344: simplify build process, see INSTALL
9345:
9346: 2005-12-26 paf
9347:
9348: * configure: ver
9349:
9350: * configure.in, src/include/pa_version.h, src/main/compile.tab.C:
9351: version
9352:
9353: 2005-12-21 paf
9354:
9355: * src/main/: compile.tab.C, main.vcproj: . win32: grammar is now
9356: compiled with bison 1.875b, it reports unexpected token names
9357:
9358: 2005-12-19 paf
9359:
9360: * src/: main/compile.tab.C, types/pa_vxnode.h: ! bugfix xnode now
9361: holds a link to xmlNode to prevent premature gc(xmlNode)
9362:
9363: * src/classes/classes.vcproj, src/include/pa_config_fixed.h,
9364: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
9365: src/main/main.vcproj, src/main/pa_globals.C,
9366: src/targets/cgi/parser3.vcproj,
9367: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj,
9368: configure, configure.in, src/include/pa_version.h: . killing
9369: gdome [what a relief]
9370:
9371: * tests/: 097.html, 106.html, 108.html, 110.html, 112.html,
9372: 113.html, 114.html, 115.html, 116.html, 117.html, Makefile,
9373: run_parser.sh, results/001.processed, results/002.processed,
9374: results/003.processed, results/004.processed,
9375: results/005.processed, results/006.processed,
9376: results/008.processed, results/009.processed,
9377: results/010.processed, results/011.processed,
9378: results/012.processed, results/013.processed,
9379: results/014.processed, results/015.processed,
9380: results/016.processed, results/017.processed,
9381: results/018.processed, results/020.processed,
9382: results/021.processed, results/022.processed,
9383: results/023.processed, results/024.processed,
9384: results/025.processed, results/026.processed,
9385: results/027.processed, results/028.processed,
9386: results/029.processed, results/030.processed,
9387: results/031.processed, results/032.processed,
9388: results/033.processed, results/034.processed,
9389: results/035.processed, results/036.processed,
9390: results/037.processed, results/038.processed,
9391: results/039.processed, results/040.processed,
9392: results/041.processed, results/042.processed,
9393: results/043.processed, results/044.processed,
9394: results/045.processed, results/046.processed,
9395: results/047.processed, results/048.processed,
9396: results/049.processed, results/050.processed,
9397: results/051.processed, results/052.processed,
9398: results/053.processed, results/054.processed,
9399: results/055.processed, results/056.processed,
9400: results/057.processed, results/058.processed,
9401: results/059.processed, results/060.processed,
9402: results/061.processed, results/062.processed,
9403: results/063.processed, results/064.processed,
9404: results/065.processed, results/066.processed,
9405: results/067.processed, results/068.processed,
9406: results/069.processed, results/070.processed,
9407: results/071.processed, results/072.processed,
9408: results/073.processed, results/074.processed,
9409: results/075.processed, results/076.processed,
9410: results/077.processed, results/078.processed,
9411: results/079.processed, results/080.processed,
9412: results/081.processed, results/082.processed,
9413: results/083.processed, results/084.processed,
9414: results/085.processed, results/086.processed,
9415: results/087.processed, results/088.processed,
9416: results/089.processed, results/090.processed,
9417: results/091.processed, results/092.processed,
9418: results/093.processed, results/094.processed,
9419: results/095.processed, results/096.processed,
9420: results/097.processed, results/099.processed,
9421: results/100.processed, results/101.processed,
9422: results/102.processed, results/104.processed,
9423: results/105.processed, results/106.processed,
9424: results/107.processed, results/108.processed,
9425: results/109.processed, results/110.processed,
9426: results/111.processed, results/112.processed,
9427: results/113.processed, results/114.processed,
9428: results/115.processed, results/117.processed,
9429: results/119.processed, results/120.processed,
9430: results/121.processed, results/122.processed,
9431: results/123.processed, results/124.processed,
9432: results/125.processed, results/126.processed,
9433: results/127.processed, results/128.processed,
9434: results/129.processed, results/130.processed,
9435: results/131.processed, results/132.processed,
9436: results/133.processed, results/134.processed,
9437: results/135.processed, results/136.processed,
9438: results/138.processed, results/139.processed,
9439: results/140.processed, results/141.processed,
9440: results/142.processed, results/143.processed,
9441: results/144.processed, results/145.processed,
9442: results/146.processed, results/147.processed,
9443: results/148.processed, results/149.processed, results/auto.p: .
9444: now works if we turn off default auto.p
9445:
1.116 moko 9446: * configure: . makes
1.95 moko 9447:
9448: * src/types/pa_vxnode.C: . less warnings
9449:
9450: * src/types/pa_vxnode.C, tests/142.html, tests/144.html,
9451: tests/145.html, tests/149.html, tests/descript.ion,
9452: tests/outputs/d.cmd, tests/results/142.processed,
9453: tests/results/143.processed, tests/results/144.processed,
9454: tests/results/145.processed, tests/results/146.processed,
9455: tests/results/147.processed, tests/results/148.processed,
9456: tests/results/149.processed: . removed .nodeValue from all node
9457: types other than 5 (grabbed piece from gdome)
9458:
9459: * tests/: 137.html, results/137.processed: . not handled this case
9460: yet. code does not hang from inserting parent into child,
9461: considering thing minor issue -- nodes are removed from source
9462: anyway, don't know why shold that be an error after all
9463:
9464: * src/targets/cgi/parser3.C: . style
9465:
9466: * src/classes/xnode.C: . "xml.dom" . xnode.select* now works on
9467: xdoc too [were barking "not element"]
9468:
9469: 2005-12-16 paf
9470:
9471: * tests/: 146.html, 147.html, 148.html: . more tests
9472:
9473: * src/classes/xnode.C: . also bark on possible errors
9474:
9475: * src/types/: pa_vxdoc.C, pa_vxnode.C, pa_vxnode.h: + xdoc DOM
9476: props
9477:
9478: * src/: types/pa_value.h, types/pa_vvoid.h, main/compile.tab.C,
9479: main/compile.y: merged from HEAD ! fixed overoptimized
9480: ^call(false) case. (confused it with ^call[] case)
9481:
9482: * src/main/: compile.tab.C, compile.y: ! fixed overoptimized
9483: ^call(false) case. (confused it with ^call[] case)
9484:
9485: * tests/: 142.html, 143.html, 144.html, 145.html: . dom [part]
9486:
9487: * tests/: 006.html, 034.html, 057.html, Makefile, make_tests.cmd,
9488: results/001.processed, results/002.processed,
9489: results/003.processed, results/004.processed,
9490: results/005.processed, results/006.processed,
9491: results/008.processed, results/009.processed,
9492: results/010.processed, results/011.processed,
9493: results/012.processed, results/013.processed,
9494: results/014.processed, results/015.processed,
9495: results/016.processed, results/017.processed,
9496: results/018.processed, results/019.processed,
9497: results/020.processed, results/021.processed,
9498: results/022.processed, results/023.processed,
9499: results/024.processed, results/025.processed,
9500: results/026.processed, results/027.processed,
9501: results/028.processed, results/029.processed,
9502: results/030.processed, results/031.processed,
9503: results/032.processed, results/033.processed,
9504: results/034.processed, results/035.processed,
9505: results/036.processed, results/037.processed,
9506: results/038.processed, results/039.processed,
9507: results/040.processed, results/041.processed,
9508: results/042.processed, results/043.processed,
9509: results/044.processed, results/045.processed,
9510: results/046.processed, results/047.processed,
9511: results/048.processed, results/049.processed,
9512: results/050.processed, results/051.processed,
9513: results/052.processed, results/053.processed,
9514: results/054.processed, results/055.processed,
9515: results/056.processed, results/057.processed,
9516: results/058.processed, results/059.processed,
9517: results/060.processed, results/061.processed,
9518: results/062.processed, results/063.processed,
9519: results/064.processed, results/065.processed,
9520: results/066.processed, results/067.processed,
9521: results/068.processed, results/069.processed,
9522: results/070.processed, results/071.processed,
9523: results/072.processed, results/073.processed,
9524: results/074.processed, results/075.processed,
9525: results/076.processed, results/077.processed,
9526: results/078.processed, results/079.processed,
9527: results/080.processed, results/081.processed,
9528: results/082.processed, results/083.processed,
9529: results/084.processed, results/085.processed,
9530: results/086.processed, results/087.processed,
9531: results/088.processed, results/089.processed,
9532: results/090.processed, results/091.processed,
9533: results/092.processed, results/093.processed,
9534: results/094.processed, results/095.processed,
9535: results/096.processed, results/097.processed,
9536: results/099.processed, results/101.processed,
9537: results/102.processed, results/104.processed,
9538: results/105.processed, results/106.processed,
9539: results/107.processed, results/108.processed,
9540: results/109.processed, results/110.processed,
9541: results/111.processed, results/112.processed,
9542: results/113.processed, results/114.processed,
9543: results/115.processed, results/116.processed,
9544: results/117.processed, results/118.processed,
9545: results/119.processed, results/120.processed,
9546: results/121.processed, results/122.processed,
9547: results/123.processed, results/124.processed,
9548: results/125.processed, results/126.processed,
9549: results/127.processed, results/128.processed,
9550: results/129.processed, results/130.processed,
9551: results/131.processed, results/132.processed,
9552: results/133.processed, results/134.processed,
9553: results/135.processed, results/136.processed,
9554: results/137.processed, results/138.processed,
9555: results/139.processed, results/140.processed,
9556: results/141.processed: . refreshed old tests, made them work
9557: without auto.p (in utf8) . things noted: . gif got encoded
9558: differently . exif 0000:00:00 decoded now into 0000:00:00 (were
9559: some strange year)
9560:
9561: * INSTALL: . revived linux libgc fix
9562:
9563: * INSTALL, configure.in, src/lib/Makefile.am: . sweetest part [no
9564: glib/gdome in INSTALL and patches]
9565:
9566: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
9567: include/pa_charset.h, include/pa_config_includes.h,
9568: include/pa_globals.h, include/pa_memory.h, include/pa_request.h,
9569: include/pa_xml_exception.h, lib/cord/Makefile.am,
9570: lib/cord/cord.vcproj, lib/cord/cordbscs.c, lib/cord/cordprnt.c,
9571: lib/cord/cordxtra.c, main/compile.tab.C, main/pa_charset.C,
9572: main/pa_globals.C, main/pa_memory.C, main/pa_request.C,
9573: main/pa_stylesheet_connection.C, main/pa_xml_exception.C,
9574: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
9575: types/pa_vxnode.h: . started killing gdome
9576:
9577: 2005-12-13 paf
9578:
9579: * src/main/: pa_request.C: merged from HEAD ! when code in
9580: @unhandled_exception thrown another exception, print correct
9581: origin (earlier code in catch of exception inside of
9582: @unhandled_exception grabbed parent_frame(original_exception)
9583: origin and printed it, instead of true origin)
9584:
9585: * src/main/pa_request.C: ! when code in @unhandled_exception thrown
9586: another exception, print correct origin (earlier code in catch of
9587: exception inside of @unhandled_exception grabbed
9588: parent_frame(original_exception) origin and printed it, instead
9589: of true origin)
9590:
9591: 2005-12-09 paf
9592:
9593: * INSTALL: . updated INSTALL doc to work around linux stack base
9594: detection problem, due to change in gc6.4 code
9595:
9596: * src/main/: pa_string.C: merged from 3.1.5 ! regex tainting were
9597: ignored in ^string.matched :(
9598:
9599: * src/main/pa_string.C: ! regex tainting were ignored in
9600: ^string.matched :(
9601:
9602: * ChangeLog, INSTALL, configure, configure.in, src/classes/date.C,
9603: src/include/pa_config_fixed.h, src/include/pa_version.h,
9604: src/main/compile.y, src/main/compile_tools.h,
9605: src/main/pa_charset.C, src/main/pa_common.C,
9606: src/main/pa_globals.C, src/main/pa_string.C,
9607: src/targets/cgi/getopt.c, src/targets/isapi/parser3isapi.C,
9608: src/types/pa_vmail.C: . merged latest fixes from 3.2.0
9609:
9610: 2005-12-08 paf
9611:
9612: * src/types/pa_vmail.C: merged from 3.2.0 ! bcc line longer then
9613: 500 chars now handled OK [were wrapped on 500th char according to
9614: rfc, but sendmail failed to unwrap it properly]
9615:
9616: * src/types/pa_vmail.C: ! bcc line longer then 500 chars now
9617: handled OK [were wrapped on 500th char according to rfc, but
9618: sendmail failed to unwrap it properly]
9619:
9620: * src/targets/isapi/parser3isapi.C: . less warnings
9621:
9622: * src/targets/isapi/parser3isapi.C: . undone some strange change
9623: since 3.1.5
9624:
9625: * src/targets/isapi/parser3isapi.C: . merged from 3.1.5 release
9626: link fixes
9627:
9628: * src/: classes/date.C, include/pa_config_fixed.h,
9629: main/compile.tab.C, main/compile.y, main/compile_tools.h,
9630: main/pa_charset.C, main/pa_common.C, main/pa_globals.C,
9631: main/pa_string.C, targets/cgi/getopt.c: . less warnings
9632:
9633: * src/include/pa_config_fixed.h: . removed outdated string origins
9634: [in current storage scheme there's no place for them. someday we
9635: can add third CORD to store origins and special version of parser
9636: which stores origins there [separate binary]]
9637:
9638: 2005-12-07 paf
9639:
9640: * src/targets/isapi/parser3isapi.C: . now links in release mode
9641:
9642: * src/include/pa_version.h: makefiles
9643:
9644: * src/include/pa_version.h: . not beta
9645:
9646: * configure, configure.in, src/include/pa_version.h: not beta
9647:
9648: 2005-12-06 paf
9649:
9650: * src/types/: pa_wcontext.C, pa_wcontext.h: ! after long discussion
9651: [some details here http://i2/tasks/edit/?id=4869912143891354460]
9652: decided to undo the change ^call[$void] passes void. now it will
9653: pass empty string again.
9654:
9655: * src/main/: compile.tab.C, compile.y: . version readded
9656:
9657: * src/classes/op.C: . in this version there is no ^switch[$nothing]
9658: = ^switch[void] problem
9659:
9660: 2005-12-01 paf
9661:
9662: * src/classes/op.C: mreged from HEAD . bugfix ^switch[$void_value]
9663: caused ^case[string] to be coerced to double since searching
9664: value were not string (it was vvoid)
9665:
9666: * src/classes/op.C: . bugfix ^switch[$void_value] caused
9667: ^case[string] to be coerced to double since searching value were
9668: not string (it was vvoid)
9669:
9670: * INSTALL: . compiled with libxml2 = 2.6.22 libxslt =
9671: 1.1.15 glib = 1.2.10 gdome2 = 0.8.1
9672:
9673: 2005-11-30 paf
9674:
9675: * src/types/pa_vdate.h: merged from HEAD: ! bugfix: to drop TZ on
9676: win32 must putenv("TZ="), on unix works only putenv("TZ")
9677:
9678: * src/types/pa_vdate.h: ! bugfix: to drop TZ on win32 must
9679: putenv("TZ="), on unix works only putenv("TZ")
9680:
9681: * INSTALL: . xml libs versions updated
9682:
9683: * src/main/pa_globals.C: //20051130 trying to remove this, author
9684: claims that fixed a lot there // 20040920 for now both
9685: workarounds needed. wait for new libxml/xsl versions
9686:
9687: 2005-11-28 paf
9688:
9689: * src/classes/table.C: merged from HEAD: ! nameless table has
9690: columns==0
9691:
9692: * src/classes/table.C: ! nameless table has columns==0
9693:
9694: * src/main/pa_http.C: merged from HEAD: ! status line check made
9695: earlier [was totally wrong]
9696:
9697: * src/main/pa_http.C: ! status line check made earlier [was totally
9698: wrong]
9699:
9700: 2005-11-25 paf
9701:
9702: * src/include/pa_array.h: -this reduces speed(table::load) strange.
9703: undoing for now...
9704:
9705: * src/include/pa_version.h: -this reduces speed(table::load),
9706: strange. undoing
9707:
9708: * src/classes/op.C: merged from HEAD + ^while(){}[SEPARATOR]
9709:
9710: * src/classes/op.C: + ^while(){}[SEPARATOR]
9711:
9712: * src/include/pa_array.h: + optimistics added: all arrays (table
9713: rows) now grow size*=2, like in .NET ArrayList.EnsureCapacity,
9714: this speeds things up and saves memory a LOT! (not noticed
9715: negative effect on syntetic tests, future will tell...)
9716:
9717: * src/include/pa_memory.h: . removed GC_DEBUG for debug version, it
9718: changed gc_malloc implementation, which obscured profiling
9719:
9720: * src/classes/table.C: merged from HEAD: + optimized
9721: table::load/sql, now row ArrayString-s allocated with
9722: columns.count() elements and don't always grow from
9723: count=3[realloc,realloc]
9724:
9725: * src/classes/table.C: + optimized table::load/sql, now row
9726: ArrayString-s allocated with columns.count() elements and don't
9727: always grow from count=3[realloc,realloc]
9728:
9729: * src/classes/table.C: merged from HEAD: . ^table.save unused
9730: buffer after save
9731:
9732: * src/classes/table.C: . ^table.save unused buffer after save
9733:
9734: 2005-11-24 paf
9735:
9736: * configure.in: . merged glib2-config patch
9737:
9738: * configure.in: + trying to find glib2-config
9739:
9740: * src/: classes/file.C, include/pa_common.h, main/execute.C,
9741: main/pa_common.C, main/pa_request.C: merged from HEAD: ! changed
9742: file/dir_readable to simple file/dir_exist, this would help in
9743: situations "class not found because .p file has bad rights" << in
9744: that case error would be explicit "access denied to 'this' file"
9745:
1.116 moko 9746: * aclocal.m4, configure, src/include/pa_config_auto.h.in: makefiles
1.95 moko 9747:
9748: * src/: classes/file.C, include/pa_common.h, main/execute.C,
9749: main/pa_common.C, main/pa_request.C: ! changed file/dir_readable
9750: to simple file/dir_exist, this would help in situations "class
9751: not found because .p file has bad rights" << in that case error
9752: would be explicit "access denied to 'this' file"
9753:
9754: * src/: classes/file.C, include/Makefile.am, include/pa_common.h,
9755: include/pa_http.h, main/Makefile.am, main/main.vcproj,
9756: main/pa_common.C, main/pa_http.C: merged from HEAD: +!
9757: ^file::exec/cgi[script;$.charset[changed]
9758: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
9759: encoded in $.charset charset
9760:
9761: * src/classes/file.C: +! ^file::exec/cgi[script;$.charset[changed]
9762: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
9763: encoded in $.charset charset
9764:
9765: * src/: include/Makefile.am, include/pa_common.h,
9766: include/pa_http.h, main/Makefile.am, main/main.vcproj,
9767: main/pa_common.C, main/pa_http.C: . extracted http:// into
9768: separate file [preparation for
9769: ^file::cgi[script;$.form[$.field1[]
9770:
9771: 2005-11-22 paf
9772:
9773: * src/: include/pa_version.h, main/compile.tab.C: makefiles
9774:
9775: * acinclude.m4, configure.in: . merged underquting fixes
9776:
1.116 moko 9777: * src/include/pa_config_auto.h.in: configure+makes
1.95 moko 9778:
9779: * src/classes/op.C: . overmerged a little
9780:
9781: * src/main/compile.tab.C: Makefile
9782:
9783: * src/main/: pa_common.C: . less gcc warnings
9784:
9785: * src/classes/op.C: merged from HEAD: + $exception.handled[cache]
9786: now reports original exception if we have no old cache
9787:
9788: * src/classes/op.C: + $exception.handled[cache] now reports
9789: original exception if we have no old cache
9790:
9791: * src/: classes/op.C, include/pa_string.h, main/untaint.C: merged
9792: from HEAD: + ^taint/untaint[regex] << escapes these:
9793: \^$.[]|()?*+{}
9794:
9795: * src/: classes/op.C, include/pa_string.h, main/untaint.C: +
9796: ^taint/untaint[regex] << escapes these: \^$.[]|()?*+{}
9797:
9798: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
9799: getenv-ed variable, which does not work both on win32&unix.
9800: copied old TZ value now
9801:
9802: * src/types/pa_vdate.h: merged from 3.1.5: ! date TZ save/restore
9803: stored pointer to getenv-ed variable, which does not work both on
9804: win32&unix. copied old TZ value now
9805:
9806: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
9807: getenv-ed variable, which does not work both on win32&unix.
9808: copied old TZ value now
9809:
9810: * src/types/pa_vresponse.C: merged from HEAD: + $response:headers
9811: access to internal hash
9812:
9813: * src/types/pa_vresponse.C: + $response:headers access to internal
9814: hash
9815:
9816: * src/targets/isapi/parser3isapi.C: merged from HEAD: +
9817: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
9818: isapi] this reduces number of "GC Warning: Repeated allocation of
9819: very large block" messages to only important onces
9820:
9821: * src/targets/isapi/parser3isapi.C: +
9822: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
9823: isapi] this reduces number of "GC Warning: Repeated allocation of
9824: very large block" messages to only important onces
9825:
9826: * src/classes/string.C: merged from HEAD: + removed limitation on
9827: ^string/int/double:sql{}[$.default[({param style})] ]
9828:
9829: * src/classes/string.C: + removed limitation on
9830: ^string/int/double:sql{}[$.default[({param style})] ]
9831:
9832: * src/main/pa_common.C: merged from HEAD: + removed "use either uri
9833: with ?params or $.form option" limitation
9834:
9835: * src/main/pa_common.C: + removed "use either uri with ?params or
9836: $.form option" limitation
9837:
9838: * src/: classes/file.C, classes/string.C, include/pa_common.h,
9839: main/pa_common.C: merged from HEAD: + ^file.base64[] encode +
9840: ^file::base64[encoded] decode
9841:
9842: * src/: classes/file.C, classes/string.C, include/pa_common.h,
9843: main/pa_common.C: + ^file.base64[] encode +
9844: ^file::base64[encoded] decode
9845:
9846: * src/classes/: file.C, string.C: + ^string.base64[] encode +
9847: ^string:base64[encoded] decode
9848:
9849: * src/: classes/string.C, include/pa_common.h, main/pa_common.C: +
9850: ^string:base64[in] encode + ^string.base64[] decode
9851:
9852: 2005-11-21 paf
9853:
9854: * src/classes/file.C: + merged from HEAD:
9855: ^file::create[text;file.xml;^untaint[xml]{data}]
9856:
9857: * src/classes/file.C: +
9858: ^file::create[text;file.xml;^untaint[xml]{data}]
9859:
9860: * src/main/pa_request.C: ! merged: $response:body[file] now
9861: differes from :download, it does not return content-disposition
9862: at all now [previusely it returned valueless content-disposition]
9863:
9864: * src/main/pa_request.C: ! $response:body[file] now differes from
9865: :download, it does not return content-disposition at all now
9866: [previusely it returned valueless content-disposition]
9867:
9868: * src/main/: compile.tab.C, compile.y: ! overoptimized void
9869: literals, reverted to just vvod, recreating empty array with each
9870: void_value token. that's absolutely needed, since that array
9871: grows
9872:
9873: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
9874: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
9875: types/pa_vmethod_frame.h: + merged: expression literals:
9876: true/false. ^format[$.indent(true)]
9877:
9878: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
9879: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
9880: types/pa_vmethod_frame.h: + expression literals: true/false.
9881: ^format[$.indent(true)]
9882:
9883: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
9884: merged: $env:PARSER_VERSION reports "3.1.5beta (compiled on
9885: i386-pc-win32)"
9886:
9887: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
9888: $env:PARSER_VERSION reports "3.1.5beta (compiled on
9889: i386-pc-win32)"
9890:
9891: 2005-11-18 paf
9892:
9893: * src/classes/: double.C, int.C: ! ^int/double:sql{select
9894: null}[$.default(123)] will now return default value
9895:
9896: * src/classes/op.C: + merged ^cache[] << returns current cache
9897: expiration time
9898:
9899: * src/classes/op.C: + ^cache[] << returns current cache expiration
9900: time
9901:
9902: * src/classes/table.C: ! merged ^table::create[not'nameless';
9903: failed << Exception.problem_source pointed to local var!
9904:
9905: * src/classes/table.C: ! ^table::create[not'nameless'; failed <<
9906: Exception.problem_source pointed to local var!
9907:
9908: * src/main/pa_common.C: ! merged: file::load[binary;fileOfZeroSize]
9909: now loads VFile.ptr!=0, so such files can be saved now
9910:
9911: * src/main/pa_common.C: ! file::load[binary;fileOfZeroSize] now
9912: loads VFile.ptr!=0, so such files can be saved now
9913:
9914: * src/include/pa_dir.h: ! merged: file:list now sees .xxx files,
9915: only . and .. now removed from list [were removed all .*]
9916:
9917: * src/include/pa_dir.h: ! file:list now sees .xxx files, only . and
9918: .. now removed from list [were removed all .*]
9919:
9920: * src/lib/sdbm/apr_file_io.C: ! merged from 3.1.5: hashfile file
9921: open error now checked, were not :( [stole that piece from apache
9922: 1.3 sources]
9923:
9924: * src/lib/sdbm/apr_file_io.C: ! hashfile file open error now
9925: checked, were not :( [stole that piece from apache 1.3 sources]
9926:
9927: * src/main/pa_request.C: ! merged from 3.1.5: ensured proper
9928: untainting of @main result if returned by $result or
9929: $response:body
9930:
9931: * src/main/pa_request.C: ! ensured proper untainting of @main
9932: result if returned by $result or $response:body
9933:
9934: * src/main/pa_common.C: ! merged from 3.1.5: fixed file load memory
9935: issue: now tries to guess content-length and allocates one big
9936: piece if possible [regretfully gc_realloc works as malloc+free,
9937: leaving lots of holes behind]
9938:
9939: * src/: classes/memory.C, main/compile.tab.C, main/pa_common.C: !
9940: fixed file load memory issue: now tries to guess content-length
9941: and allocates one big piece if possible [regretfully gc_realloc
9942: works as malloc+free, leaving lots of holes behind]
9943:
9944: 2005-11-16 paf
9945:
9946: * src/: include/pa_common.h, classes/file.C, classes/table.C,
9947: main/compile.tab.C, main/pa_common.C: merged to HEAD: !
9948: table::save with enclosers now doubles them: "->"" !
9949: table::save/load do not remove elements from options hash
9950:
9951: * src/main/compile.y: ! merged to HEAD: ^if(-f "...") now works
9952: [were overoptimized ^if(double_literal), compiler confused
9953: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
9954:
9955: * src/main/: compile.tab.C, compile.y: ! ^if(-f "...") now works
9956: [were overoptimized ^if(double_literal), compiler confused
9957: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
9958:
9959: * src/: classes/file.C, classes/table.C, include/pa_common.h,
9960: main/pa_common.C: ! table::save with enclosers now doubles them:
9961: "->"" ! table::save/load do not remove elements from options hash
9962:
9963: 2005-11-03 paf
9964:
1.116 moko 9965: * src/main/: Makefile.am, compile.tab.C: removed $< from .y
9966: compilation, not all makefiles liked that
1.95 moko 9967:
9968: 2005-08-30 paf
9969:
9970: * src/classes/op.C: merge . speedup check of [DEFAULT]
9971:
9972: * src/classes/op.C: . speedup check of [DEFAULT]
9973:
9974: 2005-08-26 paf
9975:
9976: * src/: classes/date.C, types/pa_vdate.h: merged + date.week
9977:
9978: * src/: classes/date.C, types/pa_vdate.h: + date.week
9979:
9980: * src/classes/table.C: merged ! ^table::create[bad]{xxx} now
9981: complains about bad!=nameless
9982:
9983: * src/classes/table.C: ! ^table::create[bad]{xxx} now complains
9984: about bad!=nameless
9985:
9986: * src/classes/: hash.C, string.C, table.C, void.C: merged !
9987: optional options were allowed to be empty. were checked
9988: if(is_string), changed to !defined||is_string to allow void
9989:
9990: * src/: targets/isapi/parser3isapi.C, classes/hash.C,
9991: classes/string.C, classes/table.C, classes/void.C: ! optional
9992: options were allowed to be empty. were checked if(is_string),
9993: changed to !defined||is_string to allow void
9994:
9995: * src/types/pa_vmethod_frame.h: merged ! many classes/* used
9996: as_junction where they needed as_int/double, so failed with
9997: recent "(const) now no junction" optimization
9998:
9999: * src/classes/: double.C, int.C, math.C, op.C, string.C, table.C:
10000: merged ! many classes/* used as_junction where they needed
10001: as_int/double, so failed with recent "(const) now no junction"
10002: optimization
10003:
10004: * src/: classes/double.C, classes/int.C, classes/math.C,
10005: classes/op.C, classes/string.C, classes/table.C,
10006: main/compile.tab.C, types/pa_vmethod_frame.h: ! many classes/*
10007: used as_junction where they needed as_int/double, so failed with
10008: recent "(const) now no junction" optimization
10009:
10010: 2005-08-24 paf
10011:
10012: * src/targets/isapi/: parser3isapi.C, parser3isapi.vcproj: ! on
10013: windows 2003 DllMain receivese \\?\ prefix to fullspec of .dll,
10014: stripped it
10015:
10016: 2005-08-09 paf
10017:
10018: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
10019: not cleared
10020:
10021: * src/: classes/classes.C, classes/classes.h, classes/date.C,
10022: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
10023: classes/hashfile.C, classes/image.C, classes/int.C,
10024: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
10025: classes/response.C, classes/string.C, classes/table.C,
10026: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
10027: include/pa_array.h, include/pa_cache_managers.h,
10028: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
10029: include/pa_config_fixed.h, include/pa_config_includes.h,
10030: include/pa_dictionary.h, include/pa_dir.h,
10031: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
10032: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
10033: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
10034: include/pa_request_charsets.h, include/pa_request_info.h,
10035: include/pa_sapi.h, include/pa_socks.h,
10036: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
10037: include/pa_stack.h, include/pa_string.h,
10038: include/pa_stylesheet_connection.h,
10039: include/pa_stylesheet_manager.h, include/pa_table.h,
10040: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
10041: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
10042: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
10043: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
10044: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
10045: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
10046: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
10047: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
10048: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
10049: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
10050: main/pa_sql_driver_manager.C, main/pa_string.C,
10051: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
10052: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
10053: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
10054: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
10055: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
10056: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
10057: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
10058: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
10059: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
10060: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
10061: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
10062: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
10063: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
10064: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
10065: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
10066: types/pa_vmemory.h, types/pa_vmethod_frame.C,
10067: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
10068: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
10069: types/pa_vresponse.C, types/pa_vresponse.h,
10070: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
10071: types/pa_vstateless_object.h, types/pa_vstatus.C,
10072: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
10073: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
10074: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
10075: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
10076: types/pa_wcontext.h, types/pa_wwrapper.h: 2005
10077:
10078: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
10079: pa_vmethod_frame.h: merged from HEAD ! simplified (double)
10080: speedup consequent checks in vmethod_frame
10081:
10082: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
10083: not cleared
10084:
10085: * src/: classes/file.C, main/pa_exec.C: merged +file::cgi/exec now
10086: params: 50 max (were 10)
10087:
10088: * src/: classes/file.C, main/pa_exec.C: + file::cgi/exec now
10089: params: 50 max (were 10)
10090:
10091: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
10092: pa_vmethod_frame.h, pa_vvoid.C, pa_vvoid.h, pa_wcontext.C,
10093: pa_wcontext.h: + ^call[$void] param inside now is void (were:
10094: empty string) ! simplified (double) speedup consequent checks in
10095: vmethod_frame
10096:
10097: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: merged +
10098: optimized constants in expressions vstring->vdouble + optimized
10099: ^call(vdouble), no junction creation, no calls later
10100:
10101: 2005-08-08 paf
10102:
10103: * bin/auto.p.dist.in: merged . apache bad 404 handling workaround
10104: integrated
10105:
10106: * bin/auto.p.dist.in: . apache bad 404 handling workaround
10107: integrated
10108:
10109: * src/main/: compile.tab.C, compile.y, compile_tools.C,
10110: compile_tools.h: merged + optimized constants in expressions
10111: vstring->vdouble + optimized ^call(vdouble), no junction
10112: creation, no calls later
10113:
10114: * src/types/pa_vdouble.h: merged . double values without fractional
10115: part now default printed as %.0f instead of %g
10116:
10117: * src/types/pa_vdouble.h: . double values without fractional part
10118: now default printed as %.0f instead of %g
10119:
10120: * src/classes/hashfile.C: . merged ! second hashfile::open would
10121: cause an exception
10122:
10123: * src/classes/hashfile.C: ! second hashfile::open would cause an
10124: exception
10125:
10126: * src/: classes/classes.h, main/execute.C, types/pa_junction.h,
10127: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
10128: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
10129: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
10130: types/pa_vimage.C, types/pa_vimage.h, types/pa_vjunction.h,
10131: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
10132: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
10133: types/pa_vresponse.h, types/pa_vstateless_class.C,
10134: types/pa_vstateless_object.h, types/pa_vvoid.h,
10135: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
10136: merged VJunction(new Junction) optimization from 3.1.4
10137:
10138: * src/: main/execute.C, types/pa_junction.h, types/pa_vjunction.h,
10139: types/pa_vstateless_class.C: + optimized new VJunction(new
10140: Junction(params)) to new VJunction(params), thousands of mallocs
10141: removed
10142:
10143: 2005-08-05 paf
10144:
10145: * src/: include/pa_memory.h, main/compile.tab.C, main/compile.y,
10146: types/pa_vdouble.h, types/pa_vmethod_frame.C,
10147: types/pa_vmethod_frame.h: + optimized ^call(vdouble), no junction
10148: creation, no calls later
10149:
10150: * src/: classes/classes.C, classes/classes.h, classes/date.C,
10151: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
10152: classes/hashfile.C, classes/image.C, classes/int.C,
10153: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
10154: classes/response.C, classes/string.C, classes/table.C,
10155: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
10156: include/pa_array.h, include/pa_cache_managers.h,
10157: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
10158: include/pa_config_fixed.h, include/pa_config_includes.h,
10159: include/pa_dictionary.h, include/pa_dir.h,
10160: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
10161: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
10162: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
10163: include/pa_request_charsets.h, include/pa_request_info.h,
10164: include/pa_sapi.h, include/pa_socks.h,
10165: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
10166: include/pa_stack.h, include/pa_string.h,
10167: include/pa_stylesheet_connection.h,
10168: include/pa_stylesheet_manager.h, include/pa_table.h,
10169: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
10170: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
10171: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
10172: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
10173: lib/smtp/smtp.h, main/compile.C, main/compile.y,
10174: main/compile_tools.C, main/compile_tools.h, main/execute.C,
10175: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
10176: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
10177: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
10178: main/pa_memory.C, main/pa_os.C, main/pa_request.C,
10179: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
10180: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
10181: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
10182: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
10183: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
10184: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
10185: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
10186: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
10187: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
10188: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
10189: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
10190: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
10191: types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.h,
10192: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
10193: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
10194: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemory.h,
10195: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
10196: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
10197: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
10198: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
10199: types/pa_vstateless_object.h, types/pa_vstatus.C,
10200: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
10201: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
10202: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
10203: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
10204: types/pa_wcontext.h, types/pa_wwrapper.h: . 2005 ;)
10205:
10206: * src/: lib/cord/cord.vcproj, lib/gd/gd.vcproj,
10207: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/pcre.vcproj,
10208: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
10209: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/compile.tab.C,
10210: main/compile.y, main/compile_tools.C, main/compile_tools.h,
10211: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj: +
10212: optimized constants in expressions vstring->vdouble
10213:
10214: 2005-07-29 paf
10215:
10216: * src/types/pa_vclass.C: . shaped up error messages a bit
10217:
10218: * src/types/pa_vclass.C: + property getter can now be overridden
10219:
10220: * src/: main/execute.C, types/pa_vclass.C, types/pa_vobject.C: !
10221: bug fix: static parent fields were not replaced in case
10222: $derived:field[put] + property setter can now be overridden
10223:
10224: 2005-07-28 paf
10225:
10226: * configure, configure.in, src/classes/classes.h,
10227: src/classes/date.C, src/classes/file.C, src/classes/hash.C,
10228: src/classes/hashfile.C, src/classes/image.C, src/classes/op.C,
10229: src/classes/table.C, src/classes/xdoc.C, src/classes/xnode.C,
10230: src/classes/xnode.h, src/include/pa_hash.h,
10231: src/include/pa_version.h, src/main/execute.C,
1.116 moko 10232: src/types/Makefile.am, src/types/pa_method.h,
10233: src/types/pa_value.h, src/types/pa_vclass.C,
10234: src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
10235: src/types/pa_vconsole.h, src/types/pa_vcookie.C,
10236: src/types/pa_vcookie.h, src/types/pa_vhash.h,
10237: src/types/pa_vhashfile.h, src/types/pa_vimage.C,
10238: src/types/pa_vimage.h, src/types/pa_vmethod_frame.h,
10239: src/types/pa_vobject.C, src/types/pa_vobject.h,
10240: src/types/pa_vproperty.h, src/types/pa_vrequest.C,
10241: src/types/pa_vrequest.h, src/types/pa_vresponse.C,
10242: src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
10243: src/types/pa_vstateless_class.h,
1.95 moko 10244: src/types/pa_vstateless_object.h, src/types/pa_vvoid.h,
10245: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
10246: src/types/pa_wwrapper.h: + 3.2.0 beta: merged from
10247: dynamic_fields_join
10248:
10249: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
10250: classes/xnode.C, include/pa_hash.h, main/execute.C,
10251: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
10252: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
10253: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
10254: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
10255: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
10256: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
10257: types/pa_vresponse.h, types/pa_vstateless_object.h,
10258: types/pa_vvoid.h, types/pa_vxnode.C, types/pa_vxnode.h,
10259: types/pa_wwrapper.h: ! restored put_element('replace' param), and
10260: restored its checks in vobject.put_element->static fields |
10261: dynamic properties
10262:
10263: 2005-07-27 paf
10264:
10265: * src/types/pa_vclass.C: ! changed to GET_ SET_ prefixes. for there
10266: is some old code containing @set_name $name
10267:
10268: * src/types/pa_vobject.h: . fixed warning
10269:
10270: * configure, configure.in, src/include/pa_version.h,
1.116 moko 10271: src/types/Makefile.am: 3.2.0beta started
1.95 moko 10272:
10273: * src/: classes/xnode.C, include/pa_hash.h,
10274: types/pa_vstateless_class.C: ! new asserts were all false.
10275: regretfully reverted them all to checks
10276:
10277: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
10278: classes/op.C, main/execute.C, types/pa_method.h,
10279: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
10280: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
10281: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
10282: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
10283: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
10284: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
10285: types/pa_vstateless_object.h, types/pa_vvoid.h,
10286: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
10287: joined_dynamic_fields: removed unused param from put_method
10288: (returned to 3 params)
10289:
10290: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vclass.h:
10291: joined_dynamic_fields: dynamic get/set works with overriding
10292: props [alpha2]
10293:
10294: * src/types/pa_vclass.C: joined_dynamic_fields: dynamic get/set
10295: works [alfa]
10296:
10297: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
10298: classes/op.C, include/pa_hash.h, main/execute.C,
10299: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
10300: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
10301: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
10302: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
10303: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
10304: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
10305: types/pa_vresponse.h, types/pa_vstateless_class.C,
10306: types/pa_vstateless_object.h, types/pa_vvoid.h,
10307: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
10308: joined_dynamic_fields: just compiled
10309:
10310: * src/: classes/date.C, classes/file.C, classes/hash.C,
10311: classes/hashfile.C, classes/image.C, classes/table.C,
10312: classes/xdoc.C, classes/xnode.h, main/execute.C,
10313: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
10314: types/pa_vstateless_class.h: joined_dynamic_fields: started
10315:
10316: * src/types/pa_vobject.C: . object setters [only started, does not
10317: work yet]
10318:
10319: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vobject.C: .
10320: object setters [only started, does not work yet]
10321:
10322: 2005-07-26 paf
10323:
10324: * src/: include/pa_request.h, main/execute.C: . properties: set
10325: works [alpha2]. for classes. todo: for objects
10326:
10327: * src/: classes/classes.h, include/pa_hash.h, main/execute.C,
10328: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
10329: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
10330: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
10331: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
10332: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
10333: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
10334: types/pa_vstateless_object.h, types/pa_vvoid.h,
10335: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
10336: properties: set works [alpha1]
10337:
10338: 2005-07-25 paf
10339:
10340: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h,
10341: types/pa_vstateless_class.C, types/pa_vstateless_class.h: .
10342: properties: started, get works [alpha1, other approach]
10343:
10344: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h: .
10345: properties: started, get works [alpha2]
10346:
10347: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
10348: pa_vstateless_class.h: . properties: started, get works [alpha]
10349:
10350: 2005-07-15 paf
10351:
10352: * src/: classes/classes.h, classes/op.C, main/execute.C,
10353: types/pa_junction.h, types/pa_property.h, types/pa_value.h,
10354: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
10355: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
10356: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
10357: types/pa_vimage.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
10358: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
10359: types/pa_vresponse.C, types/pa_vresponse.h,
10360: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
10361: types/pa_vstateless_object.h, types/pa_vvoid.h,
10362: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.h,
10363: types/pa_wwrapper.h, types/types.vcproj: + started property
10364: [getters work but think of changing them too to precaching]
10365:
10366: 2005-07-08 paf
10367:
10368: * src/main/pa_request.C: ! bugfix: $response:body[nonfile] caused
10369: gpf
10370:
10371: 2005-06-28 paf
10372:
10373: * src/: classes/file.C, main/untaint.C: ! string invariant violated
10374: in passing empty strings to file::exec/cgi environment
10375:
10376: 2005-06-06 paf
10377:
10378: * src/classes/: hash.C, string.C, table.C: ! bugfix ^string:sql
10379: ^table:sql ^hash:sql now DO process $.bind option
10380:
10381: 2005-05-24 paf
10382:
10383: * src/classes/file.C: ! bugfix ^file::load[mode;name;$.offset
10384: $.limit] now work again [support was broken in 3.1.4]
10385:
10386: * src/: main/pa_string.C, classes/op.C: . steps toward removing
10387: ALL_INTERIOR_POINTERS
10388:
10389: 2005-05-12 paf
10390:
10391: * configure: 3.1.5beta
10392:
10393: * src/main/pa_common.C: ! bugfix -- recv()==0 is not an error
10394:
10395: * src/main/pa_common.C: ! bugfix ^file::load[mode;name;$.offset
10396: $.limit] now work again [support was broken in 3.1.4]
10397:
10398: * src/lib/gd/gif.C: ! fixed image.fill, not it does not depend on
10399: line-width [was refusing to fill if line-width >1, thanks to
10400: Seras <seras@pinxit.lt> for repro case
10401:
10402: 2005-04-25 paf
10403:
10404: * src/types/pa_vdate.h: ! getenv("TZ")==0? TZ environment restored
10405: correctly
10406:
10407: 2005-04-19 paf
10408:
10409: * src/types/pa_vdate.h: bugfix: initial $date.TZ is 0, that results
10410: in VString violating invariant!!
10411:
10412: * src/types/pa_vdate.h: bugfix: TZ now restored after roll if were
10413: getenv("TZ")==null
10414:
10415: 2005-04-08 paf
10416:
10417: * src/main/pa_charset.C: bugfix: UTF8->one-byte-per-char-encoding
10418: bugfix: when there is no char in charset one byte produces 6
10419: (ÿ <<max). increased buffer size!
10420:
10421: 2005-03-23 paf
10422:
10423: * src/: types/pa_vdate.h, classes/date.C: ! bugfix:
10424: ^date.sql-string now takes TZ into account
10425:
10426: 2005-03-16 paf
10427:
10428: * INSTALL, src/include/pa_stack.h: . compiled on freebsd 5.3 with
10429: gcc 3.4
10430:
10431: * src/types/pa_vhash.C: . warning about eof eol
10432:
10433: 2005-02-17 paf
10434:
10435: * operators.txt, src/classes/op.C: + operator ^sleep(double
10436: seconds)
10437:
10438: 2005-02-02 paf
10439:
10440: * src/classes/xnode.C: beauty: removed needless includes
10441:
10442: 2005-01-31 paf
10443:
10444: * src/types/pa_vmail.C: change: $.partX now always 1... change:
10445: $.partNoNumber now alias to $.part1
10446:
10447: * src/types/pa_vmail.C: change: incoming letter part contains
10448: "content-disposition" header with any value? now considering that
10449: part to be "file#" [for text/plain text/html were $.text#
10450: $.html#]
10451:
10452: * INSTALL: updatet to latest working versions available
10453:
10454: 2005-01-20 paf
10455:
10456: * configure.in, src/include/pa_version.h: version
10457:
10458: 2005-01-19 paf
10459:
1.116 moko 10460: * src/: lib/gd/Makefile.am, lib/ltdl/Makefile.am,
10461: targets/cgi/parser3.C, types/Makefile.am: forgotten makefiles.
10462: couple warnings in parser3.C
1.95 moko 10463:
10464: 2004-12-23 paf
10465:
10466: * src/main/pa_sql_driver_manager.C: sql connect string, rsplit @
10467:
10468: * src/main/pa_exec.C: win32: bugfix: file::cgi/exec now set current
10469: dir to directory of script (when shbang used), not to directory
10470: of its interpreter
10471:
10472: * src/include/pa_version.h: compiled on win32...
10473:
10474: * src/targets/cgi/parser3.C: now, when version (compiled on HOST),
10475: we need more hspace
10476:
10477: * configure, configure.in, src/include/pa_version.h: configured
10478: host to pa_version. will be displayed everywhere
10479:
10480: * src/main/pa_request.C: new: @unhandled_exception can prevent
10481: exception from being logged by setting $exception.handled(1)
10482:
10483: * operators.txt, src/classes/file.C: change:
10484: ^file::sql{query}[[options]] options: $.name[file name]
10485: $.content-type[application/what]
10486:
10487: * src/: include/pa_common.h, main/pa_common.C,
10488: types/pa_vhashfile.C: beauty: hashfile::open now creates dir for
10489: new file
10490:
10491: * src/: classes/table.C, types/pa_vhash.C, types/pa_vhash.h:
10492: bugfix: table->hash now regards _default
10493:
10494: * src/types/pa_vmethod_frame.h: bugfix: when method junction was
10495: created by accessing $name_of_method it acquired bad self=closest
10496: methodframe; instead of proper self (current class)
10497:
10498: * src/types/pa_vhashfile.C: bugfix: reading empty string from
10499: hashfile produced bad cord
10500:
10501: 2004-12-10 paf
10502:
10503: * src/: lib/smtp/comms.C, main/pa_common.C: DONT_LINGER can cause
10504: subsequent failures though defined in .h
10505:
10506: * src/main/pa_common.C: comment on volatile
10507:
10508: * src/: include/pa_config_auto.h.in, main/pa_common.C: http: unix:
10509: alarm function were not used since the beginning due to stupid
10510: error [setsigjmp were not checked in configure.in]
10511:
10512: * src/main/pa_common.C: http: timeout setsockopt [if possible] on
10513: unix too
10514:
10515: * src/main/pa_common.C: http: exception status of send/recv errors
10516: change to most probable http.timeout
10517:
10518: * src/main/pa_common.C: win32: http connection $.timeout option now
10519: works [setsockopt on send/receive]
10520:
10521: 2004-12-08 paf
10522:
10523: * src/: classes/mail.C, types/pa_vmail.C: bugfix: mail body now
10524: cstr-ed knowing mail charset, and untainting uri lang now knows
10525: proper charset
10526:
10527: 2004-11-24 paf
10528:
10529: * src/classes/hash.C: hash: adding/cloning adds/clones _default now
10530:
10531: $hash[ $.a[1] $._default[def] ] #$hash2[^hash::create[$hash]]
10532: $hash2[^hash::create[]] ^hash2.add[$hash] $hash2.shit
10533:
10534: 2004-11-12 paf
10535:
10536: * src/types/pa_vmail.C: bugfix: mail:send[$.date[]] were ignored
10537: [since 3.0.4]
10538:
10539: 2004-11-09 paf
10540:
10541: * src/targets/cgi/parser3.C: debug: PA_DEBUG_CGI_ENTRY_EXIT if on,
10542: writes basics to c:\parser3.log
10543:
10544: 2004-10-21 paf
10545:
10546: * src/classes/xnode.C: bugfix: xnode.getAttribute[NS] now return
10547: tainted strings [were returning clean onces]
10548:
10549: 2004-10-15 paf
10550:
10551: * src/types/pa_vdouble.h: bugfix: ^for[i](1;1.5){} << did two
10552: cycles(i=1; i=2), which was wrong, now does ONE
10553:
10554: 2004-10-12 paf
10555:
10556: * etc/parser3.charsets/windows-1251.cfg: euro promille +/-
10557:
10558: 2004-10-07 paf
10559:
10560: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
10561: main/pa_globals.C: debugger help: PA_RELEASE_ASSERTS enables
10562: release asserts
10563:
10564: * src/: main/pa_string.C, include/pa_string.h: debugger help:
10565: String.dump() to stdout in detailed form [were String.v() in
10566: short form]
10567:
10568: * src/lib/cord/cordbscs.c: debugger help: CORD_dump now dumpts
10569: \t\r\n as @#| and truncates long char sequences less
10570:
10571: 2004-10-06 paf
10572:
10573: * src/: include/pa_socks.h, main/pa_common.C, main/pa_socks.C:
10574: win32 beauty: socket errors properly decoded
10575:
10576: 2004-10-05 paf
10577:
10578: * src/: include/pa_request.h, main/pa_request.C: bugfix:
10579: request::configure_user/admin done always, even if no
10580: file-to-process useful in @unhandled_exception [say, if they
10581: would want to mail by SMTP something]
10582:
10583: * src/main/pa_request.C: bugfix: cookie(and mail:recieved) fills
10584: now performed prior to file loading [and @auto executing] thus
10585: making $cookie:value available in @auto and in
10586: @unhandled_exception when IIS is configured to run interpreter
10587: even if no file exist
10588:
10589: 2004-09-20 paf
10590:
10591: * src/main/pa_globals.C: libxml has bugs: it calls xmlMallocAtomic
10592: somewhere where it should have called xmlMalloc and it calls
10593: xmlFree when it should have not called it. inserted two
10594: workarounds: xmlMallocAtomic implemented as xmlMalloc, and
10595: xmlFree just ignored. put away a testcase, maybe someday libxml
10596: author would fix all that. until that day: we have SLOW garbage
10597: collecting when many xml objects are alive hint: do
10598: ^memory:compact[] before xdoc::create
10599:
10600: 2004-09-17 paf
10601:
10602: * src/classes/file.C: bugfix: file::cgi headers were lost [typo
10603: error from 3.0.8 version]
10604:
10605: 2004-09-14 paf
10606:
10607: * src/types/pa_vhashfile.C: bugfix: hashfile.clear deleted only
10608: part bugfix: hashfile.foreach iterated only part if hashfile were
10609: modified inside
10610:
10611: 2004-09-13 paf
10612:
10613: * src/main/pa_string.C: bugfix: $s[+008] ^eval($s) now parsed OK
10614: [were as octal]
10615:
10616: * src/types/pa_vhashfile.C: beauty: not reproduced
10617: $hashfile.key[$novalue] bug [reported by motorin], inserted
10618: safety-check
10619:
10620: * src/types/pa_vhashfile.C: change: empty keys now error in parser
10621: [not something obscure from sdbm lib]
10622:
10623: * src/types/pa_vhashfile.C: bugfix: error numbers now from errno.h
10624: = strerror now returnes something and we can properly report that
10625: to client
10626:
10627: * src/lib/sdbm/sdbm_private.h: change: limit on length(key+value)
10628: now 8008 bytes, were 1008. perl sdbm compatibility now ruined
10629:
10630: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
10631: [tainted as-is] this helps //[space][newline] to remain as-is and
10632: not be unnecessary optimized away [ruining javascript]
10633:
10634: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
10635: [tainted as-is]
10636:
10637: * src/classes/mail.C: bugfix: typo error
10638:
10639: 2004-09-09 paf
10640:
10641: * src/main/pa_common.C: bugfix: loads headers with both \r\n and \n
10642: separators bugfix: loads header with endings \r\n\r\n and \n\n
10643: (bloody yandex.server)
10644:
10645: 2004-09-06 paf
10646:
10647: * src/main/pa_charset.C: bugfix: two-bytes invalid chars in
10648: TranscodeFromUTF8 considered valid. only >2bytes-long now %HH
10649: encoded
10650:
10651: 2004-09-01 paf
10652:
10653: * src/types/pa_vmail.C: change: multipart/mixed changed to
10654: multipart/related outlook express have no problems showing
10655: unrelated attachments. todo: someday figure out a way of
10656: multipart/mixed multipart/related text/html
10657: image/xxx application/octet-stream << true attachments
10658:
10659: * src/types/pa_vmail.C: new:
10660: ^mail:send[$.file[$.content-disposition can be overriden new:
10661: empty mail header fields removed from letter
10662:
10663: * src/: classes/mail.C, include/pa_config_fixed.h,
10664: types/pa_value.C, types/pa_value.h, types/pa_vmail.C: new:
10665: ^mail:send[ $.file[ $.any[header]
10666:
10667: 2004-08-30 paf
10668:
10669: * src/: include/pa_config_fixed.h, main/pa_common.C: beauty: less
10670: warnings
10671:
10672: * src/main/pa_common.C: beauty: do not bother with charset
10673: detection when ^file::load[binary
10674:
10675: 2004-08-27 paf
10676:
10677: * src/main/pa_common.C: hack: for yandex.server http server
10678:
10679: 2004-08-18 paf
10680:
10681: * src/main/pa_request.C: bugfix: Accept-Ranges: bytes when sending
10682: possibly-chunked response
10683:
10684: 2004-08-17 paf
10685:
10686: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
10687: $f.content-type now = that of http response
10688:
10689: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
10690: $f.content-type now = that of http response
10691:
10692: 2004-07-30 paf
10693:
10694: * src/: include/pa_request.h, main/pa_request.C,
10695: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: bugfix:
10696: win32: system&parser exceptions in release mode reported properly
10697: parser exception in exception handler WERE mistakenly reported as
10698: system exception, without details [in apache & isapi] +some
10699: beauty in exception text
10700:
10701: * src/: include/pa_exception.h, main/pa_request.C,
10702: targets/cgi/parser3.C: bugfix: win32: system&parser exceptions in
10703: release mode reported properly parser exception in exception
10704: handler WERE mistakenly reported as system exception, without
10705: details
10706:
10707: * src/main/execute.C: beauty: simplified system exception handling
10708:
10709: 2004-07-29 paf
10710:
10711: * src/classes/table.C: bugfix:
10712: ^table.save[export.csv;$.separator[^;]] now works fine [separator
10713: were ignored, and \t used unconditionally]
10714:
10715: * src/types/Makefile.am: added vhash.c
10716:
10717: 2004-07-28 paf
10718:
10719: * src/: classes/date.C, classes/image.C, classes/math.C,
10720: lib/ltdl/ltdl.c, lib/pcre/pcre_parser_ctype.c, lib/smtp/comms.C,
10721: main/pa_common.C, targets/cgi/parser3.C, types/pa_vform.C,
10722: types/pa_vmail.C: bugfix: isspace((unsigned char)c) everywhere.
10723: failed on russian letters
10724:
10725: * src/: main/pa_string.C, types/pa_vmail.C, main/pa_common.C:
10726: bugfix: isspace((unsigned char)c) everywhere. failed on russian
10727: letters
10728:
10729: * src/main/pa_exec.C: bugfix: win32: chdir not needed, dir passwed
10730: as 'currentDirectory' parameter to CreateProcess
10731:
10732: 2004-07-27 paf
10733:
10734: * src/targets/cgi/parser3.vcproj: beauty: win32:
10735: globaloptimizations ON, release:mapfile ON todo: copy .mapfile
10736: from release somewhere [to help searching for unhandled system
10737: exceptions]
10738:
10739: * src/types/pa_vdate.h: check: for invalid datetime after temporary
10740: TZ shift
10741:
10742: * src/types/pa_vdate.h: bugfix: time checked not only at set_time
10743: but also in ctor
10744:
10745: 2004-07-26 paf
10746:
10747: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
10748: src/main/pa_request.C, src/types/pa_vfile.h,
10749: src/types/pa_vhash.C, src/types/pa_vhash.h,
10750: src/types/types.vcproj: new: $response:body/download[
10751: $.file[name on disk] $.name[of file for user]
10752: $.mdate[date of last-modified. default from directory] ]
10753:
10754: * src/classes/file.C: moving file:send somewhere else..
10755:
10756: * src/: classes/file.C, include/pa_sapi.h, main/pa_common.C,
10757: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: patched:
10758: ^file:send by Victor Fedoseev <vvf_ru@mail.ru> todo: turn it to
10759: $response:download[ $.filename[filename] $.option[] ,, ]
10760:
10761: * src/classes/file.C: beauty: invalid mode thoroughly reported
10762:
10763: 2004-07-21 paf
10764:
10765: * src/types/pa_vmail.C: bugfix: too long header values now splitted
10766: to several lines
10767:
10768: were: header: vaaaaaaaaaaaalue now: header: vaaaaaa aaalue
10769:
10770: note: ms outlook[!express] shows only first 255 characters of
10771: subject
10772:
10773: 2004-07-15 paf
10774:
10775: * src/main/pa_os.C: bugfix: locks now compiled in [were mistakenly
10776: off]
10777:
10778: 2004-07-14 paf
10779:
10780: * src/classes/table.C: bugfix: $.bind values now got untainted
10781: according to lang [were: as-is]
10782:
10783: 2004-07-07 paf
10784:
10785: * src/classes/op.C: bugfix: cache with 2 params caused assertion,
10786: checked that
10787:
10788: * src/main/pa_exec.C: bufix: on unix AND win32 environment string
10789: now untainted according to their languages. were: as-is.
10790: EVERYWHERE
10791:
10792: * src/: classes/file.C, main/pa_exec.C: bufix: on unix AND win32
10793: environment string now untainted according to their languages.
10794: were: as-is. EVERYWHERE
10795:
10796: * src/main/pa_exec.C: bufix: on unix environment string now
10797: untainted according to their languages. were: as-is. on win32:
10798: ok
10799:
10800: * parser3.vssscc: ...would not go unnoticed
10801:
10802: * src/main/pa_charset.C: convinience: transcodeFromUTF8 now never
10803: fails. in case on input appears nonutf, those bytes will be
10804: printed in %HH form. that can be easily decoded/recovered.
10805:
10806: this form is quite noticable, and hopefully would not go noticed
10807:
10808: 2004-07-06 paf
10809:
10810: * src/main/pa_exec.C: bufix: on unix environment string now
10811: untainted according to their languages. were: as-is. on win32:
10812: ok
10813:
10814: 2004-07-01 paf
10815:
10816: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
10817: lib/gd/gd.vcproj, lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
10818: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
10819: lib/pcre/pcre_parser_ctype.vcproj, lib/smtp/smtp.vcproj,
10820: main/main.vcproj, targets/cgi/parser3.vcproj,
10821: targets/isapi/parser3isapi.vcproj, types/types.vcproj: win32:
10822: option: global optimization ON
10823:
10824: * src/main/untaint.C: workaround kinda bug in libxml: life requires
10825: to do xdoc::create{invalid chars} standard disables chars less
10826: then \x20, except tab, cr, lf.
10827:
10828: changed tainting so that those become '!'
10829:
10830: 2004-06-25 paf
10831:
10832: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
10833: int on odd address [prev bugfix failed due to superwize
10834: optimizer, which turned memcpy into same 'ld' asm command]
10835:
10836: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
10837: int on odd address
10838:
10839: 2004-06-22 paf
10840:
10841: * src/sql/pa_sql_driver.h: note: about possible optimization
10842:
10843: * operators.txt, src/classes/hash.C, src/classes/memory.C,
10844: src/classes/string.C, src/classes/table.C, src/classes/void.C,
10845: src/include/pa_config_includes.h: new: ^void:sql{call
10846: paf(:a)}[ $.bind[ $.a[2]
10847: ] ] output variables work. todo: check in out
10848: variables
10849:
10850: 2004-06-18 paf
10851:
10852: * src/: classes/file.C, classes/hash.C, classes/string.C,
10853: classes/table.C, classes/void.C, include/pa_globals.h,
10854: include/pa_sql_connection.h, main/compile.tab.C,
10855: sql/pa_sql_driver.h: started: ^void:sql{call paf(:a)}[
10856: $.bind[ $.a[2] ]
10857: ] input variables work. todo:output
10858:
10859: * src/targets/cgi/parser3.C: bugfix: iis specific
10860: http://parser3/_bug.html?404;http://hpsv/test/ now $request:uri
10861: /_bug.html?404;http://hpsv/test/
10862: --------------------------------------------------------------------------------
10863: $request:query IIS-STATUS=404&IIS-DOCUMENT=http://hpsv/test/
10864: --------------------------------------------------------------------------------
10865: IIS-STATUS="404" IIS-DOCUMENT="http://hpsv/test/"
10866:
10867: 2004-06-16 paf
10868:
10869: * src/targets/cgi/parser3.C: new: iis specific
10870: http://parser3/_bug.html?404;http://server/_bug.html?f=v now
10871: $request:query
10872: IIS-STATUS=404&IIS-DOCUMENT=http://server/_bug.html&f=v
10873: $form:fields IIS-STATUS="404"
10874: IIS-DOCUMENT="http://server/_bug.html" f="v"
10875:
10876: todo: isapi too
10877:
10878: 2004-05-26 paf
10879:
10880: * src/include/pa_version.h: 3.1.3
10881:
10882: * operators.txt: beauty: removed outdated level 'table'
10883:
10884: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: thanks to konst
10885:
10886: * src/main/pa_string.C: beauty: removed 3 warnings
10887:
10888: * src/: include/pa_string.h, classes/table.C, main/untaint.C,
10889: classes/op.C: beauty: removed outdated level 'table'
10890:
10891: 2004-05-25 paf
10892:
10893: * src/lib/sdbm/apr_file_io.C: bugfix: bad seek wrapper
10894: implementation. mistery: how anything worked
10895:
10896: * src/sql/pa_sql_driver.h: beauty: param renamed and comment
10897: changed, it is now safe to use url if pointers to it are stored
10898: to gc mem
10899:
10900: * src/: main/pa_exec.C, types/pa_vhashfile.C: bugfix: hashfile
10901: unknown errors reported and not cause SIGSEGV now
10902:
10903: 2004-05-24 paf
10904:
10905: * src/: include/pa_string.h, lib/cord/cordbscs.c,
10906: lib/cord/include/cord.h, lib/cord/cordxtra.c: cancel: more speed,
10907: less memory: CORD_chars_block originally intended to ... it was
10908: good that CORD_chars_block were not used: it consumes more memory
10909: [and, might be slow too] undoing that. [and removed that func so
10910: that it would not confuse parser developer in future]
10911:
10912: * src/: include/pa_string.h, lib/cord/include/cord.h: more speed,
10913: less memory: CORD_chars_block originally intended to
10914: speedup/reduce mem usage were forgotten, and were used stupid
10915: CORD_chars
10916:
10917: * src/include/pa_config_auto.h.in: bugfix: bigendian check added
10918:
10919: * src/include/: pa_config_fixed.h, pa_string.h: bugfix: on
10920: BIGENDIAN processors space-conserving mech failed, causing
10921: SIGSEGV/SIGBUS and SAPI::abort("unknown untaint lang#%d",
10922: (1|2|3));
10923:
10924: 2004-05-14 paf
10925:
10926: * src/types/: Makefile.am, pa_vvoid.C, pa_vvoid.h, types.vcproj:
10927: bugfix: void now has vfile value, and $response:body[] works OK
10928:
10929: 2004-05-12 paf
10930:
10931: * src/types/: pa_vbool.h, pa_vhash.h, pa_vhashfile.h, pa_vtable.h:
10932: beauty: ^if(def $bool) now equals ^if($bool) and shaped up other
10933: sources to use is_defined() {return as_bool();} along VBool
10934:
10935: 2004-05-11 paf
10936:
10937: * src/include/pa_exec.h: bugfix: gpf on file::exec/cgi because of
10938: referencing to local objects
10939:
10940: * src/: classes/mail.C, include/pa_exec.h, main/compile.tab.C,
10941: types/pa_vmail.C, types/pa_vmail.h: bugfix: bcc with sendmail now
10942: left intact
10943:
10944: 2004-04-15 paf
10945:
10946: * src/classes/date.C: merged: beauty: unused var removed
10947:
10948: * src/classes/date.C: beauty: unused var removed
10949:
10950: * src/include/: pa_exec.h: bugfix: interface without pointer
10951: provoked bug
10952:
10953: 2004-04-09 paf
10954:
10955: * src/types/pa_vform.C: merge: bugfix: form:imap were incorrect
10956:
10957: * src/types/pa_vform.C: bugfix: form:imap were incorrect
10958:
10959: 2004-04-08 paf
10960:
10961: * src/classes/date.C: new: ^date::create[y-m-d
10962: h-M-s>>.milliseconds<<] now allowed, ignored so far
10963:
10964: * src/main/pa_xml_io.C: merged: bugfix /etc/xml/catalog
10965:
10966: * src/main/pa_xml_io.C: bugfix: in safe mode -- disabled attempts
10967: to consult default catalog [usually, that file belongs to other
10968: user/group]
10969:
10970: 2004-04-06 paf
10971:
10972: * src/main/pa_common.C: beauty: gcc warning removed
10973:
10974: * src/main/: compile.tab.C, compile.y: bugfix: gcc refused to
10975: accept that trick, trying other
10976:
10977: * src/main/: compile.tab.C, compile.y: bugfix: step3 to fix
10978: explicit result problem
10979:
10980: * src/main/: compile.tab.C, compile.y: bugfix: step2 to fix
10981: explicit result problem
10982:
10983: * src/main/: compile.tab.C, compile.y: bugfix: step1 to fix
10984: explicit result problem
10985:
10986: * operators.txt, src/classes/string.C: new: ^string.append[string]
10987:
10988: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
10989: main/execute.C: attempt_check_call_in_explicit_result_mode:
10990: failed
10991:
10992: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
10993: http://i.p.a.ddress gethostbyaddr added [on some platforms
10994: gethostbyname failed with such 'domains'] now checked properly,
10995: were: needless reverse/forward dns lookup
10996:
10997: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
10998: http://i.p.a.ddress gethostbyaddr added [on some platforms
10999: gethostbyname failed with such 'domains'] now checked properly,
11000: were: needless reverse/forward dns lookup
11001:
11002: * src/main/: compile.C, compile.tab.C, compile.y: reimplemented:
11003: @method[][result] means "no string output here" moved to lexical
11004: level [on grammar level it were too difficult]
11005:
11006: * operators.txt, src/include/pa_string.h, src/main/compile.tab.C,
11007: src/main/compile.y, src/main/compile_tools.h,
11008: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h: new:
11009: @method[][result] means "no string output here", implemented part
11010: of that idea: compiler throws away string literal generation
11011: code. and barks nonwhitespace chars
11012:
11013: * operators.txt: truth: removed comment about $ORIGIN
11014:
11015: 2004-04-05 paf
11016:
11017: * configure.in, src/doc/html2chm.cmd, src/doc/sources2html.cmd,
11018: src/include/pa_version.h, src/main/pa_common.C,
11019: src/targets/isapi/parser3isapi.C: merged with 3.1.3
11020:
11021: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: donated by
11022: Konstantin Tomashevitch [mailto:konst@design.ru]
11023:
11024: * src/doc/html2chm.cmd: beauty: no need in bg here
11025:
11026: * src/doc/sources2html.cmd: beauty: same window, in bg it
11027: interfered with FAR console
11028:
11029: * configure, configure.in: 3.1.3
11030:
11031: * src/targets/isapi/parser3isapi.C: beauty: removed some warnings
11032:
11033: * src/main/pa_common.C: removed warning
11034:
11035: * src/include/pa_version.h: 3.1.3
11036:
11037: 2004-04-02 paf
11038:
11039: * src/main/pa_string.C: bugfix: $s[009] ^s.int[] now 9, were error
11040:
11041: * src/targets/cgi/parser3.C: new: CGI_PARSER_LOG env variable
11042: allows to specify where to put parser log file
11043:
11044: 2004-04-01 paf
11045:
11046: * src/classes/table.C: bugfix: bugfix: table::load last line
11047: without tab and enter were ignored
11048:
11049: * src/: include/pa_cache_managers.h, include/pa_globals.h,
11050: include/pa_socks.h, main/pa_cache_managers.C, main/pa_globals.C,
11051: main/pa_socks.C, targets/cgi/parser3.C,
11052: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.def:
11053: bugfix: sql connections now are disconnected
11054:
11055: 2004-03-30 paf
11056:
11057: * src/classes/table.C: bugfix: table::load last line without tab
11058: and enter were ignored
11059:
11060: * src/classes/table.C: bufix: if last table lines were commented,
11061: gpfed
11062:
11063: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
11064: doc/ClassExample3.dox, doc/chmhelper.pl, doc/class.dox,
11065: doc/compiler.dox, doc/doxygen.cfg, doc/exception.dox,
11066: doc/executor.dox, doc/footer.htm, doc/index.dox, doc/memory.dox,
11067: doc/methoded.dox, doc/object.dox, doc/string.dox,
11068: doc/targets.dox, doc/value.dox, include/pa_version.h,
11069: main/pa_cache_managers.C, main/pa_stylesheet_connection.C,
11070: targets/isapi/parser3isapi.vcproj, types/pa_vform.C: merged
11071: bugfixes from 3.1.2, changed version to 3.1.3beta
11072:
11073: 2004-03-29 paf
11074:
11075: * src/types/pa_vhashfile.C: bugfix: empty key on hashfile.get
11076: causes gpf
11077:
11078: * src/doc/: ClassExample1.dox, ClassExample2.dox,
11079: ClassExample3.dox, chmhelper.pl, class.dox, compiler.dox,
11080: doxygen.cfg, exception.dox, executor.dox, footer.htm, index.dox,
11081: memory.dox, methoded.dox, object.dox, string.dox, targets.dox,
11082: value.dox: translated to english
11083:
11084: 2004-03-25 paf
11085:
11086: * src/targets/isapi/parser3isapi.vcproj: beauty: one more
11087: parser3project dependency removed
11088:
11089: * src/main/: pa_cache_managers.C, pa_stylesheet_connection.C:
11090: bugfix: refused to compile without xml
11091:
11092: * src/types/pa_vform.C: beauty: removed warning
11093:
11094: * src/classes/classes.vcproj: merged bugfix: now all compiles in
11095: any folder [removed last ;) folder dependency]
11096:
11097: * src/classes/classes.vcproj: bugfix: now all compiles in any
11098: folder [removed last ;) folder dependency]
11099:
11100: * src/include/pa_version.h: release
11101:
11102: * src/lib/gd/gif.C: new: ^image.pixel(outof;bounds) now returns -1
11103:
11104: * src/classes/table.C: beauty: comment& more meaningful error
11105: message
11106:
11107: * src/classes/hash.C: bugfix: ^hash::sql{one column} now produces
11108: $.hash[$.column_value1(true) ... ] [were producing some strang
11109: thing]
11110:
11111: 2004-03-23 paf
11112:
11113: * src/: classes/image.C, main/pa_common.C: bugfix: ^image.polyline
11114: and http status line parsing checked number of columns in table
11115: [user reported an assert]
11116:
11117: * operators.txt: example: on hashfile
11118:
11119: * src/: classes/op.C, types/pa_value.C, types/pa_wcontext.C:
11120: bugfix: junction reattach now actually reattaches a junction to
11121: new wcontext [were only assigning it to junction, which caused
11122: junction tracking to loose junction, and it's context were not
11123: killed, and it tried to process in invalid context, gpf]
11124:
11125: * src/targets/cgi/parser3.C: debug helper added
11126:
11127: 2004-03-19 paf
11128:
11129: * src/types/pa_wcontext.C: beauty: error messages removed duplicate
11130: "type(type)" in braces
11131:
11132: 2004-03-10 paf
11133:
11134: * operators.txt, src/classes/xdoc.C, src/classes/xnode.C,
11135: src/classes/xnode.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
11136: src/types/pa_vxnode.C, src/types/pa_vxnode.h: new: refined
11137: solution to search-in-namespaces problem:
11138: $xdoc.search-namespaces.x[http://pif.design.ru/]
11139: $nodes[^xdoc.select[//x:second]]
11140:
11141: * operators.txt, src/classes/xnode.C: new: xnode.select*[xpath
11142: expression][[NAMESPACES HASH]] allows to search for info in
11143: namespaces
11144:
11145: $nodes[^xdoc.select[//x:second][
11146: $.x[http://pif.design.ru/] ]]
11147:
11148: 2004-03-09 paf
11149:
11150: * operators.txt, src/main/pa_common.C: new:
11151: ^file::load[...][options] $.form[
11152: !$.field1[string]
11153: !$.field2[^table::create{one_column_only^#0Avalue1^#0Avalue2}]
11154: ] !$.body[string]
11155:
11156: GET ?here notGET(POST, HEAD, others) in content-type:
11157: application/x-www-form-urlencoded
11158:
11159: todo: upload files ability
11160:
11161: * src/lib/cord/cordxtra.c: bugfix: CORD_pos were not fixed
11162: properly, done
11163:
11164: 2004-03-05 paf
11165:
11166: * operators.txt, src/main/pa_common.C: new: file::load[;http://
11167: GET/POST $.form[$.fields started, not tested yet
11168: todo:$.field[table] for multiple values
11169:
11170: * operators.txt: new: http:// options $.user $.password basic
11171: authorization
11172:
11173: * src/main/pa_common.C: beauty: link to rtf added
11174:
11175: * operators.txt, src/include/pa_common.h, src/main/pa_common.C:
11176: new: http:// options $.user $.password basic authorization
11177:
11178: * src/main/pa_common.C: beauty: removed needless vars
11179:
11180: * operators.txt: new: pgsql option [like that recently added to
11181: oracle driver] ClientCharset=parser-charset <<
11182: charset in which parser thinks client works
11183:
11184: * operators.txt: new: odbc option [like that recently added to
11185: oracle driver] ClientCharset=parser-charset <<
11186: charset in which parser thinks client works
11187:
11188: * src/sql/pa_sql_driver.h: beauty: important warning added
11189:
11190: * etc/parser3.charsets/koi8-r.cfg: there's special code for grad
11191: char!
11192:
11193: * etc/parser3.charsets/windows-1251.cfg: typo
11194:
11195: 2004-03-04 paf
11196:
11197: * src/main/pa_sql_driver_manager.C: speedup: charset lookups
11198: cached, sql transcoding now goes faster
11199:
11200: * operators.txt: new: mysql option [like that recently added to
11201: oracle driver] ClientCharset=parser-charset <<
11202: charset in which parser thinks client works
11203:
11204: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: keyboard
11205: typo error
11206:
11207: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: typograph
11208: chars commented
11209:
11210: 2004-03-03 paf
11211:
11212: * INSTALL: note: added on libgc on FreeBSD, thanks to Andrey N.
11213: Pazychev <135@ugtel.ru> and Goor <goor@hotbox.ru>
11214:
11215: 2004-03-02 paf
11216:
11217: * operators.txt: new[update typo]: !^void.left(n)
11218: nothing !^void.right(n) nothing !^void.mid(p[;n])
11219: nothing
11220:
11221: * operators.txt, src/classes/void.C: new: !^void.left(n)
11222: nothing !^void.right(n) nothing !^void.pos(p[;n])
11223: nothing
11224:
11225: * operators.txt, src/classes/file.C, src/include/pa_string.h: new:
11226: ^file::sql[[name_to_become_$.name]]{} query result must be one
11227: row with columns: first: data second: file name third:
11228: content-type
11229:
11230: * operators.txt, src/classes/file.C: ^file.sql-string[] inside
11231: ^connect gets properly escaped string, which can be passed to
11232: request now this for mysql only. it's up to parser sql driver to
11233: fix zeros properly
11234:
11235: * INSTALL: note: added on building apache with this option:
11236: --enable-shared=max thanks to Victor Fedoseev <vvf_ru@mail.ru>
11237:
11238: 2004-03-01 paf
11239:
11240: * src/targets/isapi/parser3isapi.C: new: apache module & isapi
11241: extension memory:compact befor processingrequest
11242:
11243: * operators.txt, src/classes/hash.C: new: ^hash._keys[>>name<<] to
11244: call sole column of result
11245:
11246: * operators.txt, src/classes/image.C, src/lib/gd/gif.C,
11247: src/lib/gd/gif.h: new: ^image.pixel(x;y)[(color)] get/set
11248: pixel color
11249:
11250: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
11251: beauty: image -- less checks [were ugly impl]
11252:
11253: * src/classes/string.C: bugfix: ^string.left/right/mid with
11254: negative values now considered bad
11255:
11256: * src/main/pa_common.C: bugfix: INADDR_NONE not everywhere defined
11257:
11258: * src/: classes/xdoc.C, types/pa_vxdoc.h: bugfix: boolean output
11259: options now have unified defaults [after transform
11260: indent/omit-xml-declaration/standalone 'default' erroreously
11261: meant 'true']
11262:
11263: * src/main/pa_common.C: bugfix: http://i.p.a.ddress gethostbyaddr
11264: added [on some platforms gethostbyname failed with such
11265: 'domains']
11266:
11267: * src/include/pa_config_auto.h.in: no select check, no define
11268:
11269: * src/classes/string.C: feature: ^string.trim both parameters may
11270: be empty-strings, meaning kind=both chars=whitespaces
11271:
11272: * src/lib/smtp/comms.C: bugfix: use SO_LINGER if no SO_DONTLINGER
11273: exist
11274:
11275: * src/classes/string.C: check: trim 'chars' must not be empty,
11276: exception if it is
11277:
11278: * src/classes/string.C: changed: ^string.trim [] << both,
11279: whitespaces [start|both|end] << kind, whitespaces
11280: [start|both|end;chars] full
11281:
11282: 2004-02-27 paf
11283:
11284: * operators.txt, src/classes/string.C, src/main/pa_string.C: new
11285: method: ^string.trim[start|both|end[;chars]] default
11286: 'chars' -- whitespace chars finished
11287:
11288: * operators.txt, src/classes/string.C, src/include/pa_string.h,
11289: src/main/pa_string.C: new method:
11290: ^string.trim[start|both|end[;chars]] default 'chars' --
11291: whitespace chars started, only start works
11292:
11293: * src/main/compile.C: bugfix: line numbers after
11294: ^process{}[$.line(-10]] can be negative, allowed to print they as
11295: signed
11296:
11297: * src/main/untaint.C: speed: there's no \n chars in output
11298: [normally], so no need to optimize them they could be retrived
11299: from databases, though. but 1. should be replaced 2. if not
11300: optimized, no harm done
11301:
11302: * src/main/pa_exec.C: bugfix: waitpid could be interrupted --
11303: ^file::exec/cgi could return invalid status & zombie child can
11304: remain for short period until process exists [very bad in
11305: mod_parser3] http://i2/tasks/edit/?id=4629451867179521923
11306:
11307: * src/lib/smtp/smtp.h: bugfix: SMTP buffer overflow could allow
11308: malicious SMTP server to attack as by returning too long status
11309: responses http://i2/tasks/edit/?id=4629448401140924947
11310:
11311: 2004-02-26 paf
11312:
11313: * operators.txt: feature: ^process...{CODE}[now has options] which
11314: are $.main[to what to rename @main] $.file[file,
11315: from which (user says) goes that CODE] $.lineno(line
11316: number in that file, where CODE starts. may be negative)
11317:
11318: * operators.txt, src/classes/op.C, src/include/pa_request.h,
11319: src/main/compile.C, src/main/compile_tools.h,
11320: src/main/pa_request.C: feature: ^process...{CODE}[now has
11321: options] which are $.main[to what to rename @main]
11322: $.file[file, from which (user says) goes that CODE]
11323: $.lineno(line number in that file, where CODE starts. may be
11324: negative)
11325:
11326: 2004-02-25 paf
11327:
1.116 moko 11328: * etc/parser3.charsets/Makefile.am: bugfix: @sysconfdir@ used [were
11329: old @charsetsdir@ recently erased from configure.in]
1.95 moko 11330:
11331: * src/classes/hash.C: feature: ^hash::sql{one colum result} now
11332: produces hash of column=>1
11333:
11334: * src/lib/smtp/smtp.h: beauty: couple of #ifdef-s to compile even
11335: with incomplete errno constants set
11336:
11337: 2004-02-24 paf
11338:
11339: * src/lib/smtp/smtp.C: smtp on unix: authors of lib/smtp never read
11340: "man select"
11341:
11342: * src/main/pa_os.C: beauty: <0 better then ==-1
11343:
11344: * src/lib/smtp/comms.C: smtp on unix: steps to work on unix
11345:
11346: * src/lib/smtp/: smtp.C: smtp on unix: steps to work on unix
11347:
1.116 moko 11348: * src/classes/Makefile.am: smtp on unix: steps to work on unix
1.95 moko 11349:
11350: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp on
11351: unix: steps to work on unix [extracted 'to']
11352:
11353: * src/classes/mail.C: smtp on unix: steps to work on unix
11354:
11355: * src/lib/smtp/smtp.C: smtp on unix: compiled on win32
11356:
1.116 moko 11357: * src/: lib/smtp/Makefile.am, lib/smtp/comms.C, lib/smtp/smtp.C,
11358: lib/smtp/smtp.h, targets/cgi/Makefile.am: started porting smtp to
11359: unix [testing on solaris]
1.95 moko 11360:
11361: 2004-02-20 paf
11362:
11363: * src/classes/xdoc.C: beauty: ugly code removed, thanks to egr for
11364: pointing that out
11365:
11366: * src/classes/xdoc.C: bugfix: <tag attr="&#digital_entity;" bug
11367: fixed again [same solution, mistanenly removed one line]
11368:
11369: 2004-02-19 paf
11370:
11371: * src/: classes/date.C, classes/image.C, types/pa_vdate.h: feature:
11372: date::create from bad datetime in spring daylightsaving hole now
11373: OK for all platforms [on some platforms it failed]
11374:
11375: * src/classes/: date.C, image.C: beauty: date::create[bad date time
11376: in daylightsaving hole] now throws error
11377:
11378: * src/classes/date.C: comment: mistake fixed
11379:
11380: 2004-02-18 paf
11381:
11382: * src/: classes/xdoc.C, include/pa_charset.h: beauty: xdoc.string
11383: now renderes in $request:charset, but in header puts
11384: $response:charset todo: make that default only so that coder
11385: could override that
11386:
11387: * src/classes/xdoc.C: beauty: xhtml doctype-public/system forcly
11388: turns off omit-xml-declaration
11389:
11390: * src/classes/xdoc.C: feature: reimplemented xhtml output, see
11391: /.xsl for sample
11392:
11393: 2004-02-17 paf
11394:
11395: * src/classes/xdoc.C: beauty: needless helper class removed
11396:
11397: * src/classes/xdoc.C: beauty: method=html outputxmlbuffer not
11398: copied extra time
11399:
11400: * src/classes/xdoc.C: bugfound: meta again, now somewhere in xhtml
11401: part of libxml
11402:
11403: * src/classes/xdoc.C: new: xhtml now works [libxslt prevented
11404: libxml to do the work] <xsl:output method="html"
11405: doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
11406: doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
11407: />
11408:
11409: * src/classes/xdoc.C: beauty: no <meta ... charset generated
11410:
11411: * src/types/pa_vxdoc.h: bugfix: ^xdoc::transform [note double :]
11412: caused assertion
11413:
11414: * src/classes/hash.C: bugfix: ^hash.add[$hash] ^hash.sub[$hash]
11415: could hang. now such add does nothing, sub clears $hash
11416:
11417: * src/main/untaint.C: bugfix: one last char prior to "spaces<" were
11418: not made quoted-printable
11419:
11420: * src/main/pa_uue.C: bugfix: uuencoded finish char adding violated
11421: string invariant
11422:
11423: 2004-02-16 paf
11424:
11425: * src/main/pa_globals.C: bugfix: xml errors copy from library now
11426: cleared [were not cleared properly]
11427:
11428: 2004-02-13 paf
11429:
1.116 moko 11430: * src/include/pa_version.h: prerelease
1.95 moko 11431:
11432: * src/main/pa_stylesheet_connection.C: change: .xsl.stamp now not
11433: used, introducing dependencies timestamp check
11434:
11435: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
11436: include/pa_xml_io.h, main/Makefile.am, main/compile.tab.C,
11437: main/main.vcproj, main/pa_globals.C, main/pa_xml_io.C: change:
11438: .xsl.stamp now not used, introducing dependencies timestamp check
11439:
11440: * configure.in, bin/auto.p.dist.in: auto.p: @conf made relative
11441:
11442: 2004-02-12 paf
11443:
11444: * src/types/pa_vform.C: bugfix: empty values[recently allowed]
11445: ruined empty <input type=file> submits. parser thought there were
11446: nameless empty file and $form:field got value of type 'file'
11447:
11448: * INSTALL: --without-threads
11449:
11450: * src/include/pa_sapi.h: 2004
11451:
11452: 2004-02-11 paf
11453:
11454: * src/: classes/classes.C, classes/classes.h, classes/date.C,
11455: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
11456: classes/hashfile.C, classes/image.C, classes/int.C,
11457: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
11458: classes/response.C, classes/string.C, classes/table.C,
11459: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11460: include/pa_array.h, include/pa_cache_managers.h,
11461: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
11462: include/pa_config_fixed.h, include/pa_config_includes.h,
11463: include/pa_dictionary.h, include/pa_dir.h,
11464: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
11465: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
11466: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
11467: include/pa_request_charsets.h, include/pa_request_info.h,
11468: include/pa_socks.h, include/pa_sql_connection.h,
11469: include/pa_sql_driver_manager.h, include/pa_stack.h,
11470: include/pa_string.h, include/pa_stylesheet_connection.h,
11471: include/pa_stylesheet_manager.h, include/pa_table.h,
11472: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
11473: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
11474: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
11475: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
11476: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
11477: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
11478: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
11479: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
11480: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
11481: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
11482: main/pa_sql_driver_manager.C, main/pa_string.C,
11483: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
11484: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
11485: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
11486: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
11487: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
11488: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
11489: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
11490: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
11491: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
11492: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
11493: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
11494: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
11495: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
11496: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
11497: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11498: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
11499: types/pa_vresponse.h, types/pa_vstateless_class.C,
11500: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
11501: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
11502: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
11503: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
11504: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
11505: types/pa_wcontext.h, types/pa_wwrapper.h: 2004
11506:
11507: * src/main/pa_globals.C: beauty: typo caused gc.log warnings with
11508: debug version of gc.dll
11509:
11510: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
11511: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
11512: lib/pcre/pcre_parser_ctype.vcproj, lib/sdbm/sdbm.vcproj,
11513: lib/smtp/smtp.vcproj, main/main.vcproj, main/pa_globals.C,
11514: targets/cgi/parser3.C, targets/cgi/parser3.vcproj,
11515: targets/isapi/parser3isapi.vcproj, types/types.vcproj: migrated
11516: to latest libxml[2.6.5] and libgdome[1.1.2] simplified lib build
11517: processes
11518:
11519: * src/: classes/classes.vcproj, lib/gd/gd.vcproj, main/main.vcproj,
11520: main/pa_globals.C, targets/cgi/parser3.vcproj,
11521: targets/isapi/parser3isapi.vcproj, types/types.vcproj: continued
11522: changes to reflect libxml xsl new folders
11523:
11524: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
11525: lib/smtp/smtp.vcproj, main/main.vcproj,
11526: targets/cgi/parser3.vcproj, types/types.vcproj: continued changes
11527: to reflect libxml xsl new folders
11528:
11529: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
11530: lib/smtp/smtp.vcproj, main/main.vcproj,
11531: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
11532: types/types.vcproj: started changes to reflect libxml xsl new
11533: folders
11534:
11535: * ChangeLog, parser3.sln, src/classes/classes.vcproj,
11536: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
11537: src/main/compile.tab.C, src/main/main.vcproj,
11538: src/main/pa_globals.C, src/targets/cgi/parser3.vcproj,
11539: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
11540: started changes to reflect libxml xsl new folders
11541:
11542: 2004-02-10 paf
11543:
11544: * INSTALL: critical: libxslt1.1.2 wanted at least libxml2.6.3 to
11545: compile. recommened latest libxml up to date
11546:
11547: * INSTALL: critical: prior to 1.0.30 had bug: "a segfault on
11548: pattern compilation errors", on which spent 4 hours worktime. use
11549: versions higher than that. recommended now latest up to date
11550:
11551: 2004-02-06 paf
11552:
11553: * src/main/: pa_sql_driver_manager.C, pa_stylesheet_manager.C:
11554: beauty: unified destructing style
11555:
11556: * src/main/untaint.C: beauty: removed old def/ifdef
11557:
11558: * src/main/untaint.C: beauty: coredump @unknown untaint language
11559: now
11560:
11561: 2004-02-03 paf
11562:
11563: * src/: classes/image.C, main/pa_exec.C, main/pa_memory.C,
11564: targets/isapi/parser3isapi.C, types/pa_value.C,
11565: types/pa_vcookie.C: beauty: %u is more simple=proper for size_t
11566: then %ld/%lu
11567:
11568: * src/main/pa_common.C: typo: %l -> %u
11569:
11570: * src/classes/xdoc.C: bugfix: libxml: FOR UTF-8 TOO russian letters
11571: in attributes or documents-results of transform now not xx;
11572:
11573: * src/classes/xnode.C: memleaks found: not fixed yet. todo
11574:
11575: * src/main/pa_charset.C: bugfix: forgot to undo some
11576:
11577: * src/main/pa_charset.C: beauty: uncomment
11578: PA_PATCHED_LIBXML_BACKWARD to link with old patched libxml
11579: libraries
11580:
11581: 2004-02-02 paf
11582:
11583: * src/types/pa_vcookie.C: bugfix: erasing cookie: params now output
11584: $cookie:example[ $.value[value] $.path[/there/] ]
11585:
11586: $cookie:example[ $.value[] $.expires[session]
11587: $.path[/there/] $.domain[test.com] ]
11588:
11589: * src/types/pa_vform.C: bugfix: empty values with
11590: enctype=multipart/form-data now produce entries in $form:tables
11591: <form method=post enctype=multipart/form-data> <input type=hidden
11592: name=a> <input type=hidden name=b>
11593:
11594: <input type=submit> </form> $k[^form:fields._keys[]] ^eval($k)
11595: <hr> <pre>$request:body
11596:
11597: 2004-01-30 paf
11598:
11599: * src/classes/xdoc.C: bugfix: libxml: russian letters in attributes
11600: or documents-results of transform now not xx;
11601:
11602: * src/classes/date.C: bugfix: ^date::create[invalid fields now
11603: produce exception.
11604:
11605: * src/: classes/date.C, include/pa_string.h, main/pa_string.C:
11606: bugfix: ^date::create[invalid fields now produce exception.
11607:
11608: * ChangeLog, src/classes/date.C: bugfix: ^date::create[invalid
11609: year] now produces exception. todo: check other fields
11610:
11611: 2004-01-29 paf
11612:
11613: * src/include/pa_memory.h: typo error
11614:
11615: * src/include/pa_memory.h: bugfix: [potential] strdup copied one
11616: more byte then specified, then zeroed it << useless and
11617: potentially harmful(could gpf)
11618:
11619: 2004-01-22 paf
11620:
11621: * src/classes/xdoc.C: bugfix: when stylesheet contains error, gpf
11622:
11623: * src/main/untaint.C: merged: bugfix from 3.1.1 on whitespace
11624: optimization
11625:
11626: * src/main/untaint.C: bugfix: whitespace now optimized properly
11627: [were bug: ^taint[1 & 2]="1 &2"
11628:
11629: * src/main/pa_globals.C: beauty: bigger buffer for xml-related
11630: errors
11631:
11632: * src/main/pa_common.C: merged: bugfix from 3.1.1 on memory
11633: overflow
11634:
11635: * src/main/pa_common.C: bugfix: buffer overflow * in libxml&xsl
11636: error-reporting code * in parser-error reporting code [when no
11637: @unhandled_exception defined]
11638:
11639: fixed in one place: my *snprintf override
11640:
11641: 2004-01-13 paf
11642:
11643: * operators.txt: typo erro
11644:
11645: 2003-12-25 paf
11646:
11647: * src/main/pa_common.C: bugfix: ^file::load[binary;http:// now not
11648: garbled [pieces after zero bytes were removed]
11649:
11650: 2003-12-22 paf
11651:
1.116 moko 11652: * src/include/Makefile.am: bugfix: removed from dist:
11653: src/include/pa_config_auto.h which were configured for
1.95 moko 11654: make-dist-platform and badly updated proper config file in target
11655: [when .tar used for updating existing source tree]
11656:
11657: * ChangeLog, operators.txt, src/classes/op.C,
11658: src/include/pa_sql_connection.h,
11659: src/include/pa_sql_driver_manager.h,
11660: src/main/pa_sql_driver_manager.C, src/sql/pa_sql_driver.h:
11661: feature: sql introducing ability to transcode charsets
11662:
11663: 2003-12-19 paf
11664:
11665: * src/main/pa_sql_driver_manager.C: beauty: more straighforward
11666: error message
11667:
11668: * src/main/pa_charset.C: bugfix: memory for charsethandler
11669: structure for libxml now allocated properly
11670:
11671: 2003-12-17 paf
11672:
11673: * src/types/pa_vfile.C: beauty: removed outdated cast
11674:
11675: * src/main/pa_common.C: bugfix: empty http response caused gpf
11676:
11677: * src/include/pa_string.h: bugfix: removed too strong a assert
11678:
11679: * src/main/pa_globals.C: bugfix: removed false warning [warning:
11680: unreported xmlGenericErrors]
11681:
11682: 2003-12-15 paf
11683:
11684: * src/classes/xdoc.C: bugfix: taint uri under ^xdoc::create{now
11685: works}
11686:
11687: 2003-12-11 paf
11688:
11689: * operators.txt, src/types/pa_vstatus.C: !$status:pid process
11690: id
11691: !$status:tid thread id
11692:
11693: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
11694: main/pa_globals.C, main/pa_request.C, types/pa_vstatus.C:
11695: bugfix(solaris): removed dependency on object initialization
11696: order [one more place]
11697:
11698: * src/: classes/file.C, classes/mail.C, classes/op.C,
11699: classes/xdoc.C, main/pa_request.C, types/pa_vimage.C,
11700: types/pa_vmath.C, types/pa_vstatus.C: beauty cancel: gcc does not
11701: understand that
11702:
11703: * src/: classes/file.C, classes/mail.C, classes/op.C,
11704: classes/xdoc.C, include/pa_cache_managers.h,
11705: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
11706: include/pa_stylesheet_manager.h, main/pa_request.C,
11707: main/pa_stylesheet_manager.C, types/pa_vimage.C,
11708: types/pa_vmath.C, types/pa_vstatus.C: beauty: removed redundant
11709: ctor call [relying on implicit String::Body(cstr) call]
11710:
11711: * src/main/: pa_cache_managers.C, pa_sql_driver_manager.C,
11712: pa_stylesheet_manager.C: bugfix(solaris): removed dependency on
11713: object initialization order [two places]
11714:
11715: 2003-12-10 paf
11716:
11717: * src/include/pa_sql_connection.h: bugfix: $status:sql.cache back
11718: << time now ok
11719:
11720: * operators.txt, src/main/pa_sql_driver_manager.C,
11721: src/main/pa_stylesheet_manager.C: $status:stylesheet.cache back
11722: operational
11723:
11724: * ChangeLog, operators.txt, src/classes/xdoc.C,
11725: src/include/pa_charset.h, src/include/pa_sql_connection.h,
11726: src/main/pa_charset.C, src/main/pa_sql_driver_manager.C,
11727: src/main/pa_string.C, src/types/pa_vxdoc.h: $status:sql.cache
11728: back operational
11729:
11730: 2003-12-02 paf
11731:
11732: * src/types/pa_vmail.C: bugfix:
11733: ^mail:send[$.file[$.value[>>xxxx<<]] now untaints properly [were:
11734: as-is forced]
11735:
11736: * src/main/pa_xml_io.C: bugfix: on some platforms one can't throw
11737: exceptions out of libxml callbacks: reimplemented error handling
11738: of http://localhost, parser://method and safemode check callbacks
11739:
11740: * src/main/pa_string.C: bugfix: SPARC gpf on %4!=0 address int ref
11741: [merged from HEAD]
11742:
11743: * src/classes/image.C: nothing: comment removed
11744:
11745: * src/main/pa_string.C: bugfix: sparc gpf on reading %4!=0
11746: addresses to int
11747:
11748: 2003-12-01 paf
11749:
11750: * src/main/pa_xml_io.C: bugfix: typo
11751:
11752: * src/main/pa_globals.C: bugfix: win32: compile prob
11753:
11754: * src/classes/xdoc.C: bugfix: typo
11755:
11756: * src/main/pa_xml_io.C: todo: safe mode check not to throw
11757: exception
11758:
11759: * src/main/pa_xml_io.C: bugfix: http://localhost typo error
11760:
11761: 2003-11-28 paf
11762:
11763: * src/main/pa_xml_io.C: installed safe-mode checker as filter of
11764: all xml documents read
11765:
11766: * src/main/pa_xml_io.C: http://localhost/ now checked for safe mode
11767:
11768: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
11769: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
11770: replaced original open mech of xdoc::create & co to use libxml
11771: open, so that this would work for root document todo: safe mode
11772: checks to libxml: ideally to some 1 point
11773:
11774: * src/main/pa_xml_io.C: comment
11775:
11776: * operators.txt, src/main/pa_xml_io.C: leading / in
11777: http://parser[abscent params]
11778:
11779: * operators.txt, src/include/pa_request.h, src/main/pa_xml_io.C:
11780: works. todo: maybe replace original open mech of xdoc::create &
11781: co to use libxml open, so that this would work for root document
11782:
11783: $xdoc[^xdoc::create{<?xml version="1.0"?> <!DOCTYPE test SYSTEM
11784: "parser://method/params/here"> <test> &test^; </test> }]
11785:
11786: ^taint[^xdoc.string[]]
11787:
11788: @method[param] <!ENTITY test
11789: "test-entity-value+$form:user+$param!">
11790:
11791: 2003-11-27 paf
11792:
11793: * src/main/pa_xml_io.C: libxml: started parser://methodcall/params
11794:
11795: * src/classes/date.C: bugfix: typo error
11796:
11797: 2003-11-26 paf
11798:
11799: * operators.txt, src/include/Makefile.am, src/include/pa_globals.h,
11800: src/main/Makefile.am, src/main/main.vcproj,
11801: src/main/pa_globals.C, src/main/pa_request.C,
11802: src/include/pa_xml_io.h, src/main/pa_xml_io.C: simplification:
11803: xml errors to hash<thread_id,error> reorganization: xml io moved
11804: to pa_xml_io.C/h
11805:
11806: * src/types/pa_value.h: warnings: --
11807:
11808: 2003-11-25 paf
11809:
11810: * src/classes/table.C: bugfix: wrong sequence. [sadly no waring
11811: whatever)
11812:
11813: * src/classes/table.C: bugfix: a, c?x:y, z in gcc considered(?) as
11814: a, (c?x:y, z)
11815:
11816: * src/main/untaint.C: bugfix: consequences of not reading this
11817: comment: CORD_pos_chars_left /* Number of characters in cache.
11818: <= 0 ==> none */
11819:
11820: * src/include/pa_array.h: removed needless checks
11821:
11822: 2003-11-24 paf
11823:
11824: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
11825: removed limit: now $form:xxx can be accessed anytime, even in
11826: @auto/conf [and request/response:charset still can be changed
11827: anytime]
11828:
11829: * src/main/pa_common.C: bugfix: ^file::load[binary;http://...]
11830: now not transcodes response body
11831:
11832: * operators.txt, src/types/pa_vxnode.C, src/types/pa_vxnode.h:
11833: $xdoc[^xdoc::create[test]] $tn[^xdoc.createTextNode[text node
11834: value]] $dummy[^xdoc.firstChild.appendChild[$tn]]
11835: $xdoc.firstChild.firstChild.nodeValue[different]
11836: ^taint[^xdoc.string[]]
11837:
11838: * src/: include/pa_hash.h, types/types.vcproj: linker HPUX nongnu
11839: workaround: static Hash::allocates -> static Hash_allocates
11840:
11841: 2003-11-21 paf
11842:
1.116 moko 11843: * Makefile.am, configure, configure.in, src/classes/Makefile.am,
11844: src/include/pa_config_auto.h.in, src/targets/cgi/Makefile.am,
11845: src/types/Makefile.am: rearrange: gd&smtp moved to src/lib
1.95 moko 11846:
11847: * src/classes/classes.vcproj: rearrange: gd&smtp moved to src/lib
11848:
11849: * src/classes/mail.C: bugfix: typo
11850:
11851: * parser3.sln, src/classes/Makefile.am, src/lib/Makefile.am,
1.116 moko 11852: src/lib/gd/Makefile.am, src/lib/gd/gd.vcproj, src/lib/gd/gif.C,
11853: src/lib/gd/gif.h, src/lib/gd/gifio.C, src/lib/gd/mtables.h,
11854: src/lib/smtp/Makefile.am, src/lib/smtp/comms.C,
11855: src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
1.95 moko 11856: src/lib/smtp/smtp.vcproj: rearrange: gd&smtp moved to src/lib
11857:
11858: * src/main/pa_exec.C: bug in safe mode
11859:
11860: * src/include/Makefile.am: pa_xml_exception.h
11861:
11862: * src/targets/isapi/parser3isapi.C: more warnings --
11863:
11864: 2003-11-20 paf
11865:
11866: * src/: classes/math.C, classes/op.C, classes/string.C,
11867: main/pa_charset.C, main/pa_dictionary.C, main/pa_string.C,
11868: types/pa_value.C, main/pa_dir.C, main/pa_table.C: more warnings
11869: --
11870:
11871: * src/: main/pa_charset.C, main/pa_string.C, types/pa_vxnode.C:
11872: more warnings --
11873:
11874: * src/classes/xdoc.C: more warnings --
11875:
11876: * src/classes/: date.C, image.C, xdoc.C: more warnings --
11877:
11878: * src/: main/pa_sql_driver_manager.C, main/untaint.C,
11879: types/pa_vcookie.C, types/pa_vmail.C: more warnings --
11880:
11881: * src/: classes/date.C, classes/file.C, classes/hash.C,
11882: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
11883: classes/table.C, include/pa_cache_managers.h,
11884: include/pa_stylesheet_connection.h, main/pa_request.C,
11885: types/pa_vdate.h, types/pa_vhashfile.C, types/pa_vimage.h,
11886: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: more warnings
11887: --
11888:
11889: * src/main/: execute.C, pa_request.C: old forgotten todo: when
11890: can't report problem (undefined @unhandled_exception) problem
11891: source string were not reported
11892:
11893: * src/: classes/classes.C, classes/classes.h, classes/date.C,
11894: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
11895: classes/hashfile.C, classes/image.C, classes/int.C,
11896: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
11897: classes/response.C, classes/string.C, classes/table.C,
11898: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11899: include/pa_array.h, include/pa_cache_managers.h,
11900: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
11901: include/pa_config_fixed.h, include/pa_dictionary.h,
11902: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
11903: include/pa_globals.h, include/pa_hash.h, include/pa_memory.h,
11904: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
11905: include/pa_request.h, include/pa_request_charsets.h,
11906: include/pa_request_info.h, include/pa_sapi.h, include/pa_socks.h,
11907: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
11908: include/pa_stack.h, include/pa_string.h,
11909: include/pa_stylesheet_connection.h,
11910: include/pa_stylesheet_manager.h, include/pa_table.h,
11911: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
11912: include/pa_xml_exception.h, lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
11913: lib/sdbm/apr_file_io.C, lib/sdbm/apr_strings.C, main/compile.C,
11914: main/compile_tools.C, main/compile_tools.h, main/execute.C,
11915: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
11916: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
11917: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
11918: main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
11919: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
11920: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
11921: main/pa_uue.C, main/pa_xml_exception.C, main/untaint.C,
11922: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
11923: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
11924: targets/isapi/parser3isapi.C, types/pa_junction.h,
11925: types/pa_method.h, types/pa_value.C, types/pa_value.h,
11926: types/pa_vbool.h, types/pa_vclass.C, types/pa_vclass.h,
11927: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
11928: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
11929: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
11930: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
11931: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
11932: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
11933: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
11934: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
11935: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11936: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
11937: types/pa_vresponse.h, types/pa_vstateless_class.C,
11938: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
11939: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
11940: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
11941: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
11942: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
11943: types/pa_wcontext.h, types/pa_wwrapper.h: static const char *
11944: const IDENT
11945:
11946: * src/: include/pa_array.h, include/pa_pool.h,
11947: include/pa_request.h, include/pa_string.h, include/pa_table.h,
11948: main/compile_tools.h, main/pa_common.C, types/pa_vhash.h,
11949: types/pa_wcontext.h: more warnings --
11950:
11951: * src/: classes/classes.vcproj, classes/date.C, classes/double.C,
11952: classes/file.C, classes/hash.C, classes/hashfile.C,
11953: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
11954: classes/memory.C, classes/op.C, classes/string.C,
11955: classes/table.C, classes/xdoc.C, classes/xnode.C,
11956: include/pa_config_includes.h, include/pa_operation.h,
11957: include/pa_sql_connection.h, include/pa_table.h,
11958: include/pa_types.h, lib/ltdl/config_fixed.h,
11959: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/maketables.c,
11960: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
11961: lib/sdbm/apr_file_io.C, main/compile.tab.C, main/execute.C,
11962: main/main.vcproj, main/pa_cache_managers.C, main/pa_charset.C,
11963: main/pa_common.C, main/pa_dir.C, main/pa_exec.C,
11964: main/pa_globals.C, main/pa_os.C, main/pa_request.C,
11965: main/pa_string.C, main/pa_table.C, targets/cgi/parser3.vcproj,
11966: targets/isapi/parser3isapi.vcproj, types/pa_value.h,
11967: types/pa_vconsole.h, types/pa_vdate.h, types/pa_vfile.h,
11968: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vimage.h,
11969: types/pa_vmail.C, types/pa_vobject.C,
11970: types/pa_vstateless_class.h, types/pa_vtable.C,
11971: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
11972: types/pa_vxnode.h, types/types.vcproj: turned on warnings level4
11973: on all projects (except libltdl=off & libsdbm=level3) found
11974: several unitialized vars
11975:
11976: 2003-11-19 paf
11977:
11978: * src/classes/op.C: more ansi C++ comp
11979:
11980: * operators.txt, src/classes/op.C, src/include/pa_request.h,
11981: src/main/pa_request.C: ^cache[...]{body}{catch block with
11982: $exception.handled[cache] meaning "get expired cache, if any.
11983: else error"}
11984:
11985: * src/: classes/op.C, include/pa_os.h, include/pa_request.h,
11986: main/pa_common.C: cache: ^cache[] fallback todo: kinda ^try:
11987: ^cache[...]{body}{catch code with $exception.cache field}
11988:
11989: 2003-11-12 paf
11990:
11991: * src/classes/xnode.C: replaceChild: 2nd param now named oldChild
11992: [copy/paste bug]
11993:
11994: 2003-11-11 paf
11995:
11996: * src/types/: pa_value.h, pa_vfile.h: more C++ compatible [HP C++
11997: failed]
11998:
11999: * bin/auto.p.dist.in: colno
12000:
12001: 2003-11-10 paf
12002:
12003: * src/types/pa_vconsole.h: flush
12004:
12005: * operators.txt, src/main/pa_request.C, src/types/Makefile.am,
12006: src/types/types.vcproj, src/types/pa_vconsole.h: $console:line
12007: read/write [for nntp]
12008:
12009: * operators.txt: mysql: transaction support: ?autocommit=0
12010:
12011: * operators.txt: comment: updated
12012:
12013: * src/types/: pa_vhashfile.C, pa_vhashfile.h: add: hashfile old
12014: serialize version and exipire now removes entries
12015:
12016: * operators.txt: ^hashfile.delete[] removes files altogether [and
12017: dir, if could]
12018:
12019: * src/: classes/hashfile.C, include/pa_common.h, main/pa_common.C,
12020: types/pa_vhashfile.C, types/pa_vhashfile.h: ^hashfile.delete[]
12021: removes files altogether [and dir, if could]
12022:
12023: * src/lib/sdbm/sdbm.c: bugfix: sdbm: .h said it's OK to remove
12024: nonexistent pair. .c coded that that was error. fixed
12025:
12026: * src/types/pa_vhashfile.C: sdbm: exception type change to
12027: file.access [regretfull can't split it to different exceptions
12028: without modifying sdbm source wich would prefer not to]
12029:
12030: 2003-11-07 paf
12031:
12032: * src/: classes/date.C, classes/file.C, classes/hash.C,
12033: classes/hashfile.C, classes/image.C, classes/table.C,
12034: classes/xdoc.C, include/Makefile.am, include/pa_array.h,
12035: include/pa_pool.h, include/pa_request.h, main/Makefile.am,
12036: main/execute.C, main/main.vcproj, main/pa_pool.C,
12037: main/pa_request.C, targets/cgi/parser3.C, types/pa_vclass.C,
12038: types/pa_vclass.h, types/pa_vhashfile.h, types/pa_vobject.h,
12039: types/pa_vstateless_class.h: resurrected: pool idea. now only for
12040: destructing objects at request processing end
12041:
12042: 2003-11-06 paf
12043:
12044: * src/: classes/Makefile.am, types/Makefile.am: .am sdbm INCLUDES
12045: updates
12046:
12047: * parser3.sln, src/targets/cgi/Makefile.am: .vcproj & .am updated
12048: to include sdbm
12049:
1.116 moko 12050: * src/include/: pa_config_includes.h, pa_version.h: our
12051: replacements of max& co only for cpp
1.95 moko 12052:
12053: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C: move to
12054: upper dir, .am updated
12055:
12056: * tests/todo.txt: hashfile: done
12057:
12058: * operators.txt, src/types/pa_vhashfile.C: hashfile: clear &
12059: expiration [time in value. todo: move time to key]
12060:
12061: * src/types/pa_vhashfile.C: hashfile: foreach body can bodify $self
12062:
12063: * src/types/pa_vhashfile.C: hashfile: clear now works [were trying
12064: to do that in foreach, no errors, but surely wrong]
12065:
12066: * operators.txt, src/types/pa_vhashfile.C,
12067: src/types/pa_vhashfile.h: hashfile: clear and proper locking
12068:
12069: * operators.txt, src/classes/hash.C, src/classes/hashfile.C,
12070: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h: hashfile:
12071: foreach
12072:
12073: * src/classes/hashfile.C, src/types/pa_vhashfile.C,
12074: src/types/pa_vhashfile.h, operators.txt: hashfile: hash
12075:
12076: * operators.txt, src/classes/hashfile.C, src/types/pa_vhashfile.C,
12077: src/types/pa_vhashfile.h, tests/todo.txt: hashfile: delete
12078:
12079: * src/: include/pa_memory.h, targets/cgi/parser3.C,
12080: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
12081: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile implemented
12082: get/put [raw]
12083:
12084: * src/: classes/op.C, main/pa_os.C: just linked
12085:
12086: * src/: classes/xdoc.C, classes/xnode.C, types/pa_vxnode.h:
12087: XmlException changes
12088:
12089: * src/: include/pa_charset.h, include/pa_globals.h,
12090: include/pa_stylesheet_connection.h, main/pa_exception.C:
12091: XmlException changes
12092:
12093: * src/lib/sdbm/: sdbm.c, sdbm.vcproj: just compiled
12094:
12095: * src/: include/pa_common.h, include/pa_exception.h,
12096: main/main.vcproj, main/pa_common.C, include/pa_os.h,
12097: include/pa_xml_exception.h, main/pa_os.C, lib/sdbm/sdbm.vcproj,
12098: main/pa_xml_exception.C: locking move to pa_os [along with
12099: pa_sleep] apr-impl locking done
12100:
12101: * configure, configure.in, operators.txt, parser3.sln,
12102: src/classes/classes.vcproj, src/classes/hashfile.C,
12103: src/classes/xdoc.C, src/include/pa_config_fixed.h,
12104: src/include/pa_exception.h, src/include/pa_globals.h,
12105: src/include/pa_memory.h, src/include/pa_version.h,
12106: src/lib/ltdl/libltdl.vcproj, src/lib/ltdl/libltdl.vcproj.vspscc,
12107: src/lib/ltdl/ltdl.vcproj, src/lib/ltdl/ltdl.vcproj.vspscc,
12108: src/main/compile.tab.C, src/main/main.vcproj,
12109: src/main/pa_charset.C, src/targets/cgi/parser3.vcproj,
12110: src/types/Makefile.am, src/types/pa_vhash.C,
12111: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
12112: src/types/pa_vxnode.h, src/types/types.vcproj: hashfile: started
12113: again with sdbm from apache
12114:
12115: 2003-11-05 paf
12116:
12117: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
12118: main/main.vcproj, targets/cgi/parser3.vcproj: not has to be in
12119: \parser3project dir anymore
12120:
12121: * src/main/pa_charset.C: bugfix: had broken binary search [copied
12122: thoughtlessly from xalan]
12123:
12124: * src/lib/sdbm/: Makefile.am, sdbm.c, sdbm_hash.c, sdbm_lock.c,
12125: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h: original
12126: from httpd-2.0.43\srclib\apr-util\dbm\sdbm
12127:
12128: * src/main/helpers/CaseFolding.txt:
12129: http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
12130:
12131: 2003-11-04 paf
12132:
12133: * operators.txt: comment: ^mail:send[$.options[
12134:
12135: * src/classes/table.C: compiled on unix
12136:
1.116 moko 12137: * src/classes/Makefile.am: classes.C to rebuild last
1.95 moko 12138:
12139: * src/classes/mail.C: compiled on unix
12140:
12141: * operators.txt, src/classes/mail.C, src/types/pa_vmail.C,
12142: src/types/pa_vmail.h: !^mail:send[
12143: $.options[unix: string to append to sendmail command
12144: line]
12145:
12146: * operators.txt, src/classes/table.C, src/main/pa_string.C,
12147: tests/todo.txt: ^table.save[... $.separator[^#09]
12148: $.encloser["] <nothing> by default
12149:
12150: * operators.txt, src/classes/table.C, tests/todo.txt: ^table::load
12151: !$.separator[^#09] !$.encloser["] <nothing> by
12152: default
12153:
12154: 2003-11-03 paf
12155:
12156: * operators.txt, src/classes/table.C, src/main/pa_common.C:
12157: ^table::load[; options: !$.column-separator[^#09]
12158: !$.column-encloser["]
12159:
12160: * operators.txt, src/include/pa_config_fixed.h,
12161: src/types/pa_vrequest.C: $request:document-root
12162:
12163: * src/targets/cgi/parser3.C: beauty: SIGUSRX removed qs= printing
12164: [already included into uri=xxx]
12165:
12166: * operators.txt, src/classes/image.C, tests/todo.txt:
12167: ^image.gif[filename] for $response:download
12168:
12169: * src/classes/date.C: minor precaution
12170:
12171: * operators.txt, src/classes/date.C: !^date::unix-timestamp()
12172: !^date.unix-timestamp[]
12173:
12174: 2003-10-30 paf
12175:
12176: * operators.txt, src/classes/date.C, src/types/pa_vdate.h: merged
12177: from 3.0.8: ^date.roll[TZ;GMT] $date.hour
12178:
12179: * src/classes/: date.C, image.C: improvement diagnostics:
12180: $now[^date::create[$undefined]] now is error
12181:
12182: * src/main/pa_common.C: read errors would now be reported 'actually
12183: read -1 bytes'
12184:
12185: 2003-10-24 paf
12186:
12187: * Makefile.am, src/classes/Makefile.am, src/lib/cord/Makefile.am,
12188: src/lib/md5/Makefile.am, src/lib/pcre/Makefile.am,
12189: src/main/Makefile.am, src/targets/cgi/Makefile.am,
12190: src/targets/isapi/Makefile.am: .dsp/w -> .vcproj/sln
12191:
12192: 2003-10-22 paf
12193:
12194: * src/include/pa_request.h: fixed: $h[^hash::create[]] $$h[1]
12195:
12196: 2003-10-21 paf
12197:
12198: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
12199: fixed: string.match[g] without <'> option produced columns with
12200: NULL's, which gpf'ed at table.save time
12201:
12202: * src/: classes/op.C, include/pa_request.h: fixed: false 'endless
12203: recoursion' message with intensive throw-catches fixed: incorrect
12204: name and line (one name upper then needed) in error message about
12205: problems inside try block
12206:
12207: 2003-10-10 paf
12208:
12209: * src/: include/pa_string.h, main/compile.tab.C: CORD_chr does not
12210: check offset argument for validity did that in String::Body::pos
12211: myself http://i2/tasks/edit/?id=4577425257580789777
12212:
12213: 2003-10-07 paf
12214:
12215: * src/main/: compile.tab.C, compile.y: ^if ( better error:
12216: .html(1:4): parse error, expecting `'['' or `'{'' or `'('' now
12217:
12218: 2003-10-03 paf
12219:
12220: * parser3.sln, src/include/pa_dictionary.h,
12221: src/main/pa_dictionary.C, src/main/pa_string.C,
12222: src/targets/cgi/parser3.vcproj: dictionary optimized by
12223: precalculating cstr&length
12224:
12225: 2003-10-02 paf
12226:
12227: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
12228: main/execute.C, main/pa_request.C, main/pa_sql_driver_manager.C,
12229: main/pa_stylesheet_manager.C: bugfix: ^throw context were
12230: saved/restored incompletely http://www.parser.ru/forum/?id=21484
12231:
12232: 2003-09-30 paf
12233:
12234: * src/main/pa_string.C: string::replace bug fix [were ignoring
12235: occurrances after lang-mismatched
12236:
12237: 2003-09-29 paf
12238:
12239: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: generated by
12240: helper
12241:
12242: * src/main/pa_string.C: string::serialize bug fix with
12243: zero-terminator
12244:
12245: * src/classes/table.C: ^nameless_table.save column row now has no
12246: \t at the end
12247:
12248: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
12249: @postprocess now takes $response:body/download
12250:
12251: * src/classes/form.C: better error message: MAX_POST_SIZE_NAME to
12252: error message
12253:
12254: * src/classes/string.C: bugfix: s.right(>s.length) returned nothing
12255:
12256: * src/classes/table.C: bugfix: flip: must produce nameless
12257: http://i2/tasks/edit/?id=4573405524674081244
12258:
12259: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_string.C,
12260: main/helpers/simple_folding.pl: utf-8 upper/lower
12261:
12262: * src/main/pa_common.C: bugfix: utf signature were not ignored due
12263: to typo error http://i2/tasks/edit/?id=4573354650786434584
12264:
12265: 2003-09-26 paf
12266:
12267: * src/main/untaint.C: removed needless field
12268:
12269: * src/main/untaint.C: removed needless const
12270:
12271: * src/: include/pa_string.h, main/pa_common.C, main/pa_string.C:
12272: String.for_each bug fixed [omited one-char cases]
12273:
12274: * src/include/pa_stack.h: bugfix: before collecting garbage,
12275: runtime-executor stack were cleared... BADLY
12276:
12277: * src/main/pa_string.C: ^stirng.replace code used old
12278: param-convention on langs.append, fixed that search fo the like,
12279: found none
12280:
12281: * src/: classes/op.C, include/pa_string.h, main/pa_string.C:
12282: string::serialize/deserialize implemented Language enum assigned
12283: meaningful letters [more convinient for debugging. read warning
12284: before adding/changing anything]
12285:
12286: 2003-09-25 paf
12287:
12288: * src/: include/pa_string.h, include/pa_version.h,
12289: main/pa_string.C, main/untaint.C: templates and anonymous unions
12290: differences on unix
12291:
12292: * parser3.sln, src/classes/file.C, src/classes/image.C,
12293: src/classes/mail.C, src/classes/op.C, src/classes/table.C,
12294: src/classes/xdoc.C, src/classes/xnode.C,
12295: src/include/pa_cache_managers.h, src/include/pa_charset.h,
12296: src/include/pa_charsets.h, src/include/pa_common.h,
12297: src/include/pa_request.h, src/include/pa_sql_driver_manager.h,
12298: src/include/pa_string.h, src/include/pa_stylesheet_manager.h,
12299: src/include/pa_table.h, src/lib/cord/cordbscs.c,
12300: src/lib/cord/cordprnt.c, src/lib/cord/cordxtra.c,
12301: src/lib/cord/include/cord.h, src/main/compile.tab.C,
12302: src/main/compile_tools.h, src/main/pa_charset.C,
12303: src/main/pa_charsets.C, src/main/pa_common.C, src/main/pa_exec.C,
12304: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
12305: src/main/pa_string.C, src/main/pa_stylesheet_manager.C,
12306: src/main/untaint.C, src/types/pa_value.h, src/types/pa_vimage.C,
12307: src/types/pa_vmail.C, src/types/pa_vmath.C,
12308: src/types/pa_vstateless_class.h, src/types/pa_vstatus.C,
12309: src/types/pa_vxnode.C: string_fragments_to_cord merged to HEAD
12310:
12311: * src/main/: compile.tab.C, pa_string.C: string: debug: .v()
12312: functions aligned to that of eeparser3 look
12313:
12314: * src/lib/cord/cordprnt.c: removed warnings
12315:
12316: 2003-09-24 paf
12317:
12318: * src/: classes/file.C, classes/image.C, classes/mail.C,
12319: classes/op.C, classes/xdoc.C, classes/xnode.C,
12320: include/pa_cache_managers.h, include/pa_charset.h,
12321: include/pa_charsets.h, include/pa_common.h, include/pa_request.h,
12322: include/pa_sql_driver_manager.h, include/pa_string.h,
12323: include/pa_stylesheet_manager.h, include/pa_table.h,
12324: main/compile_tools.h, main/pa_charset.C, main/pa_charsets.C,
12325: main/pa_common.C, main/pa_exec.C, main/pa_request.C,
12326: main/pa_sql_driver_manager.C, main/pa_string.C,
12327: main/pa_stylesheet_manager.C, main/untaint.C, types/pa_value.h,
12328: types/pa_vimage.C, types/pa_vmail.C, types/pa_vmath.C,
12329: types/pa_vstateless_class.h, types/pa_vstatus.C,
12330: types/pa_vxnode.C: v() functions of String::Body,
12331: String::Languages and String itself StringBody->String::Body
12332:
12333: * src/: include/pa_string.h, lib/cord/cordbscs.c,
12334: lib/cord/include/cord.h: CORD_append_block showed no efficiency =
12335: never optimized anything. todo: somehow speed up harder cases:
12336: concatenationA+concatenationB when last block of A and first of B
12337: contain same letters
12338:
12339: * src/: include/pa_string.h, lib/cord/cordbscs.c,
12340: lib/cord/include/cord.h: langs: speed up by joining adjucent
12341: blocks of same char [CORD_append_block]
12342:
12343: * src/: include/pa_string.h, lib/cord/cordbscs.c,
12344: lib/cord/include/cord.h, main/pa_string.C: aval/ works! todo:
12345: save space by extending blocks when appending block with c ==
12346: lastblock.c
12347:
12348: * src/: include/pa_string.h, main/pa_string.C: aval is not actually
12349: working yet :( but more working &understood :)
12350:
12351: * src/: classes/table.C, include/pa_string.h,
12352: lib/cord/include/cord.h, main/pa_string.C: aval/ works!
12353:
12354: 2003-09-23 paf
12355:
12356: * src/main/untaint.C: $a[ok!] $a works!
12357:
12358: * src/main/untaint.C: something even more works :)
12359:
12360: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
12361: something more works :)
12362:
12363: * src/: include/pa_string.h, lib/cord/cordbscs.c,
12364: lib/cord/cordxtra.c: something already works :)
12365:
12366: * src/: include/pa_string.h, main/untaint.C: just compiled todo:
12367: serialize&deserialize
12368:
12369: * src/: classes/table.C, include/pa_string.h, lib/cord/cordbscs.c,
12370: lib/cord/cordxtra.c, lib/cord/include/cord.h, main/pa_string.C,
12371: main/untaint.C: main idea implemented, details left
12372:
12373: 2003-09-22 paf
12374:
12375: * src/: classes/memory.C, include/pa_memory.h: #ifdef GC_DEBUG
12376:
12377: * src/classes/xnode.C: copy/paste comment bugfix
12378:
12379: * src/: include/pa_memory.h, main/pa_globals.C: when xml memory
12380: allocator returns 0, just die.
12381: http://i2/tasks/edit/?id=4570798492410259445
12382:
12383: * src/classes/xdoc.C: copy/paste comment bugfix
12384:
12385: * src/classes/: xdoc.C, xnode.C: new DOM2 methods from Alexandr
12386: Egorov <egr> (all?) xdoc: createAttributeNS createElementNS
12387: xnode: getAttributeNS setAttributeNS removeAttributeNS
12388: getAttributeNodeNS setAttributeNodeNS hasAttribute hasAttributeNS
12389:
12390: * src/lib/cord/cordxtra.c: CORD_pos bugfix [failed to find 8bit
12391: chars due to bitwise operation signed-char error]
12392:
12393: 2003-09-19 paf
12394:
12395: * src/types/pa_wcontext.C: output message: more practical
12396: suggestion
12397:
12398: * src/main/pa_common.C, operators.txt: merged
12399: $f[^file::load[binary;http://...]] $f.tables
12400:
12401: 2003-09-02 paf
12402:
12403: * src/main/pa_common.C: printf is buffered, write(1 is not. can't
12404: flush stdout without referencing 'stdout' symbol. to hell with
12405: non-ansi libraries without 'stdout' symbol
12406:
12407: * src/main/pa_common.C: got rid of 'stdout' symbol reference on
12408: unix (users reported problems with some old libc)
12409:
12410: * src/types/pa_vdate.h: forgot initializer
12411:
12412: 2003-09-01 paf
12413:
12414: * src/: classes/date.C, include/pa_common.h, main/compile.tab.C,
12415: main/pa_common.C, types/pa_vdate.h: $date.TZ ^date.roll[TZ;new
12416: zone]
12417:
12418: * src/classes/image.C: memory handling bugs [unpatched 'new' calls]
12419:
12420: 2003-08-19 paf
12421:
12422: * src/types/: pa_value.C, pa_value.h, pa_vdate.h, pa_vrequest.C,
12423: pa_vstring.h, pa_vxdoc.C, pa_vxnode.C: bark intefrace obsoleted,
12424: simplified a little
12425:
12426: * src/types/: pa_vhash.C, pa_vhash.h: _default+foreach bug refix
12427: [lost fix from 3.0.8]
12428:
12429: * src/types/pa_vcookie.C: in VC7 if(type var=xxx){ }else{ now
12430: visible here }
12431:
12432: bug fix
12433:
12434: * src/: include/pa_memory.h, types/pa_value.h: -= few warnings
12435:
12436: * src/main/compile.tab.C: initialized couple of variables about
12437: which user reported runtime problems when parser were compiled
12438: with VC7, warning level4. study shows that later in bison
12439: they've fixed that. would migrate to latest bison someday
12440:
12441: * src/types/pa_vmail.C: turned off recoding in gmime (were still
12442: recoding headers)
12443:
12444: * src/types/pa_vmail.C: works as before, same charset problems:
12445: gmime recodes to UTF-8 only headers, not body. so not recoding
12446: anything for now
12447:
12448: * src/types/: pa_vmail.C, pa_vmail.h: parses headers, still
12449: problems with body
12450:
12451: * src/types/pa_vmail.C: mail_receive just compiled
12452:
12453: 2003-08-18 paf
12454:
12455: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
12456: main/main.vcproj, types/types.vcproj: win32: continued process
12457: detaching from \parser3project directory
12458:
12459: * gnu.dsp, parser3.dsw, src/classes/classes.dsp,
12460: src/lib/cord/cord.dsp, src/lib/ltdl/libltdl.dsp,
12461: src/lib/md5/md5.dsp, src/lib/pcre/pcre.dsp,
12462: src/lib/pcre/pcre_dftables.dsp,
12463: src/lib/pcre/pcre_parser_ctype.dsp, src/main/main.dsp,
12464: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
12465: src/types/types.dsp: moved to MSVC 7
12466:
12467: * gnu.vcproj.vspscc, parser3.vssscc,
12468: src/classes/classes.vcproj.vspscc,
12469: src/lib/cord/cord.vcproj.vspscc,
12470: src/lib/ltdl/libltdl.vcproj.vspscc,
12471: src/lib/md5/md5.vcproj.vspscc,
12472: src/lib/pcre/pcre_dftables.vcproj.vspscc,
12473: src/lib/pcre/pcre_parser_ctype.vcproj.vspscc,
12474: src/lib/pcre/pcre.vcproj.vspscc, src/main/main.vcproj.vspscc,
12475: src/targets/isapi/parser3isapi.vcproj.vspscc,
12476: src/types/types.vcproj.vspscc, src/targets/cgi/parser3.vcproj:
12477: moved to MSVC 7
12478:
12479: * parser3.sln, gnu.vcproj, src/classes/classes.vcproj,
12480: src/lib/cord/cord.vcproj, src/lib/ltdl/libltdl.vcproj,
12481: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
12482: src/lib/pcre/pcre_dftables.vcproj,
12483: src/lib/pcre/pcre_parser_ctype.vcproj, src/main/main.vcproj,
12484: src/targets/cgi/parser3.vcproj,
12485: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
12486: new VS project files
12487:
12488: * ~sak5c961f3101c36563.tmp: Temporary file created by Visual Studio
12489: .NET to detect Jalindi Igloo capabilities.
12490:
12491: * ChangeLog, configure, configure.in, src/classes/Makefile.am,
1.116 moko 12492: src/classes/classes.awk, src/doc/footer.htm,
12493: src/include/pa_config_fixed.h, src/include/pa_version.h,
12494: src/lib/Makefile.am, src/main/compile.tab.C,
1.95 moko 12495: src/main/pa_charset.C, src/main/pa_string.C, src/main/untaint.C,
12496: src/types/pa_vmail.C: merged 3.1.0 latest changes
12497:
12498: 2003-08-15 paf
12499:
12500: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
12501: non-ascii <yyy> now encoded correctly [kinda merge from 3.0.8]
12502:
12503: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
12504: non-ascii <yyy> now encoded correctly
12505:
12506: 2003-07-29 paf
12507:
1.116 moko 12508: * src/classes/: Makefile.am, classes.awk: classes.awk added to make
12509: dist
1.95 moko 12510:
12511: * src/types/pa_vmail.C: just started --with-mail-receive
12512:
12513: 2003-07-28 paf
12514:
1.116 moko 12515: * src/: classes/Makefile.am, lib/Makefile.am: removed circular
12516: dependence in src/classes, src/lib/gc now in dist
1.95 moko 12517:
12518: * src/main/pa_string.C: ^cache bug fix [were not working at all]
12519:
12520: 2003-07-25 paf
12521:
12522: * src/doc/footer.htm: year
12523:
12524: 2003-07-24 paf
12525:
12526: * src/: include/pa_config_fixed.h, main/pa_charset.C: bad #endif
12527: fix
12528:
12529: * src/include/pa_version.h: release
12530:
1.116 moko 12531: * src/lib/gc/include/: Makefile.am, gc.h: moved tempate_gc to HEAD
1.95 moko 12532:
12533: * ChangeLog, src/classes/classes.dsp, src/main/main.dsp,
12534: src/main/pa_globals.C, src/targets/cgi/parser3.dsp,
12535: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: cvs:
12536: getting rid of win32xml pseudo project
12537:
12538: * src/main/: compile.tab.C, pa_memory.C: moved tempate_gc to HEAD
12539:
1.116 moko 12540: * ChangeLog, INSTALL, Makefile.am, acsite.m4, configure,
12541: configure.in, operators.txt, parser3.dsw,
1.95 moko 12542: etc/parser3.charsets/koi8-r.cfg,
1.116 moko 12543: etc/parser3.charsets/windows-1251.cfg, src/classes/Makefile.am,
1.95 moko 12544: src/classes/classes.C, src/classes/classes.awk,
12545: src/classes/classes.dsp, src/classes/classes.h,
12546: src/classes/date.C, src/classes/double.C, src/classes/file.C,
12547: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
12548: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
12549: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
12550: src/classes/string.C, src/classes/table.C, src/classes/void.C,
12551: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
12552: src/doc/exception.dox, src/doc/index.dox, src/doc/memory.dox,
12553: src/doc/string.dox, src/include/Makefile.am,
1.116 moko 12554: src/include/pa_array.h, src/include/pa_cache_managers.h,
12555: src/include/pa_charset.h, src/include/pa_charsets.h,
12556: src/include/pa_common.h, src/include/pa_config_auto.h.in,
12557: src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
12558: src/include/pa_dictionary.h, src/include/pa_dir.h,
12559: src/include/pa_exception.h, src/include/pa_exec.h,
12560: src/include/pa_globals.h, src/include/pa_hash.h,
12561: src/include/pa_memory.h, src/include/pa_opcode.h,
12562: src/include/pa_operation.h, src/include/pa_pool.h,
12563: src/include/pa_pragma_pack_begin.h,
1.95 moko 12564: src/include/pa_pragma_pack_end.h, src/include/pa_request.h,
12565: src/include/pa_request_charsets.h, src/include/pa_request_info.h,
12566: src/include/pa_sapi.h, src/include/pa_socks.h,
12567: src/include/pa_sql_connection.h,
12568: src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
12569: src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
12570: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
12571: src/include/pa_threads.h, src/include/pa_types.h,
1.116 moko 12572: src/include/pa_uue.h, src/lib/Makefile.am,
12573: src/lib/cord/Makefile.am, src/lib/cord/cord.dsp,
12574: src/lib/cord/cordbscs.c, src/lib/cord/cordprnt.c,
12575: src/lib/cord/cordxtra.c, src/lib/cord/source.url,
12576: src/lib/cord/include/Makefile.am, src/lib/cord/include/cord.h,
1.95 moko 12577: src/lib/cord/include/ec.h,
12578: src/lib/cord/include/private/Makefile.am,
12579: src/lib/cord/include/private/cord_pos.h, src/lib/gc/Makefile.am,
1.116 moko 12580: src/lib/ltdl/libltdl.dsp, src/lib/md5/pa_md5.h,
12581: src/lib/md5/pa_md5c.c, src/lib/pcre/pcre.h,
1.95 moko 12582: src/lib/pcre/pcre_parser_ctype.c, src/main/Makefile.am,
1.116 moko 12583: src/main/compile.C, src/main/compile.tab.C, src/main/compile.y,
12584: src/main/compile_tools.C, src/main/compile_tools.h,
12585: src/main/execute.C, src/main/main.dsp, src/main/pa_array.C,
12586: src/main/pa_cache_managers.C, src/main/pa_charset.C,
12587: src/main/pa_charsets.C, src/main/pa_common.C,
12588: src/main/pa_dictionary.C, src/main/pa_dir.C,
12589: src/main/pa_exception.C, src/main/pa_exec.C,
1.95 moko 12590: src/main/pa_globals.C, src/main/pa_hash.C, src/main/pa_pool.C,
12591: src/main/pa_request.C, src/main/pa_socks.C,
12592: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
12593: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
1.116 moko 12594: src/main/pa_uue.C, src/main/untaint.C, src/sql/pa_sql_driver.h,
12595: src/targets/Makefile.am, src/targets/cgi/Makefile.am,
12596: src/targets/cgi/getopt.c, src/targets/cgi/getopt.h,
12597: src/targets/cgi/pa_pool.C, src/targets/cgi/pa_threads.C,
12598: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
12599: src/targets/cgi/pool_storage.h, src/targets/cgi/pp3.cmd,
12600: src/targets/isapi/Makefile.am, src/targets/isapi/pa_pool.C,
1.95 moko 12601: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
12602: src/targets/isapi/parser3isapi.dsp,
12603: src/targets/isapi/pool_storage.h, src/types/Makefile.am,
1.116 moko 12604: src/types/pa_junction.h, src/types/pa_method.h,
12605: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
1.95 moko 12606: src/types/pa_vclass.C, src/types/pa_vclass.h,
12607: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
12608: src/types/pa_vcookie.h, src/types/pa_vdate.h,
12609: src/types/pa_vdouble.h, src/types/pa_venv.h,
12610: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
12611: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
12612: src/types/pa_vimage.C, src/types/pa_vimage.h,
12613: src/types/pa_vint.h, src/types/pa_vjunction.h,
12614: src/types/pa_vmail.C, src/types/pa_vmail.h, src/types/pa_vmath.C,
12615: src/types/pa_vmath.h, src/types/pa_vmemory.h,
12616: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
12617: src/types/pa_vobject.C, src/types/pa_vobject.h,
12618: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
12619: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
12620: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
12621: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
12622: src/types/pa_vstatus.h, src/types/pa_vstring.C,
12623: src/types/pa_vstring.h, src/types/pa_vtable.C,
12624: src/types/pa_vtable.h, src/types/pa_vvoid.h,
12625: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
12626: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
12627: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
12628: src/types/pa_wwrapper.h, src/types/types.dsp: moved tempate_gc to
12629: HEAD
12630:
12631: * tests/: 001.html, 002.html, 003.html, 004.html, 005.html,
12632: 006.html, 007.html, 008.html, 009.html, 010.html, 011.html,
12633: 012.html, 013.html, 014.html, 015.html, 016.html, 017.html,
12634: 018.html, 019.html, 019paf2001.gif, 020.html, 021.html, 022.html,
12635: 023.html, 024.html, 025.html, 026.html, 027.html, 028.html,
12636: 029.html, 030.html, 031.html, 032.html, 033.html, 034.html,
12637: 035.html, 036.html, 037.html, 038.html, 039.html, 040.html,
12638: 041.html, 042.html, 043.html, 044.html, 045.html, 046.html,
12639: 047.html, 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p,
12640: 052.html, 053.html, 054.html, 055.html, 056.html, 057.html,
12641: 058.html, 058_paf2000.png, 059.html, 060.html, 061.dat, 061.html,
12642: 062.html, 063.html, 064.html, 065.html, 066.html, 067.html,
12643: 068.html, 069.html, 070.html, 071.html, 072.html, 073.html,
12644: 074.html, 075.html, 076.html, 077.html, 078.html, 079.html,
12645: 080.html, 081.html, 082.html, 083.html, 084.html, 085.html,
12646: 086.html, 087.html, 088.html, 089.html, 090.html, 091.html,
12647: 092.html, 093.html, 094.html, 095.html, 096.html, 097.html,
12648: 098.html, 098font.gif, 099.html, 100.html, 101.html, 102.html,
12649: 103.html, 103mark.gif, 103paf2001.gif, 104.html, 105.html,
12650: 106.html, 107.html, 108.html, 108.xsl, 109.html, 110.html,
12651: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
12652: 117.html, 118.html, 119.html, 120.html, 121.html, 122.html,
12653: 123.html, 124.html, 125.html, 126.html, 127.html, 128.html,
12654: 129.html, 130.html, 131.html, 132.html, 133.html, 134.html,
12655: 135.html, 136.html, 137.html, 138.html, 139.html, 140.html,
12656: 141.html, Makefile, descript.ion, run_parser.sh, 022_dir/a.html,
12657: 022_dir/b.txt, 022_dir/c.htm, 096_dir/163.jpg, 096_dir/188.jpg,
12658: outputs/create-dir, results/001.processed, results/002.processed,
12659: results/003.processed, results/004.processed,
12660: results/005.processed, results/006.processed,
12661: results/007.processed, results/008.processed,
12662: results/009.processed, results/010.processed,
12663: results/011.processed, results/012.processed,
12664: results/013.processed, results/014.processed,
12665: results/015.processed, results/016.processed,
12666: results/017.processed, results/018.processed,
12667: results/019.processed, results/020.processed,
12668: results/021.processed, results/022.processed,
12669: results/023.processed, results/024.processed,
12670: results/025.processed, results/026.processed,
12671: results/027.processed, results/028.processed,
12672: results/029.processed, results/030.processed,
12673: results/031.processed, results/032.processed,
12674: results/033.processed, results/034.processed,
12675: results/035.processed, results/036.processed,
12676: results/037.processed, results/038.processed,
12677: results/039.processed, results/040.processed,
12678: results/041.processed, results/042.processed,
12679: results/043.processed, results/044.processed,
12680: results/045.processed, results/046.processed,
12681: results/047.processed, results/048.processed,
12682: results/049.processed, results/050.processed,
12683: results/051.processed, results/052.processed,
12684: results/053.processed, results/054.processed,
12685: results/055.processed, results/056.processed,
12686: results/057.processed, results/058.processed,
12687: results/059.processed, results/060.processed,
12688: results/061.processed, results/062.processed,
12689: results/063.processed, results/064.processed,
12690: results/065.processed, results/066.processed,
12691: results/067.processed, results/068.processed,
12692: results/069.processed, results/070.processed,
12693: results/071.processed, results/072.processed,
12694: results/073.processed, results/074.processed,
12695: results/075.processed, results/076.processed,
12696: results/077.processed, results/078.processed,
12697: results/079.processed, results/080.processed,
12698: results/081.processed, results/082.processed,
12699: results/083.processed, results/084.processed,
12700: results/085.processed, results/086.processed,
12701: results/087.processed, results/088.processed,
12702: results/089.processed, results/090.processed,
12703: results/091.processed, results/092.processed,
12704: results/093.processed, results/094.processed,
12705: results/095.processed, results/096.processed,
12706: results/097.processed, results/098.processed,
12707: results/099.processed, results/100.processed,
12708: results/101.processed, results/102.processed,
12709: results/103.processed, results/104.processed,
12710: results/105.processed, results/106.processed,
12711: results/107.processed, results/108.processed,
12712: results/109.processed, results/110.processed,
12713: results/111.processed, results/112.processed,
12714: results/113.processed, results/114.processed,
12715: results/115.processed, results/116.processed,
12716: results/117.processed, results/118.processed,
12717: results/119.processed, results/120.processed,
12718: results/121.processed, results/122.processed,
12719: results/123.processed, results/124.processed,
12720: results/125.processed, results/126.processed,
12721: results/127.processed, results/128.processed,
12722: results/129.processed, results/130.processed,
12723: results/131.processed, results/132.processed,
12724: results/133.processed, results/134.processed,
12725: results/135.processed, results/136.processed,
12726: results/137.processed, results/138.processed,
12727: results/139.processed, results/140.processed,
12728: results/141.processed: merged(copied) to HEAD from template_gc
12729:
12730: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: more step
12731: towards \parser3project not having to be in root
12732:
12733: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c: apache
12734: module compiled [were minor unnecessary changes in lib/md5
12735: interface]
12736:
12737: * src/include/pa_version.h: release
12738:
12739: * parser3.dsw, src/main/pa_globals.C: relative paths to xml&gc libs
12740:
12741: * src/classes/math.C: merged uuid bugfix
12742:
12743: * tests/: 141.html, results/141.processed: fixed bug with
12744: too-small-a-buffer
12745:
12746: * src/classes/math.C: uuid bugfix
12747:
12748: * tests/: 141.html, Makefile, results/005.processed,
12749: results/030.processed, results/075.processed,
12750: results/078.processed: to reflect date format change (were -
12751: become ' ')
12752:
12753: * src/classes/math.C: uuid bugfix
12754:
12755: * parser3.dsw, src/main/pa_globals.C: few paths for libxml
12756: debug/release changes
12757:
12758: * src/lib/md5/pa_md5c.c: PA_ -> pa_
12759:
12760: 2003-07-23 paf
12761:
12762: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
12763: renamed a little [to move to comman naming conv]
12764:
1.116 moko 12765: * src/targets/Makefile.am: apache13 splitted to simplify apache
12766: build
1.95 moko 12767:
12768: * src/: include/pa_request.h, include/pa_stack.h, main/execute.C,
12769: main/pa_request.C, main/pa_sql_driver_manager.C,
12770: main/pa_stylesheet_manager.C, targets/isapi/parser3isapi.dsp:
12771: stack top_index() fixed
12772:
12773: * src/main/pa_globals.C: minor style changes
12774:
12775: * src/: classes/op.C, include/pa_sql_connection.h: connection
12776: closing/caching fixed [connections were not closed/put to cache]
12777:
12778: 2003-07-22 paf
12779:
12780: * INSTALL: gc part updated stightly
12781:
12782: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: updated to
12783: new sapi interface
12784:
12785: * src/classes/file.C: comment on OS
12786:
12787: * src/main/pa_string.C: removed reduntant invariant check [there is
12788: one deeper in cord lib]
12789:
12790: * src/main/pa_exec.C: on win32 bugfix in handling shbang
12791:
12792: * src/main/pa_memory.C: out of memory is no longer coredump
12793:
12794: * INSTALL: disable-threads adviced
12795:
12796: 2003-07-21 paf
12797:
1.116 moko 12798: * src/classes/Makefile.am: removed circular dependency on classes.C
1.95 moko 12799:
12800: * src/classes/file.C: file::exec/cgi environment variables now must
12801: be UPPERCASE and A-Z 0-9 _-
12802:
12803: * src/classes/file.C: env passing fixed
12804:
12805: * src/main/pa_common.C: http:// CRLF now [merged from HEAD]
12806:
12807: * src/main/pa_common.C: http:// CRLF now
12808:
12809: 2003-07-02 paf
12810:
12811: * operators.txt, src/types/pa_vstatus.C: renamed $memory:status
12812: fields to reflect their real meaning
12813:
12814: 2003-06-27 paf
12815:
12816: * src/: classes/file.C, include/pa_charset.h, include/pa_exec.h,
12817: include/pa_hash.h, main/pa_charset.C: merged from HEAD
12818: file::exec/cgi .charset
12819:
12820: 2003-06-26 paf
12821:
12822: * ChangeLog, src/classes/file.C, src/classes/hash.C,
12823: src/classes/image.C, src/classes/op.C, src/classes/string.C,
12824: src/classes/table.C: fixed several uninitialized local
12825: structures. notably ^hash.foreach now inserts delimiters
12826: properly [were inserting it before first body]
12827:
12828: 2003-06-24 paf
12829:
12830: * src/include/pa_hash.h: simplified HASH_ALLOCATES_COUNT
12831:
12832: 2003-06-20 paf
12833:
12834: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
12835: src/main/pa_globals.C: introducing
12836: $f[^file::load[binary;http://...]] $f.tables
12837:
12838: 2003-06-06 paf
12839:
12840: * src/types/: pa_vhash.h: $hash.field lookup first now: along with
12841: table. [were method lookup: inconsistent]
12842:
12843: 2003-06-02 paf
12844:
12845: * src/include/pa_memory.h: empty string clone fixed to return
12846: writable memory
12847:
12848: * src/main/pa_common.C: fix_line_breaks bug fix [terminating zero
12849: were not appended] which violated string invariant
12850:
12851: 2003-05-30 paf
12852:
12853: * src/types/pa_value.C: date format now Sun, 06 Nov 1994 08:49:37
12854: GMT ; RFC 822, updated by RFC 1123 [as in HEAD]
12855:
12856: * src/main/pa_common.C: date format now Sun, 06 Nov 1994 08:49:37
12857: GMT ; RFC 822, updated by RFC 1123
12858:
12859: * src/: classes/file.C, classes/form.C, targets/cgi/parser3.C,
12860: targets/isapi/parser3isapi.C: initialized request_info properly
12861:
12862: * src/classes/xnode.C: found minor bug, commended for future
12863:
12864: 2003-05-28 paf
12865:
12866: * src/classes/form.C: request_info.content_length can't be <0,
12867: size_t for some time
12868:
12869: 2003-05-26 paf
12870:
12871: * src/: classes/file.C, classes/string.C, main/pa_string.C: few
12872: forgotten <0 changed to !=STRING_NOT_FOUND
12873:
12874: * src/classes/math.C: merged ffffu from HEAD
12875:
12876: 2003-05-11 paf
12877:
12878: * src/main/pa_globals.C: xml memory debugging functions (ifdefed)
12879:
12880: * src/types/: pa_vxdoc.h, pa_vxnode.h: think that found cause of
12881: premature doc free. transformed document had xmlDoc reference
12882: stored to non-gc-memory (libgdome) added holding-reference
12883:
12884: 2003-04-29 paf
12885:
12886: * src/main/pa_globals.C: started digging on double free. on win32
12887: found that that's perfectly normal.
12888:
12889: 2003-04-25 paf
12890:
12891: * src/classes/table.C: table.join bug fix [bad limit check]
12892:
12893: * src/classes/math.C: merged from HEAD: simpiler hash_string
12894:
12895: * src/classes/math.C: snprintf(buf, 3) become (buf,2) and failed to
12896: print anything. changed to quicker and simplier code
12897:
12898: * src/classes/hash.C: allowed ^hash::create[^rem{xxx}] [were to
12899: strict a check]
12900:
12901: * src/: classes/table.C, lib/md5/pa_md5c.c: minor compile errors
12902:
12903: 2003-04-24 paf
12904:
12905: * src/include/pa_table.h: too strict assert loosened
12906:
12907: * src/lib/: md5/pa_md5c.c, pcre/pcre.h: thanks to Ilia Soldis
12908: <soldis@infolio.ru> for reporing this ansi c fiolation syntax
12909: report
12910:
12911: 2003-04-21 paf
12912:
1.116 moko 12913: * src/targets/cgi/Makefile.am: pp3 added to .am
1.95 moko 12914:
12915: * src/main/pa_globals.C: pcre memory management changed to use GC
12916: memory
12917:
12918: * src/main/pa_globals.C: 2.5.6 version of libxml allows to install
12919: xmlMallocAtomic [author agreed to my suggestion], used that
12920:
12921: * src/types/pa_vmail.C: ^mail:send[$.body backward compatibility
12922:
12923: * src/: targets/cgi/parser3.C, types/pa_value.C, types/pa_value.h,
12924: types/pa_vmail.C: attributed_meaning_to_string added
12925: L_UNSPECIFIED piece which was sortof OK, but violated string
12926: invariant [assertion barked on that] changed to L_PASS_APPEND,
12927: made that param obligatory
12928:
12929: * src/main/pa_string.C: String::ArrayFragment::append_positions bug
12930: fixed [assert helped]
12931:
12932: * src/include/pa_string.h: assert added [looking for bug]
12933:
12934: * src/main/pa_request.C: merged from HEAD: "x:..." and "\\..." file
12935: names on Win32 considered disk-global
12936:
12937: * src/main/pa_request.C: "x:..." and "\\..." file names on Win32
12938: considered disk-global
12939:
12940: 2003-04-18 paf
12941:
12942: * src/main/untaint.C: merged from HEAD: enabled '~' letter in
12943: filenames
12944:
12945: * src/main/untaint.C: enabled '~' letter in filenames
12946:
12947: 2003-04-16 paf
12948:
12949: * src/classes/file.C: small bug introduced in autoptr times fixed
12950:
12951: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: merged from
12952: HEAD
12953:
1.116 moko 12954: * src/classes/table.C: fix: gcc reported tiny error
1.95 moko 12955:
12956: 2003-04-15 paf
12957:
12958: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
12959: src/lib/md5/pa_md5c.c, tests/141.html,
12960: tests/results/141.processed: merged from head ^math:uuid[]
12961: ^math:uid64[] ^math:md5[string]
12962:
12963: test added: 141.html
12964:
12965: * operators.txt, src/classes/math.C: ^math:uid64[]
12966:
12967: * src/classes/math.C: ^math:uuid[]
12968:
12969: * operators.txt, src/classes/math.C: ^math:uuid[]
12970:
12971: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
12972: src/lib/md5/pa_md5c.c: ^math:md5[string] 16-byte digest
12973:
12974: * operators.txt, src/classes/file.C, src/include/pa_common.h,
12975: src/include/pa_config_fixed.h, src/main/pa_common.C:
12976: ^file::load[mode;name; $.offset $.limit
12977:
12978: 2003-04-14 paf
12979:
12980: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
12981: started ^math:md5
12982:
12983: * src/classes/table.C, src/include/pa_array.h,
12984: src/include/pa_table.h, src/main/pa_table.C, tests/140.html,
12985: tests/results/140.processed: table $.reverse option works in
12986: create&co table $.distinct[tables] bug fix merged
12987:
12988: * src/: classes/table.C, include/pa_table.h: table
12989: $.distinct[tables] bug fixed
12990:
12991: * src/classes/table.C: more warnings
12992:
12993: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C:
12994: removed checks in table::set_current, moved them back to
12995: table::locate implemented table::create/join ñ $.reverse
12996:
12997: * src/: include/pa_table.h, main/pa_array.C, main/pa_table.C:
12998: removed checks in table::set_current, moved them back to
12999: table::locate
13000:
13001: 2003-04-11 paf
13002:
13003: * operators.txt, src/classes/date.C, src/classes/table.C,
13004: src/include/pa_array.h, src/include/pa_common.h,
13005: src/include/pa_config_includes.h, src/include/pa_string.h,
13006: src/include/pa_table.h, src/main/pa_request.C,
13007: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
13008: src/main/pa_table.C: merged from HEAD from
13009: before_append_array_limit_sense_change to
13010: after_append_array_limit_sense_change
13011:
13012: * src/classes/table.C: typo
13013:
13014: * operators.txt, src/classes/date.C, src/classes/table.C,
13015: src/include/pa_array.h, src/include/pa_common.h,
13016: src/include/pa_config_includes.h, src/include/pa_globals.h,
13017: src/include/pa_table.h, src/main/pa_array.C,
13018: src/main/pa_globals.C, src/main/pa_request.C,
13019: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
13020: src/main/pa_table.C: append_array_limit_sense_change locate
13021: accepts options same as create new option: $.reverse(1) [do not
13022: work in table::create]
13023:
13024: * src/: include/pa_common.h, main/pa_common.C: gcc didn't like
13025: (stat xxx,
13026:
13027: * src/classes/: table.C: typo
13028:
13029: * tests/: 130.html, 131.html, 132.html, 133.html, 134.html,
13030: 135.html, 136.html, 137.html, 138.html, 139.html, descript.ion,
13031: results/130.processed, results/131.processed,
13032: results/132.processed, results/133.processed,
13033: results/134.processed, results/135.processed,
13034: results/136.processed, results/137.processed,
13035: results/138.processed, results/139.processed: added few mustfail
13036: tests 130.html mustfail: empty regexp 131.html mustfail: invalid
13037: date/time 132.html mustfail: access to junction outside of
13038: context 133.html mustfail: access to junction outside of context,
13039: case version 134.html mustfail: hash: adding a key inside of
13040: foreach 135.html mustfail: modifying system class 136.html
13041: mustfail: $.name outside of $hash[here] 137.html mustfail:
13042: appendChild without import 138.html mustfail: invalid encoding
13043: inside of xml 139.html mustfail: bad XPath
13044:
13045: * operators.txt, src/classes/table.C, tests/084.html,
13046: tests/125.html, tests/126.html, tests/127.html, tests/128.html,
13047: tests/129.html, tests/results/125.processed,
13048: tests/results/126.processed, tests/results/127.processed,
13049: tests/results/128.processed, tests/results/129.processed: merged
13050: from HEAD ^table.hash[key][$.distinct[tables]]
13051:
13052: maked appropriate tests [changed one old nonconforming]
13053:
13054: * operators.txt, src/classes/table.C:
13055: ^table.hash[key][$.distinct[tables]]
13056:
13057: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
13058: merged fix for found very old xml (dom) bug: were passing
13059: domString objects and later ERROREOUSLY freed them
13060:
13061: * INSTALL, src/include/pa_charset.h, src/lib/Makefile.am,
13062: src/main/pa_charset.C: re-added libgdome patch. regretfully
13063: libgdome bug can not be worked around
13064:
13065: 2003-04-10 paf
13066:
13067: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
13068: found very old xml (dom) bug: were passing domString objects and
13069: later ERROREOUSLY freed them
13070:
13071: * src/doc/string.dox, src/include/pa_memory.h,
13072: src/include/pa_string.h, src/lib/cord/cordbscs.c,
13073: src/main/pa_string.C, src/types/pa_vform.C, src/types/pa_vform.h,
13074: tests/123.html, tests/124.html, tests/results/001.processed,
13075: tests/results/002.processed, tests/results/003.processed,
13076: tests/results/004.processed, tests/results/005.processed,
13077: tests/results/006.processed, tests/results/008.processed,
13078: tests/results/009.processed, tests/results/010.processed,
13079: tests/results/011.processed, tests/results/012.processed,
13080: tests/results/013.processed, tests/results/014.processed,
13081: tests/results/015.processed, tests/results/016.processed,
13082: tests/results/017.processed, tests/results/018.processed,
13083: tests/results/020.processed, tests/results/021.processed,
13084: tests/results/022.processed, tests/results/023.processed,
13085: tests/results/024.processed, tests/results/025.processed,
13086: tests/results/026.processed, tests/results/027.processed,
13087: tests/results/028.processed, tests/results/029.processed,
13088: tests/results/030.processed, tests/results/031.processed,
13089: tests/results/032.processed, tests/results/033.processed,
13090: tests/results/034.processed, tests/results/035.processed,
13091: tests/results/036.processed, tests/results/037.processed,
13092: tests/results/038.processed, tests/results/039.processed,
13093: tests/results/040.processed, tests/results/041.processed,
13094: tests/results/042.processed, tests/results/043.processed,
13095: tests/results/044.processed, tests/results/045.processed,
13096: tests/results/046.processed, tests/results/047.processed,
13097: tests/results/048.processed, tests/results/049.processed,
13098: tests/results/050.processed, tests/results/051.processed,
13099: tests/results/052.processed, tests/results/053.processed,
13100: tests/results/054.processed, tests/results/055.processed,
13101: tests/results/056.processed, tests/results/057.processed,
13102: tests/results/058.processed, tests/results/059.processed,
13103: tests/results/060.processed, tests/results/061.processed,
13104: tests/results/062.processed, tests/results/063.processed,
13105: tests/results/064.processed, tests/results/065.processed,
13106: tests/results/066.processed, tests/results/067.processed,
13107: tests/results/068.processed, tests/results/069.processed,
13108: tests/results/070.processed, tests/results/071.processed,
13109: tests/results/072.processed, tests/results/073.processed,
13110: tests/results/074.processed, tests/results/075.processed,
13111: tests/results/076.processed, tests/results/077.processed,
13112: tests/results/078.processed, tests/results/079.processed,
13113: tests/results/080.processed, tests/results/081.processed,
13114: tests/results/082.processed, tests/results/083.processed,
13115: tests/results/084.processed, tests/results/085.processed,
13116: tests/results/086.processed, tests/results/087.processed,
13117: tests/results/088.processed, tests/results/089.processed,
13118: tests/results/090.processed, tests/results/091.processed,
13119: tests/results/092.processed, tests/results/093.processed,
13120: tests/results/094.processed, tests/results/095.processed,
13121: tests/results/096.processed, tests/results/097.processed,
13122: tests/results/101.processed, tests/results/102.processed,
13123: tests/results/104.processed, tests/results/105.processed,
13124: tests/results/106.processed, tests/results/107.processed,
13125: tests/results/108.processed, tests/results/109.processed,
13126: tests/results/110.processed, tests/results/111.processed,
13127: tests/results/112.processed, tests/results/113.processed,
13128: tests/results/114.processed, tests/results/115.processed,
13129: tests/results/116.processed, tests/results/117.processed,
13130: tests/results/118.processed, tests/results/119.processed,
13131: tests/results/120.processed, tests/results/121.processed,
13132: tests/results/122.processed, tests/results/123.processed,
13133: tests/results/124.processed: new convention: char* never 0.
13134: assert in cord on that
13135:
13136: * src/main/pa_charset.C: couple more asserts
13137:
13138: * src/: main/pa_charset.C, include/pa_charset.h: little transcodes
13139: speedup
13140:
13141: * src/main/pa_charset.C: couple assertions on fantastic situations
13142: added [may be those is the case now?]
13143:
13144: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
13145: that's memory from gc_malloc, not from g_malloc :(, but would
13146: hope]
13147:
13148: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
13149: that's memory from gc_malloc, not from g_malloc :(, but would
13150: hope]
13151:
13152: * src/main/pa_charset.C: checked custom malloc for returning 0
13153:
13154: 2003-04-09 paf
13155:
13156: * src/classes/date.C: merged ^date.roll changes
13157:
13158: * src/classes/date.C: ^date.roll bug fix
13159:
13160: * src/classes/date.C: ^date.roll now throws less errors: month
13161: shifts handles end of month situation by reducing day number
13162: hour-hole shift reduces hour to recover
13163:
13164: * src/targets/cgi/pp3.cmd: custom profiling script: plist/ST <<
13165: Sort by function time
13166:
13167: * operators.txt, src/main/pa_charset.C, src/main/pa_common.C:
13168: http:// $.charset[] param done
13169:
13170: * tests/: 122.html, results/122.processed: 122 date test <= and ==
13171: added [after volatile fix. passes on win&intel-solaris]
13172:
13173: 2003-04-08 paf
13174:
13175: * src/: classes/file.C, classes/op.C, classes/table.C,
13176: classes/xdoc.C, include/pa_charset.h, include/pa_charsets.h,
13177: include/pa_common.h, include/pa_request_charsets.h,
13178: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
13179: main/pa_exec.C, main/pa_request.C, main/untaint.C,
13180: types/pa_value.h, types/pa_vmail.C, types/pa_vrequest.C,
13181: types/pa_vresponse.C: started http:// $.charset[] param and
13182: http response charset detection just compiled. todo:test
13183:
13184: * src/main/pa_common.C: merged PA_USE_ALARM bugfix from HEAD
13185:
13186: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
13187: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vform.C,
13188: types/pa_vmail.C: changed transcode param converntion along with
13189: string creating convention -- all strings are zero-terminated,
13190: this allowed to fix one remaining String("123", 2) case
13191:
13192: * src/: classes/date.C, classes/file.C, classes/hash.C,
13193: classes/op.C, classes/string.C, classes/table.C,
13194: include/pa_charset.h, include/pa_memory.h, include/pa_string.h,
13195: main/compile.tab.C, main/pa_charset.C, main/pa_exec.C,
13196: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
13197: main/untaint.C, types/pa_vfile.C, types/pa_vfile.h,
13198: types/pa_vform.C, types/pa_vform.h, types/pa_vmail.C: pa_vform
13199: violated String::invariant. started fixing [not compiled now]
13200:
13201: * src/: classes/string.C, include/pa_string.h, lib/cord/cordbscs.c,
13202: main/compile.tab.C, main/compile.y, main/pa_string.C,
13203: main/untaint.C, targets/cgi/parser3.C: number of string style
13204: improvements & optimizations
13205:
13206: * src/classes/xnode.C: =0 bug fix [left from autoptr default ctor
13207: :(]
13208:
13209: * src/main/untaint.C: removed redundant & in CORD_pos param passing
13210: [for it's a pointer really]
13211:
13212: * src/main/untaint.C: CORD_pos_advance turned out to have limit on
13213: 'n' param. worked that around
13214:
13215: * src/lib/cord/: Makefile.am, cordbscs.c, source.url: From: "Boehm,
13216: Hans" <hans_boehm@hp.com> To: "'Alexandr Petrosian (PAF)'"
13217: <PAF@design.ru>; "Boehm, Hans" <hans_boehm@hp.com> Sent: Tuesday,
13218: April 08, 2003 2:16 AM Subject: RE: libgc 6.2.alpha4
13219: cord/cordbscs.c/CORD_cat bug [were: CORD__extend_path bug?
13220:
13221: Thanks for the bug report and patch.
13222:
13223: I hadn't looked at this code in a while. Reading it now, it
13224: seems to me that the tests should also be ">= MAX_DEPTH" to
13225: comply with the invariant, though that may not matter a lot. I
13226: changed that, too.
13227:
13228: Hans
13229:
13230: 2003-04-07 paf
13231:
13232: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
13233: merged from head:safe mode error message now includes numbers
13234:
13235: * src/main/execute.C: n-th attempt to make a=a work with double.
13236: problem: as_double returns it's result in fp-register compiler
13237: optimizes access to that register after b->as_double, and just
13238: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
13239: from memory. _SAME_ double values do not match here. when
13240: forced to REload fp-register, values do match.
13241:
13242: tried to make them volatile.
13243:
13244: * src/main/execute.C: n-th attempt to make a=a work with double.
13245: problem: as_double returns it's result in fp-register compiler
13246: optimizes access to that register after b->as_double, and just
13247: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
13248: from memory. _SAME_ double values do not match here. when
13249: forced to REload fp-register, values do match.
13250:
13251: tried to make them volatile.
13252:
13253: * src/types/pa_vobject.h: small style change
13254:
13255: * src/: lib/cord/cordbscs.c, include/pa_string.h: CORD_cat bugfix
13256:
13257: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C: safe
13258: mode error message now includes numbers
13259:
13260: * src/: main/untaint.C, targets/cgi/parser3.C: unknown untaint lang
13261: now causes death
13262:
13263: 2003-04-04 paf
13264:
13265: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C:
13266: incorportated pa_exec patch by From: "Victor Fedoseev"
13267: <vvf_ru@mail.ru> To: "Alexandr Petrosian (PAF)" <PAF@design.ru>
13268: Sent: Thursday, January 23, 2003 9:14 AM
13269:
13270: huge speedup on ^file::cgi with big result
13271:
13272: * src/classes/table.C: sort table with 0 rows bug fixed
13273:
13274: * src/types/pa_vhash.h: $hash._default showed in foreach & co bug
13275: fix http://i2/tasks/edit/?id=4493701604654042676
13276:
13277: @main[] $with_default[ $.a[1] $._default[default from
13278: with_default] ] ^show[$with_default]
13279:
13280: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
13281: =$to_add_to.xxx=<br>
13282:
13283: ^show[$to_add_to]
13284:
13285: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
13286: ^show[$cloned]
13287:
13288: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
13289:
13290: } <hr>
13291:
13292: * src/classes/hash.C: $hash._default showed in foreach & co bug fix
13293: http://i2/tasks/edit/?id=4493701604654042676
13294:
13295: @main[] $with_default[ $.a[1] $._default[default from
13296: with_default] ] ^show[$with_default]
13297:
13298: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
13299: =$to_add_to.xxx=<br>
13300:
13301: ^show[$to_add_to]
13302:
13303: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
13304: ^show[$cloned]
13305:
13306: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
13307:
13308: } <hr>
13309:
13310: * src/types/pa_vmail.C: mail receive: .txt attachemnts bug fix
13311: http://i2/tasks/edit/?id=4507350336410850921
13312:
13313: * src/classes/xdoc.C: memory allocation func bugfix
13314: http://i2/tasks/edit/?id=4499303470368629745
13315:
13316: * src/classes/math.C: allowed random 1...
13317:
13318: * src/classes/math.C: allowed random 0..
13319:
13320: * src/main/pa_globals.C: exif mem leak
13321: http://i2/tasks/edit/?id=4480590323629807263
13322:
13323: * src/: classes/classes.dsp, main/main.dsp,
13324: targets/cgi/parser3.dsp, types/pa_vmail.C, types/types.dsp: buf
13325: fix http://i2/tasks/edit/?id=4493946731322521294
13326: $.to[billgates@microsoft.com BCc: send-spam-to@someemails.ru ]
13327:
13328: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
13329: lib/pcre/pcre.dsp, main/compile.tab.C, main/main.dsp,
13330: main/pa_globals.C, targets/cgi/parser3.dsp, types/types.dsp:
13331: links to xml libs made relative, no need to unpack parser3project
13332: to /parser3project.
13333:
13334: * src/main/: compile.tab.C, compile.y, compile_tools.h: error
13335: column more precise - tab handling bug fixed
13336:
13337: * src/main/: compile.tab.C, compile.y: more understandable error
13338: message in case @CLASS with more then one line inside
13339:
13340: * src/targets/cgi/parser3.C: more understandable error message in
13341: case of errors in @unhandled_exception
13342:
13343: 2003-04-03 paf
13344:
13345: * INSTALL, src/include/pa_operation.h, src/include/pa_request.h,
13346: src/main/compile.tab.C, src/main/compile.y,
13347: src/main/compile_tools.C, src/main/compile_tools.h,
13348: src/main/execute.C, src/main/pa_request.C: debug info format
13349: simplified, now it's: OP_VALUE Operation::Origin << here value*
13350:
13351: higher limits: file number (max: 255) line number (max:
13352: 64535) column number (max: 255)
13353:
13354: * src/classes/math.C: top limit
13355:
13356: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
13357: precise parse error position in case of
13358:
13359: ^bug ]
13360:
13361: * src/classes/op.C, src/main/pa_request.C, tests/042.html: test 042
13362: changed to realities, and passed [bug fixed]
13363:
13364: * src/: classes/op.C, include/pa_request.h, main/compile.C,
13365: main/compile.tab.C, main/compile.y, main/compile_tools.C,
13366: main/compile_tools.h, main/pa_request.C: introducing
13367: ^process...[main-method-alias]
13368:
13369: * src/: classes/date.C, classes/image.C, classes/op.C,
13370: classes/string.C, classes/table.C, classes/xdoc.C,
13371: types/pa_vmethod_frame.h: MethodParams& now [methods without
13372: params receive zero reference, but they are expected not to look
13373: there]
13374:
13375: * operators.txt, src/classes/date.C, src/classes/double.C,
13376: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
13377: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
13378: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
13379: src/classes/string.C, src/classes/table.C, src/classes/void.C,
13380: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
13381: src/main/execute.C, src/types/pa_method.h: MethodParams& now
13382: [methods without params receive zero reference, but they are
13383: expected not to look there]
13384:
13385: * operators.txt, src/classes/op.C, src/include/pa_request.h,
13386: src/main/pa_request.C, src/types/pa_vmethod_frame.h:
13387: ^process...[filename] useful for better error reporting
13388: [file/line/col]
13389:
13390: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
13391: types/pa_vstring.h: slightly improved error messages text: 1. is
13392: '%s', it 2. method undefined in case of ^void[]
13393:
13394: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
13395: include/pa_types.h, main/execute.C, main/pa_request.C: exception
13396: handling done. now we have error columns todo: test it
13397:
13398: * src/: classes/op.C, include/pa_request.h: removed from trace 'a'
13399: exception when ^try{ ^throw[a;1] }{ ^throw[b;2] }
13400:
13401: this makes life easier: were: bad stack order -- were in
13402: exception catch unwind order, which didn't match execution order
13403:
13404: @main[] ^try{ ^first[] }{ ^throw[c;3] }
13405:
13406: @first[] ^throw[a;1]
13407:
13408: showed throw a first throw b try
13409:
13410: which is no good
13411:
13412: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
13413: main/compile.tab.C, main/execute.C, main/pa_request.C: strack
13414: trace reset after handled exception [old bug fixed]
13415:
13416: * src/main/: compile.tab.C, compile.y: parse position old bug
13417: fixed. position reporting made precise [both, in parse erros and
13418: runtime errors]
13419:
13420: 2003-04-02 paf
13421:
13422: * src/: include/pa_operation.h, include/pa_request.h,
13423: main/compile.C, main/compile.tab.C, main/compile.y,
13424: main/compile_tools.C, main/compile_tools.h, main/execute.C,
13425: main/pa_exception.C, main/pa_request.C: debug info: started
13426: using. todo:complete
13427:
13428: * src/: classes/op.C, include/pa_operation.h, include/pa_request.h,
13429: main/compile.C, main/compile.tab.C, main/compile.y,
13430: main/compile_tools.C, main/compile_tools.h, main/execute.C,
13431: main/pa_request.C: prepared debug info todo:use it
13432:
13433: * src/include/pa_operation.h: strange mistake fixed: forgot to
13434: return Operation class->union after switching from autoptrs.
13435:
13436: * tests/: Makefile, results/108.processed, results/117.processed:
13437: meta considered OK [it's up to coder now to remove it not needed]
13438:
13439: * src/main/pa_dictionary.C, tests/Makefile: replace bug fix [broke
13440: Dictionary constructor when moved to gc]
13441:
13442: * src/main/pa_common.C: uncommented http:// file loading
13443:
13444: * src/include/pa_array.h, src/main/execute.C,
13445: src/targets/cgi/parser3.C, tests/run_parser.sh: gif encoder bug
13446: fix [gdGrowingBuf]
13447:
13448: * configure.in, src/lib/Makefile.am: removed patches
13449:
13450: * configure, src/include/pa_config_auto.h.in,
13451: src/main/pa_charset.C: --enable-assertions autoconf-ed
13452:
13453: * src/main/pa_common.C: uncommented http:// file loading
13454:
13455: * src/: classes/xdoc.C, types/pa_vxdoc.h: removed ref leak in
13456: xdoc::create/load
13457:
13458: * src/: classes/form.C, classes/hash.C, classes/image.C,
13459: classes/string.C, classes/table.C, classes/void.C,
13460: include/pa_common.h, main/pa_common.C, main/pa_request.C,
13461: main/pa_sql_driver_manager.C, main/pa_string.C: all calls to
13462: String::String(str,helper_length) are checked. found/fixed one
13463: place: $request:body now zero-terminated,
13464:
13465: * src/: classes/op.C, classes/table.C, include/pa_request.h,
13466: main/compile_tools.C, main/execute.C, types/pa_value.h,
13467: types/pa_vbool.h, types/pa_vclass.h, types/pa_vdate.h,
13468: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
13469: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
13470: types/pa_vobject.C, types/pa_vobject.h, types/pa_vstring.h,
13471: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
13472: types/pa_vxnode.h: more locally scoped vars in execute (more
13473: easily optimizable)
13474:
13475: * src/: classes/table.C, include/pa_table.h, main/pa_table.C: few
13476: for(size_t i=0...) -> for(Array_iterator... i(..); i.has_next()
13477:
13478: * src/: include/pa_array.h, include/pa_stack.h,
13479: include/pa_string.h, main/compile_tools.C, main/main.dsp,
13480: main/pa_table.C, types/pa_vmethod_frame.C: array get/put check
13481: become assertion iterator in methodframe filler
13482:
13483: * src/: include/pa_array.h, include/pa_stack.h, main/main.dsp,
13484: targets/cgi/parser3.C: array::get/put inlined
13485:
13486: * src/: lib/cord/cordbscs.c, main/pa_globals.C: globals.c:
13487: gc_substitute_memory_management_functions +installed CORD_oom
13488: function
13489:
13490: * configure.in, src/classes/xnode.C, src/include/pa_config_fixed.h,
13491: src/include/pa_config_includes.h, src/include/pa_string.h,
13492: src/lib/cord/cordbscs.c, src/main/pa_memory.C,
13493: src/targets/cgi/parser3.C: converted debug hacks to ANSI
13494: assertions started configure.in --enable-assertions
13495:
13496: 2003-04-01 paf
13497:
13498: * src/: classes/xdoc.C, classes/xnode.h, include/pa_memory.h,
13499: main/pa_memory.C, targets/cgi/parser3.C, types/pa_vxdoc.h,
13500: types/pa_vxnode.C, types/pa_vxnode.h: memory bug debugged down:
13501: gdome uses glib memory, and stores last pointer to xmlDoc there,
13502: gc misses that and collects valid memory fixed by remembering
13503: xmlDoc from dom object in xdoc. todo: do something with
13504: premature free of xdoc with xnodes/node values referring into it
13505:
13506: * src/classes/: mail.C: typo fix
13507:
13508: * src/main/pa_memory.C: bug() to set bpt in (memory.c) some .am
13509: changes
13510:
13511: * src/: include/pa_memory.h, main/pa_common.C, main/pa_globals.C,
13512: main/pa_memory.C: moved memory debugging to global level: to
13513: pa_gc_malloc
13514:
13515: * src/: main/pa_globals.C, targets/cgi/parser3.C: xml memory
13516: debugging showed no errors. todo: debug parser memory
13517:
13518: * src/targets/cgi/: parser3.C, parser3.dsp: more build
13519: configurations
13520:
13521: * src/: classes/classes.dsp, include/pa_config_fixed.h,
13522: main/compile.tab.C, main/main.dsp, main/pa_globals.C,
13523: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
13524: types/types.dsp: prepared xml-static configuration
13525:
13526: 2003-03-31 paf
13527:
13528: * INSTALL, src/classes/xdoc.C, src/main/pa_globals.C,
13529: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp: started
13530: xml lib memory debugging, simple checks failed: it seems that
13531: library does realloc(bad ptr), and recording those ptrs in heap
13532: [for debugging] was bad: heap situation changes = everything
13533: works fine
13534:
13535: * src/: main/pa_charset.C, include/pa_charset.h: worked around
13536: xmlRegisterCharEncodingHandler limitation [currently imposed
13537: limit of 10 user-defined charsets]
13538:
13539: 2003-03-28 paf
13540:
13541: * src/main/execute.C: execution stack copied to local register
13542: variable, removed lots [~2e7) of memory accesses
13543:
13544: 2003-03-27 paf
13545:
13546: * src/: classes/xdoc.C, main/pa_globals.C: XML memory funcs to GC
13547: works in debug, but fails in release todo: fix that
13548:
13549: * src/: classes/xdoc.C, main/compile.tab.C, main/pa_globals.C,
13550: targets/cgi/parser3.C: forgot to merge XML memory funcs
13551: replacement from gc branch
13552:
13553: * src/main/pa_exec.C: introducing append_help_length [radical
13554: improvement here]
13555:
13556: * src/targets/cgi/parser3.C: GC_java_finalization turned off [was
13557: 'not recommened' in gc.h, on win32 noticed no difference]
13558:
13559: * src/include/pa_array.h: returned checked array get [were disabled
13560: for debugging] result:not slower [don't understand that, it were
13561: INLINED] todo: find out a way of inlining it!
13562:
13563: * src/: include/pa_string.h, lib/gc/include/gc.h,
13564: lib/gc/include/gc_fake.h, main/compile.tab.C,
13565: targets/cgi/parser3.C, main/pa_memory.C, targets/cgi/parser3.dsp:
13566: convention changed: all resulting strings are zero-terminated
13567:
13568: * src/: classes/date.C, classes/file.C, classes/hash.C,
13569: classes/string.C, classes/table.C, classes/void.C,
13570: include/pa_string.h, lib/cord/cord.dsp, lib/cord/cordbscs.c,
13571: lib/cord/include/cord.h, main/compile.tab.C, main/compile.y,
13572: main/compile_tools.h, main/pa_common.C, main/pa_exec.C,
13573: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
13574: sql/pa_sql_driver.h, types/pa_value.C, types/pa_venv.h,
13575: types/pa_vfile.C, types/pa_vmail.C: introducing
13576: append_help_length [radical improvement here]
13577:
13578: * src/: classes/memory.C, include/pa_array.h, include/pa_hash.h,
13579: include/pa_memory.h, lib/cord/cord.dsp, lib/cord/cordxtra.c,
13580: lib/gc/include/gc.h, main/pa_memory.C, targets/cgi/parser3.C,
13581: targets/cgi/parser3.dsp, types/pa_vstatus.C: disabled gc, become
13582: even slower
13583:
13584: * src/: classes/string.C, classes/table.C, include/pa_array.h,
13585: include/pa_stack.h, include/pa_string.h, main/compile_tools.C,
13586: main/pa_string.C, main/untaint.C, types/pa_vmethod_frame.C: fixed
13587: clients of &get(): most to use non-ref version, some[in tight
13588: places] to get_unchecked_ref
13589:
13590: * src/doc/memory.dox: forgot to add
13591:
13592: * src/: classes/classes.dsp, classes/memory.C, classes/xdoc.C,
13593: include/pa_array.h, include/pa_request.h, include/pa_stack.h,
13594: include/pa_string.h, lib/cord/cord.dsp, lib/ltdl/libltdl.dsp,
13595: lib/md5/md5.dsp, lib/pcre/pcre.dsp, main/compile.tab.C,
13596: main/compile.y, main/compile_tools.C, main/compile_tools.h,
13597: main/main.dsp, main/pa_string.C, targets/cgi/parser3.C,
13598: targets/cgi/parser3.dsp, types/pa_vmail.C,
13599: types/pa_vmethod_frame.C, types/types.dsp: Array::put(index,
13600: T>>&<< removed after Stack::pop wiping removed [moved to separate
13601: func] other Array & removed
13602:
13603: 2003-03-26 paf
13604:
13605: * src/: classes/classes.dsp, classes/file.C, classes/op.C,
13606: classes/table.C, include/pa_array.h, include/pa_charset.h,
13607: include/pa_stack.h, include/pa_string.h, include/pa_table.h,
13608: lib/cord/cord.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
13609: lib/pcre/pcre.dsp, main/compile.tab.C, main/compile.y,
13610: main/main.dsp, main/pa_charset.C, main/pa_common.C,
13611: main/pa_exec.C, main/pa_sql_driver_manager.C,
13612: main/pa_stylesheet_manager.C, main/pa_table.C,
13613: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
13614: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
13615: types/pa_vobject.C, types/pa_vobject.h, types/types.dsp:
13616: pre-evaluated .count() in some places
13617:
13618: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
13619: lib/pcre/pcre.dsp, main/main.dsp, targets/cgi/parser3.dsp,
13620: types/types.dsp: .dsp profiling updated
13621:
13622: * src/: classes/classes.dsp, lib/cord/cord.dsp,
13623: lib/ltdl/libltdl.dsp, lib/md5/md5.dsp, main/main.dsp,
13624: targets/cgi/parser3.dsp, types/types.dsp: started profiling
13625:
13626: * src/: classes/classes.dsp, lib/cord/cord.dsp, main/compile.tab.C,
13627: main/compile_tools.h, main/main.dsp, targets/cgi/parser3.dsp,
13628: targets/isapi/parser3isapi.dsp, types/types.dsp: .dsp updated to
13629: use lib/gc,lib/cord
13630:
1.116 moko 13631: * acsite.m4, src/classes/Makefile.am, src/classes/mail.C,
13632: src/classes/math.C, src/classes/op.C, src/include/pa_common.h,
1.95 moko 13633: src/include/pa_config_auto.h.in, src/include/pa_config_fixed.h,
13634: src/include/pa_config_includes.h, src/include/pa_request.h,
13635: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
13636: src/include/pa_stylesheet_connection.h, src/include/pa_version.h,
1.116 moko 13637: src/lib/Makefile.am, src/lib/cord/Makefile.am,
1.95 moko 13638: src/lib/cord/include/Makefile.am,
1.116 moko 13639: src/lib/cord/include/private/Makefile.am, src/main/Makefile.am,
13640: src/main/pa_exec.C, src/main/pa_string.C, src/main/untaint.C,
13641: src/targets/cgi/Makefile.am, src/types/Makefile.am,
13642: src/types/pa_vclass.h, src/types/pa_vcookie.h,
13643: src/types/pa_vform.h, src/types/pa_vhash.h,
13644: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.h,
13645: src/types/pa_vresponse.h, src/types/pa_vstateless_class.h,
13646: src/types/pa_vstatus.C, src/types/pa_vstatus.h,
13647: src/types/pa_vtable.h, src/types/pa_vxdoc.h: configured math
13648: funcs ported pa_exec
1.95 moko 13649:
13650: * src/lib/: cord/include/gc.h, gc/include/gc.h: introducing lib/gc
13651:
13652: * src/lib/cord/include/: cord.h, ec.h, gc.h, private/cord_pos.h:
13653: bundled gc includes
13654:
13655: * src/: classes/op.C, include/pa_array.h,
13656: include/pa_sql_connection.h, include/pa_string.h,
13657: include/pa_version.h, main/compile.tab.C, main/compile.y,
13658: main/execute.C, main/pa_common.C, main/pa_exception.C,
13659: main/pa_request.C, main/pa_string.C, targets/cgi/parser3.C,
13660: targets/cgi/parser3.dsp: a number of bugfixes [while testing
13661: first real site (aval)]
13662:
13663: 2003-03-25 paf
13664:
13665: * operators.txt, src/main/pa_sql_driver_manager.C,
13666: src/types/pa_vstatus.C: $status.memory used free since_compact
13667: process
13668:
13669: * src/: include/pa_sql_connection.h, main/pa_globals.C,
13670: main/untaint.C, sql/pa_sql_driver.h: untaint.C L_SQL
13671:
13672: * src/main/: pa_charset.C, untaint.C: untaint.C L_MAIL_HEADER
13673:
13674: * src/main/pa_request.C, src/main/untaint.C, src/types/pa_value.C,
13675: src/types/pa_value.h, src/types/pa_vfile.h,
13676: src/types/pa_vobject.C, src/types/pa_vobject.h,
13677: src/types/pa_vstring.C, src/types/pa_vstring.h, tests/121.html,
13678: tests/results/121.processed: untaint.C L_URI
13679:
13680: * operators.txt, src/classes/Makefile.am, src/classes/classes.dsp,
13681: src/classes/op.C, src/main/pa_request.C, src/types/Makefile.am,
13682: src/types/pa_venv.h, src/types/types.dsp, src/classes/memory.C,
13683: src/types/pa_vmemory.h: ^memory:compact[]
13684:
13685: * tests/results/109.processed: it was a bug in parser. updated 109
13686: test result
13687:
13688: * src/classes/xdoc.C, tests/Makefile: fixed transform params2
13689:
13690: * src/main/pa_charset.C, src/targets/cgi/parser3.C, tests/Makefile,
13691: tests/results/107.processed: fixed dom language [values are now
13692: considered tainted. it was a bug in parser. updated 107 test
13693: result
13694:
13695: * src/classes/xdoc.C: fixed transform params
13696:
13697: * src/: include/pa_stylesheet_manager.h,
13698: main/pa_stylesheet_manager.C: fixed stylesheet caching
13699:
13700: * src/: include/pa_memory.h, main/pa_charset.C: memory: new 'new'
13701: overloads for structure handling
13702:
13703: * src/: classes/image.C, classes/xdoc.C, classes/xnode.C,
13704: include/pa_string.h, main/pa_string.C, types/pa_vxnode.C: removed
13705: StringBody(0) ambiguilty, introducting static
13706: StringBody::Format(int)
13707:
13708: * src/: main/pa_request.C, types/pa_vxnode.C: vxnode compiled xml
13709: linked
13710:
13711: * src/types/pa_vxdoc.C: vxdoc compiled
13712:
13713: * src/: classes/xnode.C, classes/xnode.h, include/pa_memory.h,
13714: types/pa_vxdoc.h, types/pa_vxnode.h: xnode.C compiled, doc/node
13715: finalizers isntalled
13716:
13717: * src/: classes/image.C, classes/xdoc.C, classes/xnode.h,
13718: doc/exception.dox, doc/index.dox, include/pa_charset.h,
13719: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
13720: main/pa_charset.C, main/pa_memory.C, main/pa_string.C: xdoc.C
13721: compiled todo: xnode.C / finalizers
13722:
13723: * src/doc/string.dox: updated: new string internals
13724:
13725: 2003-03-24 paf
13726:
13727: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
13728: include/pa_charset.h, include/pa_config_fixed.h,
13729: include/pa_request.h, include/pa_stylesheet_connection.h,
13730: include/pa_stylesheet_manager.h, main/pa_charset.C,
13731: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
13732: main/pa_stylesheet_manager.C, types/pa_vxdoc.h,
13733: types/pa_vxnode.h: started XML
13734:
13735: * src/main/: pa_common.C, pa_sql_driver_manager.C: http://
13736:
13737: * src/: classes/file.C, classes/image.C, classes/mail.C,
13738: include/pa_string.h, main/pa_common.C,
13739: main/pa_sql_driver_manager.C: introducing string[body]::pos(char)
13740:
13741: * src/: classes/file.C, classes/image.C, classes/mail.C,
13742: include/pa_memory.h, include/pa_string.h, main/pa_common.C,
13743: main/pa_request.C, main/pa_sql_driver_manager.C,
13744: types/pa_vimage.h: size_t pos everywhere checks changed to check
13745: for eq STRING_NOT_FOUND
13746:
13747: * src/main/pa_string.C, src/main/untaint.C, tests/Makefile: string
13748: optimize bit implemented
13749:
13750: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
13751: String::ArrayFragment::append_positions fixed
13752:
13753: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
13754: String::this_starts fixed
13755:
13756: * src/main/pa_string.C, tests/Makefile: string::pos fixed
13757:
13758: * src/: include/pa_hash.h, main/execute.C, main/pa_string.C:
13759: hashcode implemented fully, including per-char callback [it can
13760: be - substr CORD node]
13761:
13762: * src/: include/pa_array.h, main/compile.tab.C: gif encoding
13763: rewritten to rewalloc with 100byte buf ahead
13764:
13765: * src/classes/image.C, src/classes/op.C, src/classes/table.C,
13766: src/include/pa_string.h, src/main/compile.tab.C,
13767: src/main/compile.y, src/main/execute.C, src/main/pa_common.C,
13768: src/main/untaint.C, tests/Makefile: attempt to do gif encoding to
13769: CORD_ec [bad] would rewrite as realloc now
13770:
13771: * src/: classes/date.C, classes/file.C, classes/form.C,
13772: classes/image.C, classes/math.C, classes/op.C, classes/table.C,
13773: include/pa_cache_managers.h, include/pa_charsets.h,
13774: include/pa_common.h, include/pa_request.h,
13775: include/pa_sql_driver_manager.h, include/pa_table.h,
13776: main/pa_charset.C, main/pa_exception.C, main/pa_exec.C,
13777: main/pa_globals.C, main/pa_request.C, main/pa_uue.C,
13778: targets/isapi/parser3isapi.C, types/pa_value.C, types/pa_value.h,
13779: types/pa_vmail.C, types/pa_vmethod_frame.C,
13780: types/pa_vstateless_class.h: 2*2 worked :)
13781:
13782: * parser3.dsw, src/classes/date.C, src/classes/file.C,
13783: src/include/pa_exec.h, src/include/pa_string.h,
13784: src/main/pa_exec.C, src/main/pa_sql_driver_manager.C: empty run
13785: passed OK
13786:
13787: * src/: classes/hash.C, classes/string.C, classes/table.C,
13788: types/pa_value.C: all linked todo: debug
13789:
13790: * src/: classes/mail.C, main/pa_request.C, targets/cgi/parser3.C,
13791: types/pa_vstateless_class.C: all compiled. todo:link
13792:
13793: * src/types/pa_wcontext.C: pa_wcontext.C compiled
13794:
13795: * src/types/pa_vtable.C: pa_vtable.C compiled
13796:
13797: * src/types/pa_vstring.C: pa_vstring.C compiled
13798:
13799: * src/types/pa_vstatus.C: pa_vstatus.C compiled
13800:
13801: * src/types/: pa_vmath.C, pa_vmethod_frame.C, pa_vmethod_frame.h,
13802: pa_vobject.C, pa_vrequest.C, pa_vresponse.C,
13803: pa_vstateless_class.C, pa_vstateless_class.h:
13804: pa_vstateless_class.C compiled
13805:
13806: * src/: classes/xdoc.C, types/pa_vmail.C, types/pa_vmail.h,
13807: types/pa_vmath.C: pa_vmail.C compiled
13808:
13809: * src/types/: pa_vhash.C, pa_vimage.C: pa_vimage.C compiled
13810:
13811: * src/types/pa_vform.C: pa_vform.C compiled
13812:
13813: * src/types/pa_vfile.C: pa_vfile.C compiled
13814:
13815: * src/types/: pa_value.h, pa_vclass.C, pa_vcookie.C,
13816: pa_vstateless_class.C: pa_vcookie.C compiled
13817:
13818: * src/: classes/string.C, types/pa_value.C, types/pa_value.h,
13819: types/pa_vhash.h: pa_value.C compiled
13820:
13821: * src/: main/execute.C, main/pa_string.C, types/pa_wcontext.h:
13822: classes.lib main.lib compiled
13823:
13824: * src/classes/void.C: void.C compiled
13825:
13826: * src/: classes/string.C, classes/table.C, include/pa_string.h,
13827: main/pa_string.C, types/pa_vtable.C, types/pa_vtable.h: table.C
13828: compiled
13829:
13830: * src/: classes/string.C, include/pa_request.h,
13831: include/pa_string.h, main/pa_string.C: string.C compiled
13832:
13833: * src/: classes/op.C, classes/string.C, classes/table.C,
13834: classes/void.C, include/pa_sql_connection.h, include/pa_string.h,
13835: main/pa_request.C, main/pa_string.C: op.C compiled
13836:
13837: * src/classes/: math.C, op.C: math.C compiled
13838:
13839: * src/: classes/mail.C, classes/string.C, classes/table.C,
13840: types/pa_vmail.h: mail.C compiled
13841:
13842: * src/classes/: int.C, table.C: int.C compiled
13843:
13844: * src/: classes/hash.C, classes/image.C, classes/string.C,
13845: classes/table.C, include/pa_memory.h, include/pa_string.h,
13846: main/pa_memory.C, types/pa_vimage.h, types/pa_vmail.C: image.C
13847: compiled
13848:
13849: * src/: classes/hash.C, classes/string.C, classes/table.C,
13850: classes/void.C, classes/xdoc.C, include/pa_request.h,
13851: include/pa_sql_connection.h: hash.C compiled
13852:
13853: * src/: classes/classes.C, classes/classes.awk, classes/classes.h,
13854: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
13855: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
13856: classes/math.C, classes/op.C, classes/response.C,
13857: classes/string.C, classes/table.C, classes/void.C,
13858: classes/xdoc.C, classes/xnode.C, include/pa_memory.h,
13859: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
13860: main/pa_string.C, types/pa_vdate.h, types/pa_vmethod_frame.h:
13861: file.C table.C compiled
13862:
13863: * src/: include/pa_string.h, main/pa_string.C, main/pa_uue.C,
13864: main/untaint.C: main.lib compiled
13865:
13866: 2003-03-21 paf
13867:
13868: * src/: classes/op.C, include/pa_cache_managers.h,
13869: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
13870: include/pa_stylesheet_manager.h, main/pa_exception.C,
13871: main/pa_globals.C, main/pa_sql_driver_manager.C,
13872: sql/pa_sql_driver.h, types/pa_vimage.C: pa_sql_driver_manager.C
13873: compiled
13874:
13875: * src/: classes/hash.C, classes/image.C, classes/op.C,
13876: classes/xdoc.C, classes/xnode.C, include/pa_common.h,
13877: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
13878: main/compile.C, main/pa_common.C, main/pa_request.C,
13879: types/pa_vmail.C, types/pa_vresponse.C, types/pa_vxnode.C:
13880: pa_request.C compiled
13881:
13882: * src/: classes/hash.C, classes/mail.C, classes/op.C,
13883: include/pa_request.h, main/execute.C, main/pa_request.C,
13884: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
13885: types/pa_vhash.h, types/pa_vimage.C, types/pa_vmethod_frame.h,
13886: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
13887: types/pa_vresponse.h, types/pa_vtable.C: pa_request.C 50%
13888: compiled
13889:
13890: * src/: include/pa_exec.h, include/pa_string.h, main/pa_exec.C,
13891: main/pa_string.C: pa_exec.C compiled [win32 only for now] todo:
13892: on unix
13893:
13894: * src/: include/pa_charset.h, include/pa_charsets.h,
13895: include/pa_exec.h, main/compile.tab.C, main/pa_charset.C,
13896: main/pa_charsets.C, main/pa_dictionary.C, main/pa_exec.C:
13897: pa_charsets.C compiled
13898:
13899: * src/: classes/image.C, classes/mail.C, classes/op.C,
13900: include/pa_request.h, include/pa_string.h, main/compile.tab.C,
13901: main/compile.y, main/execute.C, main/pa_common.C,
13902: main/pa_request.C, types/pa_junction.h, types/pa_method.h,
13903: types/pa_vcode_frame.h, types/pa_vimage.h,
13904: types/pa_vmethod_frame.h: execute.C compiled
13905:
13906: * src/: classes/classes.C, classes/classes.h, classes/date.C,
13907: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
13908: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
13909: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
13910: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
13911: include/pa_cache_managers.h, include/pa_charsets.h,
13912: include/pa_common.h, include/pa_exec.h, include/pa_memory.h,
13913: include/pa_operation.h, include/pa_request.h, include/pa_sapi.h,
13914: include/pa_sql_driver_manager.h, include/pa_string.h,
13915: include/pa_stylesheet_connection.h,
13916: include/pa_stylesheet_manager.h, include/pa_table.h,
13917: main/compile.C, main/compile.tab.C, main/compile.y,
13918: main/compile_tools.C, main/compile_tools.h, main/execute.C,
13919: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
13920: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C,
13921: main/pa_string.C, main/pa_stylesheet_manager.C, main/untaint.C,
13922: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
13923: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
13924: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
13925: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
13926: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
13927: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
13928: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
13929: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
13930: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
13931: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
13932: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
13933: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
13934: types/pa_vresponse.h, types/pa_vstateless_class.C,
13935: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
13936: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
13937: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
13938: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
13939: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
13940: types/pa_wcontext.h, types/pa_wwrapper.h: introducing StringBody
13941: [C++ CORD wrapper]
13942:
13943: * src/: lib/cord/cordbscs.c, main/pa_string.C: test14 [bug fixed]
13944:
13945: * src/: classes/file.C, include/pa_charset.h, main/pa_charset.C:
13946: $file::exec/cgi[script; $.charset[this is script's charset]
13947:
13948: command line, env values, input got transcoded before call
13949: stdout, stderr got transcoded after call
13950:
13951: * src/classes/file.C: ^file::exec/cgi now does not pass post data
13952: by default. use: ^file::exec[...;$.stdin[$request.body]
13953:
13954: * src/main/pa_common.C: } typo bug fix
13955:
13956: * src/main/pa_common.C: } typo bug fix
13957:
13958: 2003-03-20 paf
13959:
13960: * src/: include/pa_string.h, lib/cord/cordbscs.c, main/pa_string.C,
13961: main/untaint.C: cord bug fix, but still errors todo: clear out
13962:
13963: * src/include/pa_string.h: more tests
13964:
13965: * src/main/pa_string.C: string.pos fixed
13966:
1.116 moko 13967: * src/lib/: ltdl/config_fixed.h, ltdl/configure, ltdl/configure.in,
13968: ltdl/libltdl.dsp, ltdl/ltdl.c, ltdl/ltdl.h, pcre/dftables.c,
13969: pcre/get.c, pcre/internal.h, pcre/maketables.c, pcre/pcre.c,
13970: pcre/pcre.h, pcre/pcre_parser_ctype.c, pcre/study.c: undone bad
13971: replaces
1.95 moko 13972:
13973: * src/: classes/image.C, include/pa_dictionary.h,
13974: include/pa_string.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
13975: lib/pcre/internal.h, lib/pcre/pcre.c, lib/pcre/study.c,
13976: main/compile.tab.C, main/pa_dictionary.C, main/pa_string.C,
13977: main/untaint.C, types/pa_vmail.C: more tests [bugs fixed]
13978:
13979: * src/include/pa_string.h: warning
13980:
13981: * src/include/pa_string.h: this_starts fixed
13982:
13983: * src/: include/pa_string.h, main/pa_string.C: added: assertion on
13984: new String ctor & append params convention
13985:
13986: * src/: classes/file.C, classes/hash.C, classes/image.C,
13987: classes/mail.C, classes/op.C, classes/string.C, classes/table.C,
13988: classes/xdoc.C, include/pa_common.h, include/pa_memory.h,
13989: include/pa_string.h, main/compile.tab.C, main/pa_common.C,
13990: main/pa_exception.C, main/pa_exec.C,
13991: main/pa_sql_driver_manager.C, main/pa_string.C,
13992: main/pa_stylesheet_manager.C, main/untaint.C,
13993: targets/isapi/parser3isapi.C, types/pa_vimage.C,
13994: types/pa_vmail.C: more tests OK
13995:
13996: * src/: include/pa_array.h, include/pa_hash.h, include/pa_memory.h,
13997: include/pa_string.h, main/pa_memory.C, main/pa_string.C: test:
13998: gc/exit runned OK
13999:
14000: * src/types/pa_vmail.C: another naming problem: should not name
14001: vars like that: unpredictable close caused problems with later
14002: sending mail: Mar 20 06:39:53 pt-6 sendmail[19044]: File
14003: descriptors missing on startup: stdin; Bad file number
14004:
14005: todo: find out why so many filters(stream) here. probably wrong?
14006:
14007: * src/: include/pa_dictionary.h, include/pa_string.h,
14008: main/pa_common.C, main/pa_dictionary.C, main/pa_string.C,
14009: main/untaint.C: test compiled
14010:
14011: * src/: classes/image.C, classes/mail.C, classes/math.C,
14012: classes/string.C, include/pa_dictionary.h, include/pa_hash.h,
14013: include/pa_memory.h, include/pa_string.h, lib/cord/cordbscs.c,
14014: lib/cord/cordxtra.c, lib/pcre/dftables.c, lib/pcre/get.c,
14015: lib/pcre/maketables.c, lib/pcre/pcre.c, lib/pcre/pcre.h,
14016: lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
14017: main/compile.tab.C, main/pa_common.C, main/pa_dictionary.C,
14018: main/pa_exec.C, main/pa_memory.C, main/pa_request.C,
14019: main/pa_string.C, main/untaint.C, types/pa_vfile.h,
14020: types/pa_vmail.C: untaint.C 99% [except mail&sql&optimize]
14021:
14022: * parser3.dsw, src/classes/file.C, src/classes/image.C,
14023: src/classes/op.C, src/classes/string.C, src/classes/table.C,
14024: src/classes/xdoc.C, src/classes/xnode.C, src/include/pa_common.h,
14025: src/include/pa_memory.h, src/include/pa_request.h,
14026: src/include/pa_request_charsets.h,
14027: src/include/pa_sql_connection.h, src/include/pa_string.h,
14028: src/main/compile.tab.C, src/main/execute.C,
14029: src/main/pa_charset.C, src/main/pa_common.C,
14030: src/main/pa_exception.C, src/main/pa_exec.C,
14031: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
14032: src/main/pa_stylesheet_manager.C, src/main/untaint.C,
14033: src/sql/pa_sql_driver.h, src/targets/cgi/parser3.C,
14034: src/targets/isapi/parser3isapi.C, src/types/pa_value.C,
14035: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
14036: src/types/pa_venv.h, src/types/pa_vform.C, src/types/pa_vmail.C,
14037: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
14038: src/types/pa_vobject.C, src/types/pa_vresponse.C,
14039: src/types/pa_vstatus.C, src/types/pa_vstring.C,
14040: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
14041: src/types/pa_vxnode.C, src/types/pa_wcontext.h: untaint.C 30%,
14042: pa_common.C [done, without http for now]
14043:
14044: 2003-03-19 paf
14045:
14046: * src/: classes/date.C, classes/form.C, classes/hash.C,
14047: classes/image.C, classes/mail.C, classes/op.C, classes/xdoc.C,
14048: classes/xnode.C, include/pa_array.h, include/pa_config_fixed.h,
14049: include/pa_exception.h, include/pa_memory.h, include/pa_sapi.h,
14050: include/pa_string.h, include/pa_table.h, main/compile.C,
14051: main/compile_tools.C, main/execute.C, main/pa_charset.C,
14052: main/pa_common.C, main/pa_exception.C, main/pa_request.C,
14053: main/pa_socks.C, main/pa_string.C, main/pa_table.C,
14054: main/untaint.C, targets/cgi/parser3.C, targets/cgi/parser3.dsp,
14055: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.h,
14056: types/pa_vform.C, types/pa_vmail.C, types/pa_vmethod_frame.h,
14057: types/pa_vstateless_class.h, types/pa_vtable.C,
14058: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.C,
14059: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
14060: types/pa_wwrapper.h: started test
14061:
1.116 moko 14062: * src/lib/pcre/: dftables.c, get.c, maketables.c, pcre.c, pcre.dsp,
14063: pcre.h, pcre_parser_ctype.c, study.c: restored bad replaces
1.95 moko 14064:
14065: * src/: classes/op.C, include/pa_array.h, include/pa_memory.h,
14066: include/pa_string.h, main/pa_string.C: string compiled todo: test
14067: it
14068:
14069: * src/: classes/classes.dsp, classes/string.C, classes/table.C,
14070: include/pa_array.h, include/pa_common.h, include/pa_dictionary.h,
14071: include/pa_exception.h, include/pa_string.h, include/pa_table.h,
14072: lib/cord/cord.dsp, main/compile.tab.C, main/main.dsp,
14073: main/pa_common.C, main/pa_string.C, targets/cgi/parser3.dsp,
14074: types/pa_method.h, types/pa_value.h, types/pa_vmethod_frame.C,
14075: types/pa_vmethod_frame.h, types/types.dsp: string
14076: reimplementation with cord+array<fragment>: 70%
14077:
14078: 2003-03-18 paf
14079:
14080: * src/: classes/date.C, classes/file.C, classes/form.C,
14081: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
14082: classes/op.C, classes/string.C, classes/table.C, classes/xdoc.C,
14083: classes/xnode.C, include/pa_hash.h, include/pa_string.h,
14084: main/pa_string.C, types/pa_vmail.C: lots of replacements, todo:we
14085: can ignore lang in cmp and pos really, but would
14086: split properly!
14087:
14088: * src/lib/cord/: cord.dsp, cordbscs.c, cordprnt.c, cordxtra.c: gc:
14089: cord part made parser/src/lib: it's not compiled into libgc by
14090: default
14091:
14092: * parser3.dsw, src/classes/classes.dsp, src/classes/classes.h,
14093: src/classes/date.C, src/classes/double.C, src/classes/file.C,
14094: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
14095: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
14096: src/classes/op.C, src/classes/response.C, src/classes/string.C,
14097: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
14098: src/classes/xnode.C, src/classes/xnode.h,
14099: src/include/Makefile.am, src/include/pa_cache_managers.h,
14100: src/include/pa_charset.h, src/include/pa_charsets.h,
14101: src/include/pa_common.h, src/include/pa_dictionary.h,
14102: src/include/pa_exception.h, src/include/pa_exec.h,
14103: src/include/pa_globals.h, src/include/pa_hash.h,
14104: src/include/pa_memory.h, src/include/pa_pool.h,
14105: src/include/pa_request.h, src/include/pa_request_charsets.h,
14106: src/include/pa_sapi.h, src/include/pa_sql_connection.h,
14107: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
14108: src/include/pa_stylesheet_connection.h,
14109: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
14110: src/include/pa_uue.h, src/lib/pcre/get.c, src/main/Makefile.am,
14111: src/main/compile.C, src/main/compile.tab.C,
14112: src/main/compile_tools.C, src/main/compile_tools.h,
14113: src/main/execute.C, src/main/main.dsp, src/main/pa_charset.C,
14114: src/main/pa_charsets.C, src/main/pa_common.C,
14115: src/main/pa_dictionary.C, src/main/pa_exception.C,
14116: src/main/pa_exec.C, src/main/pa_globals.C, src/main/pa_memory.C,
14117: src/main/pa_pool.C, src/main/pa_request.C,
14118: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
14119: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
14120: src/main/pa_uue.C, src/main/untaint.C, src/targets/cgi/parser3.C,
14121: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
14122: src/types/pa_junction.h, src/types/pa_method.h,
14123: src/types/pa_value.C, src/types/pa_value.h,
14124: src/types/pa_vclass.C, src/types/pa_vclass.h,
14125: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
14126: src/types/pa_vcookie.h, src/types/pa_vdate.h,
14127: src/types/pa_vdouble.h, src/types/pa_venv.h,
14128: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
14129: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
14130: src/types/pa_vimage.C, src/types/pa_vimage.h,
14131: src/types/pa_vint.h, src/types/pa_vmail.C, src/types/pa_vmail.h,
14132: src/types/pa_vmath.C, src/types/pa_vmath.h,
14133: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
14134: src/types/pa_vobject.C, src/types/pa_vobject.h,
14135: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
14136: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
14137: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
14138: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
14139: src/types/pa_vstatus.h, src/types/pa_vstring.C,
14140: src/types/pa_vstring.h, src/types/pa_vtable.C,
14141: src/types/pa_vtable.h, src/types/pa_vvoid.h,
14142: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
14143: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
14144: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
14145: src/types/pa_wwrapper.h, src/types/types.dsp: started porting to
14146: gc: PA_Object done lots of replacements also
14147:
14148: * src/: include/pa_pool.h, main/execute.C, targets/cgi/pa_pool.C:
14149: gc logging
14150:
14151: 2003-03-17 paf
14152:
14153: * src/: classes/date.C, classes/file.C, classes/form.C,
14154: classes/image.C, classes/mail.C, classes/op.C, classes/table.C,
14155: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
14156: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
14157: include/pa_string.h, include/pa_types.h, main/compile.C,
14158: main/compile.tab.C, main/execute.C, main/pa_charset.C,
14159: main/pa_common.C, main/pa_exception.C, main/pa_exec.C,
14160: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
14161: main/pa_sql_driver_manager.C, main/pa_string.C,
14162: main/pa_stylesheet_manager.C, main/pa_uue.C, main/untaint.C,
14163: targets/cgi/pa_pool.C, targets/cgi/parser3.C,
14164: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
14165: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.C,
14166: types/pa_vform.C, types/pa_vint.h, types/pa_vmail.C,
14167: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
14168: types/pa_vxnode.h: libgc attempt
14169:
14170: 2003-03-13 paf
14171:
14172: * src/: include/pa_sql_driver_manager.h,
14173: main/pa_sql_driver_manager.C, targets/cgi/parser3.C: lt_dlexit
14174: called
14175:
14176: * src/: include/pa_request.h, lib/ltdl/libltdl.dsp,
14177: lib/md5/md5.dsp, main/compile.tab.C, main/execute.C,
14178: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.C,
14179: types/pa_value.h, types/pa_vobject.h,
14180: types/pa_vstateless_class.h, types/pa_vstatus.C, types/types.dsp:
14181: set_base, set_derived simplified [counter leaks fixed]
14182:
14183: * ChangeLog, src/include/pa_config_fixed.h, src/types/pa_vstatus.C,
14184: src/types/types.dsp: incorporated status class patch From:
14185: "Victor Fedoseev" <vvf_ru@mail.ru> Sent: Thursday, January 23,
14186: 2003 8:14 AM
14187:
14188: now we have $status.rusage.maxrss,tv_sec,tv_usec un WIN32 [plus
14189: Win32 specific: QuotaPeakNonPagedPoolUsage
14190: QuotaPeakPagedPoolUsage PeakPagefileUsage]
14191:
14192: 2003-03-12 paf
14193:
1.116 moko 14194: * configure, configure.in, src/lib/ltdl/configure,
14195: src/lib/ltdl/configure.in, src/targets/cgi/Makefile.am:
1.95 moko 14196: lib/ltdl/Makefile now created by /configure.in only [were by
14197: lib/ltdl/configure.in OVERWRITE]
14198:
1.116 moko 14199: * configure, configure.in, src/targets/cgi/Makefile.am: libstdc++
14200: linkage fixed for g++ 3.2.2
1.95 moko 14201:
14202: * src/include/pa_stylesheet_manager.h: gcc 3.2 rightliy complained
14203: on using privately declared class [fixed]
14204:
14205: * src/: include/pa_sql_driver_manager.h, main/compile.tab.C: gcc
14206: 3.2 rightliy complained on using privately declared class [fixed]
14207:
14208: * src/targets/cgi/parser3.C: 1. more detailed log on signals. 2.
14209: sigpipe before request constructor now causes death
14210:
14211: * src/: include/pa_request.h, main/compile.tab.C, main/execute.C,
14212: targets/cgi/parser3.C: SIGPIPE now can be intercepted and does
14213: not cause exception in exception handler
14214:
1.116 moko 14215: * configure, configure.in, src/targets/cgi/Makefile.am: configure
14216: now default links libstdc++ statically. that can be overriden by
14217: --with-dynamic-stdcpp
1.95 moko 14218:
14219: 2003-03-11 paf
14220:
14221: * src/: main/compile.tab.C, main/compile.y, sql/pa_sql_driver.h,
14222: types/pa_vstateless_class.C, types/pa_vstateless_class.h: removed
14223: necessity of libstdc++
14224:
14225: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
14226:
14227: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
14228:
14229: 2003-03-08 paf
14230:
14231: * tests/Makefile: make install & co
14232:
14233: * src/: include/pa_request.h, classes/op.C: removing
14234: vclass,object.h -> pa_request.h dependency
14235:
14236: * src/: classes/mail.C, classes/response.C, include/pa_request.h,
14237: main/pa_request.C: removing vform,response,cookie.h ->
14238: pa_request.h dependency
14239:
14240: * src/include/pa_request.h: removing vmail.h -> pa_request.h
14241: dependency [testing...]
14242:
14243: * src/: include/pa_config_fixed.h, types/pa_vxdoc.C: yet another
14244: return 0; fixed
14245:
14246: * src/: include/pa_config_fixed.h, types/pa_vmail.C,
14247: types/pa_vmail.h: vmail.C received just compiled [not tested]
14248:
14249: * src/classes/xdoc.C: forgotten: global xdoc when ndef XML
14250:
14251: * src/main/pa_request.C: forgotten: ifdef XML
14252:
14253: * src/main/pa_request.C: forgotten: ifdef XML
14254:
14255: * src/targets/cgi/parser3.C: todo: move to latest xml version on
14256: win32 and run memleak tests again
14257:
14258: * src/targets/cgi/parser3.C: charsets: see some strange things with
14259: old xml lib-- it's internal memory handling has faults
14260:
14261: * src/: include/pa_types.h, main/pa_charset.C: charsets: fixed
14262: problems when transcode from charset A to A.
14263:
14264: * src/: main/untaint.C, types/pa_vmail.C: mail: transcode fixed.
14265: todo: still problems when transcode from charset A to A.
14266:
14267: * src/: classes/hash.C, classes/mail.C, classes/string.C,
14268: classes/table.C, include/pa_array.h,
14269: main/pa_sql_driver_manager.C, types/pa_vmail.C, types/pa_vmail.h:
14270: started full-scale-site-test [~ http://parser.ru sources]
14271:
14272: some fixes
14273:
14274: * tests/: 021.html, 031.html, 033.html, 109.html, 110.html,
14275: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
14276: 117.html, 118.html, 119.html, 120.html, results/109.processed,
14277: results/110.processed, results/111.processed,
14278: results/112.processed, results/113.processed,
14279: results/114.processed, results/115.processed,
14280: results/116.processed, results/117.processed,
14281: results/118.processed, results/119.processed,
14282: results/120.processed: xml: tests 109 dom create/show 110 xpath
14283: selectSingle 111 xdoc.create from tainted & 112
14284: xdoc.create/output with russian attr value 113 xpath
14285: selectString/Number 114 dom attributes.count 115 xpath selectBool
14286: 116 output media-type change 117 transform by dom stylesheet 118
14287: empty transform result 119 dom setAttribute 120 nbsp letter
14288: output
14289:
14290: =END OF PREPARED XML TESTS=
14291:
14292: 2003-03-07 paf
14293:
14294: * src/classes/xdoc.C, src/include/pa_charset.h,
14295: src/include/pa_stylesheet_connection.h, tests/108.html,
14296: tests/108.xsl, tests/results/108.processed: xml: test 108
14297: transform with params [bugs fixed]
14298:
14299: * src/: main/pa_charset.C, targets/cgi/parser3.C: fixed: mem leak
14300: from copy/paste bug
14301:
14302: * src/classes/xdoc.C, src/include/pa_charset.h,
14303: src/include/pa_request.h, src/main/execute.C,
14304: src/main/pa_charset.C, src/main/pa_exception.C,
14305: src/main/pa_globals.C, src/main/pa_request.C,
14306: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
14307: src/types/pa_vxnode.C, tests/107.html,
14308: tests/results/107.processed: xml: test: 107 bug fixes
14309:
14310: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
14311: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
14312: types/pa_vxnode.C, types/pa_vxnode.h: test: 107 bug fixes
14313:
14314: * tests/: 106.html, results/106.processed: test: 106 xdoc create,
14315: string
14316:
14317: * src/: include/pa_charset.h, main/pa_charset.C: xml: charset two
14318: mem alloc functions used for different cases [libxml, libxsl]
14319:
14320: * src/classes/classes.C: fixed: prevent system classes from
14321: modification to lock ALL the classes, not only directly used
14322:
14323: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h: xml:
14324: linked
14325:
14326: * src/: classes/xdoc.C, types/pa_vxdoc.h: xdoc.C compiled
14327:
14328: 2003-03-06 paf
14329:
14330: * src/classes/xdoc.C: xdoc.C 50%
14331:
14332: * src/: classes/xnode.C, classes/xnode.h, include/pa_charset.h,
14333: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
14334: main/pa_globals.C, main/pa_request.C,
14335: main/pa_stylesheet_manager.C: xnode.C compiled
14336:
14337: * src/: include/pa_stylesheet_connection.h,
14338: include/pa_stylesheet_manager.h, main/pa_sql_driver_manager.C,
14339: main/pa_stylesheet_manager.C: xml: stylesheet&manager done
14340:
14341: * src/: include/pa_memory.h, include/pa_stylesheet_connection.h,
14342: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
14343: xml: stylesheet&manager STARTED
14344:
14345: * src/: include/pa_globals.h, main/pa_charset.C,
14346: main/pa_exception.C, main/pa_globals.C: xml: exceptions
14347:
14348: * src/: include/pa_charset.h, include/pa_config_fixed.h,
14349: include/pa_memory.h, include/pa_pool.h, main/pa_charset.C,
14350: main/pa_memory.C, main/pa_pool.C, types/pa_vxdoc.C,
14351: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: xml:
14352: charsets
14353:
14354: * tests/023.html: in some cases it rounded up badly. postponing
14355: solution of that problem, making more simple test
14356:
14357: * tests/: 058_paf2000.png, results/058.processed: .png added with
14358: -kb now
14359:
14360: * src/: include/pa_charset.h, include/pa_charsets.h,
14361: main/pa_charset.C, main/pa_charsets.C: charset_utf8 declaration
14362: moved to charsets.C
14363:
14364: 2003-03-05 paf
14365:
14366: * src/classes/string.C, src/include/pa_string.h,
14367: src/main/pa_string.C, tests/105.html,
14368: tests/results/105.processed: String::match bug fixed
14369:
14370: * src/classes/op.C, src/main/main.dsp, tests/104.html,
14371: tests/results/104.processed: ^bpt operator added [does int3 in
14372: debug build on win32]
14373:
14374: * tests/: 057.html, results/057.processed: test bug fixed
14375:
1.116 moko 14376: * src/targets/cgi/Makefile.am: linker needed more tricks to link OK
1.95 moko 14377:
14378: * src/classes/math.C: can be: crypt in -lcrypt OK, but crypt.h be
14379: missing
14380:
1.116 moko 14381: * src/: include/Makefile.am, main/Makefile.am, types/Makefile.am:
14382: forgotten files added to Makes
1.95 moko 14383:
14384: * ltmain.sh: ltmain.sh added
14385:
14386: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
14387: change undone ;(
14388:
14389: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
14390: made static
14391:
14392: * src/: classes/math.C, classes/op.C, classes/string.C,
1.116 moko 14393: main/pa_exec.C, targets/cgi/Makefile.am: gcc more happy.
14394: todo:make linker happy
1.95 moko 14395:
14396: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C: pa_exec
14397: env param made optional
14398:
14399: 2003-03-04 paf
14400:
14401: * src/: classes/image.C, include/pa_request.h, include/pa_stack.h,
14402: types/pa_vimage.h: number of gcc compiler bugs fixed
14403:
14404: * tests/: 103.html, 103mark.gif, 103paf2001.gif,
14405: results/103.processed: tests: 103 image.copy transparence test
14406:
14407: * src/main/execute.C, tests/101.html, tests/102.html,
14408: tests/results/101.processed, tests/results/102.processed: tests:
14409: 101 method/variable name conflict test 102 form fields change
14410: should not not change anything [bug fix]
14411:
14412: * tests/: 057.html, 099.html, 100.html, results/057.processed,
14413: results/099.processed, results/100.processed: tests: 57 date
14414: create 2002: added 99,100 response:body/download
14415:
14416: * src/classes/image.C, tests/098.html, tests/098font.gif,
14417: tests/results/098.processed: test: 98 image font text [bug fixed]
14418:
14419: * src/main/pa_common.C, src/targets/cgi/parser3.C, tests/097.html,
14420: tests/results/097.processed: test: 97 file::load http:// [bugs
14421: fixed]
14422:
14423: * src/classes/hash.C, src/classes/image.C, src/classes/table.C,
14424: src/include/pa_memory.h, tests/096.html, tests/096_dir/163.jpg,
14425: tests/096_dir/188.jpg, tests/results/096.processed: tests: 96
14426: image EXIF [bug fixed]
14427:
14428: * src/classes/table.C, src/main/execute.C, tests/061.dat,
14429: tests/061.html, tests/062.html, tests/063.html, tests/064.html,
14430: tests/065.html, tests/066.html, tests/067.html, tests/068.html,
14431: tests/069.html, tests/070.html, tests/071.html, tests/072.html,
14432: tests/073.html, tests/074.html, tests/075.html, tests/076.html,
14433: tests/077.html, tests/078.html, tests/080.html, tests/081.html,
14434: tests/082.html, tests/083.html, tests/084.html, tests/085.html,
14435: tests/086.html, tests/087.html, tests/088.html, tests/089.html,
14436: tests/090.html, tests/091.html, tests/092.html, tests/093.html,
14437: tests/094.html, tests/095.html, tests/results/061.processed,
14438: tests/results/062.processed, tests/results/063.processed,
14439: tests/results/064.processed, tests/results/065.processed,
14440: tests/results/066.processed, tests/results/067.processed,
14441: tests/results/068.processed, tests/results/069.processed,
14442: tests/results/070.processed, tests/results/071.processed,
14443: tests/results/072.processed, tests/results/073.processed,
14444: tests/results/074.processed, tests/results/075.processed,
14445: tests/results/076.processed, tests/results/077.processed,
14446: tests/results/078.processed, tests/results/080.processed,
14447: tests/results/081.processed, tests/results/082.processed,
14448: tests/results/083.processed, tests/results/084.processed,
14449: tests/results/085.processed, tests/results/086.processed,
14450: tests/results/087.processed, tests/results/088.processed,
14451: tests/results/089.processed, tests/results/090.processed,
14452: tests/results/091.processed, tests/results/092.processed,
14453: tests/results/093.processed, tests/results/094.processed,
14454: tests/results/095.processed, tests/079.html,
14455: tests/results/079.processed: tests: 61 file::stat size 62
14456: string->int autoconvert 63 double .int,dec,div,mul 64 date
14457: compare 65 file: basename,justname,justext 66 math:crypt 67
14458: string.match simple on long 68 string.match normalized simple on
14459: long 69 string.int 70 file::stat content-type 71 table.join 72
14460: hash parameter conditional pass 73 date daylightsaving,yearday 74
14461: date arithmetics 75 response date values/attributes 76 string.pos
14462: of void, void.pos 77 syntax parsing 78 cookie tainting 79 switch
14463: with local 80 scientific numeric literal in string autoconvert 81
14464: xor: logical and numerical 82 for delims 83 menu delims 84
14465: table.hash distinct 85 long string replace 86 throw+catch
14466: current language preserve 87 bit shifts 88 junction tests +
14467: $caller test 89 hash.foreach selfmodification 90 int/void to int
14468: 91 $caller test 92 junction is + def junction tests 93 $caller
14469: test 94 syntax test 95 table.hash(keygenerator) [bug fixed]
14470:
14471: * src/main/: execute.C, pa_table.C: test: 59 table.locate [bug
14472: fixed] 60 string eq string [bug fixed]
14473:
14474: * tests/: 053.html, 054.html, 055.html, 056.html, 057.html,
14475: 058.html, 058_paf2000.png, 059.html, 060.html,
14476: results/053.processed, results/054.processed,
14477: results/055.processed, results/056.processed,
14478: results/057.processed, results/058.processed,
14479: results/059.processed, results/060.processed: test: 53
14480: string.replace 54 junctions 55 table.hash 56 call indirect 57
14481: date.create[string] 58 image.measure[png]
14482:
14483: * tests/: 052.html, outputs/049.processed, outputs/050.processed,
14484: outputs/051.processed, results/052.processed: test: 52
14485: pre/match/post test: passed AS-IT-WERE, but wrong :) separate
14486: task: fix that
14487:
14488: 2003-03-03 paf
14489:
14490: * tests/: 043.html, 044.html, 045.html, 046.html, 047.html,
14491: 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p, Makefile,
14492: parser-cygwin.sh, parser-unix.sh, run_parser.sh,
14493: outputs/049.processed, outputs/050.processed,
14494: outputs/051.processed, results/001.processed,
14495: results/002.processed, results/003.processed,
14496: results/005.processed, results/006.processed,
14497: results/008.processed, results/009.processed,
14498: results/011.processed, results/012.processed,
14499: results/013.processed, results/014.processed,
14500: results/015.processed, results/016.processed,
14501: results/017.processed, results/020.processed,
14502: results/021.processed, results/022.processed,
14503: results/024.processed, results/025.processed,
14504: results/026.processed, results/027.processed,
14505: results/028.processed, results/029.processed,
14506: results/030.processed, results/031.processed,
14507: results/049.processed, results/050.processed,
14508: results/051.processed, results/043.processed,
14509: results/044.processed, results/045.processed,
14510: results/046.processed, results/047.processed,
14511: results/048.processed: tests: 43,44,45 date rolls 46
14512: autoevaluating junction 47 table.select 48 name with subvar 49
14513: hash-creating switch 50 process 51 started parent/child, works as
14514: it were but it were NOT GOOD, created separate task to fix that
14515:
14516: * tests/: 042.html, results/042.processed: test: 42
14517: exception.handled
14518:
14519: * tests/: 041.html, results/041.processed: test: 41 table.locate by
14520: expression
14521:
14522: * tests/: 040.html, results/040.processed: test: 39 method result
14523: of type table 40 method param junction auto evaluate
14524:
14525: * tests/: 039.html, results/039.processed: test: 37 method result
14526: of type table
14527:
14528: * src/main/pa_request.C, src/types/pa_vmath.C, tests/033.html,
14529: tests/034.html, tests/035.html, tests/036.html, tests/037.html,
14530: tests/038.html, tests/results/033.processed,
14531: tests/results/034.processed, tests/results/035.processed,
14532: tests/results/036.processed, tests/results/037.processed,
14533: tests/results/038.processed: tests: 33 string.replace 34
14534: string.upper 35 table created 36 local/global vars with juntions
14535: 37 table clone 38 math PI & number formatting
14536:
14537: math class registring typo fixed
14538:
14539: * src/classes/op.C, src/include/pa_request.h,
14540: src/include/pa_string.h, src/main/execute.C,
14541: src/main/pa_request.C, src/main/pa_string.C, src/main/untaint.C,
14542: src/types/pa_vcode_frame.h, src/types/pa_wcontext.h,
14543: tests/032.html, tests/results/032.processed: uchar changed to
14544: String_UL in all places [was not everywhere] untaint test: 032
14545:
14546: * src/targets/cgi/parser3.C, tests/004.html, tests/Makefile,
14547: tests/results/004.processed, tests/parser-cygwin.sh,
14548: tests/parser-unix.sh: removed -H command line key, now testing
14549: using .sh file with SERVER_SOFTWARE=xxx
14550:
14551: 2003-02-26 paf
14552:
14553: * src/main/execute.C, src/types/pa_vstateless_class.h,
14554: tests/024.html, tests/025.html, tests/026.html, tests/027.html,
14555: tests/028.html, tests/029.html, tests/030.html, tests/031.html,
14556: tests/results/024.processed, tests/results/025.processed,
14557: tests/results/026.processed, tests/results/027.processed,
14558: tests/results/028.processed, tests/results/029.processed,
14559: tests/results/030.processed, tests/results/031.processed: fixed
14560: bug with name_cstr mutable CharPtr more tests
14561:
14562: * src/: include/pa_sapi.h, main/pa_globals.C, main/pa_memory.C,
14563: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: SAPI::abort
14564: << abort. die now just exits
14565:
14566: * src/classes/classes.awk, src/classes/classes.h,
14567: src/classes/date.C, src/classes/double.C, src/classes/file.C,
14568: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
14569: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
14570: src/classes/op.C, src/classes/response.C, src/classes/string.C,
14571: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
14572: src/classes/xnode.C, src/include/pa_memory.h,
14573: src/include/pa_sapi.h, src/targets/cgi/parser3.C,
14574: src/targets/isapi/parser3isapi.C, src/types/pa_venv.h,
14575: src/types/pa_vform.C, tests/015.html, tests/016.html,
14576: tests/017.html, tests/018.html, tests/019.html,
14577: tests/019paf2001.gif, tests/020.html, tests/021.html,
14578: tests/022.html, tests/023.html, tests/022_dir/a.html,
14579: tests/022_dir/b.txt, tests/022_dir/c.htm,
14580: tests/results/015.processed, tests/results/016.processed,
14581: tests/results/017.processed, tests/results/018.processed,
14582: tests/results/019.processed, tests/results/020.processed,
14583: tests/results/021.processed, tests/results/022.processed,
14584: tests/results/023.processed: methoded_array now contains all Mxxx
14585: classes SAPI::get_env now returns info on pool more tests
14586:
14587: * src/include/pa_array.h, src/include/pa_hash.h,
14588: src/include/pa_memory.h, src/main/pa_charset.C, tests/001.html,
14589: tests/002.html, tests/003.html, tests/004.html, tests/005.html,
14590: tests/006.html, tests/007.html, tests/008.html, tests/009.html,
14591: tests/010.html, tests/011.html, tests/012.html, tests/013.html,
14592: tests/014.html, tests/Makefile, tests/outputs/create-dir,
14593: tests/results/001.processed, tests/results/002.processed,
14594: tests/results/003.processed, tests/results/004.processed,
14595: tests/results/005.processed, tests/results/006.processed,
14596: tests/results/007.processed, tests/results/008.processed,
14597: tests/results/009.processed, tests/results/010.processed,
14598: tests/results/011.processed, tests/results/012.processed,
14599: tests/results/013.processed, tests/results/014.processed: hash
14600: cloning fixed
14601:
14602: 2003-02-25 paf
14603:
14604: * src/main/pa_common.C: typo fixed
14605:
14606: 2003-02-24 paf
14607:
14608: * src/types/pa_vcookie.C: fixed all places with bad get_string(0)
14609: [one remained]
14610:
14611: * src/: include/pa_request.h, main/execute.C: few bad get_string(0)
14612: [should have been get_string(&pool)] todo: check other such calls
14613:
14614: * src/: main/compile.tab.C, main/execute.C, types/pa_vfile.h:
14615: test10, bad lookups
14616:
14617: xxx* xxx=smartptr.get(); << is bad style, after ";" original
14618: object got destructed, and xxx points to sky
14619:
14620: * ChangeLog, src/classes/string.C: match bug fixed
14621:
14622: * src/types/pa_vmail.C: body [text/html] transcoded to
14623: $.charset[specified] now
14624:
14625: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
14626: which failed to handle sigsetjmp+throw: crashed inside of
14627: pre-throw code. rewritten simplier [though duplicating
14628: closesocket code]
14629:
14630: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
14631: which failed to handle sigsetjmp+throw: crashed inside of
14632: pre-throw code. rewritten simplier [though duplicating
14633: closesocket code]
14634:
14635: 2003-02-21 paf
14636:
14637: * operators.txt, src/targets/cgi/parser3.C, src/types/pa_vcookie.C:
14638: $cookie:name[$.expires[date << can be now]]
14639:
14640: written makefile with regression tests [raw]
14641:
14642: * src/targets/cgi/parser3.C: MAKE_TEST must be used inside of 'make
14643: tests' only [it's not forcing CGI mode now] now use -H to output
14644: CGI header when parser used in command line [useful for tests
14645: also]
14646:
14647: * src/targets/cgi/parser3.C: MAKE_TEST environment variable
14648: switches on CGI mode, and is used in regression tests
14649:
14650: * src/: include/pa_request.h, main/pa_request.C,
14651: targets/cgi/parser3.C, types/pa_vcookie.h, types/pa_venv.h: env
14652: fixed
14653:
14654: * src/: include/pa_memory.h, main/pa_memory.C: inlined memory
14655: handling pa_*
14656:
14657: * src/: include/pa_memory.h, main/pa_memory.C, include/pa_array.h,
14658: include/pa_exception.h, include/pa_pool.h, main/Makefile.am,
14659: main/main.dsp, main/pa_array.C, main/pa_pool.C: reorganized
14660: memory handling files
14661:
14662: * src/main/pa_array.C: pool::format_integer terminator fixed
14663:
14664: * src/: main/execute.C, targets/cgi/parser3.C: release mode now
14665: compiles OK test to show benefits of free
14666:
14667: * src/: classes/file.C, classes/image.C, classes/mail.C,
14668: classes/op.C, classes/xdoc.C, main/pa_charset.C, main/pa_exec.C,
14669: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
14670: types/pa_vimage.C, types/pa_vxdoc.h: fixed all cstr's that must
14671: use pool [as the one in ^process]
14672:
14673: * src/classes/op.C: fixed process. sould now check for all cstr's
14674: -- some must use pool [as the one in ^process]
14675:
14676: 2003-02-20 paf
14677:
14678: * src/: classes/date.C, classes/double.C, classes/file.C,
14679: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
14680: classes/math.C, classes/op.C, classes/response.C,
14681: classes/string.C, classes/table.C, classes/void.C,
14682: classes/xdoc.C, classes/xnode.C, main/pa_string.C,
14683: types/pa_method.h, types/pa_value.C, types/pa_vmethod_frame.h:
14684: string cmp fixed
14685:
14686: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C: form
14687: values passed OK now
14688:
14689: 2003-02-19 paf
14690:
14691: * src/: classes/form.C, include/pa_charset.h, include/pa_pool.h,
14692: main/pa_charset.C, main/pa_exception.C, main/pa_request.C,
14693: main/pa_stylesheet_manager.C, targets/cgi/parser3.C,
14694: targets/isapi/parser3isapi.dsp, types/pa_vcookie.C,
14695: types/pa_vform.C, types/pa_vmail.C, types/pa_vxnode.C: found&kill
14696: all remaning leaks resulted from pooled::malloc calls [excluding
14697: in gd -- planning complete rewrite extremely ugly code]
14698:
14699: * src/targets/isapi/: pa_pool.C, pool_storage.h: removed unneeded
14700: files
14701:
14702: 2003-02-17 paf
14703:
14704: * src/: classes/date.C, classes/double.C, classes/file.C,
14705: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
14706: classes/response.C, classes/string.C, classes/table.C,
14707: classes/xdoc.C, classes/xnode.h, include/pa_stack.h,
14708: include/pa_stylesheet_connection.h,
14709: include/pa_stylesheet_manager.h, sql/pa_sql_driver.h,
14710: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
14711: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.h,
14712: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
14713: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
14714: types/pa_wcontext.h, types/pa_wwrapper.h: fixed all remained bugs
14715: of unitialized simple-typed field
14716:
14717: * src/: classes/classes.C, classes/classes.h, main/execute.C,
14718: main/pa_charset.C, main/pa_request.C: another bug of unitialized
14719: simple-typed field fixed. todo: find&kill all like that one
14720:
14721: * src/: main/execute.C, targets/cgi/pa_pool.C,
14722: targets/cgi/parser3.C, targets/cgi/pool_storage.h: few bugs in
14723: debug output fixed
14724:
14725: * src/: include/pa_stack.h, main/compile.C, main/execute.C,
14726: main/pa_request.C: stack-stored items need extra .ref to prevent
14727: object_ptr from delete[them]
14728:
14729: * src/: classes/date.C, classes/op.C, classes/table.C,
14730: classes/xdoc.C, classes/xnode.C, include/pa_array.h,
14731: include/pa_charset.h, main/Makefile.am, main/main.dsp,
14732: main/pa_charset.C, main/pa_common.C,
14733: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
14734: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
14735: types/pa_vmail.C: fixed more leaks resulted from pooled::malloc
14736: calls
14737:
14738: * src/: main/pa_request.C, targets/cgi/parser3.C, types/pa_vfile.C:
14739: couple mem leaks rusulted from old pooled::malloc usage.
14740: todo:find more like those
14741:
14742: * src/main/: compile.C, compile_tools.C: 2*2!
14743:
14744: * src/: include/pa_array.h, include/pa_request.h, main/execute.C:
14745: stackItem fixed [there were no string on stack before]
14746:
14747: * src/: main/execute.C, main/pa_request.C,
14748: types/pa_vmethod_frame.C: first letters out OK
14749:
14750: * src/: classes/classes.C, include/pa_array.h, include/pa_hash.h,
14751: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
14752: main/pa_string.C, main/untaint.C, types/pa_value.h,
14753: types/pa_vint.h, types/pa_vstateless_class.h, types/pa_vstring.h,
14754: types/pa_vvoid.h, types/pa_wcontext.h: class fields of simple
14755: type not initialized with zeros :( while class fields of class
14756: types initialized with default constructors. learn C++
14757:
14758: * src/: classes/classes.awk, classes/double.C, classes/file.C,
14759: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
14760: classes/math.C, classes/xdoc.C, classes/xnode.C,
14761: include/pa_array.h, include/pa_string.h, main/pa_exec.C,
14762: types/pa_vmail.C: parser3.exe - 0 error(s), 0 warning(s)
14763:
14764: 2003-02-14 paf
14765:
14766: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
14767: 13 link errors
14768:
14769: * src/: classes/file.C, include/pa_request.h, main/pa_request.C,
14770: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
14771: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
14772: types/pa_vimage.C, types/pa_vtable.C: all compiled, only 14 link
14773: errors :)
14774:
14775: * src/: classes/classes.C, classes/classes.awk, classes/file.C,
14776: classes/hash.C, classes/mail.C, classes/op.C,
14777: include/pa_common.h, include/pa_request.h, include/pa_sapi.h,
14778: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C,
14779: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C:
14780: classes.lib - 0 error(s), 0 warning(s) parser.C compiled
14781:
14782: * src/: classes/classes.dsp, classes/op.C, classes/string.C,
14783: classes/table.C, include/pa_common.h, include/pa_globals.h,
14784: include/pa_pool.h, include/pa_request.h, main/pa_globals.C,
14785: main/pa_request.C, types/pa_value.h, types/pa_vhash.h,
14786: types/pa_vint.h, types/types.dsp: op compiled
14787:
14788: * src/: classes/classes.dsp, classes/response.C, classes/string.C,
14789: include/pa_dictionary.h, include/pa_string.h, main/pa_string.C,
14790: main/untaint.C, types/pa_vtable.h: string, response compiled
14791:
14792: 2003-02-07 paf
14793:
14794: * src/: classes/table.C, types/pa_vtable.h: table compiled
14795:
14796: 2003-02-06 paf
14797:
14798: * src/: classes/mail.C, include/pa_request.h, main/pa_request.C:
14799: mail compiled
14800:
14801: * src/: classes/image.C, classes/string.C, classes/xdoc.C,
14802: include/pa_common.h, include/pa_hash.h, main/pa_common.C,
14803: types/pa_vfile.h, types/pa_vimage.h: image compiled
14804:
14805: * src/classes/: file.C, form.C: form compiled
14806:
14807: * src/: classes/classes.dsp, classes/file.C, include/pa_common.h,
14808: include/pa_exec.h, main/pa_common.C, main/pa_exec.C,
14809: types/pa_vfile.C, types/pa_vfile.h: file compiled
14810:
14811: * src/: classes/hash.C, classes/math.C, types/pa_vmath.C,
14812: types/pa_vmath.h: math compiled [win32]
14813:
14814: * src/: classes/hash.C, include/pa_hash.h, include/pa_table.h,
14815: types/pa_vstring.h: hash compiled
14816:
14817: 2003-02-04 paf
14818:
14819: * src/: classes/date.C, classes/hash.C, include/pa_exec.h,
14820: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
14821: include/pa_table.h, main/pa_common.C, main/pa_exec.C,
14822: main/pa_string.C, types/pa_method.h, types/pa_vform.C,
14823: types/pa_vhash.h: hash 50% compiled
14824:
14825: * src/: classes/date.C, classes/file.C, classes/hash.C,
14826: classes/image.C, classes/mail.C, classes/math.C, classes/op.C,
14827: classes/string.C, classes/table.C, classes/xdoc.C,
14828: classes/xnode.C, include/pa_request.h, main/pa_globals.C,
14829: main/pa_string.C: date compiled
14830:
14831: * src/classes/: classes.dsp, double.C: double compiled
14832:
14833: * src/: classes/date.C, classes/double.C, classes/file.C,
14834: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
14835: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
14836: classes/string.C, classes/table.C, classes/void.C,
14837: classes/xdoc.C, classes/xnode.C, types/pa_vdouble.h,
14838: types/pa_vhash.h, types/pa_vint.h, types/pa_vstring.h,
14839: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.h: int
14840: compiled
14841:
14842: * src/: classes/date.C, classes/double.C, classes/file.C,
14843: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
14844: classes/math.C, classes/op.C, classes/response.C,
14845: classes/string.C, classes/table.C, classes/void.C,
14846: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
14847: types/pa_vvoid.h: void compiled :)
14848:
14849: * src/: include/pa_globals.h, main/pa_cache_managers.C,
14850: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
14851: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
14852: main/pa_globals.C, main/pa_pool.C, main/pa_sql_driver_manager.C,
14853: main/pa_string.C, main/pa_uue.C, main/untaint.C,
14854: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.C,
14855: types/pa_vimage.C, types/pa_vmath.C, types/pa_vrequest.C,
14856: types/pa_vresponse.C, types/pa_vstateless_class.C,
14857: types/pa_vstatus.C, types/pa_vstring.C, types/pa_vtable.C,
14858: types/pa_wcontext.C, types/types.dsp: removed stupid
14859: value_includes.h
14860:
14861: * src/types/: pa_value.C, pa_value_includes.h, pa_vrequest.C:
14862: trying to remove stupid value_includes.h
14863:
14864: * src/main/pa_exec.C: pa_exec compiled on win32
14865:
14866: * src/main/pa_exec.C: libmain.a compiled on six [unix]
14867:
14868: * src/: include/pa_globals.h, include/pa_request.h,
14869: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
14870: types/pa_vcookie.C, types/pa_vdate.h, types/pa_vfile.C,
14871: types/pa_vfile.h, types/pa_vmail.C, types/pa_vobject.C,
14872: types/pa_vrequest.C, types/pa_vstateless_class.C,
14873: types/pa_vstatus.C, types/pa_vtable.C: libtypes.a compiled gcc
14874:
14875: * src/: include/pa_config_includes.h, include/pa_dictionary.h,
14876: main/pa_common.C, main/pa_dictionary.C, main/pa_exec.C,
14877: main/pa_socks.C: libmain.a gcc and mail.lib msvc++ compiled
14878:
14879: * src/: include/pa_array.h, include/pa_config_includes.h,
14880: include/pa_dictionary.h, main/pa_dictionary.C, main/pa_exec.C,
14881: main/pa_socks.C, main/pa_sql_driver_manager.C: gcc libmain.a
14882: compiled
14883:
14884: * src/main/pa_globals.C: merged changes from 1.149-1.150 (stupid
14885: name conflicts)
14886:
14887: * src/: main/compile_tools.h, main/execute.C, main/pa_table.C,
14888: types/pa_vmethod_frame.h, types/pa_vvoid.h: yuk: gcc on cygwin
14889: yelds "virtual memory exhausted" while trying to compile
14890: execute.C [eating up to 127MB]
14891:
14892: 2003-02-03 paf
14893:
14894: * src/: include/pa_config_includes.h, include/pa_hash.h,
14895: include/pa_operation.h, include/pa_pool.h, include/pa_string.h,
14896: main/pa_common.C, types/pa_value.C, types/pa_value.h,
14897: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
14898: types/pa_vint.h, types/pa_vjunction.h,
14899: types/pa_vstateless_class.h, types/pa_vstring.h, types/types.dsp:
14900: started gcc compiling pa_common compiled
14901:
14902: * src/: include/pa_exception.h, include/pa_pool.h,
14903: main/pa_exception.C: exception gcc change #1
14904:
1.116 moko 14905: * src/include/: Makefile.am, pa_hash.h, pa_pool.h: gcc refused to
14906: compile _P identifier. it replaced it to some strange 0x0000040
1.95 moko 14907:
14908: * src/types/: pa_vmath.C, pa_vmethod_frame.C: vmath compiled
14909:
14910: * src/types/pa_vtable.C: vtable compiled
14911:
14912: * src/types/: pa_vstring.C, pa_vstring.h: vstring compiled
14913:
14914: * src/: include/pa_cache_managers.h, main/pa_request.C,
14915: types/pa_vstatus.C, types/pa_vstatus.h: vstatus compiled
14916:
14917: * src/types/pa_vstateless_class.C: vstateless_class compiled
14918:
14919: * src/types/: pa_vresponse.C, pa_vresponse.h: vresponse compiled
14920:
14921: * src/types/pa_vrequest.C: vrequest compiled
14922:
14923: * src/types/: pa_value.C, pa_value.h, pa_vclass.C, pa_vclass.h,
14924: pa_vobject.C, pa_vobject.h: vobject compiled
14925:
14926: * src/: classes/form.C, classes/mail.C, include/pa_request.h,
14927: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
14928: types/pa_vform.C, types/pa_vmail.C, types/pa_vmail.h: vmail
14929: compiled
14930:
14931: * src/types/: pa_vimage.C, pa_vimage.h: vimage compiled
14932:
14933: * src/: include/pa_pool.h, main/pa_request.C, types/pa_value.C,
14934: types/pa_vclass.C, types/pa_vcookie.C, types/pa_vcookie.h,
14935: types/pa_vform.C, types/pa_vform.h, types/pa_vobject.h: vform
14936: compiled
14937:
14938: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
14939: main.lib - 0 error(s), 0 warning(s)
14940:
14941: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
14942: types/pa_value.h, types/pa_vmethod_frame.h: execute compiled
14943:
14944: 2003-01-31 paf
14945:
14946: * src/: include/pa_array.h, include/pa_operation.h,
14947: include/pa_request.h, main/execute.C, main/main.dsp,
14948: types/pa_vjunction.h: started last file from main library:
14949: execute
14950:
14951: * src/: include/pa_request.h, include/pa_sapi.h,
14952: main/compile.tab.C, main/compile.y, main/compile_tools.h,
14953: main/pa_request.C, targets/cgi/parser3.C,
14954: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vfile.h,
14955: types/pa_vhash.h: pa_request compiled
14956:
14957: * src/: classes/op.C, classes/string.C, include/pa_common.h,
14958: include/pa_globals.h, include/pa_request.h,
14959: include/pa_sql_connection.h, main/compile.tab.C, main/compile.y,
14960: main/execute.C, main/main.dsp, main/pa_common.C,
14961: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
14962: types/pa_vcode_frame.h, types/pa_vcookie.h, types/pa_vform.h,
14963: types/pa_vmail.C, types/pa_vmail.h, types/pa_vresponse.h,
14964: types/pa_vtable.h, types/pa_wcontext.C, types/pa_wcontext.h,
14965: types/types.dsp: most pa_request compiled
14966:
14967: * src/: classes/classes.C, classes/classes.h, classes/date.C,
14968: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
14969: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
14970: classes/op.C, classes/response.C, classes/string.C,
14971: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
14972: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
14973: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
14974: include/pa_config_fixed.h, include/pa_config_includes.h,
14975: include/pa_dictionary.h, include/pa_dir.h,
14976: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
14977: include/pa_hash.h, include/pa_opcode.h, include/pa_operation.h,
14978: include/pa_pool.h, include/pa_request.h,
14979: include/pa_request_charsets.h, include/pa_request_info.h,
14980: include/pa_sapi.h, include/pa_socks.h,
14981: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
14982: include/pa_stack.h, include/pa_string.h,
14983: include/pa_stylesheet_connection.h,
14984: include/pa_stylesheet_manager.h, include/pa_table.h,
14985: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
14986: lib/ltdl/config_fixed.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
14987: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, lib/pcre/dftables.c,
14988: lib/pcre/get.c, lib/pcre/maketables.c, lib/pcre/pcre.c,
14989: lib/pcre/pcre.h, lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
14990: main/compile.C, main/compile.tab.C, main/compile.y,
14991: main/compile_tools.C, main/compile_tools.h, main/execute.C,
14992: main/main.dsp, main/pa_cache_managers.C, main/pa_charset.C,
14993: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
14994: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
14995: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
14996: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
14997: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
14998: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/getopt.c,
14999: targets/cgi/getopt.h, targets/cgi/pa_pool.C,
15000: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
15001: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
15002: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
15003: targets/isapi/pool_storage.h, types/pa_value.C, types/pa_value.h,
15004: types/pa_value_includes.h, types/pa_vbool.h, types/pa_vclass.C,
15005: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
15006: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
15007: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
15008: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
15009: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
15010: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
15011: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
15012: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
15013: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
15014: types/pa_vresponse.h, types/pa_vstateless_class.C,
15015: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
15016: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
15017: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
15018: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
15019: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
15020: types/pa_wcontext.h, types/pa_wwrapper.h: grammar compiled
15021:
15022: * ChangeLog, src/classes/classes.h, src/classes/op.C,
15023: src/include/pa_cache_managers.h, src/include/pa_charset.h,
15024: src/include/pa_charsets.h, src/include/pa_common.h,
15025: src/include/pa_dictionary.h, src/include/pa_exception.h,
15026: src/include/pa_exec.h, src/include/pa_pool.h,
15027: src/include/pa_request.h, src/include/pa_sapi.h,
15028: src/include/pa_sql_connection.h,
15029: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
15030: src/include/pa_table.h, src/include/pa_uue.h, src/main/compile.C,
15031: src/main/compile.tab.C, src/main/compile_tools.C,
15032: src/main/compile_tools.h, src/main/main.dsp,
15033: src/main/pa_charset.C, src/main/pa_charsets.C,
15034: src/main/pa_common.C, src/main/pa_dictionary.C,
15035: src/main/pa_exception.C, src/main/pa_exec.C,
15036: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
15037: src/main/pa_string.C, src/main/pa_table.C, src/main/pa_uue.C,
15038: src/main/untaint.C, src/types/pa_value.C, src/types/pa_value.h,
15039: src/types/pa_vclass.h, src/types/pa_vcookie.C,
15040: src/types/pa_vcookie.h, src/types/pa_vdate.h,
15041: src/types/pa_vdouble.h, src/types/pa_venv.h,
15042: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.h,
15043: src/types/pa_vhash.h, src/types/pa_vimage.C,
15044: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.C,
15045: src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
15046: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
15047: src/types/pa_vobject.C, src/types/pa_vobject.h,
15048: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
15049: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
15050: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
15051: src/types/pa_vstateless_object.h, src/types/pa_vstatus.h,
15052: src/types/pa_vstring.h, src/types/pa_vtable.h,
15053: src/types/pa_vvoid.h, src/types/pa_wcontext.C,
15054: src/types/pa_wcontext.h, src/types/pa_wwrapper.h: ConstStringPtr
15055: died, long live StringPtr
15056:
15057: 2003-01-30 paf
15058:
15059: * src/: include/pa_charset.h, include/pa_request.h,
15060: include/pa_sql_driver_manager.h, main/compile.tab.C,
15061: main/compile.y, main/compile_tools.h, main/pa_request.C,
15062: types/pa_vobject.h, types/pa_vstatus.h: grammar compiled
15063:
15064: * src/: classes/classes.h, include/pa_pool.h, main/compile.C,
15065: main/compile.tab.C, types/pa_value.h, types/pa_vfile.h,
15066: types/pa_vhash.h, types/pa_vmethod_frame.h,
15067: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
15068: types/types.dsp: vstateless_class compiled
15069:
15070: * src/main/compile.C: compile compiled
15071:
15072: * src/: include/pa_array.h, include/pa_operation.h,
15073: include/pa_table.h, main/compile_tools.C, main/compile_tools.h,
15074: main/pa_table.C: compile_tools compiled
15075:
15076: * src/: include/pa_operation.h, main/compile.y,
15077: main/compile_tools.C, main/compile_tools.h: started
15078: compile_tools. vagues ideas of how to free compiled code
15079:
15080: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C,
15081: main/main.dsp, types/pa_value.C, types/pa_value.h,
15082: types/pa_vmethod_frame.h, types/pa_vstateless_class.h: value
15083: compiled
15084:
15085: 2003-01-29 paf
15086:
15087: * src/: include/pa_globals.h, include/pa_request.h,
15088: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
15089: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
15090: types/pa_wcontext.h, types/types.dsp: vmethodframe, pa_request.h
15091: compiled
15092:
15093: * src/lib/ltdl/config_fixed.h: libltdl compiled without warnings
15094: now
15095:
15096: * src/: include/pa_array.h, include/pa_exception.h,
15097: include/pa_pool.h, main/pa_exception.C: gd compiled
15098:
15099: * src/types/: pa_vfile.C, pa_vfile.h, pa_vimage.C, pa_vimage.h: gd
15100: compiled
15101:
15102: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
15103: types/pa_value.C, types/pa_value.h, types/pa_vfile.C,
15104: types/pa_vfile.h: vfile compiled
15105:
15106: * src/: include/pa_common.h, include/pa_globals.h,
15107: include/pa_string.h, main/pa_globals.C, types/pa_value.C,
15108: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
15109: types/pa_vform.C, types/pa_vform.h: vcookie compiled
15110:
15111: * src/: include/pa_exception.h, main/pa_cache_managers.C,
15112: main/pa_charsets.C, main/pa_common.C, main/pa_dir.C,
15113: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
15114: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
15115: main/pa_uue.C: #include "pa_value_includes.h" everywhere in main
15116:
15117: * src/: include/pa_request_charsets.h, include/pa_request_info.h,
15118: main/main.dsp, main/untaint.C: more compiled
15119:
15120: * src/: include/pa_charsets.h, include/pa_request.h,
15121: include/pa_request_info.h, include/pa_string.h,
15122: main/pa_charsets.C, types/pa_vrequest.C, types/pa_vresponse.C,
15123: types/pa_vresponse.h: vrequest compiled
15124:
15125: * src/types/: pa_value.h, pa_vdate.h, pa_vform.h, pa_vhash.h,
15126: pa_vobject.C, pa_vobject.h, pa_vrequest.C, pa_vresponse.C,
15127: pa_vresponse.h, pa_wcontext.h: vrequest compiled
15128:
15129: * src/: classes/classes.h, include/pa_charset.h,
15130: include/pa_charsets.h, include/pa_globals.h, include/pa_pool.h,
15131: include/pa_request.h, include/pa_string.h, main/main.dsp,
15132: main/pa_charset.C, main/pa_charsets.C, main/pa_globals.C,
15133: main/untaint.C, types/pa_value.h, types/pa_vdouble.h,
15134: types/pa_vfile.h, types/pa_vint.h, types/pa_vmath.C,
15135: types/pa_vrequest.C, types/pa_vrequest.h,
15136: types/pa_vstateless_class.h, types/pa_vstring.h,
15137: types/pa_vvoid.h: vrequest,vdouble,vint compiled
15138:
15139: * src/: classes/classes.h, classes/math.C, include/pa_pool.h,
15140: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
15141: main/main.dsp, types/pa_value.h, types/pa_vbool.h,
15142: types/pa_vclass.h, types/pa_vdouble.h, types/pa_venv.h,
15143: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
15144: types/pa_vjunction.h, types/pa_vmath.C, types/pa_vmath.h,
15145: types/pa_vobject.h, types/pa_vstateless_class.h,
15146: types/pa_vstateless_object.h, types/pa_vstatus.h,
15147: types/pa_vstring.h, types/types.dsp: vmath compiled
15148:
15149: 2003-01-28 paf
15150:
15151: * src/: classes/classes.h, classes/date.C, classes/file.C,
15152: classes/hash.C, classes/image.C, classes/table.C, classes/xdoc.C,
15153: classes/xnode.h, main/execute.C, main/main.dsp, types/pa_value.h,
15154: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C,
15155: types/pa_vobject.h, types/pa_vstateless_class.h: started main:
15156: compile_tools
15157:
15158: * src/: include/pa_charset.h, include/pa_exception.h,
15159: include/pa_request.h, include/pa_string.h, main/untaint.C:
15160: untaint compiled
15161:
15162: * ChangeLog, src/include/pa_array.h, src/include/pa_string.h,
15163: src/main/execute.C, src/main/untaint.C, src/types/pa_vmail.C:
15164: more compiled. struck with string::store_to needing to know
15165: source/client charsets
15166:
15167: * src/: include/pa_exception.h, include/pa_uue.h, main/pa_uue.C,
15168: types/pa_vfile.h: uue compiled
15169:
15170: * src/: include/pa_table.h, main/pa_string.C, main/pa_table.C:
15171: table compiled
15172:
15173: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
15174: main/pa_globals.C, main/pa_sql_driver_manager.C: globals compiled
15175:
15176: * src/: include/pa_charset.h, main/pa_charset.C,
15177: main/pa_charsets.C: charset/s simplified [charset::pool_for_load
15178: introduced]
15179:
15180: * src/: classes/date.C, include/pa_charset.h,
15181: include/pa_charsets.h, include/pa_globals.h, main/pa_charset.C,
15182: main/pa_charsets.C, main/pa_globals.C, main/pa_request.C:
15183: pa_charsets compiled
15184:
15185: * src/: include/pa_array.h, include/pa_exec.h, include/pa_hash.h,
15186: include/pa_pool.h, main/pa_exec.C: pa_exec win32 compiled
15187:
15188: * src/: include/pa_pool.h, main/pa_common.C, types/pa_vdouble.h:
15189: common compiled
15190:
15191: * src/: include/pa_charsets.h, main/pa_charsets.C,
15192: main/pa_sql_driver_manager.C: pa_charsets compiled
15193:
15194: * src/: include/pa_array.h, include/pa_charset.h,
15195: include/pa_charsets.h, include/pa_pool.h,
15196: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
15197: include/pa_stack.h, include/pa_string.h,
15198: main/pa_sql_driver_manager.C, types/pa_vhash.h, types/pa_vint.h:
15199: sql_driver_manager compiled
15200:
15201: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: ukranian
15202: letter i with two dots added to koi, all ukranian letters added
15203: to win1251.
15204:
15205: typographic simbol 0xb9 deleted from win1251 [strange one & were
15206: abscent from koi]
15207:
15208: 2003-01-27 paf
15209:
15210: * src/: include/pa_exception.h, include/pa_sql_connection.h,
15211: include/pa_sql_driver_manager.h, include/pa_string.h,
15212: main/pa_common.C, main/pa_exec.C, main/pa_sql_driver_manager.C,
15213: sql/pa_sql_driver.h: paused on sql_manager
15214:
15215: * src/: include/pa_cache_managers.h, include/pa_pool.h,
15216: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
15217: include/pa_stack.h, main/pa_sql_driver_manager.C,
15218: types/pa_vtable.h, types/pa_vvoid.h: vtable compiled
15219:
15220: * src/: classes/op.C, include/pa_globals.h, include/pa_hash.h,
15221: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
15222: include/pa_table.h, main/pa_sql_driver_manager.C,
15223: main/pa_table.C: table compiled
15224:
15225: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C:
15226: cache_managers compiled
15227:
15228: * src/: include/pa_array.h, include/pa_charset.h,
15229: include/pa_pool.h, main/pa_charset.C: charset compiled
15230:
15231: * src/: include/pa_pool.h, main/pa_common.C: common compiled
15232:
15233: * src/: include/pa_array.h, include/pa_common.h, include/pa_hash.h,
15234: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
15235: main/pa_string.C, types/pa_value.C, types/pa_value.h,
15236: types/pa_vhash.h, types/pa_vint.h, types/pa_vstateless_class.h,
15237: types/pa_wcontext.C, types/pa_wcontext.h: wcontext compiled
15238:
15239: 2003-01-24 paf
15240:
15241: * src/: classes/classes.C, classes/classes.h, include/pa_array.h,
15242: include/pa_common.h, include/pa_globals.h, include/pa_hash.h,
15243: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
15244: main/pa_globals.C, main/pa_string.C, types/pa_value.h,
15245: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vhash.h,
15246: types/pa_vint.h, types/pa_vjunction.h,
15247: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
15248: types/pa_vstatus.h, types/pa_vstring.h: more patched
15249:
15250: * src/: classes/op.C, include/pa_array.h, include/pa_exception.h,
15251: include/pa_hash.h, include/pa_pool.h, include/pa_string.h,
15252: include/pa_table.h, main/pa_dictionary.C, main/pa_exception.C,
15253: main/pa_string.C, main/pa_table.C: string compiled
15254:
15255: * src/: include/pa_array.h, include/pa_common.h,
15256: include/pa_dictionary.h, include/pa_exception.h,
15257: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
15258: main/pa_common.C, main/pa_dictionary.C, main/pa_exception.C,
15259: main/pa_string.C: dictionary compiled
15260:
15261: 2003-01-23 paf
15262:
15263: * src/: include/pa_array.h, include/pa_common.h,
15264: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
15265: include/pa_request.h, include/pa_string.h, main/pa_common.C,
15266: main/pa_exception.C, main/pa_globals.C, types/pa_value.C,
15267: types/pa_value.h: resurrected pool in new sense: now it's
15268: factory, producing&accounting memory chunks for read[autofree]
15269: buffers
15270:
15271: * src/: include/pa_array.h, include/pa_exception.h,
15272: include/pa_hash.h, include/pa_pool.h, include/pa_table.h,
15273: main/pa_exception.C, main/pa_table.C: table compiled
15274:
15275: * src/: classes/image.C, classes/op.C, include/pa_array.h,
15276: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
15277: include/pa_pool.h, include/pa_pragma_pack_begin.h,
15278: include/pa_pragma_pack_end.h, include/pa_sapi.h,
15279: include/pa_string.h, include/pa_table.h, include/pa_types.h,
15280: main/pa_exception.C, main/pa_globals.C, main/pa_string.C,
15281: main/pa_table.C: aint that easy
15282:
15283: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
15284: main/main.dsp: continued with Hash
15285:
15286: * src/main/pa_common.C: connect_string allocated on heap[wes on
15287: stack] now. and exception can be reported OK now [can be reported
15288: outside of pro c with that stack]
15289:
15290: 2003-01-22 paf
15291:
15292: * src/: include/pa_array.h, include/pa_charset.h,
15293: include/pa_dictionary.h, include/pa_hash.h, include/pa_pool.h,
15294: include/pa_string.h, main/pa_array.C, main/pa_hash.C,
15295: main/pa_pool.C, main/pa_string.C: started auto_ptr. PA_Object is
15296: base: contains references_count. auto_ptr template calls
15297: add_ref/release
15298:
15299: 2003-01-21 paf
15300:
15301: * src/: classes/classes.C, classes/classes.h, classes/date.C,
15302: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
15303: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
15304: classes/op.C, classes/response.C, classes/string.C,
15305: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
15306: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
15307: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
15308: include/pa_config_fixed.h, include/pa_config_includes.h,
15309: include/pa_dictionary.h, include/pa_dir.h,
15310: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
15311: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
15312: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
15313: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
15314: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
15315: include/pa_stack.h, include/pa_string.h,
15316: include/pa_stylesheet_connection.h,
15317: include/pa_stylesheet_manager.h, include/pa_table.h,
15318: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
15319: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
15320: lib/pcre/pcre_parser_ctype.c, main/compile.C,
15321: main/compile_tools.C, main/compile_tools.h, main/execute.C,
15322: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
15323: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
15324: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
15325: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
15326: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
15327: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
15328: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
15329: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
15330: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
15331: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
15332: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
15333: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
15334: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
15335: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
15336: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
15337: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
15338: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
15339: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
15340: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
15341: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
15342: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
15343: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
15344: types/pa_vstateless_object.h, types/pa_vstatus.C,
15345: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
15346: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
15347: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
15348: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
15349: types/pa_wwrapper.h, main/compile.tab.C, main/compile.y:
15350: 2002->2003
15351:
15352: 2003-01-16 paf
15353:
15354: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
15355: src/main/pa_globals.C: http:// introducing $.any-status(1)
15356:
15357: * operators.txt, src/include/pa_config_fixed.h,
15358: src/main/pa_common.C: http request now return status. and not
15359: fail on status!=200
15360:
15361: 2003-01-15 paf
15362:
15363: * src/main/pa_globals.C: localized pa_xmlFileRead/Close
15364:
15365: 2003-01-14 paf
15366:
15367: * src/lib/ltdl/: config.guess, config.sub, install-sh, missing,
15368: mkinstalldirs: removed some ancient files [they in / really]
15369:
15370: * src/lib/ltdl/: config_fixed.h, libltdl.dsp, ltdl.c: ltdl.c
15371: regretfully needed patch in two places. in config_fixed.h made
15372: stubs for lib to compile in MSVC
15373:
15374: 2003-01-13 paf
15375:
15376: * config.guess, config.sub, ltmain.sh: removed last piece of
15377: configure.in(libtool) hacks
15378:
1.116 moko 15379: * src/lib/ltdl/: COPYING.LIB, acinclude.m4, config.h,
1.95 moko 15380: config_auto.h.in, configure, configure.in, libltdl.dsp, ltdl.c,
15381: ltdl.h: moved to latest libtool (1.4.3)
15382:
15383: 2003-01-10 paf
15384:
15385: * src/lib/ltdl/: configure, configure.in: PROG_NM
15386:
15387: * src/main/pa_globals.C: moved to latest xml lib versions, changed
15388: patches. libxml2 >= 2.5.1
15389: [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >= 1.0.23
15390: [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >= 0.7.2
15391: [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
15392:
15393: * INSTALL: moved to latest versions of xml libs libxml2 >=
15394: 2.5.1 [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >=
15395: 1.0.23 [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >=
15396: 0.7.2 [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
15397:
15398: 2003-01-09 paf
15399:
15400: * INSTALL: xml,xslt,gdome lib urls updated
15401:
15402: * config.guess, config.sub, missing, mkinstalldirs,
1.116 moko 15403: src/include/pa_config_auto.h.in, src/lib/ltdl/config_auto.h.in,
1.95 moko 15404: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
1.116 moko 15405: src/targets/cgi/Makefile.am: moved to autoconf 2.57 & automake
15406: 1.7.2
1.95 moko 15407:
15408: * depcomp: moving to automake 1.7.2
15409:
15410: 2002-12-27 paf
15411:
15412: * src/include/pa_version.h: 0007
15413:
15414: * src/doc/: aliased.dox, index.dox, module.dox, pooled.dox: removed
15415: outdated parts, made links to language docs
15416:
15417: * src/include/pa_config_auto.h.in: comment
15418:
15419: 2002-12-26 paf
15420:
15421: * src/classes/file.C: ^file:fullpath[a.gif] when document root did
15422: not contain trailing / fixed.
15423:
15424: * INSTALL: changing SAFE_MODE politics
15425:
15426: * src/include/pa_config_auto.h.in: changing SAFE_MODE politics
15427:
15428: * src/main/: pa_common.C, pa_exec.C: changing SAFE_MODE politics
15429:
15430: 2002-12-25 paf
15431:
15432: * src/main/pa_globals.C: optimized-xml
15433:
15434: * src/main/pa_globals.C: optimized-as-is
15435:
15436: 2002-12-24 paf
15437:
15438: * src/main/: pa_common.C, pa_pool.C: pool::copy on zero size|ptr
15439: fixed [were really called with zero size when .html?a=&b=]
15440:
15441: * src/classes/mail.C: $MAIL in @conf now invalid when configured
15442: with --with-sendmail
15443:
15444: * src/main/pa_exec.C: fork/pipe error now [old always-pipe-error
15445: fixed]
15446:
15447: 2002-12-23 paf
15448:
15449: * src/types/pa_vcookie.C: $cookie:field[put value] fixed [were
15450: ignoring parameters & were storing only string with default
15451: expires
15452:
15453: * src/main/pa_charset.C: From: "Victor Fedoseev" <vvf_ru@mail.ru>
15454: To: "Alexandr Petrosian (PAF)" <PAF@design.ru> Sent: Monday,
15455: December 23, 2002 4:22 AM Subject: bug â
15456: Charset::transcode_buf2xchar
15457:
15458: 2002-12-20 paf
15459:
15460: * src/targets/cgi/parser3.C: removed last \n appending in non-win32
15461: non-cgi [script] runs
15462:
15463: 2002-12-19 paf
15464:
15465: * INSTALL: --without-iconv recommended [it crashes on some systems
15466: [tested on elik]] moreover, it's not needed there [parser
15467: registers charsets itself]
15468:
15469: * INSTALL: --without-iconv recommended [it crashes on some systems
15470: [tested on elik]]
15471:
15472: * operators.txt, src/include/pa_globals.h,
15473: src/include/pa_request.h, src/main/pa_globals.C,
15474: src/main/pa_request.C: $response:download
15475:
15476: * src/classes/mail.C: 'to' check bugfix [now checked only on ms
15477: compiler [win32]].
15478:
15479: 2002-12-18 paf
15480:
15481: * src/classes/xdoc.C: doc->URL on xdoc.load set correctly now
15482:
15483: 2002-12-17 paf
15484:
15485: * src/targets/cgi/parser3.C: merged die&iis changes
15486:
15487: * src/targets/cgi/parser3.C: 1. on win32 in die: abort() reverted
15488: to exit(1) 2. more flexible iilegal call check
15489:
15490: 2002-12-16 paf
15491:
15492: * ltmain.sh: some automakes silly insist on having this handy
15493:
15494: * src/main/untaint.C: filespec russian small 'r' changed to latin
15495: 'p' bug fix
15496:
15497: 2002-12-15 paf
15498:
15499: * src/main/untaint.C: filespec russian small 'r' changed to latin
15500: 'p'
15501:
15502: * configure.in, src/include/pa_config_auto.h.in,
15503: src/main/compile.C, src/main/pa_common.C: merged small changes
15504: from branch 6 to HEAD
15505:
15506: * src/main/compile.C: removed warning
15507:
15508: * src/main/pa_common.C: ftruncate having checked
15509:
15510: * configure.in, src/include/pa_version.h: new version
15511:
15512: 2002-12-14 paf
15513:
15514: * src/classes/table.C: removed unnecessary code
15515:
15516: * src/sql/pa_sql_driver.h: exception type fixed
15517:
15518: 2002-12-09 paf
15519:
15520: * src/types/pa_vvoid.h: $void.store[now] error
15521:
15522: * src/targets/cgi/parser3.C: ::die now tries to write core dump
15523:
15524: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: ::die now
15525: tries to write core dump
15526:
15527: * src/targets/cgi/parser3.C: ::die now tries to write core dump
15528:
15529: * src/: classes/hash.C, classes/string.C, classes/table.C,
15530: classes/void.C, main/pa_sql_driver_manager.C,
15531: sql/pa_sql_driver.h: changed exception handling mech in sql
15532: handlers #2
15533:
15534: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: changed
15535: exception handling mech in sql handlers
15536:
15537: * src/sql/pa_sql_driver.h: changed exception handling mech in sql
15538: handlers
15539:
15540: * src/: classes/hash.C, classes/string.C, classes/table.C,
15541: classes/void.C, main/pa_sql_driver_manager.C,
15542: sql/pa_sql_driver.h: changed exception handling mech in sql
15543: handlers
15544:
1.116 moko 15545: * configure.in: removed configure.in:AC_LIBTOOL, it caused automake
15546: to write makefile which used libtool to install things, which is
15547: not needed
1.95 moko 15548:
15549: 2002-12-06 paf
15550:
15551: * operators.txt, src/main/compile.tab.C, src/types/pa_vhash.h:
15552: $hash.fields -- pseudo field to make 'hash' more like 'table'
15553:
15554: 2002-12-05 paf
15555:
15556: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp
15557: cc/bcc OK now
15558:
15559: * src/main/untaint.C: mail header closed properly
15560:
15561: * src/: main/pa_common.C, main/untaint.C, types/pa_vmail.C: mail
15562: header ',' allowed. still bugs in smtp [only one receiptient
15563: works, cc, bcc ignored now, and MAILED ;)]
15564:
15565: [strncpy killed, memnchr used]
15566:
15567: * src/main/pa_table.C: table-copy now current=0
15568:
15569: * src/main/: pa_array.C, pa_table.C: wow! found/fixed bug in
15570: lowlevel proc
15571:
15572: * src/targets/cgi/parser3.C: more checks on
15573: http://domain/parser.cgi start [maybe some getenv returns "",
15574: checked that now
15575:
15576: * src/targets/cgi/parser3.C: more checks on
15577: http://domain/parser.cgi start [maybe some getenv returns "",
15578: checked that now
15579:
15580: * src/targets/cgi/parser3.C: error logging made unbuffered [so that
15581: out-of-mem errors reached log]
15582:
15583: * src/: classes/mail.C, targets/cgi/parser3.C, types/pa_vmail.C:
15584: mail:send MIME-Version default
15585:
15586: * src/main/main.dsp: pa_version included into main.dsp
15587:
15588: 2002-12-04 paf
15589:
15590: * src/types/pa_vform.C: $form:field string value cut by premature 0
15591:
15592: * parser3.dsw, src/main/compile.tab.C, src/main/main.dsp:
15593: lib/libltdl -> lib/ltdl Win32 changes. s
15594:
15595: * src/classes/classes.awk: more strict *.C$
15596:
15597: * gnu.dsp: restored
15598:
1.116 moko 15599: * configure.in, gnu.dsp, src/lib/Makefile.am,
15600: src/lib/ltdl/Makefile.am, src/lib/ltdl/README,
15601: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
15602: src/lib/ltdl/config.h, src/lib/ltdl/config.sub,
15603: src/lib/ltdl/config_auto.h.in, src/lib/ltdl/config_fixed.h,
15604: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
15605: src/lib/ltdl/install-sh, src/lib/ltdl/libltdl.dsp,
15606: src/lib/ltdl/ltdl.c, src/lib/ltdl/ltdl.h: src/lib/ltdl/Makefile
15607: now created with /configure, not ltdl/configure, so it does have
15608: no problems with automake. ltdl/configure
15609: AC_OUTPUT(Makefile<<removed)
1.95 moko 15610:
15611: 2002-12-02 paf
15612:
15613: * operators.txt: removed outdated status:db
15614:
15615: * ChangeLog, src/classes/mail.C, src/include/pa_common.h,
15616: src/main/pa_common.C, src/main/pa_request.C,
15617: src/types/pa_vcookie.C, src/types/pa_vmail.C: http header lang of
15618: tainted parts becomes http-header
15619:
15620: 2002-11-29 paf
15621:
15622: * src/classes/date.C, src/classes/image.C, operators.txt: exif
15623: dates now objects of type date
15624:
15625: * src/classes/image.C: file.seek removed [it were used in image.C
15626: only, and for parser user this means that jpeg image has bad
15627: size in fragment's header] now used image.format
15628:
15629: * src/: include/pa_common.h, main/pa_common.C,
15630: types/pa_vresponse.C, types/pa_vresponse.h: http:// param values
15631: now handled exactly like $response:header values. e.g. can be
15632: hash [can have subattributes] & contain date values.
15633:
15634: * src/main/pa_common.C: http:// param values lang forced URI
15635:
15636: * src/main/pa_common.C: http:// tainted partes now %xx
15637:
15638: 2002-11-28 paf
15639:
15640: * operators.txt: http.timeout
15641:
15642: * src/classes/image.C: ^image.length now counts interchar space.
15643: plus space after last char
15644:
15645: * src/main/pa_string.C: PCRE_DOLLAR_ENDONLY
15646:
15647: * src/classes/image.C: ^image.font width measurer now scans full
15648: height [were -1]
15649:
15650: * configure.in: stopped double libltdl/Makefile generation
15651:
15652: * src/classes/image.C: ^image.text now outputs one pixel HIGHER
15653: chars [one top horizontal line of 1pixel height were missing]
15654:
15655: * src/classes/op.C: ^cache bug fixed. stupid compiler allowed
15656: 'false' to go into (Hash *) parameter
15657:
15658: 2002-11-27 paf
15659:
15660: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
15661: types/pa_vmail.C: response:body[file] if file nows it's name now
15662: returns content-disposition: >>attachment<<
15663:
15664: * src/classes/image.C: ^image.font << bad font file-size now
15665: properly reported
15666:
15667: 2002-11-26 paf
15668:
15669: * src/main/pa_request.C: fixed lang in reponse header
15670:
15671: * src/main/pa_common.C: utf8 prefix ignored @read text
15672:
15673: * operators.txt, src/main/pa_common.C: http:// response status!=200
15674: made exception: http.status with source=bad status#
15675:
15676: 2002-11-25 paf
15677:
15678: * configure.in, src/classes/image.C,
15679: src/include/pa_config_auto.h.in,
15680: src/include/pa_config_includes.h, src/main/Makefile.am,
1.116 moko 15681: src/main/pa_common.C, src/main/pa_globals.C: http:// and image
15682: const void related probs fixed
1.95 moko 15683:
15684: * operators.txt, src/main/pa_common.C: http fields now UPPERCASE
15685:
15686: $file[^file::load[http://there]] $file.SERVER
15687:
15688: * src/: classes/file.C, classes/image.C, classes/xdoc.C,
15689: include/pa_common.h, main/pa_common.C, main/pa_request.C: checked
15690: http options [invalid onces now reported] made default
15691: user-agent: paf
15692:
15693: * operators.txt, src/classes/file.C, src/classes/table.C,
15694: src/classes/xdoc.C, src/include/pa_common.h,
15695: src/include/pa_globals.h, src/main/pa_common.C,
15696: src/main/pa_globals.C, src/main/pa_request.C,
15697: src/types/pa_vfile.C, src/types/pa_vfile.h: table/xdoc/file::load
15698: now understand http:// prefix and additional params, sample:
15699: $rates[^xdoc::load[http://www.cbr.ru/scripts/XML_daily.asp?date_req=02/03/2002;
15700: $.USER-AGENT[parser3] ]]
15701:
15702: 2002-11-22 paf
15703:
15704: * src/classes/image.C, src/include/pa_globals.h,
15705: src/main/execute.C, src/main/pa_globals.C, src/types/pa_vimage.C,
15706: src/types/pa_vimage.h, operators.txt: $image.exif support
15707: $image.exif.DateTime & co
15708:
15709: 2002-11-21 paf
15710:
15711: * src/main/: pa_exec.C, untaint.C: cstr(UL_UNSPECIFIED) [not
15712: _PASS_APPENDED)
15713:
15714: * src/classes/image.C: jpeg size measure fixed: were badly skipping
15715: EXIF information [were big block and it's size were considered
15716: negative :(]
15717:
15718: * operators.txt, src/classes/image.C, src/include/pa_common.h,
15719: src/main/pa_common.C, src/types/pa_vmail.C: image.measure
15720: internals rewritten. no there's reader.seek, and all's ready for
15721: EXIF extraction [now we fail to measure files with EXIF info]
15722:
15723: * src/main/pa_common.C: O_TRUNCATE killed, ftruncate used instead:
15724: O_TRUNC truncates even exclusevely write-locked file [thanks to
15725: Igor Milyakov <virtan@rotabanner.com> for discovering]
15726:
15727: 2002-11-20 paf
15728:
15729: * src/targets/cgi/parser3.C: logging @signal += query_string
15730:
15731: * configure.in, src/include/pa_config_auto.h.in,
15732: src/include/pa_config_includes.h, src/targets/cgi/parser3.C:
15733: comment
15734:
15735: * src/targets/cgi/parser3.C: SIGNALS overriden @ main top
15736:
15737: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
15738: targets/cgi/parser3.C: SIGUSR1 >> writes to error_log uri of
15739: currently processed document SIGPIPE >> interrupts request
15740: processing [exception = DB rollback]
15741:
15742: * src/main/pa_exec.C: comment
15743:
15744: * src/main/pa_exec.C: pa_exec: data written only if size>0
15745:
15746: * operators.txt, src/classes/file.C: ^file::exec/cgi[file;$.stdin[]
15747: << disable HTTP-POST repassing
15748:
15749: * src/: include/pa_config_fixed.h, main/pa_common.C,
15750: main/pa_exec.C, targets/cgi/parser3.C: ^file:exec/cgi [pa_exec]
15751: pipe read errors now checked
15752:
15753: 2002-11-19 paf
15754:
15755: * src/targets/cgi/parser3.C: removed #ifdef WIN32 around check of
15756: CGI: Illegal call
15757:
15758: 2002-11-01 paf
15759:
15760: * src/main/execute.C: comment
15761:
15762: 2002-10-31 paf
15763:
15764: * src/main/execute.C: found out why, checked that for now. todo:
15765: find out a way for that user could do that
15766:
15767: * src/types/pa_vstateless_object.h: object put replaces static
15768: parent if any
15769:
15770: * src/types/pa_vobject.C: object put replaces static parent if any
15771:
15772: * src/: classes/form.C, classes/mail.C, classes/op.C,
15773: classes/xnode.h, main/compile.tab.C, main/execute.C,
15774: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
15775: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
15776: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
15777: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
15778: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
15779: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
15780: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
15781: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
15782: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
15783: types/pa_vstateless_object.h, types/pa_vstatus.C,
15784: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
15785: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
15786: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
15787: types/pa_wwrapper.h: static fix merged
15788:
15789: * src/: main/compile.tab.C, types/pa_vobject.C: killed
15790: $virtual_fields in dynamic, but one can reach derived
15791: static[class] variable from base
15792:
15793: * src/: classes/op.C, types/pa_value.h, types/pa_vmethod_frame.h,
15794: types/pa_vobject.C, types/pa_vobject.h,
15795: types/pa_vstateless_class.C, types/pa_vstateless_class.h: fixed
15796: statics, left $virtual_fields in dynamic
15797:
15798: * src/types/: pa_vobject.C, pa_vstateless_class.C: realized that
15799: one can't remember derivates in base class: there's so many of
15800: them. also there can be no virtual method calls in static
15801: classes
15802:
15803: * src/: classes/form.C, classes/mail.C, classes/op.C,
15804: classes/xnode.h, main/execute.C, main/pa_request.C,
15805: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
15806: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
15807: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
15808: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
15809: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
15810: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
15811: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
15812: types/pa_vresponse.C, types/pa_vresponse.h,
15813: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
15814: types/pa_vstateless_object.h, types/pa_vstatus.C,
15815: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
15816: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
15817: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
15818: types/pa_wwrapper.h: static call $self fixed
15819:
15820: * src/main/execute.C: comment
15821:
15822: * src/: classes/op.C, types/pa_value.h, types/pa_vobject.h:
15823: ^process[$caller.self]{...} now compiles to last derived object
15824: part of that 'self'
15825:
15826: 2002-10-29 paf
15827:
15828: * src/targets/isapi/parser3isapi.C: comment on 404 bad status
15829: re-passing [iis to blame]
15830:
15831: * src/classes/string.C: changed string.save to pass current sql
15832: connection to cstr thus one can ^connect[some server]{
15833: $s[insert into table x (x) values (^taint[sql]{value})]
15834: ^s.save[some.sql] } and he'd get in some.sql file code with
15835: properly escaped. [tried in mssql->mysql export->import of
15836: binary data]
15837:
15838: 2002-10-25 paf
15839:
15840: * src/types/pa_vresponse.C: case insensitive response user fields
15841: get/put
15842:
15843: * src/: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
15844: types/pa_vresponse.C: saving for maybe-future
15845:
15846: 2002-10-23 paf
15847:
15848: * operators.txt, src/classes/table.C: ^table.hash{code}...
15849: ^table.hash(expr)...
15850:
15851: * src/types/pa_vmail.C: email whitespace trimBoth-ed
15852:
15853: 2002-10-22 paf
15854:
15855: * src/types/: pa_vform.C, pa_vform.h: removed needless
15856: VForm::Append...(...Value)
15857:
15858: * src/main/execute.C: $.name outside of $name[...] checked
15859:
15860: * src/main/: compile.tab.C, compile.y: lexer changed to fix
15861: ^call[]^#HH bug [that situation yelded no EON, which whas wrong]
15862:
15863: 2002-10-21 paf
15864:
15865: * operators.txt, src/types/pa_vform.C, src/types/pa_vform.h:
15866: $form:qtail $form:imap.x/y
15867:
15868: * operators.txt, src/types/pa_vform.C: $form:nameless =
15869: "?value&...", "...&value&...", "...&value"
15870:
15871: * operators.txt, src/types/pa_vform.C: $form:image-map
15872:
15873: * operators.txt, src/classes/file.C: /some/page.html:
15874: ^file:fullpath[a.gif] => /some/a.gif
15875:
15876: 2002-10-17 paf
15877:
15878: * src/main/: compile.tab.C, compile.y: operators precedence changed
15879: a little: logical not and bitwise negation precedence made
15880: highest, << and >> bitshits precedence made equal [were << higher
15881: than >>]
15882:
15883: * src/classes/op.C: exception handling fixed [were bad with
15884: contexts]
15885:
15886: 2002-10-16 paf
15887:
15888: * src/: classes/op.C, include/pa_request.h, main/execute.C,
15889: main/pa_request.C: Request::self considered equal to
15890: VMethodFrame::self, and removed, Request::get_self() mapped to
15891: VMethodFrame.self()
15892:
15893: * src/: classes/op.C, main/pa_request.C: VMainClass now has name =
15894: $hash in open field now gives old good error meesage
15895:
15896: 2002-10-15 paf
15897:
15898: * src/types/pa_vjunction.h: ^if(def $junction){was true}{now false}
15899: use ^if($junction is junction){was and now true}
15900:
15901: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
15902: include/pa_pool.h, main/pa_charset.C, main/pa_pool.C,
15903: types/pa_vxnode.C: xml->parser strings now have origin, which
15904: points to place where value left xml library and came to parser:
15905: place of dom field extraction/call
15906:
15907: * src/: classes/op.C, include/pa_opcode.h, include/pa_request.h,
15908: main/compile.tab.C, main/compile.y, main/execute.C,
15909: types/pa_vmethod_frame.h: removed last pieces of old code
15910: allowing $junction.xxx at compile time
15911:
15912: * ChangeLog, src/classes/op.C, src/main/compile.tab.C,
15913: src/main/compile.y, src/types/pa_vmethod_frame.h: process[self]
15914: objects also considered [were only classes]
15915:
15916: * ChangeLog, src/classes/op.C, src/include/pa_request.h,
15917: src/types/pa_vmethod_frame.h: ^process[CLASS]{body} now executed
15918: with CLASS self. [ (request&method_frame).self temporarily
15919: changed ]
15920:
15921: * src/classes/: hash.C, op.C: method_frame now always changed, with
15922: no exception to native calls. for&foreach changed to use
15923: method_frame.caller for their var's name context
15924:
15925: * src/: main/execute.C, targets/cgi/parser3.C,
15926: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
15927: compiling to system classes disabled
15928:
15929: * operators.txt, src/classes/op.C:
15930: ^process[$caller.CLASS]{code-string} added
15931:
15932: * operators.txt, src/classes/op.C, src/main/compile.tab.C,
15933: src/main/compile.y, src/main/execute.C, src/main/pa_request.C,
15934: src/types/Makefile.am, src/types/pa_vjunction.C,
15935: src/types/pa_vjunction.h, src/types/pa_vmethod_frame.h,
15936: src/types/types.dsp: removed $junction.get $junction.set[]
15937: introducing $caller
15938:
15939: * src/types/pa_value.h: removed outdated comments. doxygen would
15940: find them lower by inheritance tree
15941:
15942: * src/types/pa_vjunction.C: ident
15943:
15944: 2002-10-14 paf
15945:
15946: * src/classes/op.C: process compiles to code's class class
15947:
15948: * src/: classes/form.C, classes/mail.C, classes/op.C,
15949: include/pa_request.h, main/compile.C, main/compile.tab.C,
15950: main/compile.y, main/execute.C, main/pa_request.C,
15951: types/pa_vstateless_class.h: operators now main-class-methods
15952:
15953: * src/: classes/op.C, include/pa_request.h: ^try{^call{}} now has
15954: better stack trace [has "call" & co there]
15955:
15956: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
15957: operators @auto now executed in MAIN context
15958:
15959: * src/main/execute.C: operator execution context now = MAIN, not
15960: closest stack frame
15961:
15962: @touchit[] $i[after]
15963:
15964: ----t.html $i[before] << local ^touchit[] $i << now 'before',
15965: were 'after'
15966:
15967: ---t.html $i[before] << notlocal [main] ^touchit[] $i << now
15968: 'after'
15969:
15970: * src/main/execute.C: comment
15971:
15972: * src/types/: pa_vclass.C, pa_vobject.h, pa_vstateless_class.C,
15973: pa_vstateless_class.h: $form:CLASS resurrected [wes killed in
15974: action]
15975:
15976: * src/types/pa_vxnode.C: misreplace fixed
15977:
15978: * configure, configure.in, src/include/pa_config_auto.h.in,
15979: src/types/pa_vstatus.C, operators.txt:
15980: $status:rusage.tv_secs/usecs introduced
15981:
15982: 2002-10-09 paf
15983:
15984: * src/classes/: double.C, int.C, string.C: ^string.int[] now failes
15985: on empty string [or uses (default)]
15986:
15987: 2002-10-08 paf
15988:
15989: * src/main/untaint.C: mail header quoted printable changed after
15990: RFC reread
15991:
15992: * operators.txt: plan on ^if(method
15993:
15994: * src/types/pa_vxnode.C: misreplace
15995:
15996: 2002-09-24 paf
15997:
1.116 moko 15998: * src/targets/cgi/Makefile.am: LIBS were bad name in .am
1.95 moko 15999:
16000: * src/types/pa_vmail.C: HAVE_TIMEZONE & co now checked and
16001: mailreceive would compile on freebsd now
16002:
16003: * src/include/pa_config_fixed.h, src/types/pa_vmail.C, acconfig.h,
16004: configure, configure.in, src/include/pa_config_auto.h.in,
1.116 moko 16005: src/targets/cgi/Makefile.am: HAVE_TIMEZONE & co now checked and
16006: mailreceive would compile on freebsd now
1.95 moko 16007:
16008: * src/: classes/file.C, main/untaint.C: 1. file spec language
16009: changed: now there are only few chars are untainted: * ? ' " < >
16010: | and, on unix, : \ ~ [russian letters and SPACES now enabled,
16011: one should use ^untaint[uri]{...} now]
16012:
16013: 2. $list[^file:list[dir]] now returns simply tainted names in
16014: $list.name, not tainted as filespec
16015:
16016: @russianindex[] #dir with files with russian-lang names
16017: $where[dir]
16018:
16019: $dir[^file:list[$where;\.txt^$]] ^dir.menu{ <a
16020: href=$where/^untaint[uri]{$dir.name}>$dir.name</a><br> }
16021:
16022: 2002-09-23 paf
16023:
16024: * src/types/pa_vdouble.h: double->int round added
16025:
16026: * src/classes/date.C: date bug fix, now
16027: round(floatDays*secondsPerDay)
16028:
16029: * src/classes/date.C: date bug fix, now
16030: round(floatDays*secondsPerDay)
16031:
16032: 2002-09-20 paf
16033:
16034: * src/main/execute.C: code junction calls disabled [before: code
16035: was compiled in such a way, that there were no code-junctions in
16036: OP_CALL]
16037:
16038: this now error: @badjunctioncall[] ^badjunctioncallinside{code}
16039:
16040: @badjunctioncallinside[code] ^code[]
16041:
16042: * src/main/: compile.tab.C, compile.y: changed grammer on junction
16043: expanding to include ^junction.method
16044:
16045: * src/main/pa_common.C: -d "DIR/" now true
16046:
16047: * src/classes/xdoc.C: xdoc::create[name] now sets $request:charset
16048: as internal xdoc encoding, and after decoding attributes set by
16049: dom functions now encoded OK, not as digital entities
16050:
16051: * src/classes/xdoc.C: empty transform result, being taken as file
16052: now returns empty file, not raises stupid error about "stat-ed
16053: file"
16054:
16055: * src/types/pa_vhash.h: hash.foreach modification of existing keys
16056: allowed
16057:
16058: * src/types/types.dsp: introducing $junction.get/put(1) one can
16059: write iterators now:
16060:
16061: ^user-foreach[key;value]{$key=$value<br>}
16062:
16063: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
16064: $code.value($i*2) $code }
16065:
16066: * src/main/compile_tools.h: mistype
16067:
1.116 moko 16068: * src/targets/cgi/Makefile.am: binaries now depend on makefiles,
16069: thus taking linking options configure changes into account [were:
16070: ignoring]
1.95 moko 16071:
16072: * src/types/: pa_vjunction.C, Makefile.am: introducing
16073: $junction.get/put(1) one can write iterators now:
16074:
16075: ^user-foreach[key;value]{$key=$value<br>}
16076:
16077: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
16078: $code.value($i*2) $code }
16079:
16080: * src/: include/pa_opcode.h, include/pa_request.h,
16081: main/compile.tab.C, main/compile.y, main/execute.C,
16082: main/main.dsp, targets/cgi/parser3.dsp, types/pa_vjunction.h:
16083: introducing $junction.get/put(1) one can write iterators now:
16084:
16085: ^user-foreach[key;value]{$key=$value<br>}
16086:
16087: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
16088: $code.value($i*2) $code }
16089:
16090: 2002-09-19 paf
16091:
1.116 moko 16092: * Makefile.am: new: make commit
1.95 moko 16093:
16094: * aclocal.m4: forced to be older
16095:
16096: 2002-09-18 paf
16097:
16098: * parser3.dsw, src/include/pa_opcode.h, src/main/compile.tab.C,
16099: src/main/compile.y, src/main/execute.C: << >> int shifts
16100:
16101: * src/: include/pa_common.h, include/pa_request.h,
16102: main/pa_common.C, main/pa_request.C: auto.p exists but unreadable
16103: - now this - fatal error
16104:
16105: * src/classes/file.C: ^file::exec/cgi $.stdin[can be file now] so
16106: that one can pass binary data there
16107:
16108: * src/: classes/date.C, classes/double.C, classes/file.C,
16109: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
16110: classes/op.C, classes/response.C, classes/string.C,
16111: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
16112: include/pa_request.h: pa_request contexts made privated, plus
16113: get_{self/method_frame} to read. Request_context_saver used in
16114: ^try to save flang too. [were not saved]
16115:
16116: * src/types/pa_vresponse.C: header value chains joined before
16117: output, this should help $.subject[$var $var] from being
16118: converted to subject: ?koi8-r?Q?...?= ?koi8-r?Q?...?=
16119:
16120: 2002-09-17 paf
16121:
16122: * src/: main/execute.C, types/pa_value.h, types/pa_vmethod_frame.h:
16123: removed changes, operators executed with calling self. lots of
16124: code with ^include code relies on defined/defining self variables
16125:
16126: $a[1] ^include[print_a.p] print_a.p: $a
16127:
16128: ^include[set_a.p] a=$a set_a.p: $a[1]
16129:
16130: * src/: classes/op.C, main/execute.C, main/pa_request.C,
16131: types/pa_value.C, types/pa_value.h, types/pa_vmethod_frame.h,
16132: types/pa_vstateless_class.h: operators now executed with MAIN
16133: self. it's for ^include sake, too strong a change
16134:
16135: * src/classes/op.C: made place for ^process to compile it's code to
16136: in case of no self
16137:
16138: * src/main/execute.C: found ancient param to Junction, removed.
16139: allowed passing self to native_code_operators [for ^process to
16140: work, she needs self]
16141:
16142: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
16143: types/pa_vstateless_class.h: found ancient param to Junction,
16144: removed. allowed passing self to native_code_operators [for
16145: ^process to work, she needs self]
16146:
16147: * src/: main/execute.C, main/pa_request.C, types/pa_value.C,
16148: types/pa_value.h, types/pa_vmethod_frame.h,
16149: types/pa_vstateless_class.h: allowed Request.self to be 0,
16150: checked that in VMethodFrame get/put and $self.
16151:
16152: * src/classes/: table.C, xdoc.C: table::sql options table::create
16153: copy options options checked, wrong option now fatal error
16154:
16155: * src/main/pa_string.C: string.replace fixed [were missing words on
16156: pieces boundaries]
16157:
16158: * bin/auto.p.dist.in: strange \n
16159:
16160: * configure, configure.in: .so now detected [can be .sl on hpux,
16161: .dll on cygwin, .so in other cases)
16162:
1.116 moko 16163: * configure, configure.in, bin/auto.p.dist.in: .so now detected
16164: [can be .sl on hpux, .dll on cygwin, .so in other cases)
1.95 moko 16165:
16166: * operators.txt, src/classes/hash.C, src/classes/table.C,
16167: src/include/pa_globals.h, src/main/pa_globals.C: table.sql
16168: hash::sql flag to allow duplicate keys [$.distinct(1/0)] first
16169: record taken [were last]
16170:
16171: * src/: classes/hash.C, classes/table.C,
16172: include/pa_sql_connection.h: table.sql hash::sql duplicate keys
16173: now errors
16174:
16175: * src/classes/hash.C: foreach delims bug fixed [were ,2,3]
16176:
16177: * src/classes/: op.C, table.C: menu/for delims bug fixed [were
16178: ,2,3]
16179:
16180: 2002-09-16 paf
16181:
16182: * src/classes/file.C: file::cgi line ends can be both unix & dos.
16183: and they can be unix [\n\n] on win when 'use CGI' used, it causes
16184: stdout to be binary. now detected closest header break.
16185:
16186: * src/: main/untaint.C, types/pa_vmail.C: mail:send closing ?= now
16187: closed right
16188:
16189: 2002-09-13 paf
16190:
16191: * operators.txt, src/main/compile.tab.C, src/main/compile.y,
16192: src/main/compile_tools.h: (expression #comment)
16193:
16194: (multiline expression #comment line2 #comment )
16195:
16196: (expression #comment with (brackets) comment) << OK
16197:
16198: * operators.txt, src/main/compile.tab.C, src/main/compile.y: !|
16199: bitwise !|| numerical xor now [preparing for expression
16200: #comments]
16201:
16202: * src/main/: compile.tab.C, compile.y: @method[$name] now parse
16203: error
16204:
16205: * src/: include/pa_config_fixed.h, main/pa_socks.C: HAVE_WINSOCK_H
16206: cheched in pa_socks.C
16207:
1.116 moko 16208: * configure, configure.in, src/include/pa_config_auto.h.in:
16209: HAVE_WINSOCK_H created in configure.in
1.95 moko 16210:
16211: * src/: main/compile.tab.C, main/compile.y, types/pa_vresponse.C:
16212: cookie date now clean [were mistakenly tainted & that worked bad
16213: with opera -- 'happily' that worked OK with msie]
16214:
16215: 2002-09-12 paf
16216:
16217: * src/types/: pa_vclass.C, pa_vmail.C, pa_vobject.C: VObject &
16218: VClass get_element now first looks to fields, next to methods &
16219: co todo: the rest reason: more speed
16220:
16221: * src/main/untaint.C: quoted printable encoding stops before
16222: \s*<...>$
16223:
16224: * src/main/untaint.C: quoted printable ' ' now =20 and encoding
16225: stops before <...>$
16226:
16227: 2002-09-11 paf
16228:
16229: * src/: main/pa_charset.C, targets/cgi/parser3.dsp: while fixing (
16230: xmlCharEncodingInput/OutputFunc callbacks returned bad value )
16231: forgot to check users of those funcs. not all were using that
16232: return value convention
16233:
16234: * src/lib/pcre/ibm-1254.ucm, etc/parser3.charsets/windows-1254.cfg:
16235: windows-1254 added
16236:
16237: 2002-09-10 paf
16238:
16239: * src/: classes/op.C, main/execute.C, types/pa_wcontext.h:
16240: VCodeFrame parent param were specified badly
16241:
16242: * src/: main/execute.C, types/pa_value.h, types/pa_wwrapper.h:
16243: WWrapper which used in constructing objects(second param to sql
16244: method) ^...sql{}[$.default{code}] now has parent, wich helps
16245: code in hash to survivi
16246:
16247: * src/: include/pa_request.h, main/execute.C: removed redundant
16248: param to execute [stack said 'thanks']
16249:
16250: * src/: classes/op.C, main/execute.C, types/pa_value.C,
16251: types/pa_value.h, types/pa_vcode_frame.h,
16252: types/pa_vmethod_frame.h, types/pa_wcontext.C,
16253: types/pa_wcontext.h, types/pa_wwrapper.h: moved junction kill
16254: responsibility to wcontext
16255:
16256: * src/classes/file.C: decided not to log exec's with stderr, that
16257: could be warnings, and it's up to scritper to log/show them
16258:
16259: * src/: classes/double.C, main/execute.C: double:sql badly called
16260: write_assign_lang, not write_no_lang, thus doing unnecessary
16261: double/string converstion, which were loosing time&precesion
16262:
16263: * src/: main/pa_charset.C, types/pa_vmail.C:
16264: xmlCharEncodingInput/OutputFunc callbacks returned bad value in
16265: case of unfinished in buffer processing, causing accidental
16266: transcode stop [in case that source enc != utf-8 & there is
16267: incomplete utf-8 sequence at the end of 16000block iside of
16268: libxml lib] tfm readed & code updated
16269:
16270: 2002-09-04 paf
16271:
16272: * configure: makes with sjlj
16273:
16274: * INSTALL, src/include/pa_config_fixed.h,
16275: src/include/pa_sql_connection.h,
16276: src/main/pa_sql_driver_manager.C: -with-sjlj-exceptions define
16277: checked. on win32 it made default
16278:
16279: * src/include/pa_config_auto.h.in: sjlj define
16280:
16281: * configure, configure.in: introducing --with-sjlj-exceptions [hpux
16282: can not work with longjump/throw pair, and one must switch that
16283: on there. todo: detect that automatically]
16284:
16285: * src/types/pa_vxnode.C: removed too strong checks of
16286: xnode.elements. now, for instance, if element does not have any
16287: attributes, $xnode.attributes is void, not error
16288:
16289: 2002-09-02 paf
16290:
16291: * operators.txt, src/main/execute.C, src/targets/cgi/parser3.dsp:
16292: removed double_result, didn't help
16293:
16294: * src/main/execute.C: double_result made to move that var away from
16295: hungry g++ optimizer (-O2), before: it were optimized and
16296: comparison operators worked badly
16297:
16298: * src/types/pa_vdate.h: removed debug
16299:
1.116 moko 16300: * Makefile.am, src/types/pa_vdate.h: happy now only install-exec
1.95 moko 16301:
16302: * src/main/execute.C: fixed numeric < & co so that thay now use
16303: c=a-b, c OPERATOR 0. this works fine on solaris/intel for still
16304: unknown reason.
16305:
16306: 2002-08-29 paf
16307:
16308: * parser3.dsw, src/classes/classes.dsp, src/classes/hash.C,
16309: src/classes/op.C, src/classes/string.C, src/include/pa_request.h,
16310: src/lib/md5/md5.dsp, src/main/execute.C, src/main/main.dsp,
16311: src/main/pa_request.C, src/targets/cgi/parser3.dsp,
16312: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vmail.C,
16313: src/types/pa_vmethod_frame.h, src/types/pa_wcontext.h,
16314: src/types/types.dsp: junction_cleaner moved to auto VMethodFrame
16315: [called less frequent, allowed to remove ugly
16316: Junction.change_context-s from many places, switch,
16317: mail:send..html{}, ..] request.root renamed to method_frame [more
16318: easyreading] ancient {...PUSH/POPs...} changed to stack vars
16319: [speed up]
16320:
16321: 2002-08-28 paf
16322:
16323: * src/types/pa_vcookie.C: $cookie:name[&] $cookie:name << now
16324: tainted
16325:
16326: * src/types/pa_vcookie.C: fixed cookie delete when
16327: $cookie:name[$.value[]]
16328:
16329: * operators.txt, src/classes/string.C:
16330: ^string.split[delim[;options]]
16331:
16332: 2002-08-27 paf
16333:
1.116 moko 16334: * etc/parser3.charsets/Makefile.am: merged from 3.0.0005
1.95 moko 16335:
16336: * operators.txt, src/main/compile.tab.C, src/main/compile.y: # now
16337: delimiter
16338:
16339: * INSTALL: recommended latest gmime 1.0.5
16340:
16341: 2002-08-26 paf
16342:
16343: * configure, configure.in: apache13/hook added to make dist.
16344:
16345: 2002-08-23 paf
16346:
16347: * src/: include/pa_common.h, main/pa_common.C,
16348: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: when auto.p
16349: beside binary [cgi, isapi] not accessible [due to bad rights or
16350: whatever] it's error now
16351:
16352: 2002-08-21 paf
16353:
1.116 moko 16354: * Makefile.am: can use: make happy equals to make update install
1.95 moko 16355:
16356: * src/main/: compile.tab.C, compile.y, compile_tools.C,
16357: compile_tools.h: "BASE:" "BASE::" syntax allowed, means "base
16358: class". compiled as if here they named base class
16359:
16360: * src/main/pa_string.C: fixed bad language bug, [were wrong string
16361: cloning constructor]
16362:
16363: * src/: main/execute.C, types/pa_vobject.h: fixed virtual calls
16364:
16365: * bin/auto.p.dist.in, src/targets/cgi/parser3.C,
16366: src/types/pa_vfile.C, src/types/pa_vmail.C:
16367: $mail.received.file.value.content-type fixed
16368:
16369: 2002-08-20 paf
16370:
16371: * src/classes/file.C: fixed language of file:file result
16372:
16373: * operators.txt, src/classes/void.C: ^void.pos[...] = -1 merged
16374: from 3.0.0005
16375:
16376: * operators.txt, src/classes/void.C: ^void.pos[...] = -1
16377:
16378: * operators.txt, src/classes/void.C: ^void.length[] = 0 merged from
16379: 3.0.0005
16380:
16381: * src/classes/void.C, operators.txt: ^void.length[] = 0
16382:
16383: 2002-08-19 paf
16384:
16385: * src/classes/xdoc.C: xdoc getElementsByTagName, ...NS overriden,
16386: work now
16387:
16388: * src/: classes/xnode.C, types/pa_vxdoc.C: xdoc.fields fixed [were
16389: error in xnode, which were not catched in xdoc]
16390:
16391: * src/: include/pa_stylesheet_connection.h, main/pa_globals.C:
16392: prepared: // validate each document after load/create (?)
16393: //xmlDoValidityCheckingDefaultValue = 1;
16394:
16395: 2002-08-15 paf
16396:
16397: * src/classes/classes.h: write to static var caused useless
16398: Exception, introduced Methoded::put_element wich consumes those
16399:
16400: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
16401: src/types/pa_vcookie.C, src/types/pa_vdate.h,
16402: src/types/pa_vresponse.C, src/types/pa_vresponse.h:
16403: $response:field[date] $response:field[$.xxx[date]]
16404:
16405: * src/: classes/hash.C, classes/string.C, classes/table.C,
16406: classes/void.C, include/pa_sql_connection.h: fixed source of
16407: ^hash::sql{bad}
16408:
16409: * operators.txt: $request:body unprecessed POST request body
16410:
16411: * src/types/pa_vrequest.C: $request:body unprecessed POST request
16412:
16413: * src/types/: pa_value.h, pa_vdate.h, pa_vrequest.C, pa_vxdoc.C,
16414: pa_vxnode.C: few barks: bark("%s field not found", 0, &aname)
16415:
16416: * operators.txt, src/classes/form.C, src/include/pa_pool.h,
16417: src/include/pa_request.h, src/main/pa_pool.C,
16418: src/types/pa_vform.C, src/types/pa_vform.h: planning/preparing_to
16419: $request:body r.post_data now const
16420:
16421: * src/: classes/image.C, classes/op.C, classes/xdoc.C,
16422: classes/xnode.C, main/execute.C, types/pa_value.h,
16423: types/pa_vhash.h, types/pa_vobject.C, types/pa_vobject.h,
16424: types/pa_vtable.h: instead of type() checking everywhere used
16425: Value.as now user descendants can be used in params.
16426:
16427: VObject::as_*, is_defined now taken from bases. xtable(table)
16428: ^if($xtable) now OK
16429:
16430: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
16431: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
16432: types/pa_vxdoc.C, types/pa_vxdoc.h: is->as
16433:
16434: 2002-08-14 paf
16435:
16436: * src/: classes/xnode.h, main/execute.C, targets/cgi/parser3.dsp,
16437: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
16438: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
16439: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
16440: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
16441: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
16442: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
16443: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
16444: types/pa_vresponse.C, types/pa_vresponse.h,
16445: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16446: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
16447: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
16448: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
16449: types/pa_vxnode.h, types/pa_wwrapper.h: is now works with VObject
16450: & VClass
16451:
16452: * src/types/pa_vmail.C: mail: turned off utf8 to source transcoding
16453:
16454: * src/targets/cgi/: fixopt.C, fixopt.h, parser3.C, Makefile.am:
16455: removed fixopt stupidity. on stupid linux use cd /document/root
16456: ../cgi/parser3 script
16457:
16458: * src/targets/cgi/fixopt.C: fixopt now preprocesses command line
16459: params, splitting them by space, excluding argv[0], argv[argc-1]
16460:
16461: * src/targets/cgi/: Makefile.am, parser3.C, parser3.dsp, fixopt.C,
16462: fixopt.h: fixopt now preprocesses command line params, splitting
16463: them by space, excluding argv[0], argv[argc-1]
16464:
16465: * src/targets/cgi/parser3.C: -f config file
16466:
16467: * src/targets/cgi/parser3.C: fixed .log file dir
16468:
16469: 2002-08-13 paf
16470:
16471: * src/types/pa_vobject.C: allow override parent variables, useful
16472: for form descendants [in vobject too, were in vclass]
16473:
16474: * src/types/pa_vclass.C: allow override parent variables, useful
16475: for form descendants
16476:
16477: * src/types/pa_vclass.C: checked: form[vclass]fields can be
16478: overwritten in derived(table)
16479:
16480: * src/: classes/form.C, classes/mail.C, classes/op.C,
16481: classes/xnode.h, include/pa_request.h, main/execute.C,
16482: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
16483: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
16484: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
16485: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
16486: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
16487: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
16488: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
16489: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
16490: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16491: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
16492: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
16493: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
16494: types/pa_vxnode.h, types/pa_wwrapper.h: introduced
16495: Value::get_element(..., bool looking_down) [needed to exclude
16496: endless recoursion]
16497:
16498: * src/types/: pa_vclass.C, pa_vobject.C: reorganized modules todo:
16499: fix bug with put endless recoursion todo: check 'as'
16500:
16501: * src/types/: Makefile.am, pa_vclass.h, pa_vobject.h, types.dsp:
16502: reorganized modules todo: fix bug with put endless recoursion
16503: todo: check 'as'
16504:
16505: * src/types/pa_vobject.h: checked: table fields can be overwritten
16506: in derived(table)
16507:
16508: * src/types/pa_vobject.h: derived classes can have fields of their
16509: own now
16510:
16511: * src/: classes/table.C, types/pa_vtable.C, types/pa_vtable.h:
16512: fixed error message on using non-created table
16513:
16514: * src/: classes/form.C, classes/hash.C, classes/mail.C,
16515: classes/op.C, classes/xnode.h, include/pa_request.h,
16516: main/compile.C, main/compile.tab.C, main/execute.C,
16517: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
16518: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
16519: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
16520: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
16521: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmail.C,
16522: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
16523: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
16524: types/pa_vresponse.C, types/pa_vresponse.h,
16525: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16526: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
16527: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
16528: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
16529: types/pa_vxnode.h, types/pa_wwrapper.h: VObject.get/out now
16530: looking down/up tree todo: fix error message on non-constructed
16531: parents
16532:
16533: 2002-08-12 paf
16534:
16535: * src/types/: pa_vstateless_class.h, pa_vstateless_object.h: table
16536: derived OK
16537:
16538: * src/main/execute.C: ^base:create[] dynamic call rewritten todo:
16539: thorough testing
16540:
16541: * src/: main/compile.tab.C, main/compile.y, main/execute.C,
16542: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
16543: types/pa_vobject.h, types/pa_vstateless_class.h,
16544: types/pa_vstateless_object.h, types/pa_wcontext.h,
16545: types/pa_valiased.C, types/pa_valiased.h, types/Makefile.am:
16546: ^base:create[] dynamic call rewritten todo: thorough testing
16547:
16548: * src/types/: pa_value.h, pa_vclass.h, pa_vobject.h: VObject ctor
16549: now instantates base class, remembers it and saves child in
16550: parent VObject.get_class now returns last child = downward
16551: virtual calls OK
16552:
16553: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
16554: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
16555: types/pa_vimage.h, types/pa_vint.h, types/pa_vmethod_frame.h,
16556: types/pa_vobject.h, types/pa_vresponse.h,
16557: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16558: types/pa_vstring.h, types/pa_vtable.h, types/pa_vxdoc.h,
16559: types/pa_vxnode.h, types/pa_wcontext.h, types/types.dsp: killed
16560: VAliased [redundant], moved $CLASS to VObject only [parser class
16561: instance]
16562:
16563: * bin/auto.p.dist.in: more like in dist on parser.ru
16564:
16565: * bin/auto.p.dist.in: fixed sendmail default comment
16566:
16567: * src/main/pa_request.C: $response:body[file] content-type check
16568: fixed [were bad when content-type is hash]
16569:
16570: 2002-08-09 paf
16571:
16572: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
16573: types/pa_vobject.h, types/pa_vxdoc.h: started as()
16574:
16575: 2002-08-08 paf
16576:
16577: * operators.txt, src/classes/date.C, src/include/pa_globals.h,
16578: src/main/pa_globals.C: year column in month calendar [week year]
16579:
16580: * src/main/execute.C: error reporting on object writes to MAIN
16581: improved [were ruind with fixing $obj[^if(1){$obj}] ]
16582:
16583: * operators.txt, src/types/pa_vdate.h: $date.yearday
16584: $date.daylightsaving
16585:
16586: * src/: classes/mail.C, types/pa_vmail.C: in letter texts one can
16587: use tainted data now. only she must specify the language.
16588:
16589: ^mail:send[ $.from[paf@mail.design.ru]
16590: $.to[paf@mail.design.ru] $.subject[^taint[uri][ìîñêâà]=2]
16591: $.text[^taint[uri][ìîñêâà]=] ]
16592:
16593: * src/: classes/file.C, classes/op.C, types/pa_vfile.C: ^process
16594: now prints more precise origin
16595:
16596: * src/include/pa_string.h: String::first_char now not fails on
16597: empty strings ^if(-f '') now ok and in 3 other places.
16598:
16599: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
16600: String::first_char now not fails on empty strings ^if(-f '') now
16601: ok and in 3 other places.
16602:
16603: 2002-08-07 paf
16604:
16605: * src/: classes/string.C, main/pa_string.C: ^string.mid(0;bad)
16606: fixed
16607:
16608: * src/main/pa_string.C: ^string.mid(0;bad) fixed
16609:
16610: * src/: main/execute.C, types/pa_vcode_frame.h,
16611: types/pa_vmethod_frame.h, types/pa_wcontext.C,
16612: types/pa_wcontext.h, types/pa_wwrapper.h: vcodeframe were
16613: mistakenly not completely transparent to object writes.
16614: $hash[^if(1){$hash}] now works
16615:
16616: * operators.txt, src/classes/op.C: ^cache...{...^cache<<to past...}
16617: now erasing cache file [there were bad check on that]
16618:
16619: * src/: classes/classes.dsp, classes/table.C,
16620: lib/pcre/pcre_parser_ctype.dsp, main/pa_array.C, types/types.dsp:
16621: all Debug dirs in .dsp now named 'Debug'
16622:
1.116 moko 16623: * etc/parser3.charsets/Makefile.am: all included into dist
1.95 moko 16624:
16625: * operators.txt, src/classes/mail.C: exception_type email.send
16626:
16627: * operators.txt, src/types/pa_vmail.C: exception_type email.format
16628:
16629: * src/types/pa_vmail.C: mail:send empty email checked
16630:
16631: 2002-08-06 paf
16632:
16633: * operators.txt, src/classes/table.C, src/include/pa_array.h,
16634: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
16635: ^table::create[$source;$.options] ^table::join[$source;$.options]
16636:
16637: * operators.txt, src/classes/hash.C, src/classes/string.C,
16638: src/classes/table.C: sql options can be string now ^xxx:sql{...}[
16639: # $.default() }
16640:
16641: * src/classes/file.C: $f[file::cgi] $f.UPPER case fields
16642:
16643: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
16644: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h:
16645: $file.content-type [instead of .mime-type] now works for
16646: file::stat also
16647:
16648: * src/main/pa_request.C: case insensitive mime_type_of
16649:
16650: * bin/auto.p.dist.in: jpeg
16651:
16652: 2002-08-05 paf
16653:
16654: * src/types/pa_vxnode.C: xnode.childNodes now 0... [were 1...]
16655:
16656: * src/types/pa_vmail.C: file buffer relocated to parser heap
16657:
16658: * operators.txt: comment on date:calendar week column
16659:
16660: * src/main/pa_common.C: write checked
16661:
16662: * src/main/: pa_common.C: write checked
16663:
16664: * src/classes/date.C: +1 buf size for stupid snprintfs
16665:
16666: * src/: classes/date.C, include/pa_globals.h, main/pa_globals.C:
16667: month calendar week column [ISO 8601 Week Numbers]
16668:
16669: 2002-08-02 paf
16670:
16671: * src/: include/pa_config_fixed.h, main/pa_string.C,
16672: targets/cgi/getopt.c, targets/cgi/parser3.C: removed #define
16673: DEBUG*
16674:
16675: * configure, configure.in, src/include/pa_version.h: release
16676: 3_0_0005
16677:
16678: * bin/auto.p.dist.in: unhandled_exception comments
16679:
16680: * src/types/: pa_vclass.h, pa_vform.C, pa_vobject.h: opera
16681: multipart post fixed
16682:
16683: * operators.txt, src/main/pa_request.C, src/types/pa_vform.C:
16684: response transcoded source->client only when text/* or simple
16685: onoverridden $response:body
16686:
16687: 2002-08-01 paf
16688:
16689: * src/: classes/classes.C, classes/classes.h, classes/date.C,
16690: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
16691: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
16692: classes/op.C, classes/response.C, classes/string.C,
16693: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
16694: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
16695: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
16696: include/pa_config_fixed.h, include/pa_dictionary.h,
16697: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
16698: include/pa_globals.h, include/pa_hash.h, include/pa_opcode.h,
16699: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
16700: include/pa_socks.h, include/pa_sql_connection.h,
16701: include/pa_sql_driver_manager.h, include/pa_stack.h,
16702: include/pa_string.h, include/pa_stylesheet_connection.h,
16703: include/pa_stylesheet_manager.h, include/pa_table.h,
16704: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
16705: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
16706: lib/pcre/pcre_parser_ctype.c, main/compile.C, main/compile.tab.C,
16707: main/compile_tools.C, main/compile_tools.h, main/execute.C,
16708: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
16709: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
16710: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
16711: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
16712: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
16713: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
16714: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
16715: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
16716: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
16717: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
16718: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
16719: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.C,
16720: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.h,
16721: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
16722: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
16723: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
16724: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
16725: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
16726: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
16727: types/pa_vmethod_frame.h, types/pa_vobject.h,
16728: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
16729: types/pa_vresponse.h, types/pa_vstateless_class.C,
16730: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16731: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
16732: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
16733: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
16734: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
1.119 moko 16735: types/pa_wcontext.h, types/pa_wwrapper.h: Date: now
1.95 moko 16736:
16737: * src/: classes/classes.C, classes/classes.dsp, classes/classes.h,
16738: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
16739: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
16740: classes/math.C, classes/op.C, classes/response.C,
16741: classes/string.C, classes/table.C, classes/void.C,
16742: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
16743: include/pa_array.h, include/pa_cache_managers.h,
16744: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
16745: include/pa_config_fixed.h, include/pa_config_includes.h,
16746: include/pa_dictionary.h, include/pa_dir.h,
16747: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
16748: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
16749: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
16750: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
16751: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16752: include/pa_stack.h, include/pa_string.h,
16753: include/pa_stylesheet_connection.h,
16754: include/pa_stylesheet_manager.h, include/pa_table.h,
16755: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
16756: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, main/compile.C,
16757: main/compile_tools.C, main/compile_tools.h, main/execute.C,
16758: main/main.dsp, main/pa_array.C, main/pa_cache_managers.C,
16759: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
16760: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
16761: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
16762: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
16763: main/pa_sql_driver_manager.C, main/pa_string.C,
16764: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
16765: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
16766: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
16767: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
16768: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
16769: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
16770: targets/isapi/pool_storage.h, types/pa_valiased.C,
16771: types/pa_valiased.h, types/pa_value.C, types/pa_value.h,
16772: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
16773: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
16774: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
16775: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
16776: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
16777: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
16778: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
16779: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
16780: types/pa_vresponse.C, types/pa_vresponse.h,
16781: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
16782: types/pa_vstateless_object.h, types/pa_vstatus.C,
16783: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
16784: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
16785: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
16786: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
16787: types/pa_wwrapper.h, types/types.dsp, Makefile.am,
16788: classes/Makefile.am, main/Makefile.am, targets/cgi/Makefile.am,
16789: types/Makefile.am: ident.C* removed
16790:
16791: * operators.txt, src/classes/file.C, src/main/pa_request.C:
16792: file:find[/can/do/this/now.txt]
16793:
16794: * src/targets/cgi/parser3.C: usage to stdout now
16795:
16796: 2002-07-31 paf
16797:
16798: * src/types/pa_vmail.C: mail: errors-to: now default "postmaster"
16799:
16800: * src/: classes/mail.C, types/pa_vmail.C: mail: errors-to: now
16801: default "postmaster"
16802:
16803: * src/: classes/mail.C, types/pa_vmail.C: mail from/to now must be.
16804: -f postmaster now default sendmail key word "postmaster"
16805: replaced to $.from
16806:
16807: 2002-07-30 paf
16808:
1.116 moko 16809: * configure, configure.in, src/targets/cgi/pa_config_paths.h.in,
16810: src/targets/cgi/parser3.C: removed pa_config_paths.h
1.95 moko 16811:
16812: * src/main/pa_charset.C: comment
16813:
16814: * src/main/pa_charset.C: UTF-8 to 1byte charset convert, no char in
16815: table, &#decimal;
16816:
16817: * src/main/pa_request.C: comment
16818:
16819: * etc/parser3.charsets/windows-1251.cfg: section sign [russian
16820: paragraf]
16821:
16822: 2002-07-11 paf
16823:
16824: * src/main/pa_exec.C: build command line badly added params twice
16825: [and first time without ' ']. double wrong. fixed.
16826:
16827: * src/main/pa_exec.C: invalid .exe caused error message with params
16828: wich parser did not provide = reported badly. fixed that.
16829:
16830: * src/classes/mail.C: $MAIL[ # xxx ]
16831:
16832: now ok
16833:
16834: * operators.txt: plan: sql detailed exception
16835:
16836: 2002-07-01 paf
16837:
16838: * src/: classes/form.C, main/pa_request.C: @conf bug fixed
16839: [MForm.configure_admin were called when request.main_class ==0
16840:
16841: * src/classes/form.C: 10*0x400*400 bug fix [4M not 10M]
16842:
16843: * src/classes/form.C: content_length type fix
16844:
16845: 2002-06-30 paf
16846:
16847: * src/classes/mail.C: merged from 4
16848:
16849: * src/classes/mail.C: restored $MAIL
16850:
16851: 2002-06-28 paf
16852:
16853: * configure, configure.in: removed paths.h
16854:
1.116 moko 16855: * configure, src/include/pa_version.h,
1.95 moko 16856: src/targets/cgi/pa_config_paths.h.in: lates changes from 4 build
16857: merged, makes updated
16858:
16859: * ChangeLog, configure, operators.txt, src/classes/xdoc.C,
16860: src/include/pa_charset.h, src/include/pa_config_fixed.h,
16861: src/include/pa_pool.h, src/include/pa_version.h,
16862: src/main/pa_charset.C, src/main/pa_pool.C,
16863: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
16864: src/types/pa_vmail.C: merged latest updates to head
16865:
16866: 2002-06-27 paf
16867:
16868: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: post-build
16869: not error now
16870:
16871: * operators.txt, src/classes/xdoc.C, src/include/pa_charset.h,
16872: src/include/pa_config_fixed.h, src/include/pa_pool.h,
16873: src/main/pa_charset.C, src/main/pa_pool.C:
16874: ^xdoc::create[[uri]]... base uri for document being created,
16875: imports and other relative file names would be relative to this
16876: uri default uri=path_translated
16877:
16878: * src/classes/xdoc.C: xsltParseStylesheetDoc bug workaround
16879:
16880: 2002-06-26 paf
16881:
16882: * configure, configure.in, src/include/pa_version.h:
16883: release_3_0_0004
16884:
16885: * src/main/pa_string.C: blank string '', ' <whitespace>' considered
16886: 0 now
16887:
16888: * src/targets/cgi/parser3.C: /cgi-bin/parser empty filename checked
16889:
16890: 2002-06-25 paf
16891:
16892: * src/main/pa_string.C: emtpy string, or string of whitespaces
16893: considered bad number now
16894:
16895: * operators.txt, src/classes/xdoc.C: ^xdoc.transform[xdoc <<can be
16896: now
16897:
16898: * operators.txt, src/classes/string.C: ^string.normalize [old
16899: name: optimize
16900:
16901: * configure, configure.in, src/include/pa_config_auto.h.in: crypt
16902: library configured
16903:
16904: * src/main/pa_request.C: configure_admin forced if no @conf
16905:
16906: * operators.txt, bin/auto.p.dist.in, src/classes/math.C,
16907: src/types/pa_vmail.C: ^math:crypt updated to generate random salt
16908: when needed and to call system crypt() if not $apr1$ prefix
16909:
16910: 2002-06-24 paf
16911:
16912: * INSTALL: --with-static/shared-mailreceive described
16913:
16914: * src/include/pa_config_fixed.h: ssize_t fixed
16915:
1.116 moko 16916: * configure, configure.in, src/include/pa_config_auto.h.in,
16917: src/targets/cgi/Makefile.am, src/types/Makefile.am,
1.95 moko 16918: src/types/pa_vmail.C: $mail:received makes update
16919:
16920: * src/: include/pa_config_fixed.h, types/pa_vmail.C: #ifdef
16921: WITH_MAILRECEIVE
16922:
16923: * src/targets/cgi/parser3.C: #ifdef WITH_MAILRECEIVE
16924:
16925: * src/targets/cgi/: getopt.c, getopt.h: introducing parser -m
16926: option, for $mail:receive
16927:
16928: * src/types/: pa_vmail.C, pa_vmail.h: uue to separate file
16929: introducting $message:received ^mail:send rewritten with backward
16930: comp
16931:
16932: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
16933: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
16934: types/types.dsp: win32xml win32mailreceive pseudomodules paths
16935: now
16936:
16937: * operators.txt, src/classes/mail.C, src/include/Makefile.am,
16938: src/include/pa_charset.h, src/include/pa_config_fixed.h,
16939: src/include/pa_request.h, src/include/pa_string.h,
16940: src/include/pa_uue.h, src/main/Makefile.am, src/main/main.dsp,
16941: src/main/pa_globals.C, src/main/pa_request.C,
16942: src/main/pa_string.C, src/main/pa_uue.C,
16943: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.C,
16944: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
16945: src/types/pa_vform.C, src/types/pa_vform.h, src/types/types.dsp:
16946: uue to separate file introducting $message:received ^mail:send
16947: rewritten with backward comp
16948:
16949: 2002-06-21 paf
16950:
1.116 moko 16951: * src/lib/: Makefile.am, md5/pa_md5.h: lib restructure apache .am &
16952: co changes
1.95 moko 16953:
1.116 moko 16954: * configure, configure.in, src/lib/md5/Makefile.am,
16955: src/lib/md5/pa_md5c.c, src/targets/cgi/Makefile.am: lib
16956: restructure .in and .am files appropriate changes
1.95 moko 16957:
16958: * src/lib/md5/: md5.dsp, pa_md5.h, pa_md5c.c: moved libltdl and
16959: pcre to libs/ added libs/md5 which is linked to non-apache
16960: targets ^math:crypt[password;$apr1$salt]
16961:
16962: * INSTALL, configure.in, operators.txt, parser3.dsw,
16963: src/Makefile.am, src/classes/Makefile.am,
16964: src/classes/classes.dsp, src/classes/math.C,
16965: src/lib/md5/Makefile.am, src/lib/pcre/LICENCE,
1.116 moko 16966: src/lib/pcre/Makefile.am, src/lib/pcre/README,
16967: src/lib/pcre/Tech.Notes, src/lib/pcre/dftables.c,
16968: src/lib/pcre/get.c, src/lib/pcre/ibm-1250.ucm,
16969: src/lib/pcre/ibm-1251.ucm, src/lib/pcre/ibm-1257.ucm,
16970: src/lib/pcre/internal.h, src/lib/pcre/maketables.c,
16971: src/lib/pcre/pcre-2_08.tar.gz, src/lib/pcre/pcre.3,
16972: src/lib/pcre/pcre.3.html, src/lib/pcre/pcre.3.txt,
16973: src/lib/pcre/pcre.c, src/lib/pcre/pcre.dsp, src/lib/pcre/pcre.h,
1.95 moko 16974: src/lib/pcre/pcre_dftables.dsp, src/lib/pcre/pcre_parser_ctype.c,
16975: src/lib/pcre/pcre_parser_ctype.dsp,
16976: src/lib/pcre/ruspart_win2koi.pl, src/lib/pcre/study.c,
16977: src/lib/pcre/win-koi.tab, src/main/Makefile.am,
16978: src/main/compile.tab.C, src/main/main.dsp,
16979: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.dsp,
16980: src/targets/isapi/parser3isapi.dsp, src/types/Makefile.am,
16981: src/types/types.dsp, src/lib/Makefile.am: moved libltdl and pcre
16982: to libs/ added libs/md5 which is linked to non-apache targets
16983: ^math:crypt[password;$apr1$salt]
16984:
16985: 2002-06-20 paf
16986:
16987: * INSTALL, configure, configure.in, operators.txt, bin/Makefile.am,
1.116 moko 16988: bin/auto.p.dist.in, src/classes/file.C, src/classes/op.C,
16989: src/doc/doxygen.cfg, src/include/pa_globals.h,
1.95 moko 16990: src/include/pa_request.h, src/main/execute.C,
16991: src/main/pa_request.C, src/targets/cgi/parser3.C,
16992: src/targets/isapi/parser3isapi.C, src/types/pa_vmethod_frame.h:
16993: marged latest HEAD updates, mainly file:justname&co &
16994: @auto/conf[filespec
16995:
16996: * operators.txt, src/classes/file.C:
16997: !^file:dirname[/a/some.tar.gz]=/a
16998: !^file:dirname[/a/b/]=/a
16999: !^file:basename[/a/some.tar.gz]=some.tar.gz
17000: !^file:justname[/a/some.tar.gz]=some.tar
17001: !^file:justext[/a/some.tar.gz]=gz
17002:
17003: * src/: classes/op.C, include/pa_request.h, main/execute.C,
17004: main/pa_request.C, types/pa_vmethod_frame.h: introducing
17005: @conf/auto[filespec]
17006:
17007: * bin/auto.p.dist.in: <noindex>
17008:
1.116 moko 17009: * configure: parser3.conf renamed to auto.p autoconf changes
1.95 moko 17010:
17011: * INSTALL, configure.in, operators.txt, bin/Makefile.am,
17012: bin/auto.p.dist.in, src/doc/doxygen.cfg,
17013: src/include/pa_globals.h, src/targets/cgi/parser3.C,
17014: src/targets/isapi/parser3isapi.C: parser3.conf renamed to auto.p
17015:
17016: 2002-06-18 paf
17017:
17018: * configure, configure.in, src/include/pa_version.h: version to
17019: configure.in
17020:
17021: * INSTALL: reflected .conf.dist dir change
17022:
1.116 moko 17023: * Makefile.am, configure, configure.in, bin/Makefile.am,
17024: etc/parser3.charsets/Makefile.am: parser3.conf.dist moved to bin,
1.95 moko 17025: .in & *.am updated
17026:
17027: * src/classes/file.C: strncasecmp
17028:
17029: * src/classes/file.C: strcasecmp
17030:
1.116 moko 17031: * bin/Makefile.am, etc/Makefile.am: bin/parser3.conf.dist [moved
17032: from etc
1.95 moko 17033:
17034: * src/classes/file.C: ^file::exec[script;$.bad error case
17035: insensitive check now
17036:
17037: * src/classes/file.C: ^file::exec[script;$.bad now error, not skip
17038:
17039: * configure, configure.in, src/include/pa_pool.h,
17040: src/include/pa_types.h: pack configure.in detection simplified.
17041: figured out that gcc on sparc not that stupid as thought
17042: previously: on sparc: when it sees packed class it modifies it's
17043: field-access-code to byte operations [stb, ldub] instead of 4byte
17044: operations [st, lduh] so packed must be all parts of packed
17045: class, i.e. it's parents&fields(classes). for now it's only
17046: String that packed and what was wrong is that it's parent -
17047: Pooled, were not packed. fixed that.
17048:
17049: 2002-06-14 paf
17050:
17051: * operators.txt: more precise xml-to-text options
17052:
17053: * operators.txt, src/types/pa_vxnode.C: xnode
17054: attribute_node.name/value xnode pi.node.data
17055:
17056: 2002-06-12 paf
17057:
1.116 moko 17058: * configure, configure.in, src/targets/cgi/Makefile.am,
17059: src/targets/cgi/parser3.C: removed root conf define creation
1.95 moko 17060:
17061: * INSTALL, configure.in, operators.txt, etc/Makefile.am,
17062: src/include/pa_globals.h, src/include/pa_request.h,
17063: src/main/compile.tab.C, src/main/pa_globals.C,
17064: src/main/pa_request.C, src/targets/cgi/parser3.C,
17065: src/targets/isapi/parser3isapi.C: parser3.conf now one and only
17066:
17067: * src/classes/mail.C: sendmail -ti [default now]
17068:
17069: * src/: classes/mail.C, main/pa_request.C: $MAIL $CHARSETS allowed
17070: to be strings. for convinient #ing
17071:
17072: * src/: include/pa_globals.h, include/pa_request.h, main/execute.C,
17073: main/pa_globals.C, main/pa_request.C: @rootconf [were @conf]
17074:
17075: * src/: include/pa_globals.h, include/pa_request.h, main/main.dsp,
17076: main/pa_globals.C, main/pa_request.C: @conf
17077:
17078: 2002-06-11 paf
17079:
17080: * src/classes/file.C: check simplified
17081:
17082: * src/: classes/file.C, targets/cgi/parser3.dsp,
17083: targets/isapi/parser3isapi.C: suexec env keys filter plus CGI_ as
17084: valid prefix
17085:
17086: * src/: classes/file.C, include/pa_request.h, include/pa_sapi.h,
17087: targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
17088: file::exec/cgi to pass HTTP_ vars introducing SAPI::environment
17089:
17090: 2002-06-10 paf
17091:
17092: * operators.txt, src/classes/op.C, src/include/pa_common.h,
17093: src/main/pa_common.C: lock failures reported now
17094:
17095: * src/main/compile_tools.C: ^if(" 1 "){y} bug fixed optimization
17096: string->double @ compile time were not-enough-checking...
17097:
17098: * src/main/: compile.tab.C, pa_string.C: whitespace after number in
17099: autoconvert now ignored
17100:
17101: * src/types/: pa_vform.C, pa_vform.h: $form: not determined yet
17102: check
17103:
17104: * src/classes/mail.C: mail netscape attachment name fixed. todo:
17105: $response:body content-type:name
17106:
17107: * configure, configure.in: hpux check, nsl link, no socket
17108:
17109: * operators.txt: old merge conflict removed
17110:
17111: * configure, configure.in: pack even address access on sparc&co
17112: arch checked in configure
17113:
17114: * configure, src/include/pa_version.h: makes
17115:
17116: * configure, configure.in, src/include/pa_version.h: makes
17117:
17118: * src/main/untaint.C: (bug#2) mail subject got always prepended
17119: with charset even when all letters were 7bit one
17120:
17121: * src/main/pa_common.C: merged fixed -d (bug)
17122:
17123: * src/main/pa_common.C: fixed -d (bug)
17124:
17125: 2002-06-03 paf
17126:
17127: * ChangeLog, operators.txt, etc/parser3.charsets/windows-1251.cfg,
17128: src/classes/classes.dsp, src/main/compile.tab.C,
17129: src/main/main.dsp, src/main/pa_globals.C,
17130: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
17131: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: fixed
17132: .dsp-s along with reorganized cvs modules dirs structure
17133:
17134: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
17135: main/pa_globals.C, targets/cgi/parser3.dsp,
17136: targets/isapi/parser3isapi.dsp, types/types.dsp: reorganized cvs
17137: modules
17138:
17139: 2002-05-28 paf
17140:
17141: * src/targets/cgi/parser3.C: info.uri now ""
17142:
17143: 2002-05-17 paf
17144:
17145: * src/classes/: table.C: ^table.save << checked empty
17146: pre/match/post columns
17147:
17148: 2002-05-16 paf
17149:
17150: * src/classes/image.C: image::measure can png now
17151:
17152: 2002-05-15 paf
17153:
17154: * operators.txt, src/classes/date.C: ^date::create[%H:%M[:%S]]
17155: added
17156:
17157: * etc/parser3.charsets/windows-1251.cfg: 0x forgot, fixed
17158:
17159: * operators.txt, src/classes/date.C: ^date::create[%Y[-%m[-%d[
17160: %H[:%M[:%S]]]]]] [-%m now
17161:
17162: 2002-05-14 paf
17163:
17164: * etc/parser3.charsets/: windows-1251.cfg: added 3 quotes
17165:
17166: 2002-05-07 paf
17167:
17168: * ChangeLog, src/classes/classes.dsp, src/classes/op.C,
17169: src/include/pa_globals.h, src/include/pa_request.h,
17170: src/include/pa_table.h, src/main/compile.tab.C,
17171: src/main/compile.y, src/main/main.dsp, src/main/pa_globals.C,
17172: src/main/pa_request.C, src/main/pa_table.C,
17173: src/targets/isapi/pa_pool.C, src/targets/isapi/parser3isapi.C,
17174: src/targets/isapi/parser3isapi.dsp,
17175: src/targets/isapi/pool_storage.h, src/types/types.dsp: Table
17176: name2number field now &. main_method_name now on Request pool
17177: rather on global_pool [Junction+VJunction created on same pool as
17178: name = were created on global pool, causing mem leaks]
17179:
17180: * src/: classes/classes.dsp, classes/op.C, include/pa_globals.h,
17181: include/pa_request.h, include/pa_table.h, main/compile.tab.C,
17182: main/compile.y, main/main.dsp, main/pa_globals.C,
17183: main/pa_request.C, main/pa_table.C, targets/isapi/pa_pool.C,
17184: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
17185: targets/isapi/pool_storage.h, types/types.dsp: Table name2number
17186: field now &. main_method_name now on Request pool rather on
17187: global_pool [Junction+VJunction created on same pool as name =
17188: were created on global pool, causing mem leaks]
17189:
17190: 2002-05-06 paf
17191:
17192: * src/: main/pa_globals.C, targets/cgi/parser3.C,
17193: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
17194: 100*40 bytes per request memory leak [nonpool malloc in globals]
17195:
17196: * src/: main/pa_globals.C, targets/cgi/parser3.C,
17197: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
17198: 100*40 bytes per request memory leak [nonpool malloc in globals]
17199:
17200: 2002-04-30 paf
17201:
17202: * configure, src/include/pa_version.h: version now not b
17203:
17204: * src/targets/cgi/parser3.C: request.uri now never 0
17205:
17206: 2002-04-29 paf
17207:
17208: * configure.in: removed b
17209:
17210: * src/: classes/op.C, include/pa_exception.h, main/pa_request.C:
17211: Exception::comment/type checked in (), no there's no empty
17212: type/comment by default
17213:
17214: * ChangeLog, src/doc/ClassExample1.dox, src/doc/ClassExample3.dox,
17215: src/doc/aliased.dox, src/doc/methoded.dox, src/doc/string.dox,
17216: src/doc/value.dox, src/include/pa_exception.h,
17217: src/main/pa_request.C, src/targets/cgi/parser3.C: merged from
17218: 0001
17219:
17220: 2002-04-26 paf
17221:
17222: * src/: doc/doxygen.cfg, targets/cgi/parser3.dsp: doxygen dot image
17223: size reduced
17224:
17225: 2002-04-25 paf
17226:
17227: * src/targets/cgi/: parser3.C: setenv in .htaccess when cgi is not
17228: under that dir got REDIRECT_ prefix before HTTP_PARSER_x_CONFIG,
17229: now that took into account
17230:
17231: * operators.txt, src/classes/date.C: ^date::create[2002-12-33
17232: 01:03:04]
17233:
17234: * ChangeLog, operators.txt, src/classes/date.C:
17235: ^date::create[2002-12-33 01:03:04]
17236:
17237: * ChangeLog: updated changelog
17238:
17239: * src/classes/table.C: removed restriction on column count to
17240: ^table.hash to work, now must be >0 [were >1]
17241:
17242: 2002-04-24 paf
17243:
17244: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
17245: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
17246: targets/isapi/parser3isapi.dsp, types/types.dsp: MSVC profile
17247: targets
17248:
17249: 2002-04-23 paf
17250:
17251: * operators.txt, src/classes/string.C:
17252: int/double/string:sql{}[$.default{code}] fixed [were barking:
17253: "junction used outside of context"]
17254:
17255: 2002-04-22 paf
17256:
17257: * types.txt, src/classes/string.C, src/include/pa_string.h,
17258: src/main/pa_string.C, src/types/pa_vstring.C,
17259: src/types/pa_vstring.h: ^string.optimize[]
17260:
17261: * src/: include/pa_globals.h, include/pa_table.h,
17262: main/pa_globals.C, main/pa_string.C, main/pa_table.C: fixed match
17263: table template
17264:
17265: * src/classes/: string.C: optimize removed from string
17266: .left/right/pos
17267:
17268: * src/main/execute.C: rolled back to
17269: before_killing_userjunction_contexts
17270:
17271: * src/main/execute.C: user junctions context killed
17272:
17273: * src/main/execute.C: junctions to local contexts got
17274: cleanized&checked later
17275:
17276: 2002-04-19 paf
17277:
17278: * src/: classes/string.C, include/pa_request.h,
17279: include/pa_string.h, main/pa_request.C, main/pa_string.C,
17280: types/pa_vstring.C, types/pa_vstring.h: string now optimized
17281: prior to .left .right .mid .pos .match when that is profitable,
17282: and always before .replace when $ORIGINS(1) optimization disabled
17283: economy from not wasting mem on lots of strings which occur by
17284: lots of String:mid calls to get parts of source string between
17285: found_occurances
17286:
17287: * src/classes/file.C: ovector now local economy: 16 bytes per
17288: ^file:list
17289:
17290: * src/: include/pa_globals.h, include/pa_table.h,
17291: main/pa_globals.C, main/pa_string.C: String::match table columns
17292: globalized, not created @ each ^match anymore economy:
17293: sizeof(Array)+space on 3+x cells=24+ bytes per ^match
17294:
17295: * src/: classes/op.C, classes/string.C, types/pa_value.h: VTable
17296: removed from each String::match replace iteration, and made
17297: stacked sizeof(VTable)=12bytes economy on each replace code
17298:
17299: * src/doc/footer.htm: 2001,
17300:
17301: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
17302: string.match[]['] option enables generation of $match.prematch
17303: .match .postmatch columns
17304:
17305: * src/main/pa_string.C: String::match options analized without
17306: cstr-ing them now
17307:
17308: * src/doc/: doxygen.cfg, footer.htm, html2chm.cmd, postbuild.txt,
17309: sources2html.cmd, view_chm.cmd, view_html.cmd, chmhelper.pl:
17310: config updated to doxygen 1.2.15, created helper which fixes
17311: minor bugs in chm project files & htm tree. changed extension to
17312: .htm
17313:
17314: 2002-04-18 paf
17315:
17316: * src/doc/doxygen.cfg: .chi generation disabled
17317:
17318: * src/: classes/classes.h, classes/xdoc.C, classes/xnode.C,
17319: classes/xnode.h, types/pa_vxdoc.C: xdoc(xnode) now fully -
17320: fields&methods
17321:
17322: * src/: classes/classes.h, classes/hash.C, types/pa_value.h,
17323: types/pa_vbool.h, types/pa_vcookie.h, types/pa_vdate.h,
17324: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.h,
17325: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
17326: types/pa_vjunction.h, types/pa_vobject.h, types/pa_vrequest.h,
17327: types/pa_vresponse.h, types/pa_vstateless_class.h,
17328: types/pa_vstateless_object.h, types/pa_vstatus.h,
17329: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h,
17330: types/pa_vxdoc.h, types/pa_vxnode.h: fclass_real lowered from
17331: VStateless_class to VObject
17332:
17333: * src/: main/pa_request.C, types/pa_valiased.h,
17334: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17335: types/pa_vstring.h: VStateless_string_object speicalized light
17336: version of VStateless_object
17337:
17338: * src/classes/op.C: ^throw comment param made optional
17339:
17340: * src/types/: pa_valiased.C, pa_valiased.h, pa_vclass.h,
17341: pa_vobject.h, pa_wcontext.C: VAliased get/set alias now virtual
17342: and implemented down in VClass, fclass_alias removed,
17343:
17344: * src/types/pa_value.C: forced to cut that from .h because of
17345: VStateless_class usage [undefined in .h]
17346:
17347: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
17348: main/compile_tools.C, main/compile_tools.h, main/execute.C,
17349: main/pa_request.C, types/pa_vmethod_frame.h: OP_GET_METHOD_FRAME
17350: merged with OP_CALL, VCodeFrame move to stack [no more heap waste
17351: on each CALL]
17352:
17353: * src/: classes/classes.h, classes/date.C, classes/double.C,
17354: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
17355: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
17356: classes/response.C, classes/string.C, classes/table.C,
17357: classes/void.C, classes/xnode.C, include/pa_globals.h,
17358: include/pa_request.h, main/execute.C, main/pa_globals.C,
17359: main/pa_request.C, types/Makefile.am, types/pa_value.h,
17360: types/pa_vdouble.h, types/pa_vform.C, types/pa_vhash.h,
17361: types/pa_vint.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
17362: types/pa_vstateless_class.h, types/pa_wcontext.C,
17363: types/pa_wcontext.h, types/pa_wwrapper.h, types/types.dsp:
17364: removed Value::fname
17365:
17366: 2002-04-17 paf
17367:
17368: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
17369: doc/ClassExample3.dox, doc/compiler.dox, doc/module.dox,
17370: doc/pooled.dox, doc/string.dox, doc/targets.dox,
17371: include/pa_pool.h, include/pa_types.h: dox updated to current
17372: state, PTHROW freshen to throw & co
17373:
17374: * src/types/pa_vhash.h: vstring wrong parent fixed
17375:
17376: * src/classes/op.C: taint local result var bug fixed
17377:
17378: 2002-04-16 paf
17379:
17380: * asm.txt, form.txt, lang.txt, sql.txt: removed outdated. see in
17381: Attic asm.txt as most interesting
17382:
17383: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: removed
17384: check, preventing content-length: 0 from appearing
17385:
17386: * src/main/execute.C: $result in @main now taken into account as in
17387: usual functions
17388:
17389: * src/: doc/postbuild.txt, main/execute.C: $result in @postprocess
17390: & @unhandled_exception now taken into account as in usual
17391: functions
17392:
17393: * src/doc/postbuild.txt: instructions on post .html build
17394:
17395: * src/doc/: doxygen.cfg, html2chm.cmd: .chm file only now, no .chi
17396:
17397: * src/: classes/file.C, main/pa_exec.C: stderr of execs mark as
17398: tainted
17399:
17400: * src/main/pa_request.C: uri in error log
17401:
17402: * src/: classes/date.C, main/compile.tab.C, targets/cgi/parser3.C:
17403: cheched date:create(days) param for validity [later were assumed
17404: valid and crashed on invalid onces]
17405:
17406: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
17407: main/execute.C, targets/cgi/parser3.C: OP_CALL -> OP_CALL__WRITE
17408: and used that for removing VString wrapper
17409:
17410: * src/classes/op.C: exception2vhash file now tainted
17411:
17412: * src/classes/op.C: _process pseudo origin copied from local var to
17413: heap
17414:
17415: * src/classes/op.C: extra check on empty file in origin in _execute
17416:
17417: 2002-04-15 paf
17418:
17419: * src/: main/execute.C, types/pa_value.h: fixed name update
17420:
17421: * src/classes/: file.C, op.C, table.C: finished dual write_xxx_lang
17422: functions
17423:
17424: * src/: classes/file.C, classes/hash.C, classes/op.C,
17425: include/pa_request.h, main/execute.C, types/pa_wcontext.h:
17426: started dual write_xxx_lang functions, if checked & works
17427:
17428: * src/: classes/date.C, classes/file.C, classes/mail.C,
17429: classes/string.C, classes/xnode.C, include/pa_request.h,
17430: types/pa_value.h, types/pa_wcontext.h: removed absolutely
17431: unnecessary VString shells
17432:
17433: * src/main/execute.C: CodeFrame soul fixed [mistakenly killed by
17434: prev changes]
17435:
17436: * src/: classes/image.C, classes/op.C, classes/string.C,
17437: classes/table.C, include/pa_request.h, main/execute.C,
17438: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
17439: StringOrValue wcontext result, now ready for dual writes
17440:
17441: * src/targets/cgi/parser3.C: ctime sometimes can be just "",
17442: checked that
17443:
17444: * src/main/: compile.tab.C, compile.y, compile_tools.C,
17445: compile_tools.h, execute.C: OP_GET_ELEMENT+OP_GET_ELEMENT__WRITE
17446: changed to OP_WRITE_VALUE in var get cases
17447:
17448: * src/: classes/op.C, include/pa_globals.h, include/pa_opcode.h,
17449: include/pa_request.h, main/compile.tab.C, main/compile.y,
17450: main/compile_tools.C, main/compile_tools.h, main/execute.C,
17451: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C:
17452: switch in hash constructor fixed [were problems with using of
17453: stacked wwrapper after it's death]
17454:
17455: 2002-04-12 paf
17456:
17457: * operators.txt, src/classes/table.C: table.select(expression) 0
17458:
17459: 2002-04-11 paf
17460:
17461: * src/: classes/string.C, include/pa_request.h, main/execute.C:
17462: Request::process_internal codeFrame & wwrapper stacked [not
17463: wasting heap anymore]
17464:
17465: 2002-04-10 paf
17466:
17467: * src/: classes/double.C, classes/file.C, classes/hash.C,
17468: classes/image.C, classes/int.C, classes/math.C, classes/op.C,
17469: classes/string.C, classes/table.C, classes/void.C,
17470: classes/xdoc.C, include/pa_request.h, main/execute.C,
17471: main/pa_string.C: killed Request::process() wrapping
17472: VString(String) in case we need only String
17473:
17474: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
17475: killed 8 bytes from String.head
17476:
17477: 2002-04-09 paf
17478:
17479: * src/: main/compile.tab.C, targets/cgi/parser3.C,
17480: targets/isapi/parser3isapi.C: removed { char *a; { /*sub
17481: local*/char b[...]; a=b; situations
17482:
17483: * operators.txt, src/classes/xdoc.C: xslt params made literal
17484:
17485: * src/classes/xdoc.C: xslt params fixed
17486:
17487: * src/: main/pa_common.C, targets/cgi/parser3.C,
17488: types/pa_vdouble.h, types/pa_vint.h: int/double get_string now
17489: not pool.malloc(MAX_NUMBER) but really neaded
17490:
17491: * operators.txt, src/classes/double.C, src/classes/int.C:
17492: int/double.int/double(default)
17493:
17494: 2002-04-04 paf
17495:
17496: * src/: include/pa_string.h, main/pa_string.C: fixed string.replace
17497: [when reconstructing pieces were split by
17498: max_integral(piece.size), thus some strings to replace happen to
17499: be split into two = not replaced)
17500:
17501: * src/targets/cgi/: parser3.C, parser3.dsp: document root in
17502: standalone version = current dir
17503:
17504: * src/targets/cgi/parser3.C: document root in standalone version =
17505: current dir
17506:
17507: 2002-04-03 paf
17508:
17509: * configure, configure.in: more checks on nonexistent charset
17510:
1.116 moko 17511: * INSTALL, configure, configure.in: root config configure options
1.95 moko 17512:
17513: 2002-04-02 paf
17514:
17515: * src/main/compile.C: parser.compile [exception name more like in
17516: doc]
17517:
17518: 2002-04-01 paf
17519:
17520: * src/: classes/mail.C, include/pa_string.h, main/untaint.C,
17521: targets/isapi/parser3isapi.dsp: mail subject encoding taken from
17522: .content-type.charset, not .charset
17523:
17524: 2002-03-29 paf
17525:
17526: * etc/parser3.charsets/koi8-r.cfg: koi8-r += ukranian letters
17527:
17528: * operators.txt, src/classes/date.C: ^date::create now may not
17529: supply day, default 1. checked 29.03 -> 29.02 roll on non 366
17530: days' year. | 31.05->31.04 roll
17531:
17532: 2002-03-28 paf
17533:
17534: * operators.txt, src/classes/date.C, src/classes/op.C,
17535: src/include/pa_globals.h, src/include/pa_hash.h,
17536: src/main/pa_globals.C, src/types/pa_vdate.h: ^cache[file][date]{
17537: ^cache(seconds) ^cache[date] }
17538:
17539: * src/classes/: xdoc.C, xnode.C, xnode.h: removed redundant pool
17540: param
17541:
17542: 2002-03-27 paf
17543:
17544: * operators.txt, src/classes/date.C, src/classes/double.C,
17545: src/classes/file.C, src/classes/form.C, src/classes/hash.C,
17546: src/classes/image.C, src/classes/int.C, src/classes/mail.C,
17547: src/classes/math.C, src/classes/op.C, src/classes/string.C,
17548: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
17549: src/classes/xnode.C, src/include/pa_exception.h,
17550: src/include/pa_request.h, src/include/pa_stylesheet_connection.h,
17551: src/main/compile.C, src/main/compile_tools.C, src/main/execute.C,
17552: src/main/pa_array.C, src/main/pa_charset.C,
17553: src/main/pa_charsets.C, src/main/pa_common.C,
17554: src/main/pa_dictionary.C, src/main/pa_exception.C,
17555: src/main/pa_exec.C, src/main/pa_pool.C, src/main/pa_request.C,
17556: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
17557: src/main/pa_string.C, src/main/pa_table.C, src/main/untaint.C,
17558: src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
17559: src/types/pa_value.h, src/types/pa_vcookie.C,
17560: src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vhash.h,
17561: src/types/pa_vmethod_frame.h, src/types/pa_vstatus.C,
17562: src/types/pa_vtable.C, src/types/pa_vxdoc.h,
17563: src/types/pa_vxnode.h, src/types/pa_wcontext.C,
17564: src/types/pa_wwrapper.h: assigned exception types
17565:
17566: * operators.txt, src/classes/op.C, src/include/pa_config_fixed.h,
17567: src/include/pa_request.h, src/main/execute.C,
17568: src/main/pa_request.C: decided agains resetting exception_trace,
17569: just changed name
17570:
17571: 2002-03-26 paf
17572:
17573: * src/: include/pa_common.h, main/pa_exec.C: windows exec chdir
17574: fixed
17575:
17576: * src/classes/op.C: forced language of $source field of exception
17577: to 'tainted', so that sql-langed-frags could be outputed outside
17578: of connect
17579:
17580: * operators.txt: removed date.roll limit of +-1 offset
17581:
17582: * src/classes/date.C: removed date.roll limit of +-1 offset
17583:
17584: * operators.txt, src/classes/date.C: fixed date roll on
17585: daylightsaving days mktime took into account tm_isdst flag, which
17586: remained from BEFORE roll, but should have been reset
17587:
17588: 2002-03-25 paf
17589:
17590: * operators.txt, src/targets/cgi/parser3.C:
17591: http_site_config_filespec
17592:
17593: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
17594: main/pa_exec.C: f(!forced_allow) to allow --with-sendmail to work
17595: with any/both --disable-foreign-group-files --disable-execs
17596:
17597: * INSTALL: "--with=sendmail=COMMAND" comment
17598:
17599: * INSTALL, configure, configure.in, src/classes/mail.C,
17600: src/include/pa_config_auto.h.in, src/main/pa_exec.C,
1.116 moko 17601: src/targets/cgi/Makefile.am: --disable-foreign-group-files now
17602: disables execs also. introducing --sendmail
1.95 moko 17603:
17604: * operators.txt: pgsql options comment
17605:
17606: * INSTALL: comment on --disable-link-stdcpp
17607:
1.116 moko 17608: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
17609: libstdc++ link skipping configure option
1.95 moko 17610:
17611: * src/: classes/op.C, include/pa_sql_connection.h: sql connection
17612: with error were put to cache with 'marked_to_rollback' flag, all
17613: consequent even OK requests rolled back
17614:
17615: 2002-03-22 paf
17616:
17617: * src/main/pa_exec.C: createprocess nowindow flag check on readfile
17618: false return
17619:
17620: * operators.txt: few comments on sets
17621:
17622: 2002-03-18 paf
17623:
17624: * operators.txt, src/classes/op.C, src/include/pa_exception.h,
17625: src/include/pa_globals.h, src/include/pa_request.h,
17626: src/include/pa_stack.h, src/main/pa_globals.C,
17627: src/main/pa_request.C: introducing ^try
17628:
17629: * src/: main/pa_charset.C, targets/isapi/pa_threads.C,
17630: types/pa_vdouble.h: removed some tested @tests
17631:
17632: 2002-03-15 paf
17633:
17634: * operators.txt, src/classes/table.C: ^table.locate(logical expr)
17635:
17636: 2002-03-13 paf
17637:
17638: * src/main/pa_exception.C: checked not-pooled malloc
17639:
17640: 2002-03-11 paf
17641:
17642: * INSTALL, configure, configure.in,
17643: src/include/pa_config_auto.h.in: --disable-foreign-group-files
17644:
17645: * src/main/pa_common.C: --disable-foreign-group-files
17646:
17647: * INSTALL: --disable-execs
17648:
17649: * src/main/pa_exec.C: --disable-execs
17650:
17651: * configure, configure.in, src/include/pa_config_auto.h.in:
17652: --disable-execs
17653:
17654: * src/: include/pa_config_fixed.h, main/pa_exec.C: --disable-execs
17655:
17656: * src/types/pa_vfile.C: $file.text now 0A linebreaks,
17657: file::exec/cgi linebreaks "0D0A" changed to 0A onces
17658:
17659: 2002-03-05 paf
17660:
17661: * operators.txt, src/classes/date.C: date week calendar columns
17662: named
17663:
17664: * operators.txt, src/classes/date.C: date week calendar columns
17665: named
17666:
17667: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: iis5 now
17668: requires headers to be terminated with \r\n manually [refuses to
17669: separate header/body itself]
17670:
17671: * src/: main/pa_globals.C, targets/cgi/parser3.C,
17672: targets/isapi/parser3isapi.C: isapi site config beside .dll
17673:
17674: 2002-03-04 paf
17675:
17676: * src/: classes/op.C, types/pa_vfile.C: process body now evaluated
17677: in PASS language
17678:
17679: * src/: classes/op.C, include/pa_string.h, main/pa_string.C: string
17680: deserialize checks on broken file
17681:
17682: * src/targets/isapi/: pa_threads.C, parser3isapi.C,
17683: parser3isapi.dsp: isapi updated
17684:
17685: 2002-03-01 paf
17686:
17687: * src/main/pa_exec.C: execle -> execve, now argc OK
17688:
17689: 2002-02-28 paf
17690:
17691: * src/main/untaint.C: removed some debug comments
17692:
17693: * src/main/pa_charsets.C: when placing charset to cache using
17694: global name now [were request]
17695:
17696: * configure, configure.in: apache module updated
17697:
17698: * src/main/pa_string.C: origin by first piece preferred before last
17699: piece
17700:
17701: 2002-02-27 paf
17702:
17703: * src/main/pa_charset.C: size_t
17704:
17705: * INSTALL: shared/static-xml with-pathlink
17706:
17707: * operators.txt: SMTP comment
17708:
17709: 2002-02-26 paf
17710:
17711: * src/main/pa_exec.C: more precise names for vars, cosmetic
17712:
17713: * src/classes/xnode.C: in some situation, xpath query returned
17714: result with type NODESET, but empty nodeset member field, checked
17715: that
17716:
17717: 2002-02-22 paf
17718:
17719: * INSTALL: without-zlib comment
17720:
17721: * etc/parser3.charsets/windows-1251.cfg: °
17722:
17723: * configure, configure.in: glib###.a detection fixed
17724:
17725: * INSTALL: hashfile removed from INSTALL
17726:
1.116 moko 17727: * Makefile.am: make update
1.95 moko 17728:
17729: * src/main/pa_string.C: string iterators fixed again, so were
17730: String::join_chain
17731:
17732: * src/main/pa_string.C: string iterators fixed again, so were
17733: String::join_chain
17734:
17735: * src/: include/pa_string.h, main/pa_string.C: string iterators
17736: fixed again, so were String::join_chain
17737:
17738: * src/types/pa_vcookie.C: cookie "expires=0" = "session"
17739:
17740: * operators.txt, src/types/pa_vcookie.C: cookie "expires=0" =
17741: "session"
17742:
1.116 moko 17743: * configure, configure.in, src/include/pa_config_auto.h.in:
17744: --with-shared-xml --with-static-xml
1.95 moko 17745:
17746: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
17747: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
17748: types/types.dsp: *.dsp: removed refereces to win32db & ancient
17749: xalan&xml
17750:
17751: * acconfig.h: acconfig move in cvs[from src/libltdl to /]
17752:
17753: * operators.txt, src/classes/classes.dsp, src/main/main.dsp,
17754: src/types/types.dsp: removed hashfile support from sources for
17755: now
17756:
1.116 moko 17757: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 17758: src/classes/hashfile.C, src/include/Makefile.am,
1.116 moko 17759: src/include/pa_config_auto.h.in, src/include/pa_db_connection.h,
17760: src/include/pa_db_manager.h, src/include/pa_db_table.h,
17761: src/main/Makefile.am, src/main/pa_db_connection.C,
1.95 moko 17762: src/main/pa_db_manager.C, src/main/pa_db_table.C,
1.116 moko 17763: src/main/pa_globals.C, src/targets/cgi/Makefile.am,
17764: src/types/Makefile.am, src/types/pa_vhashfile.C,
17765: src/types/pa_vhashfile.h: removed hashfile support for now
1.95 moko 17766:
17767: 2002-02-21 paf
17768:
17769: * src/main/untaint.C: removed debug code, activated commented-for
17770: debug parts
17771:
1.116 moko 17772: * Makefile.am: make cvsupdate
1.95 moko 17773:
17774: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
17775: main/untaint.C: STRING_*FOREACH_ROW changed to stop at
17776: append_row, not at link zero now string to string appending works
17777:
17778: 2002-02-20 paf
17779:
17780: * src/: include/pa_string.h, main/execute.C, main/untaint.C,
17781: targets/cgi/pa_pool.C, targets/cgi/parser3.C: //#define
17782: DEBUG_STRING_APPENDS_VS_EXPANDS
17783:
17784: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
17785: economy: 22%
17786:
17787: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
17788: space uptimized: string::link_row removed
17789:
17790: * src/: include/pa_string.h, include/pa_stylesheet_connection.h,
17791: main/pa_db_manager.C, main/pa_dictionary.C, main/pa_string.C,
17792: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
17793: types/pa_vstring.h: speed uptimized: string::is_empty
17794:
17795: * operators.txt, src/include/pa_common.h,
17796: src/include/pa_config_fixed.h, src/include/pa_string.h,
17797: src/include/pa_types.h, src/main/compile.tab.C,
17798: src/main/execute.C, src/main/pa_string.C, src/main/untaint.C,
17799: src/targets/cgi/pa_pool.C, src/targets/cgi/parser3.C: strign to
17800: string append optimiziation idea and estimates
17801:
17802: 2002-02-19 paf
17803:
17804: * src/classes/math.C: not used directly [but erroreously reported
17805: that 'is', thus registering twice&other probs]
17806:
17807: * src/classes/: xdoc.C, xnode.C: getElementsByTagName and *NS moved
17808: to node [element]
17809:
17810: * src/main/compile.C: without string_origins parse error
17811: file+line+col possible
17812:
17813: * src/main/: compile.C: without string_origins not worked
17814:
17815: 2002-02-18 paf
17816:
17817: * src/types/pa_vdouble.h: since we have in_expression removed that
17818: trick i've installed into double::as_string
17819:
17820: * src/main/pa_globals.C: extern "C" was removed too fast
17821:
17822: * src/: include/pa_opcode.h, include/pa_request.h,
17823: main/compile.tab.C, main/compile.y, main/execute.C,
17824: types/pa_wcontext.h: in_expression aimed to solve old problem
17825: with string/nonstring values, now in expressions double/int
17826: values are passed as-is, without stupid tostring/fromstring
17827: conversions
17828:
17829: * src/main/: main.dsp, pa_globals.C: removed unneded #ifdef
17830: __cplusplus } #endif
17831:
17832: * src/main/compile.tab.C: bison env set so one could compile
17833: without cygwin installed
17834:
17835: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
17836: targets/cgi/parser3.dsp, types/types.dsp: win32xml now contains
17837: gnome xml libs parser .dsp-s changed accordingly
17838:
17839: * operators.txt, src/targets/cgi/parser3.C: PARSER_ROOT_CONFIG
17840:
17841: * operators.txt, src/classes/date.C: date::create [were date::set,
17842: with backward comp
17843:
17844: * src/classes/math.C: math:random range check fixed
17845:
17846: * src/main/: compile.tab.C, compile.y: integer division stops name
17847:
17848: * INSTALL: local install comment
17849:
1.116 moko 17850: * ltconfig, ltmain.sh: removed libtool subpart files
1.95 moko 17851:
1.116 moko 17852: * acinclude.m4, aclocal.m4, configure, configure.in,
17853: src/include/pa_config_auto.h.in,
17854: src/include/pa_config_includes.h, src/targets/cgi/Makefile.am,
17855: src/targets/cgi/parser3.C: removed libtool usage from build mech
1.95 moko 17856:
17857: * operators.txt: \ comment
17858:
17859: 2002-02-13 paf
17860:
17861: * src/include/pa_config_includes.h: sys/time time both included
17862: now. vaguely remember confilicts on this on some system [not on
17863: six|ablv] so when would see them again would think up proper
17864: check
17865:
1.116 moko 17866: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
17867: --with-glib-config CXXLINK=$(CC) for targets/cgi/parser3
1.95 moko 17868:
17869: * src/main/pa_common.C: truncation never occured when writing files
17870: on unix [since i've changed cache mech] fix
17871:
17872: * src/main/pa_common.C: strnchr: sanity check added
17873:
17874: * etc/parser3.charsets/windows-1257.cfg: id added
17875:
17876: * etc/parser3.charsets/windows-1257.cfg, src/targets/cgi/parser3.C:
17877: baltic charset file generated, in generation script ispunct check
17878: added
17879:
17880: 2002-02-08 paf
17881:
1.116 moko 17882: * src/: include/Makefile.am, sql/Makefile.am,
17883: targets/isapi/Makefile.am: forgotten makes
1.95 moko 17884:
17885: * src/types/: pa_vcookie.C: VCookie::fill_fields one check
17886: forgotten
17887:
17888: * src/types/pa_vcookie.C: VCookie::fill_fields one check forgotten
17889:
17890: * INSTALL, README: install&others updated
17891:
17892: * AUTHORS, COPYING, ChangeLog, INSTALL: install&others updated
17893:
1.116 moko 17894: * Makefile.am, configure, configure.in,
17895: etc/parser3.charsets/Makefile.am, src/Makefile.am,
17896: src/classes/Makefile.am, src/main/Makefile.am,
17897: src/main/pa_status_provider.C, src/targets/Makefile.am,
17898: src/targets/cgi/Makefile.am, src/types/Makefile.am: 'make dist'
17899: works
1.95 moko 17900:
17901: * src/: classes/classes.C, classes/classes.h, classes/date.C,
17902: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
17903: classes/hashfile.C, classes/int.C, classes/mail.C,
17904: classes/math.C, classes/op.C, classes/response.C,
17905: classes/string.C, classes/table.C, classes/void.C,
17906: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
17907: include/pa_array.h, include/pa_cache_managers.h,
17908: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
17909: include/pa_config_fixed.h, include/pa_config_includes.h,
17910: include/pa_db_connection.h, include/pa_db_manager.h,
17911: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
17912: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
17913: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
17914: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
17915: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
17916: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
17917: include/pa_stack.h, include/pa_string.h,
17918: include/pa_stylesheet_connection.h,
17919: include/pa_stylesheet_manager.h, include/pa_table.h,
17920: include/pa_threads.h, include/pa_types.h, main/compile.C,
17921: main/compile_tools.C, main/compile_tools.h, main/execute.C,
17922: main/pa_array.C, main/pa_cache_managers.C, main/pa_charsets.C,
17923: main/pa_db_connection.C, main/pa_db_manager.C,
17924: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
17925: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
17926: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
17927: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
17928: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
17929: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
17930: targets/cgi/pa_threads.C, targets/cgi/pool_storage.h,
17931: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
17932: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
17933: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
17934: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
17935: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
17936: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.h,
17937: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.h,
17938: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
17939: types/pa_vmethod_frame.h, types/pa_vobject.h,
17940: types/pa_vrequest.h, types/pa_vresponse.h,
17941: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
17942: types/pa_vstateless_object.h, types/pa_vstatus.C,
17943: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
17944: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
17945: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h,
17946: classes/image.C, main/pa_common.C, main/pa_exec.C,
17947: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
17948: types/pa_vfile.C, types/pa_vform.C, types/pa_vhashfile.C,
17949: types/pa_vimage.C, types/pa_vrequest.C, types/pa_vresponse.C,
17950: types/pa_vstring.C, types/pa_vtable.C, types/pa_vxdoc.C,
17951: types/pa_vxnode.C, main/pa_charset.C: name spelling
17952:
17953: * src/: classes/classes.C, classes/classes.h, classes/date.C,
17954: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
17955: classes/hashfile.C, classes/image.C, classes/int.C,
17956: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
17957: classes/string.C, classes/table.C, classes/void.C,
17958: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
17959: include/pa_array.h, include/pa_cache_managers.h,
17960: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
17961: include/pa_config_fixed.h, include/pa_config_includes.h,
17962: include/pa_db_connection.h, include/pa_db_manager.h,
17963: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
17964: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
17965: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
17966: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
17967: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
17968: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
17969: include/pa_stack.h, include/pa_string.h,
17970: include/pa_stylesheet_connection.h,
17971: include/pa_stylesheet_manager.h, include/pa_table.h,
17972: include/pa_threads.h, include/pa_types.h, main/compile.C,
17973: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
17974: main/execute.C, main/pa_array.C, main/pa_cache_managers.C,
17975: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
17976: main/pa_db_connection.C, main/pa_db_manager.C,
17977: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
17978: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
17979: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
17980: main/pa_socks.C, main/pa_sql_driver_manager.C,
17981: main/pa_status_provider.C, main/pa_string.C,
17982: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
17983: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
17984: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
17985: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
17986: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
17987: targets/isapi/pool_storage.h, types/pa_valiased.C,
17988: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
17989: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
17990: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
17991: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
17992: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
17993: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
17994: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
17995: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
17996: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
17997: types/pa_vresponse.h, types/pa_vstateless_class.C,
17998: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17999: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
18000: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
18001: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
18002: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
18003: types/pa_wcontext.h, types/pa_wwrapper.h: 2002
18004:
18005: 2002-02-07 paf
18006:
18007: * src/main/pa_socks.C: swapped headers to avoid compiler warnings
18008:
1.116 moko 18009: * configure, configure.in, src/include/pa_config_auto.h.in,
18010: src/main/pa_common.C, src/main/pa_socks.C: compiled under cygwin
18011: added yet another locking function: fcntl
1.95 moko 18012:
18013: * config.sub: on cygwin configure passes it with strange i1586
18014: const, hacked it to mean i586
18015:
18016: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
18017: disabled $if reference due to conflicts with local variables
18018:
18019: * operators.txt, src/classes/xdoc.C, src/include/pa_config_fixed.h:
18020: xdoc::set obsolete now, now xdoc::create, with both sences
18021:
18022: * operators.txt, src/classes/table.C, src/include/pa_array.h,
18023: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
18024: table::create now // 'set' name obsolete now table clone.
18025:
18026: * operators.txt, src/classes/string.C,
18027: src/include/pa_config_fixed.h, src/main/compile.tab.C:
18028: ^int/double/string.format now can be called with normal []
18029: brackets, not stupid {} as it were implemented for some strange
18030: reason. retaining backward compatibility due to some
18031: already-implemented servers
18032:
18033: * src/: include/pa_array.h, main/compile.C, main/compile.tab.C,
18034: main/compile.y, main/compile_tools.C, main/compile_tools.h:
18035: operators now detected by check at name_without_curly_rdive_read
18036: rule whether diving code constists only of
18037: OP_VALUE+string+OP_GET_ELEMENT. and last op code substituted
18038: with OP_GET_ELEMENT_OR_OPERATOR to form
18039: OP_VALUE+string+OP_GET_ELEMENT_OR_OPERATOR. code
18040:
18041: 2002-02-06 paf
18042:
18043: * configure, configure.in: prefix expanded, grr
18044:
18045: * operators.txt, src/classes/mail.C: mail:send config changed
18046:
18047: 2002-02-05 paf
18048:
18049: * operators.txt: regex options commented
18050:
18051: * src/main/: pa_exec.C: argv0 now correct
18052:
18053: * src/types/pa_vstatus.C: status:rusage 3
18054:
18055: * src/types/pa_vstatus.C: status:rusage 2
18056:
18057: * operators.txt: status:rusage described int operators
18058:
18059: * src/types/pa_vstatus.C: status:rusage 1
18060:
18061: * configure.in, src/types/Makefile.am, src/types/pa_vstatus.h,
18062: src/types/types.dsp: status:rusage
18063:
18064: * configure.in, operators.txt, src/classes/file.C,
18065: src/classes/op.C, src/include/pa_common.h,
18066: src/include/pa_config_includes.h, src/main/compile.tab.C,
18067: src/main/pa_common.C: rewritten ^cache to use
18068: non-blocking-exclusive-caches
18069:
18070: * src/main/pa_common.C: text file read mode on win32 adjusted
18071: [speed impact. was off for debugging purpose, but forgotten
18072: afterwards]
18073:
18074: 2002-02-01 paf
18075:
18076: * src/classes/op.C: file_write does EX lock after create, while
18077: file_read does SH after open, so there's a moment after create
18078: but before EX lock when read can sneak into, and read
18079: just-created-for-writing-and-not-yet-locked file, added a check
18080: for that in ^cache...read
18081:
18082: 2002-01-31 paf
18083:
18084: * src/main/: compile.y, compile.tab.C: disabled operator call after
18085: ^xxx:
18086:
18087: * src/main/: compile.tab.C, execute.C: made operators lookup first
18088: in ^xxx situation. so that one could not do $if[1] ^if[xxx]
18089:
18090: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.C,
18091: main/compile.tab.C, main/compile.y, main/compile_tools.C,
18092: main/compile_tools.h, main/execute.C, types/pa_wcontext.h:
18093: operators check 6.1 rewritten. now check is done at compile time
18094:
18095: * src/main/execute.C: operators check 5 floated up old error of
18096: staying in 'entered class/object' state after $a($a..) it
18097: prevented operators from being called thereafter
18098:
18099: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
18100: main/execute.C: operators check 4 floated up old error of staying
18101: in 'entered object' state after ^a.a(a) it prevented operators
18102: from being called thereafter
18103:
18104: * src/main/execute.C: operators check 3 floated up old error of
18105: staying in 'entered class' state after $a:a(a) it prevented
18106: operators from being called thereafter
18107:
18108: * src/: main/execute.C, types/pa_wcontext.h: operators check 2
18109: floated up old error of staying in 'entered class' state after
18110: $a:a[a] it prevented operators from being called thereafter
18111:
18112: * src/main/execute.C: operators check, thay mistakenly seen in
18113: $class:operator $object.operators contexts
18114:
18115: * src/: classes/xdoc.C, targets/cgi/parser3.dsp: now compiles under
18116: win32
18117:
1.116 moko 18118: * INSTALL, configure, configure.in, ident.awk, etc/Makefile.am,
18119: src/classes/Makefile.am, src/main/Makefile.am,
18120: src/targets/cgi/Makefile.am,
1.95 moko 18121: src/targets/cgi/pa_config_paths.h.in, src/targets/cgi/parser3.C,
1.116 moko 18122: src/types/Makefile.am: lowered indent.awk back to src/
1.95 moko 18123:
1.116 moko 18124: * AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, NEWS, README,
18125: acinclude.m4, aclocal.m4, asm.txt, config.guess, config.sub,
18126: configure, configure.in, form.txt, ident.awk, install-sh,
18127: lang.txt, ltconfig, ltmain.sh, missing, mkinstalldirs,
18128: operators.txt, parser3.dsw, sql.txt, types.txt, etc/Makefile.am,
1.95 moko 18129: etc/parser3.charsets/Makefile.am,
18130: etc/parser3.charsets/koi8-r.cfg,
18131: etc/parser3.charsets/windows-1250.cfg,
18132: etc/parser3.charsets/windows-1251.cfg, src/Makefile.am,
1.116 moko 18133: src/classes/Makefile.am, src/include/pa_config_auto.h.in,
18134: src/main/Makefile.am, src/targets/cgi/Makefile.am,
18135: src/targets/cgi/parser3.C, src/types/Makefile.am: moved etc&www
18136: out of src, moved configure&co out of src added windows-1250.cfg
1.95 moko 18137: straightened installation scripts procedure made
18138: targets/cgi/parser3.C be dependant on ./configure --sysconfdir
18139: change
18140:
18141: 2002-01-30 paf
18142:
18143: * src/classes/xdoc.C: acconfig.h changed [comments before #undefs
18144: removed] those comments were a mistake, and prevented libltdl
18145: from function properly
18146:
18147: 2002-01-29 paf
18148:
1.116 moko 18149: * src/: Makefile.am, classes/Makefile.am: removed libltdl/libtool
18150: creation [modified acinclude.m4 which were creating int into just
18151: assignment LIBTOOL=../libtool] added default system
18152: config&charsetts prepared 'make install', now it installs
18153: targets/cgi/parser3 into bin directory etc/parser3.conf &
18154: etc/parser3.charsets/* into $sysconfdir and
1.95 moko 18155: $sysconfdir/parser3.charsets respectively
18156:
18157: * src/: classes/xdoc.C, include/pa_charset.h, include/pa_globals.h,
18158: main/pa_globals.C: few forgotten ifdef XML added
18159:
18160: 2002-01-28 paf
18161:
1.116 moko 18162: * src/: classes/Makefile.am, targets/cgi/Makefile.am: xalan-patch
1.95 moko 18163: removed
18164:
18165: * src/main/pa_exception.C: dom|generic error output fix
18166:
18167: * src/classes/xnode.C: xdoc.importNode 3 [check err]
18168:
18169: * src/classes/xnode.C: xdoc.importNode 2 [mistype err]
18170:
18171: * src/: classes/xnode.C, types/pa_vxdoc.h: xdoc.importNode 1
18172: [fixed as_node helper func to accept docs]
18173:
18174: * src/: classes/xdoc.C, classes/xnode.h, main/pa_exception.C:
18175: xdoc.importNode 0
18176:
18177: * src/classes/xdoc.C: xdoc::set now untaints OK
18178:
18179: 2002-01-25 paf
18180:
18181: * src/main/: compile.tab.C, compile.y: #comment before @ after
18182: @SPECIAL now works OK
18183:
18184: * src/main/: pa_exec.C: unix: exec now does chdir to script dir
18185:
18186: * src/main/pa_exec.C: max arg count now 10, and proper message on
18187: violation that added
18188:
18189: * src/classes/hash.C: unified hash::sql, now
18190: ^hash::sql{query}[[$.limit(2) $.offset(4)]]
18191:
18192: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
18193: ^file:lock[filename]{code}
18194:
18195: * src/: classes/file.C, classes/op.C, classes/string.C,
18196: classes/table.C, classes/xdoc.C, include/pa_common.h,
18197: main/pa_common.C, types/pa_vfile.h: removed redundant pool param
18198: to some pa_common funcs
18199:
18200: * src/: include/pa_charset.h, main/pa_globals.C:
18201: http://localhost/abc -> $ENV{DOCUMENT_ROOT}/abc | ./abc
18202:
18203: * src/: include/pa_charset.h, main/pa_charset.C,
18204: include/pa_config_fixed.h, main/compile.tab.C: typedef XMLCh...
18205: not stupid illegal define
18206:
18207: 2002-01-24 paf
18208:
18209: * src/include/pa_version.h: changed version number
18210:
18211: * src/: classes/hashfile.C, include/pa_db_table.h,
18212: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
18213: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18214: main/pa_db_connection.C, main/pa_db_table.C,
18215: types/pa_vhashfile.C, types/pa_vhashfile.h: merged from r17 -
18216: hashfile without logfiles
18217:
18218: * src/: classes/hashfile.C, include/pa_db_table.h,
18219: main/compile.tab.C, main/pa_db_connection.C, main/pa_db_table.C,
18220: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile: removed use
18221: of transactions [libdb removed DB_INIT_LOCK, DB_INIT_LOG,
18222: DB_INIT_TXN init bits, thus got rid of huge log files, which
18223: cluttered disk without huge need]
18224:
18225: * src/classes/: xdoc.C, xnode.C, xnode.h: gdome_xml_doc_get_xmlDoc
18226: handy macro, which is strangly abscent in dome lib
18227:
18228: * src/classes/xdoc.C: xsltSaveResultTo checked <0 response
18229:
18230: * src/classes/xdoc.C: checked empty response
18231:
18232: * src/classes/xnode.C: xdoc.select fixed context node [were always
18233: /, not self node]
18234:
18235: * src/classes/xnode.C: xnode.select returns array always now, in
18236: case 'nothing found' returns empty array
18237:
18238: * src/classes/xnode.C: xpath nodes select bug [0] instead of [i],
18239: be more tender with ctrl/c/v
18240:
18241: 2002-01-23 paf
18242:
18243: * src/: classes/xdoc.C, main/pa_globals.C: xdoc::load/set entities
18244: substituted. // 2. when dom tree with entites goes under
18245: transform text nodes // got [erroreosly] cut on first
18246: entity occurance
18247:
18248: * src/types/pa_vdouble.h: double prec. todo: get rid of
18249: twice-converting
18250:
18251: * src/types/pa_vdouble.h: %.20E now float format when %g produced
18252: 'e' in output this is for regretful twice-converting here:
18253: $a(double value) when they write double falue they convert it to
18254: string first, thus %g were losing precesion.
18255:
18256: todo: think up some way to remove double->string string->double
18257: twice-converting
18258:
18259: * src/: classes/xdoc.C, main/pa_globals.C, types/pa_vdouble.h:
18260: %.20E now default float format this is for regretful
18261: twice-converting here: $a(double value) when they write double
18262: falue they convert it to string first, thus %g were losing
18263: precesion.
18264:
18265: todo: think up some way to remove double->string string->double
18266: twice-converting
18267:
18268: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
18269: main/pa_globals.C: xmlSubstituteEntitiesDefault(1) now global,
18270: reasons in comment inside
18271:
18272: * src/main/pa_globals.C: xslt linked dynamically. [mistekenly were
18273: statically linked]
18274:
18275: * src/: include/pa_exception.h, main/compile.tab.C,
18276: main/pa_exception.C: removed exception va_list constructor. 1.
18277: not needed anymore 2. there were a conflict[causing errors]
18278: between ctor(, va_list) ctor(, ...) compiler[both msvc and gcc]
18279: never detected an ambiguilty here, compiling ctor(, "hello") into
18280: ctor(, va_list) which, of course, caused gpf
18281:
18282: * src/main/pa_globals.C: removed debug xslt messages
18283:
18284: 2002-01-22 paf
18285:
18286: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
18287: main/pa_globals.C: xsl stylesheet load: parsed entities, this
18288: helps compiling stylesheet properly. example: this refused to
18289: work, <b>«<xsl:value-of select="@title"
18290: />»</b> stranly worked only this way:
18291: <b>«<xsl:value-of select="@title" />»</b>
18292:
18293: docs says "set it to 1", never going into details, so I decided
18294: to try NOT to do that
18295:
18296: * src/classes/table.C: join behaived badly in case named tables
18297: structure mismatched: 0 strings sneaked into dest failing
18298: afterwards. replaced them with empty strings
18299:
18300: 2002-01-21 paf
18301:
18302: * src/main/pa_charset.C: checked empty transcoders in
18303: transcode_cstr|buf
18304:
18305: * src/classes/xdoc.C: xdoc::load error source = filespec
18306:
18307: * src/classes/xdoc.C: transform error source now
18308: stylesheet_filespec
18309:
1.116 moko 18310: * src/: classes/xdoc.C, classes/xnode.C,
1.95 moko 18311: include/pa_stylesheet_connection.h, main/pa_charset.C,
18312: main/pa_globals.C, main/pa_sql_driver_manager.C,
1.116 moko 18313: main/pa_stylesheet_manager.C, targets/cgi/Makefile.am: autoconf
18314: gnome
1.95 moko 18315:
18316: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
18317: include/pa_globals.h, include/pa_stylesheet_connection.h,
18318: main/pa_exception.C, main/pa_globals.C, targets/cgi/pa_threads.C:
18319: xslt generic error 1
18320:
18321: * src/: include/pa_stylesheet_connection.h, main/pa_exception.C:
18322: xml generic message 1
18323:
18324: * src/classes/table.C: ^table::load empty lines or #comments before
18325: headline
18326:
18327: * src/: include/pa_array.h, include/pa_globals.h,
18328: include/pa_request.h, include/pa_threads.h, main/pa_array.C,
18329: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
18330: targets/cgi/pa_threads.C, targets/isapi/pa_threads.C: xml generic
18331: errors 0
18332:
18333: 2002-01-16 paf
18334:
18335: * src/: classes/hash.C, classes/op.C, classes/string.C,
18336: classes/table.C, classes/void.C, classes/xdoc.C,
18337: include/pa_db_connection.h, include/pa_request.h,
18338: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
18339: include/pa_stylesheet_connection.h,
18340: include/pa_stylesheet_manager.h, main/pa_request.C,
18341: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
18342: targets/cgi/pool_storage.h: auto closers to sql_connection,
18343: stylesheet_connection auto destroyers to remaining gnome objects
18344:
18345: * src/classes/xdoc.C: few comments
18346:
18347: 2002-01-15 paf
18348:
18349: * src/classes/xdoc.C: xdoc file save string
18350:
18351: ready. todo: error handling
18352:
18353: * src/classes/xdoc.C: xdoc save rewritten using
18354: xmlAllocOutputBuffer less mallocs, more reallocs. less fragmented
18355: result
18356:
18357: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C:
18358: started output options parsing
18359:
18360: 2002-01-14 paf
18361:
18362: * src/classes/xdoc.C: method
18363:
18364: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
18365: include/pa_pool.h, include/pa_stylesheet_connection.h,
18366: main/main.dsp, main/pa_charset.C, main/pa_globals.C,
18367: main/pa_pool.C, main/pa_stylesheet_manager.C, types/pa_vxdoc.h:
18368: xslt transform0. TODO: use output options handle errors
18369:
18370: * src/classes/: xdoc.C, xnode.C: ^xdoc.file
18371:
18372: 2002-01-11 paf
18373:
18374: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
18375: main/compile_tools.C, main/compile_tools.h, main/execute.C:
18376: partial logical && || evaluation
18377:
18378: * src/classes/xnode.C: xpath selectNodes
18379:
18380: * src/: classes/xnode.C, include/pa_charset.h: xpath selectNode 3:
18381: string/number/bool
18382:
18383: * src/classes/xnode.C: xpath selectNode 2
18384:
18385: * src/: classes/xnode.C, include/pa_charset.h, main/pa_charset.C:
18386: xpath selectNode 1
18387:
18388: 2002-01-10 paf
18389:
18390: * src/classes/xnode.C: xpath selectNode -100 [just written]
18391:
18392: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
18393: include/pa_exception.h, include/pa_pool.h, main/pa_charset.C,
18394: main/pa_pool.C: GdomeDOMString_auto_ptr c++ wrapper [calls
18395: refcounter]
18396:
18397: 2001-12-29 paf
18398:
18399: * src/: classes/xdoc.C, include/pa_exception.h, main/pa_charset.C,
18400: main/pa_exception.C, main/pa_globals.C: xdoc ^set ^string with
18401: glib works 0
18402:
18403: 2001-12-28 paf
18404:
18405: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C,
18406: main/pa_exception.C: started glib transcoders
18407:
18408: * src/main/pa_globals.C: renamed gdome to libgdome.dll
18409:
18410: * src/: classes/classes.dsp, classes/mail.C, classes/xdoc.C,
18411: classes/xnode.C, classes/xnode.h, include/pa_exception.h,
18412: include/pa_globals.h, main/compile.tab.C, main/main.dsp,
18413: main/pa_charset.C, main/pa_dir.C, main/pa_exception.C,
18414: main/pa_exec.C, main/pa_globals.C, main/pa_socks.C,
18415: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vxdoc.C,
18416: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: gnome
18417: libs just compiled in. no refcounting no xpath no xslt yet
18418:
18419: 2001-12-27 paf
18420:
18421: * src/: include/pa_charset.h, include/pa_common.h,
18422: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
18423: main/main.dsp, main/pa_charset.C, main/pa_charsets.C,
18424: main/pa_globals.C, main/pa_pool.C, targets/cgi/parser3.C,
18425: targets/cgi/parser3.dsp, types/pa_vxdoc.C, types/pa_vxdoc.h,
18426: types/pa_vxnode.C, types/pa_vxnode.h, types/types.dsp: going away
18427: from xalan&xerces, started the process. globals [initialization
18428: pool [charset update charset [transcodings vxnode vxdoc [DOM
18429: calls
18430:
18431: * src/classes/Makefile.am: going away from xalan&xerces, not needed
18432: anymore
18433:
18434: 2001-12-26 paf
18435:
18436: * src/: include/pa_charset.h, include/pa_charsets.h,
18437: main/pa_charset.C, main/pa_charsets.C, main/pa_request.C: charset
18438: key globalized [bug]
18439:
18440: 2001-12-25 paf
18441:
18442: * src/: classes/mail.C, classes/table.C, include/pa_string.h,
18443: main/pa_string.C: table set & append changed splitting languages,
18444: separators now can be clean AND as-is same to mail command line
18445: $MAIN:MAIL.progX arguments
18446:
18447: 2001-12-24 paf
18448:
18449: * src/classes/mail.C: one parted text messages - no multipart
18450: mime-type anymore. for convinient if $.attach-ments
18451:
18452: * src/: classes/hashfile.C, classes/op.C, main/pa_db_table.C,
18453: main/pa_string.C: read from cache size check updated
18454:
18455: * src/main/: pa_string.C: String::join_chain another ugly bug :(
18456:
18457: 2001-12-21 paf
18458:
18459: * src/classes/date.C: date:sql-string now returns localtime
18460:
18461: * src/main/pa_request.C: $result in @main actually not working, to
18462: hell with it for now
18463:
18464: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
18465: types/pa_vmethod_frame.h, types/pa_wcontext.h: $result in @main
18466: @postprocess @exception
18467:
18468: * src/main/execute.C: junction evaluation canceled - endless
18469: recursion detected
18470:
18471: 2001-12-19 paf
18472:
18473: * src/main/pa_charset.C: charset->charset transcoding via unicode
18474: intermediate
18475:
18476: * src/main/pa_request.C: CLASS_PATH now / = DOCUMENT_ROOT
18477:
18478: * src/classes/hashfile.C: ^hashfile.open DB_HOME now relative
18479:
18480: * src/classes/op.C: ^cache keypath now relative
18481:
18482: * src/classes/mail.C: changed weighting prior to sort
18483:
18484: * src/: classes/mail.C, include/pa_config_fixed.h: to/from 0 check
18485: were missing
18486:
18487: 2001-12-17 paf
18488:
18489: * src/main/pa_charset.C: ifndef XML were bad type
18490:
18491: * src/: include/pa_db_table.h, main/pa_db_table.C: db_table used
18492: outdated unset services_pool
18493:
18494: * src/: classes/mail.C, include/pa_charsets.h, include/pa_string.h,
18495: main/pa_charsets.C, main/untaint.C, types/pa_vrequest.C,
18496: types/pa_vresponse.C: ^mail:send[ $.charset[zzz] addded
18497:
18498: * src/main/untaint.C: allowed space in filespec
18499:
18500: * src/main/pa_charset.C: empty bufs transcode [forgot check :(]
18501:
18502: * src/classes/image.C: no govno
18503:
18504: * src/classes/image.C: govno
18505:
18506: 2001-12-16 paf
18507:
18508: * src/include/: pa_charset.h, pa_charsets.h: forgot to add
18509:
18510: * src/: main/Makefile.am, main/pa_charset.C, types/Makefile.am:
18511: charset_connection&manager replaced by charset&charsets
18512:
18513: * src/main/pa_charset.C: name_cstr 0
18514:
18515: * src/main/untaint.C: uri lang now knows about client/source
18516: charsets
18517:
18518: * src/: classes/file.C, classes/math.C, classes/op.C,
18519: classes/string.C, classes/table.C, classes/xdoc.C,
18520: include/pa_array.h, include/pa_cache_managers.h,
18521: include/pa_charset_connection.h, include/pa_charset_manager.h,
18522: include/pa_common.h, include/pa_db_connection.h,
18523: include/pa_db_manager.h, include/pa_db_table.h,
18524: include/pa_dictionary.h, include/pa_exception.h,
18525: include/pa_exec.h, include/pa_globals.h, include/pa_hash.h,
18526: include/pa_opcode.h, include/pa_pool.h, include/pa_request.h,
18527: include/pa_sapi.h, include/pa_socks.h,
18528: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
18529: include/pa_string.h, include/pa_stylesheet_connection.h,
18530: include/pa_stylesheet_manager.h, include/pa_table.h,
18531: include/pa_transcoder.h, main/compile_tools.h, main/main.dsp,
18532: main/pa_charset.C, main/pa_charset_connection.C,
18533: main/pa_charset_manager.C, main/pa_charsets.C, main/pa_globals.C,
18534: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
18535: main/pa_transcoder.C, main/untaint.C, types/pa_vfile.C,
18536: types/pa_vform.C, types/pa_vform.h, types/pa_vrequest.C,
18537: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
18538: types/types.dsp: introducing Charset
18539:
18540: 2001-12-14 paf
18541:
18542: * src/: include/pa_request.h, include/pa_transcoder.h,
18543: main/pa_request.C, main/pa_transcoder.C, types/pa_vform.C,
18544: types/pa_vform.h: transcodeToUTF8[were FromUTF8] for forms todo:
18545: uri lang
18546:
18547: * src/main/pa_transcoder.C: transcodeToUTF8, now form&uri lang
18548:
18549: * src/targets/cgi/Makefile.am: -I../../pcre to .am
18550:
18551: * src/: include/pa_globals.h, main/pa_globals.C: removed unused
18552: defalts_name global
18553:
18554: * src/: include/pa_charset_connection.h, include/pa_pool.h,
18555: include/pa_request.h, main/main.dsp,
18556: main/pa_charset_connection.C, main/pa_charset_manager.C,
18557: main/pa_request.C, types/Makefile.am, types/pa_vrequest.C,
18558: types/pa_vrequest.h, types/pa_vresponse.h, types/types.dsp,
18559: include/pa_transcoder.h, main/pa_transcoder.C, main/Makefile.am:
18560: changed charset model. now important: $request:charset
18561: $response:charset while $response:content-type.charset become
18562: unimportant [informational]
18563:
18564: 2001-12-13 paf
18565:
18566: * src/targets/: cgi/pa_pool.C, isapi/pa_pool.C: EOL@EOF
18567:
18568: * src/classes/xdoc.C: rewritten auto_ptr part other way2, because
18569: of stupid gcc 2.96 /usr/include/g++-3/memory:40: candidates are:
18570: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with
18571: _Tp = FormatterListener] /usr/include/g++-3/memory:48:
18572: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &)
18573: [with _Tp1 = FormatterListener, _Tp = FormatterListener]
18574:
18575: * src/: classes/xdoc.C, main/pa_sql_driver_manager.C: rewritten
18576: auto_ptr part other way, because of stupid gcc 2.96
18577: /usr/include/g++-3/memory:40: candidates are: auto_ptr<_Tp>
18578: &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with _Tp =
18579: FormatterListener] /usr/include/g++-3/memory:48:
18580: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &) [with
18581: _Tp1 = FormatterListener, _Tp = FormatterListener]
18582:
18583: * src/classes/xdoc.C: removed extra inc
18584:
18585: * src/targets/cgi/: pa_pool.C, parser3.C: msvc heap debugging flag
18586:
18587: * src/include/pa_types.h: msvc head debugging flag
18588:
18589: * src/classes/xdoc.C: freed up listener
18590:
18591: * src/classes/string.C: change msg '... code is not code'
18592:
18593: * src/: main/pa_db_connection.C, main/pa_db_manager.C,
18594: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
18595: targets/cgi/pool_storage.h: couple cache expiratiors were wrong
18596: [past/future prob]
18597:
18598: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
18599: include/pa_config_fixed.h, include/pa_db_manager.h,
18600: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
18601: main/pa_cache_managers.C, main/pa_globals.C: ~Cache_managers
18602:
18603: * src/: include/pa_config_fixed.h, main/pa_common.C,
18604: main/pa_string.C: removed signed mismatch warnings
18605:
18606: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: removed
18607: 'expires' from header outputs
18608:
18609: * src/main/pa_string.C: string::recustruct erroreusly used outdated
18610: row ptr
18611:
18612: * src/classes/file.C: file::cgi bug, request_method were passed to
18613: SERVER_PROTOCOL but SERVER_PROTOCOL were forgotten
18614:
18615: * src/classes/xdoc.C: lang list updated
18616:
18617: 2001-12-10 paf
18618:
18619: * src/classes/math.C: ^math:random(n) now yields[0;n) not [0;n]
18620:
18621: * src/main/untaint.C: FILE_SPEC untainting changed so that one can
18622: erase files like that, knowing their full name introducing //
18623: theoretical problem with, for instance, "_2B" and "." fragments,
18624: // they would yield the same // because
18625: need_file_encode('_')=false // but we need to delete such files
18626: somehow, getting names from ^index
18627:
18628: * src/main/pa_string.C: ^string.replace bug fixed [bad
18629: string::join_chank break]
18630:
18631: 2001-12-07 paf
18632:
18633: * src/: classes/hashfile.C, classes/op.C, classes/table.C,
18634: include/pa_common.h, include/pa_config_auto.h.in,
18635: include/pa_config_fixed.h, include/pa_config_includes.h,
18636: include/pa_db_table.h, include/pa_request.h, main/pa_common.C,
18637: main/pa_db_table.C, main/pa_request.C, main/pa_string.C,
18638: types/pa_vhashfile.C: merged from r14_simple_cache
18639:
18640: * src/main/pa_string.C: stupid sparc architecture failed to access
18641: short at odd address 0x311f0 <deserialize__6StringUiPvUiPCc+16>:
18642: lduh [ %i2 + 1 ], %l0
18643:
18644: bus error, fixed that
18645:
18646: * src/main/pa_string.C: strange string deserialize bug on
18647: client[pmts], a bit shortened,
18648:
18649: * src/include/pa_config_auto.h.in: makes
18650:
18651: * src/: include/pa_common.h, include/pa_config_fixed.h,
18652: include/pa_config_includes.h, main/pa_common.C: exclusive lock
18653: file write shared lock file read
18654:
18655: * src/: classes/op.C, include/pa_common.h,
18656: include/pa_config_fixed.h, main/pa_common.C: ^cache operator
18657:
18658: 2001-12-06 paf
18659:
18660: * src/: classes/op.C, classes/table.C, include/pa_request.h,
18661: main/pa_request.C: #ifdef RESOURCES_DEBUG
18662:
18663: * src/: main/compile.tab.C, targets/cgi/parser3.C: removed debug
18664: info
18665:
18666: * src/classes/hashfile.C: removed transaction from ^cache
18667:
18668: 2001-12-05 paf
18669:
18670: * src/targets/cgi/: parser3.C: fatal error reporting fixed. in
18671: IIS5 there were a prob with illegal call check
18672:
18673: 2001-12-04 paf
18674:
18675: * src/: classes/op.C, classes/table.C, include/pa_request.h,
18676: main/pa_request.C: measures to log
18677:
18678: 2001-11-23 paf
18679:
18680: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
18681: main/pa_common.C, main/pa_db_table.C, main/pa_string.C,
18682: types/pa_vhashfile.C: merged from _0014, 1
18683:
18684: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
18685: main/pa_common.C, main/pa_db_table.C, types/pa_vhashfile.C:
18686: hashfile bugfix2 more wrong sizes. ^cache behaviour changed: if
18687: ^cache(33) would change
18688:
18689: 0660 bits in file_write & hashfile create
18690:
18691: * src/main/: pa_db_table.C, pa_string.C: cache bugfix [wrong types
18692: after pa_string optimization]
18693:
18694: 2001-11-22 paf
18695:
18696: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
18697: table.offset[whence]
18698:
18699: * src/classes/op.C: process cstr(,connection)
18700:
18701: * src/classes/op.C: process now gets its body on current language,
18702: not as-is
18703:
18704: * src/main/untaint.C: ORIGINS mode removed UHTML
18705:
18706: * src/main/untaint.C: ORIGINS mode was bad - forgot about optimize
18707: bit
18708:
1.116 moko 18709: * src/classes/xdoc.C: cached xslt [removed nocache forcing]
1.95 moko 18710:
18711: 2001-11-21 paf
18712:
18713: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h:
18714: <xsl:output output options made identical to xsl:output
18715: attributes exclusion: cdata-section-elements what xalan can do
18716: but that not used now: it can escape and remove CDATA sections
18717:
18718: * src/: main/untaint.C, targets/cgi/parser3.C: optimized \r
18719: produced by xslt
18720:
18721: * src/targets/cgi/parser3.C: removed debug cgi||1
18722:
18723: * src/main/: pa_string.C, untaint.C: cached some string::size() es
18724:
18725: * src/: classes/table.C, main/pa_string.C, main/untaint.C,
18726: targets/cgi/parser3.C: table.append bug fixed: forgot to switch
18727: default language for {code}, it happen to change it's language
18728: from CLEAN, so later refused to split by CLEAN \t
18729:
18730: 2001-11-20 paf
18731:
1.116 moko 18732: * src/: classes/Makefile.am, classes/table.C, main/Makefile.am,
18733: main/pa_exception.C, types/Makefile.am: moved ident.C & co to
1.95 moko 18734: bottom of dependeces, so that errors would popup quicklier, fixed
18735: line numbering in table::sql
18736:
18737: 2001-11-19 paf
18738:
18739: * src/: classes/op.C, include/pa_request.h, include/pa_string.h,
18740: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
18741: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
18742: targets/isapi/parser3isapi.C, types/pa_wcontext.C,
18743: types/pa_wcontext.h: UL_CLEAN pieces now inherit UL_OPTIMIZED_BIT
18744: at wcontext.write
18745:
1.116 moko 18746: * src/targets/: Makefile.am, cgi/parser3.C: #if _MSC_VER
1.95 moko 18747: _set_new_handler
18748:
1.116 moko 18749: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C:
18750: set_new_handler in apache&isapi
1.95 moko 18751:
18752: 2001-11-16 paf
18753:
18754: * src/targets/cgi/parser3.C: pool debug @ die
18755:
18756: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
18757: removed 8 bytes from String, 2 bytes from
18758: string::chunk::row::item
18759:
18760: * src/main/pa_string.C: removed 1+4 bytes from String
18761:
18762: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
18763: types/pa_vstring.C: removed 1+4 bytes from String
18764:
18765: * src/main/pa_pool.C: introducing estimating String::cstr_bufsize,
18766: 0
18767:
18768: * src/: include/pa_globals.h, include/pa_string.h,
18769: include/pa_types.h, main/pa_globals.C, main/pa_pool.C,
18770: main/pa_request.C, main/untaint.C, sql/pa_sql_driver.h,
18771: targets/cgi/parser3.C: introducing estimating
18772: String::cstr_bufsize, 0
18773:
18774: * src/: main/pa_pool.C, include/pa_pool.h: die in pool::fail
18775:
18776: * src/: targets/cgi/parser3.C, main/pa_pool.C: die in pool::fail
18777:
18778: * src/: main/execute.C, main/pa_pool.C, targets/cgi/parser3.C,
18779: include/pa_pool.h: die in pool::fail
18780:
18781: 2001-11-15 paf
18782:
18783: * src/: include/pa_exception.h, main/execute.C, main/main.dsp,
18784: main/pa_exception.C, targets/cgi/parser3.C: exception with
18785: dynamic buffer re-back now with counter
18786:
18787: * src/: include/pa_exception.h, main/pa_exception.C: exception with
18788: static buffer back
18789:
18790: * src/targets/cgi/parser3.C: std::
18791:
18792: * src/: classes/classes.awk, include/pa_config_auto.h.in,
18793: include/pa_config_includes.h: setnewhandler check
18794:
1.116 moko 18795: * src/include/pa_config_auto.h.in: makes
1.95 moko 18796:
18797: * src/targets/cgi/parser3.C: set_new_handler started
18798:
18799: 2001-11-14 paf
18800:
18801: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
18802: was wrong
18803:
18804: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
18805: was wrong
18806:
18807: * src/main/pa_request.C: z
18808:
18809: * src/: include/pa_common.h, main/pa_common.C: snprintf on buffer
18810: full returns win32 -1 solaris >buffer_size
18811:
18812: checked all that
18813:
18814: * src/classes/op.C: ^untaint{body} as-is default now
18815:
18816: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
18817: types/pa_vstateless_class.h, types/pa_vstateless_object.h: merged
18818: with no_bad_constructors_try
18819:
18820: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
18821: types/pa_vstateless_class.h, types/pa_vstateless_object.h: fixed
18822: this: $bred[^string::length[]] $bred[^response::clear[]]
18823: $bred[^int::int[]]
18824:
18825: now VObject creation moved into overriden
18826: VClass::create_new_value, thus 0 from create_new_value means that
18827: class has no ctors
18828:
18829: 2001-11-13 paf
18830:
18831: * src/classes/classes.C: returned accedently removed if in foreach
18832: callbacks [when hash no-0-restructure]
18833:
18834: 2001-11-12 paf
18835:
18836: * src/main/pa_pool.C: changed xdoc createXXX politics, now string
18837: passed as-is to method, xalan makes & into & itself
18838:
18839: * src/classes/date.C: date.roll parser2 alg used
18840:
18841: * src/: classes/classes.C, classes/hash.C, classes/xdoc.C,
18842: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
18843: main/pa_dictionary.C, main/pa_hash.C,
18844: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C: hash
18845: now does not containt 0 values. put 0 actullay removes. no check
18846: on 0 value in foreach now required
18847:
18848: 2001-11-11 paf
18849:
18850: * src/sql/pa_sql_driver.h: removed extra constructor, doc
18851:
18852: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: CRLF
18853:
18854: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql
18855: driver initialize not const
18856:
18857: 2001-11-10 paf
18858:
18859: * src/main/pa_exec.C: doc
18860:
18861: 2001-11-09 paf
18862:
18863: * src/classes/: string.C, xdoc.C: xdoc::set{code} now untaints
18864: param properly
18865:
18866: * src/classes/string.C: string.save now does untainting before
18867: saving
18868:
18869: * src/main/pa_common.C: line endings fixing fixed last piece[was
18870: still cstr oriented]
18871:
18872: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
18873: line endings fixing got rid of cstr, now must work ok with post
18874: multipart
18875:
18876: * src/types/pa_vform.C: line endings fixed at post / multipart /
18877: not file also now
18878:
18879: 2001-11-08 paf
18880:
18881: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
18882: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
18883: include/pa_stylesheet_manager.h, main/pa_charset_manager.C,
18884: main/pa_db_manager.C, main/pa_sql_driver_manager.C,
18885: main/pa_stylesheet_manager.C: restructured Cache manager to be
18886: simple parent, not second parent [gcc 2.96 strangly refused to
18887: call virtual from second parent]
18888:
1.116 moko 18889: * src/: include/pa_common.h, main/Makefile.am,
18890: targets/cgi/pa_pool.C: makes
1.95 moko 18891:
18892: * src/: include/pa_request.h, main/pa_request.C,
18893: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: apache
18894: 'status' class enabler
18895:
18896: <Location /parser-status.html> ParserStatusAllowed </Location>
18897:
18898: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
18899: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
18900: include/pa_stylesheet_manager.h, main/main.dsp,
18901: main/pa_cache_managers.C, main/pa_charset_manager.C,
18902: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
18903: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
18904: types/pa_vstatus.h: cache_managers, maybe-expiring every request
18905: todo: apache 'status' class enabler
18906:
18907: 2001-11-05 paf
18908:
18909: * src/main/: pa_db_connection.C, pa_db_manager.C: expiration from
18910: debug to normal
18911:
18912: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_request.C:
18913: hence i removed skipping 0 values in hash::for_each-es we need to
18914: check cleaned cache items manually. few more checks.
18915:
18916: expiring to 0 time was wrong, changed to 'now' time
18917:
18918: * src/targets/cgi/parser3.C: read can return 0, that means sort of
18919: sig_pipe on freebsd [moko's experiments]. checked that in cgi,
18920: on apache already done :)
18921:
18922: * src/main/: pa_db_connection.C, pa_db_manager.C: hence i removed
18923: skipping 0 values in hash::for_each-es we need to check cleaned
18924: cache items manually
18925:
18926: * src/main/: pa_db_connection.C, pa_db_table.C:
18927: parser_multithreaded check was wrong
18928:
18929: * src/: classes/classes.C, classes/classes.h, classes/date.C,
18930: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
18931: classes/hashfile.C, classes/image.C, classes/int.C,
18932: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
18933: classes/string.C, classes/table.C, classes/void.C,
18934: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
18935: include/pa_array.h, include/pa_charset_connection.h,
18936: include/pa_charset_manager.h, include/pa_common.h,
18937: include/pa_config_fixed.h, include/pa_config_includes.h,
18938: include/pa_db_connection.h, include/pa_db_manager.h,
18939: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
18940: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
18941: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
18942: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
18943: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
18944: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
18945: include/pa_stack.h, include/pa_string.h,
18946: include/pa_stylesheet_connection.h,
18947: include/pa_stylesheet_manager.h, include/pa_table.h,
18948: include/pa_threads.h, include/pa_types.h, main/compile.C,
18949: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
18950: main/execute.C, main/pa_array.C, main/pa_charset_connection.C,
18951: main/pa_charset_manager.C, main/pa_common.C,
18952: main/pa_db_connection.C, main/pa_db_manager.C,
18953: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
18954: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
18955: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
18956: main/pa_socks.C, main/pa_sql_driver_manager.C,
18957: main/pa_status_provider.C, main/pa_string.C,
18958: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
18959: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
18960: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
18961: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
18962: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
18963: targets/isapi/pool_storage.h, types/pa_valiased.C,
18964: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
18965: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
18966: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
18967: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
18968: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
18969: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
18970: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
18971: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
18972: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
18973: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
18974: types/pa_vstateless_object.h, types/pa_vstatus.h,
18975: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.C,
18976: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
18977: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
18978: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
18979: $status:db fixed used not initialized in db_connection & db_table
18980:
18981: * src/: include/pa_charset_connection.h, main/pa_charset_manager.C:
18982: $status:charset
18983:
18984: * src/: classes/xdoc.C, include/pa_db_connection.h,
18985: include/pa_stylesheet_connection.h,
18986: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C,
18987: types/pa_vstatus.h: $status:stylesheet
18988:
18989: * src/: include/pa_charset_manager.h, include/pa_db_manager.h,
18990: include/pa_request.h, include/pa_sql_connection.h,
18991: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
18992: main/main.dsp, main/pa_charset_manager.C, main/pa_common.C,
18993: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
18994: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
18995: main/pa_stylesheet_manager.C, types/pa_vstatus.h,
18996: types/pa_vxnode.C, types/types.dsp: started status parser class
18997:
18998: 2001-11-01 paf
18999:
19000: * src/include/pa_config_auto.h.in: makes
19001:
19002: * src/main/pa_hash.C: removed old extra include
19003:
19004: * src/: classes/math.C, include/pa_common.h: HAVE_TRUNC HAVE_ROUND
19005: checks [for hp, there are such in math.h]
19006:
19007: * src/classes/op.C: ^for endless loop check strightened
19008:
19009: * src/: classes/hash.C, classes/op.C, main/execute.C: changed root
19010: behavior in native calls. it left unchanged, so ^for ^foreach &
19011: co can use r.root to write their i & key,value there
19012:
19013: * src/classes/op.C: detected for var storage bug, fixed.
19014: todo:foreach
19015:
19016: * src/: classes/hash.C, classes/xdoc.C, classes/xnode.C,
19017: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
19018: types/pa_vhash.h, types/pa_vxnode.C: hash locking disabled
19019: changing of hash inside of foreach
19020:
19021: * src/: classes/hash.C, classes/hashfile.C, types/pa_vhashfile.C:
19022: ^hashfile.foreach[key|value]{body}[[separator]|{separator}] prev
19023: were hash.foreach
19024:
19025: * src/: classes/hash.C, classes/op.C, types/pa_vmethod_frame.h,
19026: types/pa_vstring.C, types/pa_vstring.h:
19027: ^foreach[key|value]{body}[[separator]|{separator}]
19028:
19029: * src/: classes/hash.C, include/pa_hash.h, main/pa_hash.C,
19030: types/pa_vcookie.C: ^hash.delete[key]
19031:
19032: 2001-10-31 paf
19033:
19034: * src/main/: compile.C, pa_common.C: completely empty file now
19035: considered "read", not ignored [not perfect trick used]
19036:
19037: * src/main/pa_common.C: simplier common ifdefs
19038:
19039: * src/main/pa_common.C: typing bug in common - bad ifdeff
19040:
19041: * src/main/pa_db_connection.C: z
19042:
19043: * src/main/: pa_db_connection.C, pa_sql_driver_manager.C: //
19044: lockdetector flags
19045: dbenv.lk_detect=DB_LOCK_RANDOM;
19046:
19047: * src/main/pa_sql_driver_manager.C: hiding passwords and addresses
19048: from accidental show [imagine user forgot @exception]
19049:
19050: * src/classes/table.C: ^table.save[[nameless|+append;]path]
19051:
19052: * src/: classes/file.C, classes/image.C, classes/mail.C,
19053: classes/string.C, classes/xnode.C, include/pa_common.h,
19054: main/pa_common.C: ^string.save[[append;]path]
19055:
19056: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19057: main/execute.C: \ in expression: int divide 10/3=3
19058:
19059: * src/types/pa_vhashfile.h: hashfile ^delete to do something only
19060: inside of ^cache
19061:
19062: * src/: include/pa_threads.h, main/pa_db_connection.C,
19063: main/pa_db_table.C, targets/cgi/pa_threads.C,
19064: targets/isapi/pa_threads.C: libdb DB_THREAD flag only when really
19065: needed
19066:
19067: 2001-10-30 paf
19068:
19069: * src/: classes/classes.dsp, main/main.dsp,
19070: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
19071: types/types.dsp: enabled debug incremental compile
19072:
19073: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
19074: form post data line endings not reformatted now.
19075:
19076: * src/types/: pa_vform.C, pa_vform.h: AppendFormEntry length param
19077: now required [had bug when file= has no value]
19078:
19079: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_db_table.C,
19080: pa_exec.C, pa_request.C, pa_sql_driver_manager.C, pa_string.C:
19081: cstr(asis) default param removed
19082:
19083: * src/classes/xdoc.C: rolled back {} in xdoc.createTextNode for now
19084:
19085: * src/classes/xdoc.C: rolled back {} in xdoc.createElement for now
19086:
19087: * src/include/pa_dir.h: LOAD_DIR fixed
19088:
19089: * src/types/pa_vform.C: VForm::AppendFormEntry {length convention
19090: was broken} fix_line_breaks
19091:
19092: * src/include/: pa_config_fixed.h, pa_pragma_pack_begin.h,
19093: pa_pragma_pack_end.h, pa_string.h, pa_types.h: String & Origin
19094: packed with #pragma pack
19095:
1.116 moko 19096: * src/include/pa_config_auto.h.in: pragma detection
1.95 moko 19097:
19098: 2001-10-29 paf
19099:
19100: * src/types/pa_wcontext.h: bitfield syntax stricter
19101:
19102: * src/: classes/file.C, types/pa_vimage.C: image&file couple stack
19103: string hash.puts
19104:
19105: * src/include/pa_sql_connection.h: SQL_CONNECTION_FUNC_GUARDED name
19106:
19107: * src/include/pa_sql_connection.h: there were one wrong
19108: SQL_CONNECTION_FUNC_GUARDED [failed]
19109:
19110: * src/targets/isapi/pa_pool.C: added isapi&apache real_malloc debug
19111: param.someday either ifdef or remove it
19112:
19113: * src/targets/cgi/: pa_pool.C, parser3.C: removed debug defines
19114:
19115: * src/main/untaint.C: optimizing returned after debugging
19116:
19117: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
19118: main/untaint.C: memory hunging #pragma pack(1)
19119:
19120: 16 419 844 13 169 394
19121:
19122: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
19123: targets/cgi/pa_pool.C: String size_t replace to uint in proper
19124: places [todo:Array]
19125:
19126: * src/: main/execute.C, targets/cgi/pa_pool.C,
19127: targets/cgi/parser3.dsp, types/pa_wcontext.h,
19128: types/pa_wwrapper.h: debugging memory WContext flags to bits
19129:
19130: total 5 652 652/158731 total 5 469 332/158731
19131:
19132: * src/: include/pa_array.h, main/pa_array.C: debugging memory
19133: Array:: without cache in get/put now
19134:
19135: [Mon Oct 29 18:23:02 2001] total 5 796 092/158731 [Mon Oct 29
19136: 18:25:27 2001] total 5 652 652/158731
19137:
19138: * src/: include/pa_string.h, main/pa_string.C,
19139: targets/cgi/pa_pool.C: debugging memory String::fused_rows func
19140: now
19141:
19142: [Mon Oct 29 17:55:45 2001] total 5917436/158731 [Mon Oct 29
19143: 18:11:53 2001] total 5796092/158731
19144:
19145: * src/: classes/file.C, include/pa_hash.h, include/pa_string.h,
19146: main/pa_globals.C, targets/cgi/pa_pool.C: debugging memory hash
19147: key ref now
19148:
19149: [Mon Oct 29 16:01:17 2001] total 17050496/202647 [Mon Oct 29
19150: 17:11:17 2001] total 16867948/202658
19151:
19152: * src/: classes/file.C, classes/image.C, classes/string.C,
19153: classes/xdoc.C, include/pa_pool.h, include/pa_string.h,
19154: main/execute.C, main/pa_array.C, main/pa_common.C,
19155: main/pa_hash.C, main/pa_sql_driver_manager.C, main/pa_string.C,
19156: main/untaint.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C,
19157: types/pa_vcookie.C, types/pa_vstring.h: debuggging memory.
19158: string::as_int/double now usually uses stack, not heap [200K out
19159: of 17M :)] VString(String&) not copies reference [29M -> 17M]
19160:
19161: * src/main/pa_sql_driver_manager.C: ping to have services [old
19162: hiding bug]
19163:
19164: * src/Makefile.am: .am order
19165:
19166: * src/: include/pa_array.h, include/pa_charset_manager.h,
19167: include/pa_db_connection.h, include/pa_db_manager.h,
19168: include/pa_db_table.h, include/pa_hash.h, include/pa_request.h,
19169: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
19170: include/pa_threads.h, types/pa_valiased.h, types/pa_vhashfile.h,
19171: types/pa_vstateless_class.h, types/pa_wcontext.h: gcc 3.0.1
19172: required "friend class"
19173:
19174: ../include/pa_request.h:51: friend declaration requires
19175: class-key, i.e. `friend class Temp_lang'
19176:
19177: * src/: include/pa_exception.h, include/pa_sql_connection.h,
19178: main/pa_exception.C, main/pa_sql_driver_manager.C,
19179: sql/pa_sql_driver.h: sql driver impl changed in _throw part.
19180:
19181: the idea is to #1 jump to C++ some function to main body, where
19182: every function stack frame has exception unwind information and
19183: from there... #2 propagate_exception()
19184:
19185: 2001-10-28 paf
19186:
19187: * src/main/pa_db_connection.C: removed old consts
19188:
19189: * src/main/pa_db_connection.C: expire table [was accidently pasted
19190: with wrong type/cast]
19191:
19192: * src/main/: pa_db_connection.C, pa_db_table.C: exception
19193: translation
19194:
1.116 moko 19195: * src/: classes/Makefile.am, targets/cgi/Makefile.am: db makes.
1.95 moko 19196: remember to build DB2 with -fexceptions!!!
19197:
19198: * src/main/pa_db_table.C: DB_RMW defed
19199:
19200: * src/: include/pa_config_auto.h.in, include/pa_config_fixed.h,
19201: include/pa_db_connection.h, include/pa_db_manager.h,
19202: include/pa_db_table.h, main/pa_db_connection.C,
19203: main/pa_db_table.C: db2 on linux with DB 2.4.14: (6/2/98)
19204:
19205: 2001-10-27 paf
19206:
19207: * src/: classes/hashfile.C, include/pa_db_connection.h,
19208: include/pa_db_table.h, main/pa_db_connection.C,
19209: main/pa_db_manager.C, main/pa_db_table.C, main/pa_globals.C,
19210: types/pa_vhashfile.C: DB2 ifdefs
19211:
1.116 moko 19212: * src/: classes/Makefile.am, include/pa_config_fixed.h,
19213: main/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
1.95 moko 19214: makes with DB2
19215:
1.116 moko 19216: * src/: include/pa_config_auto.h.in, main/Makefile.am,
19217: types/Makefile.am: makes db
1.95 moko 19218:
19219: * src/: main/pa_globals.C, targets/cgi/parser3.dsp,
19220: targets/isapi/parser3isapi.dsp: vc projects libdb ifdefed into
19221: globals.C
19222:
19223: * src/: classes/hashfile.C, include/pa_db_connection.h,
19224: include/pa_db_table.h, main/pa_db_connection.C,
19225: main/pa_db_table.C: ^hashfile.clear[]
19226:
19227: * src/classes/classes.awk: no $ in var names
19228:
19229: * src/main/: pa_db_connection.C, pa_db_manager.C: db expiration
19230: connection&table [forgotten calls]
19231:
19232: 2001-10-26 paf
19233:
19234: * src/main/pa_db_connection.C: db checkpoints
19235:
19236: * src/: include/pa_db_connection.h, main/pa_db_connection.C: db
19237: checkpoints
19238:
19239: * src/classes/xdoc.C: xdoc createTextNode createElement UL_XML
19240: default. but entities still reparsed. todo: tothink
19241:
19242: * src/main/pa_db_connection.C: db recover mech 2
19243:
19244: * src/: classes/hashfile.C, include/pa_db_connection.h,
19245: include/pa_db_manager.h, include/pa_db_table.h,
19246: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
19247: main/pa_db_table.C, main/pa_hash.C, types/pa_vhashfile.C,
19248: types/pa_vhashfile.h: db connections & tables now cached at
19249: create time & multithreaded
19250:
19251: * src/: classes/xdoc.C, types/pa_vxdoc.h: transform2 for
19252: parsed_source
19253:
19254: * src/main/pa_db_connection.C: about to remove connection from
19255: vhashfile
19256:
19257: * src/: main/pa_db_table.C, classes/hashfile.C: db: child
19258: transaction commit/rollback responsibility left to parent [as it
19259: sould - else there were a bug with double free]
19260:
19261: * src/include/pa_db_table.h: db: child transaction commit/rollback
19262: responsibility left to parent [as it sould - else there were a
19263: bug with double free]
19264:
19265: 2001-10-25 paf
19266:
19267: * src/: classes/hashfile.C, include/pa_common.h,
19268: include/pa_db_connection.h, include/pa_db_manager.h,
19269: main/main.dsp, main/pa_db_connection.C, main/pa_db_manager.C,
19270: types/pa_vhashfile.C, types/pa_vhashfile.h,
19271: include/pa_db_table.h, main/pa_db_table.C: started db_home
19272: [multiple, cached] todo: autorecover [tried, but not succeded,
19273: yet]
19274:
19275: * src/include/pa_dir.h: ancient gpf on dir not found fixed
19276:
19277: * src/: include/pa_db_connection.h, main/pa_db_manager.C:
19278: transaction parent passed
19279:
19280: 2001-10-24 parser
19281:
1.116 moko 19282: * src/classes/Makefile.am: makes
1.95 moko 19283:
19284: * src/targets/: cgi/pool_storage.h, isapi/parser3isapi.C,
19285: isapi/pool_storage.h: pool_storage fixed
19286:
19287: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C,
19288: types/pa_vform.h: form fix_line_breaks
19289:
1.116 moko 19290: * src/targets/cgi/pool_storage.h: makes
1.95 moko 19291:
19292: * src/: classes/Makefile.am, targets/cgi/Makefile.am,
19293: targets/cgi/pool_storage.h: makes
19294:
19295: * src/sql/pa_sql_driver.h: version
19296:
19297: * src/: include/pa_common.h, main/Makefile.am, main/pa_common.C,
19298: types/pa_vform.C, types/pa_vform.h: .am
19299:
19300: * src/main/: pa_db_connection.C, pa_db_manager.C: hashfile setted
19301: this: DB_RMW Acquire write locks instead of read locks when doing
19302: the retrieval. Setting this flag may decrease the likelihood of
19303: deadlock during a read-modify-write cycle by immediately
19304: acquiring the write lock during the read part of the cycle so
19305: that another thread of control acquiring a read lock for the same
19306: item, in its own read-modify-write cycle, will not result in
19307: deadlock
19308:
19309: * src/targets/isapi/parser3isapi.dsp: doc
19310:
19311: * src/: classes/hashfile.C, types/pa_vhashfile.h: hashfile 1
19312:
19313: * src/: classes/hashfile.C, include/pa_request.h: hashfile.cache 0
19314:
19315: * src/: classes/hashfile.C, include/pa_db_connection.h,
19316: main/pa_db_connection.C: hashfile expired deleted from db when
19317: get & iterate
19318:
19319: * src/: main/pa_db_connection.C, types/pa_vhashfile.C: hashfile
19320: expiring 1
19321:
19322: * src/types/: pa_vhashfile.C, pa_vhashfile.h: hashfile expiring 0
19323:
19324: * src/: main/pa_db_connection.C, types/pa_vhashfile.C:
19325: db_connection not bothers with key when not returning expired
19326: data
19327:
19328: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
19329: types/pa_vhashfile.C: db_cursor constructor public now
19330:
19331: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
19332: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile data
19333: stamped, todo: put_element analize
19334:
19335: * src/: include/pa_db_connection.h, include/pa_string.h,
19336: main/pa_db_connection.C, main/pa_string.C: hashfile pieced
19337: serialize. todo stamp
19338:
19339: 2001-10-23 parser
19340:
19341: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
19342: classes/image.C, classes/mail.C, classes/response.C,
19343: classes/string.C, classes/table.C, classes/xdoc.C,
19344: include/pa_config_fixed.h, include/pa_db_connection.h,
19345: main/pa_common.C, main/pa_db_connection.C, main/pa_request.C,
19346: types/pa_value.h, types/pa_vcookie.C, types/pa_vhash.h,
19347: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vresponse.h,
19348: types/pa_vtable.C: ^hashfile.hash[]
19349:
19350: * src/: classes/hashfile.C, classes/xdoc.C,
19351: include/pa_config_fixed.h, main/pa_db_manager.C,
19352: main/pa_globals.C: ifdefs so it compiled without db
19353:
19354: * src/: classes/hashfile.C, include/pa_db_connection.h,
19355: include/pa_db_manager.h, main/pa_db_connection.C,
19356: main/pa_db_manager.C, types/pa_vhashfile.h:
19357: ^hashfile.transaction{code} ^hashfile:clear[filename]
19358: ^hashfile.delete[key]
19359:
19360: 2001-10-22 parser
19361:
19362: * src/targets/: cgi/pa_pool.C, cgi/parser3.C, cgi/parser3.dsp,
19363: cgi/pool_storage.h, isapi/pool_storage.h: cgi += pool cleanups
19364:
19365: * src/: classes/classes.dsp, classes/hashfile.C, classes/xdoc.C,
19366: classes/xnode.C, include/pa_charset_connection.h,
19367: include/pa_db_connection.h, include/pa_db_manager.h,
19368: include/pa_exception.h, include/pa_sapi.h,
19369: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19370: include/pa_stylesheet_connection.h,
19371: include/pa_stylesheet_manager.h,
19372: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
19373: main/pa_db_connection.C, main/pa_db_manager.C,
19374: main/pa_exception.C, main/pa_globals.C, main/pa_pool.C,
19375: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
19376: main/pa_xslt_stylesheet_manager.C, targets/cgi/parser3.C,
19377: targets/isapi/parser3isapi.C, types/pa_vhashfile.C,
19378: types/pa_vhashfile.h, types/pa_vxdoc.C, types/pa_vxnode.C,
19379: types/types.dsp: hashfile 0
19380:
19381: * src/types/pa_vhashfile.C: z
19382:
19383: * src/: classes/classes.dsp, classes/hashfile.C,
19384: include/pa_config_fixed.h, main/execute.C,
19385: targets/cgi/parser3.dsp, types/pa_vhashfile.C,
19386: types/pa_vhashfile.h, types/types.dsp: hashfile -100
19387:
19388: * src/targets/isapi/parser3isapi.C: SEH minor ifdef changes
19389:
19390: * src/: include/pa_exception.h, include/pa_request.h,
19391: main/execute.C, main/pa_exception.C, main/pa_request.C,
19392: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
19393: types/pa_vclass.h, types/pa_vobject.h: stack backtrace
19394:
19395: 2001-10-19 parser
19396:
19397: * src/include/pa_pool.h: header
19398:
19399: * src/main/pa_pool.C: auto compiled on gcc
19400:
19401: * src/classes/image.C: comment
19402:
1.116 moko 19403: * src/: include/pa_pool.h, main/pa_common.C: makes
1.95 moko 19404:
19405: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
19406: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
19407: types/pa_vxnode.h: xnode clone got freed
19408:
19409: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
19410: include/pa_types.h, main/pa_pool.C: first c++ exceptions result:
19411: can free up xalandomstring resulting from pool::transcode
19412:
19413: * src/: classes/Makefile.am, classes/xdoc.C, classes/xnode.C,
19414: include/pa_config_fixed.h, include/pa_exception.h,
19415: include/pa_stylesheet_connection.h, main/pa_charset_connection.C,
19416: main/pa_exception.C, main/pa_pool.C, types/pa_vxdoc.C,
19417: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: switched
19418: to c++ exceptions 1xml configure fixed to exclude xalan-patch
19419: from non-xml compile
19420:
19421: * src/main/pa_request.C: pool:: context - get_context
19422:
19423: * src/: classes/classes.h, classes/date.C, classes/double.C,
19424: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
19425: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
19426: classes/string.C, classes/table.C, classes/void.C,
19427: include/pa_config_fixed.h, include/pa_exception.h,
19428: include/pa_pool.h, include/pa_request.h, include/pa_types.h,
19429: main/compile.C, main/compile_tools.C, main/execute.C,
19430: main/pa_array.C, main/pa_common.C, main/pa_dictionary.C,
19431: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
19432: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
19433: main/pa_string.C, main/pa_table.C, main/untaint.C,
19434: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
19435: types/pa_value.h, types/pa_vbool.h, types/pa_vdouble.h,
19436: types/pa_vfile.h, types/pa_vform.C, types/pa_vhash.h,
19437: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
19438: types/pa_vstateless_class.h, types/pa_vtable.C,
19439: types/pa_wcontext.C, types/pa_wwrapper.h: switched to c++
19440: exceptions 0
19441:
19442: * src/classes/classes.awk: $ removed
19443:
19444: 2001-10-18 parser
19445:
19446: * src/types/pa_vcookie.C: cookie:CLASS
19447:
19448: * src/main/main.dsp: project
19449:
19450: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C: vxdoc
19451: set_document & ctor question "who owns document" solved
19452:
19453: * src/: classes/xdoc.C, main/pa_pool.C: extra free removed
19454:
19455: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
19456: main/pa_pool.C: encoding in dom creating funcs
19457:
19458: * src/: classes/xdoc.C, types/pa_vxdoc.h: dom created by create can
19459: be transformed now
19460:
19461: * src/classes/xdoc.C: dom created by create can be transformed now
19462:
19463: * src/classes/xdoc.C: z
19464:
19465: * src/classes/xdoc.C: comment
19466:
19467: * src/: classes/xdoc.C, classes/xnode.C, main/compile.tab.C: xdoc
19468: create now uses XercesDocumentBridge, appendChild&co now works
19469:
19470: * src/include/pa_stylesheet_connection.h: prev stylesheet destroyed
19471: @ recompile
19472:
19473: * src/main/: compile.tab.C, compile.y, pa_request.C: ^: no colon in
19474: $origin @exception[
19475:
19476: * src/classes/: xdoc.C, xnode.C: xdoc::create[] now. and all dom
19477: tag names forced to XML lang
19478:
19479: * src/: classes/classes.dsp, classes/xdoc.C, types/types.dsp: fiew
19480: leechy-found bugs in code&doc fixed
19481:
19482: 2001-10-17 parser
19483:
19484: * src/: classes/classes.dsp, classes/string.C, main/pa_string.C,
19485: types/pa_vxnode.h, types/types.dsp: string::mid fixed, string.mid
19486: n functionality preserved
19487:
19488: * src/types/pa_vimage.h: removed unused vimage::save
19489:
19490: 2001-10-16 parser
19491:
19492: * src/: classes/string.C, main/pa_string.C: $string.mid(p[;n])
19493:
19494: * src/classes/: xnode.C: removed few dom returns & changed op.txt
19495:
19496: * src/types/: pa_vhash.h, pa_vtable.h: hash can be used as boolean
19497:
19498: * src/classes/image.C: image.copy tolerance
19499:
19500: * src/classes/image.C: ::CopyResampled made gd2beta+my hands, very
19501: ineffective, but works for small paleted image
19502:
19503: * src/types/pa_vimage.C: comment
19504:
19505: * src/classes/image.C: gd size/resize bugfix
19506:
19507: * src/: classes/classes.dsp, main/main.dsp,
19508: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
19509: types/types.dsp: ident >nul 2>&1
19510:
19511: * src/main/pa_common.C: \r\n -> \n DOS \r -> \n Macintosh on all
19512: systems
19513:
19514: * src/: classes/image.C, types/pa_vimage.h: ^image.copy[source](src
19515: x;src y;src w;src h;dst x;dst y[;dest w[;dest h]])
19516:
19517: 2001-10-15 parser
19518:
19519: * src/main/execute.C: z
19520:
19521: * src/classes/: xdoc.C: !::create{qualifiedName}
19522:
19523: * src/types/pa_vxnode.C: document_type_node.
19524: !readonly attribute DOMString name
19525: !notation_node.
19526: !readonly attribute DOMString publicId
19527: !readonly attribute DOMString systemId
19528:
1.116 moko 19529: * src/types/: pa_vcode_frame.h, pa_wcontext.C: code_frame fixed -
19530: ::write badly passed string too transparently [failed to
19531: intercept it]
1.95 moko 19532:
19533: * src/: classes/xdoc.C, classes/xnode.C, include/pa_config_fixed.h,
19534: include/pa_request.h, main/pa_sql_driver_manager.C,
19535: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
19536: types/pa_vxnode.h: DOM1 major addtion, only few
19537: attributes/methods left
19538:
19539: 2001-10-13 parser
19540:
19541: * src/: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
19542: targets/isapi/parser3isapi.C: isapi&cgi couple non-pooled mallocs
19543: in main handler
19544:
19545: * src/targets/isapi/pool_storage.h: isapi pool storage reverse
19546: cleanups & frees order
19547:
19548: * src/types/pa_vcode_frame.h: couple comments
19549:
19550: * src/: main/execute.C, types/pa_vcode_frame.h: vcodeframe made
19551: transparent enough to handle hash if creation&passing
19552:
19553: * src/: include/pa_config_fixed.h, main/execute.C,
19554: main/pa_exception.C: noticed that vcodeframe not transparent
19555: enough, would change now
19556:
19557: 2001-10-12 parser
19558:
19559: * src/targets/isapi/parser3isapi.C: xalan&xerces multithread bug
19560: fixed. initialization&free on each thread!
19561:
19562: * src/classes/: double.C, int.C, string.C: sql{}[$.default[({})]]
19563: handling changed: now type of default param analized always, not
19564: only at problem time, thus helping early problem spotting
19565:
19566: * src/: classes/classes.dsp, classes/xdoc.C, main/compile.tab.C,
19567: main/main.dsp, main/pa_globals.C, targets/cgi/parser3.C,
19568: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
19569: targets/isapi/parser3isapi.dsp, types/types.dsp: xalan&xerces
19570: multithread bug fixed. initialization&free on each thread!
19571:
19572: 2001-10-11 parser
19573:
19574: * src/classes/xnode.C: xnode.selectSingle now
19575:
19576: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
19577: include/pa_pool.h, include/pa_stylesheet_connection.h,
19578: main/pa_exception.C, main/pa_pool.C: moved xslt exceptions
19579: convertors out of Pool into Exception
19580:
19581: * src/main/pa_string.C: const
19582:
19583: * src/: include/pa_string.h, main/pa_string.C: restructured string:
19584: linked pieces of same language together prior to String::replace
19585:
19586: * src/classes/hash.C: !^hash.add[addme]
19587: !^hash.sub[subme]
19588: !^a.union[b] = new
19589: !^a.intersection[b] = new
19590: !^a.intersects[b] = bool
19591:
19592: * src/classes/hash.C: !^hash::append[append_from]
19593:
19594: * src/: classes/hash.C, types/pa_vhash.h:
19595: !^hash::create[[copy_from]]
19596:
19597: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
19598: include/pa_string.h, main/pa_globals.C, main/pa_string.C,
19599: main/untaint.C, types/pa_vvoid.h: untaint lang origins table
19600: fixed. got rid of empty_string, which caused errors - it hasnt
19601: exception but somebody[value.bark] tried to throw it on it's pool
19602:
1.116 moko 19603: * src/include/pa_config_auto.h.in: makes
1.95 moko 19604:
19605: 2001-10-10 parser
19606:
19607: * src/: classes/op.C, main/compile.tab.C: ^error[msg]
19608:
19609: * src/main/: compile.tab.C, compile.y: ^a[
19610:
19611: @next_method << now unclosed ] would be reported here
19612:
19613: * src/main/: compile.tab.C, compile.y: ^a[^b] more informative
19614: compile error
19615:
19616: 2001-10-09 parser
19617:
1.116 moko 19618: * src/: classes/Makefile.am, main/Makefile.am,
19619: targets/cgi/Makefile.am, types/Makefile.am: makes
1.95 moko 19620:
19621: * src/classes/Makefile.am: makes
19622:
19623: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: xml transform
19624: win32 errors intercepted [xalan transformer patched and
19625: incorporated]
19626:
19627: * src/: classes/classes.dsp, classes/xdoc.C,
19628: include/pa_stylesheet_connection.h, main/main.dsp,
19629: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
19630: types/pa_vxdoc.h, types/pa_vxnode.h, types/types.dsp: xalan
19631: patches starting
19632:
19633: * src/classes/: string.C, table.C: ^string.save[file]
19634:
19635: * src/classes/: date.C, table.C: calendar moved to date
19636:
19637: * src/classes/: op.C, table.C: table.hash[key field;value field(s)
19638: string/table] now
19639:
19640: * src/classes/: op.C, table.C: z
19641:
19642: * src/: classes/op.C, classes/table.C, types/pa_vfile.h,
19643: types/pa_vimage.h, types/pa_vjunction.h, types/pa_vxdoc.h,
19644: types/pa_vxnode.h: table:menu & op for delims made allowed not to
19645: be code [be string..]
19646:
19647: * src/classes/: double.C, file.C, image.C, int.C, op.C, string.C,
19648: table.C: lots of
19649: params->as_int/double/as_string/as_junction/as_no_junction
19650: messages added
19651:
19652: 2001-10-08 parser
19653:
19654: * src/: classes/date.C, classes/image.C, classes/string.C,
19655: classes/table.C, classes/void.C, include/pa_request.h:
19656: params->as_int/double message added
19657:
19658: * src/classes/image.C: image:circle [and round arc] uses Bresenham
19659:
19660: * src/: classes/image.C, types/pa_vcookie.C, types/pa_vimage.C:
19661: image:sector removed image:html internal "line-*" attribs
19662:
19663: * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
19664: types/pa_vcookie.C: cookie urlencoded [netscape doc reread]
19665:
19666: * src/types/pa_vcookie.C: removing cookie made more netscape-like
19667: way
19668:
19669: * src/: classes/file.C, classes/form.C, main/pa_common.C,
19670: main/untaint.C: header untainting to UL_HTTP_HEADER,
19671: UL_MAIL_HEADER made nonforced [only tainted pieces]
19672:
19673: * src/: include/pa_common.h, main/pa_common.C, main/untaint.C,
19674: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: remove_crlf
19675: @ SAPI::log
19676:
19677: * src/main/untaint.C: \r to ' ' in origins mode
19678:
19679: * src/classes/xdoc.C: xdoc:load exceptions intercepted [like in
19680: set]
19681:
19682: * src/: classes/xdoc.C, include/pa_config_fixed.h,
19683: main/compile.tab.C, types/pa_vxdoc.h: parsedSource produced by
19684: nonstandard liaison freed up
19685:
19686: 2001-10-07 parser
19687:
19688: * src/: include/pa_config_fixed.h, main/compile.tab.C: restored
19689: project
19690:
19691: 2001-10-05 parser
19692:
19693: * src/: classes/xdoc.C, include/pa_pool.h, main/main.dsp,
19694: main/pa_pool.C: changed xdoc:set to prevent SAXParseException
19695: from outputing to cerr. lots of "todos"
19696:
19697: * src/main/untaint.C: http_header tainting more gentle with
19698: enquoting now
19699:
19700: * src/: classes/xdoc.C, include/pa_dictionary.h, main/main.dsp,
19701: main/pa_dictionary.C, main/pa_string.C, types/pa_vxdoc.h: started
19702: xml errorhandler. fixed string.replace a little, read @test
19703:
19704: * src/main/pa_string.C: found replace bug - first_that_starts(char
19705: *) does not have limit, and looks further eos, fixing....
19706:
19707: * src/doc/: doxygen.cfg, html2chm.cmd, sources2html.cmd: paths
19708:
19709: * src/: classes/xdoc.C, main/compile.tab.C: xdoc.transform now
19710:
19711: * src/main/: pa_charset_connection.C: ctype another mem clear
19712: bugfix
19713:
1.116 moko 19714: * src/main/: compile.tab.C, compile.y: disabled ^literals in names
19715: $result[^[$p^]z] now works fine
1.95 moko 19716:
19717: * src/: include/pa_hash.h, main/pa_hash.C: Hash::size() calculated
19718: wrong. fixed it
19719:
19720: * src/main/pa_charset_connection.C: unicode zero pair at the beging
19721: of totable appered to be vital
19722:
19723: 2001-10-04 parser
19724:
19725: * src/classes/image.C: ^image.length[text]
19726:
19727: 2001-10-03 parser
19728:
19729: * src/main/pa_request.C: DEFAULT...charset was ignored when !XML
19730:
19731: * src/main/pa_request.C: restored pcre defaulting in request
19732: [mindlessly "optimized" yesterday] comment left
19733:
19734: 2001-10-02 parser
19735:
19736: * src/: main/pa_charset_manager.C,
19737: include/pa_stylesheet_connection.h: forgot non-xml pool.*charset
19738: needed
19739:
19740: * src/: include/pa_pool.h, main/pa_pool.C, types/pa_vresponse.h:
19741: forgot non-xml pool.*charset needed
19742:
19743: * src/classes/table.C: # config comments fixed
19744:
19745: * src/: classes/table.C, main/pa_charset_connection.C: table:load &
19746: charset_connection #comment now
19747:
19748: * src/: classes/classes.dsp, types/types.dsp: release projects
19749: options fixed to use release msvcrt lib
19750:
19751: * src/main/pa_charset_connection.C: pcre tables now const inside
19752: removed default - pcre handles that internally fixed bug on
19753: not-cleaning tables [previously was calloced, now member]
19754:
19755: * src/: include/pa_request.h, main/pa_charset_connection.C,
19756: main/pa_request.C, types/pa_vstring.h: pcre tables now const
19757: inside removed default - pcre handles that internally fixed bug
19758: on not-cleaning tables [previously was calloced, now member]
19759:
19760: * src/: include/pa_config_fixed.h, main/pa_charset_connection.C:
19761: tested charset reload on file change @ apache version = OK tested
19762: freeing up prev encoding on adding new = OK
19763:
19764: 2001-10-01 parser
19765:
19766: * src/main/pa_charset_connection.C: removed entitify external hack
19767: [internal installed]
19768:
1.116 moko 19769: * src/main/Makefile.am: makes+removed dtd
1.95 moko 19770:
19771: * src/: include/pa_charset_connection.h,
19772: include/pa_charset_manager.h,
19773: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
19774: main/pa_charset_connection.C, main/pa_charset_manager.C,
19775: main/pa_request.C: charset loading & caching mech 0
19776:
19777: * src/: include/pa_stylesheet_connection.h,
19778: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
19779: main/pa_globals.C, main/pa_request.C: would make charset loading
19780: & caching mech now
19781:
19782: 2001-09-30 parser
19783:
19784: * src/main/pa_request.C: forgot to fill toTable
19785:
19786: * src/: include/pa_config_fixed.h, main/pa_request.C: started
19787: hack_s_maximumCharacterValues to XALAN_HACK_DIGITAL_ENTITIES but
19788: failed on win32 for now..
19789:
19790: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
19791: now charsets table configuration variable is: CHARSETS
19792:
19793: * src/: classes/xdoc.C, include/pa_request.h, main/pa_request.C:
19794: ctype with unicode 1. todo: no П entities on output somehow
19795:
19796: * src/: classes/file.C, classes/op.C, classes/string.C,
19797: include/pa_request.h, main/pa_request.C: started ctype with
19798: unicode values
19799:
19800: 2001-09-28 parser
19801:
19802: * src/: main/pa_request.C, classes/mail.C, classes/op.C,
19803: classes/xdoc.C, include/pa_stylesheet_connection.h: letter body
19804: string passed AS-IS now
19805:
19806: * src/classes/: xdoc.C, xnode.C: xdoc addencoding works! invented a
19807: way of user-configuring... todo: implement
19808:
19809: 2001-09-27 parser
19810:
19811: * src/classes/table.C: table.sort changed to sort table itself
19812:
19813: * src/: classes/xdoc.C, targets/isapi/parser3isapi.dsp:
19814: X^.getElementsByTagName[tagname] = array of xnode
19815: X^.getElementsByTagNameNS[namespaceURI;localName] = array of
19816: nodes removed - regretfully not supported @ xalan. maybe someday
19817: would reimplement, if needed.
19818:
19819: win32build system: solved long waiting anti-non-started-apache
19820: problem
19821:
19822: * src/: classes/classes.dsp, classes/xdoc.C, main/main.dsp,
19823: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
19824: types/types.dsp: win32 ident make system so not to rebuild
19825: library [ident.C.new]
19826:
19827: 2001-09-26 parser
19828:
19829: * src/: classes/classes.dsp, classes/xdoc.C, classes/xnode.C,
19830: classes/xnode.h, include/pa_config_fixed.h, main/main.dsp,
19831: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
19832: types/pa_vxnode.C, types/types.dsp: z
19833:
19834: * src/classes/classes.C: forgot one non-xml check
19835:
1.116 moko 19836: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
19837: targets/cgi/Makefile.am, types/Makefile.am: makes with clases.awk
1.95 moko 19838:
19839: * src/targets/cgi/parser3.C: z
19840:
19841: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C,
19842: targets/isapi/parser3isapi.C: #ifdef SMTP
19843:
19844: * src/: classes/classes.dsp, classes/dnode.C, classes/dnode.h,
19845: classes/dom.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
19846: main/compile.tab.C, types/pa_vdnode.C, types/pa_vdnode.h,
19847: types/pa_vdom.C, types/pa_vdom.h, types/pa_vxdoc.C,
19848: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
19849: types/types.dsp: xdoc&xnode now
19850:
19851: * src/: classes/classes.C, classes/classes.awk,
19852: classes/classes.dsp, classes/classes.h, classes/date.C,
19853: classes/dnode.C, classes/dnode.h, classes/dom.C,
19854: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
19855: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
19856: classes/op.C, classes/response.C, classes/string.C,
19857: classes/table.C, classes/void.C, include/pa_array.h,
19858: include/pa_common.h, include/pa_config_fixed.h,
19859: include/pa_config_includes.h, include/pa_dictionary.h,
19860: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
19861: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
19862: include/pa_socks.h, include/pa_sql_connection.h,
19863: include/pa_sql_driver_manager.h, include/pa_stack.h,
19864: include/pa_string.h, include/pa_stylesheet_connection.h,
19865: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
19866: include/pa_xslt_stylesheet_manager.h, main/compile.C,
19867: main/compile.y, main/compile_tools.C, main/compile_tools.h,
19868: main/execute.C, main/main.dsp, main/pa_array.C, main/pa_common.C,
19869: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
19870: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
19871: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
19872: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
19873: main/pa_xslt_stylesheet_manager.C, main/untaint.C,
19874: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
19875: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
19876: targets/cgi/parser3.dsp, targets/isapi/pa_pool.C,
19877: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
19878: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h,
19879: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
19880: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
19881: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
19882: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vdom.C,
19883: types/pa_vdom.h, types/pa_vdouble.h, types/pa_venv.h,
19884: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
19885: types/pa_vform.h, types/pa_vimage.C, types/pa_vimage.h,
19886: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
19887: types/pa_vmethod_frame.h, types/pa_vobject.h,
19888: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
19889: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
19890: types/pa_vstateless_object.h, types/pa_vstring.C,
19891: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
19892: types/pa_vvoid.h, types/pa_wcontext.C, types/pa_wcontext.h,
19893: types/pa_wwrapper.h, types/types.dsp: added ident.awk and
19894: main.dsp splitted to main+classes+types along to .am
19895:
19896: * src/classes/Makefile.am: removed useless var
19897:
19898: * src/: classes/classes.cmd, main/main.dsp,
19899: targets/cgi/parser3.dsp: moved classes.inc generation on win32 to
19900: main.dsp
19901:
19902: 2001-09-25 parser
19903:
19904: * src/include/pa_config_auto.h.in: xml on linux[elik] works! no
19905: 1251 though, todo ICU
19906:
1.116 moko 19907: * src/: Makefile.am, classes/Makefile.am, classes/dom.C,
1.95 moko 19908: include/pa_stylesheet_connection.h, main/Makefile.am,
1.116 moko 19909: main/pa_pool.C, targets/cgi/Makefile.am, types/Makefile.am,
19910: types/pa_vdom.h: xml configure makes
1.95 moko 19911:
19912: 2001-09-24 parser
19913:
1.116 moko 19914: * src/: classes/Makefile.am, include/pa_config_auto.h.in,
19915: types/Makefile.am: makes
1.95 moko 19916:
1.116 moko 19917: * src/targets/cgi/Makefile.am: makefiles
1.95 moko 19918:
19919: * src/: Makefile.am, targets/Makefile.am, targets/cgi/pa_pool.C:
19920: started unix makes update
19921:
19922: * src/: Makefile.am, main/Makefile.am, targets/cgi/Makefile.am:
19923: started unix makes update
19924:
19925: * src/types/: pa_vdnode.C, pa_vvoid.h, pa_vtable.C: z
19926:
19927: * src/types/pa_value.h: z
19928:
19929: * src/types/: pa_vhash.h, pa_vtable.h, pa_vclass.h: fixed small
19930: bugs with usinge hash/table in expressions
19931:
19932: * src/types/: pa_vfile.h, pa_vimage.h, pa_vstring.h: fiew wrong
19933: resolved conflicts fixed [const]
19934:
19935: * src/: classes/classes.cmd, classes/image.C, classes/op.C,
19936: classes/table.C, include/pa_request.h, include/pa_sapi.h,
19937: main/compile.C, main/compile.tab.C, main/compile.y,
19938: main/compile_tools.h, main/main.dsp, main/pa_common.C,
19939: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
19940: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vbool.h,
19941: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vform.C,
19942: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
19943: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h: merged3
19944: with before_xml [merge2 actually didn't happen - i've created
19945: tags on wrong branch. so this merge is in fact re-merge]
19946:
19947: 2001-09-21 parser
19948:
19949: * src/: main/main.dsp, targets/cgi/parser3.dsp,
19950: targets/isapi/parser3isapi.dsp: updated project files [/ sadly
19951: produced "" in make file and sadly wrong interpreted on load]
19952:
1.116 moko 19953: * src/: classes/classes.h, classes/hash.C, classes/op.C,
19954: classes/table.C, doc/doxygen.cfg, include/pa_common.h,
19955: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
19956: include/pa_sql_driver_manager.h, include/pa_string.h,
19957: main/compile.tab.C, main/main.dsp, main/pa_common.C,
19958: main/pa_exec.C, main/pa_globals.C, targets/cgi/parser3.dsp,
19959: targets/isapi/parser3isapi.dsp: merged with before_xml
1.95 moko 19960:
19961: * src/: classes/classes.C, classes/date.C, classes/dnode.C,
19962: classes/dom.C, classes/file.C, classes/form.C, classes/int.C,
19963: classes/mail.C, doc/doxygen.cfg, include/pa_config_fixed.h,
19964: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
19965: main/pa_pool.C, main/pa_request.C,
19966: main/pa_xslt_stylesheet_manager.C, targets/cgi/pa_pool.C,
19967: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
19968: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
19969: targets/isapi/parser3isapi.dsp, types/pa_valiased.C,
19970: types/pa_vcookie.C, types/pa_vdnode.C, types/pa_vdom.C,
19971: types/pa_vfile.C, types/pa_vform.C, types/pa_vimage.C,
19972: types/pa_vrequest.C, types/pa_vresponse.h,
19973: types/pa_vstateless_class.C, types/pa_vstring.C,
19974: types/pa_vtable.C, types/pa_wcontext.C: zillions of #ifdef XML
19975: created new projects for sql drivers [planning to remove sql
19976: drivers from main cvs project] first, will join latest changes
19977:
19978: * src/classes/: dom.C: defaulted dom writing methods encoding to
19979: pool.get_charset
19980:
19981: * src/classes/dom.C: defaulted dom writing methods encoding to
19982: pool.get_charset
19983:
19984: * src/include/pa_pool.h: defaulted dom writing methods encoding to
19985: pool.get_charset
19986:
19987: * src/: classes/dom.C, include/pa_pool.h, main/pa_pool.C,
19988: types/pa_vdnode.C, types/pa_vresponse.h: defaulted dom writing
19989: methods encoding to pool.get_charset
19990:
19991: * src/: include/pa_pool.h, main/pa_pool.C: checked whether
19992: transcoder were created right "unsupported encoding" message.
19993: not @ set time, but @ use time, so until xml output functions
19994: .string, .file, .save used - no encoding name check occur
19995:
19996: reduced transcode buffer size to 60 fixed pool cleanup - no
19997: registration needed, pools are officially destructured
19998:
19999: 2001-09-20 parser
20000:
20001: * src/classes/image.C: 20K preload on jpg measure [image::measure]
20002:
20003: * src/main/: pa_pool.C, pa_request.C: Pool::transcode defaults from
20004: $MAIN:DEFAULTS.content-type[$.charset[here]]
20005:
20006: * src/: classes/dnode.C, classes/dom.C,
20007: include/pa_config_includes.h, include/pa_globals.h,
20008: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
20009: main/pa_pool.C, targets/cgi/parser3.dsp,
20010: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
20011: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vresponse.h:
20012: Pool::transcode 0
20013:
20014: * src/classes/dom.C: dom. string save file moved output xml options
20015: to last param and made it optional
20016:
20017: * src/types/pa_vdnode.C: !$elementnode.attributes = hash of
20018: dnodes
20019: !$attributenode.specified = boolean
20020: true if the attribute received its value explicitly
20021: in the XML document,
20022: or if a value was assigned programatically with the
20023: setValue function.
20024: false if the attribute value came from the default value
20025: declared in the document's DTD.
20026: !$pinode.target = target of this processing instruction
20027: XML defines this as being the first token following the
20028: markup
20029: that begins the processing instruction.
20030: XPath:
20031: !^node.select[xpath/query/expression] = hash of 0->node0
20032: 1->node1
20033: !^node.select-single[xpath/query/expression] = first node if
20034: any
20035:
20036: * src/types/: pa_value.h, pa_vbool.h, pa_vdate.h, pa_vdouble.h,
20037: pa_vhash.h, pa_vint.h, pa_vstring.h, pa_vtable.h, pa_vvoid.h:
20038: some 'const's added
20039:
20040: * src/types/: pa_vhash.h, pa_vtable.h: table/hash can be used in
20041: expression context now, there value = size and boolean value
20042: size!=0
20043:
20044: * src/types/: pa_vhash.h, pa_vstring.h, pa_vtable.h: table/hash
20045: can be used in expression context now, there value = size and
20046: boolean value size!=0
20047:
20048: * src/: classes/dnode.C, classes/dom.C, targets/cgi/parser3.dsp,
20049: types/pa_vstring.h: dnode .file .string .save moved back to dom
20050: due to strange xalan bug
20051:
20052: 2001-09-18 parser
20053:
20054: * src/: classes/dnode.C, classes/dom.C, classes/hash.C,
20055: classes/image.C, classes/op.C, classes/table.C,
20056: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
20057: include/pa_sql_driver_manager.h, main/compile.C,
20058: main/compile.tab.C, main/compile.y, main/compile_tools.h,
20059: main/execute.C, main/pa_common.C, main/pa_request.C,
20060: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
20061: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
20062: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vform.C,
20063: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
20064: types/pa_vimage.h, types/pa_vtable.h: merged latest bugfixes from
20065: before_xml branch ^if(def $hash) now true only when
20066: ^hash:_count[]!=0 moved .string .save .file from dom to dnode
20067:
20068: * src/: classes/op.C, main/execute.C: operators self changed to
20069: root ^for variable context changed to self
20070:
20071: * src/types/: pa_vdnode.C, pa_vdom.h, pa_vhash.h, pa_vtable.h: dom,
20072: dnode 1
20073:
20074: * src/: classes/dnode.C, classes/dnode.h, main/main.dsp,
20075: types/pa_vdnode.C, types/pa_vdnode.h: dom, dnode 0
20076:
20077: * src/: classes/image.C, main/pa_string.C, main/pa_table.C: image:
20078: poly* fixed
20079:
20080: 2001-09-17 parser
20081:
20082: * src/: classes/dom.C, main/main.dsp, main/pa_globals.C,
20083: types/pa_vdom.h: started dnode+dom
20084:
20085: dnode DOM methods: $node.name $node.value
20086: ...others...
20087:
20088: ^node.xpath[/rates/USD] = hash
20089: $hash[
20090: $.0[node0]
20091: $.1[node1]
20092: ]
20093:
20094: * src/: classes/image.C, types/pa_vimage.C: $image.line-style now
20095: applies to all linear primitives
20096:
20097: * src/: classes/classes.h, classes/dom.C, classes/hash.C,
20098: include/pa_stylesheet_connection.h, main/main.dsp,
20099: targets/cgi/pa_pool.C, types/pa_vdom.h, types/pa_vfile.h,
20100: types/pa_vimage.h: started dnode DOM: $node.name
20101: $node.value ...others... ^node.xpath[/rates/USD] = hash
20102: dom(dnode)
20103:
20104: * src/: classes/hash.C, main/compile.C, main/compile.tab.C,
20105: main/compile.y, main/compile_tools.h, main/execute.C,
20106: targets/cgi/parser3.C: expressions unary+ ^hash.count[] bugfix:
20107: in expression compound($aa.zz.xx) names now can have minus '-' in
20108: name after '.'
20109:
20110: 2001-09-15 parser
20111:
20112: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
20113: image: $line-width ^line(...)[**** style]
20114:
20115: * src/: classes/dom.C, targets/isapi/parser3isapi.C,
20116: targets/isapi/pool_storage.h, types/pa_vdom.h: fixed bug in isapi
20117: pool_storage - cleanups first, allocations second. apache wisely
20118: does just like that
20119:
20120: * src/targets/isapi/: parser3isapi.C, pool_storage.h: pool_storage
20121: rewritten using template, no bugs now
20122:
20123: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/pa_pool.C,
20124: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
20125: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h:
20126: poorly started isapi pool_storage, would rewrite using template
20127: now
20128:
20129: * src/: classes/dom.C, classes/image.C, include/pa_pool.h,
20130: include/pa_stylesheet_connection.h, main/main.dsp,
20131: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
20132: targets/isapi/pool_storage.h, types/pa_vdom.C, types/pa_vdom.h:
20133: xalan objects freed up [introducing Pool::register_cleanup]
20134:
20135: * src/: doc/doxygen.cfg, include/pa_sapi.h, types/pa_vdom.h:
20136: comments
20137:
20138: 2001-09-14 parser
20139:
20140: * src/main/: pa_sql_driver_manager.C, pa_xslt_stylesheet_manager.C:
20141: z
20142:
20143: * src/: classes/dom.C, classes/file.C, classes/image.C,
20144: classes/mail.C, include/pa_common.h,
20145: include/pa_sql_driver_manager.h, include/pa_string.h,
20146: include/pa_stylesheet_connection.h,
20147: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
20148: main/pa_common.C, main/pa_exec.C, main/pa_globals.C,
20149: main/pa_sql_driver_manager.C, main/pa_xslt_stylesheet_manager.C,
20150: main/untaint.C, types/pa_vfile.C: dom.xslt stylesheet
20151: compiled&cached
20152:
20153: 2001-09-13 parser
20154:
20155: * src/: classes/dom.C, classes/file.C, classes/image.C,
20156: types/pa_vfile.C, types/pa_vfile.h: ^dom.file[] charset
20157:
20158: * src/classes/dom.C: dom:file content-type(.method)
20159:
20160: * src/: include/pa_common.h, include/pa_globals.h,
20161: main/pa_common.C, main/pa_request.C: $MAIN:CLASS_PATH now can be
20162: string now more informative error messages
20163:
20164: * src/: include/pa_globals.h, include/pa_request.h,
20165: main/pa_request.C, targets/cgi/parser3.C,
20166: targets/isapi/parser3isapi.C: ParserRootConfig .../parser3.conf
20167: ParserSiteConfig .../parser3.conf
20168:
20169: cgi&isapi looks for {configure|c:\windows}/parser3.conf
20170:
20171: 2001-09-12 parser
20172:
20173: * src/: classes/op.C, include/pa_sql_driver_manager.h,
20174: main/pa_sql_driver_manager.C: ^connect[] ^connect[aaa] more
20175: precise error reporting: "connection string must start with
20176: protocol://" now
20177:
20178: * src/main/compile.tab.C: fixed - subname code parts actually []
20179: braced
20180:
20181: * src/main/: compile.y, compile_tools.h: name.[part].xxx syntax
20182: lexer on LS_USER level did [] matching without setting nestage,
20183: introduced special LS_NAME_SQUARE_PART state
20184:
20185: 2001-09-11 parser
20186:
20187: * src/: classes/dom.C, include/pa_string.h, main/pa_globals.C,
20188: main/untaint.C: ^dom:set{<some>xml</some>} default language XML
20189: languages+=xml
20190:
20191: * src/: classes/dom.C, types/pa_vdom.h: ^dom:set[<some>xml</some>]
20192:
20193: * src/classes/dom.C: ^dom:save/string/file[output options] output
20194: options: $.method[xml|html|text] detection fixed
20195:
20196: * src/types/pa_vdom.h: messages
20197:
20198: * src/classes/dom.C: ^dom:save/string/file[output options] output
20199: options: $.method[xml|html|text] detection fixed
20200:
20201: 2001-09-10 parser
20202:
20203: * src/classes/dom.C: ^dom:save/string/file[output options] output
20204: options: $.method[xml|html|text] $.encoding[windows-1251|...]
20205:
20206: * src/classes/dom.C: ^dom.xslt[stylesheet filename][params hash
20207: added]
20208:
20209: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
20210: ^dom.xslt[stylesheet filename] 0
20211:
20212: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
20213: ^dom.xslt[stylesheet filename] -1 doc is lying
20214:
20215: * src/classes/dom.C: ^dom.file[encoding] = file
20216:
20217: * src/classes/: dom.C: ^dom.string[encoding] 1
20218: ^dom.save[encoding;filename]
20219:
20220: * src/classes/dom.C: ^dom.string[] 0
20221:
20222: * src/classes/dom.C: ^dom.save[b.xml] 1:error handling
20223:
20224: * src/: classes/dom.C, main/main.dsp, types/pa_vform.C,
20225: types/pa_vform.h: ^dom.save[b.xml] 0
20226:
20227: 2001-09-08 parser
20228:
20229: * src/types/pa_vform.C: $form:tables.name.field
20230:
20231: 2001-09-07 parser
20232:
20233: * src/classes/table.C: table:empty removed, superceded by ^if(def
20234: $table)...
20235:
20236: * src/targets/cgi/parser3.C: z
20237:
20238: * src/main/pa_string.C: $a[] ^if($a){y;n} is 'n' now [conversion
20239: from '' to int/double is 0]
20240:
20241: * src/: classes/dom.C, types/pa_value.h, types/pa_vtable.h: (def
20242: $table) is false when table is empty
20243:
20244: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
20245: !$form:tables $atable[$form:tables.a]
20246: ^atable.menu{a=$atable.element}[,]
20247:
20248: * src/: targets/cgi/parser3.dsp, types/pa_vform.C,
20249: types/pa_vform.h, types/pa_vhash.h: !$form:fields
20250:
1.116 moko 20251: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 20252: types/pa_vdom.h, types/pa_vform.C: merged with successful start
20253: of dom
20254:
20255: * src/: include/pa_hash.h, main/pa_hash.C, types/pa_vfile.h,
20256: types/pa_vform.C, types/pa_vform.h: z
20257:
20258: * src/: main/pa_exception.C, types/pa_vform.C: getting FIRST form
20259: element [not last]
20260:
1.116 moko 20261: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 20262: types/pa_vdom.h: introducing dom. dom:load[a.xml]
20263:
20264: 2001-09-06 parser
20265:
20266: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
20267: table with one column 'element' and two rows: 1 and 2
20268:
20269: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
20270: table with one column 'element' and two rows: 1 and 2
20271:
20272: * src/: classes/void.C, main/pa_string.C, main/pa_table.C: fixed up
20273: bad int/double conversions, and now $form:nonexistent.int(88)
20274: would return 88
20275:
20276: * src/: classes/hash.C, include/pa_globals.h, main/pa_globals.C,
20277: types/pa_vhash.h: now there's special hash key '_default'
20278: [instead of ^_default method] $hash[ $.a[1] $.b[2]
20279: $._default[xx] ] $hash.c
20280:
20281: * src/main/: compile.tab.C, compile.y: ^if(0){}{ ^if(1){}^; } bug
20282: fixed [thanks, fif], ^; were treated there non-literally
20283:
20284: * src/doc/doxygen.cfg: merged new default options from 1.2.10
20285: doxygen
20286:
20287: * src/: classes/image.C, classes/op.C, classes/string.C,
20288: classes/table.C, doc/doxygen.cfg, targets/isapi/parser3isapi.C,
20289: types/pa_vtable.C: few #ifndef DOXYGEN
20290:
20291: 2001-09-05 parser
20292:
20293: * src/classes/: string.C, table.C: sql options can be void [same as
20294: image:html the other day]
20295:
20296: * src/targets/cgi/Makefile.am: .am undo
20297:
20298: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
20299: targets/cgi/parser3.C: #define STRINGIZE(name) #name does not
20300: macro expantion on param, simply qoutes whatever passed, undone
20301:
20302: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
20303: targets/cgi/Makefile.am, targets/cgi/parser3.C: #define
20304: STRINGIZE(name) #name invented
20305:
20306: * src/: classes/op.C, include/pa_sql_driver_manager.h,
20307: main/pa_sql_driver_manager.C: #define MAIN_SQL_NAME "SQL" #define
20308: MAIN_SQL_DRIVERS_NAME "drivers"
20309:
20310: moved to be availible to all users
20311:
20312: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h:
20313: SQL_DRIVER_CREATE_FUNC_NAME
20314:
20315: * src/classes/mail.C: MAIN:MAIL check fixed
20316:
20317: 2001-09-04 parser
20318:
20319: * src/classes/image.C: image.html now can accept void params
20320:
20321: * src/targets/isapi/parser3isapi.C: z
20322:
20323: * src/targets/cgi/parser3.C: full_file_spec bug
20324:
20325: * src/targets/cgi/parser3.C: getenvcheck
20326:
20327: * src/targets/cgi/parser3.C: zz
20328:
20329: * src/targets/cgi/parser3.C: zzz
20330:
20331: * src/classes/date.C: date
20332:
20333: * src/classes/date.C: date:sql-string is now without ''
20334:
1.116 moko 20335: * src/: include/pa_config_auto.h.in, targets/cgi/Makefile.am,
1.95 moko 20336: targets/cgi/parser3.C: configure --sysconfdir=sysadmin-controlled
20337: auto.p location for targets/cgi/parser3, default[/usr/local/etc]
20338:
1.116 moko 20339: * src/include/pa_config_auto.h.in: makes
1.95 moko 20340:
20341: 2001-09-03 parser
20342:
20343: * src/targets/cgi/parser3.C: /configure cgi SYSCONFDIR
20344:
20345: 2001-09-01 parser
20346:
20347: * src/classes/image.C: letter_spacing
20348:
20349: * src/classes/image.C: image: font params changed
20350:
20351: * src/classes/image.C: image: as_int as_string used
20352:
20353: * src/types/pa_vmethod_frame.h: $result[] now gets properly
20354: analized
20355:
20356: 2001-08-31 parser
20357:
20358: * src/targets/cgi/parser3.C: z
20359:
1.116 moko 20360: * src/: include/pa_dir.h, targets/cgi/parser3.C: compiled under
20361: cygwin
1.95 moko 20362:
20363: * src/classes/void.C: void:int/double += (default)
20364:
20365: * src/classes/image.C: image:font added space param image:font
20366: changed charwidth alg, added kerning const[for now]
20367:
20368: * src/classes/: string.C, table.C: string:int/double (defaults)
20369:
20370: 2001-08-29 parser
20371:
20372: * src/main/pa_exception.C: exception redundant debug info
20373:
20374: 2001-08-28 parser
20375:
20376: * src/classes/image.C: image error msgs
20377:
20378: * src/classes/image.C: image: gifsize little endian
20379:
20380: * src/doc/doxygen.cfg: doxygen conf removed some garbage from under
20381: doxygeneration
20382:
20383: * src/: classes/Makefile.am, main/Makefile.am,
20384: targets/cgi/Makefile.am, types/Makefile.am: .am-s
20385:
20386: * src/: include/pa_dictionary.h, main/pa_dictionary.C,
20387: main/pa_sql_driver_manager.C: NO_STRING_ORIGIN check3
20388:
20389: * src/main/compile.C: NO_STRING_ORIGIN check2
20390:
20391: * src/classes/table.C: NO_STRING_ORIGIN check
20392:
20393: * src/include/pa_dictionary.h: gcc: ../include/pa_dictionary.h:19:
20394: storage class specifiers invalid in friend function declarations
20395:
20396: * src/: classes/op.C, main/compile.tab.C, main/pa_dir.C,
20397: main/untaint.C, targets/cgi/parser3.C,
20398: targets/isapi/parser3isapi.C: strncpy forced with zero ending in
20399: case of limit
20400:
20401: * src/: classes/file.C, main/pa_common.C: file:move
20402: autocreate/remove dest/src dir
20403:
20404: * src/: classes/string.C, include/pa_dictionary.h,
20405: include/pa_string.h, main/pa_dictionary.C, main/pa_string.C,
20406: main/untaint.C: pa_directory speeded up. moved zero 'from' check
20407: to directory constructor. string:replace
20408:
20409: 2001-08-27 parser
20410:
20411: * src/classes/image.C: fixed jpgsize alg
20412:
20413: * src/classes/image.C: fixed jpgsize alg
20414:
20415: * src/main/pa_exception.C: z
20416:
20417: * src/main/pa_common.C: removed debug info from pa_common
20418:
20419: * src/: main/pa_request.C, targets/cgi/parser3.C: parser3 test.html
20420: [auto.p from current dir loading]
20421:
1.116 moko 20422: * src/: main/pa_common.C, main/pa_exception.C,
20423: main/pa_sql_driver_manager.C, targets/cgi/Makefile.am: configure
20424: for solaris -lsocket
1.95 moko 20425:
20426: 2001-08-24 parser
20427:
20428: * src/targets/cgi/parser3.C: not cgi extra \n 3
20429:
20430: * src/targets/cgi/parser3.C: not cgi extra \n 2
20431:
20432: * src/targets/cgi/parser3.C: not cgi extra \n
20433:
20434: * src/main/pa_sql_driver_manager.C: z
20435:
20436: * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C:
20437: sql* removed services from disconnect - cross-request ideological
20438: probs.
20439:
20440: * src/sql/pa_sql_driver.h: sql* removed services from disconnect -
20441: cross-request ideological probs. oracle - fixed bug: cs
20442: allocated on request.pool and got freed before disconnect
20443:
20444: * src/classes/: file.C, form.C, mail.C, table.C: fiew non-pool
20445: mallocs fixed
20446:
20447: 2001-08-23 parser
20448:
20449: * src/classes/file.C: minor bug in file:save fixed
20450:
20451: * src/main/pa_sql_driver_manager.C: oracle: dlink
20452:
20453: 2001-08-22 parser
20454:
20455: * src/: classes/file.C, main/compile.tab.C, types/pa_vfile.C,
20456: types/pa_vfile.h: file:load|save[text|binary;
20457:
20458: * src/main/: compile.tab.C, compile.y: ^method[]^[^] literals []
20459:
20460: 2001-08-21 parser
20461:
20462: * src/classes/: file.C, table.C: ^file:list
20463:
20464: 2001-08-20 parser
20465:
20466: * src/: main/compile.tab.C, main/compile.y,
20467: main/pa_sql_driver_manager.C, types/pa_value.h, types/pa_vbool.h,
20468: types/pa_vdouble.h, types/pa_vint.h: $var(123) ^var.inc[]
20469: recousively caused problems: inc incremeted 123 literal!! fixed
20470:
20471: 2001-08-10 parser
20472:
20473: * src/main/: compile.tab.C, compile.y: [codes] name part syntax now
20474:
20475: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
20476: added
20477:
20478: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
20479: added
20480:
20481: * src/classes/table.C: table:sort restored [it was bad test :(]
20482:
20483: * src/types/: pa_value.h, pa_vstring.h: string now def only when ne
20484: ''
20485:
20486: * src/main/: pa_request.C: wanted to make const int
20487: MAX_EXECUTE_SECONDS=1;
20488:
20489: but couldnt, set_callback_and_alarm appeared to be not exported
20490: :(
20491:
20492: * src/main/pa_string.C: string.match hanged on. there were a hang
20493: check but it weren't wise enough
20494:
20495: @parse[dateString][tmp]
20496: $tmp[^dateString.match[(\d\d\d\d-)?(\d\d-)?][g]] $tmp.1 $tmp.2
20497: #end
20498:
20499: @main[] ^parse[2001-02-03]
20500:
20501: * src/classes/: table.C: table:sort now default desc
20502:
20503: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
20504: table.sort now creates new sorted table
20505:
20506: 2001-08-09 parser
20507:
20508: * src/main/pa_string.C: $a[010] now ^if($a==10){true} were octal
20509:
20510: * src/classes/hash.C: hash:_default now [was hash:default]
20511:
20512: * src/classes/op.C: case without switch check added
20513:
20514: * src/types/pa_vcookie.C: cookie name&value origins added, more
20515: precise $ORIGINS(1)
20516:
20517: * src/main/Makefile.am: .am
20518:
20519: * src/classes/void.C: void: int double copy/paste from int: bug
20520: fixed
20521:
20522: * src/classes/void.C: void: int double copy/paste from int: bug
20523: fixed
20524:
20525: 2001-08-07 parser
20526:
20527: * src/: classes/double.C, classes/int.C, classes/string.C,
20528: classes/table.C, include/pa_globals.h, main/pa_globals.C:
20529: !^int/double:sql{query}[[$.limit(2) $.offset(4) $.default(0)]]
20530: string, table
20531:
20532: * src/: classes/math.C, main/pa_request.C: math:random fixed. win32
20533: srand made working
20534:
20535: 2001-08-06 parser
20536:
20537: * src/: classes/mail.C, classes/op.C, include/pa_array.h,
20538: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
20539: main/compile.tab.C, main/compile.y, main/pa_array.C,
20540: main/pa_dictionary.C, main/pa_exec.C, main/pa_globals.C,
20541: main/pa_hash.C, main/pa_request.C, main/pa_string.C: class_path
20542:
20543: * src/main/pa_exec.C: exec win32 real filename
20544:
20545: * src/classes/file.C: exec stderr out
20546:
20547: * src/classes/hash.C: hash:keys renamed to hash:_keys :(
20548:
20549: 2001-08-03 parser
20550:
20551: * src/: classes/table.C, types/pa_vtable.h: vtable.locks killed
20552:
20553: 2001-08-02 parser
20554:
20555: * src/: classes/string.C, classes/table.C, include/pa_array.h,
20556: main/execute.C, main/pa_exec.C: introducing Array_iter
20557:
20558: * src/main/execute.C: detected quick_get recursion bug. changed to
20559: get@execute, but needs array iterator, separate from array to
20560: avoid it & use caching
20561:
20562: * src/main/: pa_dictionary.C, pa_globals.C: memset dictionary minor
20563: bug fixed
20564:
20565: * src/: classes/classes.h, classes/op.C, include/pa_globals.h,
20566: main/execute.C, main/pa_globals.C: found another multithread bug
20567: in op.C (last, last global var killed) :)
20568:
20569: 2001-08-01 parser
20570:
20571: * src/: include/pa_dictionary.h, include/pa_globals.h,
20572: include/pa_string.h, main/main.dsp, main/pa_dictionary.C,
20573: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
20574: main/untaint.C: speeded up typo-html replacements. introducing
20575: Dictionary with first-char caching
20576:
20577: 2001-07-31 parser
20578:
20579: * src/types/Makefile.am: pa_vtable.C added to .am
20580:
20581: * src/main/compile.tab.C: added, so that could be compiled even on
20582: non-bison-enabled platforms
20583:
20584: 2001-07-28 parser
20585:
20586: * src/classes/table.C: table:hash always produces hash, when can't
20587: - empty
20588:
20589: * src/main/: compile.y, untaint.C: bug fix @ untaint when \r
20590: skipped \n
20591:
20592: 2001-07-27 parser
20593:
20594: * src/classes/: double.C, int.C, string.C: provided meaningful msg
20595: on int/double/string :sql without result and default
20596:
20597: 2001-07-26 parser
20598:
20599: * src/classes/op.C: fixed bad multithread bug with strangly global
20600: OP
20601:
20602: * src/main/compile.y: $man[$.age[zzz]] 0
20603:
20604: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: hash
20605: creation syntax problem persists. restored $: for a while.
20606: thinking of $man[$.age[zzz]] syntax now
20607:
20608: * src/: classes/double.C, classes/int.C, classes/string.C,
20609: include/pa_opcode.h, main/compile.C, main/compile.y,
20610: main/compile_tools.h, main/execute.C, types/pa_vcode_frame.h,
20611: types/pa_vmethod_frame.h, types/pa_wcontext.h,
20612: types/pa_wwrapper.h: fixing :: realization #1
20613:
20614: * src/: include/pa_opcode.h, main/compile.C, main/compile.y,
20615: main/compile_tools.h, main/execute.C, main/pa_request.C,
20616: types/pa_vmethod_frame.h: introducing :: this is constructor call
20617: prefix. ordinary : remains for static accesses
20618:
20619: 2001-07-25 parser
20620:
20621: * src/types/pa_vtable.C: table: get_element order changeed. now: 1.
20622: fields 2. methods 3. columns
20623:
20624: * src/types/: pa_vdouble.h, pa_vint.h: odbc: no result queries;
20625: quote. optimized double&int tostring-s
20626:
20627: * src/main/: compile.C, compile.y, compile_tools.h: allowed
20628: whitespace before first method decl
20629:
20630: * src/classes/table.C: allowed nontable result in table:sql,
20631: results in empty table
20632:
20633: * src/main/: compile.C, compile.y, compile_tools.h: allowed empty
20634: lines before first method decl
20635:
20636: * src/: classes/table.C, main/main.dsp, types/pa_vtable.C,
20637: types/pa_vtable.h: ^table.record[] now $table.fields
20638:
20639: * src/main/compile.y: $var[] is now empty string, not void
20640:
20641: * src/main/: compile.y, execute.C: $var[] is now empty string, not
20642: void
20643:
20644: * src/: classes/string.C, include/pa_globals.h, main/execute.C,
20645: main/pa_globals.C: match replace code context moved to implicit
20646: $match context
20647:
20648: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
20649: main/compile_tools.h, main/execute.C: with killed, code storage
20650: introduced with former 'with' syntax
20651:
20652: 2001-07-24 parser
20653:
20654: * src/: main/compile.C, main/execute.C, main/pa_string.C,
20655: types/pa_value.h: first get_element, next get operator
20656:
20657: * src/main/compile.y: removed @end handling
20658:
20659: * src/main/: compile.C, compile.y: @end handling method2
20660:
20661: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
20662: file:move
20663:
20664: * src/main/pa_common.C: file_read close @ eof when imgsize bug
20665: fixed
20666:
20667: 2001-07-23 parser
20668:
20669: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql odbc
20670: driver
20671:
20672: * src/classes/hash.C: changed sql driver query interface
20673:
20674: * src/: classes/hash.C, classes/string.C, classes/table.C,
20675: classes/void.C, include/pa_sql_connection.h, sql/pa_sql_driver.h:
20676: changed sql driver query interface
20677:
20678: 2001-07-20 parser
20679:
20680: * src/types/pa_vrequest.C: X!$browser:type
20681:
20682: * src/: classes/file.C, classes/string.C, include/pa_string.h,
20683: main/execute.C, main/pa_string.C, types/pa_valiased.C,
20684: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.h,
20685: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vfile.h,
20686: types/pa_vform.h, types/pa_vhash.h, types/pa_vmath.h,
20687: types/pa_vobject.h, types/pa_vrequest.C,
20688: types/pa_vstateless_class.h, types/pa_vstateless_object.h: only
20689: ^class:method dynamic calls allowed. ^BASE.method call disabled.
20690: BASE element globally removed
20691:
20692: 2001-07-18 parser
20693:
20694: * src/classes/file.C: file:exec/cgi msg
20695:
20696: * src/classes/file.C: $file:exit-code renamed to 'status'
20697:
20698: * src/: classes/file.C, main/pa_exec.C: file:exec
20699:
1.116 moko 20700: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
20701: targets/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
20702: removed $id from *.in *.am
1.95 moko 20703:
20704: * src/main/: pa_request.C, untaint.C: ORIGINS langs name
20705: abbrevations
20706:
20707: * src/: classes/date.C, classes/mail.C, classes/math.C,
20708: classes/string.C, classes/table.C, include/pa_globals.h,
20709: include/pa_string.h, main/execute.C, main/pa_globals.C,
20710: main/pa_request.C, main/pa_string.C, main/untaint.C,
20711: types/pa_value.h, types/pa_vdouble.h, types/pa_vfile.h,
20712: types/pa_vint.h, types/pa_vstring.C, types/pa_vstring.h:
20713: $ORIGINS(1) output tracing mode
20714:
20715: 2001-07-13 parser
20716:
20717: * src/: classes/double.C, classes/int.C, classes/string.C,
20718: include/pa_request.h, main/execute.C, main/pa_request.C:
20719: auto.p[@auto], /news/auto.p[no @auto], so that initializing
20720: second would not call first @auto
20721:
20722: * src/main/: execute.C, pa_request.C: order of MAIN parents was
20723: wrong, fixed
20724:
20725: 2001-07-12 parser
20726:
20727: * src/types/pa_value.h: pa_value.putelement modification of system
20728: classes prevented
20729:
20730: 2001-07-11 parser
20731:
20732: * src/: classes/string.C, doc/sources2html.cmd: lr split now yelds
20733: table $piece
20734:
20735: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
20736: types/pa_vstateless_class.h: $file created by file:state +=
20737: .atime .mtime .ctime +found&fixed bug with exceptions on
20738: get_junction-created objects [they were on wrong pool]
20739:
20740: 2001-07-09 parser
20741:
20742: * src/main/untaint.C: qp wrong name
20743:
20744: * src/: classes/date.C, classes/string.C, classes/table.C,
20745: main/compile.y: date format 0
20746:
20747: 2001-07-07 parser
20748:
20749: * src/: classes/date.C, classes/table.C, include/pa_common.h,
20750: include/pa_string.h, main/pa_common.C, types/pa_vdate.h: date
20751: roll table calendar
20752:
20753: * src/: classes/Makefile.am, classes/date.C, classes/file.C,
20754: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
20755: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
20756: include/pa_request.h, main/main.dsp, types/pa_value.h,
20757: types/pa_vdate.h, types/pa_wcontext.C: date now set $fields roll
20758: string. todo: sql, calendar
20759:
20760: 2001-07-06 parser
20761:
20762: * src/: classes/math.C, include/pa_request.h, main/execute.C,
20763: main/main.dsp, main/pa_request.C, types/pa_vmath.h: math 0
20764:
20765: 2001-07-03 parser
20766:
20767: * src/: classes/Makefile.am, classes/math.C, classes/op.C,
20768: classes/random.C, main/main.dsp: class random renamed to math,
20769: operators became methods
20770:
20771: * src/classes/op.C: pow sqrt
20772:
20773: * src/: classes/op.C, main/execute.C: sin asin cos acos tan atan
20774:
20775: 2001-07-02 parser
20776:
20777: * src/classes/table.C: ^table.columns column renamed from 'name' to
20778: 'column'
20779:
20780: * src/classes/hash.C: ^hash.keys[]
20781:
20782: * src/: classes/table.C, main/pa_table.C: ^table:columns[]
20783:
20784: * src/main/: compile.y, compile_tools.h: in expressions now allowed
20785: 'strings'
20786:
20787: 2001-06-29 parser
20788:
20789: * src/main/: execute.C: /0 %0 checkes ver 2
20790:
20791: * src/main/execute.C: /0 %0 checke
20792:
20793: * src/classes/Makefile.am: nothing - void
20794:
20795: * src/classes/table.C: empty strings @ sql
20796:
20797: 2001-06-28 parser
20798:
20799: * src/: classes/double.C, classes/file.C, classes/form.C,
20800: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
20801: classes/op.C, classes/random.C, classes/response.C,
20802: classes/string.C, classes/table.C, classes/void.C,
20803: main/compile.C, main/compile_tools.C, main/execute.C,
20804: main/pa_array.C, main/pa_common.C, main/pa_dir.C,
20805: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
20806: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
20807: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
20808: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
20809: targets/isapi/parser3isapi.C, main/compile.y: */ static const
20810: char *RCSId="$Id: double.C,v 1.31 2001/06/28 07:41:59 parser Exp
20811: $";
20812:
20813: * src/: classes/double.C, classes/file.C, classes/form.C,
20814: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
20815: classes/op.C, classes/random.C, classes/response.C,
20816: classes/string.C, classes/table.C, classes/void.C,
20817: main/compile.C, main/compile.y, main/compile_tools.C,
20818: main/execute.C, main/pa_array.C, main/pa_common.C, main/pa_dir.C,
20819: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
20820: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
20821: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
20822: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
1.119 moko 20823: targets/isapi/parser3isapi.C: static char *RCSId="Id";
1.95 moko 20824:
20825: * src/main/: compile.y, compile_tools.h: $:name: == ${name}:
20826: $class:name: == ${class:name}:
20827:
20828: * src/classes/string.C: exactly one
20829:
20830: 2001-06-27 parser
20831:
20832: * src/: classes/nothing.C, classes/void.C, types/pa_vnothing.h,
20833: types/pa_vvoid.h: nothing renamed to void
20834:
20835: * src/classes/op.C: ^switch ^case
20836:
20837: * src/main/compile.y: nothing renamed to void
20838:
20839: * src/: classes/hash.C, classes/table.C, main/compile.y,
20840: main/execute.C, main/main.dsp, main/pa_request.C,
20841: targets/cgi/pa_pool.C, types/pa_value.h, types/pa_vcode_frame.h,
20842: types/pa_vmethod_frame.h, types/pa_vtable.h: nothing renamed to
20843: void
20844:
20845: * src/main/compile.y: lexer: $zzzz^zzzz were name part
20846:
20847: 2001-05-28 parser
20848:
20849: * src/doc/html2chm.cmd: removed >a
20850:
20851: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: release
20852: project options [some bugs]
20853:
20854: * src/doc/sources2html.cmd: z
20855:
20856: * src/: classes/classes.C, main/compile.C, main/compile.y,
20857: main/execute.C: operators are not in root class again
20858:
20859: 2001-05-24 parser
20860:
20861: * src/targets/cgi/parser3.dsp: project file
20862:
20863: * src/: classes/op.C, main/pa_request.C, targets/cgi/parser3.C:
20864: ^log ^exp
20865:
20866: * src/: main/pa_request.C, targets/cgi/parser3.C: // no _
20867: conversions in @exception[params]
20868:
20869: * src/main/pa_request.C: // no _ conversions in @exception[params]
20870:
20871: 2001-05-23 parser
20872:
20873: * src/main/pa_string.C: string cmp bug
20874:
20875: * src/classes/: mail.C, op.C: rem max 1000
20876:
20877: * src/: classes/op.C, main/compile.y: allow one empty line before
20878: LS_DEF_NAME
20879:
20880: 2001-05-22 parser
20881:
20882: * src/classes/op.C: if params code-required
20883:
20884: 2001-05-21 parser
20885:
20886: * src/types/pa_vstring.C: eoleof
20887:
20888: * src/classes/Makefile.am: .AM
20889:
20890: * src/classes/nothing.C: resultless ^sql moved to nothing:
20891:
20892: * src/classes/: nothing.C, op.C: 'unknown' renamed to 'nothing'
20893:
20894: * src/: classes/double.C, classes/nothing.C, classes/string.C,
20895: classes/unknown.C, main/main.dsp, types/pa_vnothing.h,
20896: types/pa_vunknown.h, classes/hash.C, main/compile.y,
20897: main/execute.C, targets/cgi/pa_pool.C, types/pa_vcode_frame.h,
20898: types/pa_vmethod_frame.h, types/pa_vtable.h, classes/table.C,
20899: main/pa_request.C, types/pa_value.h: 'unknown' renamed to
20900: 'nothing'
20901:
20902: * src/types/: pa_vstring.C, pa_vstring.h: removed unnecessary
20903: vstring::set_string
20904:
20905: * src/classes/: double.C, int.C, string.C: int,double;sql
20906:
20907: * src/: classes/hash.C, classes/int.C, classes/string.C,
20908: classes/table.C, include/pa_string.h, main/pa_string.C,
20909: types/pa_vstring.C, types/pa_vstring.h: started int:sql
20910:
20911: * src/: classes/classes.C, classes/hash.C, classes/op.C,
20912: classes/table.C, main/compile.C, main/compile.y, main/execute.C:
20913: hash:sql moved to main trunc. operators.txt updated
20914:
20915: * src/classes/: hash.C, op.C, table.C: hash:sql
20916:
20917: * src/classes/op.C: z
20918:
20919: * src/: main/compile.C, classes/classes.C: 1
20920:
20921: * src/: classes/classes.C, main/compile.C, main/compile.y,
20922: main/execute.C: 0
20923:
20924: * src/main/execute.C: z
20925:
20926: * src/targets/cgi/parser3.C: z
20927:
20928: * src/targets/cgi/parser3.C: argv can be just "parser3". made
20929: site_auto_path "." in that case
20930:
20931: * src/targets/cgi/: parser3.C: z
20932:
20933: * src/main/pa_request.C: .am
20934:
20935: * src/: main/pa_request.C, targets/cgi/parser3.C:
20936: pcre_tables=pcre_default_tables;
20937:
20938: 2001-05-19 parser
20939:
20940: * src/main/pa_string.C: z
20941:
20942: * src/: include/pa_string.h, main/untaint.C, targets/cgi/pa_pool.C:
20943: introducing String::cstr_bufsize, returns just size+1 for as_is
20944: target.
20945:
20946: * src/: main/untaint.C, targets/cgi/pa_pool.C,
20947: targets/cgi/parser3.C: fixed bug in pre html untaint, wrong size
20948: used, 4* mem wasted
20949:
20950: * src/classes/string.C: root context in match replace body now
20951: unchanged
20952:
20953: * src/types/pa_value.h: parameter # 1 based
20954:
20955: * src/main/pa_common.C: common: actual filename '%s'
20956:
20957: * src/classes/string.C: z
20958:
20959: * src/classes/Makefile.am: classes/.am
20960:
20961: * src/classes/: Makefile.am: classes/.am
20962:
20963: * src/: classes/Makefile.am, main/pa_sql_driver_manager.C,
20964: targets/cgi/pa_pool.C: classes/.am
20965:
20966: 2001-05-18 parser
20967:
1.116 moko 20968: * src/: include/pa_config_auto.h.in, targets/cgi/pa_pool.C: .am
20969: pa_threads.C ins
1.95 moko 20970:
20971: * src/targets/cgi/Makefile.am: .am pa_threads.C added
20972:
20973: 2001-05-17 parser
20974:
20975: * src/: classes/string.C, include/pa_config_fixed.h,
20976: include/pa_config_includes.h, main/compile.y,
20977: main/compile_tools.h, main/execute.C, main/pa_array.C,
20978: main/pa_common.C, main/pa_dir.C, main/pa_hash.C, main/pa_pool.C,
20979: main/untaint.C, types/pa_vcookie.C, types/pa_vfile.C,
20980: types/pa_vform.C: #include "pa_config_includes.h" removed from
20981: most .C
20982:
20983: * src/doc/html2chm.cmd: z
20984:
20985: * src/doc/: chm.cmd, doxygen.cmd, html2chm.cmd, sources2html.cmd,
20986: view.cmd, view_chm.cmd, view_html.cmd: doc cmds
20987:
20988: * src/main/pa_sql_driver_manager.C: moved expiration to
20989: get_connection_from_cache
20990:
20991: * src/main/pa_sql_driver_manager.C: cache expiration bf
20992:
20993: * src/: classes/classes.h, include/pa_sql_connection.h,
20994: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C:
20995: cache expiration[use SQL_Driver::disconnect]
20996:
20997: * src/main/pa_table.C: table.locate current restored on "not found"
20998:
20999: * src/: main/execute.C, types/pa_vmethod_frame.h: endless recursion
21000: line no
21001:
21002: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
21003: ANTI_ENDLESS_EXECUTE_RECOURSION
21004:
21005: * src/: classes/op.C, include/pa_sql_connection.h,
21006: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C,
21007: sql/pa_sql_driver.h: fixed problem at last: 2connections own
21008: 1driver and set_services fight for driver::fservices. before fix
21009:
21010: * src/: classes/op.C, include/pa_config_fixed.h,
21011: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
21012: main/pa_sql_driver_manager.C: found problem at last: 2connections
21013: own 1driver and set_services fight for driver::fservices. before
21014: fix
21015:
21016: * src/: include/pa_config_fixed.h, include/pa_threads.h,
21017: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
21018: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.dsp: added
21019: pa_threads.C
21020:
21021: * src/include/pa_threads.h: removed targets/parser
21022:
21023: * src/include/: pa_array.h, pa_common.h, pa_config_fixed.h,
21024: pa_config_includes.h, pa_exception.h, pa_exec.h, pa_globals.h,
21025: pa_hash.h, pa_opcode.h, pa_pool.h, pa_request.h, pa_sapi.h,
21026: pa_socks.h, pa_sql_connection.h, pa_stack.h, pa_string.h,
21027: pa_table.h, pa_threads.h: #include "pa_config_includes.h" in all
21028: headers
21029:
21030: * src/: classes/image.C, include/pa_sql_driver_manager.h,
21031: main/pa_sql_driver_manager.C, main/pa_string.C: wrong includes
21032: order prevented sqlmanager to see MULTYTHREAD define
21033:
21034: * src/: include/pa_config_fixed.h, include/pa_threads.h,
21035: main/pa_sql_driver_manager.C: SYNCHRONIZED moved closer to caches
21036: put/gets
21037:
21038: * src/: include/pa_hash.h, main/execute.C: removed /*SYNCHRONIZED*/
21039: from hash.h
21040:
21041: * src/: classes/op.C, include/pa_sql_connection.h,
21042: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: connection
21043: from cache ->set_services(&services);
21044:
21045: 2001-05-16 parser
21046:
21047: * src/targets/cgi/parser3.C: z
21048:
21049: * src/: include/pa_pool.h, targets/cgi/pa_pool.C: removed pool
21050: debug, #ifdefed some. would debug later, on more precise sample
21051: than stupid: @main[] $name[$z[]] ^for[i](0;10000-2){ $tail[9994]
21052: $name.$tail[$tail!] $name.$tail } ok3
21053:
21054: * src/: include/pa_array.h, main/pa_array.C, targets/cgi/parser3.C:
21055: removed array debug. before vstring rebasing
21056:
21057: * src/: include/pa_array.h, include/pa_string.h, main/execute.C,
21058: main/pa_array.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C:
21059: array debugged; adjusted
21060:
21061: * src/main/: pa_sql_driver_manager.C, pa_string.C:
21062: SQL_Driver_manager line no for connect/charset errors
21063:
21064: 2001-05-15 parser
21065:
21066: * src/: include/pa_array.h, include/pa_string.h, main/pa_array.C,
21067: main/pa_string.C: string+array made linear grows
21068:
21069: * src/: include/pa_string.h, main/pa_string.C,
21070: targets/cgi/pa_pool.C, targets/cgi/parser3.C: think that all must
21071: grow lineary, not exponentialy
21072:
21073: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C,
21074: targets/cgi/pa_pool.C, targets/cgi/parser3.C: string fixed bug
21075: with fullchunk cmps
21076:
21077: * src/targets/cgi/: pa_pool.C, parser3.C: main loss here: 5673321/
21078: 70041= 81
21079:
21080: * src/: include/pa_string.h, targets/cgi/pa_pool.C,
21081: targets/cgi/parser3.C: detected huge mem allocation: size/times
21082: malloc 27809390/368771, calloc 3232/83. would test now
21083:
21084: * src/: classes/random.C, main/compile.y, main/execute.C,
21085: main/pa_request.C, types/pa_value.h, types/pa_vmethod_frame.h:
21086: numbered params had wrong name - for instance: bad error message
21087: in ^for[] bad body type. fixed
21088:
21089: 2001-05-14 parser
21090:
21091: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
21092: main/untaint.C: ^string.upper|lower[]
21093:
21094: 2001-05-11 parser
21095:
21096: * src/: classes/double.C, classes/image.C, classes/op.C,
21097: classes/string.C, classes/table.C, classes/unknown.C,
21098: main/execute.C, types/pa_value.h, types/pa_vbool.h,
21099: types/pa_vdouble.h, types/pa_vint.h, types/pa_vstring.h,
21100: types/pa_vunknown.h: op: MAX_LOOPS as_int
21101:
21102: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: fixed some
21103: .dsp for win32tools
21104:
21105: 2001-05-11 paf
21106:
21107: * src/: classes/classes.cmd, classes/gawk.exe, classes/ls.exe,
21108: main/bison.exe, targets/isapi/KILL.EXE, targets/isapi/PSTAT.EXE,
21109: targets/isapi/istart.cmd, targets/isapi/istop.cmd,
21110: targets/isapi/kill.pl: moved win32 helpers to /win32tools
21111:
21112: 2001-05-10 paf
21113:
21114: * src/include/: pa_common.h, pa_config_includes.h: inline undefed
21115: for C++, that's all
21116:
1.116 moko 21117: * src/include/: pa_config_auto.h.in, pa_config_fixed.h,
21118: pa_config_includes.h: inline wonders
1.95 moko 21119:
21120: * src/: classes/Makefile.am, classes/hash.C, doc/doxygen.cfg,
21121: doc/doxygen.cmd: hash.C added
21122:
21123: * src/: main/pa_request.C, types/pa_vrequest.C: op configured
21124:
21125: * src/main/compile.y: @end grammar: allowed zero strings in control
21126: menthod
21127:
21128: * src/types/: pa_value.h, pa_vclass.h, pa_vstateless_class.h,
21129: pa_vstateless_object.h: changed priority: field before method
21130: lookup in vclass & vobject
21131:
21132: * src/: doc/doxygen.cmd, main/compile.y, types/pa_vobject.h:
21133: grammar: priorities changes [lowerd && prior] vobject: now first
21134: fields, next methods
21135:
21136: 2001-05-08 paf
21137:
21138: * src/main/pa_table.C: table columnname2item on nameless ignored
21139: bark=false. fixed
21140:
21141: * src/: classes/table.C, types/pa_value.h, types/pa_vhash.h,
21142: types/pa_vmethod_frame.h: hash:default works at last!
21143:
21144: * src/: classes/mail.C, classes/table.C, doc/doxygen.cmd,
21145: main/main.dsp, types/pa_vhash.h, types/pa_vstateless_class.h:
21146: hash:default
21147:
21148: * src/classes/table.C: z
21149:
21150: * src/classes/table.C: table:hash always hash of hash now
21151:
21152: * src/classes/table.C: table:empty return bool now
21153:
21154: * src/: classes/table.C, doc/chm.cmd, include/pa_array.h,
21155: include/pa_table.h, main/pa_table.C, types/pa_value.h,
21156: types/pa_vtable.h: table:hash
21157:
21158: * src/classes/table.C: table:record have name
21159:
21160: * src/: classes/op.C, types/pa_vtable.h: allowed $table.2342734
21161: returns vunknown
21162:
21163: * src/classes/: double.C, int.C, op.C, string.C:
21164: int,double,string:int[] double[] string:length[] results now have
21165: hames
21166:
21167: * src/: classes/op.C, classes/table.C, main/main.dsp,
21168: types/pa_vtable.h: removed table:find. table:locate and op:eval
21169: now return bool
21170:
21171: * src/: doc/chm.cmd, main/execute.C, types/pa_value.h: wrong pool
21172: in method checkparams again. fixed
21173:
21174: 2001-05-07 paf
21175:
21176: * src/doc/chm.cmd: cmd
21177:
21178: * src/: classes/image.C, classes/mail.C, classes/string.C,
21179: doc/chm.cmd, include/pa_table.h, main/pa_table.C,
21180: types/pa_value.h: method reported errors on wrong pool
21181:
21182: * src/main/execute.C: ^var[^class:var.method[]] is not constructor
21183: now
21184:
21185: * src/: doc/ClassExample2.dox, doc/aliased.dox, doc/chm.cmd,
21186: include/code.h, include/pa_opcode.h, main/compile.C,
21187: main/compile_tools.h, main/execute.C, types/pa_value.h,
21188: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
21189: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
21190: types/pa_vfile.h, types/pa_vform.h, types/pa_vhash.h,
21191: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
21192: types/pa_vmethod_frame.h, types/pa_vobject.h,
21193: types/pa_vrequest.h, types/pa_vresponse.h,
21194: types/pa_vstateless_class.h, types/pa_vstring.h,
21195: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
21196: types/pa_wwrapper.h: pa_code.h
21197:
21198: * src/doc/: chm.cmd, doxygen.cmd, view.cmd: dox cmd
21199:
21200: * src/: classes/string.C, classes/table.C, doc/ClassExample1.dox,
21201: doc/ClassExample2.dox, doc/ClassExample3.dox, doc/aliased.dox,
21202: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
21203: doc/doxygen.cmd, doc/executor.dox, doc/index.dox,
21204: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
21205: doc/string.dox, doc/targets.dox, doc/value.dox, include/code.h,
21206: include/pa_hash.h, include/pa_string.h, main/pa_request.C,
21207: main/pa_sql_driver_manager.C, types/pa_vjunction.h,
21208: types/pa_vtable.h: dox, split by not clean parts also
21209:
21210: * src/: include/pa_table.h, main/pa_table.C, types/pa_value.h,
21211: types/pa_vtable.h: table: fields, then methods. so to enable
21212: 'dir' fields & co. more
21213:
21214: * src/types/: pa_value.h, pa_vtable.h: table: fields, then methods.
21215: so to enable 'dir' fields & co.
21216:
21217: * src/main/compile.y: grammar: @end
21218:
21219: 2001-05-04 paf
21220:
21221: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
21222: doc/ClassExample3.dox, main/execute.C: dox: example1 updated
21223:
21224: * src/: classes/classes.h, classes/double.C, classes/file.C,
21225: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
21226: classes/op.C, classes/random.C, classes/response.C,
21227: classes/string.C, classes/table.C, classes/unknown.C,
21228: doc/doxygen.cfg, doc/index.dox, main/pa_string.C: removed m-
21229: method dox
21230:
21231: 2001-05-03 paf
21232:
21233: * src/: classes/classes.h, classes/double.C, doc/aliased.dox,
21234: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
21235: doc/doxygen.txt, doc/executor.dox, doc/index.dox,
21236: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
21237: doc/string.dox, doc/targets.dox, doc/value.dox,
21238: main/pa_request.C: dox splitted .dox files and added some
21239:
21240: * src/: classes/Makefile.am, doc/doxygen.txt: classes/am
21241:
21242: 2001-05-02 paf
21243:
21244: * src/classes/: image.C, table.C: table:dir result are not tainted
21245: by file_name language now
21246:
21247: 2001-04-28 paf
21248:
21249: * src/classes/classes.inc: removed classes.inc
21250:
21251: * src/: classes/classes.inc, main/Makefile.am: removed pa_methoded
21252: from .am
21253:
21254: * src/classes/classes.awk: skipped classes in .awk
21255:
21256: * src/: classes/Makefile.am, classes/classes.C, classes/classes.h,
21257: classes/classes.inc, classes/double.C, classes/file.C,
21258: classes/form.C, classes/int.C, classes/op.C, classes/response.C,
21259: classes/string.C, classes/table.C, classes/unknown.C,
21260: include/pa_methoded.h, main/main.dsp, main/pa_methoded.C,
21261: targets/cgi/parser3.C, types/pa_vdouble.h, types/pa_vfile.h,
21262: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h: renamed
21263: pa_methoded back to classes/classes.h
21264:
21265: * src/: classes/Makefile.am, main/main.dsp: classes/Makefile.am
21266:
21267: * src/: classes/Makefile.am, classes/classes.awk,
21268: classes/classes.cmd, classes/classes.inc, classes/gawk.exe,
21269: classes/ls.exe, main/bison.exe: classes.inc autogenerator
21270:
21271: * src/: classes/classes.C, classes/classes.h, classes/double.C,
21272: classes/file.C, classes/form.C, classes/int.C, classes/op.C,
21273: classes/response.C, classes/string.C, classes/table.C,
21274: classes/unknown.C, include/pa_methoded.h, main/Makefile.am,
21275: main/main.dsp, main/pa_methoded.C, targets/cgi/parser3.C,
21276: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vform.h,
21277: types/pa_vimage.h, types/pa_vint.h: classes/classes renamet to
21278: include|main/pa_methoded
21279:
21280: * src/: include/pa_string.h, main/pa_globals.C, main/untaint.C,
21281: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: z
21282:
21283: * src/: classes/form.C, include/pa_globals.h, main/pa_globals.C:
21284: moved some configured data to request::classes_conf moved some
21285: string crations from globals to M... [works]
21286:
21287: * src/: classes/form.C, classes/mail.C, classes/op.C,
21288: include/pa_globals.h, include/pa_request.h, main/pa_globals.C,
21289: main/pa_request.C: moved some configured data to
21290: request::classes_conf moved some string crations from globals to
21291: M...
21292:
21293: * src/: classes/form.C, include/pa_request.h, main/pa_request.C:
21294: about to move configured data to special request hash
21295:
21296: * src/: classes/classes.C, classes/classes.h, classes/file.C,
21297: classes/form.C, classes/mail.C, include/pa_request.h,
21298: main/pa_request.C: configure started
21299:
21300: * src/: main/execute.C, types/pa_wcontext.h: Methoded reorganized
21301: 2. todo: methoded-configure
21302:
21303: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
21304: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
21305: classes/_random.h, classes/_response.h, classes/_string.h,
21306: classes/_table.h, classes/_unknown.h, classes/classes.inc,
21307: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
21308: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
21309: classes/random.C, classes/response.C, classes/string.C,
21310: classes/table.C, classes/unknown.C, include/pa_globals.h,
21311: include/pa_request.h, main/compile.y, main/execute.C,
21312: main/main.dsp, main/pa_globals.C, main/pa_request.C,
21313: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
21314: types/pa_value.h, types/pa_vcookie.h, types/pa_vdouble.h,
21315: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.C,
21316: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
21317: types/pa_vrequest.h, types/pa_vresponse.h,
21318: types/pa_vstateless_class.h, types/pa_vstring.h,
21319: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
21320: classes/classes.C, classes/classes.h: Methoded reorganized. todo:
21321: methoded-configure
21322:
21323: * src/: classes/file.C, classes/table.C, main/compile.y,
21324: main/execute.C, main/pa_request.C, targets/cgi/parser3.C,
21325: types/pa_vtable.h, types/pa_wcontext.h: removed ^a.menu{$name}
21326: ability. now $a{^menu{$name}} or ^a.menu{$a.name}
21327:
21328: * src/: classes/_string.h, classes/classes.C, classes/classes.h,
21329: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
21330: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
21331: classes/random.C, classes/response.C, classes/string.C,
21332: classes/table.C, classes/unknown.C, include/pa_request.h,
21333: main/compile.y, main/execute.C, main/pa_globals.C,
21334: main/pa_request.C, types/pa_value.h, types/pa_vdouble.h,
21335: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
21336: types/pa_vimage.h, types/pa_vint.h, types/pa_vresponse.h,
21337: types/pa_vstring.h, types/pa_vtable.h, types/pa_vunknown.h:
21338: beautifying just compiled. todo: debug, configure
21339:
21340: 2001-04-27 paf
21341:
21342: * src/: classes/file.C, classes/image.C, classes/table.C,
21343: main/execute.C, main/pa_request.C, types/pa_vstateless_class.h:
21344: beautifying -99
21345:
21346: * src/: classes/_double.h, classes/_form.h, classes/_int.h,
21347: classes/_response.h, classes/_unknown.h, classes/classes.C,
21348: classes/classes.h, classes/double.C, classes/file.C,
21349: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
21350: classes/op.C, classes/random.C, classes/response.C,
21351: classes/string.C, include/pa_globals.h, main/main.dsp,
21352: main/pa_globals.C, types/pa_vdouble.h, types/pa_vfile.h,
21353: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
21354: types/pa_vresponse.h, types/pa_vstring.h, types/pa_vtable.h,
21355: types/pa_vunknown.h: beautifying -100
21356:
21357: * src/main/compile.y: serge@ found @CLASS bug. fixed
21358:
21359: * src/: classes/_file.h, classes/_image.h, classes/_mail.h,
21360: classes/_op.h, classes/_random.h, classes/_table.h,
21361: classes/file.C, classes/image.C, classes/int.C, classes/mail.C,
21362: classes/op.C, classes/random.C, classes/response.C,
21363: classes/string.C, classes/table.C, classes/unknown.C,
21364: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
21365: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
21366: types/pa_vcookie.h, types/pa_venv.h, types/pa_vrequest.h: started
21367: beautifying
21368:
21369: 2001-04-26 paf
21370:
21371: * src/: main/pa_request.C, types/pa_vfile.h: code documentation ++
21372:
21373: * src/: doc/doxygen.cfg, include/pa_socks.h, main/pa_socks.C: code
21374: documentation ++
21375:
21376: * src/: classes/_exec.h, doc/doxygen.cfg,
21377: include/pa_config_fixed.h, include/pa_config_includes.h,
21378: targets/cgi/pa_pool.C: code documentation ++
21379:
21380: * src/: classes/_image.h, classes/op.C, classes/random.C,
21381: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
21382: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
21383: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.C,
21384: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
21385: types/pa_vmethod_frame.h, types/pa_vobject.h,
21386: types/pa_vrequest.C, types/pa_vrequest.h,
21387: types/pa_vstateless_class.C, types/pa_vstateless_object.h,
21388: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.h,
21389: types/pa_vunknown.h, types/pa_wcontext.C, types/pa_wwrapper.h:
21390: code documentation ++
21391:
21392: * src/: classes/image.C, classes/mail.C, classes/string.C,
21393: classes/table.C, doc/doxygen.cfg, doc/doxygen.txt,
21394: include/pa_array.h, include/pa_dir.h, include/pa_string.h,
21395: main/compile_tools.h, main/pa_common.C, sql/pa_sql_driver.h,
21396: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
21397: types/pa_vhash.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
21398: types/pa_vobject.h, types/pa_vstateless_class.h,
21399: types/pa_wcontext.h, types/pa_wwrapper.h: code documentation ++
21400:
21401: * src/main/: pa_request.C, pa_string.C: z
21402:
21403: * src/: include/pa_common.h, include/pa_types.h,
21404: main/pa_sql_driver_manager.C: module [and, guess, isapi]
21405: connection caching fixed. request-pooled-url were stored into
21406: global connectioncache
21407:
21408: 2001-04-25 paf
21409:
21410: * src/: doc/doxygen.cfg, doc/doxygen.txt,
21411: targets/isapi/parser3isapi.C: started doc / [doxygen.txt]
21412:
21413: * src/: include/code.h, include/pa_common.h, main/compile.y,
21414: main/execute.C, main/pa_common.C: -d
21415:
21416: * src/: classes/file.C, main/pa_exec.C, targets/cgi/parser3.C:
21417: illegal call check a bit improved, but still under iis no mapping
21418: of dir with parser allowed!
21419:
21420: 2001-04-24 paf
21421:
21422: * src/targets/Makefile.am: apache module lib .am
21423:
21424: * src/main/pa_exec.C: windows32 buildCommand
21425:
21426: 2001-04-23 paf
21427:
21428: * src/targets/cgi/Makefile.am: win32 conditional
21429:
21430: * src/targets/cgi/Makefile.am: win32 conditional
21431:
21432: * src/targets/cgi/Makefile.am: liblink
21433:
21434: * src/: include/pa_array.h, main/pa_array.C, types/pa_vfile.h:
21435: vfile fields return type
21436:
21437: * src/types/pa_vfile.h: vfile fields return type
21438:
21439: * src/include/pa_config_auto.h.in: .h.in
21440:
21441: * src/: classes/Makefile, main/Makefile, targets/cgi/Makefile,
21442: types/Makefile: makefiles removed
21443:
21444: * src/: classes/Makefile, main/Makefile, main/pa_string.C,
21445: targets/cgi/Makefile, types/Makefile: configure.in + makefiles
21446:
21447: * src/main/pa_string.C: tested OK /// @test really @b test: s x m
21448: [tested: i & g ]
21449:
21450: * src/: classes/random.C, targets/cgi/parser3.C: redo failed ///
21451: @test noticed series in isapi, check how initialize_random_class
21452: is called! [must be called only once]
21453:
21454: * src/main/execute.C: operators first! so that ^table.menu{^rem{}}
21455: would not be 'unknown column'
21456:
21457: * src/: classes/table.C, types/pa_vform.C, types/pa_vtable.h: ///
21458: @test $a.menu{ $a[123] } and $a.menu{^table:set[]...}
21459:
21460: * src/: main/pa_request.C, targets/cgi/parser3.C: /// @test with
21461: commandline start "parser3 a.html" so that ^load[a.cfg] worked!
21462: [now doesnt]
21463:
21464: * src/targets/cgi/parser3.C: cgi cmdline ver
21465:
21466: * src/targets/cgi/parser3.C: cgi /// @test disable
21467: /cgi-bin/parser3/auto.p
21468:
21469: * src/main/untaint.C: untaint without charset
21470:
21471: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
21472: main/pa_common.C: common: file_write /// @test mkdirs
21473: file_delete rmdirs
21474:
21475: * src/main/untaint.C: mail header only once to =?
21476:
21477: * src/: classes/image.C, classes/mail.C, include/pa_globals.h,
21478: include/pa_string.h, main/pa_exec.C, main/pa_request.C,
21479: main/untaint.C: untaint - @test optimize whitespaces for
21480: all but 'html'
21481:
21482: * src/: classes/mail.C, include/pa_hash.h, include/pa_string.h,
21483: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
21484: main/untaint.C: untaint - @test mail-header
21485:
21486: 2001-04-20 paf
21487:
21488: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
21489: include/pa_request.h, include/pa_string.h, main/compile.y,
21490: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
21491: targets/cgi/parser3.C: $MAIN:LOCALE
21492:
21493: * src/main/untaint.C: z
21494:
21495: * src/: main/untaint.C, targets/cgi/parser3.C: fixed header "a/a"
21496:
21497: 2001-04-19 paf
21498:
21499: * src/main/compile_tools.h: $a$b bugfix
21500:
21501: * src/targets/cgi/parser3.C: z
21502:
21503: * src/classes/file.C: z
21504:
21505: * src/: classes/file.C, include/pa_common.h, types/pa_vcookie.C:
21506: done: header to $fields. waits for header '\' tricks
21507:
21508: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
21509: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vcookie.C:
21510: changed urlencode here and in untaint.C to HTTP standard's " and
21511: \" mech
21512:
21513: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: fixed
21514: http://alx/~paf/ doesnt load /auto.p
21515:
21516: 2001-04-18 paf
21517:
21518: * src/main/pa_request.C: 1
21519:
21520: * src/: main/Makefile.am, main/main.dsp, targets/cgi/Makefile.am:
21521: linux @alx
21522:
21523: 2001-04-17 paf
21524:
21525: * src/: classes/file.C, classes/image.C, doc/doxygen.cfg,
21526: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
21527: sql/pa_sql_driver.h: SQL_Driver_services renamed. doxygen statics
21528: enabled
21529:
21530: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
21531: classes/_exec.h, classes/_file.h, classes/_form.h,
21532: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
21533: classes/_random.h, classes/_response.h, classes/_string.h,
21534: classes/_table.h, classes/_unknown.h, classes/file.C,
21535: classes/image.C, classes/mail.C, classes/op.C, classes/random.C,
21536: include/pa_config_fixed.h, include/pa_config_includes.h,
21537: include/pa_hash.h, include/pa_sql_driver_manager.h,
21538: include/pa_version.h, main/Makefile.am, main/compile.y,
21539: main/pa_common.C, main/pa_exec.C, main/pa_socks.C,
21540: main/pa_sql_driver_manager.C, sql/Makefile.am,
21541: sql/pa_sql_driver.h, targets/cgi/Makefile.am,
21542: targets/cgi/parser3.C, types/Makefile.am, types/pa_vcookie.C,
21543: types/pa_vform.C, types/pa_vimage.h: exec @jav
21544:
21545: * src/: include/pa_sql_driver_manager.h,
21546: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
21547: types/pa_vimage.h: sql driver interface now has initialize(client
21548: .so)
21549:
21550: 2001-04-16 paf
21551:
21552: * src/Makefile.am: compile2 cygwin
21553:
21554: * src/: include/pa_config_includes.h, main/pa_exec.C,
21555: main/pa_socks.C, targets/cgi/Makefile.am: compile1 cygwin
21556:
21557: * src/targets/cgi/Makefile.am: compile0 jav
21558:
21559: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
21560: classes/_exec.h, classes/_file.h, classes/_form.h,
21561: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
21562: classes/_random.h, classes/_response.h, classes/_string.h,
21563: classes/_table.h, classes/_unknown.h, classes/image.C,
21564: classes/mail.C, classes/op.C, classes/random.C,
21565: include/pa_config_fixed.h, include/pa_config_includes.h,
21566: include/pa_hash.h, include/pa_version.h, main/Makefile.am,
21567: main/compile.y, main/pa_common.C, main/pa_exec.C,
21568: sql/Makefile.am, targets/cgi/Makefile.am, targets/cgi/parser3.C,
21569: types/Makefile.am, types/pa_vcookie.C, types/pa_vform.C:
21570: compile-1
21571:
21572: 2001-04-15 paf
21573:
21574: * src/classes/op.C: z
21575:
21576: * src/classes/table.C: table:empty +=process
21577:
21578: * src/types/pa_value.h: MethodParams !junction
21579:
21580: * src/: classes/_string.h, classes/double.C, classes/file.C,
21581: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
21582: classes/random.C, classes/response.C, classes/string.C,
21583: classes/table.C, classes/unknown.C, main/pa_request.C:
21584: MethodParams everywhere
21585:
21586: * src/: classes/op.C, include/pa_request.h, types/pa_value.h,
21587: types/pa_vmethod_frame.h: MethodParams in op.C
21588:
21589: 2001-04-12 paf
21590:
21591: * src/: classes/image.C, types/pa_vimage.h: image:font :text
21592:
21593: * src/: classes/_unknown.h, classes/unknown.C,
21594: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
21595: types/pa_vunknown.h: ^unknown:int[]=0 double[]=0
21596:
21597: * src/: classes/image.C, main/pa_hash.C: hash bug fixed
21598:
21599: * src/classes/image.C: image:gif now does not have params
21600:
21601: * src/classes/image.C:
21602: image:line/fill/rectangle/bar/replace/polygon/polybar
21603:
21604: * src/: classes/image.C, classes/op.C, main/execute.C,
21605: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
21606: for var now written not to r.wcontext, but to r.root cleared
21607: "entered_object" state
21608:
21609: 2001-04-11 paf
21610:
21611: * src/classes/image.C: image:create image:load
21612:
21613: * src/: classes/image.C, main/main.dsp: gd with mem write + image
21614: just compiled
21615:
21616: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
21617: todo: gif without file
21618:
21619: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
21620: started porting to Pooled descendant
21621:
21622: * src/: classes/image.C, main/execute.C, main/main.dsp,
21623: main/pa_request.C, types/pa_vcframe.h, types/pa_vcode_frame.h,
21624: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
21625: types/pa_vmframe.h: libimaging dead end: pil parses header in .py
21626:
21627: * src/: classes/image.C, include/pa_globals.h, main/main.dsp,
21628: main/pa_globals.C, types/pa_vimage.C, types/pa_vimage.h: gd dead
21629: end. switching to python imaging lib
21630:
21631: * src/main/main.dsp: gd+smtp made separate libs
21632:
21633: * src/: include/pa_globals.h, include/pa_string.h,
21634: main/pa_common.C, main/pa_request.C, main/untaint.C,
21635: types/pa_vfile.C, types/pa_vstring.C: fixed vstring:as_vfile
21636: length
21637:
21638: * src/: classes/mail.C, classes/op.C, targets/cgi/parser3.C,
21639: types/pa_value.h, types/pa_vfile.C, types/pa_vfile.h,
21640: types/pa_vform.C, types/pa_vstring.C, types/pa_vstring.h: forced
21641: UL_FILE_NAME of posted file name
21642:
21643: * src/: classes/image.C, main/pa_request.C, types/pa_vform.C: fixed
21644: post [broke when moved post read to core]
21645:
21646: 2001-04-10 paf
21647:
21648: * src/classes/image.C: image:html done
21649:
21650: * src/: classes/image.C, types/pa_vimage.C: jpg measure bugs fixed
21651:
21652: * src/classes/image.C: z
21653:
21654: * src/: classes/_image.h, classes/image.C, types/pa_vimage.C: image
21655: forgotten!
21656:
21657: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
21658: main/pa_request.C, main/pa_string.C, main/untaint.C,
21659: types/pa_vimage.h: image:measure -90
21660:
21661: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
21662: classes/_int.h, classes/_mail.h, classes/_op.h,
21663: classes/_random.h, classes/_response.h, classes/_string.h,
21664: classes/_table.h, classes/file.C, classes/mail.C,
21665: include/pa_common.h, include/pa_globals.h, main/execute.C,
21666: main/main.dsp, main/pa_common.C, main/pa_globals.C,
21667: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vfile.C,
21668: types/pa_vfile.h, types/pa_vhash.h, types/pa_vimage.h,
21669: types/pa_vresponse.h, types/pa_vstring.h: image:measure -100 just
21670: compiled
21671:
21672: * src/classes/mail.C: minor bug with unclear from/to
21673:
21674: * src/classes/mail.C: sendmail unix skipping defaults
21675:
21676: * src/: classes/mail.C, include/pa_common.h, main/pa_common.C:
21677: sendmail unix added defaults
21678:
21679: * src/classes/mail.C: unix sendmail compiled. todo:testing
21680:
21681: * src/: classes/mail.C, main/pa_globals.C: smtp some consts
21682:
21683: 2001-04-09 paf
21684:
21685: * src/: classes/file.C, include/pa_exec.h, include/pa_sapi.h,
21686: main/main.dsp, main/pa_exec.C, targets/cgi/parser3.C,
21687: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
21688: targets/isapi/parser3isapi.dsp: all targets exec
21689:
21690: * src/: include/pa_sapi.h, include/pa_string.h,
21691: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
21692: targets/isapi/parser3isapi.dsp: sapi exec dead end. badly parsed
21693: args in apache:util.script
21694:
21695: * src/include/pa_string.h: written but not tested exec with env for
21696: unix
21697:
21698: * src/: classes/file.C, main/main.dsp, main/pa_request.C,
21699: targets/cgi/parser3.C: exec win32 env
21700:
21701: * src/: classes/file.C, include/pa_hash.h, main/pa_hash.C: exec env
21702: 0
21703:
21704: * src/: classes/exec.C, classes/file.C, include/pa_globals.h,
21705: main/execute.C, main/main.dsp, main/pa_globals.C,
21706: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h,
21707: types/pa_vform.C, types/pa_vstring.C: exec4. todo env
21708:
21709: * src/: classes/exec.C, include/pa_common.h, main/pa_common.C,
21710: main/untaint.C: exec3. decided exec:cgi to move to file:cgi
21711:
21712: * src/: classes/_exec.h, main/execute.C, main/pa_globals.C,
21713: main/pa_request.C, types/pa_vcookie.C, types/pa_vfile.C: exec -2
21714:
21715: * src/: classes/_exec.h, classes/exec.C, include/pa_common.h,
21716: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
21717: main/pa_common.C, main/pa_request.C, main/pa_string.C,
21718: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
21719: targets/isapi/parser3isapi.C, types/pa_vform.C, types/pa_vform.h:
21720: exec class just compiled. moved post read to request core
21721:
21722: * src/: classes/_op.h, include/pa_dir.h, include/pa_globals.h,
21723: include/pa_sapi.h, main/main.dsp, main/pa_dir.C,
21724: main/pa_globals.C, targets/cgi/parser3.C,
21725: targets/cgi/parser3.dsp: problems with ^exec:cgi post data. they
21726: are already read by vform
21727:
21728: 2001-04-08 paf
21729:
21730: * src/: classes/file.C, classes/mail.C, classes/string.C,
21731: include/pa_request.h, include/pa_string.h, main/pa_request.C:
21732: uuencode. string<<
21733:
21734: 2001-04-07 paf
21735:
21736: * src/classes/mail.C: z
21737:
21738: * src/classes/mail.C: z
21739:
21740: * src/classes/mail.C: ^mail[$attach
21741:
21742: * src/classes/mail.C: ^attach dead end
21743:
21744: * src/: include/pa_socks.h, main/main.dsp, main/pa_socks.C,
21745: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
21746: targets/isapi/parser3isapi.C: mail:send 1
21747:
21748: * src/: classes/mail.C, main/pa_request.C: z
21749:
21750: * src/: classes/mail.C, include/pa_globals.h, include/pa_request.h,
21751: main/main.dsp, main/pa_globals.C, main/pa_request.C: smtp just
21752: compiled
21753:
21754: * src/classes/mail.C: +=
21755:
21756: * src/: classes/mail.C, include/pa_string.h: mail:send -1 text
21757: prepared
21758:
21759: * src/: classes/_mail.h, classes/mail.C, include/pa_common.h,
21760: include/pa_globals.h, include/pa_string.h, main/main.dsp,
21761: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
21762: main/untaint.C, types/pa_vcookie.C: mail:send -10 just compiled
21763:
21764: 2001-04-06 paf
21765:
21766: * src/: classes/table.C, include/pa_globals.h, main/pa_globals.C,
21767: main/pa_string.C: table:dir 1
21768:
21769: * src/: classes/table.C, include/pa_dir.h, main/execute.C,
21770: main/main.dsp, main/pa_dir.C: table:dir 0 [without regexp]
21771:
21772: * src/: classes/_op.h, classes/_root.h, classes/op.C,
21773: classes/root.C, include/pa_globals.h, include/pa_request.h,
21774: main/compile.C, main/execute.C, main/main.dsp, main/pa_globals.C,
21775: main/pa_request.C: renamed 'root' to 'op'
21776:
21777: * src/classes/: _op.h, op.C: renamed from 'root'
21778:
21779: * src/types/pa_valiased.C: another root inherititance skipped
21780:
21781: * src/main/: compile.C, compile.y, execute.C: operators are now not
21782: root methods of parent class. just 'ROOT' class
21783:
21784: * src/: classes/random.C, classes/table.C, main/pa_globals.C:
21785: @office
21786:
21787: * src/: main/pa_request.C, sql/pa_sql_driver.h: mysql limit
21788:
21789: 2001-04-05 paf
21790:
21791: * src/: main/execute.C, main/pa_request.C, main/pa_string.C,
21792: types/pa_value.h, types/pa_vmframe.h, types/pa_wcontext.h:
21793: constructor flag dropped at get_method_frame and remembered into
21794: method_frame
21795:
21796: * src/: classes/file.C, classes/root.C, classes/string.C,
21797: classes/table.C, main/pa_request.C: junction to code&expression
21798: in errors
21799:
21800: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
21801: main/pa_string.C, targets/isapi/parser3isapi.dsp:
21802: $LOCALE:ctype[Russian_Russia.1251]
21803:
21804: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
21805: include/pa_hash.h, include/pa_string.h, main/pa_hash.C,
21806: main/pa_table.C: hash now not thread-safe.
21807:
21808: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
21809: main/untaint.C: z
21810:
21811: * src/: classes/random.C, classes/root.C, classes/table.C,
21812: include/pa_sql_connection.h, include/pa_string.h, main/execute.C,
21813: main/pa_sql_driver_manager.C, main/pa_string.C, main/untaint.C,
21814: sql/pa_sql_driver.h, types/pa_vmframe.h, types/pa_wcontext.C,
21815: types/pa_wcontext.h: sql quote. string untaint UL_SQL
21816:
21817: * src/: classes/table.C, include/pa_sql_connection.h,
21818: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql ping
21819:
21820: * src/classes/table.C: select * from hren error contains statement
21821:
21822: * src/: classes/table.C, include/pa_sql_connection.h,
21823: include/pa_types.h, main/pa_sql_driver_manager.C, main/untaint.C,
21824: sql/pa_sql_driver.h, targets/cgi/parser3.dsp: mysql 0
21825:
21826: * src/: classes/root.C, include/pa_sql_connection.h,
21827: include/pa_sql_driver.h, main/main.dsp,
21828: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql driver
21829: services for conv memory & error reporting
21830:
21831: 2001-04-04 paf
21832:
21833: * src/doc/doxygen.cfg: z
21834:
21835: * src/include/pa_sql_driver.h: mysql connect
21836:
21837: * src/include/pa_sql_driver.h: mysql info
21838:
21839: * src/: classes/root.C, include/pa_sql_driver.h,
21840: include/pa_sql_driver_manager.h, main/main.dsp,
21841: main/pa_sql_driver_manager.C: more manager&connection&driver
21842:
21843: * src/sql/Makefile.am: forgot to add mysql client
21844:
21845: * src/: include/pa_sql_driver.h, include/pa_sql_driver_manager.h,
21846: main/pa_sql_driver_manager.C: connect&sql -1000 just compiled
21847: [forgot to add libltdl, added]
21848:
21849: * src/: Makefile.am, classes/root.C, classes/string.C,
21850: classes/table.C, include/pa_globals.h, include/pa_hash.h,
21851: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
21852: include/pa_string.h, include/pa_table.h, main/main.dsp,
21853: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
21854: main/pa_string.C, main/pa_table.C, main/untaint.C: connect&sql
21855: -1000 just compiled
21856:
21857: * src/: classes/random.C, classes/root.C, classes/table.C,
21858: include/pa_globals.h, include/pa_pool.h, include/pa_request.h,
21859: main/pa_request.C, types/pa_vclass.h: sql frame -10
21860:
21861: 2001-04-03 paf
21862:
21863: * src/types/pa_vform.C: z
21864:
21865: * src/: classes/string.C, types/pa_vform.C: string:match replace
21866: assigned lang
21867:
21868: * src/: classes/string.C, main/compile.y: grammar: fixed to allow
21869: {}[]< empty []
21870:
21871: * src/: classes/file.C, classes/string.C, classes/table.C,
21872: include/pa_string.h, main/pa_common.C, main/pa_string.C,
21873: main/untaint.C: string:match replace 2. string.cstr(forced lang)
21874:
21875: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
21876: string:match replace strange matches
21877:
21878: * src/classes/string.C: string:match replace 0
21879:
21880: * src/: classes/string.C, main/pa_string.C: string:match replace
21881: prepared 2
21882:
21883: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
21884: string:match replace prepared
21885:
21886: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
21887: string:match replace -11
21888:
21889: * src/: classes/string.C, include/pa_globals.h,
21890: include/pa_string.h, include/pa_threads.h, main/pa_globals.C,
21891: main/pa_string.C, targets/isapi/parser3isapi.dsp: string:match 0
21892:
21893: * src/: classes/string.C, include/pa_globals.h,
21894: include/pa_string.h, main/main.dsp, main/pa_globals.C,
21895: main/pa_string.C: string:match [search] -1 just compiled
21896:
21897: * src/types/pa_vstring.C: z
21898:
21899: * src/: classes/double.C, classes/file.C, classes/form.C,
21900: classes/int.C, classes/response.C, classes/root.C,
21901: classes/string.C, classes/table.C, include/pa_string.h,
21902: main/pa_string.C: string:match -10 [frame]
21903:
21904: * src/: classes/file.C, main/compile_tools.C, main/pa_common.C,
21905: main/pa_request.C: z
21906:
21907: * src/: main/pa_common.C, main/untaint.C, targets/cgi/parser3.C,
21908: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h:
21909: todo/tests
21910:
21911: * src/include/pa_common.h: z
21912:
21913: * src/: include/pa_globals.h, include/pa_hash.h, main/pa_globals.C,
21914: main/pa_request.C, targets/cgi/parser3.C,
21915: targets/isapi/parser3isapi.C, types/pa_vfile.C:
21916: content-disposition
21917:
21918: * src/: include/pa_common.h, include/pa_globals.h,
21919: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
21920: targets/isapi/parser3isapi.C, types/pa_value.h: main:post-process
21921:
21922: * src/: include/pa_common.h, include/pa_request.h,
21923: include/pa_sapi.h, main/main.dsp, main/pa_common.C,
21924: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
21925: types/pa_vfile.C, types/pa_vfile.h, types/pa_vstring.h: vfile in
21926: response:body
21927:
21928: * src/classes/table.C: table:append now uses string::split
21929:
21930: * src/classes/table.C: z
21931:
21932: * src/: classes/file.C, classes/root.C, classes/string.C,
21933: classes/table.C, doc/doxygen.cmd, doc/doxygen.txt,
21934: doc/generate.cmd, include/pa_array.h, include/pa_request.h,
21935: include/pa_string.h, main/execute.C, main/pa_string.C,
21936: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C:
21937: string::pos & cmp & piece bugs fixed. string::split new
21938: table:load separated from set table:set implemented with clean \n
21939: \t searches
21940:
21941: 2001-04-02 paf
21942:
21943: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
21944: types/pa_valiased.C, types/pa_valiased.h, types/pa_vdouble.h,
21945: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
21946: types/pa_vstring.h, types/pa_vtable.h: string::pos. about to use
21947: it in table:set/load
21948:
21949: * src/: classes/table.C, include/pa_array.h, include/pa_string.h,
21950: include/pa_table.h, main/execute.C, types/pa_value.h: table:join
21951:
21952: * src/classes/random.C: random:generate 1
21953:
21954: * src/: classes/_random.h, classes/random.C, include/pa_globals.h,
21955: main/main.dsp, main/pa_globals.C, main/pa_request.C,
21956: types/pa_value.h: random:generate
21957:
21958: 2001-03-30 paf
21959:
21960: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
21961: todo: table flip and append. string::pos
21962:
21963: * src/: classes/double.C, classes/file.C, classes/int.C,
21964: classes/response.C, classes/root.C, classes/string.C,
21965: classes/table.C, main/compile.y, main/execute.C,
21966: types/pa_value.h, types/pa_vstateless_class.C,
21967: types/pa_vstateless_class.h: static|dynamic|any method
21968: registration
21969:
21970: * src/: classes/file.C, classes/table.C, include/pa_table.h,
21971: main/pa_table.C, types/pa_vstring.h, types/pa_wwrapper.h:
21972: table:flip
21973:
21974: 2001-03-29 paf
21975:
21976: * src/classes/string.C: string:xsplit forgot that they must result
21977: in 1 row N column [not vice versa]
21978:
21979: * src/classes/string.C: z
21980:
21981: * src/classes/string.C: string: rsplit
21982:
21983: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
21984: string: lsplit
21985:
21986: * src/: classes/string.C, include/pa_string.h, main/execute.C,
21987: main/pa_array.C, main/pa_string.C, types/pa_vtable.h: string:
21988: lsplit -1
21989:
21990: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
21991: string: pos
21992:
21993: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
21994: string: pos -1
21995:
21996: * src/: classes/string.C, classes/table.C, include/pa_string.h,
21997: main/compile.y, main/pa_request.C, main/pa_string.C,
21998: main/untaint.C: string: left right mid
21999:
22000: * src/: classes/string.C, main/compile.y, main/compile_tools.C,
22001: main/compile_tools.h, main/main.dsp, types/pa_value.h,
22002: types/pa_vstring.h, types/pa_vunknown.h: empty params allowed. []
22003: and [;] are different now.
22004:
22005: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
22006: main/untaint.C: pool.request undone
22007:
22008: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
22009: main/untaint.C: pool.request
22010:
22011: 2001-03-28 paf
22012:
22013: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
22014: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
22015: types/pa_value.h, types/pa_vrequest.C, types/pa_vunknown.h:
22016: $request:browser [.type .version]; unknown.get_double now = 0.
22017:
22018: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
22019: include/pa_table.h, main/pa_globals.C, main/pa_request.C,
22020: main/pa_table.C, types/pa_vfile.C, types/pa_vfile.h,
22021: types/pa_vform.C: file:load autodetection of mime-type by
22022: user-file-name
22023:
22024: * src/: classes/file.C, main/execute.C, main/pa_common.C,
22025: main/untaint.C, targets/cgi/parser3.C, types/pa_vfile.C,
22026: types/pa_vfile.h, types/pa_vform.C: file:load 1. tainted
22027:
22028: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
22029: types/pa_vfile.C, types/pa_vfile.h: started file:load. wrong
22030: write. must be self.set
22031:
22032: * src/: classes/file.C, classes/root.C, classes/table.C,
22033: include/pa_table.h, main/pa_table.C: table:locate1, file:test
22034:
22035: * src/: classes/table.C, include/pa_array.h, include/pa_hash.h,
22036: include/pa_table.h, main/pa_array.C, main/pa_table.C,
22037: types/pa_vtable.h: table:locate just compiled
22038:
22039: 2001-03-27 paf
22040:
22041: * src/main/: execute.C, pa_common.C: fixed r/w context of
22042: code-params2, fixed ntfs hardlink slow dir update
22043:
22044: * src/: main/execute.C, types/pa_value.h, types/pa_vmframe.h,
22045: types/pa_wcontext.h: fixed r/w context of code-params
22046:
22047: * src/: classes/table.C, main/execute.C: about to change junction
22048: rcontext!!
22049:
22050: * src/: classes/double.C, classes/int.C, classes/root.C,
22051: classes/string.C, classes/table.C, main/compile_tools.C,
22052: main/execute.C, main/pa_request.C, main/untaint.C,
22053: types/pa_value.h, types/pa_vbool.h, types/pa_vcookie.C,
22054: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
22055: types/pa_vmframe.h, types/pa_vstring.h, types/pa_vtable.h,
22056: types/pa_vunknown.h: sort 0
22057:
22058: * src/types/: pa_valiased.C, pa_valiased.h, pa_vdouble.h,
22059: pa_vfile.h, pa_vint.h, pa_vresponse.h, pa_vstring.h, pa_vtable.h:
22060: renamed to are_static_calls_disabled
22061:
22062: * src/: classes/table.C, main/pa_common.C, main/pa_request.C,
22063: targets/cgi/parser3.C, types/pa_value.h, types/pa_vbool.h,
22064: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
22065: types/pa_vstring.h, types/pa_vunknown.h: continue on sort
22066:
22067: * src/main/compile.y: fixed minor bug in @mn[][] ...^{
22068:
22069: * src/: classes/table.C, include/pa_common.h, main/compile.y:
22070: started table:sort fixed minor bug in #...^{
22071:
22072: * src/: classes/table.C, include/pa_common.h, main/compile.y,
22073: main/execute.C, main/pa_common.C, main/pa_table.C: table:save
22074: decided to have as it were. stepped back. grammar: added 'in'
22075: 'is' 'lt'&co follow-space check
22076:
22077: 2001-03-26 paf
22078:
22079: * src/: classes/file.C, classes/root.C, classes/table.C,
22080: include/pa_common.h, include/pa_globals.h, include/pa_table.h,
22081: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
22082: main/pa_table.C: moved ::save to pa_table. disabled @auto
22083: invocation in ^process
22084:
22085: * src/main/compile.y: grammar: [] 0params [;] 2 params (was 0)
22086:
22087: * src/: classes/table.C, include/pa_array.h, include/pa_table.h,
22088: main/pa_array.C: table:record
22089:
22090: * src/: main/untaint.C, targets/cgi/parser3.C,
22091: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
22092: targets/isapi/pool_storage.h, types/pa_valiased.h,
22093: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.h,
22094: types/pa_vint.h, types/pa_vresponse.h, types/pa_vstring.h,
22095: types/pa_vtable.h: z
22096:
22097: * src/: include/pa_pool.h, main/execute.C, types/pa_valiased.C,
22098: types/pa_valiased.h, types/pa_value.h, types/pa_vdouble.h,
22099: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
22100: types/pa_vstring.h, types/pa_vtable.h: disabled $a(123)
22101: $b[$a.CLASS] ^b.inc[123] shit. allowed no checks in native
22102: method realisations on 'self' validity - they now can simply
22103: assume that 'self' is V{Proper} .
22104:
22105: 2001-03-25 paf
22106:
22107: * src/main/untaint.C: z
22108:
22109: * src/main/: pa_request.C, untaint.C: moved default typo-table to
22110: lowlevel - it initialization could be skipped if failed in @auto.
22111: so that exception report would use some table
22112:
22113: * src/main/pa_request.C: table empty lines ignored. system-default
22114: content type assigned in output:result [can fail in main:auto and
22115: skipped normal defaults extraction]
22116:
22117: * src/: include/pa_string.h, main/compile.y: #comment fixed minor
22118: bug
22119:
22120: * src/main/: pa_globals.C, untaint.C: html-typo - moved all
22121: processing to table [except preliminary \r\n \r \n replacements
22122: to "\n"]
22123:
22124: * src/: classes/table.C, main/untaint.C: html-typo - decided to
22125: move all the processing to table
22126:
22127: * src/: classes/table.C, include/pa_table.h, main/pa_globals.C,
22128: main/pa_table.C, main/untaint.C: returned table originating.
22129: useful for reporting typo table problems origin. think would be
22130: useful somewhere else
22131:
22132: * src/main/untaint.C: typo \r \r\n \n properly handled
22133:
22134: * src/: classes/table.C, include/pa_globals.h, include/pa_string.h,
22135: include/pa_table.h, main/compile.y, main/compile_tools.C,
22136: main/compile_tools.h, main/pa_globals.C, main/pa_request.C,
22137: main/pa_string.C, main/pa_table.C, main/untaint.C,
22138: types/pa_vcookie.h: typo & typo-default
22139:
22140: 2001-03-24 paf
22141:
22142: * src/main/pa_common.C: z
22143:
22144: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
22145: targets/cgi/parser3.C: html-typo 2
22146:
22147: * src/: doc/doxygen.cfg, doc/doxygen.txt, doc/generate.cmd,
22148: doc/view.cmd, include/pa_array.h, include/pa_globals.h,
22149: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
22150: main/execute.C, main/pa_array.C, main/pa_globals.C,
22151: main/pa_request.C, main/pa_string.C, main/untaint.C,
22152: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
22153: types/pa_value.h, types/pa_vtable.h: html-typo 0 html-typo 1.
22154: noticed double default content-type prob. run cgi.cmd tomorrow
22155: first html-typo sample. detected << problem: they become ltlt too
22156: fast
22157:
22158: * src/main/compile.y: z
22159:
22160: * src/main/: compile.y, compile_tools.h: #comment
22161:
22162: * src/: classes/file.C, classes/root.C, classes/table.C,
22163: include/pa_common.h, include/pa_request.h, main/compile.y,
22164: main/pa_common.C, main/pa_request.C, main/pa_string.C,
22165: targets/isapi/parser3isapi.C, types/pa_vfile.h: file_read
22166: stringified
22167:
22168: * src/types/pa_valiased.C: decided to String-ify file_read
22169:
22170: * src/targets/: cgi/parser3.C, isapi/nt_log_events.mc,
22171: isapi/parser3isapi.dsp: cgi: sapi::log
22172:
22173: * src/: include/pa_sapi.h, main/pa_common.C, main/pa_request.C,
22174: targets/cgi/parser3.C, targets/isapi/nt_log_events.mc,
22175: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp: nt
22176: error log experiments failed - cgi under iis got no access to
22177: log. registereventsource simply failed with 5(illegal call) code,
22178: while worked OK as standalone executable. isapi: used
22179: HSE_APPEND_LOG_PARAMETER feature
22180:
22181: * src/: include/pa_common.h, include/pa_globals.h,
22182: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
22183: targets/isapi/parser3isapi.C: fixed default content-type
22184: allocation storage
22185:
22186: * src/: include/pa_globals.h, include/pa_request.h,
22187: main/pa_globals.C, main/pa_request.C: z
22188:
22189: * src/: include/pa_array.h, include/pa_hash.h,
22190: include/pa_request.h, main/compile.y, main/pa_array.C,
22191: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
22192: types/pa_vcookie.C: cyclic uses ignored. defaulted default
22193: content-type
22194:
22195: * src/main/: compile.y, execute.C, main.dsp: @CLASS equals @BASE.
22196: sanity
22197:
22198: * src/: main/pa_globals.C, types/pa_vclass.C, types/pa_vclass.h,
22199: types/pa_vstateless_class.C, types/pa_vstateless_class.h: thrown
22200: away freeze mech. no danger now for you can't do
22201: ^request:process[@new-method[] body] trick anymore. still
22202: remains $some_instance.process[@new-method[] possibility] but
22203: would leave it as a feature. see index for sample
22204:
22205: * src/: include/pa_common.h, main/pa_common.C,
22206: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: auto.p
22207: monkey every target
22208:
22209: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
22210: targets/cgi/parser3.C, targets/isapi/pool_storage.h,
22211: types/pa_vform.C, types/pa_vform.h: auto.p monkey
22212:
22213: 2001-03-23 paf
22214:
22215: * src/: include/pa_pool.h, main/pa_request.C,
22216: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
22217: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
22218: targets/isapi/pool_storage.h: isapi: dumb pool storage
22219:
22220: * src/targets/isapi/pa_pool.C: decided to continue with extension
22221:
22222: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: isapi: think
22223: it would be better to rewrite as filter then to deal with pool
22224:
22225: * src/: main/main.dsp, targets/isapi/parser3isapi.C: isapi: docroot
22226: now like in cgi, not from APPL_PHYSICAL_PATH
22227:
22228: * src/: classes/root.C, classes/table.C, include/pa_common.h,
22229: include/pa_config_fixed.h, include/pa_config_includes.h,
22230: include/pa_string.h, include/pa_threads.h, include/pa_types.h,
22231: include/pa_version.h, main/compile.y, main/execute.C,
22232: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
22233: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
22234: main/untaint.C, targets/cgi/parser3.C,
22235: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vform.C:
22236: cgi: reinvent document_root and request_uri under iis. autoconf
22237: updated. introducing ap_config_includes
22238:
22239: * src/targets/cgi/parser3.C: cgi: reinvent document_root under iis
22240:
22241: * src/targets/cgi/parser3.C: cgi: only one pool now
22242:
22243: * src/: include/pa_globals.h, include/pa_sapi.h, main/main.dsp,
22244: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
22245: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
22246: types/pa_venv.h, types/pa_vform.C: sapi made object
22247:
22248: * src/: include/pa_globals.h, main/pa_request.C,
22249: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
22250: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
22251: types/pa_venv.h, types/pa_vform.C: all: sapi beauty
22252:
22253: * src/: main/pa_request.C, targets/cgi/parser3.C,
22254: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
22255: isapi minor env beauty
22256:
22257: * src/: main/pa_request.C, targets/cgi/parser3.C,
22258: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
22259: isapi document_root 0
22260:
22261: 2001-03-22 paf
22262:
22263: * src/targets/isapi/parser3isapi.C: isapi keep-alive
22264:
22265: * src/targets/: cgi/vform_fields_fill.C, cgi/vform_fields_fill.h,
22266: isapi/parser3isapi.C: z
22267:
22268: * src/: include/pa_pool.h, main/pa_request.C,
22269: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: isapi 1
22270:
22271: * src/targets/isapi/: KILL.EXE, PSTAT.EXE, istart.cmd, istop.cmd,
22272: kill.pl: isapi added utils
22273:
22274: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/parser3.C,
22275: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
22276: types/pa_vform.C: isapi 0
22277:
22278: * src/: include/pa_pool.h, targets/cgi/pa_pool.C,
22279: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
22280: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
22281: targets/isapi/parser3isapi.def, targets/isapi/parser3isapi.dsp:
22282: started isapi
22283:
22284: * src/: include/pa_globals.h, main/pa_common.C, main/pa_request.C:
22285: some comments
22286:
22287: * src/: include/pa_globals.h, include/pa_request.h,
22288: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
22289: targets/cgi/parser3.C, types/pa_vcookie.C: config of auto.p path:
22290: parser_root_auto_path parser_site_auto_path
22291:
22292: * src/types/pa_vcookie.C: cookie attr decoded
22293:
22294: 2001-03-21 paf
22295:
22296: * src/targets/cgi/parser3.C: z
22297:
22298: * src/include/pa_globals.h: post. todo: config of auto.p path
22299:
22300: * src/: include/pa_globals.h, targets/cgi/parser3.C,
22301: types/pa_venv.h: in cookie & env. todo:post
22302:
22303: * src/: Makefile.am, classes/Makefile.am, classes/file.C,
22304: classes/root.C, classes/table.C, include/pa_array.h,
22305: include/pa_common.h, include/pa_globals.h, include/pa_pool.h,
22306: include/pa_request.h, include/pa_string.h, main/Makefile.am,
22307: main/compile.y, main/execute.C, main/main.dsp, main/pa_common.C,
22308: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
22309: main/pa_table.C, main/untaint.C, targets/Makefile.am,
22310: targets/cgi/Makefile.am, targets/cgi/parser3.C,
22311: targets/cgi/parser3.dsp, types/Makefile.am, types/pa_vcookie.C,
22312: types/pa_vform.C, types/pa_vstring.h, types/pa_wwrapper.h:
22313: shifted apache branch on main trunc
22314:
22315: * src/: include/pa_common.h, include/pa_globals.h,
22316: include/pa_pool.h, include/pa_request.h, main/main.dsp,
22317: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.dsp,
22318: types/pa_vcookie.C, types/pa_vform.C, types/pa_vstring.h:
22319: starting mod_parser3
22320:
22321: * src/targets/cgi/parser3.C: starting mod_parser3
22322:
22323: 2001-03-20 paf
22324:
22325: * src/: main/pa_common.C, targets/cgi/Makefile.am,
22326: targets/cgi/parser3.C: automake compiled and works. todo:make
22327: win32 ifdefs work and add ifdef unistd
22328:
22329: * src/: classes/table.C, include/pa_common.h, include/pa_request.h,
22330: main/Makefile.am, main/pa_common.C, main/pa_request.C,
22331: main/pa_table.C, targets/cgi/Makefile.am, targets/cgi/parser3.C:
22332: z
22333:
22334: * src/: include/pa_request.h, main/Makefile.am, main/compile.y,
22335: main/execute.C, main/pa_common.C, types/Makefile.am: removing
22336: locking
22337:
22338: * src/: classes/Makefile.am, types/Makefile.am: z
22339:
22340: * src/: Makefile.am, classes/file.C, classes/root.C,
22341: classes/table.C, include/pa_array.h, include/pa_request.h,
22342: include/pa_string.h, main/Makefile.am, main/execute.C,
22343: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
22344: main/pa_string.C, main/untaint.C, targets/Makefile.am,
22345: targets/cgi/Makefile.am, targets/cgi/parser3.C,
22346: types/pa_vcookie.C, types/pa_wwrapper.h: String::UL_
22347:
22348: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
22349: main/pa_request.C, types/pa_vfile.h: ^table:save
22350:
22351: * src/: classes/file.C, classes/table.C, include/pa_array.h,
22352: include/pa_common.h, include/pa_request.h, include/pa_string.h,
22353: include/pa_table.h, include/pa_threads.h, main/pa_globals.C,
22354: main/untaint.C, types/pa_valiased.h, types/pa_value.h,
22355: types/pa_vform.h: z
22356:
22357: * src/include/pa_string.h: z
22358:
22359: * src/: classes/_request.h, classes/request.C, main/main.dsp,
22360: main/pa_globals.C, types/pa_value.h, types/pa_vform.h,
22361: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
22362: :Value
22363:
22364: * src/: classes/_request.h, classes/request.C, main/pa_globals.C,
22365: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
22366: :VStateless_object
22367:
22368: * src/: classes/_response.h, classes/response.C, main/pa_globals.C,
22369: types/pa_vform.h, types/pa_vresponse.h: VResponse moved to
22370: :VStateless_object
22371:
22372: * src/: main/main.dsp, targets/cgi/parser3.dsp,
22373: types/pa_valiased.C, types/pa_vform.h: commented VForm
22374:
22375: * src/: targets/cgi/pa_vform.C, types/pa_valiased.C,
22376: types/pa_valiased.h, types/pa_value.h,
22377: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
22378: types/pa_vstateless_object.h: moved common get_element part from
22379: stateless object&class into VAliased
22380:
22381: * src/: classes/_env.h, classes/_table.h, classes/env.C,
22382: classes/table.C, main/execute.C, main/main.dsp,
22383: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
22384: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.h: VEnv is
22385: now :Value
22386:
22387: * src/: classes/_cookie.h, classes/_table.h, classes/cookie.C,
22388: main/execute.C, main/main.dsp, main/pa_globals.C,
22389: types/pa_vcookie.C, types/pa_vcookie.h: VCookie is now :Value
22390:
22391: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstateless_object.h: vfile
22392: doxx
22393:
22394: * src/: classes/_file.h, classes/file.C, include/pa_types.h,
22395: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
22396: types/pa_valiased.h, types/pa_vfile.C, types/pa_vfile.h,
22397: types/pa_vstateless_class.h, types/pa_vstateless_object.h: \ to /
22398: and ^file:save
22399:
22400: 2001-03-19 paf
22401:
22402: * src/types/pa_vfile.C: z
22403:
22404: * src/: classes/file.C, classes/request.C, classes/table.C,
22405: include/pa_string.h, main/main.dsp, main/pa_pool.C,
22406: main/pa_request.C, main/untaint.C, types/pa_value.h,
22407: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C: file 1
22408:
22409: * src/: classes/table.C, include/pa_common.h, include/pa_globals.h,
22410: include/pa_string.h, include/pa_table.h, main/main.dsp,
22411: main/pa_common.C, main/pa_globals.C, types/pa_value.h,
22412: types/pa_vcookie.h, types/pa_venv.h, types/pa_vform.C,
22413: types/pa_vform.h, types/pa_vrequest.h, types/pa_vtable.h,
22414: classes/_file.h, classes/file.C, types/pa_vfile.C,
22415: types/pa_vfile.h: file class just compiled
22416:
22417: * src/: classes/table.C, include/pa_pool.h, include/pa_request.h,
22418: include/pa_table.h, include/pa_types.h, main/execute.C,
22419: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
22420: types/pa_vclass.h, types/pa_vform.C, types/pa_vstateless_class.h,
22421: types/pa_vstateless_object.h: ^table:set{default level: TABLE}
22422:
22423: * src/include/pa_pool.h: z
22424:
22425: * src/: include/pa_hash.h, include/pa_types.h, main/pa_common.C,
22426: main/pa_hash.C, main/pa_request.C, types/pa_vcookie.C: renamed
22427: Hash::Value to Val so to doxygen would finlly stop confusing
22428: those Value-s
22429:
22430: * src/: include/code.h, include/pa_array.h, include/pa_common.h,
22431: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
22432: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
22433: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
22434: include/pa_types.h, main/compile.C, main/compile.y,
22435: main/compile_tools.C, main/compile_tools.h, main/execute.C,
22436: main/pa_array.C, main/pa_common.C, main/pa_exception.C,
22437: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
22438: main/pa_request.C, main/pa_string.C, main/pa_table.C,
22439: main/untaint.C, types/pa_valiased.h, types/pa_value.h: z
22440:
22441: * src/types/: pa_valiased.h, pa_vbool.h: doc: Value and it's
22442: derivates somehow unlinked. don't know why yet
22443:
22444: * src/: include/code.h, include/pa_array.h, include/pa_pool.h,
22445: include/pa_string.h, include/pa_threads.h, main/compile.C,
22446: main/compile.y, main/compile_tools.C, main/compile_tools.h,
22447: main/execute.C, main/pa_array.C, main/pa_common.C,
22448: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
22449: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
22450: main/pa_table.C, main/untaint.C, types/pa_value.h: auto @brief
22451:
22452: * src/: classes/root.C, classes/table.C, main/pa_exception.C,
22453: main/pa_request.C, targets/cgi/parser3.C, types/pa_vbool.h,
22454: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdouble.h,
22455: types/pa_venv.h, types/pa_vform.h, types/pa_vint.h,
22456: types/pa_vrequest.h: doc: detected Value derivates prob
22457:
22458: * src/include/pa_globals.h: z
22459:
22460: * src/: classes/_request.h, classes/request.C, include/code.h,
22461: include/pa_array.h, include/pa_common.h, include/pa_exception.h,
22462: include/pa_globals.h, include/pa_hash.h, include/pa_pool.h,
22463: include/pa_request.h, include/pa_stack.h, include/pa_string.h,
22464: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
22465: main/execute.C, main/pa_pool.C, main/pa_request.C,
22466: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
22467: types/pa_value.h, types/pa_vform.C: doxygen include/, Value
22468:
22469: 2001-03-18 paf
22470:
22471: * src/: classes/cookie.C, types/pa_vcookie.C, types/pa_vcookie.h:
22472: cookie: allowed access to hash-assigned
22473:
22474: * src/targets/cgi/parser3.C: z
22475:
22476: * src/: classes/_cookie.h, classes/cookie.C, include/pa_common.h,
22477: include/pa_globals.h, include/pa_request.h, include/pa_string.h,
22478: include/pa_types.h, main/main.dsp, main/pa_common.C,
22479: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
22480: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
22481: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
22482: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
22483: types/pa_vunknown.h: cookie class
22484:
22485: * src/main/pa_request.C: zero length output allowed
22486:
22487: * src/: classes/response.C, main/pa_request.C, types/pa_value.h,
22488: types/pa_vhash.h, types/pa_vresponse.h: ^response:clear[]
22489:
22490: * src/: classes/root.C, main/pa_request.C: taint forgotten forced
22491: lang switch
22492:
22493: * src/: classes/root.C, include/pa_globals.h, include/pa_string.h,
22494: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
22495: types/pa_value.h, types/pa_vhash.h:
22496: $defautl[$content-type[$value[text/html] $charset[windows-1251]]
22497:
22498: * src/main/execute.C: z
22499:
22500: * src/: classes/root.C, main/pa_request.C, main/untaint.C,
22501: targets/cgi/parser3.C: taint[uri
22502:
22503: * src/: classes/request.C, classes/response.C, classes/root.C,
22504: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
22505: include/pa_string.h, main/pa_common.C, main/pa_globals.C,
22506: main/pa_request.C, targets/cgi/parser3.C: ^taint 0
22507:
22508: * src/: classes/root.C, classes/string.C, include/pa_string.h,
22509: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
22510: types/pa_vdouble.h, types/pa_vform.C, types/pa_vint.h,
22511: types/pa_vstateless_class.C: convinient string(pool, char *src,
22512: bool tainted) ctor
22513:
22514: * src/: include/pa_hash.h, include/pa_request.h,
22515: include/pa_string.h, main/pa_globals.C, main/pa_hash.C,
22516: main/pa_request.C, main/pa_string.C, main/untaint.C,
22517: targets/cgi/parser3.C: proper @exceptions params tainting
22518:
22519: * src/: include/pa_hash.h, main/pa_hash.C, targets/cgi/parser3.C:
22520: response fields to header
22521:
22522: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
22523: z
22524:
22525: * src/: classes/_response.h, classes/response.C,
22526: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
22527: main/compile.C, main/compile.y, main/execute.C, main/main.dsp,
22528: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
22529: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_value.h,
22530: types/pa_vhash.h, types/pa_vrequest.h, types/pa_vresponse.h:
22531: $response: 0 request::core exception rethrow
22532:
22533: 2001-03-16 paf
22534:
22535: * src/: main/execute.C, main/main.dsp, types/pa_value.h,
22536: types/pa_vrequest.h: native method' class call with less params
22537: then needed error reporting
22538:
22539: * src/: classes/_request.h, classes/request.C,
22540: include/pa_globals.h, include/pa_request.h, main/execute.C,
22541: main/main.dsp, main/pa_globals.C, main/pa_request.C,
22542: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vrequest.C,
22543: types/pa_vrequest.h: $request : query :uri
22544:
22545: * src/: include/pa_globals.h, main/execute.C, main/pa_globals.C,
22546: types/pa_value.h, types/pa_vcframe.h, types/pa_vmframe.h,
22547: types/pa_wcontext.h: $result
22548:
22549: * src/: main/execute.C, types/pa_vmframe.h: if(in "/news/")
22550:
22551: * src/: classes/double.C, include/code.h, main/compile.y,
22552: main/compile_tools.C, main/compile_tools.h, main/execute.C: ()
22553: and {} param wcontext conflict fixed by OP_EXPR_CODE__STORE_PARAM
22554:
22555: * src/: include/code.h, include/pa_hash.h, include/pa_request.h,
22556: main/compile.y, main/execute.C, types/pa_value.h,
22557: types/pa_vhash.h, types/pa_vstring.h, types/pa_vtable.h,
22558: types/pa_wcontext.C, types/pa_wcontext.h: see () and {} param
22559: wcontext conflict
22560:
22561: * src/: main/execute.C, types/pa_value.h,
22562: types/pa_vstateless_object.h, types/pa_vstring.h: disabled
22563: $string.field
22564:
22565: 2001-03-15 paf
22566:
22567: * src/main/pa_request.C: news sample
22568:
22569: * src/: main/compile.y, main/execute.C, main/pa_request.C,
22570: targets/cgi/parser3.C, types/pa_vstring.h: @exception
22571:
22572: * src/main/: compile.y, execute.C: z
22573:
22574: * src/: main/compile.y, main/pa_request.C, targets/cgi/parser3.C,
22575: types/pa_vstring.h: pre-pre-pre-beta cgi under win32 apache pre
22576: pre pre works
22577:
22578: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
22579: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vform.h: vform
22580: fillfields just compiled
22581:
22582: 2001-03-14 paf
22583:
22584: * src/: include/pa_request.h, main/pa_request.C,
22585: targets/cgi/parser3.C: z
22586:
22587: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
22588: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h,
22589: types/pa_vstring.h: limits -1
22590:
22591: * src/: include/pa_globals.h, include/pa_request.h,
22592: include/pa_types.h, main/main.dsp, main/pa_globals.C,
22593: main/pa_request.C, targets/cgi/parser3.C,
22594: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h:
22595: request_info -1
22596:
22597: * src/: include/pa_globals.h, main/pa_globals.C,
22598: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
22599: targets/cgi/vform_fields_fill.C, targets/cgi/vform_fields_fill.h:
22600: vform_fields_fill
22601:
22602: * src/targets/cgi/parser3.C: # if MSVC
22603:
22604: * src/: include/pa_common.h, include/pa_types.h, main/pa_request.C,
22605: targets/cgi/parser3.C: PATH_DELIMITER_CHAR
22606:
22607: * src/targets/cgi/parser3.C: z
22608:
22609: * src/: include/core.h, include/pa_globals.h, include/pa_pool.h,
22610: include/pa_string.h, include/pa_types.h, main/compile.y,
22611: main/core.C, main/main.dsp, main/pa_globals.C, main/pa_request.C,
22612: targets/cgi/pa_vform.C, targets/cgi/parser3.C,
22613: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vform.h,
22614: types/pa_vunknown.h: global handler, exceptions in parser3
22615:
22616: 2001-03-13 paf
22617:
22618: * src/: classes/form.C, main/compile.y, main/core.C,
22619: types/pa_value.h, types/pa_vclass.h, types/pa_venv.h,
22620: types/pa_vform.h, types/pa_vstateless_class.C,
22621: types/pa_vstateless_class.h: form:fields removed. use $form.CLASS
22622: instead
22623:
22624: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
22625: main/core.C, main/execute.C, main/main.dsp, main/pa_request.C,
22626: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vform.h:
22627: started cgi target
22628:
22629: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
22630: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C:
22631: before error show with parser
22632:
22633: * src/: classes/_form.h, classes/form.C, include/core.h,
22634: include/pa_request.h, main/core.C, main/pa_request.C,
22635: targets/cgi/parser3.C, targets/cgi/parser3.dsp: z
22636:
22637: * src/targets/cgi/: parser.dsp, parser3.dsp: z
22638:
22639: * src/targets/cgi/: Makefile.am, pa_pool.C, pa_vform.C, parser.dsp,
22640: parser3.C: renamed targets/ parser to cgi
22641:
22642: * src/: classes/double.C, classes/env.C, classes/int.C,
22643: classes/root.C, classes/string.C, classes/table.C,
22644: include/pa_request.h, types/pa_vhash.h: z
22645:
22646: * src/: classes/_env.h, classes/env.C, classes/root.C,
22647: include/core.h, include/pa_pool.h, include/pa_request.h,
22648: main/compile.C, main/compile.y, main/core.C, main/main.dsp,
22649: main/pa_common.C, main/pa_request.C, types/pa_value.h,
22650: types/pa_venv.h, types/pa_vstateless_class.h: started $form:
22651: [historical moment :)]
22652:
22653: * src/: include/code.h, include/pa_string.h, main/compile.y,
22654: main/execute.C, main/pa_string.C: 'value is type' expr operator
22655:
22656: * src/types/pa_venv.h: $ENV 1
22657:
22658: * src/main/execute.C: z
22659:
22660: * src/: main/execute.C, types/pa_value.h, types/pa_venv.h: for
22661: future methods of ENV constructor if
22662:
22663: * src/: include/pa_request.h, types/pa_venv.h: $ENV 0.1 stateless
22664: class
22665:
22666: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
22667: classes/_root.h, classes/_string.h, classes/_table.h,
22668: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
22669: classes/string.C, classes/table.C, include/pa_request.h,
22670: main/compile.C, main/compile_tools.h, main/core.C,
22671: main/execute.C, main/main.dsp, main/pa_request.C,
22672: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
22673: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
22674: types/pa_vobject.h, types/pa_vstateless_class.C,
22675: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
22676: types/pa_wcontext.h: $ENV: re 0, stateless classes
22677:
22678: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
22679: classes/_root.h, classes/_string.h, classes/_table.h,
22680: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
22681: classes/string.C, classes/table.C, include/pa_request.h,
22682: main/compile.C, main/compile_tools.h, main/core.C,
22683: main/execute.C, main/main.dsp, main/pa_request.C,
22684: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
22685: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
22686: types/pa_vobject.h, types/pa_vstateless_class.C,
22687: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
22688: types/pa_wcontext.h: $ENV: re 0, stateless classes
22689:
22690: * src/: include/pa_request.h, main/compile.C, main/execute.C,
22691: main/pa_request.C, types/pa_value.h, types/pa_vmframe.h: fixed
22692: yesterdays bad decision on execute_static_method
22693:
22694: * src/: classes/table.C, include/pa_types.h, main/pa_request.C: z
22695:
22696: * src/: classes/double.C, classes/int.C, classes/root.C,
22697: types/pa_vdouble.h, types/pa_vint.h: Int,Double dec mul div mod
22698:
22699: * src/main/pa_request.C: z
22700:
22701: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
22702: include/pa_pool.h: skipped_restructure_exceptions_dead_end
22703:
22704: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
22705: include/pa_pool.h, main/pa_request.C:
22706: restructure_exceptions_dead_end
22707:
22708: * src/: classes/root.C, main/compile.y: ^if required junctions.
22709: allowed ; inside {} to break params
22710:
22711: * src/classes/root.C: ^eval
22712:
22713: * src/: classes/_string.h, classes/double.C, classes/int.C,
22714: classes/string.C, main/execute.C, types/pa_wcontext.h: int doube
22715: string ^format
22716:
22717: * src/: main/execute.C, types/pa_wcontext.h: constructing flag not
22718: 'bad' but not 'enough'
22719:
22720: * src/: classes/double.C, classes/root.C, classes/table.C,
22721: include/pa_common.h, include/pa_types.h, main/compile.y,
22722: main/pa_common.C, main/pa_request.C, main/untaint.C,
22723: types/pa_vdouble.h, types/pa_vint.h, types/pa_vtable.h,
22724: types/pa_wwrapper.h: think constructing flag as is is bad
22725:
22726: * src/: classes/double.C, classes/int.C, classes/root.C,
22727: classes/string.C, classes/table.C, main/core.C, main/execute.C,
22728: types/pa_vint.h: ^for
22729:
22730: 2001-03-12 paf
22731:
22732: * src/classes/table.C: table ^empty
22733:
22734: * src/: classes/table.C, include/pa_table.h: table ^menu
22735:
22736: * src/: classes/root.C, classes/table.C, types/pa_vtable.h: table
22737: ^offset ^line ^count
22738:
22739: * src/classes/root.C: ^round() ^floor() ^ceiling()
22740: ^abs() ^sign()
22741:
22742: * src/classes/: root.C, table.C: ^use
22743:
22744: * src/: classes/root.C, classes/table.C, include/pa_request.h,
22745: main/compile.y, main/core.C, main/execute.C, types/pa_vclass.h,
22746: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
22747: ^while. switched off wcontext.constructing after write(value) or
22748: auto-vhash-constructing
22749:
22750: * src/: classes/root.C, classes/table.C, include/pa_request.h,
22751: main/pa_request.C: fail_if_junction_ helper func
22752:
22753: * src/: classes/root.C, classes/table.C, include/pa_common.h,
22754: include/pa_request.h, main/execute.C, main/main.dsp,
22755: main/pa_common.C, main/pa_request.C: ^process error point by
22756: actual method_name, not source. ^load
22757:
22758: * src/types/pa_vtable.h: table: no, better with string in cells...
22759:
22760: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C,
22761: classes/_table.h, classes/table.C, main/untaint.C: z
22762:
22763: * src/: classes/root.C, include/pa_common.h, include/pa_string.h,
22764: include/pa_table.h, main/core.C, main/execute.C,
22765: main/pa_common.C, main/pa_request.C, main/pa_table.C,
22766: types/pa_value.h: table:set 0
22767:
22768: * src/: classes/root.C, include/core.h, include/pa_array.h,
22769: include/pa_request.h, include/pa_table.h, main/core.C,
22770: main/main.dsp, main/pa_request.C, main/pa_table.C,
22771: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
22772: types/pa_vdouble.h, types/pa_vint.h, types/pa_vmframe.h,
22773: types/pa_vstring.h: freeze, ^table:create[] -1
22774:
22775: * src/: classes/root.C, types/pa_value.h: z
22776:
22777: * src/: classes/root.C, main/execute.C, types/pa_vclass.h: used
22778: get_method in couple places optimizing them
22779:
22780: * src/classes/root.C: z
22781:
22782: * src/: classes/root.C, types/pa_vclass.h: process temp main
22783: zeroing
22784:
22785: * src/: classes/double.C, classes/int.C, classes/root.C,
22786: classes/string.C, include/pa_common.h, include/pa_request.h,
22787: include/pa_string.h, include/pa_types.h, main/compile.C,
22788: main/compile.y, main/compile_tools.h, main/execute.C,
22789: main/pa_common.C, main/pa_request.C, types/pa_value.h,
22790: types/pa_vmframe.h: ^process. actual names to store param and
22791: check_actual_numbered_params for better place diagnostics
22792:
22793: * src/: classes/root.C, main/execute.C, main/main.dsp: setname for
22794: method-junctions bug fixed
22795:
22796: * src/types/: pa_vdouble.h, pa_vint.h, pa_vobject.h,
22797: pa_vstateless_object.h, pa_vstring.h: stateless_object
22798:
22799: 2001-03-11 paf
22800:
22801: * src/: main/main.dsp, types/pa_value.h, types/pa_vdouble.h,
22802: types/pa_vint.h, types/pa_vobject.h, types/pa_vstring.h: VString
22803: VDouble VInt base now VObject_base - without fields
22804:
22805: * src/: classes/root.C, include/core.h, main/core.C: z
22806:
22807: * src/: classes/double.C, classes/int.C, classes/root.C,
22808: classes/string.C, include/core.h, include/pa_hash.h,
22809: include/pa_pool.h, include/pa_request.h, include/pa_string.h,
22810: main/compile.C, main/core.C, main/pa_request.C: ^untaint 0
22811:
22812: * src/: classes/double.C, classes/int.C, classes/root.C,
22813: include/pa_request.h, main/execute.C: intercept_string
22814:
22815: * src/: classes/double.C, classes/int.C, classes/root.C,
22816: types/pa_vclass.C, types/pa_vclass.h: add_native_method helper
22817:
22818: * src/: classes/double.C, classes/int.C, include/pa_request.h:
22819: ^inc-s(expr)
22820:
22821: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
22822: classes/_root.h, classes/_string.h, classes/double.C,
22823: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
22824: include/code.h, include/core.h, include/pa_array.h,
22825: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
22826: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
22827: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
22828: include/pa_types.h, main/compile.C, main/compile.y,
22829: main/compile_tools.C, main/compile_tools.h, main/core.C,
22830: main/execute.C, main/pa_array.C, main/pa_common.C,
22831: main/pa_exception.C, main/pa_hash.C, main/pa_pool.C,
22832: main/pa_request.C, main/pa_string.C, main/pa_table.C,
22833: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
22834: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
22835: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
22836: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
22837: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
22838: types/pa_wcontext.h, types/pa_wwrapper.h: headers updated
22839:
22840: * src/: main/pa_request.C, types/pa_vhash.h: z
22841:
22842: * src/: include/core.h, include/pa_request.h, main/core.C,
22843: main/main.dsp, main/pa_request.C: renamed AUTO: to MAIN:
22844:
22845: * src/: include/pa_valiased.h, include/pa_value.h,
22846: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
22847: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
22848: include/pa_vjunction.h, include/pa_vmframe.h,
22849: include/pa_vobject.h, include/pa_vstring.h,
22850: include/pa_vunknown.h, include/pa_wcontext.h,
22851: include/pa_wwrapper.h, main/compile.y, main/core.C,
22852: main/main.dsp, main/pa_cframe.C, main/pa_request.C,
22853: main/pa_value.C, main/pa_vclass.C, main/pa_wcontext.C,
22854: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
22855: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
22856: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
22857: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
22858: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
22859: types/pa_wcontext.h, types/pa_wwrapper.h: splitted types from
22860: include/
22861:
22862: 2001-03-10 paf
22863:
22864: * src/: include/core.h, include/pa_request.h, main/core.C,
22865: main/pa_request.C: run+auto=run
22866:
22867: * src/: classes/root.C, include/pa_request.h: minor if junction bug
22868:
22869: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
22870: classes/_root.h, classes/_string.h, classes/double.C,
22871: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
22872: include/code.h, include/core.h, include/pa_array.h,
22873: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
22874: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
22875: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
22876: include/pa_types.h, include/pa_valiased.h, include/pa_value.h,
22877: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
22878: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
22879: include/pa_vjunction.h, include/pa_vmframe.h,
22880: include/pa_vobject.h, include/pa_vstring.h,
22881: include/pa_vunknown.h, include/pa_wcontext.h,
22882: include/pa_wwrapper.h, main/compile.C, main/compile.y,
22883: main/compile_tools.C, main/compile_tools.h, main/core.C,
22884: main/execute.C, main/pa_array.C, main/pa_cframe.C,
22885: main/pa_common.C, main/pa_exception.C, main/pa_hash.C,
22886: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
22887: main/pa_table.C, main/pa_value.C, main/pa_vclass.C,
22888: main/pa_wcontext.C: sources header
22889:
22890: * src/main/pa_request.C: auto..
22891:
22892: * src/: include/pa_request.h, main/compile.C, main/compile.y,
22893: main/pa_request.C: auto tree0
22894:
22895: * src/: include/core.h, include/pa_request.h, main/compile.y,
22896: main/core.C, main/pa_request.C: names to core.C
22897:
22898: * src/: include/core.h, include/pa_common.h, include/pa_pool.h,
22899: include/pa_request.h, main/core.C, main/execute.C,
22900: main/pa_common.C, main/pa_request.C: root auto.p loaded
22901:
22902: * src/: include/code.h, include/pa_request.h, include/pa_vint.h,
22903: include/pa_vjunction.h, include/pa_vstring.h, main/compile.y,
22904: main/compile_tools.C, main/compile_tools.h, main/execute.C:
22905: optimized from OP_STRING+OP_WRITE to OP_STRING__WRITE
22906:
22907: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
22908: @auto[] realised. auto.p scan togo
22909:
22910: * src/: include/pa_request.h, main/execute.C: autocalc
22911: code-junctions result now have names
22912:
22913: * src/: classes/double.C, classes/int.C, classes/root.C,
22914: classes/string.C, include/pa_request.h, include/pa_string.h,
22915: include/pa_wcontext.h, main/compile.y, main/execute.C,
22916: main/pa_string.C, main/pa_wcontext.C: tainting 0
22917:
22918: * src/classes/env.C: env:file/line
22919:
22920: * src/: include/core.h, include/pa_array.h, include/pa_hash.h,
22921: include/pa_request.h, include/pa_value.h, include/pa_vcframe.h,
22922: include/pa_vdouble.h, include/pa_vint.h, include/pa_vstring.h,
22923: include/pa_vunknown.h, include/pa_wcontext.h, main/compile.y,
22924: main/compile_tools.C, main/compile_tools.h, main/core.C,
22925: main/execute.C, main/main.dsp, main/pa_cframe.C,
22926: main/pa_request.C, main/pa_wcontext.C: const fight finished
22927:
22928: * src/include/pa_vclass.h: const fight to go
22929:
22930: * src/: classes/_env.h, classes/env.C, classes/root.C,
22931: include/pa_request.h, include/pa_vclass.h, main/core.C,
22932: main/main.dsp: env0
22933:
22934: * src/: classes/_double.h, classes/_int.h, classes/_root.h,
22935: classes/_string.h, classes/double.C, classes/int.C,
22936: classes/root.C, classes/string.C, include/pa_request.h,
22937: include/pa_string.h, include/pa_types.h, include/pa_vcframe.h,
22938: include/pa_wcontext.h, main/core.C, main/main.dsp,
22939: main/pa_cframe.C, main/pa_string.C, main/pa_vclass.C,
22940: main/pa_wcontext.C: ^lang prepare0
22941:
22942: 2001-03-09 paf
22943:
22944: * src/: include/pa_vmframe.h, main/compile.C, main/execute.C: expr
22945: construct proper naming
22946:
22947: * src/: classes/_double.h, classes/_int.h, classes/_string.h,
22948: classes/double.C, classes/int.C, classes/root.C,
22949: classes/string.C, include/code.h, include/pa_value.h,
22950: include/pa_vbool.h, include/pa_vdouble.h, include/pa_vint.h,
22951: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
22952: main/compile.y, main/compile_tools.C, main/core.C,
22953: main/execute.C, main/main.dsp: Int and Double classes with ^int[]
22954: and ^double[]. fixed expr type
22955:
22956: * src/: classes/root.C, include/pa_request.h, main/execute.C:
22957: ^string.length[]
22958:
22959: 2001-03-08 paf
22960:
22961: * src/include/pa_vmframe.h: fixed forgotten method_frame my check
22962:
22963: * src/: include/pa_vclass.h, include/pa_vstring.h,
22964: include/pa_wcontext.h, main/compile.y, main/core.C,
22965: main/execute.C, main/main.dsp: dead end: vstring can't be
22966: derivated from vobject
22967:
22968: * src/: include/pa_vclass.h, include/pa_vhash.h,
22969: include/pa_vobject.h, include/pa_vstring.h, main/main.dsp: z
22970:
22971: * src/include/: pa_vclass.h, pa_vhash.h, pa_vobject.h: removes some
22972: remained clone conseqs
22973:
22974: * src/main/pa_vclass.C: that were ok... [vclass were out of vcs]
22975:
22976: * src/main/pa_vclass.C: wow! vclass were out of vcs
22977:
22978: * src/: include/pa_bool.h, include/pa_double.h, include/pa_value.h,
22979: include/pa_vbool.h, include/pa_vclass.h, include/pa_vdouble.h,
22980: include/pa_vhash.h, include/pa_vjunction.h, include/pa_vmframe.h,
22981: include/pa_vobject.h, include/pa_vstring.h,
22982: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
22983: main/execute.C: withoud cloning. didn't need it actually, params
22984: got passed from out unnamed ewpool
22985:
22986: * src/: include/pa_vdouble.h, include/pa_vhash.h,
22987: include/pa_vjunction.h, include/pa_vobject.h,
22988: include/pa_vunknown.h, main/compile.y: cloning dead end
22989:
22990: * src/: include/pa_bool.h, include/pa_double.h,
22991: include/pa_valiased.h, include/pa_value.h, include/pa_vbool.h,
22992: include/pa_vclass.h, include/pa_vdouble.h, include/pa_vhash.h,
22993: include/pa_vjunction.h, include/pa_vmframe.h,
22994: include/pa_vobject.h, include/pa_vstring.h,
22995: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
22996: main/execute.C, main/main.dsp, main/pa_value.C: value.cloning so
22997: to give params proper names
22998:
22999: * src/main/pa_wcontext.C: z
23000:
23001: * src/: include/pa_vmframe.h, main/execute.C: added names to
23002: unknown values in get_element and unfilled params. removed wrong
23003: name change in get_element
23004:
23005: * src/main/execute.C: z
23006:
23007: * src/main/execute.C: fixed problems calling operators in
23008: constructors
23009:
23010: * src/: classes/root.C, include/pa_stack.h, main/execute.C:
23011: detected problems calling operators in constructors
23012:
23013: * src/: classes/root.C, include/pa_request.h, main/execute.C:
23014: autocalc def to string
23015:
23016: * src/: classes/root.C, include/pa_request.h, include/pa_value.h,
23017: include/pa_vbool.h, include/pa_wwrapper.h, main/execute.C: ^if 0
23018:
23019: * src/classes/root.C: added root.c
23020:
23021: * src/: include/pa_request.h, include/pa_value.h,
23022: include/pa_vcframe.h, include/pa_vmframe.h,
23023: include/pa_wcontext.h, main/compile.C, main/compile.y,
23024: main/core.C, main/execute.C, main/pa_cframe.C,
23025: main/pa_wcontext.C: 'if' just compiled
23026:
23027: * src/: include/pa_vbool.h, include/pa_vdouble.h,
23028: include/pa_vjunction.h, include/pa_vmframe.h,
23029: include/pa_vstring.h, include/pa_wcontext.h, main/execute.C,
23030: main/pa_wcontext.C: z
23031:
23032: * src/: include/pa_value.h, include/pa_vmframe.h, main/compile.y,
23033: main/core.C, main/execute.C, main/main.dsp: z. detected probs
23034: with parameter names in operator methods
23035:
23036: * src/main/compile.y: minor renamings in .y
23037:
23038: * src/: include/pa_request.h, main/compile.C, main/compile.y,
23039: main/core.C, main/main.dsp: introducing ROOT_CLASS. it's default
23040: @BASE. changed 'RUN' assignment mech
23041:
23042: * src/main/execute.C: z
23043:
23044: * src/: include/code.h, main/compile.y, main/compile_tools.C,
23045: main/compile_tools.h, main/execute.C: made class: dynamic, not
23046: static. so to enable runtime ^use
23047:
23048: * src/main/compile.y: minor grammar bug with OP_CODE__STORE_PARAM
23049:
23050: * src/: include/code.h, main/compile.y, main/compile_tools.C,
23051: main/execute.C: joined 2 into one OP_CODE__STORE_PARAM
23052:
23053: * src/main/execute.C: root root in code-junction
23054:
23055: 2001-03-07 paf
23056:
23057: * src/include/: pa_value.h, pa_vclass.h, pa_vhash.h, pa_vmframe.h,
23058: pa_vobject.h, pa_wwrapper.h: const in Value.get_element
23059:
23060: * src/: include/pa_stack.h, include/pa_value.h,
23061: include/pa_vclass.h, include/pa_vhash.h, include/pa_vmframe.h,
23062: include/pa_vobject.h, include/pa_wwrapper.h, main/execute.C:
23063: fixed rwcontext of {} params up
23064:
23065: * src/main/: compile.y, compile_tools.h: ^func(params)
23066:
23067: * src/main/compile.y: .y priorities syntax shaped up a bit
23068:
23069: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vhash.h,
23070: include/pa_vunknown.h, main/compile.y, main/execute.C,
23071: main/pa_hash.C: expr def in -f
23072:
23073: * src/main/: compile.y, execute.C: expr calls
23074:
23075: * src/main/: compile.y, execute.C, pa_string.C: bug in string.cmp
23076: fixed
23077:
23078: * src/main/compile.y: expr quoted code
23079:
23080: * src/main/: compile.y, execute.C: expr whitespace solved. added ""
23081: support0
23082:
23083: * src/main/compile.y: expr string comparisons 0
23084:
23085: * src/: include/pa_string.h, main/compile.y, main/execute.C,
23086: main/pa_string.C: just compiled lt&co
23087:
23088: * src/main/execute.C: ^var.menu{$field} problem detected. that
23089: $field not a $var.field
23090:
23091: 2001-03-06 paf
23092:
23093: * src/main/compile.y: .y expr visible-shorter
23094:
23095: * src/: include/code.h, main/compile.y, main/execute.C: 1 problems
23096: with skipping whitespace in yylex fixed 2 xors: # bitwise ##
23097: logical
23098:
23099: * src/: include/pa_vstring.h, main/compile.y: problems with
23100: skipping whitespace in yylex
23101:
23102: * src/include/pa_vbool.h: forgot this
23103:
23104: * src/: include/code.h, main/compile.y, main/execute.C: without
23105: string ops in expressions 0
23106:
23107: * src/: include/pa_value.h, include/pa_vdouble.h,
23108: include/pa_vstring.h, include/pa_vunknown.h, main/compile.y,
23109: main/execute.C, main/main.dsp: !~
23110:
23111: * src/: include/pa_vcframe.h, include/pa_vclass.h,
23112: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vjunction.h,
23113: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
23114: include/pa_vunknown.h, include/pa_wcontext.h,
23115: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
23116: main/compile_tools.h, main/execute.C: +-*/
23117:
23118: * src/: include/pa_vdouble.h, main/compile.y, main/compile_tools.C,
23119: main/compile_tools.h: grammar-1.1 $a(z) $a=0
23120:
23121: * src/: include/pa_value.h, include/pa_vdouble.h, main/compile.y,
23122: main/execute.C: expr grammar-1 2*2=4.000000 :)
23123:
23124: * src/main/compile.y: expr grammar-1
23125:
23126: * src/main/compile.y: expr lexx1
23127:
23128: * src/main/: compile.y, execute.C, main.dsp: z
23129:
23130: * src/: include/code.h, include/pa_valiased.h, include/pa_value.h,
23131: include/pa_vdouble.h, include/pa_vstring.h, main/compile.y,
23132: main/execute.C: expr lex0 exec-1
23133:
23134: * src/: include/code.h, main/compile.y, main/compile_tools.h: g
23135:
23136: 2001-02-26 paf
23137:
23138: * src/main/compile.y: max_string in yyerror bug fix
23139:
23140: 2001-02-25 paf
23141:
23142: * src/: include/pa_value.h, include/pa_vmframe.h,
23143: include/pa_wcontext.h, main/execute.C: VAliased3
23144:
23145: * src/include/: pa_value.h, pa_vmframe.h: VAliased2
23146:
23147: * src/main/execute.C: VAliased1
23148:
23149: * src/: include/pa_request.h, include/pa_value.h,
23150: include/pa_vmframe.h, include/pa_wcontext.h, main/execute.C:
23151: VAliased0
23152:
23153: * src/: include/pa_pool.h, include/pa_request.h,
23154: include/pa_value.h, include/pa_vclass.h, include/pa_vmframe.h,
23155: include/pa_vobject.h, main/core.C, main/execute.C, main/main.dsp:
23156: VAliased just compiled
23157:
23158: * src/: include/pa_pool.h, include/pa_value.h, include/pa_vclass.h,
23159: include/pa_vobject.h, main/execute.C: alias dead end
23160:
23161: * src/: include/pa_value.h, include/pa_vclass.h,
23162: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
23163: main/main.dsp: no not get fields into interm VFielded class.
23164: fields & staticfields 1
23165:
23166: * src/: include/pa_vcframe.h, include/pa_vmframe.h,
23167: include/pa_vobject.h, include/pa_wcontext.h,
23168: include/pa_wwrapper.h, main/core.C, main/execute.C,
23169: main/main.dsp: would now get fields into interm VFielded class
23170:
23171: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
23172: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
23173: include/pa_wcontext.h, main/compile.y, main/core.C,
23174: main/execute.C, main/main.dsp, main/pa_hash.C, main/pa_value.C,
23175: main/pa_wcontext.C: virtuals2
23176:
23177: * src/main/compile.y: : 1
23178:
23179: * src/main/compile.y: rethought to $class:static.field.subfield
23180:
23181: * src/: include/pa_vclass.h, main/compile.y, main/execute.C:
23182: $class:element
23183:
23184: * src/: include/pa_value.h, include/pa_vmframe.h,
23185: include/pa_wwrapper.h, main/compile.y, main/execute.C,
23186: main/pa_wcontext.C: before execute class calls rewrite
23187:
23188: * src/: include/pa_request.h, main/compile.C, main/core.C: default
23189: name RUN, also alias
23190:
23191: * src/main/compile.y: escaping bug
23192:
23193: * src/: include/pa_request.h, include/pa_value.h,
23194: include/pa_vobject.h, main/compile.y, main/compile_tools.h,
23195: main/core.C, main/execute.C, main/pa_common.C: vobject1
23196:
23197: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
23198: include/pa_vmframe.h, include/pa_vobject.h,
23199: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
23200: main/compile_tools.h, main/execute.C: ^class:method() just
23201: compiled
23202:
23203: 2001-02-24 paf
23204:
23205: * src/main/main.dsp: no bison -d
23206:
23207: * src/main/: compile.y, compile_tools.h: use0 line no on 'undef
23208: class' err msg wrong
23209:
23210: * src/main/compile.y: z
23211:
23212: * src/main/: compile.y, core.C: yylex need some @special lines adj
23213:
23214: * src/: include/pa_request.h, include/pa_vclass.h, main/compile.C,
23215: main/compile.y, main/compile_tools.h, main/core.C: modules0
23216:
23217: * src/: include/pa_vclass.h, main/core.C: z
23218:
23219: * src/: include/pa_value.h, include/pa_vclass.h,
23220: include/pa_vobject.h, main/main.dsp: vobject00
23221:
23222: * src/main/pa_array.C: minor bug in expanding very small arrays.
23223: 60% from 1 were 0
23224:
23225: * src/: include/pa_value.h, include/pa_wcontext.h,
23226: include/pa_wwrapper.h, main/execute.C, main/pa_value.C: it works
23227: as bad as you've named it: wcontext.value() was not a perfect
23228: idea
23229:
23230: * src/main/execute.C: codeframe1
23231:
23232: * src/: include/pa_value.h, include/pa_vcframe.h,
23233: include/pa_vclass.h, include/pa_vframe.h, include/pa_vhash.h,
23234: include/pa_vjunction.h, include/pa_vmframe.h,
23235: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
23236: main/main.dsp, main/pa_cframe.C, main/pa_wcontext.C: codeframe
23237: just compiled
23238:
23239: * src/: include/pa_vframe.h, main/compile.y: found junction
23240: ideology @: ^x{$a()) must construct current wcontext element, so
23241: smart wcontext handling needed
23242:
23243: * src/main/compile.y: fixed grammar bugs in constructor/params
23244: klinch
23245:
23246: * src/main/: compile.y, execute.C: fixed empty constructor
23247: optimized empty case. failed on calls - produced empty string
23248: param
23249:
23250: * src/main/compile.y: fixed last \n macrotemplate strip bug
23251:
23252: * src/: include/code.h, include/pa_request.h, include/pa_value.h,
23253: include/pa_vclass.h, include/pa_vframe.h, main/compile.y,
23254: main/compile_tools.C, main/compile_tools.h, main/core.C,
23255: main/execute.C: code junctions0. something wrong with last \n
23256: macrotemplate strip
23257:
23258: * src/: include/pa_value.h, main/compile.C, main/core.C,
23259: main/pa_value.C: minor error reporting format beautifyings
23260:
23261: * src/: include/pa_value.h, include/pa_vclass.h,
23262: include/pa_vframe.h, main/core.C, main/execute.C,
23263: main/pa_value.C: get_method RIP. junctions everywhere. call with
23264: junctions0
23265:
23266: 2001-02-23 paf
23267:
23268: * src/include/: pa_value.h, pa_vclass.h, pa_vframe.h,
23269: pa_wwrapper.h: lara came, can't work, sorry :(
23270:
23271: * src/main/: compile.y, execute.C, main.dsp: rethought some. before
23272: junction
23273:
23274: * src/: include/pa_vframe.h, include/pa_vunknown.h,
23275: include/pa_wcontext.h, include/pa_wwrapper.h, main/core.C,
23276: main/execute.C, main/main.dsp, main/pa_value.C: call0
23277:
23278: * src/: include/pa_hash.h, include/pa_value.h,
23279: include/pa_wcontext.h, main/core.C, main/execute.C,
23280: main/main.dsp, main/pa_hash.C: started call. store param, vframe
23281: done
23282:
23283: * src/include/pa_wcontext.h: z
23284:
23285: * src/main/: compile.y, compile_tools.C, compile_tools.h: fixed
23286: wrong grammar in complex constructor case
23287:
23288: * src/main/: compile.y, execute.C: empty constructor bug fixed
23289:
23290: * src/main/execute.C: with result rwpool
23291:
23292: * src/: include/pa_value.h, main/core.C, main/execute.C,
23293: main/main.dsp: value named
23294:
23295: * src/: include/pa_value.h, include/pa_vstring.h, main/execute.C:
23296: strign 2 value in 2 places in execute
23297:
23298: * src/: include/pa_value.h, include/pa_wcontext.h, main/compile.y,
23299: main/execute.C, main/main.dsp, main/pa_array.C: auto VHash on
23300: wcontext.put_element when wcontext fvalue==0
23301:
23302: 2001-02-22 paf
23303:
23304: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
23305: include/pa_vhash.h, include/pa_vstring.h, include/pa_wcontext.h,
23306: main/execute.C, main/main.dsp: auto VHash in pa.th.cre.at.e
23307:
23308: * src/: include/pa_wcontext.h, main/compile.y, main/execute.C:
23309: erroreos checkout
23310:
23311: * src/: include/pa_request.h, main/compile.y: $self.put(val)
23312:
23313: * src/: include/pa_array.h, main/compile.y, main/compile_tools.C,
23314: main/compile_tools.h, main/pa_array.C: $self.get
23315:
23316: * src/main/: compile.C, compile.y, compile_tools.C: z
23317:
23318: * src/main/compile.y: $: wasn't finished - $:sdf(sdf) troubled a
23319: bit. finished now.
23320:
23321: * src/main/compile.y: $: finished
23322:
23323: * src/main/: compile.C, compile.y, execute.C: started : with $a.$:f
23324:
23325: * src/: include/code.h, main/compile_tools.C, main/compile_tools.h,
23326: main/execute.C: OP_STRING better then some xxx _VALUE
23327:
23328: * src/: include/code.h, include/pa_vstring.h, main/compile.y,
23329: main/compile_tools.C, main/compile_tools.h, main/execute.C:
23330: string to vstring it .y all
23331:
23332: * src/: include/pa_request.h, include/pa_stack.h,
23333: include/pa_wcontext.h, main/execute.C: z about to vstring it .y
23334: all
23335:
23336: * src/main/: compile.C, core.C, execute.C, pa_string.C: more
23337: precise parse error line:col
23338:
23339: * src/: include/pa_pool.h, include/pa_vclass.h, main/core.C,
23340: main/pa_hash.C, main/pa_pool.C: TRY...
23341:
23342: * src/: include/pa_exception.h, include/pa_pool.h,
23343: include/pa_request.h, include/pa_value.h, include/pa_wcontext.h,
23344: main/compile.C, main/compile.y, main/compile_tools.C,
23345: main/core.C, main/pa_array.C, main/pa_exception.C,
23346: main/pa_hash.C, main/pa_pool.C, main/pa_string.C,
23347: main/pa_table.C: removed exception from request
23348:
23349: * src/: include/pa_vstring.h, main/compile.C, main/core.C: added
23350: some forgotten
23351:
23352: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
23353: include/pa_wcontext.h, main/compile.y, main/compile_tools.C,
23354: main/compile_tools.h, main/execute.C, main/main.dsp: iiieeyys!
23355: get/put simple vars to VClass works0
23356:
23357: * src/: include/pa_array.h, include/pa_wcontext.h,
23358: main/pa_string.C: in process, but found that exceptions are too
23359: global
23360:
23361: * src/: include/code.h, include/pa_string.h, include/pa_value.h,
23362: include/pa_vclass.h, include/pa_wcontext.h, main/compile.y,
23363: main/execute.C, main/pa_string.C: write_value write_string 0 it
23364: seems wcontext must write strings regardles of fvalue!=0
23365:
23366: 2001-02-21 paf
23367:
23368: * src/main/execute.C: tired :)
23369:
23370: * src/main/: compile.C, compile.y, execute.C: store0
23371:
23372: * src/: include/compile.h, include/execute.h, include/pa_array.h,
23373: include/pa_request.h, include/pa_stack.h, include/pa_vclass.h,
23374: include/pa_wcontext.h, main/compile.C, main/compile.y,
23375: main/execute.C, main/main.dsp, main/pa_array.C,
23376: main/pa_request.C: get put -1 [just compiled]
23377:
23378: * src/: include/core.h, include/pa_context.h, include/pa_request.h,
23379: include/pa_vclass.h, include/pa_wcontext.h, main/core.C,
23380: main/main.dsp, main/pa_request.C: request core methods0
23381:
23382: * src/: include/compile.h, include/pa_array.h, main/compile.C,
23383: main/compile.y, main/execute.C: MAIN_METHOD_NAME ready to write
23384: execute
23385:
23386: * src/: include/pa_exception.h, include/pa_value.h, main/compile.C,
23387: main/compile.y, main/compile_tools.C, main/compile_tools.h: .y
23388: methods and one_big_piece. now compile returns array<method*>
23389:
23390: * src/main/compile.y: more straightforward yylex[end]
23391:
23392: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
23393: string.operator==(char*)
23394:
23395: * src/: include/execute.h, include/pa_array.h, include/pa_value.h,
23396: main/execute.C, main/pa_array.C: after array.const get wonders
23397:
23398: * src/include/: compile.h, pa_context.h, pa_hash.h, pa_request.h,
23399: pa_string.h, pa_value.h: struck with const array.gets
23400:
23401: * src/main/: execute.C: z
23402:
23403: * src/main/: compile.y, execute.C: z
23404:
23405: * src/main/: compile.C, compile.y, compile_tools.h: error
23406: processing in eval & yyerror so it wouldn't cause memleaks.
23407:
23408: * src/main/: compile.C, compile.y: failed to add absolute precies
23409: parse error positions. leaving RIGHTMOST position as
23410: @file[line:col]
23411:
23412: * src/: include/compile.h, main/compile.C, main/compile.y,
23413: main/compile_tools.h: line numbers needed. would add them to .y
23414: now internally. externally it's not as precise as needed
23415:
23416: * src/: include/code.h, include/pa_types.h, main/compile.C,
23417: main/compile.y, main/compile_tools.C, main/compile_tools.h,
23418: main/execute.C, main/main.dsp: .y to c++ hierarchy output fix.
23419: compiler works ok
23420:
23421: 2001-02-20 paf
23422:
23423: * src/main/: compile.C, compile.y, compile_tools.C,
23424: compile_tools.h, execute.C, main.dsp: nestage probs, eof yylex
23425: not perfect
23426:
23427: * src/: include/code.h, include/compile.h, include/execute.h,
23428: include/pa_array.h, include/pa_common.h, include/pa_pool.h,
23429: include/pa_string.h, include/pa_table.h, include/pa_types.h,
23430: main/compile.C, main/compile.y, main/compile_tools.C,
23431: main/compile_tools.h, main/core.C, main/execute.C, main/main.dsp,
23432: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
23433: main/pa_string.C, main/pa_table.C: bison[yacc] first time
23434: compiled. execute=dump for now
23435:
23436: * src/main/core.C: core rewrite using yacc investigations now will
23437: be compile[yacc]/execute[opcodes]
23438:
23439: 2001-02-15 paf
23440:
23441: * src/: include/pa_value.h, main/core.C: maybe a-la yacc those ifs
23442: rewrite as turing machine? for it seems it would be it's too many
23443: ifs with this syntax now
23444:
23445: 2001-02-14 paf
23446:
23447: * src/main/core.C: get_params 1
23448:
23449: * src/main/core.C: get_params figured ^menu[UNEVALUATED unthinked
23450: :( ]
23451:
23452: * src/main/core.C: varios breaks
23453:
23454: * src/main/core.C: get names 3
23455:
23456: * src/main/core.C: get names 2
23457:
23458: * src/main/core.C: get names 1
23459:
23460: * src/: include/pa_string.h, main/core.C, main/pa_string.C: get
23461: names 0
23462:
23463: * src/: include/pa_value.h, main/core.C, main/pa_string.C: process
23464: text repassing2 operator static vars
23465:
23466: * src/: include/pa_context.h, include/pa_string.h, main/core.C,
23467: main/pa_string.C: process text repassing
23468:
23469: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
23470: module:calls changes
23471:
23472: 2001-02-13 paf
23473:
23474: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
23475: ^class:calls[] started
23476:
23477: * src/: include/pa_value.h, main/core.C: z
23478:
23479: * src/main/core.C: operators : and self. prefixes
23480:
23481: * src/main/core.C: z
23482:
23483: * src/: include/pa_string.h, main/pa_string.C: String_iterator
23484: tested
23485:
23486: * src/: include/pa_string.h, main/pa_string.C: String_iterator
23487: optimized
23488:
23489: * src/main/pa_string.C: String_iterator::skip_to optimized a bit.
23490: would change privates to better support optimization
23491:
23492: * src/: include/pa_string.h, main/pa_string.C:
23493: String_iterator::skip_to todo:optimize
23494:
23495: 2001-02-12 paf
23496:
23497: * src/: include/pa_string.h, main/core.C, main/pa_string.C: started
23498: String_iterator
23499:
23500: * src/: include/pa_context.h, include/pa_value.h, main/core.C: some
23501: comments
23502:
23503: * src/: include/pa_context.h, include/pa_value.h, main/core.C: get
23504: self/methodref joined
23505:
23506: 2001-02-11 paf
23507:
23508: * src/: include/pa_context.h, include/pa_value.h, main/core.C,
23509: main/main.dsp: core started. core.C, context&value .h
23510:
23511: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
23512: include/pa_string.h, main/main.dsp, main/pa_array.C,
23513: main/pa_hash.C, main/pa_pool.C, main/pa_string.C: :pooled
23514:
23515: 2001-01-30 paf
23516:
23517: * src/: Makefile.am, main/Makefile.am, targets/Makefile.am: .am
23518: comments
23519:
23520: * src/: include/pa_pool.h, main/Makefile.am, main/main.dsp,
23521: main/pa_pool.C: moved pa_pool.C to be target specific
23522:
23523: * src/: include/pa_exception.h, include/pa_pool.h,
23524: include/pa_table.h, main/pa_exception.C, main/pa_table.C: minor *
23525: to & changes
23526:
23527: * src/: include/pa_exception.h, include/pa_pool.h,
23528: include/pa_request.h, include/pa_table.h, main/pa_array.C,
23529: main/pa_exception.C, main/pa_pool.C, main/pa_table.C: error
23530: re-associated. that's much better even removed 'die' necessety
23531:
23532: * src/: include/pa_error.h, include/pa_exception.h,
23533: include/pa_pool.h, include/pa_request.h, main/main.dsp,
23534: main/pa_error.C, main/pa_exception.C, main/pa_pool.C,
23535: targets/Makefile.am: lowered targets/parser into subdir, added
23536: parser_Pool(Pool) failed to add. would think..
23537:
23538: * src/: include/pa_error.h, include/pa_hash.h, include/pa_string.h,
23539: include/pa_table.h, main/pa_error.C, main/pa_hash.C,
23540: main/pa_string.C, main/pa_table.C: Table more like C++ style
23541: hence lots of 'const'
23542:
23543: * src/: include/pa_error.h, include/pa_request.h,
23544: include/pa_string.h, include/pa_table.h, main/pa_error.C,
23545: main/pa_table.C: Error fixed
23546:
23547: 2001-01-29 paf
23548:
23549: * src/: include/pa_array.h, include/pa_common.h,
23550: include/pa_error.h, include/pa_hash.h, include/pa_pool.h,
23551: include/pa_request.h, include/pa_string.h, include/pa_table.h,
23552: main/Makefile.am, main/pa_array.C, main/pa_common.C,
23553: main/pa_error.C, main/pa_hash.C, main/pa_table.C: added forgotten
23554:
23555: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
23556: include/pa_string.h, include/pa_table.h, include/pa_types.h,
23557: main/Makefile.am, main/main.dsp, main/pa_array.C, main/pa_hash.C,
23558: main/pa_string.C, main/pa_table.C: Request Error Table
23559:
23560: * src/: include/pa_pool.h, main/pa_array.C: tested - decision "no
23561: templates"
23562:
23563: * src/: include/pa_array.h, include/pa_pool.h, main/Makefile.am,
23564: main/main.dsp, main/pa_array.C: templates failed no template
23565: specializations [VC6], no library auto instantation [VC6, GNU c++
23566: 2.95.2-6 from latest cygwin]
23567:
23568: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
23569: include/pa_string.h, include/pa_table.h, include/pa_types.h,
23570: main/main.dsp, main/pa_array.C, main/pa_string.C,
23571: main/pa_table.C: Table started would test template Array now
23572:
23573: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
23574: String originating
23575:
23576: * src/: include/pa_hash.h, include/pa_pool.h, include/pa_threads.h,
23577: main/pa_hash.C: made local Hash-es not thread safe=quicker by
23578: SYNCHRONIZED(thread_safe)
23579:
23580: * src/include/: pa_array.h, pa_hash.h, pa_string.h: moved .h public
23581: parts to top
23582:
23583: * src/: include/pa_hash.h, include/pa_threads.h, main/pa_hash.C,
23584: main/pa_threads.C: decided on one global_mutex, like PHP as I can
23585: see: needed only in global Hash now, made Hash:: put/get
23586: SYNCHRONIZED
23587:
23588: * src/: include/pa_hash.h, include/pa_threads.h, main/main.dsp,
23589: main/pa_threads.C: added pa_threads
23590:
23591: Mutex
23592:
23593: * src/include/pa_hash.h: some comments
23594:
23595: * src/: main/pa_array.C, include/pa_array.h, include/pa_pool.h:
23596: Array& operator += (Array& src)
23597:
23598: * src/main/pa_array.C: expand not convinient, would rewrite
23599:
23600: * src/: include/pa_array.h, main/pa_array.C: Array::operator +=
23601: (Array& src)
23602:
23603: rethought, would change now
23604:
23605: 2001-01-27 paf
23606:
23607: * src/: include/pa_array.h, main/pa_array.C: array [] with chunk
23608: caching
23609:
23610: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
23611: include/pa_string.h, main/pa_array.C, main/pa_string.C: array
23612: cache rethought to chunk caching
23613:
23614: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
23615: include/pa_string.h, main/main.dsp, main/pa_array.C,
23616: main/pa_hash.C, main/pa_string.C: Array 0
23617:
23618: * src/main/pa_string.C: String::operator ==
23619:
23620: * src/main/pa_hash.C: String(&String)
23621:
23622: * src/main/pa_hash.C: added pa_hash.C [forgotten]
23623:
23624: * src/: include/pa_hash.h, include/pa_string.h, include/pa_types.h,
23625: main/main.dsp, main/pa_string.C: uint, and added pa_types &
23626: pa_hash[forgotten]
23627:
23628: 2001-01-26 paf
23629:
23630: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
23631: removed templates [vc++ suxx]
23632:
23633: * src/: include/pa_pool.h, include/pa_string.h, main/main.dsp,
23634: main/pa_pool.C, main/pa_string.C: templates in VC++ suxx.
23635:
23636: * src/include/: pa_pool.h, pa_string.h: pa_pool split
23637:
1.119 moko 23638: * src/main/: main.dsp, pa_string.C: Id check
1.95 moko 23639:
1.119 moko 23640: * src/: main/pa_pool.C, main/pa_string.C, include/pa_pool.h: Id
1.95 moko 23641: check
23642:
23643: * src/: include/pa_pool.h, main/pa_string.C: String prealloc &
23644: dynamic row_count
23645:
23646: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
23647: main/main.dsp, main/pa_pool.C, main/pa_string.C,
23648: targets/Makefile.am: Initial revision
23649:
23650: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
23651: main/main.dsp, main/pa_pool.C, main/pa_string.C,
23652: targets/Makefile.am: creating parser3 module
23653:
E-mail: